From 748c8e48ca2fe8a94a38434017c2e9a5e9c37644 Mon Sep 17 00:00:00 2001 From: Valentyn Berezin Date: Thu, 13 May 2021 09:12:26 +0300 Subject: [PATCH] Bugfix/redirect before start (#1233) * Fixed redirects before consent auth start * Set approach from init call * Use special redirection handler * Use special redirection handler * Fixes for payment redirection * Fixed typo * Refactored consent handling * Refactored consent handling * Remove object mapper * Remove object mapper * Remove unnecessary classes * Fixed wrong transaction listing bean * Separate support for skipping start consent authorization * Disable test profiles --- .gitignore | 3 + .../opba/db/domain/entity/BankProfile.java | 1 + .../src/main/resources/migration/master.xml | 1 + .../migrations/0000-create-table-banks.xml | 3 + .../0004-add-skip-auth-for-deutsche-bank.xml | 15 + .../migration/migrations/bank_action_data.csv | 49742 ++++++++-------- .../migrations/bank_profile_data.csv | 7106 +-- .../BankProtocolActionsSqlGeneratorTest.java | 2 +- .../api/common/CurrentBankProfile.java | 5 + .../flowable/FlowableJobEventListener.java | 18 +- .../protocol/xs2a/context/Xs2aContext.java | 8 +- ...2aDoScaRedirectToAspspForScaChallenge.java | 8 +- ...rectToAspspForScaChallengeAfterCreate.java | 24 + .../consent/BaseCreateAisConsentService.java | 46 + .../CreateAisAccountListConsentService.java | 22 +- .../xs2a/consent/CreateAisConsentService.java | 16 +- ...reateAisTransactionListConsentService.java | 22 +- ...eConsentOrPaymentPossibleErrorHandler.java | 7 +- .../service/xs2a/consent/Xs2aConsentInfo.java | 7 + .../payment/CreateSinglePaymentService.java | 40 +- .../consent/xs2a-authorize-consent.bpmn20.xml | 38 +- .../payment/xs2a-authorize-payment.bpmn20.xml | 38 +- 22 files changed, 28673 insertions(+), 28499 deletions(-) create mode 100644 opba-db/src/main/resources/migration/migrations/0004-add-skip-auth-for-deutsche-bank.xml create mode 100644 opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallengeAfterCreate.java create mode 100644 opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/BaseCreateAisConsentService.java diff --git a/.gitignore b/.gitignore index 3e31e201c5..9baa3c574f 100644 --- a/.gitignore +++ b/.gitignore @@ -71,3 +71,6 @@ docs_for_site jgiven-reports logs site/ + +# Disable test profiles +opba-embedded-starter/src/main/resources/test-profiles/ diff --git a/opba-db/src/main/java/de/adorsys/opba/db/domain/entity/BankProfile.java b/opba-db/src/main/java/de/adorsys/opba/db/domain/entity/BankProfile.java index 82acb94086..d2a49bf9de 100644 --- a/opba-db/src/main/java/de/adorsys/opba/db/domain/entity/BankProfile.java +++ b/opba-db/src/main/java/de/adorsys/opba/db/domain/entity/BankProfile.java @@ -72,6 +72,7 @@ public class BankProfile implements Serializable, CurrentBankProfile { private Approach preferredApproach; private boolean tryToUsePreferredApproach; private boolean uniquePaymentPurpose; + private boolean xs2aSkipConsentAuthorization; @OneToMany(mappedBy = "bankProfile", cascade = CascadeType.ALL, orphanRemoval = true) @MapKey(name = "protocolAction") diff --git a/opba-db/src/main/resources/migration/master.xml b/opba-db/src/main/resources/migration/master.xml index 06b073591d..e74e92bdcb 100644 --- a/opba-db/src/main/resources/migration/master.xml +++ b/opba-db/src/main/resources/migration/master.xml @@ -7,4 +7,5 @@ + diff --git a/opba-db/src/main/resources/migration/migrations/0000-create-table-banks.xml b/opba-db/src/main/resources/migration/migrations/0000-create-table-banks.xml index 569a526866..a2d5741cc4 100644 --- a/opba-db/src/main/resources/migration/migrations/0000-create-table-banks.xml +++ b/opba-db/src/main/resources/migration/migrations/0000-create-table-banks.xml @@ -42,6 +42,9 @@ + + + diff --git a/opba-db/src/main/resources/migration/migrations/0004-add-skip-auth-for-deutsche-bank.xml b/opba-db/src/main/resources/migration/migrations/0004-add-skip-auth-for-deutsche-bank.xml new file mode 100644 index 0000000000..db70533adb --- /dev/null +++ b/opba-db/src/main/resources/migration/migrations/0004-add-skip-auth-for-deutsche-bank.xml @@ -0,0 +1,15 @@ + + + + Updates xs2a_skip_consent_authorization for DeutscheBank + + + + adapter_id = 'deutsche-bank-adapter' + + + + + diff --git a/opba-db/src/main/resources/migration/migrations/bank_action_data.csv b/opba-db/src/main/resources/migration/migrations/bank_action_data.csv index 82be274880..7aadd50010 100644 --- a/opba-db/src/main/resources/migration/migrations/bank_action_data.csv +++ b/opba-db/src/main/resources/migration/migrations/bank_action_data.csv @@ -1,42637 +1,42637 @@ id,bank_uuid,protocol_action,protocol_bean_name,consent_supported 10000,8025d980-1ba3-43ff-ac69-c97ffc9d76e1,LIST_ACCOUNTS,xs2aListAccounts,true -10001,8025d980-1ba3-43ff-ac69-c97ffc9d76e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10001,8025d980-1ba3-43ff-ac69-c97ffc9d76e1,LIST_TRANSACTIONS,xs2aListTransactions,true 10002,8025d980-1ba3-43ff-ac69-c97ffc9d76e1,AUTHORIZATION,,true 10003,8025d980-1ba3-43ff-ac69-c97ffc9d76e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10004,8025d980-1ba3-43ff-ac69-c97ffc9d76e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10005,8025d980-1ba3-43ff-ac69-c97ffc9d76e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10006,3d9c7670-9e0d-47cd-b44c-e1cf4bdcd248,LIST_ACCOUNTS,hbciListAccounts,false -10007,3d9c7670-9e0d-47cd-b44c-e1cf4bdcd248,LIST_TRANSACTIONS,hbciListTransactions,false -10008,3d9c7670-9e0d-47cd-b44c-e1cf4bdcd248,AUTHORIZATION,,false -10009,3d9c7670-9e0d-47cd-b44c-e1cf4bdcd248,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10010,3d9c7670-9e0d-47cd-b44c-e1cf4bdcd248,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10011,3d9c7670-9e0d-47cd-b44c-e1cf4bdcd248,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10006,6fa2313d-de4c-4eeb-93ed-2cd0ae0012fb,LIST_ACCOUNTS,hbciListAccounts,false +10007,6fa2313d-de4c-4eeb-93ed-2cd0ae0012fb,LIST_TRANSACTIONS,hbciListTransactions,false +10008,6fa2313d-de4c-4eeb-93ed-2cd0ae0012fb,AUTHORIZATION,,false +10009,6fa2313d-de4c-4eeb-93ed-2cd0ae0012fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10010,6fa2313d-de4c-4eeb-93ed-2cd0ae0012fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10011,6fa2313d-de4c-4eeb-93ed-2cd0ae0012fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10012,b168ecfa-fbee-4e11-b65a-b5cc0589fe7c,LIST_ACCOUNTS,xs2aListAccounts,true -10013,b168ecfa-fbee-4e11-b65a-b5cc0589fe7c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10013,b168ecfa-fbee-4e11-b65a-b5cc0589fe7c,LIST_TRANSACTIONS,xs2aListTransactions,true 10014,b168ecfa-fbee-4e11-b65a-b5cc0589fe7c,AUTHORIZATION,,true 10015,b168ecfa-fbee-4e11-b65a-b5cc0589fe7c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10016,b168ecfa-fbee-4e11-b65a-b5cc0589fe7c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10017,b168ecfa-fbee-4e11-b65a-b5cc0589fe7c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10018,62002935-7149-4a55-950d-5f6449324509,LIST_ACCOUNTS,hbciListAccounts,false -10019,62002935-7149-4a55-950d-5f6449324509,LIST_TRANSACTIONS,hbciListTransactions,false -10020,62002935-7149-4a55-950d-5f6449324509,AUTHORIZATION,,false -10021,62002935-7149-4a55-950d-5f6449324509,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10022,62002935-7149-4a55-950d-5f6449324509,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10023,62002935-7149-4a55-950d-5f6449324509,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10018,8b5ecf57-a906-44e5-ba5f-55bd1b113b4e,LIST_ACCOUNTS,hbciListAccounts,false +10019,8b5ecf57-a906-44e5-ba5f-55bd1b113b4e,LIST_TRANSACTIONS,hbciListTransactions,false +10020,8b5ecf57-a906-44e5-ba5f-55bd1b113b4e,AUTHORIZATION,,false +10021,8b5ecf57-a906-44e5-ba5f-55bd1b113b4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10022,8b5ecf57-a906-44e5-ba5f-55bd1b113b4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10023,8b5ecf57-a906-44e5-ba5f-55bd1b113b4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10024,c2794b1e-02d4-4c7c-9c48-4737944c1208,LIST_ACCOUNTS,xs2aListAccounts,true -10025,c2794b1e-02d4-4c7c-9c48-4737944c1208,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10025,c2794b1e-02d4-4c7c-9c48-4737944c1208,LIST_TRANSACTIONS,xs2aListTransactions,true 10026,c2794b1e-02d4-4c7c-9c48-4737944c1208,AUTHORIZATION,,true 10027,c2794b1e-02d4-4c7c-9c48-4737944c1208,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10028,c2794b1e-02d4-4c7c-9c48-4737944c1208,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10029,c2794b1e-02d4-4c7c-9c48-4737944c1208,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10030,441d8b65-e5a9-4336-ab40-9e79d31cf9a5,LIST_ACCOUNTS,hbciListAccounts,false -10031,441d8b65-e5a9-4336-ab40-9e79d31cf9a5,LIST_TRANSACTIONS,hbciListTransactions,false -10032,441d8b65-e5a9-4336-ab40-9e79d31cf9a5,AUTHORIZATION,,false -10033,441d8b65-e5a9-4336-ab40-9e79d31cf9a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10034,441d8b65-e5a9-4336-ab40-9e79d31cf9a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10035,441d8b65-e5a9-4336-ab40-9e79d31cf9a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10030,241d3de7-f329-4408-a48d-afc5b9088195,LIST_ACCOUNTS,hbciListAccounts,false +10031,241d3de7-f329-4408-a48d-afc5b9088195,LIST_TRANSACTIONS,hbciListTransactions,false +10032,241d3de7-f329-4408-a48d-afc5b9088195,AUTHORIZATION,,false +10033,241d3de7-f329-4408-a48d-afc5b9088195,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10034,241d3de7-f329-4408-a48d-afc5b9088195,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10035,241d3de7-f329-4408-a48d-afc5b9088195,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10036,9f0c74ae-99ca-45c6-a9e7-52f76d1b0ee3,LIST_ACCOUNTS,xs2aListAccounts,true -10037,9f0c74ae-99ca-45c6-a9e7-52f76d1b0ee3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10037,9f0c74ae-99ca-45c6-a9e7-52f76d1b0ee3,LIST_TRANSACTIONS,xs2aListTransactions,true 10038,9f0c74ae-99ca-45c6-a9e7-52f76d1b0ee3,AUTHORIZATION,,true 10039,9f0c74ae-99ca-45c6-a9e7-52f76d1b0ee3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10040,9f0c74ae-99ca-45c6-a9e7-52f76d1b0ee3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10041,9f0c74ae-99ca-45c6-a9e7-52f76d1b0ee3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10042,125cfe30-e4e2-4d28-af25-5edb2a5c34d6,LIST_ACCOUNTS,hbciListAccounts,false -10043,125cfe30-e4e2-4d28-af25-5edb2a5c34d6,LIST_TRANSACTIONS,hbciListTransactions,false -10044,125cfe30-e4e2-4d28-af25-5edb2a5c34d6,AUTHORIZATION,,false -10045,125cfe30-e4e2-4d28-af25-5edb2a5c34d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10046,125cfe30-e4e2-4d28-af25-5edb2a5c34d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10047,125cfe30-e4e2-4d28-af25-5edb2a5c34d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10042,f11e42c7-a496-474c-8363-c6c984474f83,LIST_ACCOUNTS,hbciListAccounts,false +10043,f11e42c7-a496-474c-8363-c6c984474f83,LIST_TRANSACTIONS,hbciListTransactions,false +10044,f11e42c7-a496-474c-8363-c6c984474f83,AUTHORIZATION,,false +10045,f11e42c7-a496-474c-8363-c6c984474f83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10046,f11e42c7-a496-474c-8363-c6c984474f83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10047,f11e42c7-a496-474c-8363-c6c984474f83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10048,fa3754ad-70e0-43a3-bf19-5b6dbb8b6893,LIST_ACCOUNTS,xs2aListAccounts,true -10049,fa3754ad-70e0-43a3-bf19-5b6dbb8b6893,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10049,fa3754ad-70e0-43a3-bf19-5b6dbb8b6893,LIST_TRANSACTIONS,xs2aListTransactions,true 10050,fa3754ad-70e0-43a3-bf19-5b6dbb8b6893,AUTHORIZATION,,true 10051,fa3754ad-70e0-43a3-bf19-5b6dbb8b6893,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10052,fa3754ad-70e0-43a3-bf19-5b6dbb8b6893,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10053,fa3754ad-70e0-43a3-bf19-5b6dbb8b6893,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10054,55afeaac-b0e8-431d-a986-2cd2ccca0bd7,LIST_ACCOUNTS,hbciListAccounts,false -10055,55afeaac-b0e8-431d-a986-2cd2ccca0bd7,LIST_TRANSACTIONS,hbciListTransactions,false -10056,55afeaac-b0e8-431d-a986-2cd2ccca0bd7,AUTHORIZATION,,false -10057,55afeaac-b0e8-431d-a986-2cd2ccca0bd7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10058,55afeaac-b0e8-431d-a986-2cd2ccca0bd7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10059,55afeaac-b0e8-431d-a986-2cd2ccca0bd7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10054,586979e0-f36d-4740-945f-c77b98e9ad40,LIST_ACCOUNTS,hbciListAccounts,false +10055,586979e0-f36d-4740-945f-c77b98e9ad40,LIST_TRANSACTIONS,hbciListTransactions,false +10056,586979e0-f36d-4740-945f-c77b98e9ad40,AUTHORIZATION,,false +10057,586979e0-f36d-4740-945f-c77b98e9ad40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10058,586979e0-f36d-4740-945f-c77b98e9ad40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10059,586979e0-f36d-4740-945f-c77b98e9ad40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10060,d8cb8b5d-ed72-44d2-a55f-55de8f24b060,LIST_ACCOUNTS,xs2aListAccounts,true -10061,d8cb8b5d-ed72-44d2-a55f-55de8f24b060,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10061,d8cb8b5d-ed72-44d2-a55f-55de8f24b060,LIST_TRANSACTIONS,xs2aListTransactions,true 10062,d8cb8b5d-ed72-44d2-a55f-55de8f24b060,AUTHORIZATION,,true 10063,d8cb8b5d-ed72-44d2-a55f-55de8f24b060,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10064,d8cb8b5d-ed72-44d2-a55f-55de8f24b060,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10065,d8cb8b5d-ed72-44d2-a55f-55de8f24b060,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10066,7b6aaf43-cdbc-46f1-8340-9284ef204cff,LIST_ACCOUNTS,hbciListAccounts,false -10067,7b6aaf43-cdbc-46f1-8340-9284ef204cff,LIST_TRANSACTIONS,hbciListTransactions,false -10068,7b6aaf43-cdbc-46f1-8340-9284ef204cff,AUTHORIZATION,,false -10069,7b6aaf43-cdbc-46f1-8340-9284ef204cff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10070,7b6aaf43-cdbc-46f1-8340-9284ef204cff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10071,7b6aaf43-cdbc-46f1-8340-9284ef204cff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10066,6a9d229b-b274-493f-91dc-8913ff367309,LIST_ACCOUNTS,hbciListAccounts,false +10067,6a9d229b-b274-493f-91dc-8913ff367309,LIST_TRANSACTIONS,hbciListTransactions,false +10068,6a9d229b-b274-493f-91dc-8913ff367309,AUTHORIZATION,,false +10069,6a9d229b-b274-493f-91dc-8913ff367309,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10070,6a9d229b-b274-493f-91dc-8913ff367309,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10071,6a9d229b-b274-493f-91dc-8913ff367309,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10072,494070aa-9314-4952-ad3e-56fafb8727ad,LIST_ACCOUNTS,xs2aListAccounts,true -10073,494070aa-9314-4952-ad3e-56fafb8727ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10073,494070aa-9314-4952-ad3e-56fafb8727ad,LIST_TRANSACTIONS,xs2aListTransactions,true 10074,494070aa-9314-4952-ad3e-56fafb8727ad,AUTHORIZATION,,true 10075,494070aa-9314-4952-ad3e-56fafb8727ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10076,494070aa-9314-4952-ad3e-56fafb8727ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10077,494070aa-9314-4952-ad3e-56fafb8727ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10078,3a88f923-0107-44fc-92a1-24b4fbb8e86e,LIST_ACCOUNTS,hbciListAccounts,false -10079,3a88f923-0107-44fc-92a1-24b4fbb8e86e,LIST_TRANSACTIONS,hbciListTransactions,false -10080,3a88f923-0107-44fc-92a1-24b4fbb8e86e,AUTHORIZATION,,false -10081,3a88f923-0107-44fc-92a1-24b4fbb8e86e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10082,3a88f923-0107-44fc-92a1-24b4fbb8e86e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10083,3a88f923-0107-44fc-92a1-24b4fbb8e86e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10078,33c911d9-a91a-4315-8fc4-fab1073db58e,LIST_ACCOUNTS,hbciListAccounts,false +10079,33c911d9-a91a-4315-8fc4-fab1073db58e,LIST_TRANSACTIONS,hbciListTransactions,false +10080,33c911d9-a91a-4315-8fc4-fab1073db58e,AUTHORIZATION,,false +10081,33c911d9-a91a-4315-8fc4-fab1073db58e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10082,33c911d9-a91a-4315-8fc4-fab1073db58e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10083,33c911d9-a91a-4315-8fc4-fab1073db58e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10084,6f5dc3da-c93c-46fd-8788-91d5b2ef36d2,LIST_ACCOUNTS,xs2aListAccounts,true -10085,6f5dc3da-c93c-46fd-8788-91d5b2ef36d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10085,6f5dc3da-c93c-46fd-8788-91d5b2ef36d2,LIST_TRANSACTIONS,xs2aListTransactions,true 10086,6f5dc3da-c93c-46fd-8788-91d5b2ef36d2,AUTHORIZATION,,true 10087,6f5dc3da-c93c-46fd-8788-91d5b2ef36d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10088,6f5dc3da-c93c-46fd-8788-91d5b2ef36d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10089,6f5dc3da-c93c-46fd-8788-91d5b2ef36d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10090,c55ba97e-c1e1-4168-938f-42bddc0a7158,LIST_ACCOUNTS,hbciListAccounts,false -10091,c55ba97e-c1e1-4168-938f-42bddc0a7158,LIST_TRANSACTIONS,hbciListTransactions,false -10092,c55ba97e-c1e1-4168-938f-42bddc0a7158,AUTHORIZATION,,false -10093,c55ba97e-c1e1-4168-938f-42bddc0a7158,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10094,c55ba97e-c1e1-4168-938f-42bddc0a7158,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10095,c55ba97e-c1e1-4168-938f-42bddc0a7158,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10090,691a19a2-1535-4c1d-9233-c38e5bb86039,LIST_ACCOUNTS,hbciListAccounts,false +10091,691a19a2-1535-4c1d-9233-c38e5bb86039,LIST_TRANSACTIONS,hbciListTransactions,false +10092,691a19a2-1535-4c1d-9233-c38e5bb86039,AUTHORIZATION,,false +10093,691a19a2-1535-4c1d-9233-c38e5bb86039,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10094,691a19a2-1535-4c1d-9233-c38e5bb86039,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10095,691a19a2-1535-4c1d-9233-c38e5bb86039,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10096,46c7674a-5ccb-461a-8832-911e1ce2fb46,LIST_ACCOUNTS,xs2aListAccounts,true -10097,46c7674a-5ccb-461a-8832-911e1ce2fb46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10097,46c7674a-5ccb-461a-8832-911e1ce2fb46,LIST_TRANSACTIONS,xs2aListTransactions,true 10098,46c7674a-5ccb-461a-8832-911e1ce2fb46,AUTHORIZATION,,true 10099,46c7674a-5ccb-461a-8832-911e1ce2fb46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10100,46c7674a-5ccb-461a-8832-911e1ce2fb46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10101,46c7674a-5ccb-461a-8832-911e1ce2fb46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10102,73c2eac1-0544-412a-aba3-5184d45070de,LIST_ACCOUNTS,hbciListAccounts,false -10103,73c2eac1-0544-412a-aba3-5184d45070de,LIST_TRANSACTIONS,hbciListTransactions,false -10104,73c2eac1-0544-412a-aba3-5184d45070de,AUTHORIZATION,,false -10105,73c2eac1-0544-412a-aba3-5184d45070de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10106,73c2eac1-0544-412a-aba3-5184d45070de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10107,73c2eac1-0544-412a-aba3-5184d45070de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10102,f1d0c28f-8d41-4fa0-b2ba-682ad774a805,LIST_ACCOUNTS,hbciListAccounts,false +10103,f1d0c28f-8d41-4fa0-b2ba-682ad774a805,LIST_TRANSACTIONS,hbciListTransactions,false +10104,f1d0c28f-8d41-4fa0-b2ba-682ad774a805,AUTHORIZATION,,false +10105,f1d0c28f-8d41-4fa0-b2ba-682ad774a805,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10106,f1d0c28f-8d41-4fa0-b2ba-682ad774a805,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10107,f1d0c28f-8d41-4fa0-b2ba-682ad774a805,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10108,f3f43a35-9d01-4054-9bd8-588f1b845781,LIST_ACCOUNTS,xs2aListAccounts,true -10109,f3f43a35-9d01-4054-9bd8-588f1b845781,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10109,f3f43a35-9d01-4054-9bd8-588f1b845781,LIST_TRANSACTIONS,xs2aListTransactions,true 10110,f3f43a35-9d01-4054-9bd8-588f1b845781,AUTHORIZATION,,true 10111,f3f43a35-9d01-4054-9bd8-588f1b845781,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10112,f3f43a35-9d01-4054-9bd8-588f1b845781,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10113,f3f43a35-9d01-4054-9bd8-588f1b845781,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10114,b6e3e88d-8c86-46f6-a4a9-118115ce0157,LIST_ACCOUNTS,hbciListAccounts,false -10115,b6e3e88d-8c86-46f6-a4a9-118115ce0157,LIST_TRANSACTIONS,hbciListTransactions,false -10116,b6e3e88d-8c86-46f6-a4a9-118115ce0157,AUTHORIZATION,,false -10117,b6e3e88d-8c86-46f6-a4a9-118115ce0157,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10118,b6e3e88d-8c86-46f6-a4a9-118115ce0157,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10119,b6e3e88d-8c86-46f6-a4a9-118115ce0157,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10114,f7ddc046-4232-4d70-a620-b85538ffbe37,LIST_ACCOUNTS,hbciListAccounts,false +10115,f7ddc046-4232-4d70-a620-b85538ffbe37,LIST_TRANSACTIONS,hbciListTransactions,false +10116,f7ddc046-4232-4d70-a620-b85538ffbe37,AUTHORIZATION,,false +10117,f7ddc046-4232-4d70-a620-b85538ffbe37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10118,f7ddc046-4232-4d70-a620-b85538ffbe37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10119,f7ddc046-4232-4d70-a620-b85538ffbe37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10120,817d890b-daf1-4df4-b805-21de883166fe,LIST_ACCOUNTS,xs2aListAccounts,true -10121,817d890b-daf1-4df4-b805-21de883166fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10121,817d890b-daf1-4df4-b805-21de883166fe,LIST_TRANSACTIONS,xs2aListTransactions,true 10122,817d890b-daf1-4df4-b805-21de883166fe,AUTHORIZATION,,true 10123,817d890b-daf1-4df4-b805-21de883166fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10124,817d890b-daf1-4df4-b805-21de883166fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10125,817d890b-daf1-4df4-b805-21de883166fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10126,c029102c-b704-4df3-9869-42bfdc853f02,LIST_ACCOUNTS,hbciListAccounts,false -10127,c029102c-b704-4df3-9869-42bfdc853f02,LIST_TRANSACTIONS,hbciListTransactions,false -10128,c029102c-b704-4df3-9869-42bfdc853f02,AUTHORIZATION,,false -10129,c029102c-b704-4df3-9869-42bfdc853f02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10130,c029102c-b704-4df3-9869-42bfdc853f02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10131,c029102c-b704-4df3-9869-42bfdc853f02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10126,ff634216-08bf-4d72-a80f-dd639210d887,LIST_ACCOUNTS,hbciListAccounts,false +10127,ff634216-08bf-4d72-a80f-dd639210d887,LIST_TRANSACTIONS,hbciListTransactions,false +10128,ff634216-08bf-4d72-a80f-dd639210d887,AUTHORIZATION,,false +10129,ff634216-08bf-4d72-a80f-dd639210d887,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10130,ff634216-08bf-4d72-a80f-dd639210d887,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10131,ff634216-08bf-4d72-a80f-dd639210d887,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10132,cca91d83-3f54-4455-9ea8-7f9ec81ef7bf,LIST_ACCOUNTS,xs2aListAccounts,true -10133,cca91d83-3f54-4455-9ea8-7f9ec81ef7bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10133,cca91d83-3f54-4455-9ea8-7f9ec81ef7bf,LIST_TRANSACTIONS,xs2aListTransactions,true 10134,cca91d83-3f54-4455-9ea8-7f9ec81ef7bf,AUTHORIZATION,,true 10135,cca91d83-3f54-4455-9ea8-7f9ec81ef7bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10136,cca91d83-3f54-4455-9ea8-7f9ec81ef7bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10137,cca91d83-3f54-4455-9ea8-7f9ec81ef7bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10138,271c7d93-b97b-4489-ba1d-08e6edd85dfb,LIST_ACCOUNTS,hbciListAccounts,false -10139,271c7d93-b97b-4489-ba1d-08e6edd85dfb,LIST_TRANSACTIONS,hbciListTransactions,false -10140,271c7d93-b97b-4489-ba1d-08e6edd85dfb,AUTHORIZATION,,false -10141,271c7d93-b97b-4489-ba1d-08e6edd85dfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10142,271c7d93-b97b-4489-ba1d-08e6edd85dfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10143,271c7d93-b97b-4489-ba1d-08e6edd85dfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10138,58ce65e4-4839-4c6b-aa86-8c93cecbf9c1,LIST_ACCOUNTS,hbciListAccounts,false +10139,58ce65e4-4839-4c6b-aa86-8c93cecbf9c1,LIST_TRANSACTIONS,hbciListTransactions,false +10140,58ce65e4-4839-4c6b-aa86-8c93cecbf9c1,AUTHORIZATION,,false +10141,58ce65e4-4839-4c6b-aa86-8c93cecbf9c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10142,58ce65e4-4839-4c6b-aa86-8c93cecbf9c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10143,58ce65e4-4839-4c6b-aa86-8c93cecbf9c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10144,8fc84960-3e44-4f86-ab1d-945da7dac0c2,LIST_ACCOUNTS,xs2aListAccounts,true -10145,8fc84960-3e44-4f86-ab1d-945da7dac0c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10145,8fc84960-3e44-4f86-ab1d-945da7dac0c2,LIST_TRANSACTIONS,xs2aListTransactions,true 10146,8fc84960-3e44-4f86-ab1d-945da7dac0c2,AUTHORIZATION,,true 10147,8fc84960-3e44-4f86-ab1d-945da7dac0c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10148,8fc84960-3e44-4f86-ab1d-945da7dac0c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10149,8fc84960-3e44-4f86-ab1d-945da7dac0c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10150,6176c865-9de8-41fc-88f6-ceb31adfae77,LIST_ACCOUNTS,hbciListAccounts,false -10151,6176c865-9de8-41fc-88f6-ceb31adfae77,LIST_TRANSACTIONS,hbciListTransactions,false -10152,6176c865-9de8-41fc-88f6-ceb31adfae77,AUTHORIZATION,,false -10153,6176c865-9de8-41fc-88f6-ceb31adfae77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10154,6176c865-9de8-41fc-88f6-ceb31adfae77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10155,6176c865-9de8-41fc-88f6-ceb31adfae77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10150,de69db0e-a63c-4360-8836-10106365ba7d,LIST_ACCOUNTS,hbciListAccounts,false +10151,de69db0e-a63c-4360-8836-10106365ba7d,LIST_TRANSACTIONS,hbciListTransactions,false +10152,de69db0e-a63c-4360-8836-10106365ba7d,AUTHORIZATION,,false +10153,de69db0e-a63c-4360-8836-10106365ba7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10154,de69db0e-a63c-4360-8836-10106365ba7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10155,de69db0e-a63c-4360-8836-10106365ba7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10156,2f4857d8-b4c2-482d-896d-7fa64ab8048d,LIST_ACCOUNTS,xs2aListAccounts,true -10157,2f4857d8-b4c2-482d-896d-7fa64ab8048d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10157,2f4857d8-b4c2-482d-896d-7fa64ab8048d,LIST_TRANSACTIONS,xs2aListTransactions,true 10158,2f4857d8-b4c2-482d-896d-7fa64ab8048d,AUTHORIZATION,,true 10159,2f4857d8-b4c2-482d-896d-7fa64ab8048d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10160,2f4857d8-b4c2-482d-896d-7fa64ab8048d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10161,2f4857d8-b4c2-482d-896d-7fa64ab8048d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10162,d1562cc6-eaaf-48e1-8556-4735e00e4ba8,LIST_ACCOUNTS,hbciListAccounts,false -10163,d1562cc6-eaaf-48e1-8556-4735e00e4ba8,LIST_TRANSACTIONS,hbciListTransactions,false -10164,d1562cc6-eaaf-48e1-8556-4735e00e4ba8,AUTHORIZATION,,false -10165,d1562cc6-eaaf-48e1-8556-4735e00e4ba8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10166,d1562cc6-eaaf-48e1-8556-4735e00e4ba8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10167,d1562cc6-eaaf-48e1-8556-4735e00e4ba8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10162,1019b4aa-d439-4059-bdfe-6aa9f1bf72de,LIST_ACCOUNTS,hbciListAccounts,false +10163,1019b4aa-d439-4059-bdfe-6aa9f1bf72de,LIST_TRANSACTIONS,hbciListTransactions,false +10164,1019b4aa-d439-4059-bdfe-6aa9f1bf72de,AUTHORIZATION,,false +10165,1019b4aa-d439-4059-bdfe-6aa9f1bf72de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10166,1019b4aa-d439-4059-bdfe-6aa9f1bf72de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10167,1019b4aa-d439-4059-bdfe-6aa9f1bf72de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10168,37f9b0b7-03d9-4d58-9a6e-3b277de5ea1b,LIST_ACCOUNTS,xs2aListAccounts,true -10169,37f9b0b7-03d9-4d58-9a6e-3b277de5ea1b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10169,37f9b0b7-03d9-4d58-9a6e-3b277de5ea1b,LIST_TRANSACTIONS,xs2aListTransactions,true 10170,37f9b0b7-03d9-4d58-9a6e-3b277de5ea1b,AUTHORIZATION,,true 10171,37f9b0b7-03d9-4d58-9a6e-3b277de5ea1b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10172,37f9b0b7-03d9-4d58-9a6e-3b277de5ea1b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10173,37f9b0b7-03d9-4d58-9a6e-3b277de5ea1b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10174,170f52de-e818-4228-b98f-bee689a1aec4,LIST_ACCOUNTS,hbciListAccounts,false -10175,170f52de-e818-4228-b98f-bee689a1aec4,LIST_TRANSACTIONS,hbciListTransactions,false -10176,170f52de-e818-4228-b98f-bee689a1aec4,AUTHORIZATION,,false -10177,170f52de-e818-4228-b98f-bee689a1aec4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10178,170f52de-e818-4228-b98f-bee689a1aec4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10179,170f52de-e818-4228-b98f-bee689a1aec4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10174,0f2398c0-5b02-455b-9c9d-c56106122788,LIST_ACCOUNTS,hbciListAccounts,false +10175,0f2398c0-5b02-455b-9c9d-c56106122788,LIST_TRANSACTIONS,hbciListTransactions,false +10176,0f2398c0-5b02-455b-9c9d-c56106122788,AUTHORIZATION,,false +10177,0f2398c0-5b02-455b-9c9d-c56106122788,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10178,0f2398c0-5b02-455b-9c9d-c56106122788,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10179,0f2398c0-5b02-455b-9c9d-c56106122788,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10180,688b503d-0f75-4e9a-8944-c0fc4420d92e,LIST_ACCOUNTS,xs2aListAccounts,true -10181,688b503d-0f75-4e9a-8944-c0fc4420d92e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10181,688b503d-0f75-4e9a-8944-c0fc4420d92e,LIST_TRANSACTIONS,xs2aListTransactions,true 10182,688b503d-0f75-4e9a-8944-c0fc4420d92e,AUTHORIZATION,,true 10183,688b503d-0f75-4e9a-8944-c0fc4420d92e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10184,688b503d-0f75-4e9a-8944-c0fc4420d92e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10185,688b503d-0f75-4e9a-8944-c0fc4420d92e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10186,4f7f854e-57a6-4e03-a2f2-23f84399da64,LIST_ACCOUNTS,hbciListAccounts,false -10187,4f7f854e-57a6-4e03-a2f2-23f84399da64,LIST_TRANSACTIONS,hbciListTransactions,false -10188,4f7f854e-57a6-4e03-a2f2-23f84399da64,AUTHORIZATION,,false -10189,4f7f854e-57a6-4e03-a2f2-23f84399da64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10190,4f7f854e-57a6-4e03-a2f2-23f84399da64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10191,4f7f854e-57a6-4e03-a2f2-23f84399da64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10186,475872f7-c8d2-4f41-9d1d-8c8d0fb7513d,LIST_ACCOUNTS,hbciListAccounts,false +10187,475872f7-c8d2-4f41-9d1d-8c8d0fb7513d,LIST_TRANSACTIONS,hbciListTransactions,false +10188,475872f7-c8d2-4f41-9d1d-8c8d0fb7513d,AUTHORIZATION,,false +10189,475872f7-c8d2-4f41-9d1d-8c8d0fb7513d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10190,475872f7-c8d2-4f41-9d1d-8c8d0fb7513d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10191,475872f7-c8d2-4f41-9d1d-8c8d0fb7513d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10192,76d7e319-fddc-46a4-84fb-607238ddeeae,LIST_ACCOUNTS,xs2aListAccounts,true -10193,76d7e319-fddc-46a4-84fb-607238ddeeae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10193,76d7e319-fddc-46a4-84fb-607238ddeeae,LIST_TRANSACTIONS,xs2aListTransactions,true 10194,76d7e319-fddc-46a4-84fb-607238ddeeae,AUTHORIZATION,,true 10195,76d7e319-fddc-46a4-84fb-607238ddeeae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10196,76d7e319-fddc-46a4-84fb-607238ddeeae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10197,76d7e319-fddc-46a4-84fb-607238ddeeae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10198,5f4cd33d-862a-4bc1-b61e-151a24bd9502,LIST_ACCOUNTS,hbciListAccounts,false -10199,5f4cd33d-862a-4bc1-b61e-151a24bd9502,LIST_TRANSACTIONS,hbciListTransactions,false -10200,5f4cd33d-862a-4bc1-b61e-151a24bd9502,AUTHORIZATION,,false -10201,5f4cd33d-862a-4bc1-b61e-151a24bd9502,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10202,5f4cd33d-862a-4bc1-b61e-151a24bd9502,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10203,5f4cd33d-862a-4bc1-b61e-151a24bd9502,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10198,f95f0755-982b-4765-b7e8-e4d6dbda0b91,LIST_ACCOUNTS,hbciListAccounts,false +10199,f95f0755-982b-4765-b7e8-e4d6dbda0b91,LIST_TRANSACTIONS,hbciListTransactions,false +10200,f95f0755-982b-4765-b7e8-e4d6dbda0b91,AUTHORIZATION,,false +10201,f95f0755-982b-4765-b7e8-e4d6dbda0b91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10202,f95f0755-982b-4765-b7e8-e4d6dbda0b91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10203,f95f0755-982b-4765-b7e8-e4d6dbda0b91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10204,b8a8c9bd-5751-4db6-879f-9654fa657552,LIST_ACCOUNTS,xs2aListAccounts,true -10205,b8a8c9bd-5751-4db6-879f-9654fa657552,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10205,b8a8c9bd-5751-4db6-879f-9654fa657552,LIST_TRANSACTIONS,xs2aListTransactions,true 10206,b8a8c9bd-5751-4db6-879f-9654fa657552,AUTHORIZATION,,true 10207,b8a8c9bd-5751-4db6-879f-9654fa657552,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10208,b8a8c9bd-5751-4db6-879f-9654fa657552,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10209,b8a8c9bd-5751-4db6-879f-9654fa657552,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10210,6f0c6e87-403a-4537-a4c8-1a456ee66031,LIST_ACCOUNTS,hbciListAccounts,false -10211,6f0c6e87-403a-4537-a4c8-1a456ee66031,LIST_TRANSACTIONS,hbciListTransactions,false -10212,6f0c6e87-403a-4537-a4c8-1a456ee66031,AUTHORIZATION,,false -10213,6f0c6e87-403a-4537-a4c8-1a456ee66031,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10214,6f0c6e87-403a-4537-a4c8-1a456ee66031,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10215,6f0c6e87-403a-4537-a4c8-1a456ee66031,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10210,5ecb00e2-95a5-4e66-9fb0-041d1e57a025,LIST_ACCOUNTS,hbciListAccounts,false +10211,5ecb00e2-95a5-4e66-9fb0-041d1e57a025,LIST_TRANSACTIONS,hbciListTransactions,false +10212,5ecb00e2-95a5-4e66-9fb0-041d1e57a025,AUTHORIZATION,,false +10213,5ecb00e2-95a5-4e66-9fb0-041d1e57a025,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10214,5ecb00e2-95a5-4e66-9fb0-041d1e57a025,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10215,5ecb00e2-95a5-4e66-9fb0-041d1e57a025,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10216,b5505b90-078d-48e5-9298-5ed46a40bca0,LIST_ACCOUNTS,xs2aListAccounts,true -10217,b5505b90-078d-48e5-9298-5ed46a40bca0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10217,b5505b90-078d-48e5-9298-5ed46a40bca0,LIST_TRANSACTIONS,xs2aListTransactions,true 10218,b5505b90-078d-48e5-9298-5ed46a40bca0,AUTHORIZATION,,true 10219,b5505b90-078d-48e5-9298-5ed46a40bca0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10220,b5505b90-078d-48e5-9298-5ed46a40bca0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10221,b5505b90-078d-48e5-9298-5ed46a40bca0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10222,984e6ac2-ca6c-4fd2-85de-4cce0f0e5004,LIST_ACCOUNTS,hbciListAccounts,false -10223,984e6ac2-ca6c-4fd2-85de-4cce0f0e5004,LIST_TRANSACTIONS,hbciListTransactions,false -10224,984e6ac2-ca6c-4fd2-85de-4cce0f0e5004,AUTHORIZATION,,false -10225,984e6ac2-ca6c-4fd2-85de-4cce0f0e5004,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10226,984e6ac2-ca6c-4fd2-85de-4cce0f0e5004,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10227,984e6ac2-ca6c-4fd2-85de-4cce0f0e5004,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10222,7277947a-5067-44a1-adfa-d026a856b791,LIST_ACCOUNTS,hbciListAccounts,false +10223,7277947a-5067-44a1-adfa-d026a856b791,LIST_TRANSACTIONS,hbciListTransactions,false +10224,7277947a-5067-44a1-adfa-d026a856b791,AUTHORIZATION,,false +10225,7277947a-5067-44a1-adfa-d026a856b791,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10226,7277947a-5067-44a1-adfa-d026a856b791,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10227,7277947a-5067-44a1-adfa-d026a856b791,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10228,8faea9c3-6050-4baa-a9e2-e693849080af,LIST_ACCOUNTS,xs2aListAccounts,true -10229,8faea9c3-6050-4baa-a9e2-e693849080af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10229,8faea9c3-6050-4baa-a9e2-e693849080af,LIST_TRANSACTIONS,xs2aListTransactions,true 10230,8faea9c3-6050-4baa-a9e2-e693849080af,AUTHORIZATION,,true 10231,8faea9c3-6050-4baa-a9e2-e693849080af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10232,8faea9c3-6050-4baa-a9e2-e693849080af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10233,8faea9c3-6050-4baa-a9e2-e693849080af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10234,e9d818be-ffd0-4a62-b55a-c625df44ef75,LIST_ACCOUNTS,hbciListAccounts,false -10235,e9d818be-ffd0-4a62-b55a-c625df44ef75,LIST_TRANSACTIONS,hbciListTransactions,false -10236,e9d818be-ffd0-4a62-b55a-c625df44ef75,AUTHORIZATION,,false -10237,e9d818be-ffd0-4a62-b55a-c625df44ef75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10238,e9d818be-ffd0-4a62-b55a-c625df44ef75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10239,e9d818be-ffd0-4a62-b55a-c625df44ef75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10234,bdaed7b9-d1f8-4c8a-b60b-7086831f0b57,LIST_ACCOUNTS,hbciListAccounts,false +10235,bdaed7b9-d1f8-4c8a-b60b-7086831f0b57,LIST_TRANSACTIONS,hbciListTransactions,false +10236,bdaed7b9-d1f8-4c8a-b60b-7086831f0b57,AUTHORIZATION,,false +10237,bdaed7b9-d1f8-4c8a-b60b-7086831f0b57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10238,bdaed7b9-d1f8-4c8a-b60b-7086831f0b57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10239,bdaed7b9-d1f8-4c8a-b60b-7086831f0b57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10240,37aff58e-fdfb-473e-ba73-552ef44ca13f,LIST_ACCOUNTS,xs2aListAccounts,true -10241,37aff58e-fdfb-473e-ba73-552ef44ca13f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10241,37aff58e-fdfb-473e-ba73-552ef44ca13f,LIST_TRANSACTIONS,xs2aListTransactions,true 10242,37aff58e-fdfb-473e-ba73-552ef44ca13f,AUTHORIZATION,,true 10243,37aff58e-fdfb-473e-ba73-552ef44ca13f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10244,37aff58e-fdfb-473e-ba73-552ef44ca13f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10245,37aff58e-fdfb-473e-ba73-552ef44ca13f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10246,2277db63-ed62-43b8-856e-7f58e53904b6,LIST_ACCOUNTS,hbciListAccounts,false -10247,2277db63-ed62-43b8-856e-7f58e53904b6,LIST_TRANSACTIONS,hbciListTransactions,false -10248,2277db63-ed62-43b8-856e-7f58e53904b6,AUTHORIZATION,,false -10249,2277db63-ed62-43b8-856e-7f58e53904b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10250,2277db63-ed62-43b8-856e-7f58e53904b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10251,2277db63-ed62-43b8-856e-7f58e53904b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10246,ecbdc9ff-4bca-4691-a47d-4c69b9e506cf,LIST_ACCOUNTS,hbciListAccounts,false +10247,ecbdc9ff-4bca-4691-a47d-4c69b9e506cf,LIST_TRANSACTIONS,hbciListTransactions,false +10248,ecbdc9ff-4bca-4691-a47d-4c69b9e506cf,AUTHORIZATION,,false +10249,ecbdc9ff-4bca-4691-a47d-4c69b9e506cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10250,ecbdc9ff-4bca-4691-a47d-4c69b9e506cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10251,ecbdc9ff-4bca-4691-a47d-4c69b9e506cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10252,a91d2dcb-44a9-4827-8e4b-2317fb59abc0,LIST_ACCOUNTS,xs2aListAccounts,true -10253,a91d2dcb-44a9-4827-8e4b-2317fb59abc0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10253,a91d2dcb-44a9-4827-8e4b-2317fb59abc0,LIST_TRANSACTIONS,xs2aListTransactions,true 10254,a91d2dcb-44a9-4827-8e4b-2317fb59abc0,AUTHORIZATION,,true 10255,a91d2dcb-44a9-4827-8e4b-2317fb59abc0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10256,a91d2dcb-44a9-4827-8e4b-2317fb59abc0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10257,a91d2dcb-44a9-4827-8e4b-2317fb59abc0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10258,6361905f-bc2e-43b6-8e19-69252d6e384e,LIST_ACCOUNTS,hbciListAccounts,false -10259,6361905f-bc2e-43b6-8e19-69252d6e384e,LIST_TRANSACTIONS,hbciListTransactions,false -10260,6361905f-bc2e-43b6-8e19-69252d6e384e,AUTHORIZATION,,false -10261,6361905f-bc2e-43b6-8e19-69252d6e384e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10262,6361905f-bc2e-43b6-8e19-69252d6e384e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10263,6361905f-bc2e-43b6-8e19-69252d6e384e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10258,accaf2ba-0da5-4a13-ac68-97569009a16f,LIST_ACCOUNTS,hbciListAccounts,false +10259,accaf2ba-0da5-4a13-ac68-97569009a16f,LIST_TRANSACTIONS,hbciListTransactions,false +10260,accaf2ba-0da5-4a13-ac68-97569009a16f,AUTHORIZATION,,false +10261,accaf2ba-0da5-4a13-ac68-97569009a16f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10262,accaf2ba-0da5-4a13-ac68-97569009a16f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10263,accaf2ba-0da5-4a13-ac68-97569009a16f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10264,45fd72ad-be0f-4ece-9de3-8a3fa5bcd25c,LIST_ACCOUNTS,xs2aListAccounts,true -10265,45fd72ad-be0f-4ece-9de3-8a3fa5bcd25c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10265,45fd72ad-be0f-4ece-9de3-8a3fa5bcd25c,LIST_TRANSACTIONS,xs2aListTransactions,true 10266,45fd72ad-be0f-4ece-9de3-8a3fa5bcd25c,AUTHORIZATION,,true 10267,45fd72ad-be0f-4ece-9de3-8a3fa5bcd25c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10268,45fd72ad-be0f-4ece-9de3-8a3fa5bcd25c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10269,45fd72ad-be0f-4ece-9de3-8a3fa5bcd25c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10270,d997683b-3458-4faa-81e1-57f830cc4b1c,LIST_ACCOUNTS,hbciListAccounts,false -10271,d997683b-3458-4faa-81e1-57f830cc4b1c,LIST_TRANSACTIONS,hbciListTransactions,false -10272,d997683b-3458-4faa-81e1-57f830cc4b1c,AUTHORIZATION,,false -10273,d997683b-3458-4faa-81e1-57f830cc4b1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10274,d997683b-3458-4faa-81e1-57f830cc4b1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10275,d997683b-3458-4faa-81e1-57f830cc4b1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10270,b1526c9c-5441-4e11-84c0-7787be47b776,LIST_ACCOUNTS,hbciListAccounts,false +10271,b1526c9c-5441-4e11-84c0-7787be47b776,LIST_TRANSACTIONS,hbciListTransactions,false +10272,b1526c9c-5441-4e11-84c0-7787be47b776,AUTHORIZATION,,false +10273,b1526c9c-5441-4e11-84c0-7787be47b776,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10274,b1526c9c-5441-4e11-84c0-7787be47b776,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10275,b1526c9c-5441-4e11-84c0-7787be47b776,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10276,2c144751-5b31-4c47-b1ad-d684b7fb48c9,LIST_ACCOUNTS,xs2aListAccounts,true -10277,2c144751-5b31-4c47-b1ad-d684b7fb48c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10277,2c144751-5b31-4c47-b1ad-d684b7fb48c9,LIST_TRANSACTIONS,xs2aListTransactions,true 10278,2c144751-5b31-4c47-b1ad-d684b7fb48c9,AUTHORIZATION,,true 10279,2c144751-5b31-4c47-b1ad-d684b7fb48c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10280,2c144751-5b31-4c47-b1ad-d684b7fb48c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10281,2c144751-5b31-4c47-b1ad-d684b7fb48c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10282,442ed5a7-983e-4874-aaf0-633704ce63ea,LIST_ACCOUNTS,hbciListAccounts,false -10283,442ed5a7-983e-4874-aaf0-633704ce63ea,LIST_TRANSACTIONS,hbciListTransactions,false -10284,442ed5a7-983e-4874-aaf0-633704ce63ea,AUTHORIZATION,,false -10285,442ed5a7-983e-4874-aaf0-633704ce63ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10286,442ed5a7-983e-4874-aaf0-633704ce63ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10287,442ed5a7-983e-4874-aaf0-633704ce63ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10282,1d926b32-fffe-47a7-90d5-bfdc021bd83f,LIST_ACCOUNTS,hbciListAccounts,false +10283,1d926b32-fffe-47a7-90d5-bfdc021bd83f,LIST_TRANSACTIONS,hbciListTransactions,false +10284,1d926b32-fffe-47a7-90d5-bfdc021bd83f,AUTHORIZATION,,false +10285,1d926b32-fffe-47a7-90d5-bfdc021bd83f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10286,1d926b32-fffe-47a7-90d5-bfdc021bd83f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10287,1d926b32-fffe-47a7-90d5-bfdc021bd83f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10288,9fbba2d3-3e31-4bf5-a422-021695151c70,LIST_ACCOUNTS,xs2aListAccounts,true -10289,9fbba2d3-3e31-4bf5-a422-021695151c70,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10289,9fbba2d3-3e31-4bf5-a422-021695151c70,LIST_TRANSACTIONS,xs2aListTransactions,true 10290,9fbba2d3-3e31-4bf5-a422-021695151c70,AUTHORIZATION,,true 10291,9fbba2d3-3e31-4bf5-a422-021695151c70,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10292,9fbba2d3-3e31-4bf5-a422-021695151c70,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10293,9fbba2d3-3e31-4bf5-a422-021695151c70,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10294,ef95f840-1652-41e5-9d41-d84a831495f2,LIST_ACCOUNTS,hbciListAccounts,false -10295,ef95f840-1652-41e5-9d41-d84a831495f2,LIST_TRANSACTIONS,hbciListTransactions,false -10296,ef95f840-1652-41e5-9d41-d84a831495f2,AUTHORIZATION,,false -10297,ef95f840-1652-41e5-9d41-d84a831495f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10298,ef95f840-1652-41e5-9d41-d84a831495f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10299,ef95f840-1652-41e5-9d41-d84a831495f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10294,1fb8b747-2a74-48f8-9255-f77380bda96e,LIST_ACCOUNTS,hbciListAccounts,false +10295,1fb8b747-2a74-48f8-9255-f77380bda96e,LIST_TRANSACTIONS,hbciListTransactions,false +10296,1fb8b747-2a74-48f8-9255-f77380bda96e,AUTHORIZATION,,false +10297,1fb8b747-2a74-48f8-9255-f77380bda96e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10298,1fb8b747-2a74-48f8-9255-f77380bda96e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10299,1fb8b747-2a74-48f8-9255-f77380bda96e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10300,b6de6dc7-ef3c-46ee-993d-b176a9e289cc,LIST_ACCOUNTS,xs2aListAccounts,true -10301,b6de6dc7-ef3c-46ee-993d-b176a9e289cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10301,b6de6dc7-ef3c-46ee-993d-b176a9e289cc,LIST_TRANSACTIONS,xs2aListTransactions,true 10302,b6de6dc7-ef3c-46ee-993d-b176a9e289cc,AUTHORIZATION,,true 10303,b6de6dc7-ef3c-46ee-993d-b176a9e289cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10304,b6de6dc7-ef3c-46ee-993d-b176a9e289cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10305,b6de6dc7-ef3c-46ee-993d-b176a9e289cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10306,01b34677-d245-4748-b4b6-9bf427b1627b,LIST_ACCOUNTS,hbciListAccounts,false -10307,01b34677-d245-4748-b4b6-9bf427b1627b,LIST_TRANSACTIONS,hbciListTransactions,false -10308,01b34677-d245-4748-b4b6-9bf427b1627b,AUTHORIZATION,,false -10309,01b34677-d245-4748-b4b6-9bf427b1627b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10310,01b34677-d245-4748-b4b6-9bf427b1627b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10311,01b34677-d245-4748-b4b6-9bf427b1627b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10306,5dae187a-00fe-485e-94af-04029c132d2e,LIST_ACCOUNTS,hbciListAccounts,false +10307,5dae187a-00fe-485e-94af-04029c132d2e,LIST_TRANSACTIONS,hbciListTransactions,false +10308,5dae187a-00fe-485e-94af-04029c132d2e,AUTHORIZATION,,false +10309,5dae187a-00fe-485e-94af-04029c132d2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10310,5dae187a-00fe-485e-94af-04029c132d2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10311,5dae187a-00fe-485e-94af-04029c132d2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10312,104f02c3-8428-431f-8c48-3f90b940298b,LIST_ACCOUNTS,xs2aListAccounts,true -10313,104f02c3-8428-431f-8c48-3f90b940298b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10313,104f02c3-8428-431f-8c48-3f90b940298b,LIST_TRANSACTIONS,xs2aListTransactions,true 10314,104f02c3-8428-431f-8c48-3f90b940298b,AUTHORIZATION,,true 10315,104f02c3-8428-431f-8c48-3f90b940298b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10316,104f02c3-8428-431f-8c48-3f90b940298b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10317,104f02c3-8428-431f-8c48-3f90b940298b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10318,ae639ccb-8c1a-4c47-bdbb-b267d49b95f2,LIST_ACCOUNTS,hbciListAccounts,false -10319,ae639ccb-8c1a-4c47-bdbb-b267d49b95f2,LIST_TRANSACTIONS,hbciListTransactions,false -10320,ae639ccb-8c1a-4c47-bdbb-b267d49b95f2,AUTHORIZATION,,false -10321,ae639ccb-8c1a-4c47-bdbb-b267d49b95f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10322,ae639ccb-8c1a-4c47-bdbb-b267d49b95f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10323,ae639ccb-8c1a-4c47-bdbb-b267d49b95f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10318,d5f62922-8bc2-4aa2-bfd8-33372065e3a5,LIST_ACCOUNTS,hbciListAccounts,false +10319,d5f62922-8bc2-4aa2-bfd8-33372065e3a5,LIST_TRANSACTIONS,hbciListTransactions,false +10320,d5f62922-8bc2-4aa2-bfd8-33372065e3a5,AUTHORIZATION,,false +10321,d5f62922-8bc2-4aa2-bfd8-33372065e3a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10322,d5f62922-8bc2-4aa2-bfd8-33372065e3a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10323,d5f62922-8bc2-4aa2-bfd8-33372065e3a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10324,152583c8-be96-469e-b530-8beea2810908,LIST_ACCOUNTS,xs2aListAccounts,true -10325,152583c8-be96-469e-b530-8beea2810908,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10325,152583c8-be96-469e-b530-8beea2810908,LIST_TRANSACTIONS,xs2aListTransactions,true 10326,152583c8-be96-469e-b530-8beea2810908,AUTHORIZATION,,true 10327,152583c8-be96-469e-b530-8beea2810908,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10328,152583c8-be96-469e-b530-8beea2810908,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10329,152583c8-be96-469e-b530-8beea2810908,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10330,679b4ea3-fc09-407c-87a4-9d79fea17ba3,LIST_ACCOUNTS,hbciListAccounts,false -10331,679b4ea3-fc09-407c-87a4-9d79fea17ba3,LIST_TRANSACTIONS,hbciListTransactions,false -10332,679b4ea3-fc09-407c-87a4-9d79fea17ba3,AUTHORIZATION,,false -10333,679b4ea3-fc09-407c-87a4-9d79fea17ba3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10334,679b4ea3-fc09-407c-87a4-9d79fea17ba3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10335,679b4ea3-fc09-407c-87a4-9d79fea17ba3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10330,82f029ed-ee6d-4ccd-96e5-7ad8af9a8bf5,LIST_ACCOUNTS,hbciListAccounts,false +10331,82f029ed-ee6d-4ccd-96e5-7ad8af9a8bf5,LIST_TRANSACTIONS,hbciListTransactions,false +10332,82f029ed-ee6d-4ccd-96e5-7ad8af9a8bf5,AUTHORIZATION,,false +10333,82f029ed-ee6d-4ccd-96e5-7ad8af9a8bf5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10334,82f029ed-ee6d-4ccd-96e5-7ad8af9a8bf5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10335,82f029ed-ee6d-4ccd-96e5-7ad8af9a8bf5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10336,5abf53a1-7df9-4096-b6b9-8bd1e9fe9280,LIST_ACCOUNTS,xs2aListAccounts,true -10337,5abf53a1-7df9-4096-b6b9-8bd1e9fe9280,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10337,5abf53a1-7df9-4096-b6b9-8bd1e9fe9280,LIST_TRANSACTIONS,xs2aListTransactions,true 10338,5abf53a1-7df9-4096-b6b9-8bd1e9fe9280,AUTHORIZATION,,true 10339,5abf53a1-7df9-4096-b6b9-8bd1e9fe9280,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10340,5abf53a1-7df9-4096-b6b9-8bd1e9fe9280,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10341,5abf53a1-7df9-4096-b6b9-8bd1e9fe9280,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10342,d8fce8a7-f39f-4db6-8dbc-f6e35b0f7de3,LIST_ACCOUNTS,hbciListAccounts,false -10343,d8fce8a7-f39f-4db6-8dbc-f6e35b0f7de3,LIST_TRANSACTIONS,hbciListTransactions,false -10344,d8fce8a7-f39f-4db6-8dbc-f6e35b0f7de3,AUTHORIZATION,,false -10345,d8fce8a7-f39f-4db6-8dbc-f6e35b0f7de3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10346,d8fce8a7-f39f-4db6-8dbc-f6e35b0f7de3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10347,d8fce8a7-f39f-4db6-8dbc-f6e35b0f7de3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10342,ef8561ec-e71f-46ff-a2c2-b5599b70fd55,LIST_ACCOUNTS,hbciListAccounts,false +10343,ef8561ec-e71f-46ff-a2c2-b5599b70fd55,LIST_TRANSACTIONS,hbciListTransactions,false +10344,ef8561ec-e71f-46ff-a2c2-b5599b70fd55,AUTHORIZATION,,false +10345,ef8561ec-e71f-46ff-a2c2-b5599b70fd55,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10346,ef8561ec-e71f-46ff-a2c2-b5599b70fd55,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10347,ef8561ec-e71f-46ff-a2c2-b5599b70fd55,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10348,43ac594d-4880-4d2e-992b-ee9894026abd,LIST_ACCOUNTS,xs2aListAccounts,true -10349,43ac594d-4880-4d2e-992b-ee9894026abd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10349,43ac594d-4880-4d2e-992b-ee9894026abd,LIST_TRANSACTIONS,xs2aListTransactions,true 10350,43ac594d-4880-4d2e-992b-ee9894026abd,AUTHORIZATION,,true 10351,43ac594d-4880-4d2e-992b-ee9894026abd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10352,43ac594d-4880-4d2e-992b-ee9894026abd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10353,43ac594d-4880-4d2e-992b-ee9894026abd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10354,f608ac2c-7d95-4cca-b2d6-42d2a2966c53,LIST_ACCOUNTS,hbciListAccounts,false -10355,f608ac2c-7d95-4cca-b2d6-42d2a2966c53,LIST_TRANSACTIONS,hbciListTransactions,false -10356,f608ac2c-7d95-4cca-b2d6-42d2a2966c53,AUTHORIZATION,,false -10357,f608ac2c-7d95-4cca-b2d6-42d2a2966c53,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10358,f608ac2c-7d95-4cca-b2d6-42d2a2966c53,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10359,f608ac2c-7d95-4cca-b2d6-42d2a2966c53,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10354,eed48147-3fcd-4af3-a5d0-a3c6fede6be9,LIST_ACCOUNTS,hbciListAccounts,false +10355,eed48147-3fcd-4af3-a5d0-a3c6fede6be9,LIST_TRANSACTIONS,hbciListTransactions,false +10356,eed48147-3fcd-4af3-a5d0-a3c6fede6be9,AUTHORIZATION,,false +10357,eed48147-3fcd-4af3-a5d0-a3c6fede6be9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10358,eed48147-3fcd-4af3-a5d0-a3c6fede6be9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10359,eed48147-3fcd-4af3-a5d0-a3c6fede6be9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10360,076f170a-7570-49cb-9ed5-925c30d161ea,LIST_ACCOUNTS,xs2aListAccounts,true -10361,076f170a-7570-49cb-9ed5-925c30d161ea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10361,076f170a-7570-49cb-9ed5-925c30d161ea,LIST_TRANSACTIONS,xs2aListTransactions,true 10362,076f170a-7570-49cb-9ed5-925c30d161ea,AUTHORIZATION,,true 10363,076f170a-7570-49cb-9ed5-925c30d161ea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10364,076f170a-7570-49cb-9ed5-925c30d161ea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10365,076f170a-7570-49cb-9ed5-925c30d161ea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10366,ecc6b809-0c33-403d-94b9-da80342989ff,LIST_ACCOUNTS,hbciListAccounts,false -10367,ecc6b809-0c33-403d-94b9-da80342989ff,LIST_TRANSACTIONS,hbciListTransactions,false -10368,ecc6b809-0c33-403d-94b9-da80342989ff,AUTHORIZATION,,false -10369,ecc6b809-0c33-403d-94b9-da80342989ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10370,ecc6b809-0c33-403d-94b9-da80342989ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10371,ecc6b809-0c33-403d-94b9-da80342989ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10366,3156204d-452f-4e74-bf7a-9a0f04795e31,LIST_ACCOUNTS,hbciListAccounts,false +10367,3156204d-452f-4e74-bf7a-9a0f04795e31,LIST_TRANSACTIONS,hbciListTransactions,false +10368,3156204d-452f-4e74-bf7a-9a0f04795e31,AUTHORIZATION,,false +10369,3156204d-452f-4e74-bf7a-9a0f04795e31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10370,3156204d-452f-4e74-bf7a-9a0f04795e31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10371,3156204d-452f-4e74-bf7a-9a0f04795e31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10372,e9dbac84-8476-49ae-b921-ec1bf6331e68,LIST_ACCOUNTS,xs2aListAccounts,true -10373,e9dbac84-8476-49ae-b921-ec1bf6331e68,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10373,e9dbac84-8476-49ae-b921-ec1bf6331e68,LIST_TRANSACTIONS,xs2aListTransactions,true 10374,e9dbac84-8476-49ae-b921-ec1bf6331e68,AUTHORIZATION,,true 10375,e9dbac84-8476-49ae-b921-ec1bf6331e68,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10376,e9dbac84-8476-49ae-b921-ec1bf6331e68,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10377,e9dbac84-8476-49ae-b921-ec1bf6331e68,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10378,350221d4-ae48-4ac0-8b15-a3112a3c9435,LIST_ACCOUNTS,hbciListAccounts,false -10379,350221d4-ae48-4ac0-8b15-a3112a3c9435,LIST_TRANSACTIONS,hbciListTransactions,false -10380,350221d4-ae48-4ac0-8b15-a3112a3c9435,AUTHORIZATION,,false -10381,350221d4-ae48-4ac0-8b15-a3112a3c9435,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10382,350221d4-ae48-4ac0-8b15-a3112a3c9435,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10383,350221d4-ae48-4ac0-8b15-a3112a3c9435,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10378,58fe3df0-35ab-4f0a-94f7-b6c50cccddae,LIST_ACCOUNTS,hbciListAccounts,false +10379,58fe3df0-35ab-4f0a-94f7-b6c50cccddae,LIST_TRANSACTIONS,hbciListTransactions,false +10380,58fe3df0-35ab-4f0a-94f7-b6c50cccddae,AUTHORIZATION,,false +10381,58fe3df0-35ab-4f0a-94f7-b6c50cccddae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10382,58fe3df0-35ab-4f0a-94f7-b6c50cccddae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10383,58fe3df0-35ab-4f0a-94f7-b6c50cccddae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10384,7d63a148-2491-4802-bf4f-4a15cbf66cd3,LIST_ACCOUNTS,xs2aListAccounts,true -10385,7d63a148-2491-4802-bf4f-4a15cbf66cd3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10385,7d63a148-2491-4802-bf4f-4a15cbf66cd3,LIST_TRANSACTIONS,xs2aListTransactions,true 10386,7d63a148-2491-4802-bf4f-4a15cbf66cd3,AUTHORIZATION,,true 10387,7d63a148-2491-4802-bf4f-4a15cbf66cd3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10388,7d63a148-2491-4802-bf4f-4a15cbf66cd3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10389,7d63a148-2491-4802-bf4f-4a15cbf66cd3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10390,95941ebd-6eb3-4a51-80b9-a1e9dc7476ab,LIST_ACCOUNTS,hbciListAccounts,false -10391,95941ebd-6eb3-4a51-80b9-a1e9dc7476ab,LIST_TRANSACTIONS,hbciListTransactions,false -10392,95941ebd-6eb3-4a51-80b9-a1e9dc7476ab,AUTHORIZATION,,false -10393,95941ebd-6eb3-4a51-80b9-a1e9dc7476ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10394,95941ebd-6eb3-4a51-80b9-a1e9dc7476ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10395,95941ebd-6eb3-4a51-80b9-a1e9dc7476ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10390,d5ad225d-e8fd-4359-9e64-2dc40dd0c103,LIST_ACCOUNTS,hbciListAccounts,false +10391,d5ad225d-e8fd-4359-9e64-2dc40dd0c103,LIST_TRANSACTIONS,hbciListTransactions,false +10392,d5ad225d-e8fd-4359-9e64-2dc40dd0c103,AUTHORIZATION,,false +10393,d5ad225d-e8fd-4359-9e64-2dc40dd0c103,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10394,d5ad225d-e8fd-4359-9e64-2dc40dd0c103,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10395,d5ad225d-e8fd-4359-9e64-2dc40dd0c103,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10396,ad58cbc8-3326-48e4-a4ae-7a8366667005,LIST_ACCOUNTS,xs2aListAccounts,true -10397,ad58cbc8-3326-48e4-a4ae-7a8366667005,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10397,ad58cbc8-3326-48e4-a4ae-7a8366667005,LIST_TRANSACTIONS,xs2aListTransactions,true 10398,ad58cbc8-3326-48e4-a4ae-7a8366667005,AUTHORIZATION,,true 10399,ad58cbc8-3326-48e4-a4ae-7a8366667005,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10400,ad58cbc8-3326-48e4-a4ae-7a8366667005,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10401,ad58cbc8-3326-48e4-a4ae-7a8366667005,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10402,7ec14f6a-fc5f-45d4-a361-b6e223301d36,LIST_ACCOUNTS,hbciListAccounts,false -10403,7ec14f6a-fc5f-45d4-a361-b6e223301d36,LIST_TRANSACTIONS,hbciListTransactions,false -10404,7ec14f6a-fc5f-45d4-a361-b6e223301d36,AUTHORIZATION,,false -10405,7ec14f6a-fc5f-45d4-a361-b6e223301d36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10406,7ec14f6a-fc5f-45d4-a361-b6e223301d36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10407,7ec14f6a-fc5f-45d4-a361-b6e223301d36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10402,37939388-4ec2-441e-aff3-78114443ee51,LIST_ACCOUNTS,hbciListAccounts,false +10403,37939388-4ec2-441e-aff3-78114443ee51,LIST_TRANSACTIONS,hbciListTransactions,false +10404,37939388-4ec2-441e-aff3-78114443ee51,AUTHORIZATION,,false +10405,37939388-4ec2-441e-aff3-78114443ee51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10406,37939388-4ec2-441e-aff3-78114443ee51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10407,37939388-4ec2-441e-aff3-78114443ee51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10408,efbc0482-ede3-4ffd-aff2-ee257a94c6e6,LIST_ACCOUNTS,xs2aListAccounts,true -10409,efbc0482-ede3-4ffd-aff2-ee257a94c6e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10409,efbc0482-ede3-4ffd-aff2-ee257a94c6e6,LIST_TRANSACTIONS,xs2aListTransactions,true 10410,efbc0482-ede3-4ffd-aff2-ee257a94c6e6,AUTHORIZATION,,true 10411,efbc0482-ede3-4ffd-aff2-ee257a94c6e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10412,efbc0482-ede3-4ffd-aff2-ee257a94c6e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10413,efbc0482-ede3-4ffd-aff2-ee257a94c6e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10414,5becb90a-0cfa-4d1f-a54d-39cec48ff2a5,LIST_ACCOUNTS,hbciListAccounts,false -10415,5becb90a-0cfa-4d1f-a54d-39cec48ff2a5,LIST_TRANSACTIONS,hbciListTransactions,false -10416,5becb90a-0cfa-4d1f-a54d-39cec48ff2a5,AUTHORIZATION,,false -10417,5becb90a-0cfa-4d1f-a54d-39cec48ff2a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10418,5becb90a-0cfa-4d1f-a54d-39cec48ff2a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10419,5becb90a-0cfa-4d1f-a54d-39cec48ff2a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10414,fc56b77e-4998-4203-a669-73c881d46498,LIST_ACCOUNTS,hbciListAccounts,false +10415,fc56b77e-4998-4203-a669-73c881d46498,LIST_TRANSACTIONS,hbciListTransactions,false +10416,fc56b77e-4998-4203-a669-73c881d46498,AUTHORIZATION,,false +10417,fc56b77e-4998-4203-a669-73c881d46498,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10418,fc56b77e-4998-4203-a669-73c881d46498,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10419,fc56b77e-4998-4203-a669-73c881d46498,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10420,c2c2f819-aa0b-4856-a66c-8bc595e97d3f,LIST_ACCOUNTS,xs2aListAccounts,true -10421,c2c2f819-aa0b-4856-a66c-8bc595e97d3f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10421,c2c2f819-aa0b-4856-a66c-8bc595e97d3f,LIST_TRANSACTIONS,xs2aListTransactions,true 10422,c2c2f819-aa0b-4856-a66c-8bc595e97d3f,AUTHORIZATION,,true 10423,c2c2f819-aa0b-4856-a66c-8bc595e97d3f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10424,c2c2f819-aa0b-4856-a66c-8bc595e97d3f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10425,c2c2f819-aa0b-4856-a66c-8bc595e97d3f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10426,cb8ace8f-3130-49a0-a31b-f9805270a118,LIST_ACCOUNTS,hbciListAccounts,false -10427,cb8ace8f-3130-49a0-a31b-f9805270a118,LIST_TRANSACTIONS,hbciListTransactions,false -10428,cb8ace8f-3130-49a0-a31b-f9805270a118,AUTHORIZATION,,false -10429,cb8ace8f-3130-49a0-a31b-f9805270a118,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10430,cb8ace8f-3130-49a0-a31b-f9805270a118,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10431,cb8ace8f-3130-49a0-a31b-f9805270a118,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10426,e7dca507-1ff4-4100-bd2f-89ea80f81654,LIST_ACCOUNTS,hbciListAccounts,false +10427,e7dca507-1ff4-4100-bd2f-89ea80f81654,LIST_TRANSACTIONS,hbciListTransactions,false +10428,e7dca507-1ff4-4100-bd2f-89ea80f81654,AUTHORIZATION,,false +10429,e7dca507-1ff4-4100-bd2f-89ea80f81654,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10430,e7dca507-1ff4-4100-bd2f-89ea80f81654,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10431,e7dca507-1ff4-4100-bd2f-89ea80f81654,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10432,9df5d918-4f76-4314-b86c-eeb07c6af32b,LIST_ACCOUNTS,xs2aListAccounts,true -10433,9df5d918-4f76-4314-b86c-eeb07c6af32b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10433,9df5d918-4f76-4314-b86c-eeb07c6af32b,LIST_TRANSACTIONS,xs2aListTransactions,true 10434,9df5d918-4f76-4314-b86c-eeb07c6af32b,AUTHORIZATION,,true 10435,9df5d918-4f76-4314-b86c-eeb07c6af32b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10436,9df5d918-4f76-4314-b86c-eeb07c6af32b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10437,9df5d918-4f76-4314-b86c-eeb07c6af32b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10438,e2b1bf7a-2a6c-41f0-b4b4-4f8dc5c86ac8,LIST_ACCOUNTS,hbciListAccounts,false -10439,e2b1bf7a-2a6c-41f0-b4b4-4f8dc5c86ac8,LIST_TRANSACTIONS,hbciListTransactions,false -10440,e2b1bf7a-2a6c-41f0-b4b4-4f8dc5c86ac8,AUTHORIZATION,,false -10441,e2b1bf7a-2a6c-41f0-b4b4-4f8dc5c86ac8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10442,e2b1bf7a-2a6c-41f0-b4b4-4f8dc5c86ac8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10443,e2b1bf7a-2a6c-41f0-b4b4-4f8dc5c86ac8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10438,0da50951-b484-40a1-a421-96b0edfb2699,LIST_ACCOUNTS,hbciListAccounts,false +10439,0da50951-b484-40a1-a421-96b0edfb2699,LIST_TRANSACTIONS,hbciListTransactions,false +10440,0da50951-b484-40a1-a421-96b0edfb2699,AUTHORIZATION,,false +10441,0da50951-b484-40a1-a421-96b0edfb2699,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10442,0da50951-b484-40a1-a421-96b0edfb2699,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10443,0da50951-b484-40a1-a421-96b0edfb2699,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10444,64a07b05-c4aa-4a08-918e-1dd4aaa21812,LIST_ACCOUNTS,xs2aListAccounts,true -10445,64a07b05-c4aa-4a08-918e-1dd4aaa21812,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10445,64a07b05-c4aa-4a08-918e-1dd4aaa21812,LIST_TRANSACTIONS,xs2aListTransactions,true 10446,64a07b05-c4aa-4a08-918e-1dd4aaa21812,AUTHORIZATION,,true 10447,64a07b05-c4aa-4a08-918e-1dd4aaa21812,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10448,64a07b05-c4aa-4a08-918e-1dd4aaa21812,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10449,64a07b05-c4aa-4a08-918e-1dd4aaa21812,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10450,676ac5d4-c5c4-4ab9-a710-69b36df49b8b,LIST_ACCOUNTS,hbciListAccounts,false -10451,676ac5d4-c5c4-4ab9-a710-69b36df49b8b,LIST_TRANSACTIONS,hbciListTransactions,false -10452,676ac5d4-c5c4-4ab9-a710-69b36df49b8b,AUTHORIZATION,,false -10453,676ac5d4-c5c4-4ab9-a710-69b36df49b8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10454,676ac5d4-c5c4-4ab9-a710-69b36df49b8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10455,676ac5d4-c5c4-4ab9-a710-69b36df49b8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10450,6420be6a-237c-4c17-9a08-27d502b48077,LIST_ACCOUNTS,hbciListAccounts,false +10451,6420be6a-237c-4c17-9a08-27d502b48077,LIST_TRANSACTIONS,hbciListTransactions,false +10452,6420be6a-237c-4c17-9a08-27d502b48077,AUTHORIZATION,,false +10453,6420be6a-237c-4c17-9a08-27d502b48077,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10454,6420be6a-237c-4c17-9a08-27d502b48077,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10455,6420be6a-237c-4c17-9a08-27d502b48077,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10456,c97501b0-6ab3-40be-bc64-ac32745d6f0e,LIST_ACCOUNTS,xs2aListAccounts,true -10457,c97501b0-6ab3-40be-bc64-ac32745d6f0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10457,c97501b0-6ab3-40be-bc64-ac32745d6f0e,LIST_TRANSACTIONS,xs2aListTransactions,true 10458,c97501b0-6ab3-40be-bc64-ac32745d6f0e,AUTHORIZATION,,true 10459,c97501b0-6ab3-40be-bc64-ac32745d6f0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10460,c97501b0-6ab3-40be-bc64-ac32745d6f0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10461,c97501b0-6ab3-40be-bc64-ac32745d6f0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10462,e1bd2e93-3b72-4f79-a750-2f990b535f13,LIST_ACCOUNTS,hbciListAccounts,false -10463,e1bd2e93-3b72-4f79-a750-2f990b535f13,LIST_TRANSACTIONS,hbciListTransactions,false -10464,e1bd2e93-3b72-4f79-a750-2f990b535f13,AUTHORIZATION,,false -10465,e1bd2e93-3b72-4f79-a750-2f990b535f13,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10466,e1bd2e93-3b72-4f79-a750-2f990b535f13,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10467,e1bd2e93-3b72-4f79-a750-2f990b535f13,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10462,b0367314-0ba5-46c5-9880-30d2f99d0e88,LIST_ACCOUNTS,hbciListAccounts,false +10463,b0367314-0ba5-46c5-9880-30d2f99d0e88,LIST_TRANSACTIONS,hbciListTransactions,false +10464,b0367314-0ba5-46c5-9880-30d2f99d0e88,AUTHORIZATION,,false +10465,b0367314-0ba5-46c5-9880-30d2f99d0e88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10466,b0367314-0ba5-46c5-9880-30d2f99d0e88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10467,b0367314-0ba5-46c5-9880-30d2f99d0e88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10468,6f8cf974-cab2-4fcb-ae41-c7e381a6be67,LIST_ACCOUNTS,xs2aListAccounts,true -10469,6f8cf974-cab2-4fcb-ae41-c7e381a6be67,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10469,6f8cf974-cab2-4fcb-ae41-c7e381a6be67,LIST_TRANSACTIONS,xs2aListTransactions,true 10470,6f8cf974-cab2-4fcb-ae41-c7e381a6be67,AUTHORIZATION,,true 10471,6f8cf974-cab2-4fcb-ae41-c7e381a6be67,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10472,6f8cf974-cab2-4fcb-ae41-c7e381a6be67,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10473,6f8cf974-cab2-4fcb-ae41-c7e381a6be67,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10474,7645a4f3-4d3b-4aeb-b0be-8294324d4edb,LIST_ACCOUNTS,hbciListAccounts,false -10475,7645a4f3-4d3b-4aeb-b0be-8294324d4edb,LIST_TRANSACTIONS,hbciListTransactions,false -10476,7645a4f3-4d3b-4aeb-b0be-8294324d4edb,AUTHORIZATION,,false -10477,7645a4f3-4d3b-4aeb-b0be-8294324d4edb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10478,7645a4f3-4d3b-4aeb-b0be-8294324d4edb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10479,7645a4f3-4d3b-4aeb-b0be-8294324d4edb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10474,59ca7c0a-7274-4d10-bece-0f69a92746c2,LIST_ACCOUNTS,hbciListAccounts,false +10475,59ca7c0a-7274-4d10-bece-0f69a92746c2,LIST_TRANSACTIONS,hbciListTransactions,false +10476,59ca7c0a-7274-4d10-bece-0f69a92746c2,AUTHORIZATION,,false +10477,59ca7c0a-7274-4d10-bece-0f69a92746c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10478,59ca7c0a-7274-4d10-bece-0f69a92746c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10479,59ca7c0a-7274-4d10-bece-0f69a92746c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10480,c7f18e7f-c554-4f41-95e0-afe5926d001f,LIST_ACCOUNTS,xs2aListAccounts,true -10481,c7f18e7f-c554-4f41-95e0-afe5926d001f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10481,c7f18e7f-c554-4f41-95e0-afe5926d001f,LIST_TRANSACTIONS,xs2aListTransactions,true 10482,c7f18e7f-c554-4f41-95e0-afe5926d001f,AUTHORIZATION,,true 10483,c7f18e7f-c554-4f41-95e0-afe5926d001f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10484,c7f18e7f-c554-4f41-95e0-afe5926d001f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10485,c7f18e7f-c554-4f41-95e0-afe5926d001f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10486,d7d3285f-32cc-4f8a-86ff-8cab5dd1aee6,LIST_ACCOUNTS,hbciListAccounts,false -10487,d7d3285f-32cc-4f8a-86ff-8cab5dd1aee6,LIST_TRANSACTIONS,hbciListTransactions,false -10488,d7d3285f-32cc-4f8a-86ff-8cab5dd1aee6,AUTHORIZATION,,false -10489,d7d3285f-32cc-4f8a-86ff-8cab5dd1aee6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10490,d7d3285f-32cc-4f8a-86ff-8cab5dd1aee6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10491,d7d3285f-32cc-4f8a-86ff-8cab5dd1aee6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10486,0e62d1bc-eb9f-473f-9cbe-355bd9c6bb82,LIST_ACCOUNTS,hbciListAccounts,false +10487,0e62d1bc-eb9f-473f-9cbe-355bd9c6bb82,LIST_TRANSACTIONS,hbciListTransactions,false +10488,0e62d1bc-eb9f-473f-9cbe-355bd9c6bb82,AUTHORIZATION,,false +10489,0e62d1bc-eb9f-473f-9cbe-355bd9c6bb82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10490,0e62d1bc-eb9f-473f-9cbe-355bd9c6bb82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10491,0e62d1bc-eb9f-473f-9cbe-355bd9c6bb82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10492,68d8f267-9a89-4dd7-8a5c-281f48eae1ad,LIST_ACCOUNTS,xs2aListAccounts,true -10493,68d8f267-9a89-4dd7-8a5c-281f48eae1ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10493,68d8f267-9a89-4dd7-8a5c-281f48eae1ad,LIST_TRANSACTIONS,xs2aListTransactions,true 10494,68d8f267-9a89-4dd7-8a5c-281f48eae1ad,AUTHORIZATION,,true 10495,68d8f267-9a89-4dd7-8a5c-281f48eae1ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10496,68d8f267-9a89-4dd7-8a5c-281f48eae1ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10497,68d8f267-9a89-4dd7-8a5c-281f48eae1ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10498,52d0f5e0-8a56-4f8a-8de1-e1cf4b8105a0,LIST_ACCOUNTS,hbciListAccounts,false -10499,52d0f5e0-8a56-4f8a-8de1-e1cf4b8105a0,LIST_TRANSACTIONS,hbciListTransactions,false -10500,52d0f5e0-8a56-4f8a-8de1-e1cf4b8105a0,AUTHORIZATION,,false -10501,52d0f5e0-8a56-4f8a-8de1-e1cf4b8105a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10502,52d0f5e0-8a56-4f8a-8de1-e1cf4b8105a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10503,52d0f5e0-8a56-4f8a-8de1-e1cf4b8105a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10498,48d58869-dda3-4ef9-a255-392eb6d9f5b4,LIST_ACCOUNTS,hbciListAccounts,false +10499,48d58869-dda3-4ef9-a255-392eb6d9f5b4,LIST_TRANSACTIONS,hbciListTransactions,false +10500,48d58869-dda3-4ef9-a255-392eb6d9f5b4,AUTHORIZATION,,false +10501,48d58869-dda3-4ef9-a255-392eb6d9f5b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10502,48d58869-dda3-4ef9-a255-392eb6d9f5b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10503,48d58869-dda3-4ef9-a255-392eb6d9f5b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10504,67da79aa-f3a5-4f4d-b201-f97a1cced9d2,LIST_ACCOUNTS,xs2aListAccounts,true -10505,67da79aa-f3a5-4f4d-b201-f97a1cced9d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10505,67da79aa-f3a5-4f4d-b201-f97a1cced9d2,LIST_TRANSACTIONS,xs2aListTransactions,true 10506,67da79aa-f3a5-4f4d-b201-f97a1cced9d2,AUTHORIZATION,,true 10507,67da79aa-f3a5-4f4d-b201-f97a1cced9d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10508,67da79aa-f3a5-4f4d-b201-f97a1cced9d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10509,67da79aa-f3a5-4f4d-b201-f97a1cced9d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10510,19493bb0-e8d3-4170-9bc3-141ec554bcd1,LIST_ACCOUNTS,hbciListAccounts,false -10511,19493bb0-e8d3-4170-9bc3-141ec554bcd1,LIST_TRANSACTIONS,hbciListTransactions,false -10512,19493bb0-e8d3-4170-9bc3-141ec554bcd1,AUTHORIZATION,,false -10513,19493bb0-e8d3-4170-9bc3-141ec554bcd1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10514,19493bb0-e8d3-4170-9bc3-141ec554bcd1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10515,19493bb0-e8d3-4170-9bc3-141ec554bcd1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10510,0cc504f7-8956-47ad-9ab1-3b3833a763cc,LIST_ACCOUNTS,hbciListAccounts,false +10511,0cc504f7-8956-47ad-9ab1-3b3833a763cc,LIST_TRANSACTIONS,hbciListTransactions,false +10512,0cc504f7-8956-47ad-9ab1-3b3833a763cc,AUTHORIZATION,,false +10513,0cc504f7-8956-47ad-9ab1-3b3833a763cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10514,0cc504f7-8956-47ad-9ab1-3b3833a763cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10515,0cc504f7-8956-47ad-9ab1-3b3833a763cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10516,0b2567b9-8642-40b5-8939-f83d72ca7a32,LIST_ACCOUNTS,xs2aListAccounts,true -10517,0b2567b9-8642-40b5-8939-f83d72ca7a32,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10517,0b2567b9-8642-40b5-8939-f83d72ca7a32,LIST_TRANSACTIONS,xs2aListTransactions,true 10518,0b2567b9-8642-40b5-8939-f83d72ca7a32,AUTHORIZATION,,true 10519,0b2567b9-8642-40b5-8939-f83d72ca7a32,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10520,0b2567b9-8642-40b5-8939-f83d72ca7a32,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10521,0b2567b9-8642-40b5-8939-f83d72ca7a32,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10522,ffe54ee7-c3e2-480b-8719-c0987cc371e4,LIST_ACCOUNTS,hbciListAccounts,false -10523,ffe54ee7-c3e2-480b-8719-c0987cc371e4,LIST_TRANSACTIONS,hbciListTransactions,false -10524,ffe54ee7-c3e2-480b-8719-c0987cc371e4,AUTHORIZATION,,false -10525,ffe54ee7-c3e2-480b-8719-c0987cc371e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10526,ffe54ee7-c3e2-480b-8719-c0987cc371e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10527,ffe54ee7-c3e2-480b-8719-c0987cc371e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10522,f4a27e97-10f5-4da3-8661-e8c83260a693,LIST_ACCOUNTS,hbciListAccounts,false +10523,f4a27e97-10f5-4da3-8661-e8c83260a693,LIST_TRANSACTIONS,hbciListTransactions,false +10524,f4a27e97-10f5-4da3-8661-e8c83260a693,AUTHORIZATION,,false +10525,f4a27e97-10f5-4da3-8661-e8c83260a693,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10526,f4a27e97-10f5-4da3-8661-e8c83260a693,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10527,f4a27e97-10f5-4da3-8661-e8c83260a693,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10528,31bc07a2-3a9b-4b1f-8a52-17e9ec033ac2,LIST_ACCOUNTS,xs2aListAccounts,true -10529,31bc07a2-3a9b-4b1f-8a52-17e9ec033ac2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10529,31bc07a2-3a9b-4b1f-8a52-17e9ec033ac2,LIST_TRANSACTIONS,xs2aListTransactions,true 10530,31bc07a2-3a9b-4b1f-8a52-17e9ec033ac2,AUTHORIZATION,,true 10531,31bc07a2-3a9b-4b1f-8a52-17e9ec033ac2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10532,31bc07a2-3a9b-4b1f-8a52-17e9ec033ac2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10533,31bc07a2-3a9b-4b1f-8a52-17e9ec033ac2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10534,8e6977b9-15af-4eb8-84f3-5d2a42792fd0,LIST_ACCOUNTS,hbciListAccounts,false -10535,8e6977b9-15af-4eb8-84f3-5d2a42792fd0,LIST_TRANSACTIONS,hbciListTransactions,false -10536,8e6977b9-15af-4eb8-84f3-5d2a42792fd0,AUTHORIZATION,,false -10537,8e6977b9-15af-4eb8-84f3-5d2a42792fd0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10538,8e6977b9-15af-4eb8-84f3-5d2a42792fd0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10539,8e6977b9-15af-4eb8-84f3-5d2a42792fd0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10534,df7c6c93-3174-42ac-be2c-b3a7e7771b35,LIST_ACCOUNTS,hbciListAccounts,false +10535,df7c6c93-3174-42ac-be2c-b3a7e7771b35,LIST_TRANSACTIONS,hbciListTransactions,false +10536,df7c6c93-3174-42ac-be2c-b3a7e7771b35,AUTHORIZATION,,false +10537,df7c6c93-3174-42ac-be2c-b3a7e7771b35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10538,df7c6c93-3174-42ac-be2c-b3a7e7771b35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10539,df7c6c93-3174-42ac-be2c-b3a7e7771b35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10540,291b2ca1-b35f-463e-ad94-2a1a26c09304,LIST_ACCOUNTS,xs2aListAccounts,true -10541,291b2ca1-b35f-463e-ad94-2a1a26c09304,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10541,291b2ca1-b35f-463e-ad94-2a1a26c09304,LIST_TRANSACTIONS,xs2aListTransactions,true 10542,291b2ca1-b35f-463e-ad94-2a1a26c09304,AUTHORIZATION,,true 10543,291b2ca1-b35f-463e-ad94-2a1a26c09304,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10544,291b2ca1-b35f-463e-ad94-2a1a26c09304,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10545,291b2ca1-b35f-463e-ad94-2a1a26c09304,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10546,a9f79334-e837-4b16-a39c-fa5f50d563f0,LIST_ACCOUNTS,hbciListAccounts,false -10547,a9f79334-e837-4b16-a39c-fa5f50d563f0,LIST_TRANSACTIONS,hbciListTransactions,false -10548,a9f79334-e837-4b16-a39c-fa5f50d563f0,AUTHORIZATION,,false -10549,a9f79334-e837-4b16-a39c-fa5f50d563f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10550,a9f79334-e837-4b16-a39c-fa5f50d563f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10551,a9f79334-e837-4b16-a39c-fa5f50d563f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10546,2090ffb7-1d2c-41ec-9c7f-94c70679a089,LIST_ACCOUNTS,hbciListAccounts,false +10547,2090ffb7-1d2c-41ec-9c7f-94c70679a089,LIST_TRANSACTIONS,hbciListTransactions,false +10548,2090ffb7-1d2c-41ec-9c7f-94c70679a089,AUTHORIZATION,,false +10549,2090ffb7-1d2c-41ec-9c7f-94c70679a089,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10550,2090ffb7-1d2c-41ec-9c7f-94c70679a089,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10551,2090ffb7-1d2c-41ec-9c7f-94c70679a089,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10552,dd624199-d071-4c95-b554-179b0e92c707,LIST_ACCOUNTS,xs2aListAccounts,true -10553,dd624199-d071-4c95-b554-179b0e92c707,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10553,dd624199-d071-4c95-b554-179b0e92c707,LIST_TRANSACTIONS,xs2aListTransactions,true 10554,dd624199-d071-4c95-b554-179b0e92c707,AUTHORIZATION,,true 10555,dd624199-d071-4c95-b554-179b0e92c707,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10556,dd624199-d071-4c95-b554-179b0e92c707,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10557,dd624199-d071-4c95-b554-179b0e92c707,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10558,dd555e8e-6cbf-4959-a70d-78dd7748e7e4,LIST_ACCOUNTS,hbciListAccounts,false -10559,dd555e8e-6cbf-4959-a70d-78dd7748e7e4,LIST_TRANSACTIONS,hbciListTransactions,false -10560,dd555e8e-6cbf-4959-a70d-78dd7748e7e4,AUTHORIZATION,,false -10561,dd555e8e-6cbf-4959-a70d-78dd7748e7e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10562,dd555e8e-6cbf-4959-a70d-78dd7748e7e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10563,dd555e8e-6cbf-4959-a70d-78dd7748e7e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10558,a9dd8a8c-5c5d-4eb0-b323-498b50ddde7c,LIST_ACCOUNTS,hbciListAccounts,false +10559,a9dd8a8c-5c5d-4eb0-b323-498b50ddde7c,LIST_TRANSACTIONS,hbciListTransactions,false +10560,a9dd8a8c-5c5d-4eb0-b323-498b50ddde7c,AUTHORIZATION,,false +10561,a9dd8a8c-5c5d-4eb0-b323-498b50ddde7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10562,a9dd8a8c-5c5d-4eb0-b323-498b50ddde7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10563,a9dd8a8c-5c5d-4eb0-b323-498b50ddde7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10564,ae6b6c01-a2f1-4a2f-90b8-884e8f5d7ecc,LIST_ACCOUNTS,xs2aListAccounts,true -10565,ae6b6c01-a2f1-4a2f-90b8-884e8f5d7ecc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10565,ae6b6c01-a2f1-4a2f-90b8-884e8f5d7ecc,LIST_TRANSACTIONS,xs2aListTransactions,true 10566,ae6b6c01-a2f1-4a2f-90b8-884e8f5d7ecc,AUTHORIZATION,,true 10567,ae6b6c01-a2f1-4a2f-90b8-884e8f5d7ecc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10568,ae6b6c01-a2f1-4a2f-90b8-884e8f5d7ecc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10569,ae6b6c01-a2f1-4a2f-90b8-884e8f5d7ecc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10570,ac6a9be7-1d38-40a2-aff9-cf73a2f94b14,LIST_ACCOUNTS,hbciListAccounts,false -10571,ac6a9be7-1d38-40a2-aff9-cf73a2f94b14,LIST_TRANSACTIONS,hbciListTransactions,false -10572,ac6a9be7-1d38-40a2-aff9-cf73a2f94b14,AUTHORIZATION,,false -10573,ac6a9be7-1d38-40a2-aff9-cf73a2f94b14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10574,ac6a9be7-1d38-40a2-aff9-cf73a2f94b14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10575,ac6a9be7-1d38-40a2-aff9-cf73a2f94b14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10570,30f2a043-0109-4873-899d-975ed6e31df1,LIST_ACCOUNTS,hbciListAccounts,false +10571,30f2a043-0109-4873-899d-975ed6e31df1,LIST_TRANSACTIONS,hbciListTransactions,false +10572,30f2a043-0109-4873-899d-975ed6e31df1,AUTHORIZATION,,false +10573,30f2a043-0109-4873-899d-975ed6e31df1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10574,30f2a043-0109-4873-899d-975ed6e31df1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10575,30f2a043-0109-4873-899d-975ed6e31df1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10576,ac0d9af8-d44d-4b9e-bb30-1ddcf5413598,LIST_ACCOUNTS,xs2aListAccounts,true -10577,ac0d9af8-d44d-4b9e-bb30-1ddcf5413598,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10577,ac0d9af8-d44d-4b9e-bb30-1ddcf5413598,LIST_TRANSACTIONS,xs2aListTransactions,true 10578,ac0d9af8-d44d-4b9e-bb30-1ddcf5413598,AUTHORIZATION,,true 10579,ac0d9af8-d44d-4b9e-bb30-1ddcf5413598,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10580,ac0d9af8-d44d-4b9e-bb30-1ddcf5413598,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10581,ac0d9af8-d44d-4b9e-bb30-1ddcf5413598,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10582,1dacb021-80d5-459b-9c5e-99f3985e06f6,LIST_ACCOUNTS,hbciListAccounts,false -10583,1dacb021-80d5-459b-9c5e-99f3985e06f6,LIST_TRANSACTIONS,hbciListTransactions,false -10584,1dacb021-80d5-459b-9c5e-99f3985e06f6,AUTHORIZATION,,false -10585,1dacb021-80d5-459b-9c5e-99f3985e06f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10586,1dacb021-80d5-459b-9c5e-99f3985e06f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10587,1dacb021-80d5-459b-9c5e-99f3985e06f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10582,e37d6972-83fc-4e55-a814-ab467b2b9f75,LIST_ACCOUNTS,hbciListAccounts,false +10583,e37d6972-83fc-4e55-a814-ab467b2b9f75,LIST_TRANSACTIONS,hbciListTransactions,false +10584,e37d6972-83fc-4e55-a814-ab467b2b9f75,AUTHORIZATION,,false +10585,e37d6972-83fc-4e55-a814-ab467b2b9f75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10586,e37d6972-83fc-4e55-a814-ab467b2b9f75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10587,e37d6972-83fc-4e55-a814-ab467b2b9f75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10588,51289e1d-3874-4740-9556-ad8bd11ef2d7,LIST_ACCOUNTS,xs2aListAccounts,true -10589,51289e1d-3874-4740-9556-ad8bd11ef2d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10589,51289e1d-3874-4740-9556-ad8bd11ef2d7,LIST_TRANSACTIONS,xs2aListTransactions,true 10590,51289e1d-3874-4740-9556-ad8bd11ef2d7,AUTHORIZATION,,true 10591,51289e1d-3874-4740-9556-ad8bd11ef2d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10592,51289e1d-3874-4740-9556-ad8bd11ef2d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10593,51289e1d-3874-4740-9556-ad8bd11ef2d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10594,814bc878-c63b-4105-b6d0-ad6302909f90,LIST_ACCOUNTS,hbciListAccounts,false -10595,814bc878-c63b-4105-b6d0-ad6302909f90,LIST_TRANSACTIONS,hbciListTransactions,false -10596,814bc878-c63b-4105-b6d0-ad6302909f90,AUTHORIZATION,,false -10597,814bc878-c63b-4105-b6d0-ad6302909f90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10598,814bc878-c63b-4105-b6d0-ad6302909f90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10599,814bc878-c63b-4105-b6d0-ad6302909f90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10594,f74056c6-a119-4ac3-b445-0584da6f9576,LIST_ACCOUNTS,hbciListAccounts,false +10595,f74056c6-a119-4ac3-b445-0584da6f9576,LIST_TRANSACTIONS,hbciListTransactions,false +10596,f74056c6-a119-4ac3-b445-0584da6f9576,AUTHORIZATION,,false +10597,f74056c6-a119-4ac3-b445-0584da6f9576,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10598,f74056c6-a119-4ac3-b445-0584da6f9576,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10599,f74056c6-a119-4ac3-b445-0584da6f9576,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10600,8c7fa779-31ea-454a-b74c-b1942c121e4d,LIST_ACCOUNTS,xs2aListAccounts,true -10601,8c7fa779-31ea-454a-b74c-b1942c121e4d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10601,8c7fa779-31ea-454a-b74c-b1942c121e4d,LIST_TRANSACTIONS,xs2aListTransactions,true 10602,8c7fa779-31ea-454a-b74c-b1942c121e4d,AUTHORIZATION,,true 10603,8c7fa779-31ea-454a-b74c-b1942c121e4d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10604,8c7fa779-31ea-454a-b74c-b1942c121e4d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10605,8c7fa779-31ea-454a-b74c-b1942c121e4d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10606,ee249d57-48bd-49d4-a2cb-8220913543d6,LIST_ACCOUNTS,hbciListAccounts,false -10607,ee249d57-48bd-49d4-a2cb-8220913543d6,LIST_TRANSACTIONS,hbciListTransactions,false -10608,ee249d57-48bd-49d4-a2cb-8220913543d6,AUTHORIZATION,,false -10609,ee249d57-48bd-49d4-a2cb-8220913543d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10610,ee249d57-48bd-49d4-a2cb-8220913543d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10611,ee249d57-48bd-49d4-a2cb-8220913543d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10606,0b9efded-dbe0-4064-8ef2-11aa68291757,LIST_ACCOUNTS,hbciListAccounts,false +10607,0b9efded-dbe0-4064-8ef2-11aa68291757,LIST_TRANSACTIONS,hbciListTransactions,false +10608,0b9efded-dbe0-4064-8ef2-11aa68291757,AUTHORIZATION,,false +10609,0b9efded-dbe0-4064-8ef2-11aa68291757,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10610,0b9efded-dbe0-4064-8ef2-11aa68291757,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10611,0b9efded-dbe0-4064-8ef2-11aa68291757,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10612,cd90371a-97c3-487c-a461-1e363e033ecb,LIST_ACCOUNTS,xs2aListAccounts,true -10613,cd90371a-97c3-487c-a461-1e363e033ecb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10613,cd90371a-97c3-487c-a461-1e363e033ecb,LIST_TRANSACTIONS,xs2aListTransactions,true 10614,cd90371a-97c3-487c-a461-1e363e033ecb,AUTHORIZATION,,true 10615,cd90371a-97c3-487c-a461-1e363e033ecb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10616,cd90371a-97c3-487c-a461-1e363e033ecb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10617,cd90371a-97c3-487c-a461-1e363e033ecb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10618,03ed09dd-273a-483d-82ad-a6457208e047,LIST_ACCOUNTS,hbciListAccounts,false -10619,03ed09dd-273a-483d-82ad-a6457208e047,LIST_TRANSACTIONS,hbciListTransactions,false -10620,03ed09dd-273a-483d-82ad-a6457208e047,AUTHORIZATION,,false -10621,03ed09dd-273a-483d-82ad-a6457208e047,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10622,03ed09dd-273a-483d-82ad-a6457208e047,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10623,03ed09dd-273a-483d-82ad-a6457208e047,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10618,e1f38fe5-a597-42d6-9d77-cebc4cd1be7d,LIST_ACCOUNTS,hbciListAccounts,false +10619,e1f38fe5-a597-42d6-9d77-cebc4cd1be7d,LIST_TRANSACTIONS,hbciListTransactions,false +10620,e1f38fe5-a597-42d6-9d77-cebc4cd1be7d,AUTHORIZATION,,false +10621,e1f38fe5-a597-42d6-9d77-cebc4cd1be7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10622,e1f38fe5-a597-42d6-9d77-cebc4cd1be7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10623,e1f38fe5-a597-42d6-9d77-cebc4cd1be7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10624,8e922aa7-fd62-40ed-a7a3-d10a16f3491f,LIST_ACCOUNTS,xs2aListAccounts,true -10625,8e922aa7-fd62-40ed-a7a3-d10a16f3491f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10625,8e922aa7-fd62-40ed-a7a3-d10a16f3491f,LIST_TRANSACTIONS,xs2aListTransactions,true 10626,8e922aa7-fd62-40ed-a7a3-d10a16f3491f,AUTHORIZATION,,true 10627,8e922aa7-fd62-40ed-a7a3-d10a16f3491f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10628,8e922aa7-fd62-40ed-a7a3-d10a16f3491f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10629,8e922aa7-fd62-40ed-a7a3-d10a16f3491f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10630,ca9bfb0d-9084-49c0-b26f-4c6446013d80,LIST_ACCOUNTS,hbciListAccounts,false -10631,ca9bfb0d-9084-49c0-b26f-4c6446013d80,LIST_TRANSACTIONS,hbciListTransactions,false -10632,ca9bfb0d-9084-49c0-b26f-4c6446013d80,AUTHORIZATION,,false -10633,ca9bfb0d-9084-49c0-b26f-4c6446013d80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10634,ca9bfb0d-9084-49c0-b26f-4c6446013d80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10635,ca9bfb0d-9084-49c0-b26f-4c6446013d80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10630,b17469ce-1b46-4964-8222-5e4e5489708d,LIST_ACCOUNTS,hbciListAccounts,false +10631,b17469ce-1b46-4964-8222-5e4e5489708d,LIST_TRANSACTIONS,hbciListTransactions,false +10632,b17469ce-1b46-4964-8222-5e4e5489708d,AUTHORIZATION,,false +10633,b17469ce-1b46-4964-8222-5e4e5489708d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10634,b17469ce-1b46-4964-8222-5e4e5489708d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10635,b17469ce-1b46-4964-8222-5e4e5489708d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10636,6c826afa-fc47-409a-9996-f5e93cf0dc85,LIST_ACCOUNTS,xs2aListAccounts,true -10637,6c826afa-fc47-409a-9996-f5e93cf0dc85,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10637,6c826afa-fc47-409a-9996-f5e93cf0dc85,LIST_TRANSACTIONS,xs2aListTransactions,true 10638,6c826afa-fc47-409a-9996-f5e93cf0dc85,AUTHORIZATION,,true 10639,6c826afa-fc47-409a-9996-f5e93cf0dc85,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10640,6c826afa-fc47-409a-9996-f5e93cf0dc85,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10641,6c826afa-fc47-409a-9996-f5e93cf0dc85,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10642,feca85a4-f356-4347-89ad-7b1903551938,LIST_ACCOUNTS,hbciListAccounts,false -10643,feca85a4-f356-4347-89ad-7b1903551938,LIST_TRANSACTIONS,hbciListTransactions,false -10644,feca85a4-f356-4347-89ad-7b1903551938,AUTHORIZATION,,false -10645,feca85a4-f356-4347-89ad-7b1903551938,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10646,feca85a4-f356-4347-89ad-7b1903551938,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10647,feca85a4-f356-4347-89ad-7b1903551938,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10642,b9312bf0-c16f-47dc-a3a0-4d71e96ed1e0,LIST_ACCOUNTS,hbciListAccounts,false +10643,b9312bf0-c16f-47dc-a3a0-4d71e96ed1e0,LIST_TRANSACTIONS,hbciListTransactions,false +10644,b9312bf0-c16f-47dc-a3a0-4d71e96ed1e0,AUTHORIZATION,,false +10645,b9312bf0-c16f-47dc-a3a0-4d71e96ed1e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10646,b9312bf0-c16f-47dc-a3a0-4d71e96ed1e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10647,b9312bf0-c16f-47dc-a3a0-4d71e96ed1e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10648,77a711e3-b5e6-4266-af31-73754169ece6,LIST_ACCOUNTS,xs2aListAccounts,true -10649,77a711e3-b5e6-4266-af31-73754169ece6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10649,77a711e3-b5e6-4266-af31-73754169ece6,LIST_TRANSACTIONS,xs2aListTransactions,true 10650,77a711e3-b5e6-4266-af31-73754169ece6,AUTHORIZATION,,true 10651,77a711e3-b5e6-4266-af31-73754169ece6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10652,77a711e3-b5e6-4266-af31-73754169ece6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10653,77a711e3-b5e6-4266-af31-73754169ece6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10654,362d4aea-0090-4182-910f-6d8546b2ce2b,LIST_ACCOUNTS,hbciListAccounts,false -10655,362d4aea-0090-4182-910f-6d8546b2ce2b,LIST_TRANSACTIONS,hbciListTransactions,false -10656,362d4aea-0090-4182-910f-6d8546b2ce2b,AUTHORIZATION,,false -10657,362d4aea-0090-4182-910f-6d8546b2ce2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10658,362d4aea-0090-4182-910f-6d8546b2ce2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10659,362d4aea-0090-4182-910f-6d8546b2ce2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10654,96dc8ae7-ad86-4249-aed1-d61aa151236a,LIST_ACCOUNTS,hbciListAccounts,false +10655,96dc8ae7-ad86-4249-aed1-d61aa151236a,LIST_TRANSACTIONS,hbciListTransactions,false +10656,96dc8ae7-ad86-4249-aed1-d61aa151236a,AUTHORIZATION,,false +10657,96dc8ae7-ad86-4249-aed1-d61aa151236a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10658,96dc8ae7-ad86-4249-aed1-d61aa151236a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10659,96dc8ae7-ad86-4249-aed1-d61aa151236a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10660,a1a4e630-2e73-4b61-a563-f1c77f3604f5,LIST_ACCOUNTS,xs2aListAccounts,true -10661,a1a4e630-2e73-4b61-a563-f1c77f3604f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10661,a1a4e630-2e73-4b61-a563-f1c77f3604f5,LIST_TRANSACTIONS,xs2aListTransactions,true 10662,a1a4e630-2e73-4b61-a563-f1c77f3604f5,AUTHORIZATION,,true 10663,a1a4e630-2e73-4b61-a563-f1c77f3604f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10664,a1a4e630-2e73-4b61-a563-f1c77f3604f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10665,a1a4e630-2e73-4b61-a563-f1c77f3604f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10666,15b41717-bd45-4c43-be5d-cfe15be8d3d9,LIST_ACCOUNTS,hbciListAccounts,false -10667,15b41717-bd45-4c43-be5d-cfe15be8d3d9,LIST_TRANSACTIONS,hbciListTransactions,false -10668,15b41717-bd45-4c43-be5d-cfe15be8d3d9,AUTHORIZATION,,false -10669,15b41717-bd45-4c43-be5d-cfe15be8d3d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10670,15b41717-bd45-4c43-be5d-cfe15be8d3d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10671,15b41717-bd45-4c43-be5d-cfe15be8d3d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10666,84c49bc7-f8bc-446c-83a4-7a0c989ccaa6,LIST_ACCOUNTS,hbciListAccounts,false +10667,84c49bc7-f8bc-446c-83a4-7a0c989ccaa6,LIST_TRANSACTIONS,hbciListTransactions,false +10668,84c49bc7-f8bc-446c-83a4-7a0c989ccaa6,AUTHORIZATION,,false +10669,84c49bc7-f8bc-446c-83a4-7a0c989ccaa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10670,84c49bc7-f8bc-446c-83a4-7a0c989ccaa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10671,84c49bc7-f8bc-446c-83a4-7a0c989ccaa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10672,ee6e58dc-9caa-4398-abd6-6571a1e24b83,LIST_ACCOUNTS,xs2aListAccounts,true -10673,ee6e58dc-9caa-4398-abd6-6571a1e24b83,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10673,ee6e58dc-9caa-4398-abd6-6571a1e24b83,LIST_TRANSACTIONS,xs2aListTransactions,true 10674,ee6e58dc-9caa-4398-abd6-6571a1e24b83,AUTHORIZATION,,true 10675,ee6e58dc-9caa-4398-abd6-6571a1e24b83,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10676,ee6e58dc-9caa-4398-abd6-6571a1e24b83,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10677,ee6e58dc-9caa-4398-abd6-6571a1e24b83,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10678,40f4d3f2-5a17-4a41-b1f0-9e766320e815,LIST_ACCOUNTS,hbciListAccounts,false -10679,40f4d3f2-5a17-4a41-b1f0-9e766320e815,LIST_TRANSACTIONS,hbciListTransactions,false -10680,40f4d3f2-5a17-4a41-b1f0-9e766320e815,AUTHORIZATION,,false -10681,40f4d3f2-5a17-4a41-b1f0-9e766320e815,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10682,40f4d3f2-5a17-4a41-b1f0-9e766320e815,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10683,40f4d3f2-5a17-4a41-b1f0-9e766320e815,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10678,f36bab3f-0fae-42d1-b6e1-e89e7a8816c8,LIST_ACCOUNTS,hbciListAccounts,false +10679,f36bab3f-0fae-42d1-b6e1-e89e7a8816c8,LIST_TRANSACTIONS,hbciListTransactions,false +10680,f36bab3f-0fae-42d1-b6e1-e89e7a8816c8,AUTHORIZATION,,false +10681,f36bab3f-0fae-42d1-b6e1-e89e7a8816c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10682,f36bab3f-0fae-42d1-b6e1-e89e7a8816c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10683,f36bab3f-0fae-42d1-b6e1-e89e7a8816c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10684,bb64e4e3-4d35-487b-8712-b97a7d55ad50,LIST_ACCOUNTS,xs2aListAccounts,true -10685,bb64e4e3-4d35-487b-8712-b97a7d55ad50,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10685,bb64e4e3-4d35-487b-8712-b97a7d55ad50,LIST_TRANSACTIONS,xs2aListTransactions,true 10686,bb64e4e3-4d35-487b-8712-b97a7d55ad50,AUTHORIZATION,,true 10687,bb64e4e3-4d35-487b-8712-b97a7d55ad50,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10688,bb64e4e3-4d35-487b-8712-b97a7d55ad50,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10689,bb64e4e3-4d35-487b-8712-b97a7d55ad50,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10690,c8ce8705-2155-4a29-b5b6-39b087de6332,LIST_ACCOUNTS,hbciListAccounts,false -10691,c8ce8705-2155-4a29-b5b6-39b087de6332,LIST_TRANSACTIONS,hbciListTransactions,false -10692,c8ce8705-2155-4a29-b5b6-39b087de6332,AUTHORIZATION,,false -10693,c8ce8705-2155-4a29-b5b6-39b087de6332,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10694,c8ce8705-2155-4a29-b5b6-39b087de6332,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10695,c8ce8705-2155-4a29-b5b6-39b087de6332,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10690,5db9aa58-2388-4278-9be4-88cdc21637ad,LIST_ACCOUNTS,hbciListAccounts,false +10691,5db9aa58-2388-4278-9be4-88cdc21637ad,LIST_TRANSACTIONS,hbciListTransactions,false +10692,5db9aa58-2388-4278-9be4-88cdc21637ad,AUTHORIZATION,,false +10693,5db9aa58-2388-4278-9be4-88cdc21637ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10694,5db9aa58-2388-4278-9be4-88cdc21637ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10695,5db9aa58-2388-4278-9be4-88cdc21637ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10696,6140db51-b125-45b2-ac27-cbefa566574c,LIST_ACCOUNTS,xs2aListAccounts,true -10697,6140db51-b125-45b2-ac27-cbefa566574c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10697,6140db51-b125-45b2-ac27-cbefa566574c,LIST_TRANSACTIONS,xs2aListTransactions,true 10698,6140db51-b125-45b2-ac27-cbefa566574c,AUTHORIZATION,,true 10699,6140db51-b125-45b2-ac27-cbefa566574c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10700,6140db51-b125-45b2-ac27-cbefa566574c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10701,6140db51-b125-45b2-ac27-cbefa566574c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10702,1a94fd3e-c0a6-47f3-b03a-f8740ff63a28,LIST_ACCOUNTS,hbciListAccounts,false -10703,1a94fd3e-c0a6-47f3-b03a-f8740ff63a28,LIST_TRANSACTIONS,hbciListTransactions,false -10704,1a94fd3e-c0a6-47f3-b03a-f8740ff63a28,AUTHORIZATION,,false -10705,1a94fd3e-c0a6-47f3-b03a-f8740ff63a28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10706,1a94fd3e-c0a6-47f3-b03a-f8740ff63a28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10707,1a94fd3e-c0a6-47f3-b03a-f8740ff63a28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10702,cded589c-0e33-4deb-9f7f-7299f3395282,LIST_ACCOUNTS,hbciListAccounts,false +10703,cded589c-0e33-4deb-9f7f-7299f3395282,LIST_TRANSACTIONS,hbciListTransactions,false +10704,cded589c-0e33-4deb-9f7f-7299f3395282,AUTHORIZATION,,false +10705,cded589c-0e33-4deb-9f7f-7299f3395282,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10706,cded589c-0e33-4deb-9f7f-7299f3395282,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10707,cded589c-0e33-4deb-9f7f-7299f3395282,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10708,f27f49c2-0cf8-4354-8081-de52c1de048c,LIST_ACCOUNTS,xs2aListAccounts,true -10709,f27f49c2-0cf8-4354-8081-de52c1de048c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10709,f27f49c2-0cf8-4354-8081-de52c1de048c,LIST_TRANSACTIONS,xs2aListTransactions,true 10710,f27f49c2-0cf8-4354-8081-de52c1de048c,AUTHORIZATION,,true 10711,f27f49c2-0cf8-4354-8081-de52c1de048c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10712,f27f49c2-0cf8-4354-8081-de52c1de048c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10713,f27f49c2-0cf8-4354-8081-de52c1de048c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10714,5ba01041-8305-44a0-b0c8-89282c78ad7c,LIST_ACCOUNTS,hbciListAccounts,false -10715,5ba01041-8305-44a0-b0c8-89282c78ad7c,LIST_TRANSACTIONS,hbciListTransactions,false -10716,5ba01041-8305-44a0-b0c8-89282c78ad7c,AUTHORIZATION,,false -10717,5ba01041-8305-44a0-b0c8-89282c78ad7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10718,5ba01041-8305-44a0-b0c8-89282c78ad7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10719,5ba01041-8305-44a0-b0c8-89282c78ad7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10714,a09c414e-ce5f-44f9-be29-00fce9e9d89a,LIST_ACCOUNTS,hbciListAccounts,false +10715,a09c414e-ce5f-44f9-be29-00fce9e9d89a,LIST_TRANSACTIONS,hbciListTransactions,false +10716,a09c414e-ce5f-44f9-be29-00fce9e9d89a,AUTHORIZATION,,false +10717,a09c414e-ce5f-44f9-be29-00fce9e9d89a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10718,a09c414e-ce5f-44f9-be29-00fce9e9d89a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10719,a09c414e-ce5f-44f9-be29-00fce9e9d89a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10720,1bb54b1e-14c6-461d-a5d1-c8094c372c10,LIST_ACCOUNTS,xs2aListAccounts,true -10721,1bb54b1e-14c6-461d-a5d1-c8094c372c10,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10721,1bb54b1e-14c6-461d-a5d1-c8094c372c10,LIST_TRANSACTIONS,xs2aListTransactions,true 10722,1bb54b1e-14c6-461d-a5d1-c8094c372c10,AUTHORIZATION,,true 10723,1bb54b1e-14c6-461d-a5d1-c8094c372c10,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10724,1bb54b1e-14c6-461d-a5d1-c8094c372c10,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10725,1bb54b1e-14c6-461d-a5d1-c8094c372c10,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10726,6eb61c1a-32d5-4e06-ba06-223f05e3f409,LIST_ACCOUNTS,hbciListAccounts,false -10727,6eb61c1a-32d5-4e06-ba06-223f05e3f409,LIST_TRANSACTIONS,hbciListTransactions,false -10728,6eb61c1a-32d5-4e06-ba06-223f05e3f409,AUTHORIZATION,,false -10729,6eb61c1a-32d5-4e06-ba06-223f05e3f409,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10730,6eb61c1a-32d5-4e06-ba06-223f05e3f409,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10731,6eb61c1a-32d5-4e06-ba06-223f05e3f409,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10726,918d72ee-af34-45f3-bf62-6579571f7cfe,LIST_ACCOUNTS,hbciListAccounts,false +10727,918d72ee-af34-45f3-bf62-6579571f7cfe,LIST_TRANSACTIONS,hbciListTransactions,false +10728,918d72ee-af34-45f3-bf62-6579571f7cfe,AUTHORIZATION,,false +10729,918d72ee-af34-45f3-bf62-6579571f7cfe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10730,918d72ee-af34-45f3-bf62-6579571f7cfe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10731,918d72ee-af34-45f3-bf62-6579571f7cfe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10732,9268207c-afe6-4043-ada3-224bae208d21,LIST_ACCOUNTS,xs2aListAccounts,true -10733,9268207c-afe6-4043-ada3-224bae208d21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10733,9268207c-afe6-4043-ada3-224bae208d21,LIST_TRANSACTIONS,xs2aListTransactions,true 10734,9268207c-afe6-4043-ada3-224bae208d21,AUTHORIZATION,,true 10735,9268207c-afe6-4043-ada3-224bae208d21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10736,9268207c-afe6-4043-ada3-224bae208d21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10737,9268207c-afe6-4043-ada3-224bae208d21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10738,3a2d4856-e539-44b4-b647-9eaaf00a94b3,LIST_ACCOUNTS,hbciListAccounts,false -10739,3a2d4856-e539-44b4-b647-9eaaf00a94b3,LIST_TRANSACTIONS,hbciListTransactions,false -10740,3a2d4856-e539-44b4-b647-9eaaf00a94b3,AUTHORIZATION,,false -10741,3a2d4856-e539-44b4-b647-9eaaf00a94b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10742,3a2d4856-e539-44b4-b647-9eaaf00a94b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10743,3a2d4856-e539-44b4-b647-9eaaf00a94b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10738,40a5f1d6-dd6c-43be-a2fc-616a7220244b,LIST_ACCOUNTS,hbciListAccounts,false +10739,40a5f1d6-dd6c-43be-a2fc-616a7220244b,LIST_TRANSACTIONS,hbciListTransactions,false +10740,40a5f1d6-dd6c-43be-a2fc-616a7220244b,AUTHORIZATION,,false +10741,40a5f1d6-dd6c-43be-a2fc-616a7220244b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10742,40a5f1d6-dd6c-43be-a2fc-616a7220244b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10743,40a5f1d6-dd6c-43be-a2fc-616a7220244b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10744,efbb982a-80d6-4ceb-826a-feac9bda8615,LIST_ACCOUNTS,xs2aListAccounts,true -10745,efbb982a-80d6-4ceb-826a-feac9bda8615,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10745,efbb982a-80d6-4ceb-826a-feac9bda8615,LIST_TRANSACTIONS,xs2aListTransactions,true 10746,efbb982a-80d6-4ceb-826a-feac9bda8615,AUTHORIZATION,,true 10747,efbb982a-80d6-4ceb-826a-feac9bda8615,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10748,efbb982a-80d6-4ceb-826a-feac9bda8615,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10749,efbb982a-80d6-4ceb-826a-feac9bda8615,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10750,31c72f9e-19f8-4ade-93f8-ff3e126c7bed,LIST_ACCOUNTS,hbciListAccounts,false -10751,31c72f9e-19f8-4ade-93f8-ff3e126c7bed,LIST_TRANSACTIONS,hbciListTransactions,false -10752,31c72f9e-19f8-4ade-93f8-ff3e126c7bed,AUTHORIZATION,,false -10753,31c72f9e-19f8-4ade-93f8-ff3e126c7bed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10754,31c72f9e-19f8-4ade-93f8-ff3e126c7bed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10755,31c72f9e-19f8-4ade-93f8-ff3e126c7bed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10750,0846bbc0-630c-4997-b6bf-98b3dd179a7f,LIST_ACCOUNTS,hbciListAccounts,false +10751,0846bbc0-630c-4997-b6bf-98b3dd179a7f,LIST_TRANSACTIONS,hbciListTransactions,false +10752,0846bbc0-630c-4997-b6bf-98b3dd179a7f,AUTHORIZATION,,false +10753,0846bbc0-630c-4997-b6bf-98b3dd179a7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10754,0846bbc0-630c-4997-b6bf-98b3dd179a7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10755,0846bbc0-630c-4997-b6bf-98b3dd179a7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10756,a24796d7-1f7f-4971-9252-41a29d40bd25,LIST_ACCOUNTS,xs2aListAccounts,true -10757,a24796d7-1f7f-4971-9252-41a29d40bd25,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10757,a24796d7-1f7f-4971-9252-41a29d40bd25,LIST_TRANSACTIONS,xs2aListTransactions,true 10758,a24796d7-1f7f-4971-9252-41a29d40bd25,AUTHORIZATION,,true 10759,a24796d7-1f7f-4971-9252-41a29d40bd25,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10760,a24796d7-1f7f-4971-9252-41a29d40bd25,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10761,a24796d7-1f7f-4971-9252-41a29d40bd25,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10762,436b273c-2fa4-4b89-85f0-70cc8c6df4b6,LIST_ACCOUNTS,hbciListAccounts,false -10763,436b273c-2fa4-4b89-85f0-70cc8c6df4b6,LIST_TRANSACTIONS,hbciListTransactions,false -10764,436b273c-2fa4-4b89-85f0-70cc8c6df4b6,AUTHORIZATION,,false -10765,436b273c-2fa4-4b89-85f0-70cc8c6df4b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10766,436b273c-2fa4-4b89-85f0-70cc8c6df4b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10767,436b273c-2fa4-4b89-85f0-70cc8c6df4b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10762,34948db6-bbc0-42f4-a974-56eb5f203d1c,LIST_ACCOUNTS,hbciListAccounts,false +10763,34948db6-bbc0-42f4-a974-56eb5f203d1c,LIST_TRANSACTIONS,hbciListTransactions,false +10764,34948db6-bbc0-42f4-a974-56eb5f203d1c,AUTHORIZATION,,false +10765,34948db6-bbc0-42f4-a974-56eb5f203d1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10766,34948db6-bbc0-42f4-a974-56eb5f203d1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10767,34948db6-bbc0-42f4-a974-56eb5f203d1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10768,90eb83d5-24bf-4396-957d-606aec16f354,LIST_ACCOUNTS,xs2aListAccounts,true -10769,90eb83d5-24bf-4396-957d-606aec16f354,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10769,90eb83d5-24bf-4396-957d-606aec16f354,LIST_TRANSACTIONS,xs2aListTransactions,true 10770,90eb83d5-24bf-4396-957d-606aec16f354,AUTHORIZATION,,true 10771,90eb83d5-24bf-4396-957d-606aec16f354,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10772,90eb83d5-24bf-4396-957d-606aec16f354,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10773,90eb83d5-24bf-4396-957d-606aec16f354,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10774,aa9674cd-b08f-4edd-b843-9d77362be0fc,LIST_ACCOUNTS,hbciListAccounts,false -10775,aa9674cd-b08f-4edd-b843-9d77362be0fc,LIST_TRANSACTIONS,hbciListTransactions,false -10776,aa9674cd-b08f-4edd-b843-9d77362be0fc,AUTHORIZATION,,false -10777,aa9674cd-b08f-4edd-b843-9d77362be0fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10778,aa9674cd-b08f-4edd-b843-9d77362be0fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10779,aa9674cd-b08f-4edd-b843-9d77362be0fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10774,2cebffc8-d8d4-4925-9df3-1014266a10df,LIST_ACCOUNTS,hbciListAccounts,false +10775,2cebffc8-d8d4-4925-9df3-1014266a10df,LIST_TRANSACTIONS,hbciListTransactions,false +10776,2cebffc8-d8d4-4925-9df3-1014266a10df,AUTHORIZATION,,false +10777,2cebffc8-d8d4-4925-9df3-1014266a10df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10778,2cebffc8-d8d4-4925-9df3-1014266a10df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10779,2cebffc8-d8d4-4925-9df3-1014266a10df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10780,a56e8752-8637-4df2-baac-a5b3376f29dd,LIST_ACCOUNTS,xs2aListAccounts,true -10781,a56e8752-8637-4df2-baac-a5b3376f29dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10781,a56e8752-8637-4df2-baac-a5b3376f29dd,LIST_TRANSACTIONS,xs2aListTransactions,true 10782,a56e8752-8637-4df2-baac-a5b3376f29dd,AUTHORIZATION,,true 10783,a56e8752-8637-4df2-baac-a5b3376f29dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10784,a56e8752-8637-4df2-baac-a5b3376f29dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10785,a56e8752-8637-4df2-baac-a5b3376f29dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10786,7fbf7d11-ef87-4065-8de4-d8170d570b90,LIST_ACCOUNTS,hbciListAccounts,false -10787,7fbf7d11-ef87-4065-8de4-d8170d570b90,LIST_TRANSACTIONS,hbciListTransactions,false -10788,7fbf7d11-ef87-4065-8de4-d8170d570b90,AUTHORIZATION,,false -10789,7fbf7d11-ef87-4065-8de4-d8170d570b90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10790,7fbf7d11-ef87-4065-8de4-d8170d570b90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10791,7fbf7d11-ef87-4065-8de4-d8170d570b90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10786,112efb0f-30ba-4c9f-afbe-c360250ef6f4,LIST_ACCOUNTS,hbciListAccounts,false +10787,112efb0f-30ba-4c9f-afbe-c360250ef6f4,LIST_TRANSACTIONS,hbciListTransactions,false +10788,112efb0f-30ba-4c9f-afbe-c360250ef6f4,AUTHORIZATION,,false +10789,112efb0f-30ba-4c9f-afbe-c360250ef6f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10790,112efb0f-30ba-4c9f-afbe-c360250ef6f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10791,112efb0f-30ba-4c9f-afbe-c360250ef6f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10792,07d286bb-b39e-445c-ae47-baecc8e4bac0,LIST_ACCOUNTS,xs2aListAccounts,true -10793,07d286bb-b39e-445c-ae47-baecc8e4bac0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10793,07d286bb-b39e-445c-ae47-baecc8e4bac0,LIST_TRANSACTIONS,xs2aListTransactions,true 10794,07d286bb-b39e-445c-ae47-baecc8e4bac0,AUTHORIZATION,,true 10795,07d286bb-b39e-445c-ae47-baecc8e4bac0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10796,07d286bb-b39e-445c-ae47-baecc8e4bac0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10797,07d286bb-b39e-445c-ae47-baecc8e4bac0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10798,bc8dc3cc-efc8-4c4a-9b73-8b1a91b55ea8,LIST_ACCOUNTS,hbciListAccounts,false -10799,bc8dc3cc-efc8-4c4a-9b73-8b1a91b55ea8,LIST_TRANSACTIONS,hbciListTransactions,false -10800,bc8dc3cc-efc8-4c4a-9b73-8b1a91b55ea8,AUTHORIZATION,,false -10801,bc8dc3cc-efc8-4c4a-9b73-8b1a91b55ea8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10802,bc8dc3cc-efc8-4c4a-9b73-8b1a91b55ea8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10803,bc8dc3cc-efc8-4c4a-9b73-8b1a91b55ea8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10798,8e1ddc3e-d56d-4f63-8193-450b07c284f0,LIST_ACCOUNTS,hbciListAccounts,false +10799,8e1ddc3e-d56d-4f63-8193-450b07c284f0,LIST_TRANSACTIONS,hbciListTransactions,false +10800,8e1ddc3e-d56d-4f63-8193-450b07c284f0,AUTHORIZATION,,false +10801,8e1ddc3e-d56d-4f63-8193-450b07c284f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10802,8e1ddc3e-d56d-4f63-8193-450b07c284f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10803,8e1ddc3e-d56d-4f63-8193-450b07c284f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10804,f9440da7-d86c-4ac2-b717-620376bdf62a,LIST_ACCOUNTS,xs2aListAccounts,true -10805,f9440da7-d86c-4ac2-b717-620376bdf62a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10805,f9440da7-d86c-4ac2-b717-620376bdf62a,LIST_TRANSACTIONS,xs2aListTransactions,true 10806,f9440da7-d86c-4ac2-b717-620376bdf62a,AUTHORIZATION,,true 10807,f9440da7-d86c-4ac2-b717-620376bdf62a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10808,f9440da7-d86c-4ac2-b717-620376bdf62a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10809,f9440da7-d86c-4ac2-b717-620376bdf62a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10810,ef58cf6b-311f-486d-9bc2-c2439609d1f9,LIST_ACCOUNTS,hbciListAccounts,false -10811,ef58cf6b-311f-486d-9bc2-c2439609d1f9,LIST_TRANSACTIONS,hbciListTransactions,false -10812,ef58cf6b-311f-486d-9bc2-c2439609d1f9,AUTHORIZATION,,false -10813,ef58cf6b-311f-486d-9bc2-c2439609d1f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10814,ef58cf6b-311f-486d-9bc2-c2439609d1f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10815,ef58cf6b-311f-486d-9bc2-c2439609d1f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10810,5fde4e62-df55-49bf-b75d-24f97afb75c7,LIST_ACCOUNTS,hbciListAccounts,false +10811,5fde4e62-df55-49bf-b75d-24f97afb75c7,LIST_TRANSACTIONS,hbciListTransactions,false +10812,5fde4e62-df55-49bf-b75d-24f97afb75c7,AUTHORIZATION,,false +10813,5fde4e62-df55-49bf-b75d-24f97afb75c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10814,5fde4e62-df55-49bf-b75d-24f97afb75c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10815,5fde4e62-df55-49bf-b75d-24f97afb75c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10816,a81abd55-c5e7-45ae-a46b-c9191d9b5125,LIST_ACCOUNTS,xs2aListAccounts,true -10817,a81abd55-c5e7-45ae-a46b-c9191d9b5125,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10817,a81abd55-c5e7-45ae-a46b-c9191d9b5125,LIST_TRANSACTIONS,xs2aListTransactions,true 10818,a81abd55-c5e7-45ae-a46b-c9191d9b5125,AUTHORIZATION,,true 10819,a81abd55-c5e7-45ae-a46b-c9191d9b5125,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10820,a81abd55-c5e7-45ae-a46b-c9191d9b5125,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10821,a81abd55-c5e7-45ae-a46b-c9191d9b5125,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10822,aefd5d59-5da5-4866-9805-1b4e68ef0e23,LIST_ACCOUNTS,hbciListAccounts,false -10823,aefd5d59-5da5-4866-9805-1b4e68ef0e23,LIST_TRANSACTIONS,hbciListTransactions,false -10824,aefd5d59-5da5-4866-9805-1b4e68ef0e23,AUTHORIZATION,,false -10825,aefd5d59-5da5-4866-9805-1b4e68ef0e23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10826,aefd5d59-5da5-4866-9805-1b4e68ef0e23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10827,aefd5d59-5da5-4866-9805-1b4e68ef0e23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10822,dbb9fcba-ead7-4e33-abe2-e8fd82d04773,LIST_ACCOUNTS,hbciListAccounts,false +10823,dbb9fcba-ead7-4e33-abe2-e8fd82d04773,LIST_TRANSACTIONS,hbciListTransactions,false +10824,dbb9fcba-ead7-4e33-abe2-e8fd82d04773,AUTHORIZATION,,false +10825,dbb9fcba-ead7-4e33-abe2-e8fd82d04773,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10826,dbb9fcba-ead7-4e33-abe2-e8fd82d04773,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10827,dbb9fcba-ead7-4e33-abe2-e8fd82d04773,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10828,4514a637-88ad-43e9-bdbe-76cbc06a5669,LIST_ACCOUNTS,xs2aListAccounts,true -10829,4514a637-88ad-43e9-bdbe-76cbc06a5669,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10829,4514a637-88ad-43e9-bdbe-76cbc06a5669,LIST_TRANSACTIONS,xs2aListTransactions,true 10830,4514a637-88ad-43e9-bdbe-76cbc06a5669,AUTHORIZATION,,true 10831,4514a637-88ad-43e9-bdbe-76cbc06a5669,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10832,4514a637-88ad-43e9-bdbe-76cbc06a5669,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10833,4514a637-88ad-43e9-bdbe-76cbc06a5669,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10834,a865da97-8a58-4297-873c-fc9359a98d5c,LIST_ACCOUNTS,hbciListAccounts,false -10835,a865da97-8a58-4297-873c-fc9359a98d5c,LIST_TRANSACTIONS,hbciListTransactions,false -10836,a865da97-8a58-4297-873c-fc9359a98d5c,AUTHORIZATION,,false -10837,a865da97-8a58-4297-873c-fc9359a98d5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10838,a865da97-8a58-4297-873c-fc9359a98d5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10839,a865da97-8a58-4297-873c-fc9359a98d5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10834,bd318885-b3fd-475b-b0cf-23fb4aeba7ad,LIST_ACCOUNTS,hbciListAccounts,false +10835,bd318885-b3fd-475b-b0cf-23fb4aeba7ad,LIST_TRANSACTIONS,hbciListTransactions,false +10836,bd318885-b3fd-475b-b0cf-23fb4aeba7ad,AUTHORIZATION,,false +10837,bd318885-b3fd-475b-b0cf-23fb4aeba7ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10838,bd318885-b3fd-475b-b0cf-23fb4aeba7ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10839,bd318885-b3fd-475b-b0cf-23fb4aeba7ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10840,c8fd9113-68ef-42b9-92ae-57988546492a,LIST_ACCOUNTS,xs2aListAccounts,true -10841,c8fd9113-68ef-42b9-92ae-57988546492a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10841,c8fd9113-68ef-42b9-92ae-57988546492a,LIST_TRANSACTIONS,xs2aListTransactions,true 10842,c8fd9113-68ef-42b9-92ae-57988546492a,AUTHORIZATION,,true 10843,c8fd9113-68ef-42b9-92ae-57988546492a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10844,c8fd9113-68ef-42b9-92ae-57988546492a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10845,c8fd9113-68ef-42b9-92ae-57988546492a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10846,1e24f8c7-d6bd-4978-af09-a5b9678dd27d,LIST_ACCOUNTS,hbciListAccounts,false -10847,1e24f8c7-d6bd-4978-af09-a5b9678dd27d,LIST_TRANSACTIONS,hbciListTransactions,false -10848,1e24f8c7-d6bd-4978-af09-a5b9678dd27d,AUTHORIZATION,,false -10849,1e24f8c7-d6bd-4978-af09-a5b9678dd27d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10850,1e24f8c7-d6bd-4978-af09-a5b9678dd27d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10851,1e24f8c7-d6bd-4978-af09-a5b9678dd27d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10846,96a7bc4e-2ead-4fd8-9726-619a1797638b,LIST_ACCOUNTS,hbciListAccounts,false +10847,96a7bc4e-2ead-4fd8-9726-619a1797638b,LIST_TRANSACTIONS,hbciListTransactions,false +10848,96a7bc4e-2ead-4fd8-9726-619a1797638b,AUTHORIZATION,,false +10849,96a7bc4e-2ead-4fd8-9726-619a1797638b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10850,96a7bc4e-2ead-4fd8-9726-619a1797638b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10851,96a7bc4e-2ead-4fd8-9726-619a1797638b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10852,4e246d06-aed7-47ee-b3dd-73837cd49a56,LIST_ACCOUNTS,xs2aListAccounts,true -10853,4e246d06-aed7-47ee-b3dd-73837cd49a56,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10853,4e246d06-aed7-47ee-b3dd-73837cd49a56,LIST_TRANSACTIONS,xs2aListTransactions,true 10854,4e246d06-aed7-47ee-b3dd-73837cd49a56,AUTHORIZATION,,true 10855,4e246d06-aed7-47ee-b3dd-73837cd49a56,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10856,4e246d06-aed7-47ee-b3dd-73837cd49a56,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10857,4e246d06-aed7-47ee-b3dd-73837cd49a56,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10858,d8e74757-21b6-475a-a889-54964898bdb3,LIST_ACCOUNTS,hbciListAccounts,false -10859,d8e74757-21b6-475a-a889-54964898bdb3,LIST_TRANSACTIONS,hbciListTransactions,false -10860,d8e74757-21b6-475a-a889-54964898bdb3,AUTHORIZATION,,false -10861,d8e74757-21b6-475a-a889-54964898bdb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10862,d8e74757-21b6-475a-a889-54964898bdb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10863,d8e74757-21b6-475a-a889-54964898bdb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10858,c88955cf-f697-4536-81b5-9a837fa83ed1,LIST_ACCOUNTS,hbciListAccounts,false +10859,c88955cf-f697-4536-81b5-9a837fa83ed1,LIST_TRANSACTIONS,hbciListTransactions,false +10860,c88955cf-f697-4536-81b5-9a837fa83ed1,AUTHORIZATION,,false +10861,c88955cf-f697-4536-81b5-9a837fa83ed1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10862,c88955cf-f697-4536-81b5-9a837fa83ed1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10863,c88955cf-f697-4536-81b5-9a837fa83ed1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10864,64c7c146-ad59-4f19-8b06-92e75c59dc85,LIST_ACCOUNTS,xs2aListAccounts,true -10865,64c7c146-ad59-4f19-8b06-92e75c59dc85,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10865,64c7c146-ad59-4f19-8b06-92e75c59dc85,LIST_TRANSACTIONS,xs2aListTransactions,true 10866,64c7c146-ad59-4f19-8b06-92e75c59dc85,AUTHORIZATION,,true 10867,64c7c146-ad59-4f19-8b06-92e75c59dc85,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10868,64c7c146-ad59-4f19-8b06-92e75c59dc85,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10869,64c7c146-ad59-4f19-8b06-92e75c59dc85,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10870,744f620b-bf66-4f66-aefd-006ba5baf2a3,LIST_ACCOUNTS,hbciListAccounts,false -10871,744f620b-bf66-4f66-aefd-006ba5baf2a3,LIST_TRANSACTIONS,hbciListTransactions,false -10872,744f620b-bf66-4f66-aefd-006ba5baf2a3,AUTHORIZATION,,false -10873,744f620b-bf66-4f66-aefd-006ba5baf2a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10874,744f620b-bf66-4f66-aefd-006ba5baf2a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10875,744f620b-bf66-4f66-aefd-006ba5baf2a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10870,e81ba3c7-8264-4653-ad63-8ba1c59c839e,LIST_ACCOUNTS,hbciListAccounts,false +10871,e81ba3c7-8264-4653-ad63-8ba1c59c839e,LIST_TRANSACTIONS,hbciListTransactions,false +10872,e81ba3c7-8264-4653-ad63-8ba1c59c839e,AUTHORIZATION,,false +10873,e81ba3c7-8264-4653-ad63-8ba1c59c839e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10874,e81ba3c7-8264-4653-ad63-8ba1c59c839e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10875,e81ba3c7-8264-4653-ad63-8ba1c59c839e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10876,19c5cb19-e051-40d6-a803-b1976a70092c,LIST_ACCOUNTS,xs2aListAccounts,true -10877,19c5cb19-e051-40d6-a803-b1976a70092c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10877,19c5cb19-e051-40d6-a803-b1976a70092c,LIST_TRANSACTIONS,xs2aListTransactions,true 10878,19c5cb19-e051-40d6-a803-b1976a70092c,AUTHORIZATION,,true 10879,19c5cb19-e051-40d6-a803-b1976a70092c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10880,19c5cb19-e051-40d6-a803-b1976a70092c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10881,19c5cb19-e051-40d6-a803-b1976a70092c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10882,07776746-5563-45ef-95d9-6afa33368555,LIST_ACCOUNTS,hbciListAccounts,false -10883,07776746-5563-45ef-95d9-6afa33368555,LIST_TRANSACTIONS,hbciListTransactions,false -10884,07776746-5563-45ef-95d9-6afa33368555,AUTHORIZATION,,false -10885,07776746-5563-45ef-95d9-6afa33368555,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10886,07776746-5563-45ef-95d9-6afa33368555,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10887,07776746-5563-45ef-95d9-6afa33368555,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10882,ebf74d8d-d957-4095-8f7b-dd7774f2e85a,LIST_ACCOUNTS,hbciListAccounts,false +10883,ebf74d8d-d957-4095-8f7b-dd7774f2e85a,LIST_TRANSACTIONS,hbciListTransactions,false +10884,ebf74d8d-d957-4095-8f7b-dd7774f2e85a,AUTHORIZATION,,false +10885,ebf74d8d-d957-4095-8f7b-dd7774f2e85a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10886,ebf74d8d-d957-4095-8f7b-dd7774f2e85a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10887,ebf74d8d-d957-4095-8f7b-dd7774f2e85a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10888,cf150957-8ecf-4129-bee9-e670bd5c0f33,LIST_ACCOUNTS,xs2aListAccounts,true -10889,cf150957-8ecf-4129-bee9-e670bd5c0f33,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10889,cf150957-8ecf-4129-bee9-e670bd5c0f33,LIST_TRANSACTIONS,xs2aListTransactions,true 10890,cf150957-8ecf-4129-bee9-e670bd5c0f33,AUTHORIZATION,,true 10891,cf150957-8ecf-4129-bee9-e670bd5c0f33,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10892,cf150957-8ecf-4129-bee9-e670bd5c0f33,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10893,cf150957-8ecf-4129-bee9-e670bd5c0f33,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10894,2a7a6ad9-3f2b-4a91-b98b-17e68f5b7415,LIST_ACCOUNTS,hbciListAccounts,false -10895,2a7a6ad9-3f2b-4a91-b98b-17e68f5b7415,LIST_TRANSACTIONS,hbciListTransactions,false -10896,2a7a6ad9-3f2b-4a91-b98b-17e68f5b7415,AUTHORIZATION,,false -10897,2a7a6ad9-3f2b-4a91-b98b-17e68f5b7415,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10898,2a7a6ad9-3f2b-4a91-b98b-17e68f5b7415,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10899,2a7a6ad9-3f2b-4a91-b98b-17e68f5b7415,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10894,03c4ab62-9d8c-4593-9ed9-eec043d4b8de,LIST_ACCOUNTS,hbciListAccounts,false +10895,03c4ab62-9d8c-4593-9ed9-eec043d4b8de,LIST_TRANSACTIONS,hbciListTransactions,false +10896,03c4ab62-9d8c-4593-9ed9-eec043d4b8de,AUTHORIZATION,,false +10897,03c4ab62-9d8c-4593-9ed9-eec043d4b8de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10898,03c4ab62-9d8c-4593-9ed9-eec043d4b8de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10899,03c4ab62-9d8c-4593-9ed9-eec043d4b8de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10900,b4051846-c06a-456e-9ad5-d2284b1e5107,LIST_ACCOUNTS,xs2aListAccounts,true -10901,b4051846-c06a-456e-9ad5-d2284b1e5107,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10901,b4051846-c06a-456e-9ad5-d2284b1e5107,LIST_TRANSACTIONS,xs2aListTransactions,true 10902,b4051846-c06a-456e-9ad5-d2284b1e5107,AUTHORIZATION,,true 10903,b4051846-c06a-456e-9ad5-d2284b1e5107,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10904,b4051846-c06a-456e-9ad5-d2284b1e5107,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10905,b4051846-c06a-456e-9ad5-d2284b1e5107,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10906,f274708e-26d2-467c-ba35-e26084a9b9c2,LIST_ACCOUNTS,hbciListAccounts,false -10907,f274708e-26d2-467c-ba35-e26084a9b9c2,LIST_TRANSACTIONS,hbciListTransactions,false -10908,f274708e-26d2-467c-ba35-e26084a9b9c2,AUTHORIZATION,,false -10909,f274708e-26d2-467c-ba35-e26084a9b9c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10910,f274708e-26d2-467c-ba35-e26084a9b9c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10911,f274708e-26d2-467c-ba35-e26084a9b9c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10906,fba9a1dc-2c0a-496f-8dec-b4f8ab133358,LIST_ACCOUNTS,hbciListAccounts,false +10907,fba9a1dc-2c0a-496f-8dec-b4f8ab133358,LIST_TRANSACTIONS,hbciListTransactions,false +10908,fba9a1dc-2c0a-496f-8dec-b4f8ab133358,AUTHORIZATION,,false +10909,fba9a1dc-2c0a-496f-8dec-b4f8ab133358,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10910,fba9a1dc-2c0a-496f-8dec-b4f8ab133358,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10911,fba9a1dc-2c0a-496f-8dec-b4f8ab133358,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10912,c5f8f31a-60fe-47c4-85e4-74ddff40173e,LIST_ACCOUNTS,xs2aListAccounts,true -10913,c5f8f31a-60fe-47c4-85e4-74ddff40173e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10913,c5f8f31a-60fe-47c4-85e4-74ddff40173e,LIST_TRANSACTIONS,xs2aListTransactions,true 10914,c5f8f31a-60fe-47c4-85e4-74ddff40173e,AUTHORIZATION,,true 10915,c5f8f31a-60fe-47c4-85e4-74ddff40173e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10916,c5f8f31a-60fe-47c4-85e4-74ddff40173e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10917,c5f8f31a-60fe-47c4-85e4-74ddff40173e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10918,9812f101-41c7-4595-bca1-c271c4565149,LIST_ACCOUNTS,hbciListAccounts,false -10919,9812f101-41c7-4595-bca1-c271c4565149,LIST_TRANSACTIONS,hbciListTransactions,false -10920,9812f101-41c7-4595-bca1-c271c4565149,AUTHORIZATION,,false -10921,9812f101-41c7-4595-bca1-c271c4565149,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10922,9812f101-41c7-4595-bca1-c271c4565149,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10923,9812f101-41c7-4595-bca1-c271c4565149,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10918,16c392ae-5cc3-4152-99b0-c6c06c841010,LIST_ACCOUNTS,hbciListAccounts,false +10919,16c392ae-5cc3-4152-99b0-c6c06c841010,LIST_TRANSACTIONS,hbciListTransactions,false +10920,16c392ae-5cc3-4152-99b0-c6c06c841010,AUTHORIZATION,,false +10921,16c392ae-5cc3-4152-99b0-c6c06c841010,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10922,16c392ae-5cc3-4152-99b0-c6c06c841010,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10923,16c392ae-5cc3-4152-99b0-c6c06c841010,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10924,56e51b7c-07b3-4a22-841b-f5112bebd355,LIST_ACCOUNTS,xs2aListAccounts,true -10925,56e51b7c-07b3-4a22-841b-f5112bebd355,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10925,56e51b7c-07b3-4a22-841b-f5112bebd355,LIST_TRANSACTIONS,xs2aListTransactions,true 10926,56e51b7c-07b3-4a22-841b-f5112bebd355,AUTHORIZATION,,true 10927,56e51b7c-07b3-4a22-841b-f5112bebd355,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10928,56e51b7c-07b3-4a22-841b-f5112bebd355,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10929,56e51b7c-07b3-4a22-841b-f5112bebd355,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10930,c022ce5c-cfe6-4848-b044-f1c34ca7257c,LIST_ACCOUNTS,hbciListAccounts,false -10931,c022ce5c-cfe6-4848-b044-f1c34ca7257c,LIST_TRANSACTIONS,hbciListTransactions,false -10932,c022ce5c-cfe6-4848-b044-f1c34ca7257c,AUTHORIZATION,,false -10933,c022ce5c-cfe6-4848-b044-f1c34ca7257c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10934,c022ce5c-cfe6-4848-b044-f1c34ca7257c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10935,c022ce5c-cfe6-4848-b044-f1c34ca7257c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10930,6d3bf513-c27d-48b0-9df7-0a402a074b91,LIST_ACCOUNTS,hbciListAccounts,false +10931,6d3bf513-c27d-48b0-9df7-0a402a074b91,LIST_TRANSACTIONS,hbciListTransactions,false +10932,6d3bf513-c27d-48b0-9df7-0a402a074b91,AUTHORIZATION,,false +10933,6d3bf513-c27d-48b0-9df7-0a402a074b91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10934,6d3bf513-c27d-48b0-9df7-0a402a074b91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10935,6d3bf513-c27d-48b0-9df7-0a402a074b91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10936,ffb3d507-9e3e-4fea-800b-cf524365a044,LIST_ACCOUNTS,xs2aListAccounts,true -10937,ffb3d507-9e3e-4fea-800b-cf524365a044,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10937,ffb3d507-9e3e-4fea-800b-cf524365a044,LIST_TRANSACTIONS,xs2aListTransactions,true 10938,ffb3d507-9e3e-4fea-800b-cf524365a044,AUTHORIZATION,,true 10939,ffb3d507-9e3e-4fea-800b-cf524365a044,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10940,ffb3d507-9e3e-4fea-800b-cf524365a044,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10941,ffb3d507-9e3e-4fea-800b-cf524365a044,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10942,b46efb62-264d-4cd8-900d-5a2b219cd35a,LIST_ACCOUNTS,hbciListAccounts,false -10943,b46efb62-264d-4cd8-900d-5a2b219cd35a,LIST_TRANSACTIONS,hbciListTransactions,false -10944,b46efb62-264d-4cd8-900d-5a2b219cd35a,AUTHORIZATION,,false -10945,b46efb62-264d-4cd8-900d-5a2b219cd35a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10946,b46efb62-264d-4cd8-900d-5a2b219cd35a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10947,b46efb62-264d-4cd8-900d-5a2b219cd35a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10942,4b61158e-ba2f-4c0b-8a41-4621cf597e26,LIST_ACCOUNTS,hbciListAccounts,false +10943,4b61158e-ba2f-4c0b-8a41-4621cf597e26,LIST_TRANSACTIONS,hbciListTransactions,false +10944,4b61158e-ba2f-4c0b-8a41-4621cf597e26,AUTHORIZATION,,false +10945,4b61158e-ba2f-4c0b-8a41-4621cf597e26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10946,4b61158e-ba2f-4c0b-8a41-4621cf597e26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10947,4b61158e-ba2f-4c0b-8a41-4621cf597e26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10948,aef9251a-f3cd-4d8f-9da3-53811e5f1fbf,LIST_ACCOUNTS,xs2aListAccounts,true -10949,aef9251a-f3cd-4d8f-9da3-53811e5f1fbf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10949,aef9251a-f3cd-4d8f-9da3-53811e5f1fbf,LIST_TRANSACTIONS,xs2aListTransactions,true 10950,aef9251a-f3cd-4d8f-9da3-53811e5f1fbf,AUTHORIZATION,,true 10951,aef9251a-f3cd-4d8f-9da3-53811e5f1fbf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10952,aef9251a-f3cd-4d8f-9da3-53811e5f1fbf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10953,aef9251a-f3cd-4d8f-9da3-53811e5f1fbf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10954,e6dfc446-2b79-4f2e-8c6b-e1cb8a037a2d,LIST_ACCOUNTS,hbciListAccounts,false -10955,e6dfc446-2b79-4f2e-8c6b-e1cb8a037a2d,LIST_TRANSACTIONS,hbciListTransactions,false -10956,e6dfc446-2b79-4f2e-8c6b-e1cb8a037a2d,AUTHORIZATION,,false -10957,e6dfc446-2b79-4f2e-8c6b-e1cb8a037a2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10958,e6dfc446-2b79-4f2e-8c6b-e1cb8a037a2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10959,e6dfc446-2b79-4f2e-8c6b-e1cb8a037a2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10954,574024ca-075e-408a-8b75-07cfc0bd0568,LIST_ACCOUNTS,hbciListAccounts,false +10955,574024ca-075e-408a-8b75-07cfc0bd0568,LIST_TRANSACTIONS,hbciListTransactions,false +10956,574024ca-075e-408a-8b75-07cfc0bd0568,AUTHORIZATION,,false +10957,574024ca-075e-408a-8b75-07cfc0bd0568,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10958,574024ca-075e-408a-8b75-07cfc0bd0568,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10959,574024ca-075e-408a-8b75-07cfc0bd0568,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10960,5cb32d84-9162-41d2-ba4f-16cc798a40b8,LIST_ACCOUNTS,xs2aListAccounts,true -10961,5cb32d84-9162-41d2-ba4f-16cc798a40b8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10961,5cb32d84-9162-41d2-ba4f-16cc798a40b8,LIST_TRANSACTIONS,xs2aListTransactions,true 10962,5cb32d84-9162-41d2-ba4f-16cc798a40b8,AUTHORIZATION,,true 10963,5cb32d84-9162-41d2-ba4f-16cc798a40b8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10964,5cb32d84-9162-41d2-ba4f-16cc798a40b8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10965,5cb32d84-9162-41d2-ba4f-16cc798a40b8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10966,c27bc29d-fad7-43cd-85ab-4478275da8f6,LIST_ACCOUNTS,hbciListAccounts,false -10967,c27bc29d-fad7-43cd-85ab-4478275da8f6,LIST_TRANSACTIONS,hbciListTransactions,false -10968,c27bc29d-fad7-43cd-85ab-4478275da8f6,AUTHORIZATION,,false -10969,c27bc29d-fad7-43cd-85ab-4478275da8f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10970,c27bc29d-fad7-43cd-85ab-4478275da8f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10971,c27bc29d-fad7-43cd-85ab-4478275da8f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10966,592d2329-8de6-4372-aa4d-94ce64daabde,LIST_ACCOUNTS,hbciListAccounts,false +10967,592d2329-8de6-4372-aa4d-94ce64daabde,LIST_TRANSACTIONS,hbciListTransactions,false +10968,592d2329-8de6-4372-aa4d-94ce64daabde,AUTHORIZATION,,false +10969,592d2329-8de6-4372-aa4d-94ce64daabde,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10970,592d2329-8de6-4372-aa4d-94ce64daabde,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10971,592d2329-8de6-4372-aa4d-94ce64daabde,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10972,a7201764-acf8-42b7-9fcb-2641a486e73b,LIST_ACCOUNTS,xs2aListAccounts,true -10973,a7201764-acf8-42b7-9fcb-2641a486e73b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10973,a7201764-acf8-42b7-9fcb-2641a486e73b,LIST_TRANSACTIONS,xs2aListTransactions,true 10974,a7201764-acf8-42b7-9fcb-2641a486e73b,AUTHORIZATION,,true 10975,a7201764-acf8-42b7-9fcb-2641a486e73b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10976,a7201764-acf8-42b7-9fcb-2641a486e73b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10977,a7201764-acf8-42b7-9fcb-2641a486e73b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10978,424e507d-00f8-438f-92db-ff807e1fb34d,LIST_ACCOUNTS,hbciListAccounts,false -10979,424e507d-00f8-438f-92db-ff807e1fb34d,LIST_TRANSACTIONS,hbciListTransactions,false -10980,424e507d-00f8-438f-92db-ff807e1fb34d,AUTHORIZATION,,false -10981,424e507d-00f8-438f-92db-ff807e1fb34d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10982,424e507d-00f8-438f-92db-ff807e1fb34d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10983,424e507d-00f8-438f-92db-ff807e1fb34d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10978,1fcf29c8-49f4-4087-bdf9-1d9266fe750c,LIST_ACCOUNTS,hbciListAccounts,false +10979,1fcf29c8-49f4-4087-bdf9-1d9266fe750c,LIST_TRANSACTIONS,hbciListTransactions,false +10980,1fcf29c8-49f4-4087-bdf9-1d9266fe750c,AUTHORIZATION,,false +10981,1fcf29c8-49f4-4087-bdf9-1d9266fe750c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10982,1fcf29c8-49f4-4087-bdf9-1d9266fe750c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10983,1fcf29c8-49f4-4087-bdf9-1d9266fe750c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10984,9645138b-9b51-4722-b525-58be1ea42978,LIST_ACCOUNTS,xs2aListAccounts,true -10985,9645138b-9b51-4722-b525-58be1ea42978,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10985,9645138b-9b51-4722-b525-58be1ea42978,LIST_TRANSACTIONS,xs2aListTransactions,true 10986,9645138b-9b51-4722-b525-58be1ea42978,AUTHORIZATION,,true 10987,9645138b-9b51-4722-b525-58be1ea42978,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 10988,9645138b-9b51-4722-b525-58be1ea42978,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 10989,9645138b-9b51-4722-b525-58be1ea42978,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -10990,fa14d5b8-aa97-4e17-800d-146371a55ff4,LIST_ACCOUNTS,hbciListAccounts,false -10991,fa14d5b8-aa97-4e17-800d-146371a55ff4,LIST_TRANSACTIONS,hbciListTransactions,false -10992,fa14d5b8-aa97-4e17-800d-146371a55ff4,AUTHORIZATION,,false -10993,fa14d5b8-aa97-4e17-800d-146371a55ff4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -10994,fa14d5b8-aa97-4e17-800d-146371a55ff4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -10995,fa14d5b8-aa97-4e17-800d-146371a55ff4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +10990,4df26395-1ff0-44d8-85b0-7f1c36a3f9c3,LIST_ACCOUNTS,hbciListAccounts,false +10991,4df26395-1ff0-44d8-85b0-7f1c36a3f9c3,LIST_TRANSACTIONS,hbciListTransactions,false +10992,4df26395-1ff0-44d8-85b0-7f1c36a3f9c3,AUTHORIZATION,,false +10993,4df26395-1ff0-44d8-85b0-7f1c36a3f9c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +10994,4df26395-1ff0-44d8-85b0-7f1c36a3f9c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +10995,4df26395-1ff0-44d8-85b0-7f1c36a3f9c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 10996,b6a23f57-ac6d-43d4-a94a-41e1588e6c83,LIST_ACCOUNTS,xs2aListAccounts,true -10997,b6a23f57-ac6d-43d4-a94a-41e1588e6c83,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +10997,b6a23f57-ac6d-43d4-a94a-41e1588e6c83,LIST_TRANSACTIONS,xs2aListTransactions,true 10998,b6a23f57-ac6d-43d4-a94a-41e1588e6c83,AUTHORIZATION,,true 10999,b6a23f57-ac6d-43d4-a94a-41e1588e6c83,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11000,b6a23f57-ac6d-43d4-a94a-41e1588e6c83,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11001,b6a23f57-ac6d-43d4-a94a-41e1588e6c83,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11002,6e632999-32f3-4b66-a165-9131a78e7453,LIST_ACCOUNTS,hbciListAccounts,false -11003,6e632999-32f3-4b66-a165-9131a78e7453,LIST_TRANSACTIONS,hbciListTransactions,false -11004,6e632999-32f3-4b66-a165-9131a78e7453,AUTHORIZATION,,false -11005,6e632999-32f3-4b66-a165-9131a78e7453,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11006,6e632999-32f3-4b66-a165-9131a78e7453,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11007,6e632999-32f3-4b66-a165-9131a78e7453,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11002,3bdd4b2b-98d4-4b73-9b64-3268c205c2cd,LIST_ACCOUNTS,hbciListAccounts,false +11003,3bdd4b2b-98d4-4b73-9b64-3268c205c2cd,LIST_TRANSACTIONS,hbciListTransactions,false +11004,3bdd4b2b-98d4-4b73-9b64-3268c205c2cd,AUTHORIZATION,,false +11005,3bdd4b2b-98d4-4b73-9b64-3268c205c2cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11006,3bdd4b2b-98d4-4b73-9b64-3268c205c2cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11007,3bdd4b2b-98d4-4b73-9b64-3268c205c2cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11008,2970af5f-eecf-47dc-ba66-0aad3a4a47aa,LIST_ACCOUNTS,xs2aListAccounts,true -11009,2970af5f-eecf-47dc-ba66-0aad3a4a47aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11009,2970af5f-eecf-47dc-ba66-0aad3a4a47aa,LIST_TRANSACTIONS,xs2aListTransactions,true 11010,2970af5f-eecf-47dc-ba66-0aad3a4a47aa,AUTHORIZATION,,true 11011,2970af5f-eecf-47dc-ba66-0aad3a4a47aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11012,2970af5f-eecf-47dc-ba66-0aad3a4a47aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11013,2970af5f-eecf-47dc-ba66-0aad3a4a47aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11014,eec8632b-0e40-4ca7-b987-26c1f147671d,LIST_ACCOUNTS,hbciListAccounts,false -11015,eec8632b-0e40-4ca7-b987-26c1f147671d,LIST_TRANSACTIONS,hbciListTransactions,false -11016,eec8632b-0e40-4ca7-b987-26c1f147671d,AUTHORIZATION,,false -11017,eec8632b-0e40-4ca7-b987-26c1f147671d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11018,eec8632b-0e40-4ca7-b987-26c1f147671d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11019,eec8632b-0e40-4ca7-b987-26c1f147671d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11014,be4b1eb1-e774-4f61-b0ca-c2bfed1799dc,LIST_ACCOUNTS,hbciListAccounts,false +11015,be4b1eb1-e774-4f61-b0ca-c2bfed1799dc,LIST_TRANSACTIONS,hbciListTransactions,false +11016,be4b1eb1-e774-4f61-b0ca-c2bfed1799dc,AUTHORIZATION,,false +11017,be4b1eb1-e774-4f61-b0ca-c2bfed1799dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11018,be4b1eb1-e774-4f61-b0ca-c2bfed1799dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11019,be4b1eb1-e774-4f61-b0ca-c2bfed1799dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11020,16a495ac-d05e-41eb-9420-e2f26fc2e6ff,LIST_ACCOUNTS,xs2aListAccounts,true -11021,16a495ac-d05e-41eb-9420-e2f26fc2e6ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11021,16a495ac-d05e-41eb-9420-e2f26fc2e6ff,LIST_TRANSACTIONS,xs2aListTransactions,true 11022,16a495ac-d05e-41eb-9420-e2f26fc2e6ff,AUTHORIZATION,,true 11023,16a495ac-d05e-41eb-9420-e2f26fc2e6ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11024,16a495ac-d05e-41eb-9420-e2f26fc2e6ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11025,16a495ac-d05e-41eb-9420-e2f26fc2e6ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11026,9ade1207-ed69-4f6f-aacd-399ac35f3b31,LIST_ACCOUNTS,hbciListAccounts,false -11027,9ade1207-ed69-4f6f-aacd-399ac35f3b31,LIST_TRANSACTIONS,hbciListTransactions,false -11028,9ade1207-ed69-4f6f-aacd-399ac35f3b31,AUTHORIZATION,,false -11029,9ade1207-ed69-4f6f-aacd-399ac35f3b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11030,9ade1207-ed69-4f6f-aacd-399ac35f3b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11031,9ade1207-ed69-4f6f-aacd-399ac35f3b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11026,54a5da9c-dbe7-4bbf-a577-665ce87fac90,LIST_ACCOUNTS,hbciListAccounts,false +11027,54a5da9c-dbe7-4bbf-a577-665ce87fac90,LIST_TRANSACTIONS,hbciListTransactions,false +11028,54a5da9c-dbe7-4bbf-a577-665ce87fac90,AUTHORIZATION,,false +11029,54a5da9c-dbe7-4bbf-a577-665ce87fac90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11030,54a5da9c-dbe7-4bbf-a577-665ce87fac90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11031,54a5da9c-dbe7-4bbf-a577-665ce87fac90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11032,0b826ea1-8251-489f-b2c2-9fe6aa834945,LIST_ACCOUNTS,xs2aListAccounts,true -11033,0b826ea1-8251-489f-b2c2-9fe6aa834945,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11033,0b826ea1-8251-489f-b2c2-9fe6aa834945,LIST_TRANSACTIONS,xs2aListTransactions,true 11034,0b826ea1-8251-489f-b2c2-9fe6aa834945,AUTHORIZATION,,true 11035,0b826ea1-8251-489f-b2c2-9fe6aa834945,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11036,0b826ea1-8251-489f-b2c2-9fe6aa834945,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11037,0b826ea1-8251-489f-b2c2-9fe6aa834945,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11038,ee427df9-e277-440c-b5df-ab43d9a8fb75,LIST_ACCOUNTS,hbciListAccounts,false -11039,ee427df9-e277-440c-b5df-ab43d9a8fb75,LIST_TRANSACTIONS,hbciListTransactions,false -11040,ee427df9-e277-440c-b5df-ab43d9a8fb75,AUTHORIZATION,,false -11041,ee427df9-e277-440c-b5df-ab43d9a8fb75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11042,ee427df9-e277-440c-b5df-ab43d9a8fb75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11043,ee427df9-e277-440c-b5df-ab43d9a8fb75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11038,35bbf7ef-65db-419c-8bbd-944f8bbb0eae,LIST_ACCOUNTS,hbciListAccounts,false +11039,35bbf7ef-65db-419c-8bbd-944f8bbb0eae,LIST_TRANSACTIONS,hbciListTransactions,false +11040,35bbf7ef-65db-419c-8bbd-944f8bbb0eae,AUTHORIZATION,,false +11041,35bbf7ef-65db-419c-8bbd-944f8bbb0eae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11042,35bbf7ef-65db-419c-8bbd-944f8bbb0eae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11043,35bbf7ef-65db-419c-8bbd-944f8bbb0eae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11044,53474d43-5e8e-4f77-afc9-e7efa3887441,LIST_ACCOUNTS,xs2aListAccounts,true -11045,53474d43-5e8e-4f77-afc9-e7efa3887441,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11045,53474d43-5e8e-4f77-afc9-e7efa3887441,LIST_TRANSACTIONS,xs2aListTransactions,true 11046,53474d43-5e8e-4f77-afc9-e7efa3887441,AUTHORIZATION,,true 11047,53474d43-5e8e-4f77-afc9-e7efa3887441,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11048,53474d43-5e8e-4f77-afc9-e7efa3887441,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11049,53474d43-5e8e-4f77-afc9-e7efa3887441,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11050,fbb96620-d46d-4a4c-8c9f-f1f4ebae03e9,LIST_ACCOUNTS,hbciListAccounts,false -11051,fbb96620-d46d-4a4c-8c9f-f1f4ebae03e9,LIST_TRANSACTIONS,hbciListTransactions,false -11052,fbb96620-d46d-4a4c-8c9f-f1f4ebae03e9,AUTHORIZATION,,false -11053,fbb96620-d46d-4a4c-8c9f-f1f4ebae03e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11054,fbb96620-d46d-4a4c-8c9f-f1f4ebae03e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11055,fbb96620-d46d-4a4c-8c9f-f1f4ebae03e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11050,2277e84f-4c4b-4cc6-9e95-fdb06234cc26,LIST_ACCOUNTS,hbciListAccounts,false +11051,2277e84f-4c4b-4cc6-9e95-fdb06234cc26,LIST_TRANSACTIONS,hbciListTransactions,false +11052,2277e84f-4c4b-4cc6-9e95-fdb06234cc26,AUTHORIZATION,,false +11053,2277e84f-4c4b-4cc6-9e95-fdb06234cc26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11054,2277e84f-4c4b-4cc6-9e95-fdb06234cc26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11055,2277e84f-4c4b-4cc6-9e95-fdb06234cc26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11056,7040be1c-4631-4b5b-8fda-5d2d10191c9a,LIST_ACCOUNTS,xs2aListAccounts,true -11057,7040be1c-4631-4b5b-8fda-5d2d10191c9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11057,7040be1c-4631-4b5b-8fda-5d2d10191c9a,LIST_TRANSACTIONS,xs2aListTransactions,true 11058,7040be1c-4631-4b5b-8fda-5d2d10191c9a,AUTHORIZATION,,true 11059,7040be1c-4631-4b5b-8fda-5d2d10191c9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11060,7040be1c-4631-4b5b-8fda-5d2d10191c9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11061,7040be1c-4631-4b5b-8fda-5d2d10191c9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11062,cf9d3252-f6a3-4448-8e1d-41c29b1ccb02,LIST_ACCOUNTS,hbciListAccounts,false -11063,cf9d3252-f6a3-4448-8e1d-41c29b1ccb02,LIST_TRANSACTIONS,hbciListTransactions,false -11064,cf9d3252-f6a3-4448-8e1d-41c29b1ccb02,AUTHORIZATION,,false -11065,cf9d3252-f6a3-4448-8e1d-41c29b1ccb02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11066,cf9d3252-f6a3-4448-8e1d-41c29b1ccb02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11067,cf9d3252-f6a3-4448-8e1d-41c29b1ccb02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11062,33ffca4f-b7a8-4618-a65b-613e6df99d67,LIST_ACCOUNTS,hbciListAccounts,false +11063,33ffca4f-b7a8-4618-a65b-613e6df99d67,LIST_TRANSACTIONS,hbciListTransactions,false +11064,33ffca4f-b7a8-4618-a65b-613e6df99d67,AUTHORIZATION,,false +11065,33ffca4f-b7a8-4618-a65b-613e6df99d67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11066,33ffca4f-b7a8-4618-a65b-613e6df99d67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11067,33ffca4f-b7a8-4618-a65b-613e6df99d67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11068,5ff4da57-5583-4f20-bac9-a8656e9a90e5,LIST_ACCOUNTS,xs2aListAccounts,true -11069,5ff4da57-5583-4f20-bac9-a8656e9a90e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11069,5ff4da57-5583-4f20-bac9-a8656e9a90e5,LIST_TRANSACTIONS,xs2aListTransactions,true 11070,5ff4da57-5583-4f20-bac9-a8656e9a90e5,AUTHORIZATION,,true 11071,5ff4da57-5583-4f20-bac9-a8656e9a90e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11072,5ff4da57-5583-4f20-bac9-a8656e9a90e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11073,5ff4da57-5583-4f20-bac9-a8656e9a90e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11074,3ab3ad68-716f-4cd3-89c5-61c2969682bf,LIST_ACCOUNTS,hbciListAccounts,false -11075,3ab3ad68-716f-4cd3-89c5-61c2969682bf,LIST_TRANSACTIONS,hbciListTransactions,false -11076,3ab3ad68-716f-4cd3-89c5-61c2969682bf,AUTHORIZATION,,false -11077,3ab3ad68-716f-4cd3-89c5-61c2969682bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11078,3ab3ad68-716f-4cd3-89c5-61c2969682bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11079,3ab3ad68-716f-4cd3-89c5-61c2969682bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11074,a9d71781-e1b2-4a25-be3d-71e1ab566f1d,LIST_ACCOUNTS,hbciListAccounts,false +11075,a9d71781-e1b2-4a25-be3d-71e1ab566f1d,LIST_TRANSACTIONS,hbciListTransactions,false +11076,a9d71781-e1b2-4a25-be3d-71e1ab566f1d,AUTHORIZATION,,false +11077,a9d71781-e1b2-4a25-be3d-71e1ab566f1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11078,a9d71781-e1b2-4a25-be3d-71e1ab566f1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11079,a9d71781-e1b2-4a25-be3d-71e1ab566f1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11080,69c3e8d2-81c2-49d3-9f54-840895f1fdd2,LIST_ACCOUNTS,xs2aListAccounts,true -11081,69c3e8d2-81c2-49d3-9f54-840895f1fdd2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11081,69c3e8d2-81c2-49d3-9f54-840895f1fdd2,LIST_TRANSACTIONS,xs2aListTransactions,true 11082,69c3e8d2-81c2-49d3-9f54-840895f1fdd2,AUTHORIZATION,,true 11083,69c3e8d2-81c2-49d3-9f54-840895f1fdd2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11084,69c3e8d2-81c2-49d3-9f54-840895f1fdd2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11085,69c3e8d2-81c2-49d3-9f54-840895f1fdd2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11086,b346981e-6cab-4970-ba84-66edf308681f,LIST_ACCOUNTS,hbciListAccounts,false -11087,b346981e-6cab-4970-ba84-66edf308681f,LIST_TRANSACTIONS,hbciListTransactions,false -11088,b346981e-6cab-4970-ba84-66edf308681f,AUTHORIZATION,,false -11089,b346981e-6cab-4970-ba84-66edf308681f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11090,b346981e-6cab-4970-ba84-66edf308681f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11091,b346981e-6cab-4970-ba84-66edf308681f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11086,4bd78444-45d8-43de-9053-0f645c3bbdf7,LIST_ACCOUNTS,hbciListAccounts,false +11087,4bd78444-45d8-43de-9053-0f645c3bbdf7,LIST_TRANSACTIONS,hbciListTransactions,false +11088,4bd78444-45d8-43de-9053-0f645c3bbdf7,AUTHORIZATION,,false +11089,4bd78444-45d8-43de-9053-0f645c3bbdf7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11090,4bd78444-45d8-43de-9053-0f645c3bbdf7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11091,4bd78444-45d8-43de-9053-0f645c3bbdf7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11092,2fc9085f-4867-4b0e-9322-2f7a6a02451e,LIST_ACCOUNTS,xs2aListAccounts,true -11093,2fc9085f-4867-4b0e-9322-2f7a6a02451e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11093,2fc9085f-4867-4b0e-9322-2f7a6a02451e,LIST_TRANSACTIONS,xs2aListTransactions,true 11094,2fc9085f-4867-4b0e-9322-2f7a6a02451e,AUTHORIZATION,,true 11095,2fc9085f-4867-4b0e-9322-2f7a6a02451e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11096,2fc9085f-4867-4b0e-9322-2f7a6a02451e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11097,2fc9085f-4867-4b0e-9322-2f7a6a02451e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11098,27505cd4-b10d-4668-b31f-209790626d39,LIST_ACCOUNTS,hbciListAccounts,false -11099,27505cd4-b10d-4668-b31f-209790626d39,LIST_TRANSACTIONS,hbciListTransactions,false -11100,27505cd4-b10d-4668-b31f-209790626d39,AUTHORIZATION,,false -11101,27505cd4-b10d-4668-b31f-209790626d39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11102,27505cd4-b10d-4668-b31f-209790626d39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11103,27505cd4-b10d-4668-b31f-209790626d39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11098,9b90219d-1c7a-4065-8912-f481a8097e7c,LIST_ACCOUNTS,hbciListAccounts,false +11099,9b90219d-1c7a-4065-8912-f481a8097e7c,LIST_TRANSACTIONS,hbciListTransactions,false +11100,9b90219d-1c7a-4065-8912-f481a8097e7c,AUTHORIZATION,,false +11101,9b90219d-1c7a-4065-8912-f481a8097e7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11102,9b90219d-1c7a-4065-8912-f481a8097e7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11103,9b90219d-1c7a-4065-8912-f481a8097e7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11104,97f0dea0-c084-4158-9fef-1e19803c7d9d,LIST_ACCOUNTS,xs2aListAccounts,true -11105,97f0dea0-c084-4158-9fef-1e19803c7d9d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11105,97f0dea0-c084-4158-9fef-1e19803c7d9d,LIST_TRANSACTIONS,xs2aListTransactions,true 11106,97f0dea0-c084-4158-9fef-1e19803c7d9d,AUTHORIZATION,,true 11107,97f0dea0-c084-4158-9fef-1e19803c7d9d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11108,97f0dea0-c084-4158-9fef-1e19803c7d9d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11109,97f0dea0-c084-4158-9fef-1e19803c7d9d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11110,b4bc1f1d-91fe-4586-a0da-9113659db932,LIST_ACCOUNTS,hbciListAccounts,false -11111,b4bc1f1d-91fe-4586-a0da-9113659db932,LIST_TRANSACTIONS,hbciListTransactions,false -11112,b4bc1f1d-91fe-4586-a0da-9113659db932,AUTHORIZATION,,false -11113,b4bc1f1d-91fe-4586-a0da-9113659db932,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11114,b4bc1f1d-91fe-4586-a0da-9113659db932,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11115,b4bc1f1d-91fe-4586-a0da-9113659db932,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11110,2afe5ce3-d93b-4874-9f3f-5d255cc5655b,LIST_ACCOUNTS,hbciListAccounts,false +11111,2afe5ce3-d93b-4874-9f3f-5d255cc5655b,LIST_TRANSACTIONS,hbciListTransactions,false +11112,2afe5ce3-d93b-4874-9f3f-5d255cc5655b,AUTHORIZATION,,false +11113,2afe5ce3-d93b-4874-9f3f-5d255cc5655b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11114,2afe5ce3-d93b-4874-9f3f-5d255cc5655b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11115,2afe5ce3-d93b-4874-9f3f-5d255cc5655b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11116,11495151-ab50-4a04-be1e-b0049a8bc45c,LIST_ACCOUNTS,xs2aListAccounts,true -11117,11495151-ab50-4a04-be1e-b0049a8bc45c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11117,11495151-ab50-4a04-be1e-b0049a8bc45c,LIST_TRANSACTIONS,xs2aListTransactions,true 11118,11495151-ab50-4a04-be1e-b0049a8bc45c,AUTHORIZATION,,true 11119,11495151-ab50-4a04-be1e-b0049a8bc45c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11120,11495151-ab50-4a04-be1e-b0049a8bc45c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11121,11495151-ab50-4a04-be1e-b0049a8bc45c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11122,f0f0debd-e1ce-4b39-9b99-bec429ee84b4,LIST_ACCOUNTS,hbciListAccounts,false -11123,f0f0debd-e1ce-4b39-9b99-bec429ee84b4,LIST_TRANSACTIONS,hbciListTransactions,false -11124,f0f0debd-e1ce-4b39-9b99-bec429ee84b4,AUTHORIZATION,,false -11125,f0f0debd-e1ce-4b39-9b99-bec429ee84b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11126,f0f0debd-e1ce-4b39-9b99-bec429ee84b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11127,f0f0debd-e1ce-4b39-9b99-bec429ee84b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11122,47082b35-600a-4351-8ed0-b6d2da76d688,LIST_ACCOUNTS,hbciListAccounts,false +11123,47082b35-600a-4351-8ed0-b6d2da76d688,LIST_TRANSACTIONS,hbciListTransactions,false +11124,47082b35-600a-4351-8ed0-b6d2da76d688,AUTHORIZATION,,false +11125,47082b35-600a-4351-8ed0-b6d2da76d688,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11126,47082b35-600a-4351-8ed0-b6d2da76d688,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11127,47082b35-600a-4351-8ed0-b6d2da76d688,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11128,2611d379-26c6-4824-a132-5f9899978ebe,LIST_ACCOUNTS,xs2aListAccounts,true -11129,2611d379-26c6-4824-a132-5f9899978ebe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11129,2611d379-26c6-4824-a132-5f9899978ebe,LIST_TRANSACTIONS,xs2aListTransactions,true 11130,2611d379-26c6-4824-a132-5f9899978ebe,AUTHORIZATION,,true 11131,2611d379-26c6-4824-a132-5f9899978ebe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11132,2611d379-26c6-4824-a132-5f9899978ebe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11133,2611d379-26c6-4824-a132-5f9899978ebe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11134,7788c5aa-ff61-47f7-a75a-ce340e362304,LIST_ACCOUNTS,hbciListAccounts,false -11135,7788c5aa-ff61-47f7-a75a-ce340e362304,LIST_TRANSACTIONS,hbciListTransactions,false -11136,7788c5aa-ff61-47f7-a75a-ce340e362304,AUTHORIZATION,,false -11137,7788c5aa-ff61-47f7-a75a-ce340e362304,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11138,7788c5aa-ff61-47f7-a75a-ce340e362304,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11139,7788c5aa-ff61-47f7-a75a-ce340e362304,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11134,d262b670-ce23-4b43-9126-8f6b25aa9bfe,LIST_ACCOUNTS,hbciListAccounts,false +11135,d262b670-ce23-4b43-9126-8f6b25aa9bfe,LIST_TRANSACTIONS,hbciListTransactions,false +11136,d262b670-ce23-4b43-9126-8f6b25aa9bfe,AUTHORIZATION,,false +11137,d262b670-ce23-4b43-9126-8f6b25aa9bfe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11138,d262b670-ce23-4b43-9126-8f6b25aa9bfe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11139,d262b670-ce23-4b43-9126-8f6b25aa9bfe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11140,8cebb10c-6a1d-48e7-9470-f3561d5cef0d,LIST_ACCOUNTS,xs2aListAccounts,true -11141,8cebb10c-6a1d-48e7-9470-f3561d5cef0d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11141,8cebb10c-6a1d-48e7-9470-f3561d5cef0d,LIST_TRANSACTIONS,xs2aListTransactions,true 11142,8cebb10c-6a1d-48e7-9470-f3561d5cef0d,AUTHORIZATION,,true 11143,8cebb10c-6a1d-48e7-9470-f3561d5cef0d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11144,8cebb10c-6a1d-48e7-9470-f3561d5cef0d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11145,8cebb10c-6a1d-48e7-9470-f3561d5cef0d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11146,2b3fda8c-4e05-4368-98be-37a52ba02ae7,LIST_ACCOUNTS,hbciListAccounts,false -11147,2b3fda8c-4e05-4368-98be-37a52ba02ae7,LIST_TRANSACTIONS,hbciListTransactions,false -11148,2b3fda8c-4e05-4368-98be-37a52ba02ae7,AUTHORIZATION,,false -11149,2b3fda8c-4e05-4368-98be-37a52ba02ae7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11150,2b3fda8c-4e05-4368-98be-37a52ba02ae7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11151,2b3fda8c-4e05-4368-98be-37a52ba02ae7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11146,839e488c-71e6-42d4-8451-3f4f3ad7b56e,LIST_ACCOUNTS,hbciListAccounts,false +11147,839e488c-71e6-42d4-8451-3f4f3ad7b56e,LIST_TRANSACTIONS,hbciListTransactions,false +11148,839e488c-71e6-42d4-8451-3f4f3ad7b56e,AUTHORIZATION,,false +11149,839e488c-71e6-42d4-8451-3f4f3ad7b56e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11150,839e488c-71e6-42d4-8451-3f4f3ad7b56e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11151,839e488c-71e6-42d4-8451-3f4f3ad7b56e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11152,8092234b-6591-4e3c-bed6-dab4fb5a409f,LIST_ACCOUNTS,xs2aListAccounts,true -11153,8092234b-6591-4e3c-bed6-dab4fb5a409f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11153,8092234b-6591-4e3c-bed6-dab4fb5a409f,LIST_TRANSACTIONS,xs2aListTransactions,true 11154,8092234b-6591-4e3c-bed6-dab4fb5a409f,AUTHORIZATION,,true 11155,8092234b-6591-4e3c-bed6-dab4fb5a409f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11156,8092234b-6591-4e3c-bed6-dab4fb5a409f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11157,8092234b-6591-4e3c-bed6-dab4fb5a409f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11158,61579d30-6ea5-4603-8c6f-923688fd9fe4,LIST_ACCOUNTS,hbciListAccounts,false -11159,61579d30-6ea5-4603-8c6f-923688fd9fe4,LIST_TRANSACTIONS,hbciListTransactions,false -11160,61579d30-6ea5-4603-8c6f-923688fd9fe4,AUTHORIZATION,,false -11161,61579d30-6ea5-4603-8c6f-923688fd9fe4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11162,61579d30-6ea5-4603-8c6f-923688fd9fe4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11163,61579d30-6ea5-4603-8c6f-923688fd9fe4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11158,e357a1f2-2f51-4ef9-8538-05af7552fe21,LIST_ACCOUNTS,hbciListAccounts,false +11159,e357a1f2-2f51-4ef9-8538-05af7552fe21,LIST_TRANSACTIONS,hbciListTransactions,false +11160,e357a1f2-2f51-4ef9-8538-05af7552fe21,AUTHORIZATION,,false +11161,e357a1f2-2f51-4ef9-8538-05af7552fe21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11162,e357a1f2-2f51-4ef9-8538-05af7552fe21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11163,e357a1f2-2f51-4ef9-8538-05af7552fe21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11164,1da79d50-a4de-4d49-b772-b45ebbce33dc,LIST_ACCOUNTS,xs2aListAccounts,true -11165,1da79d50-a4de-4d49-b772-b45ebbce33dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11165,1da79d50-a4de-4d49-b772-b45ebbce33dc,LIST_TRANSACTIONS,xs2aListTransactions,true 11166,1da79d50-a4de-4d49-b772-b45ebbce33dc,AUTHORIZATION,,true 11167,1da79d50-a4de-4d49-b772-b45ebbce33dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11168,1da79d50-a4de-4d49-b772-b45ebbce33dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11169,1da79d50-a4de-4d49-b772-b45ebbce33dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11170,1b5beb95-4b6f-4276-b61a-34e89c0c02d9,LIST_ACCOUNTS,hbciListAccounts,false -11171,1b5beb95-4b6f-4276-b61a-34e89c0c02d9,LIST_TRANSACTIONS,hbciListTransactions,false -11172,1b5beb95-4b6f-4276-b61a-34e89c0c02d9,AUTHORIZATION,,false -11173,1b5beb95-4b6f-4276-b61a-34e89c0c02d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11174,1b5beb95-4b6f-4276-b61a-34e89c0c02d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11175,1b5beb95-4b6f-4276-b61a-34e89c0c02d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11170,c9eaca3a-35fa-41bc-9dbf-f658af86253d,LIST_ACCOUNTS,hbciListAccounts,false +11171,c9eaca3a-35fa-41bc-9dbf-f658af86253d,LIST_TRANSACTIONS,hbciListTransactions,false +11172,c9eaca3a-35fa-41bc-9dbf-f658af86253d,AUTHORIZATION,,false +11173,c9eaca3a-35fa-41bc-9dbf-f658af86253d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11174,c9eaca3a-35fa-41bc-9dbf-f658af86253d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11175,c9eaca3a-35fa-41bc-9dbf-f658af86253d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11176,636ec809-db7b-47ac-acc8-cb63764ced42,LIST_ACCOUNTS,xs2aListAccounts,true -11177,636ec809-db7b-47ac-acc8-cb63764ced42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11177,636ec809-db7b-47ac-acc8-cb63764ced42,LIST_TRANSACTIONS,xs2aListTransactions,true 11178,636ec809-db7b-47ac-acc8-cb63764ced42,AUTHORIZATION,,true 11179,636ec809-db7b-47ac-acc8-cb63764ced42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11180,636ec809-db7b-47ac-acc8-cb63764ced42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11181,636ec809-db7b-47ac-acc8-cb63764ced42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11182,96933da8-b1a0-46c8-8f92-1c55ea60cdd9,LIST_ACCOUNTS,hbciListAccounts,false -11183,96933da8-b1a0-46c8-8f92-1c55ea60cdd9,LIST_TRANSACTIONS,hbciListTransactions,false -11184,96933da8-b1a0-46c8-8f92-1c55ea60cdd9,AUTHORIZATION,,false -11185,96933da8-b1a0-46c8-8f92-1c55ea60cdd9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11186,96933da8-b1a0-46c8-8f92-1c55ea60cdd9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11187,96933da8-b1a0-46c8-8f92-1c55ea60cdd9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11182,90b8a7e2-e24c-491f-a30c-cbf43f9f3174,LIST_ACCOUNTS,hbciListAccounts,false +11183,90b8a7e2-e24c-491f-a30c-cbf43f9f3174,LIST_TRANSACTIONS,hbciListTransactions,false +11184,90b8a7e2-e24c-491f-a30c-cbf43f9f3174,AUTHORIZATION,,false +11185,90b8a7e2-e24c-491f-a30c-cbf43f9f3174,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11186,90b8a7e2-e24c-491f-a30c-cbf43f9f3174,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11187,90b8a7e2-e24c-491f-a30c-cbf43f9f3174,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11188,52149d91-923f-4582-8a22-ecd899bb2a2a,LIST_ACCOUNTS,xs2aListAccounts,true -11189,52149d91-923f-4582-8a22-ecd899bb2a2a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11189,52149d91-923f-4582-8a22-ecd899bb2a2a,LIST_TRANSACTIONS,xs2aListTransactions,true 11190,52149d91-923f-4582-8a22-ecd899bb2a2a,AUTHORIZATION,,true 11191,52149d91-923f-4582-8a22-ecd899bb2a2a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11192,52149d91-923f-4582-8a22-ecd899bb2a2a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11193,52149d91-923f-4582-8a22-ecd899bb2a2a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11194,2f9f7a99-2ed7-438e-8f5d-cd65081b49b1,LIST_ACCOUNTS,hbciListAccounts,false -11195,2f9f7a99-2ed7-438e-8f5d-cd65081b49b1,LIST_TRANSACTIONS,hbciListTransactions,false -11196,2f9f7a99-2ed7-438e-8f5d-cd65081b49b1,AUTHORIZATION,,false -11197,2f9f7a99-2ed7-438e-8f5d-cd65081b49b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11198,2f9f7a99-2ed7-438e-8f5d-cd65081b49b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11199,2f9f7a99-2ed7-438e-8f5d-cd65081b49b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11194,a08c555b-771c-41cc-abf1-851e087950dd,LIST_ACCOUNTS,hbciListAccounts,false +11195,a08c555b-771c-41cc-abf1-851e087950dd,LIST_TRANSACTIONS,hbciListTransactions,false +11196,a08c555b-771c-41cc-abf1-851e087950dd,AUTHORIZATION,,false +11197,a08c555b-771c-41cc-abf1-851e087950dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11198,a08c555b-771c-41cc-abf1-851e087950dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11199,a08c555b-771c-41cc-abf1-851e087950dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11200,6c78201a-5f53-46e6-b46e-8a92607a717b,LIST_ACCOUNTS,xs2aListAccounts,true -11201,6c78201a-5f53-46e6-b46e-8a92607a717b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11201,6c78201a-5f53-46e6-b46e-8a92607a717b,LIST_TRANSACTIONS,xs2aListTransactions,true 11202,6c78201a-5f53-46e6-b46e-8a92607a717b,AUTHORIZATION,,true 11203,6c78201a-5f53-46e6-b46e-8a92607a717b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11204,6c78201a-5f53-46e6-b46e-8a92607a717b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11205,6c78201a-5f53-46e6-b46e-8a92607a717b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11206,d0c378f4-8fc1-4502-82cf-d89d08baef52,LIST_ACCOUNTS,hbciListAccounts,false -11207,d0c378f4-8fc1-4502-82cf-d89d08baef52,LIST_TRANSACTIONS,hbciListTransactions,false -11208,d0c378f4-8fc1-4502-82cf-d89d08baef52,AUTHORIZATION,,false -11209,d0c378f4-8fc1-4502-82cf-d89d08baef52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11210,d0c378f4-8fc1-4502-82cf-d89d08baef52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11211,d0c378f4-8fc1-4502-82cf-d89d08baef52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11206,c88ae330-d7bb-4f5c-ae4d-050ce0d535ba,LIST_ACCOUNTS,hbciListAccounts,false +11207,c88ae330-d7bb-4f5c-ae4d-050ce0d535ba,LIST_TRANSACTIONS,hbciListTransactions,false +11208,c88ae330-d7bb-4f5c-ae4d-050ce0d535ba,AUTHORIZATION,,false +11209,c88ae330-d7bb-4f5c-ae4d-050ce0d535ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11210,c88ae330-d7bb-4f5c-ae4d-050ce0d535ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11211,c88ae330-d7bb-4f5c-ae4d-050ce0d535ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11212,db18acee-acfa-4a46-92ee-0f625dbc76a9,LIST_ACCOUNTS,xs2aListAccounts,true -11213,db18acee-acfa-4a46-92ee-0f625dbc76a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11213,db18acee-acfa-4a46-92ee-0f625dbc76a9,LIST_TRANSACTIONS,xs2aListTransactions,true 11214,db18acee-acfa-4a46-92ee-0f625dbc76a9,AUTHORIZATION,,true 11215,db18acee-acfa-4a46-92ee-0f625dbc76a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11216,db18acee-acfa-4a46-92ee-0f625dbc76a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11217,db18acee-acfa-4a46-92ee-0f625dbc76a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11218,48993438-6922-420a-b75b-d7174b278400,LIST_ACCOUNTS,hbciListAccounts,false -11219,48993438-6922-420a-b75b-d7174b278400,LIST_TRANSACTIONS,hbciListTransactions,false -11220,48993438-6922-420a-b75b-d7174b278400,AUTHORIZATION,,false -11221,48993438-6922-420a-b75b-d7174b278400,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11222,48993438-6922-420a-b75b-d7174b278400,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11223,48993438-6922-420a-b75b-d7174b278400,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11218,294b2d5e-6bce-4dcc-9d71-5dd2a375ba7c,LIST_ACCOUNTS,hbciListAccounts,false +11219,294b2d5e-6bce-4dcc-9d71-5dd2a375ba7c,LIST_TRANSACTIONS,hbciListTransactions,false +11220,294b2d5e-6bce-4dcc-9d71-5dd2a375ba7c,AUTHORIZATION,,false +11221,294b2d5e-6bce-4dcc-9d71-5dd2a375ba7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11222,294b2d5e-6bce-4dcc-9d71-5dd2a375ba7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11223,294b2d5e-6bce-4dcc-9d71-5dd2a375ba7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11224,afd7605a-0834-4f84-9a86-cfe468b3f336,LIST_ACCOUNTS,xs2aListAccounts,true -11225,afd7605a-0834-4f84-9a86-cfe468b3f336,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11225,afd7605a-0834-4f84-9a86-cfe468b3f336,LIST_TRANSACTIONS,xs2aListTransactions,true 11226,afd7605a-0834-4f84-9a86-cfe468b3f336,AUTHORIZATION,,true 11227,afd7605a-0834-4f84-9a86-cfe468b3f336,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11228,afd7605a-0834-4f84-9a86-cfe468b3f336,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11229,afd7605a-0834-4f84-9a86-cfe468b3f336,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11230,d006794a-c3a7-455b-95b5-7b7bcf342c84,LIST_ACCOUNTS,hbciListAccounts,false -11231,d006794a-c3a7-455b-95b5-7b7bcf342c84,LIST_TRANSACTIONS,hbciListTransactions,false -11232,d006794a-c3a7-455b-95b5-7b7bcf342c84,AUTHORIZATION,,false -11233,d006794a-c3a7-455b-95b5-7b7bcf342c84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11234,d006794a-c3a7-455b-95b5-7b7bcf342c84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11235,d006794a-c3a7-455b-95b5-7b7bcf342c84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11230,79b2dce4-bf98-4f67-a7c9-1ed4a25d7442,LIST_ACCOUNTS,hbciListAccounts,false +11231,79b2dce4-bf98-4f67-a7c9-1ed4a25d7442,LIST_TRANSACTIONS,hbciListTransactions,false +11232,79b2dce4-bf98-4f67-a7c9-1ed4a25d7442,AUTHORIZATION,,false +11233,79b2dce4-bf98-4f67-a7c9-1ed4a25d7442,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11234,79b2dce4-bf98-4f67-a7c9-1ed4a25d7442,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11235,79b2dce4-bf98-4f67-a7c9-1ed4a25d7442,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11236,12b41404-55f0-48c8-b76f-6a2c9aa80026,LIST_ACCOUNTS,xs2aListAccounts,true -11237,12b41404-55f0-48c8-b76f-6a2c9aa80026,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11237,12b41404-55f0-48c8-b76f-6a2c9aa80026,LIST_TRANSACTIONS,xs2aListTransactions,true 11238,12b41404-55f0-48c8-b76f-6a2c9aa80026,AUTHORIZATION,,true 11239,12b41404-55f0-48c8-b76f-6a2c9aa80026,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11240,12b41404-55f0-48c8-b76f-6a2c9aa80026,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11241,12b41404-55f0-48c8-b76f-6a2c9aa80026,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11242,8097cab4-37bd-40b9-9a5f-d2c0011240f8,LIST_ACCOUNTS,hbciListAccounts,false -11243,8097cab4-37bd-40b9-9a5f-d2c0011240f8,LIST_TRANSACTIONS,hbciListTransactions,false -11244,8097cab4-37bd-40b9-9a5f-d2c0011240f8,AUTHORIZATION,,false -11245,8097cab4-37bd-40b9-9a5f-d2c0011240f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11246,8097cab4-37bd-40b9-9a5f-d2c0011240f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11247,8097cab4-37bd-40b9-9a5f-d2c0011240f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11242,74b7857d-f169-41e5-ad3b-290969170cec,LIST_ACCOUNTS,hbciListAccounts,false +11243,74b7857d-f169-41e5-ad3b-290969170cec,LIST_TRANSACTIONS,hbciListTransactions,false +11244,74b7857d-f169-41e5-ad3b-290969170cec,AUTHORIZATION,,false +11245,74b7857d-f169-41e5-ad3b-290969170cec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11246,74b7857d-f169-41e5-ad3b-290969170cec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11247,74b7857d-f169-41e5-ad3b-290969170cec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11248,80d8c1e1-ae11-4900-9d06-ce5f79898050,LIST_ACCOUNTS,xs2aListAccounts,true -11249,80d8c1e1-ae11-4900-9d06-ce5f79898050,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11249,80d8c1e1-ae11-4900-9d06-ce5f79898050,LIST_TRANSACTIONS,xs2aListTransactions,true 11250,80d8c1e1-ae11-4900-9d06-ce5f79898050,AUTHORIZATION,,true 11251,80d8c1e1-ae11-4900-9d06-ce5f79898050,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11252,80d8c1e1-ae11-4900-9d06-ce5f79898050,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11253,80d8c1e1-ae11-4900-9d06-ce5f79898050,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11254,3fca93f7-b71d-4f49-832c-893925a93097,LIST_ACCOUNTS,hbciListAccounts,false -11255,3fca93f7-b71d-4f49-832c-893925a93097,LIST_TRANSACTIONS,hbciListTransactions,false -11256,3fca93f7-b71d-4f49-832c-893925a93097,AUTHORIZATION,,false -11257,3fca93f7-b71d-4f49-832c-893925a93097,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11258,3fca93f7-b71d-4f49-832c-893925a93097,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11259,3fca93f7-b71d-4f49-832c-893925a93097,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11254,dcce1331-4aec-4ddd-ba0d-85cdbce585de,LIST_ACCOUNTS,hbciListAccounts,false +11255,dcce1331-4aec-4ddd-ba0d-85cdbce585de,LIST_TRANSACTIONS,hbciListTransactions,false +11256,dcce1331-4aec-4ddd-ba0d-85cdbce585de,AUTHORIZATION,,false +11257,dcce1331-4aec-4ddd-ba0d-85cdbce585de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11258,dcce1331-4aec-4ddd-ba0d-85cdbce585de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11259,dcce1331-4aec-4ddd-ba0d-85cdbce585de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11260,3e3b2c1b-7fbf-4a7b-b5ed-c1304f9dc1e9,LIST_ACCOUNTS,xs2aListAccounts,true -11261,3e3b2c1b-7fbf-4a7b-b5ed-c1304f9dc1e9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11261,3e3b2c1b-7fbf-4a7b-b5ed-c1304f9dc1e9,LIST_TRANSACTIONS,xs2aListTransactions,true 11262,3e3b2c1b-7fbf-4a7b-b5ed-c1304f9dc1e9,AUTHORIZATION,,true 11263,3e3b2c1b-7fbf-4a7b-b5ed-c1304f9dc1e9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11264,3e3b2c1b-7fbf-4a7b-b5ed-c1304f9dc1e9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11265,3e3b2c1b-7fbf-4a7b-b5ed-c1304f9dc1e9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11266,f73787bb-00fc-4343-adb7-38a57ebc5382,LIST_ACCOUNTS,hbciListAccounts,false -11267,f73787bb-00fc-4343-adb7-38a57ebc5382,LIST_TRANSACTIONS,hbciListTransactions,false -11268,f73787bb-00fc-4343-adb7-38a57ebc5382,AUTHORIZATION,,false -11269,f73787bb-00fc-4343-adb7-38a57ebc5382,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11270,f73787bb-00fc-4343-adb7-38a57ebc5382,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11271,f73787bb-00fc-4343-adb7-38a57ebc5382,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11266,be8d6547-9e57-4756-9005-ccc3ea72d332,LIST_ACCOUNTS,hbciListAccounts,false +11267,be8d6547-9e57-4756-9005-ccc3ea72d332,LIST_TRANSACTIONS,hbciListTransactions,false +11268,be8d6547-9e57-4756-9005-ccc3ea72d332,AUTHORIZATION,,false +11269,be8d6547-9e57-4756-9005-ccc3ea72d332,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11270,be8d6547-9e57-4756-9005-ccc3ea72d332,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11271,be8d6547-9e57-4756-9005-ccc3ea72d332,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11272,48b27c40-8830-4950-b124-bc6d20301e4a,LIST_ACCOUNTS,xs2aListAccounts,true -11273,48b27c40-8830-4950-b124-bc6d20301e4a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11273,48b27c40-8830-4950-b124-bc6d20301e4a,LIST_TRANSACTIONS,xs2aListTransactions,true 11274,48b27c40-8830-4950-b124-bc6d20301e4a,AUTHORIZATION,,true 11275,48b27c40-8830-4950-b124-bc6d20301e4a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11276,48b27c40-8830-4950-b124-bc6d20301e4a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11277,48b27c40-8830-4950-b124-bc6d20301e4a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11278,3a3c963d-073d-4cd9-8ecc-04ee2418cdcc,LIST_ACCOUNTS,hbciListAccounts,false -11279,3a3c963d-073d-4cd9-8ecc-04ee2418cdcc,LIST_TRANSACTIONS,hbciListTransactions,false -11280,3a3c963d-073d-4cd9-8ecc-04ee2418cdcc,AUTHORIZATION,,false -11281,3a3c963d-073d-4cd9-8ecc-04ee2418cdcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11282,3a3c963d-073d-4cd9-8ecc-04ee2418cdcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11283,3a3c963d-073d-4cd9-8ecc-04ee2418cdcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11278,2438afd1-82f0-4f78-83ba-023bfac820cc,LIST_ACCOUNTS,hbciListAccounts,false +11279,2438afd1-82f0-4f78-83ba-023bfac820cc,LIST_TRANSACTIONS,hbciListTransactions,false +11280,2438afd1-82f0-4f78-83ba-023bfac820cc,AUTHORIZATION,,false +11281,2438afd1-82f0-4f78-83ba-023bfac820cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11282,2438afd1-82f0-4f78-83ba-023bfac820cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11283,2438afd1-82f0-4f78-83ba-023bfac820cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11284,dbd9c67c-ec6a-4933-9910-1aee31be5131,LIST_ACCOUNTS,xs2aListAccounts,true -11285,dbd9c67c-ec6a-4933-9910-1aee31be5131,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11285,dbd9c67c-ec6a-4933-9910-1aee31be5131,LIST_TRANSACTIONS,xs2aListTransactions,true 11286,dbd9c67c-ec6a-4933-9910-1aee31be5131,AUTHORIZATION,,true 11287,dbd9c67c-ec6a-4933-9910-1aee31be5131,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11288,dbd9c67c-ec6a-4933-9910-1aee31be5131,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11289,dbd9c67c-ec6a-4933-9910-1aee31be5131,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11290,b499194f-b12b-4971-98c9-8e6e4f672c5c,LIST_ACCOUNTS,hbciListAccounts,false -11291,b499194f-b12b-4971-98c9-8e6e4f672c5c,LIST_TRANSACTIONS,hbciListTransactions,false -11292,b499194f-b12b-4971-98c9-8e6e4f672c5c,AUTHORIZATION,,false -11293,b499194f-b12b-4971-98c9-8e6e4f672c5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11294,b499194f-b12b-4971-98c9-8e6e4f672c5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11295,b499194f-b12b-4971-98c9-8e6e4f672c5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11290,99cef8f7-1379-447c-af42-87e2cfe3b7d4,LIST_ACCOUNTS,hbciListAccounts,false +11291,99cef8f7-1379-447c-af42-87e2cfe3b7d4,LIST_TRANSACTIONS,hbciListTransactions,false +11292,99cef8f7-1379-447c-af42-87e2cfe3b7d4,AUTHORIZATION,,false +11293,99cef8f7-1379-447c-af42-87e2cfe3b7d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11294,99cef8f7-1379-447c-af42-87e2cfe3b7d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11295,99cef8f7-1379-447c-af42-87e2cfe3b7d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11296,cb027e58-342e-43d4-9df4-1ac04a9eb9de,LIST_ACCOUNTS,xs2aListAccounts,true -11297,cb027e58-342e-43d4-9df4-1ac04a9eb9de,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11297,cb027e58-342e-43d4-9df4-1ac04a9eb9de,LIST_TRANSACTIONS,xs2aListTransactions,true 11298,cb027e58-342e-43d4-9df4-1ac04a9eb9de,AUTHORIZATION,,true 11299,cb027e58-342e-43d4-9df4-1ac04a9eb9de,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11300,cb027e58-342e-43d4-9df4-1ac04a9eb9de,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11301,cb027e58-342e-43d4-9df4-1ac04a9eb9de,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11302,9d4651de-56b2-4df8-aec4-5caa2d7355c1,LIST_ACCOUNTS,hbciListAccounts,false -11303,9d4651de-56b2-4df8-aec4-5caa2d7355c1,LIST_TRANSACTIONS,hbciListTransactions,false -11304,9d4651de-56b2-4df8-aec4-5caa2d7355c1,AUTHORIZATION,,false -11305,9d4651de-56b2-4df8-aec4-5caa2d7355c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11306,9d4651de-56b2-4df8-aec4-5caa2d7355c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11307,9d4651de-56b2-4df8-aec4-5caa2d7355c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11302,99bd1fff-cfdb-4736-916f-101471a1ce6c,LIST_ACCOUNTS,hbciListAccounts,false +11303,99bd1fff-cfdb-4736-916f-101471a1ce6c,LIST_TRANSACTIONS,hbciListTransactions,false +11304,99bd1fff-cfdb-4736-916f-101471a1ce6c,AUTHORIZATION,,false +11305,99bd1fff-cfdb-4736-916f-101471a1ce6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11306,99bd1fff-cfdb-4736-916f-101471a1ce6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11307,99bd1fff-cfdb-4736-916f-101471a1ce6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11308,245b7883-b823-4ab5-9bc4-badbea802d9c,LIST_ACCOUNTS,xs2aListAccounts,true -11309,245b7883-b823-4ab5-9bc4-badbea802d9c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11309,245b7883-b823-4ab5-9bc4-badbea802d9c,LIST_TRANSACTIONS,xs2aListTransactions,true 11310,245b7883-b823-4ab5-9bc4-badbea802d9c,AUTHORIZATION,,true 11311,245b7883-b823-4ab5-9bc4-badbea802d9c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11312,245b7883-b823-4ab5-9bc4-badbea802d9c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11313,245b7883-b823-4ab5-9bc4-badbea802d9c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11314,2dbf5567-303b-4d1d-96e5-fd55bc1b19a6,LIST_ACCOUNTS,hbciListAccounts,false -11315,2dbf5567-303b-4d1d-96e5-fd55bc1b19a6,LIST_TRANSACTIONS,hbciListTransactions,false -11316,2dbf5567-303b-4d1d-96e5-fd55bc1b19a6,AUTHORIZATION,,false -11317,2dbf5567-303b-4d1d-96e5-fd55bc1b19a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11318,2dbf5567-303b-4d1d-96e5-fd55bc1b19a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11319,2dbf5567-303b-4d1d-96e5-fd55bc1b19a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11314,1eebbe20-0b13-4e7f-b828-8fa781da4f0f,LIST_ACCOUNTS,hbciListAccounts,false +11315,1eebbe20-0b13-4e7f-b828-8fa781da4f0f,LIST_TRANSACTIONS,hbciListTransactions,false +11316,1eebbe20-0b13-4e7f-b828-8fa781da4f0f,AUTHORIZATION,,false +11317,1eebbe20-0b13-4e7f-b828-8fa781da4f0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11318,1eebbe20-0b13-4e7f-b828-8fa781da4f0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11319,1eebbe20-0b13-4e7f-b828-8fa781da4f0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11320,9cd83ef7-d4da-41b0-90bd-4d2a75aff88f,LIST_ACCOUNTS,xs2aListAccounts,true -11321,9cd83ef7-d4da-41b0-90bd-4d2a75aff88f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11321,9cd83ef7-d4da-41b0-90bd-4d2a75aff88f,LIST_TRANSACTIONS,xs2aListTransactions,true 11322,9cd83ef7-d4da-41b0-90bd-4d2a75aff88f,AUTHORIZATION,,true 11323,9cd83ef7-d4da-41b0-90bd-4d2a75aff88f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11324,9cd83ef7-d4da-41b0-90bd-4d2a75aff88f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11325,9cd83ef7-d4da-41b0-90bd-4d2a75aff88f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11326,83e3fe5d-4464-49cc-a3ed-5afff15bd05e,LIST_ACCOUNTS,hbciListAccounts,false -11327,83e3fe5d-4464-49cc-a3ed-5afff15bd05e,LIST_TRANSACTIONS,hbciListTransactions,false -11328,83e3fe5d-4464-49cc-a3ed-5afff15bd05e,AUTHORIZATION,,false -11329,83e3fe5d-4464-49cc-a3ed-5afff15bd05e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11330,83e3fe5d-4464-49cc-a3ed-5afff15bd05e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11331,83e3fe5d-4464-49cc-a3ed-5afff15bd05e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11326,ffcd39fe-3f1e-47e0-94a2-b8cac944ae12,LIST_ACCOUNTS,hbciListAccounts,false +11327,ffcd39fe-3f1e-47e0-94a2-b8cac944ae12,LIST_TRANSACTIONS,hbciListTransactions,false +11328,ffcd39fe-3f1e-47e0-94a2-b8cac944ae12,AUTHORIZATION,,false +11329,ffcd39fe-3f1e-47e0-94a2-b8cac944ae12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11330,ffcd39fe-3f1e-47e0-94a2-b8cac944ae12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11331,ffcd39fe-3f1e-47e0-94a2-b8cac944ae12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11332,c9d35a4c-2d53-467c-b35f-2d95aecc48a3,LIST_ACCOUNTS,xs2aListAccounts,true -11333,c9d35a4c-2d53-467c-b35f-2d95aecc48a3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11333,c9d35a4c-2d53-467c-b35f-2d95aecc48a3,LIST_TRANSACTIONS,xs2aListTransactions,true 11334,c9d35a4c-2d53-467c-b35f-2d95aecc48a3,AUTHORIZATION,,true 11335,c9d35a4c-2d53-467c-b35f-2d95aecc48a3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11336,c9d35a4c-2d53-467c-b35f-2d95aecc48a3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11337,c9d35a4c-2d53-467c-b35f-2d95aecc48a3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11338,94304e1f-fed3-44a4-892c-ac01710137fe,LIST_ACCOUNTS,hbciListAccounts,false -11339,94304e1f-fed3-44a4-892c-ac01710137fe,LIST_TRANSACTIONS,hbciListTransactions,false -11340,94304e1f-fed3-44a4-892c-ac01710137fe,AUTHORIZATION,,false -11341,94304e1f-fed3-44a4-892c-ac01710137fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11342,94304e1f-fed3-44a4-892c-ac01710137fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11343,94304e1f-fed3-44a4-892c-ac01710137fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11338,beba119f-980f-4f69-bdf2-17087e91c22b,LIST_ACCOUNTS,hbciListAccounts,false +11339,beba119f-980f-4f69-bdf2-17087e91c22b,LIST_TRANSACTIONS,hbciListTransactions,false +11340,beba119f-980f-4f69-bdf2-17087e91c22b,AUTHORIZATION,,false +11341,beba119f-980f-4f69-bdf2-17087e91c22b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11342,beba119f-980f-4f69-bdf2-17087e91c22b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11343,beba119f-980f-4f69-bdf2-17087e91c22b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11344,59e7e948-a1a5-493c-974b-27c05ab081ca,LIST_ACCOUNTS,xs2aListAccounts,true -11345,59e7e948-a1a5-493c-974b-27c05ab081ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11345,59e7e948-a1a5-493c-974b-27c05ab081ca,LIST_TRANSACTIONS,xs2aListTransactions,true 11346,59e7e948-a1a5-493c-974b-27c05ab081ca,AUTHORIZATION,,true 11347,59e7e948-a1a5-493c-974b-27c05ab081ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11348,59e7e948-a1a5-493c-974b-27c05ab081ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11349,59e7e948-a1a5-493c-974b-27c05ab081ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11350,a9b834d7-5caa-4238-91e4-ccb26ee39800,LIST_ACCOUNTS,hbciListAccounts,false -11351,a9b834d7-5caa-4238-91e4-ccb26ee39800,LIST_TRANSACTIONS,hbciListTransactions,false -11352,a9b834d7-5caa-4238-91e4-ccb26ee39800,AUTHORIZATION,,false -11353,a9b834d7-5caa-4238-91e4-ccb26ee39800,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11354,a9b834d7-5caa-4238-91e4-ccb26ee39800,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11355,a9b834d7-5caa-4238-91e4-ccb26ee39800,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11350,f5bfc16b-3f20-4ab9-b127-ef0ccc3c97b9,LIST_ACCOUNTS,hbciListAccounts,false +11351,f5bfc16b-3f20-4ab9-b127-ef0ccc3c97b9,LIST_TRANSACTIONS,hbciListTransactions,false +11352,f5bfc16b-3f20-4ab9-b127-ef0ccc3c97b9,AUTHORIZATION,,false +11353,f5bfc16b-3f20-4ab9-b127-ef0ccc3c97b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11354,f5bfc16b-3f20-4ab9-b127-ef0ccc3c97b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11355,f5bfc16b-3f20-4ab9-b127-ef0ccc3c97b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11356,fbbc901e-d8a5-460e-89a0-fea68d492404,LIST_ACCOUNTS,xs2aListAccounts,true -11357,fbbc901e-d8a5-460e-89a0-fea68d492404,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11357,fbbc901e-d8a5-460e-89a0-fea68d492404,LIST_TRANSACTIONS,xs2aListTransactions,true 11358,fbbc901e-d8a5-460e-89a0-fea68d492404,AUTHORIZATION,,true 11359,fbbc901e-d8a5-460e-89a0-fea68d492404,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11360,fbbc901e-d8a5-460e-89a0-fea68d492404,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11361,fbbc901e-d8a5-460e-89a0-fea68d492404,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11362,1fb8b0c3-b066-43e2-81a0-3123675907e7,LIST_ACCOUNTS,hbciListAccounts,false -11363,1fb8b0c3-b066-43e2-81a0-3123675907e7,LIST_TRANSACTIONS,hbciListTransactions,false -11364,1fb8b0c3-b066-43e2-81a0-3123675907e7,AUTHORIZATION,,false -11365,1fb8b0c3-b066-43e2-81a0-3123675907e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11366,1fb8b0c3-b066-43e2-81a0-3123675907e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11367,1fb8b0c3-b066-43e2-81a0-3123675907e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11362,8d66d0f8-a41b-4518-b1e5-1e43e3c236d3,LIST_ACCOUNTS,hbciListAccounts,false +11363,8d66d0f8-a41b-4518-b1e5-1e43e3c236d3,LIST_TRANSACTIONS,hbciListTransactions,false +11364,8d66d0f8-a41b-4518-b1e5-1e43e3c236d3,AUTHORIZATION,,false +11365,8d66d0f8-a41b-4518-b1e5-1e43e3c236d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11366,8d66d0f8-a41b-4518-b1e5-1e43e3c236d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11367,8d66d0f8-a41b-4518-b1e5-1e43e3c236d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11368,951ef332-41a3-4389-a285-0ae20c7cf425,LIST_ACCOUNTS,xs2aListAccounts,true -11369,951ef332-41a3-4389-a285-0ae20c7cf425,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11369,951ef332-41a3-4389-a285-0ae20c7cf425,LIST_TRANSACTIONS,xs2aListTransactions,true 11370,951ef332-41a3-4389-a285-0ae20c7cf425,AUTHORIZATION,,true 11371,951ef332-41a3-4389-a285-0ae20c7cf425,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11372,951ef332-41a3-4389-a285-0ae20c7cf425,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11373,951ef332-41a3-4389-a285-0ae20c7cf425,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11374,9975bf38-b1f0-4b44-8e7e-7a5023a4c6ae,LIST_ACCOUNTS,hbciListAccounts,false -11375,9975bf38-b1f0-4b44-8e7e-7a5023a4c6ae,LIST_TRANSACTIONS,hbciListTransactions,false -11376,9975bf38-b1f0-4b44-8e7e-7a5023a4c6ae,AUTHORIZATION,,false -11377,9975bf38-b1f0-4b44-8e7e-7a5023a4c6ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11378,9975bf38-b1f0-4b44-8e7e-7a5023a4c6ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11379,9975bf38-b1f0-4b44-8e7e-7a5023a4c6ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11374,422a10b6-9cec-4fb3-8481-a0a36a7f31de,LIST_ACCOUNTS,hbciListAccounts,false +11375,422a10b6-9cec-4fb3-8481-a0a36a7f31de,LIST_TRANSACTIONS,hbciListTransactions,false +11376,422a10b6-9cec-4fb3-8481-a0a36a7f31de,AUTHORIZATION,,false +11377,422a10b6-9cec-4fb3-8481-a0a36a7f31de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11378,422a10b6-9cec-4fb3-8481-a0a36a7f31de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11379,422a10b6-9cec-4fb3-8481-a0a36a7f31de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11380,4cd7e9f0-5289-403f-af20-a292fd30a163,LIST_ACCOUNTS,xs2aListAccounts,true -11381,4cd7e9f0-5289-403f-af20-a292fd30a163,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11381,4cd7e9f0-5289-403f-af20-a292fd30a163,LIST_TRANSACTIONS,xs2aListTransactions,true 11382,4cd7e9f0-5289-403f-af20-a292fd30a163,AUTHORIZATION,,true 11383,4cd7e9f0-5289-403f-af20-a292fd30a163,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11384,4cd7e9f0-5289-403f-af20-a292fd30a163,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11385,4cd7e9f0-5289-403f-af20-a292fd30a163,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11386,d97ad8a0-c385-4b4d-b96f-c6d89e173db4,LIST_ACCOUNTS,hbciListAccounts,false -11387,d97ad8a0-c385-4b4d-b96f-c6d89e173db4,LIST_TRANSACTIONS,hbciListTransactions,false -11388,d97ad8a0-c385-4b4d-b96f-c6d89e173db4,AUTHORIZATION,,false -11389,d97ad8a0-c385-4b4d-b96f-c6d89e173db4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11390,d97ad8a0-c385-4b4d-b96f-c6d89e173db4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11391,d97ad8a0-c385-4b4d-b96f-c6d89e173db4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11386,57b4f8f3-bf91-4fac-b01d-3732d4088301,LIST_ACCOUNTS,hbciListAccounts,false +11387,57b4f8f3-bf91-4fac-b01d-3732d4088301,LIST_TRANSACTIONS,hbciListTransactions,false +11388,57b4f8f3-bf91-4fac-b01d-3732d4088301,AUTHORIZATION,,false +11389,57b4f8f3-bf91-4fac-b01d-3732d4088301,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11390,57b4f8f3-bf91-4fac-b01d-3732d4088301,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11391,57b4f8f3-bf91-4fac-b01d-3732d4088301,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11392,7d971832-7b4d-429f-b123-212ece16dce5,LIST_ACCOUNTS,xs2aListAccounts,true -11393,7d971832-7b4d-429f-b123-212ece16dce5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11393,7d971832-7b4d-429f-b123-212ece16dce5,LIST_TRANSACTIONS,xs2aListTransactions,true 11394,7d971832-7b4d-429f-b123-212ece16dce5,AUTHORIZATION,,true 11395,7d971832-7b4d-429f-b123-212ece16dce5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11396,7d971832-7b4d-429f-b123-212ece16dce5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11397,7d971832-7b4d-429f-b123-212ece16dce5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11398,8433bc1b-2e86-4a0a-8ae5-da44f3a7d686,LIST_ACCOUNTS,hbciListAccounts,false -11399,8433bc1b-2e86-4a0a-8ae5-da44f3a7d686,LIST_TRANSACTIONS,hbciListTransactions,false -11400,8433bc1b-2e86-4a0a-8ae5-da44f3a7d686,AUTHORIZATION,,false -11401,8433bc1b-2e86-4a0a-8ae5-da44f3a7d686,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11402,8433bc1b-2e86-4a0a-8ae5-da44f3a7d686,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11403,8433bc1b-2e86-4a0a-8ae5-da44f3a7d686,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11398,0eec3eb6-7197-4e70-88c8-0783cb7da180,LIST_ACCOUNTS,hbciListAccounts,false +11399,0eec3eb6-7197-4e70-88c8-0783cb7da180,LIST_TRANSACTIONS,hbciListTransactions,false +11400,0eec3eb6-7197-4e70-88c8-0783cb7da180,AUTHORIZATION,,false +11401,0eec3eb6-7197-4e70-88c8-0783cb7da180,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11402,0eec3eb6-7197-4e70-88c8-0783cb7da180,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11403,0eec3eb6-7197-4e70-88c8-0783cb7da180,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11404,067fb4d2-100e-4dc2-b2e2-4343fc54d8dc,LIST_ACCOUNTS,xs2aListAccounts,true -11405,067fb4d2-100e-4dc2-b2e2-4343fc54d8dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11405,067fb4d2-100e-4dc2-b2e2-4343fc54d8dc,LIST_TRANSACTIONS,xs2aListTransactions,true 11406,067fb4d2-100e-4dc2-b2e2-4343fc54d8dc,AUTHORIZATION,,true 11407,067fb4d2-100e-4dc2-b2e2-4343fc54d8dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11408,067fb4d2-100e-4dc2-b2e2-4343fc54d8dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11409,067fb4d2-100e-4dc2-b2e2-4343fc54d8dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11410,7175e641-da6e-4477-91f3-fdda39e51ff2,LIST_ACCOUNTS,hbciListAccounts,false -11411,7175e641-da6e-4477-91f3-fdda39e51ff2,LIST_TRANSACTIONS,hbciListTransactions,false -11412,7175e641-da6e-4477-91f3-fdda39e51ff2,AUTHORIZATION,,false -11413,7175e641-da6e-4477-91f3-fdda39e51ff2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11414,7175e641-da6e-4477-91f3-fdda39e51ff2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11415,7175e641-da6e-4477-91f3-fdda39e51ff2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11410,19cc4df5-201d-4635-b5a4-4c450ee92052,LIST_ACCOUNTS,hbciListAccounts,false +11411,19cc4df5-201d-4635-b5a4-4c450ee92052,LIST_TRANSACTIONS,hbciListTransactions,false +11412,19cc4df5-201d-4635-b5a4-4c450ee92052,AUTHORIZATION,,false +11413,19cc4df5-201d-4635-b5a4-4c450ee92052,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11414,19cc4df5-201d-4635-b5a4-4c450ee92052,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11415,19cc4df5-201d-4635-b5a4-4c450ee92052,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11416,5f73b86c-dc11-413f-bafd-79e2ecb9cd6f,LIST_ACCOUNTS,xs2aListAccounts,true -11417,5f73b86c-dc11-413f-bafd-79e2ecb9cd6f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11417,5f73b86c-dc11-413f-bafd-79e2ecb9cd6f,LIST_TRANSACTIONS,xs2aListTransactions,true 11418,5f73b86c-dc11-413f-bafd-79e2ecb9cd6f,AUTHORIZATION,,true 11419,5f73b86c-dc11-413f-bafd-79e2ecb9cd6f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11420,5f73b86c-dc11-413f-bafd-79e2ecb9cd6f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11421,5f73b86c-dc11-413f-bafd-79e2ecb9cd6f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11422,ec7dad0a-4f53-4d08-9ab3-4017017913db,LIST_ACCOUNTS,hbciListAccounts,false -11423,ec7dad0a-4f53-4d08-9ab3-4017017913db,LIST_TRANSACTIONS,hbciListTransactions,false -11424,ec7dad0a-4f53-4d08-9ab3-4017017913db,AUTHORIZATION,,false -11425,ec7dad0a-4f53-4d08-9ab3-4017017913db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11426,ec7dad0a-4f53-4d08-9ab3-4017017913db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11427,ec7dad0a-4f53-4d08-9ab3-4017017913db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11422,a91c86b0-76c2-471f-9b25-37b33b7369b6,LIST_ACCOUNTS,hbciListAccounts,false +11423,a91c86b0-76c2-471f-9b25-37b33b7369b6,LIST_TRANSACTIONS,hbciListTransactions,false +11424,a91c86b0-76c2-471f-9b25-37b33b7369b6,AUTHORIZATION,,false +11425,a91c86b0-76c2-471f-9b25-37b33b7369b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11426,a91c86b0-76c2-471f-9b25-37b33b7369b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11427,a91c86b0-76c2-471f-9b25-37b33b7369b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11428,adf6725b-c2d4-4b5d-baea-15324300a34e,LIST_ACCOUNTS,xs2aListAccounts,true -11429,adf6725b-c2d4-4b5d-baea-15324300a34e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11429,adf6725b-c2d4-4b5d-baea-15324300a34e,LIST_TRANSACTIONS,xs2aListTransactions,true 11430,adf6725b-c2d4-4b5d-baea-15324300a34e,AUTHORIZATION,,true 11431,adf6725b-c2d4-4b5d-baea-15324300a34e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11432,adf6725b-c2d4-4b5d-baea-15324300a34e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11433,adf6725b-c2d4-4b5d-baea-15324300a34e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11434,a963b1fa-37e8-4c55-970b-0a9e285a61d4,LIST_ACCOUNTS,hbciListAccounts,false -11435,a963b1fa-37e8-4c55-970b-0a9e285a61d4,LIST_TRANSACTIONS,hbciListTransactions,false -11436,a963b1fa-37e8-4c55-970b-0a9e285a61d4,AUTHORIZATION,,false -11437,a963b1fa-37e8-4c55-970b-0a9e285a61d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11438,a963b1fa-37e8-4c55-970b-0a9e285a61d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11439,a963b1fa-37e8-4c55-970b-0a9e285a61d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11434,4eca2680-53e3-4ba2-aeb0-21890aba7229,LIST_ACCOUNTS,hbciListAccounts,false +11435,4eca2680-53e3-4ba2-aeb0-21890aba7229,LIST_TRANSACTIONS,hbciListTransactions,false +11436,4eca2680-53e3-4ba2-aeb0-21890aba7229,AUTHORIZATION,,false +11437,4eca2680-53e3-4ba2-aeb0-21890aba7229,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11438,4eca2680-53e3-4ba2-aeb0-21890aba7229,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11439,4eca2680-53e3-4ba2-aeb0-21890aba7229,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11440,681ea408-de6e-4355-9a55-fa79839c0d76,LIST_ACCOUNTS,xs2aListAccounts,true -11441,681ea408-de6e-4355-9a55-fa79839c0d76,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11441,681ea408-de6e-4355-9a55-fa79839c0d76,LIST_TRANSACTIONS,xs2aListTransactions,true 11442,681ea408-de6e-4355-9a55-fa79839c0d76,AUTHORIZATION,,true 11443,681ea408-de6e-4355-9a55-fa79839c0d76,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11444,681ea408-de6e-4355-9a55-fa79839c0d76,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11445,681ea408-de6e-4355-9a55-fa79839c0d76,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11446,dc2cf0fa-cf72-4b3a-a0da-2c460e8a5a6e,LIST_ACCOUNTS,hbciListAccounts,false -11447,dc2cf0fa-cf72-4b3a-a0da-2c460e8a5a6e,LIST_TRANSACTIONS,hbciListTransactions,false -11448,dc2cf0fa-cf72-4b3a-a0da-2c460e8a5a6e,AUTHORIZATION,,false -11449,dc2cf0fa-cf72-4b3a-a0da-2c460e8a5a6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11450,dc2cf0fa-cf72-4b3a-a0da-2c460e8a5a6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11451,dc2cf0fa-cf72-4b3a-a0da-2c460e8a5a6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11446,71506315-8ea8-4ac2-a058-6553e3e43f86,LIST_ACCOUNTS,hbciListAccounts,false +11447,71506315-8ea8-4ac2-a058-6553e3e43f86,LIST_TRANSACTIONS,hbciListTransactions,false +11448,71506315-8ea8-4ac2-a058-6553e3e43f86,AUTHORIZATION,,false +11449,71506315-8ea8-4ac2-a058-6553e3e43f86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11450,71506315-8ea8-4ac2-a058-6553e3e43f86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11451,71506315-8ea8-4ac2-a058-6553e3e43f86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11452,2a520459-b35b-41e8-91e6-787bf3bf448d,LIST_ACCOUNTS,xs2aListAccounts,true -11453,2a520459-b35b-41e8-91e6-787bf3bf448d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11453,2a520459-b35b-41e8-91e6-787bf3bf448d,LIST_TRANSACTIONS,xs2aListTransactions,true 11454,2a520459-b35b-41e8-91e6-787bf3bf448d,AUTHORIZATION,,true 11455,2a520459-b35b-41e8-91e6-787bf3bf448d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11456,2a520459-b35b-41e8-91e6-787bf3bf448d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11457,2a520459-b35b-41e8-91e6-787bf3bf448d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11458,c5558ffd-9e17-42db-adce-752a46fba6e4,LIST_ACCOUNTS,hbciListAccounts,false -11459,c5558ffd-9e17-42db-adce-752a46fba6e4,LIST_TRANSACTIONS,hbciListTransactions,false -11460,c5558ffd-9e17-42db-adce-752a46fba6e4,AUTHORIZATION,,false -11461,c5558ffd-9e17-42db-adce-752a46fba6e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11462,c5558ffd-9e17-42db-adce-752a46fba6e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11463,c5558ffd-9e17-42db-adce-752a46fba6e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11458,b40cbe82-a9e7-4f41-8b94-2018b20440c9,LIST_ACCOUNTS,hbciListAccounts,false +11459,b40cbe82-a9e7-4f41-8b94-2018b20440c9,LIST_TRANSACTIONS,hbciListTransactions,false +11460,b40cbe82-a9e7-4f41-8b94-2018b20440c9,AUTHORIZATION,,false +11461,b40cbe82-a9e7-4f41-8b94-2018b20440c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11462,b40cbe82-a9e7-4f41-8b94-2018b20440c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11463,b40cbe82-a9e7-4f41-8b94-2018b20440c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11464,a16f310f-ac98-4ca6-9013-7cc699c5cc88,LIST_ACCOUNTS,xs2aListAccounts,true -11465,a16f310f-ac98-4ca6-9013-7cc699c5cc88,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11465,a16f310f-ac98-4ca6-9013-7cc699c5cc88,LIST_TRANSACTIONS,xs2aListTransactions,true 11466,a16f310f-ac98-4ca6-9013-7cc699c5cc88,AUTHORIZATION,,true 11467,a16f310f-ac98-4ca6-9013-7cc699c5cc88,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11468,a16f310f-ac98-4ca6-9013-7cc699c5cc88,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11469,a16f310f-ac98-4ca6-9013-7cc699c5cc88,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11470,31071ada-ba83-4480-8148-6711b539a8f9,LIST_ACCOUNTS,hbciListAccounts,false -11471,31071ada-ba83-4480-8148-6711b539a8f9,LIST_TRANSACTIONS,hbciListTransactions,false -11472,31071ada-ba83-4480-8148-6711b539a8f9,AUTHORIZATION,,false -11473,31071ada-ba83-4480-8148-6711b539a8f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11474,31071ada-ba83-4480-8148-6711b539a8f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11475,31071ada-ba83-4480-8148-6711b539a8f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11470,3ce6fecd-0efb-4c01-8085-0903a76fc1ea,LIST_ACCOUNTS,hbciListAccounts,false +11471,3ce6fecd-0efb-4c01-8085-0903a76fc1ea,LIST_TRANSACTIONS,hbciListTransactions,false +11472,3ce6fecd-0efb-4c01-8085-0903a76fc1ea,AUTHORIZATION,,false +11473,3ce6fecd-0efb-4c01-8085-0903a76fc1ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11474,3ce6fecd-0efb-4c01-8085-0903a76fc1ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11475,3ce6fecd-0efb-4c01-8085-0903a76fc1ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11476,0e492b84-b7e7-4f47-aefb-fd83f3490698,LIST_ACCOUNTS,xs2aListAccounts,true -11477,0e492b84-b7e7-4f47-aefb-fd83f3490698,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11477,0e492b84-b7e7-4f47-aefb-fd83f3490698,LIST_TRANSACTIONS,xs2aListTransactions,true 11478,0e492b84-b7e7-4f47-aefb-fd83f3490698,AUTHORIZATION,,true 11479,0e492b84-b7e7-4f47-aefb-fd83f3490698,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11480,0e492b84-b7e7-4f47-aefb-fd83f3490698,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11481,0e492b84-b7e7-4f47-aefb-fd83f3490698,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11482,203d7ea6-c144-4008-b415-81bffbed4a83,LIST_ACCOUNTS,hbciListAccounts,false -11483,203d7ea6-c144-4008-b415-81bffbed4a83,LIST_TRANSACTIONS,hbciListTransactions,false -11484,203d7ea6-c144-4008-b415-81bffbed4a83,AUTHORIZATION,,false -11485,203d7ea6-c144-4008-b415-81bffbed4a83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11486,203d7ea6-c144-4008-b415-81bffbed4a83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11487,203d7ea6-c144-4008-b415-81bffbed4a83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11482,65142ede-c4a9-4b12-af9f-550cfe009134,LIST_ACCOUNTS,hbciListAccounts,false +11483,65142ede-c4a9-4b12-af9f-550cfe009134,LIST_TRANSACTIONS,hbciListTransactions,false +11484,65142ede-c4a9-4b12-af9f-550cfe009134,AUTHORIZATION,,false +11485,65142ede-c4a9-4b12-af9f-550cfe009134,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11486,65142ede-c4a9-4b12-af9f-550cfe009134,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11487,65142ede-c4a9-4b12-af9f-550cfe009134,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11488,03a76d3d-3b6c-4f96-8c61-a818778ba076,LIST_ACCOUNTS,xs2aListAccounts,true -11489,03a76d3d-3b6c-4f96-8c61-a818778ba076,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11489,03a76d3d-3b6c-4f96-8c61-a818778ba076,LIST_TRANSACTIONS,xs2aListTransactions,true 11490,03a76d3d-3b6c-4f96-8c61-a818778ba076,AUTHORIZATION,,true 11491,03a76d3d-3b6c-4f96-8c61-a818778ba076,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11492,03a76d3d-3b6c-4f96-8c61-a818778ba076,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11493,03a76d3d-3b6c-4f96-8c61-a818778ba076,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11494,6a5e1656-4032-46b0-9381-ac7373a68169,LIST_ACCOUNTS,hbciListAccounts,false -11495,6a5e1656-4032-46b0-9381-ac7373a68169,LIST_TRANSACTIONS,hbciListTransactions,false -11496,6a5e1656-4032-46b0-9381-ac7373a68169,AUTHORIZATION,,false -11497,6a5e1656-4032-46b0-9381-ac7373a68169,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11498,6a5e1656-4032-46b0-9381-ac7373a68169,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11499,6a5e1656-4032-46b0-9381-ac7373a68169,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11494,c1d42c9a-a49f-41c0-b2f8-cdf9299ed0c0,LIST_ACCOUNTS,hbciListAccounts,false +11495,c1d42c9a-a49f-41c0-b2f8-cdf9299ed0c0,LIST_TRANSACTIONS,hbciListTransactions,false +11496,c1d42c9a-a49f-41c0-b2f8-cdf9299ed0c0,AUTHORIZATION,,false +11497,c1d42c9a-a49f-41c0-b2f8-cdf9299ed0c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11498,c1d42c9a-a49f-41c0-b2f8-cdf9299ed0c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11499,c1d42c9a-a49f-41c0-b2f8-cdf9299ed0c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11500,2651625a-7b2a-4ac5-bec7-cc4fc45da1c5,LIST_ACCOUNTS,xs2aListAccounts,true -11501,2651625a-7b2a-4ac5-bec7-cc4fc45da1c5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11501,2651625a-7b2a-4ac5-bec7-cc4fc45da1c5,LIST_TRANSACTIONS,xs2aListTransactions,true 11502,2651625a-7b2a-4ac5-bec7-cc4fc45da1c5,AUTHORIZATION,,true 11503,2651625a-7b2a-4ac5-bec7-cc4fc45da1c5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11504,2651625a-7b2a-4ac5-bec7-cc4fc45da1c5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11505,2651625a-7b2a-4ac5-bec7-cc4fc45da1c5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11506,ffbf143f-c6ca-4e27-9fdd-22e046c12d35,LIST_ACCOUNTS,hbciListAccounts,false -11507,ffbf143f-c6ca-4e27-9fdd-22e046c12d35,LIST_TRANSACTIONS,hbciListTransactions,false -11508,ffbf143f-c6ca-4e27-9fdd-22e046c12d35,AUTHORIZATION,,false -11509,ffbf143f-c6ca-4e27-9fdd-22e046c12d35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11510,ffbf143f-c6ca-4e27-9fdd-22e046c12d35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11511,ffbf143f-c6ca-4e27-9fdd-22e046c12d35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11506,145d8abf-0e47-4329-9e93-0956252046ba,LIST_ACCOUNTS,hbciListAccounts,false +11507,145d8abf-0e47-4329-9e93-0956252046ba,LIST_TRANSACTIONS,hbciListTransactions,false +11508,145d8abf-0e47-4329-9e93-0956252046ba,AUTHORIZATION,,false +11509,145d8abf-0e47-4329-9e93-0956252046ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11510,145d8abf-0e47-4329-9e93-0956252046ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11511,145d8abf-0e47-4329-9e93-0956252046ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11512,a28c7adb-359a-4d62-b485-db31bc30283a,LIST_ACCOUNTS,xs2aListAccounts,true -11513,a28c7adb-359a-4d62-b485-db31bc30283a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11513,a28c7adb-359a-4d62-b485-db31bc30283a,LIST_TRANSACTIONS,xs2aListTransactions,true 11514,a28c7adb-359a-4d62-b485-db31bc30283a,AUTHORIZATION,,true 11515,a28c7adb-359a-4d62-b485-db31bc30283a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11516,a28c7adb-359a-4d62-b485-db31bc30283a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11517,a28c7adb-359a-4d62-b485-db31bc30283a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11518,040c3c05-5434-4d4c-a706-b6fad7a221c8,LIST_ACCOUNTS,hbciListAccounts,false -11519,040c3c05-5434-4d4c-a706-b6fad7a221c8,LIST_TRANSACTIONS,hbciListTransactions,false -11520,040c3c05-5434-4d4c-a706-b6fad7a221c8,AUTHORIZATION,,false -11521,040c3c05-5434-4d4c-a706-b6fad7a221c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11522,040c3c05-5434-4d4c-a706-b6fad7a221c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11523,040c3c05-5434-4d4c-a706-b6fad7a221c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11518,cb05c351-5423-4c79-b830-6253e952b743,LIST_ACCOUNTS,hbciListAccounts,false +11519,cb05c351-5423-4c79-b830-6253e952b743,LIST_TRANSACTIONS,hbciListTransactions,false +11520,cb05c351-5423-4c79-b830-6253e952b743,AUTHORIZATION,,false +11521,cb05c351-5423-4c79-b830-6253e952b743,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11522,cb05c351-5423-4c79-b830-6253e952b743,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11523,cb05c351-5423-4c79-b830-6253e952b743,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11524,712eaed1-36aa-4c2d-bd8b-48af8e682d73,LIST_ACCOUNTS,xs2aListAccounts,true -11525,712eaed1-36aa-4c2d-bd8b-48af8e682d73,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11525,712eaed1-36aa-4c2d-bd8b-48af8e682d73,LIST_TRANSACTIONS,xs2aListTransactions,true 11526,712eaed1-36aa-4c2d-bd8b-48af8e682d73,AUTHORIZATION,,true 11527,712eaed1-36aa-4c2d-bd8b-48af8e682d73,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11528,712eaed1-36aa-4c2d-bd8b-48af8e682d73,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11529,712eaed1-36aa-4c2d-bd8b-48af8e682d73,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11530,1a40942f-937f-4758-9d59-a0b2777764bc,LIST_ACCOUNTS,hbciListAccounts,false -11531,1a40942f-937f-4758-9d59-a0b2777764bc,LIST_TRANSACTIONS,hbciListTransactions,false -11532,1a40942f-937f-4758-9d59-a0b2777764bc,AUTHORIZATION,,false -11533,1a40942f-937f-4758-9d59-a0b2777764bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11534,1a40942f-937f-4758-9d59-a0b2777764bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11535,1a40942f-937f-4758-9d59-a0b2777764bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11530,122632e1-2a1b-42d4-921e-e77e9ef61d6c,LIST_ACCOUNTS,hbciListAccounts,false +11531,122632e1-2a1b-42d4-921e-e77e9ef61d6c,LIST_TRANSACTIONS,hbciListTransactions,false +11532,122632e1-2a1b-42d4-921e-e77e9ef61d6c,AUTHORIZATION,,false +11533,122632e1-2a1b-42d4-921e-e77e9ef61d6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11534,122632e1-2a1b-42d4-921e-e77e9ef61d6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11535,122632e1-2a1b-42d4-921e-e77e9ef61d6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11536,81cecc67-6d1b-4169-b67c-2de52b99a0cc,LIST_ACCOUNTS,xs2aListAccounts,true -11537,81cecc67-6d1b-4169-b67c-2de52b99a0cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11537,81cecc67-6d1b-4169-b67c-2de52b99a0cc,LIST_TRANSACTIONS,xs2aListTransactions,true 11538,81cecc67-6d1b-4169-b67c-2de52b99a0cc,AUTHORIZATION,,true 11539,81cecc67-6d1b-4169-b67c-2de52b99a0cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11540,81cecc67-6d1b-4169-b67c-2de52b99a0cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11541,81cecc67-6d1b-4169-b67c-2de52b99a0cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11542,cb72d59e-a0a6-4f1a-aff9-d07006f3e11d,LIST_ACCOUNTS,hbciListAccounts,false -11543,cb72d59e-a0a6-4f1a-aff9-d07006f3e11d,LIST_TRANSACTIONS,hbciListTransactions,false -11544,cb72d59e-a0a6-4f1a-aff9-d07006f3e11d,AUTHORIZATION,,false -11545,cb72d59e-a0a6-4f1a-aff9-d07006f3e11d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11546,cb72d59e-a0a6-4f1a-aff9-d07006f3e11d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11547,cb72d59e-a0a6-4f1a-aff9-d07006f3e11d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11542,96bf506f-0923-410a-acc8-da4e774d2d2e,LIST_ACCOUNTS,hbciListAccounts,false +11543,96bf506f-0923-410a-acc8-da4e774d2d2e,LIST_TRANSACTIONS,hbciListTransactions,false +11544,96bf506f-0923-410a-acc8-da4e774d2d2e,AUTHORIZATION,,false +11545,96bf506f-0923-410a-acc8-da4e774d2d2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11546,96bf506f-0923-410a-acc8-da4e774d2d2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11547,96bf506f-0923-410a-acc8-da4e774d2d2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11548,aa46a0ab-c1ee-4bc2-bfe0-827e832e1875,LIST_ACCOUNTS,xs2aListAccounts,true -11549,aa46a0ab-c1ee-4bc2-bfe0-827e832e1875,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11549,aa46a0ab-c1ee-4bc2-bfe0-827e832e1875,LIST_TRANSACTIONS,xs2aListTransactions,true 11550,aa46a0ab-c1ee-4bc2-bfe0-827e832e1875,AUTHORIZATION,,true 11551,aa46a0ab-c1ee-4bc2-bfe0-827e832e1875,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11552,aa46a0ab-c1ee-4bc2-bfe0-827e832e1875,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11553,aa46a0ab-c1ee-4bc2-bfe0-827e832e1875,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11554,4bd4bce1-4941-40ef-8fce-de1c925c0388,LIST_ACCOUNTS,hbciListAccounts,false -11555,4bd4bce1-4941-40ef-8fce-de1c925c0388,LIST_TRANSACTIONS,hbciListTransactions,false -11556,4bd4bce1-4941-40ef-8fce-de1c925c0388,AUTHORIZATION,,false -11557,4bd4bce1-4941-40ef-8fce-de1c925c0388,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11558,4bd4bce1-4941-40ef-8fce-de1c925c0388,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11559,4bd4bce1-4941-40ef-8fce-de1c925c0388,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11554,85cd910f-8053-42c5-8577-706e390a4f06,LIST_ACCOUNTS,hbciListAccounts,false +11555,85cd910f-8053-42c5-8577-706e390a4f06,LIST_TRANSACTIONS,hbciListTransactions,false +11556,85cd910f-8053-42c5-8577-706e390a4f06,AUTHORIZATION,,false +11557,85cd910f-8053-42c5-8577-706e390a4f06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11558,85cd910f-8053-42c5-8577-706e390a4f06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11559,85cd910f-8053-42c5-8577-706e390a4f06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11560,00833181-954b-44b4-92e9-0b236636c36d,LIST_ACCOUNTS,xs2aListAccounts,true -11561,00833181-954b-44b4-92e9-0b236636c36d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11561,00833181-954b-44b4-92e9-0b236636c36d,LIST_TRANSACTIONS,xs2aListTransactions,true 11562,00833181-954b-44b4-92e9-0b236636c36d,AUTHORIZATION,,true 11563,00833181-954b-44b4-92e9-0b236636c36d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11564,00833181-954b-44b4-92e9-0b236636c36d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11565,00833181-954b-44b4-92e9-0b236636c36d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11566,d909f30d-50ba-44fe-aeb8-ee381a39f79d,LIST_ACCOUNTS,hbciListAccounts,false -11567,d909f30d-50ba-44fe-aeb8-ee381a39f79d,LIST_TRANSACTIONS,hbciListTransactions,false -11568,d909f30d-50ba-44fe-aeb8-ee381a39f79d,AUTHORIZATION,,false -11569,d909f30d-50ba-44fe-aeb8-ee381a39f79d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11570,d909f30d-50ba-44fe-aeb8-ee381a39f79d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11571,d909f30d-50ba-44fe-aeb8-ee381a39f79d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11566,62a119df-0724-4964-8c11-5758fb6462a2,LIST_ACCOUNTS,hbciListAccounts,false +11567,62a119df-0724-4964-8c11-5758fb6462a2,LIST_TRANSACTIONS,hbciListTransactions,false +11568,62a119df-0724-4964-8c11-5758fb6462a2,AUTHORIZATION,,false +11569,62a119df-0724-4964-8c11-5758fb6462a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11570,62a119df-0724-4964-8c11-5758fb6462a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11571,62a119df-0724-4964-8c11-5758fb6462a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11572,e8085168-638c-469a-8953-b4ee1259a4ff,LIST_ACCOUNTS,xs2aListAccounts,true -11573,e8085168-638c-469a-8953-b4ee1259a4ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11573,e8085168-638c-469a-8953-b4ee1259a4ff,LIST_TRANSACTIONS,xs2aListTransactions,true 11574,e8085168-638c-469a-8953-b4ee1259a4ff,AUTHORIZATION,,true 11575,e8085168-638c-469a-8953-b4ee1259a4ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11576,e8085168-638c-469a-8953-b4ee1259a4ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11577,e8085168-638c-469a-8953-b4ee1259a4ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11578,8a635568-3ea6-40da-a576-6009a2babd91,LIST_ACCOUNTS,hbciListAccounts,false -11579,8a635568-3ea6-40da-a576-6009a2babd91,LIST_TRANSACTIONS,hbciListTransactions,false -11580,8a635568-3ea6-40da-a576-6009a2babd91,AUTHORIZATION,,false -11581,8a635568-3ea6-40da-a576-6009a2babd91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11582,8a635568-3ea6-40da-a576-6009a2babd91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11583,8a635568-3ea6-40da-a576-6009a2babd91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11578,403a66ae-7816-4c28-bac1-2d9bacf8381e,LIST_ACCOUNTS,hbciListAccounts,false +11579,403a66ae-7816-4c28-bac1-2d9bacf8381e,LIST_TRANSACTIONS,hbciListTransactions,false +11580,403a66ae-7816-4c28-bac1-2d9bacf8381e,AUTHORIZATION,,false +11581,403a66ae-7816-4c28-bac1-2d9bacf8381e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11582,403a66ae-7816-4c28-bac1-2d9bacf8381e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11583,403a66ae-7816-4c28-bac1-2d9bacf8381e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11584,35cf0adb-bbec-4a42-a056-7880c6155e4e,LIST_ACCOUNTS,xs2aListAccounts,true -11585,35cf0adb-bbec-4a42-a056-7880c6155e4e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11585,35cf0adb-bbec-4a42-a056-7880c6155e4e,LIST_TRANSACTIONS,xs2aListTransactions,true 11586,35cf0adb-bbec-4a42-a056-7880c6155e4e,AUTHORIZATION,,true 11587,35cf0adb-bbec-4a42-a056-7880c6155e4e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11588,35cf0adb-bbec-4a42-a056-7880c6155e4e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11589,35cf0adb-bbec-4a42-a056-7880c6155e4e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11590,812eee6a-7d69-43e8-a219-39fb1d47e4f6,LIST_ACCOUNTS,hbciListAccounts,false -11591,812eee6a-7d69-43e8-a219-39fb1d47e4f6,LIST_TRANSACTIONS,hbciListTransactions,false -11592,812eee6a-7d69-43e8-a219-39fb1d47e4f6,AUTHORIZATION,,false -11593,812eee6a-7d69-43e8-a219-39fb1d47e4f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11594,812eee6a-7d69-43e8-a219-39fb1d47e4f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11595,812eee6a-7d69-43e8-a219-39fb1d47e4f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11590,d857fdd1-2549-43f3-b14f-10ebde0612a7,LIST_ACCOUNTS,hbciListAccounts,false +11591,d857fdd1-2549-43f3-b14f-10ebde0612a7,LIST_TRANSACTIONS,hbciListTransactions,false +11592,d857fdd1-2549-43f3-b14f-10ebde0612a7,AUTHORIZATION,,false +11593,d857fdd1-2549-43f3-b14f-10ebde0612a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11594,d857fdd1-2549-43f3-b14f-10ebde0612a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11595,d857fdd1-2549-43f3-b14f-10ebde0612a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11596,57440a6b-0078-4c4c-b54a-a8562cc05bb0,LIST_ACCOUNTS,xs2aListAccounts,true -11597,57440a6b-0078-4c4c-b54a-a8562cc05bb0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11597,57440a6b-0078-4c4c-b54a-a8562cc05bb0,LIST_TRANSACTIONS,xs2aListTransactions,true 11598,57440a6b-0078-4c4c-b54a-a8562cc05bb0,AUTHORIZATION,,true 11599,57440a6b-0078-4c4c-b54a-a8562cc05bb0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11600,57440a6b-0078-4c4c-b54a-a8562cc05bb0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11601,57440a6b-0078-4c4c-b54a-a8562cc05bb0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11602,effe5bda-de7f-4a40-99a2-2670de463276,LIST_ACCOUNTS,hbciListAccounts,false -11603,effe5bda-de7f-4a40-99a2-2670de463276,LIST_TRANSACTIONS,hbciListTransactions,false -11604,effe5bda-de7f-4a40-99a2-2670de463276,AUTHORIZATION,,false -11605,effe5bda-de7f-4a40-99a2-2670de463276,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11606,effe5bda-de7f-4a40-99a2-2670de463276,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11607,effe5bda-de7f-4a40-99a2-2670de463276,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11602,087bf043-28c8-45d0-ae0c-d89ba5c20e76,LIST_ACCOUNTS,hbciListAccounts,false +11603,087bf043-28c8-45d0-ae0c-d89ba5c20e76,LIST_TRANSACTIONS,hbciListTransactions,false +11604,087bf043-28c8-45d0-ae0c-d89ba5c20e76,AUTHORIZATION,,false +11605,087bf043-28c8-45d0-ae0c-d89ba5c20e76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11606,087bf043-28c8-45d0-ae0c-d89ba5c20e76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11607,087bf043-28c8-45d0-ae0c-d89ba5c20e76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11608,e990080e-a292-487b-931d-9dd179fa55fe,LIST_ACCOUNTS,xs2aListAccounts,true -11609,e990080e-a292-487b-931d-9dd179fa55fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11609,e990080e-a292-487b-931d-9dd179fa55fe,LIST_TRANSACTIONS,xs2aListTransactions,true 11610,e990080e-a292-487b-931d-9dd179fa55fe,AUTHORIZATION,,true 11611,e990080e-a292-487b-931d-9dd179fa55fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11612,e990080e-a292-487b-931d-9dd179fa55fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11613,e990080e-a292-487b-931d-9dd179fa55fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11614,2de4884e-beb1-4e00-8a3f-da5493417e02,LIST_ACCOUNTS,hbciListAccounts,false -11615,2de4884e-beb1-4e00-8a3f-da5493417e02,LIST_TRANSACTIONS,hbciListTransactions,false -11616,2de4884e-beb1-4e00-8a3f-da5493417e02,AUTHORIZATION,,false -11617,2de4884e-beb1-4e00-8a3f-da5493417e02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11618,2de4884e-beb1-4e00-8a3f-da5493417e02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11619,2de4884e-beb1-4e00-8a3f-da5493417e02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11614,7ae45cef-6e05-46f1-8c31-6ee00aaeb355,LIST_ACCOUNTS,hbciListAccounts,false +11615,7ae45cef-6e05-46f1-8c31-6ee00aaeb355,LIST_TRANSACTIONS,hbciListTransactions,false +11616,7ae45cef-6e05-46f1-8c31-6ee00aaeb355,AUTHORIZATION,,false +11617,7ae45cef-6e05-46f1-8c31-6ee00aaeb355,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11618,7ae45cef-6e05-46f1-8c31-6ee00aaeb355,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11619,7ae45cef-6e05-46f1-8c31-6ee00aaeb355,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11620,597836f9-054d-4e34-beec-2e16af9e2671,LIST_ACCOUNTS,xs2aListAccounts,true -11621,597836f9-054d-4e34-beec-2e16af9e2671,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11621,597836f9-054d-4e34-beec-2e16af9e2671,LIST_TRANSACTIONS,xs2aListTransactions,true 11622,597836f9-054d-4e34-beec-2e16af9e2671,AUTHORIZATION,,true 11623,597836f9-054d-4e34-beec-2e16af9e2671,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11624,597836f9-054d-4e34-beec-2e16af9e2671,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11625,597836f9-054d-4e34-beec-2e16af9e2671,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11626,9da21b84-ec22-472b-847f-f14f7949cb38,LIST_ACCOUNTS,hbciListAccounts,false -11627,9da21b84-ec22-472b-847f-f14f7949cb38,LIST_TRANSACTIONS,hbciListTransactions,false -11628,9da21b84-ec22-472b-847f-f14f7949cb38,AUTHORIZATION,,false -11629,9da21b84-ec22-472b-847f-f14f7949cb38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11630,9da21b84-ec22-472b-847f-f14f7949cb38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11631,9da21b84-ec22-472b-847f-f14f7949cb38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11626,0b7b7cff-6faa-40b7-9109-ef13b86fd930,LIST_ACCOUNTS,hbciListAccounts,false +11627,0b7b7cff-6faa-40b7-9109-ef13b86fd930,LIST_TRANSACTIONS,hbciListTransactions,false +11628,0b7b7cff-6faa-40b7-9109-ef13b86fd930,AUTHORIZATION,,false +11629,0b7b7cff-6faa-40b7-9109-ef13b86fd930,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11630,0b7b7cff-6faa-40b7-9109-ef13b86fd930,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11631,0b7b7cff-6faa-40b7-9109-ef13b86fd930,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11632,0560761b-fda4-4b2f-b4bc-b391e947332a,LIST_ACCOUNTS,xs2aListAccounts,true -11633,0560761b-fda4-4b2f-b4bc-b391e947332a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11633,0560761b-fda4-4b2f-b4bc-b391e947332a,LIST_TRANSACTIONS,xs2aListTransactions,true 11634,0560761b-fda4-4b2f-b4bc-b391e947332a,AUTHORIZATION,,true 11635,0560761b-fda4-4b2f-b4bc-b391e947332a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11636,0560761b-fda4-4b2f-b4bc-b391e947332a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11637,0560761b-fda4-4b2f-b4bc-b391e947332a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11638,408b9d74-f5a1-4c45-a89c-d5f7f8993e75,LIST_ACCOUNTS,hbciListAccounts,false -11639,408b9d74-f5a1-4c45-a89c-d5f7f8993e75,LIST_TRANSACTIONS,hbciListTransactions,false -11640,408b9d74-f5a1-4c45-a89c-d5f7f8993e75,AUTHORIZATION,,false -11641,408b9d74-f5a1-4c45-a89c-d5f7f8993e75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11642,408b9d74-f5a1-4c45-a89c-d5f7f8993e75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11643,408b9d74-f5a1-4c45-a89c-d5f7f8993e75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11638,2962db0f-9802-4e1b-8449-2a6030ed8a27,LIST_ACCOUNTS,hbciListAccounts,false +11639,2962db0f-9802-4e1b-8449-2a6030ed8a27,LIST_TRANSACTIONS,hbciListTransactions,false +11640,2962db0f-9802-4e1b-8449-2a6030ed8a27,AUTHORIZATION,,false +11641,2962db0f-9802-4e1b-8449-2a6030ed8a27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11642,2962db0f-9802-4e1b-8449-2a6030ed8a27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11643,2962db0f-9802-4e1b-8449-2a6030ed8a27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11644,50ed12d4-c717-4fb6-bcd4-6cacbff772f9,LIST_ACCOUNTS,xs2aListAccounts,true -11645,50ed12d4-c717-4fb6-bcd4-6cacbff772f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11645,50ed12d4-c717-4fb6-bcd4-6cacbff772f9,LIST_TRANSACTIONS,xs2aListTransactions,true 11646,50ed12d4-c717-4fb6-bcd4-6cacbff772f9,AUTHORIZATION,,true 11647,50ed12d4-c717-4fb6-bcd4-6cacbff772f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11648,50ed12d4-c717-4fb6-bcd4-6cacbff772f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11649,50ed12d4-c717-4fb6-bcd4-6cacbff772f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11650,e98c27a8-9da4-41b0-8886-db5e154a28b8,LIST_ACCOUNTS,hbciListAccounts,false -11651,e98c27a8-9da4-41b0-8886-db5e154a28b8,LIST_TRANSACTIONS,hbciListTransactions,false -11652,e98c27a8-9da4-41b0-8886-db5e154a28b8,AUTHORIZATION,,false -11653,e98c27a8-9da4-41b0-8886-db5e154a28b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11654,e98c27a8-9da4-41b0-8886-db5e154a28b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11655,e98c27a8-9da4-41b0-8886-db5e154a28b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11650,4d79ec19-685d-4ad7-911e-14b6abe8999b,LIST_ACCOUNTS,hbciListAccounts,false +11651,4d79ec19-685d-4ad7-911e-14b6abe8999b,LIST_TRANSACTIONS,hbciListTransactions,false +11652,4d79ec19-685d-4ad7-911e-14b6abe8999b,AUTHORIZATION,,false +11653,4d79ec19-685d-4ad7-911e-14b6abe8999b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11654,4d79ec19-685d-4ad7-911e-14b6abe8999b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11655,4d79ec19-685d-4ad7-911e-14b6abe8999b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11656,0dadfd89-2e57-4573-8ae1-3b35d0e51357,LIST_ACCOUNTS,xs2aListAccounts,true -11657,0dadfd89-2e57-4573-8ae1-3b35d0e51357,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11657,0dadfd89-2e57-4573-8ae1-3b35d0e51357,LIST_TRANSACTIONS,xs2aListTransactions,true 11658,0dadfd89-2e57-4573-8ae1-3b35d0e51357,AUTHORIZATION,,true 11659,0dadfd89-2e57-4573-8ae1-3b35d0e51357,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11660,0dadfd89-2e57-4573-8ae1-3b35d0e51357,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11661,0dadfd89-2e57-4573-8ae1-3b35d0e51357,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11662,8ff4d8cc-cedd-4fd7-b3d2-736067a0c483,LIST_ACCOUNTS,hbciListAccounts,false -11663,8ff4d8cc-cedd-4fd7-b3d2-736067a0c483,LIST_TRANSACTIONS,hbciListTransactions,false -11664,8ff4d8cc-cedd-4fd7-b3d2-736067a0c483,AUTHORIZATION,,false -11665,8ff4d8cc-cedd-4fd7-b3d2-736067a0c483,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11666,8ff4d8cc-cedd-4fd7-b3d2-736067a0c483,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11667,8ff4d8cc-cedd-4fd7-b3d2-736067a0c483,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11662,4dc11e46-147b-4b6c-8b52-9469c72da85a,LIST_ACCOUNTS,hbciListAccounts,false +11663,4dc11e46-147b-4b6c-8b52-9469c72da85a,LIST_TRANSACTIONS,hbciListTransactions,false +11664,4dc11e46-147b-4b6c-8b52-9469c72da85a,AUTHORIZATION,,false +11665,4dc11e46-147b-4b6c-8b52-9469c72da85a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11666,4dc11e46-147b-4b6c-8b52-9469c72da85a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11667,4dc11e46-147b-4b6c-8b52-9469c72da85a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11668,888be9a6-6f3e-409f-9b89-4e6094d59775,LIST_ACCOUNTS,xs2aListAccounts,true -11669,888be9a6-6f3e-409f-9b89-4e6094d59775,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11669,888be9a6-6f3e-409f-9b89-4e6094d59775,LIST_TRANSACTIONS,xs2aListTransactions,true 11670,888be9a6-6f3e-409f-9b89-4e6094d59775,AUTHORIZATION,,true 11671,888be9a6-6f3e-409f-9b89-4e6094d59775,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11672,888be9a6-6f3e-409f-9b89-4e6094d59775,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11673,888be9a6-6f3e-409f-9b89-4e6094d59775,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11674,ac06ba1c-1ae3-432f-be3e-8c1029e3511f,LIST_ACCOUNTS,hbciListAccounts,false -11675,ac06ba1c-1ae3-432f-be3e-8c1029e3511f,LIST_TRANSACTIONS,hbciListTransactions,false -11676,ac06ba1c-1ae3-432f-be3e-8c1029e3511f,AUTHORIZATION,,false -11677,ac06ba1c-1ae3-432f-be3e-8c1029e3511f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11678,ac06ba1c-1ae3-432f-be3e-8c1029e3511f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11679,ac06ba1c-1ae3-432f-be3e-8c1029e3511f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11674,6db6708f-143a-4f53-b722-7d450e999e70,LIST_ACCOUNTS,hbciListAccounts,false +11675,6db6708f-143a-4f53-b722-7d450e999e70,LIST_TRANSACTIONS,hbciListTransactions,false +11676,6db6708f-143a-4f53-b722-7d450e999e70,AUTHORIZATION,,false +11677,6db6708f-143a-4f53-b722-7d450e999e70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11678,6db6708f-143a-4f53-b722-7d450e999e70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11679,6db6708f-143a-4f53-b722-7d450e999e70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11680,40b9e63e-7718-4f75-bd86-3268a4414199,LIST_ACCOUNTS,xs2aListAccounts,true -11681,40b9e63e-7718-4f75-bd86-3268a4414199,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11681,40b9e63e-7718-4f75-bd86-3268a4414199,LIST_TRANSACTIONS,xs2aListTransactions,true 11682,40b9e63e-7718-4f75-bd86-3268a4414199,AUTHORIZATION,,true 11683,40b9e63e-7718-4f75-bd86-3268a4414199,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11684,40b9e63e-7718-4f75-bd86-3268a4414199,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11685,40b9e63e-7718-4f75-bd86-3268a4414199,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11686,c536ca9c-1411-4d20-9e8e-52391ae35a8f,LIST_ACCOUNTS,hbciListAccounts,false -11687,c536ca9c-1411-4d20-9e8e-52391ae35a8f,LIST_TRANSACTIONS,hbciListTransactions,false -11688,c536ca9c-1411-4d20-9e8e-52391ae35a8f,AUTHORIZATION,,false -11689,c536ca9c-1411-4d20-9e8e-52391ae35a8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11690,c536ca9c-1411-4d20-9e8e-52391ae35a8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11691,c536ca9c-1411-4d20-9e8e-52391ae35a8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11686,3c74abc6-1d88-4121-86bc-ac33abda0dea,LIST_ACCOUNTS,hbciListAccounts,false +11687,3c74abc6-1d88-4121-86bc-ac33abda0dea,LIST_TRANSACTIONS,hbciListTransactions,false +11688,3c74abc6-1d88-4121-86bc-ac33abda0dea,AUTHORIZATION,,false +11689,3c74abc6-1d88-4121-86bc-ac33abda0dea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11690,3c74abc6-1d88-4121-86bc-ac33abda0dea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11691,3c74abc6-1d88-4121-86bc-ac33abda0dea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11692,97eb07c5-202f-4ae5-a616-61f0abe95a21,LIST_ACCOUNTS,xs2aListAccounts,true -11693,97eb07c5-202f-4ae5-a616-61f0abe95a21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11693,97eb07c5-202f-4ae5-a616-61f0abe95a21,LIST_TRANSACTIONS,xs2aListTransactions,true 11694,97eb07c5-202f-4ae5-a616-61f0abe95a21,AUTHORIZATION,,true 11695,97eb07c5-202f-4ae5-a616-61f0abe95a21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11696,97eb07c5-202f-4ae5-a616-61f0abe95a21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11697,97eb07c5-202f-4ae5-a616-61f0abe95a21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11698,c18e80b0-ab7d-474a-a250-aa6db66f2c62,LIST_ACCOUNTS,hbciListAccounts,false -11699,c18e80b0-ab7d-474a-a250-aa6db66f2c62,LIST_TRANSACTIONS,hbciListTransactions,false -11700,c18e80b0-ab7d-474a-a250-aa6db66f2c62,AUTHORIZATION,,false -11701,c18e80b0-ab7d-474a-a250-aa6db66f2c62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11702,c18e80b0-ab7d-474a-a250-aa6db66f2c62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11703,c18e80b0-ab7d-474a-a250-aa6db66f2c62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11698,c2795676-5cb2-45fe-83de-19131d5c9a5a,LIST_ACCOUNTS,hbciListAccounts,false +11699,c2795676-5cb2-45fe-83de-19131d5c9a5a,LIST_TRANSACTIONS,hbciListTransactions,false +11700,c2795676-5cb2-45fe-83de-19131d5c9a5a,AUTHORIZATION,,false +11701,c2795676-5cb2-45fe-83de-19131d5c9a5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11702,c2795676-5cb2-45fe-83de-19131d5c9a5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11703,c2795676-5cb2-45fe-83de-19131d5c9a5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11704,65adb70e-c530-45fd-a652-c1b40d1d0b70,LIST_ACCOUNTS,xs2aListAccounts,true -11705,65adb70e-c530-45fd-a652-c1b40d1d0b70,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11705,65adb70e-c530-45fd-a652-c1b40d1d0b70,LIST_TRANSACTIONS,xs2aListTransactions,true 11706,65adb70e-c530-45fd-a652-c1b40d1d0b70,AUTHORIZATION,,true 11707,65adb70e-c530-45fd-a652-c1b40d1d0b70,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11708,65adb70e-c530-45fd-a652-c1b40d1d0b70,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11709,65adb70e-c530-45fd-a652-c1b40d1d0b70,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11710,29589b8b-d805-42fc-b0f5-2ac9a3cd0620,LIST_ACCOUNTS,hbciListAccounts,false -11711,29589b8b-d805-42fc-b0f5-2ac9a3cd0620,LIST_TRANSACTIONS,hbciListTransactions,false -11712,29589b8b-d805-42fc-b0f5-2ac9a3cd0620,AUTHORIZATION,,false -11713,29589b8b-d805-42fc-b0f5-2ac9a3cd0620,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11714,29589b8b-d805-42fc-b0f5-2ac9a3cd0620,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11715,29589b8b-d805-42fc-b0f5-2ac9a3cd0620,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11710,3c1b63b9-7156-43d7-b2c7-d3722aac65a1,LIST_ACCOUNTS,hbciListAccounts,false +11711,3c1b63b9-7156-43d7-b2c7-d3722aac65a1,LIST_TRANSACTIONS,hbciListTransactions,false +11712,3c1b63b9-7156-43d7-b2c7-d3722aac65a1,AUTHORIZATION,,false +11713,3c1b63b9-7156-43d7-b2c7-d3722aac65a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11714,3c1b63b9-7156-43d7-b2c7-d3722aac65a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11715,3c1b63b9-7156-43d7-b2c7-d3722aac65a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11716,1f125bc2-f16b-432b-b9f5-b09d9696a9a1,LIST_ACCOUNTS,xs2aListAccounts,true -11717,1f125bc2-f16b-432b-b9f5-b09d9696a9a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11717,1f125bc2-f16b-432b-b9f5-b09d9696a9a1,LIST_TRANSACTIONS,xs2aListTransactions,true 11718,1f125bc2-f16b-432b-b9f5-b09d9696a9a1,AUTHORIZATION,,true 11719,1f125bc2-f16b-432b-b9f5-b09d9696a9a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11720,1f125bc2-f16b-432b-b9f5-b09d9696a9a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11721,1f125bc2-f16b-432b-b9f5-b09d9696a9a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11722,9ecabb59-894d-48e5-a86e-e6ab45d9d4b3,LIST_ACCOUNTS,hbciListAccounts,false -11723,9ecabb59-894d-48e5-a86e-e6ab45d9d4b3,LIST_TRANSACTIONS,hbciListTransactions,false -11724,9ecabb59-894d-48e5-a86e-e6ab45d9d4b3,AUTHORIZATION,,false -11725,9ecabb59-894d-48e5-a86e-e6ab45d9d4b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11726,9ecabb59-894d-48e5-a86e-e6ab45d9d4b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11727,9ecabb59-894d-48e5-a86e-e6ab45d9d4b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11722,0e35dcce-a723-45d8-9046-99d9b979bd62,LIST_ACCOUNTS,hbciListAccounts,false +11723,0e35dcce-a723-45d8-9046-99d9b979bd62,LIST_TRANSACTIONS,hbciListTransactions,false +11724,0e35dcce-a723-45d8-9046-99d9b979bd62,AUTHORIZATION,,false +11725,0e35dcce-a723-45d8-9046-99d9b979bd62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11726,0e35dcce-a723-45d8-9046-99d9b979bd62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11727,0e35dcce-a723-45d8-9046-99d9b979bd62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11728,03e0cea8-89e9-4926-90ca-4711e9ecb6c4,LIST_ACCOUNTS,xs2aListAccounts,true -11729,03e0cea8-89e9-4926-90ca-4711e9ecb6c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11729,03e0cea8-89e9-4926-90ca-4711e9ecb6c4,LIST_TRANSACTIONS,xs2aListTransactions,true 11730,03e0cea8-89e9-4926-90ca-4711e9ecb6c4,AUTHORIZATION,,true 11731,03e0cea8-89e9-4926-90ca-4711e9ecb6c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11732,03e0cea8-89e9-4926-90ca-4711e9ecb6c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11733,03e0cea8-89e9-4926-90ca-4711e9ecb6c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11734,3017c4d2-0aab-4e95-80a7-866ce707d902,LIST_ACCOUNTS,hbciListAccounts,false -11735,3017c4d2-0aab-4e95-80a7-866ce707d902,LIST_TRANSACTIONS,hbciListTransactions,false -11736,3017c4d2-0aab-4e95-80a7-866ce707d902,AUTHORIZATION,,false -11737,3017c4d2-0aab-4e95-80a7-866ce707d902,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11738,3017c4d2-0aab-4e95-80a7-866ce707d902,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11739,3017c4d2-0aab-4e95-80a7-866ce707d902,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11734,6f9c0064-b288-4a7b-87a8-ab59b9026dc2,LIST_ACCOUNTS,hbciListAccounts,false +11735,6f9c0064-b288-4a7b-87a8-ab59b9026dc2,LIST_TRANSACTIONS,hbciListTransactions,false +11736,6f9c0064-b288-4a7b-87a8-ab59b9026dc2,AUTHORIZATION,,false +11737,6f9c0064-b288-4a7b-87a8-ab59b9026dc2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11738,6f9c0064-b288-4a7b-87a8-ab59b9026dc2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11739,6f9c0064-b288-4a7b-87a8-ab59b9026dc2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11740,1ce3716c-df49-4768-a622-8e5118a8928d,LIST_ACCOUNTS,xs2aListAccounts,true -11741,1ce3716c-df49-4768-a622-8e5118a8928d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11741,1ce3716c-df49-4768-a622-8e5118a8928d,LIST_TRANSACTIONS,xs2aListTransactions,true 11742,1ce3716c-df49-4768-a622-8e5118a8928d,AUTHORIZATION,,true 11743,1ce3716c-df49-4768-a622-8e5118a8928d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11744,1ce3716c-df49-4768-a622-8e5118a8928d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11745,1ce3716c-df49-4768-a622-8e5118a8928d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11746,3f23f6ec-9c38-4c6c-86ac-d776eb77a0b9,LIST_ACCOUNTS,hbciListAccounts,false -11747,3f23f6ec-9c38-4c6c-86ac-d776eb77a0b9,LIST_TRANSACTIONS,hbciListTransactions,false -11748,3f23f6ec-9c38-4c6c-86ac-d776eb77a0b9,AUTHORIZATION,,false -11749,3f23f6ec-9c38-4c6c-86ac-d776eb77a0b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11750,3f23f6ec-9c38-4c6c-86ac-d776eb77a0b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11751,3f23f6ec-9c38-4c6c-86ac-d776eb77a0b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11746,a5d63de8-6e3d-4e76-ba33-973ef68c12e5,LIST_ACCOUNTS,hbciListAccounts,false +11747,a5d63de8-6e3d-4e76-ba33-973ef68c12e5,LIST_TRANSACTIONS,hbciListTransactions,false +11748,a5d63de8-6e3d-4e76-ba33-973ef68c12e5,AUTHORIZATION,,false +11749,a5d63de8-6e3d-4e76-ba33-973ef68c12e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11750,a5d63de8-6e3d-4e76-ba33-973ef68c12e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11751,a5d63de8-6e3d-4e76-ba33-973ef68c12e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11752,76c56770-44bd-449a-bbe4-8e83752a23b1,LIST_ACCOUNTS,xs2aListAccounts,true -11753,76c56770-44bd-449a-bbe4-8e83752a23b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11753,76c56770-44bd-449a-bbe4-8e83752a23b1,LIST_TRANSACTIONS,xs2aListTransactions,true 11754,76c56770-44bd-449a-bbe4-8e83752a23b1,AUTHORIZATION,,true 11755,76c56770-44bd-449a-bbe4-8e83752a23b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11756,76c56770-44bd-449a-bbe4-8e83752a23b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11757,76c56770-44bd-449a-bbe4-8e83752a23b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11758,84722965-dd0c-49f2-a96a-ac5b8394395b,LIST_ACCOUNTS,hbciListAccounts,false -11759,84722965-dd0c-49f2-a96a-ac5b8394395b,LIST_TRANSACTIONS,hbciListTransactions,false -11760,84722965-dd0c-49f2-a96a-ac5b8394395b,AUTHORIZATION,,false -11761,84722965-dd0c-49f2-a96a-ac5b8394395b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11762,84722965-dd0c-49f2-a96a-ac5b8394395b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11763,84722965-dd0c-49f2-a96a-ac5b8394395b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11758,a8d89a6b-7532-41fe-90ff-b2733820de70,LIST_ACCOUNTS,hbciListAccounts,false +11759,a8d89a6b-7532-41fe-90ff-b2733820de70,LIST_TRANSACTIONS,hbciListTransactions,false +11760,a8d89a6b-7532-41fe-90ff-b2733820de70,AUTHORIZATION,,false +11761,a8d89a6b-7532-41fe-90ff-b2733820de70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11762,a8d89a6b-7532-41fe-90ff-b2733820de70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11763,a8d89a6b-7532-41fe-90ff-b2733820de70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11764,3c08f182-04e2-48ca-9090-71801f0310ca,LIST_ACCOUNTS,xs2aListAccounts,true -11765,3c08f182-04e2-48ca-9090-71801f0310ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11765,3c08f182-04e2-48ca-9090-71801f0310ca,LIST_TRANSACTIONS,xs2aListTransactions,true 11766,3c08f182-04e2-48ca-9090-71801f0310ca,AUTHORIZATION,,true 11767,3c08f182-04e2-48ca-9090-71801f0310ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11768,3c08f182-04e2-48ca-9090-71801f0310ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11769,3c08f182-04e2-48ca-9090-71801f0310ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11770,f9d44fe5-583b-4399-9c58-797d592db3d0,LIST_ACCOUNTS,hbciListAccounts,false -11771,f9d44fe5-583b-4399-9c58-797d592db3d0,LIST_TRANSACTIONS,hbciListTransactions,false -11772,f9d44fe5-583b-4399-9c58-797d592db3d0,AUTHORIZATION,,false -11773,f9d44fe5-583b-4399-9c58-797d592db3d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11774,f9d44fe5-583b-4399-9c58-797d592db3d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11775,f9d44fe5-583b-4399-9c58-797d592db3d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11770,62622ea5-faff-4530-bcc9-09cd96454f26,LIST_ACCOUNTS,hbciListAccounts,false +11771,62622ea5-faff-4530-bcc9-09cd96454f26,LIST_TRANSACTIONS,hbciListTransactions,false +11772,62622ea5-faff-4530-bcc9-09cd96454f26,AUTHORIZATION,,false +11773,62622ea5-faff-4530-bcc9-09cd96454f26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11774,62622ea5-faff-4530-bcc9-09cd96454f26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11775,62622ea5-faff-4530-bcc9-09cd96454f26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11776,1a587699-56b6-4384-85a9-bef5ab7ccf51,LIST_ACCOUNTS,xs2aListAccounts,true -11777,1a587699-56b6-4384-85a9-bef5ab7ccf51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11777,1a587699-56b6-4384-85a9-bef5ab7ccf51,LIST_TRANSACTIONS,xs2aListTransactions,true 11778,1a587699-56b6-4384-85a9-bef5ab7ccf51,AUTHORIZATION,,true 11779,1a587699-56b6-4384-85a9-bef5ab7ccf51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11780,1a587699-56b6-4384-85a9-bef5ab7ccf51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11781,1a587699-56b6-4384-85a9-bef5ab7ccf51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11782,063119f9-2baf-4c22-88cb-e082113389e1,LIST_ACCOUNTS,hbciListAccounts,false -11783,063119f9-2baf-4c22-88cb-e082113389e1,LIST_TRANSACTIONS,hbciListTransactions,false -11784,063119f9-2baf-4c22-88cb-e082113389e1,AUTHORIZATION,,false -11785,063119f9-2baf-4c22-88cb-e082113389e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11786,063119f9-2baf-4c22-88cb-e082113389e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11787,063119f9-2baf-4c22-88cb-e082113389e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11782,d20f6e36-51ce-4b24-af0e-3158c7c6ffbd,LIST_ACCOUNTS,hbciListAccounts,false +11783,d20f6e36-51ce-4b24-af0e-3158c7c6ffbd,LIST_TRANSACTIONS,hbciListTransactions,false +11784,d20f6e36-51ce-4b24-af0e-3158c7c6ffbd,AUTHORIZATION,,false +11785,d20f6e36-51ce-4b24-af0e-3158c7c6ffbd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11786,d20f6e36-51ce-4b24-af0e-3158c7c6ffbd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11787,d20f6e36-51ce-4b24-af0e-3158c7c6ffbd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11788,ff6b33c0-b851-46b4-87a2-c37727143269,LIST_ACCOUNTS,xs2aListAccounts,true -11789,ff6b33c0-b851-46b4-87a2-c37727143269,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11789,ff6b33c0-b851-46b4-87a2-c37727143269,LIST_TRANSACTIONS,xs2aListTransactions,true 11790,ff6b33c0-b851-46b4-87a2-c37727143269,AUTHORIZATION,,true 11791,ff6b33c0-b851-46b4-87a2-c37727143269,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11792,ff6b33c0-b851-46b4-87a2-c37727143269,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11793,ff6b33c0-b851-46b4-87a2-c37727143269,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11794,0025d1ef-f980-47c3-a1be-65456c22d031,LIST_ACCOUNTS,hbciListAccounts,false -11795,0025d1ef-f980-47c3-a1be-65456c22d031,LIST_TRANSACTIONS,hbciListTransactions,false -11796,0025d1ef-f980-47c3-a1be-65456c22d031,AUTHORIZATION,,false -11797,0025d1ef-f980-47c3-a1be-65456c22d031,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11798,0025d1ef-f980-47c3-a1be-65456c22d031,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11799,0025d1ef-f980-47c3-a1be-65456c22d031,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11794,d9ae4123-7bd0-4ca2-95be-694dd6ee18b1,LIST_ACCOUNTS,hbciListAccounts,false +11795,d9ae4123-7bd0-4ca2-95be-694dd6ee18b1,LIST_TRANSACTIONS,hbciListTransactions,false +11796,d9ae4123-7bd0-4ca2-95be-694dd6ee18b1,AUTHORIZATION,,false +11797,d9ae4123-7bd0-4ca2-95be-694dd6ee18b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11798,d9ae4123-7bd0-4ca2-95be-694dd6ee18b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11799,d9ae4123-7bd0-4ca2-95be-694dd6ee18b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11800,5a88b3e5-96de-4191-92cb-eccdb230546d,LIST_ACCOUNTS,xs2aListAccounts,true -11801,5a88b3e5-96de-4191-92cb-eccdb230546d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11801,5a88b3e5-96de-4191-92cb-eccdb230546d,LIST_TRANSACTIONS,xs2aListTransactions,true 11802,5a88b3e5-96de-4191-92cb-eccdb230546d,AUTHORIZATION,,true 11803,5a88b3e5-96de-4191-92cb-eccdb230546d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11804,5a88b3e5-96de-4191-92cb-eccdb230546d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11805,5a88b3e5-96de-4191-92cb-eccdb230546d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11806,bc72098e-fcaa-431f-98b2-50818b8738b3,LIST_ACCOUNTS,hbciListAccounts,false -11807,bc72098e-fcaa-431f-98b2-50818b8738b3,LIST_TRANSACTIONS,hbciListTransactions,false -11808,bc72098e-fcaa-431f-98b2-50818b8738b3,AUTHORIZATION,,false -11809,bc72098e-fcaa-431f-98b2-50818b8738b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11810,bc72098e-fcaa-431f-98b2-50818b8738b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11811,bc72098e-fcaa-431f-98b2-50818b8738b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11806,36e8fed9-65b9-4924-8b86-c03a1d9c085d,LIST_ACCOUNTS,hbciListAccounts,false +11807,36e8fed9-65b9-4924-8b86-c03a1d9c085d,LIST_TRANSACTIONS,hbciListTransactions,false +11808,36e8fed9-65b9-4924-8b86-c03a1d9c085d,AUTHORIZATION,,false +11809,36e8fed9-65b9-4924-8b86-c03a1d9c085d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11810,36e8fed9-65b9-4924-8b86-c03a1d9c085d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11811,36e8fed9-65b9-4924-8b86-c03a1d9c085d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11812,4d9054e3-aa5c-4fa4-8b4b-8bbefb48f3d8,LIST_ACCOUNTS,xs2aListAccounts,true -11813,4d9054e3-aa5c-4fa4-8b4b-8bbefb48f3d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11813,4d9054e3-aa5c-4fa4-8b4b-8bbefb48f3d8,LIST_TRANSACTIONS,xs2aListTransactions,true 11814,4d9054e3-aa5c-4fa4-8b4b-8bbefb48f3d8,AUTHORIZATION,,true 11815,4d9054e3-aa5c-4fa4-8b4b-8bbefb48f3d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11816,4d9054e3-aa5c-4fa4-8b4b-8bbefb48f3d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11817,4d9054e3-aa5c-4fa4-8b4b-8bbefb48f3d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11818,f1702083-7457-4dc5-976a-029e8c62939c,LIST_ACCOUNTS,hbciListAccounts,false -11819,f1702083-7457-4dc5-976a-029e8c62939c,LIST_TRANSACTIONS,hbciListTransactions,false -11820,f1702083-7457-4dc5-976a-029e8c62939c,AUTHORIZATION,,false -11821,f1702083-7457-4dc5-976a-029e8c62939c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11822,f1702083-7457-4dc5-976a-029e8c62939c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11823,f1702083-7457-4dc5-976a-029e8c62939c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11818,572a2732-4ba1-47ad-8f79-78e3e6c7837f,LIST_ACCOUNTS,hbciListAccounts,false +11819,572a2732-4ba1-47ad-8f79-78e3e6c7837f,LIST_TRANSACTIONS,hbciListTransactions,false +11820,572a2732-4ba1-47ad-8f79-78e3e6c7837f,AUTHORIZATION,,false +11821,572a2732-4ba1-47ad-8f79-78e3e6c7837f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11822,572a2732-4ba1-47ad-8f79-78e3e6c7837f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11823,572a2732-4ba1-47ad-8f79-78e3e6c7837f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11824,476e9bdb-ef54-489f-b329-3b14fc79a41d,LIST_ACCOUNTS,xs2aListAccounts,true -11825,476e9bdb-ef54-489f-b329-3b14fc79a41d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11825,476e9bdb-ef54-489f-b329-3b14fc79a41d,LIST_TRANSACTIONS,xs2aListTransactions,true 11826,476e9bdb-ef54-489f-b329-3b14fc79a41d,AUTHORIZATION,,true 11827,476e9bdb-ef54-489f-b329-3b14fc79a41d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11828,476e9bdb-ef54-489f-b329-3b14fc79a41d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11829,476e9bdb-ef54-489f-b329-3b14fc79a41d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11830,984713bf-54ed-415c-a71f-4bdd4572392b,LIST_ACCOUNTS,hbciListAccounts,false -11831,984713bf-54ed-415c-a71f-4bdd4572392b,LIST_TRANSACTIONS,hbciListTransactions,false -11832,984713bf-54ed-415c-a71f-4bdd4572392b,AUTHORIZATION,,false -11833,984713bf-54ed-415c-a71f-4bdd4572392b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11834,984713bf-54ed-415c-a71f-4bdd4572392b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11835,984713bf-54ed-415c-a71f-4bdd4572392b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11830,a24e3dbf-f60e-4ffa-9037-c9b900280363,LIST_ACCOUNTS,hbciListAccounts,false +11831,a24e3dbf-f60e-4ffa-9037-c9b900280363,LIST_TRANSACTIONS,hbciListTransactions,false +11832,a24e3dbf-f60e-4ffa-9037-c9b900280363,AUTHORIZATION,,false +11833,a24e3dbf-f60e-4ffa-9037-c9b900280363,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11834,a24e3dbf-f60e-4ffa-9037-c9b900280363,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11835,a24e3dbf-f60e-4ffa-9037-c9b900280363,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11836,26c1fd41-21ca-4f03-beb5-e74bb5c29ea5,LIST_ACCOUNTS,xs2aListAccounts,true -11837,26c1fd41-21ca-4f03-beb5-e74bb5c29ea5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11837,26c1fd41-21ca-4f03-beb5-e74bb5c29ea5,LIST_TRANSACTIONS,xs2aListTransactions,true 11838,26c1fd41-21ca-4f03-beb5-e74bb5c29ea5,AUTHORIZATION,,true 11839,26c1fd41-21ca-4f03-beb5-e74bb5c29ea5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11840,26c1fd41-21ca-4f03-beb5-e74bb5c29ea5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11841,26c1fd41-21ca-4f03-beb5-e74bb5c29ea5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11842,e10ecf4e-3034-4981-b8ce-89cb6fff1ef4,LIST_ACCOUNTS,hbciListAccounts,false -11843,e10ecf4e-3034-4981-b8ce-89cb6fff1ef4,LIST_TRANSACTIONS,hbciListTransactions,false -11844,e10ecf4e-3034-4981-b8ce-89cb6fff1ef4,AUTHORIZATION,,false -11845,e10ecf4e-3034-4981-b8ce-89cb6fff1ef4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11846,e10ecf4e-3034-4981-b8ce-89cb6fff1ef4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11847,e10ecf4e-3034-4981-b8ce-89cb6fff1ef4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11842,cc859e9c-c067-4654-b0f9-7f7d9df989a5,LIST_ACCOUNTS,hbciListAccounts,false +11843,cc859e9c-c067-4654-b0f9-7f7d9df989a5,LIST_TRANSACTIONS,hbciListTransactions,false +11844,cc859e9c-c067-4654-b0f9-7f7d9df989a5,AUTHORIZATION,,false +11845,cc859e9c-c067-4654-b0f9-7f7d9df989a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11846,cc859e9c-c067-4654-b0f9-7f7d9df989a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11847,cc859e9c-c067-4654-b0f9-7f7d9df989a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11848,f9733fd0-27c1-4a96-9c3e-255611c91ff6,LIST_ACCOUNTS,xs2aListAccounts,true -11849,f9733fd0-27c1-4a96-9c3e-255611c91ff6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11849,f9733fd0-27c1-4a96-9c3e-255611c91ff6,LIST_TRANSACTIONS,xs2aListTransactions,true 11850,f9733fd0-27c1-4a96-9c3e-255611c91ff6,AUTHORIZATION,,true 11851,f9733fd0-27c1-4a96-9c3e-255611c91ff6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11852,f9733fd0-27c1-4a96-9c3e-255611c91ff6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11853,f9733fd0-27c1-4a96-9c3e-255611c91ff6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11854,c66d5f14-62df-4d73-b60f-77a686955a50,LIST_ACCOUNTS,hbciListAccounts,false -11855,c66d5f14-62df-4d73-b60f-77a686955a50,LIST_TRANSACTIONS,hbciListTransactions,false -11856,c66d5f14-62df-4d73-b60f-77a686955a50,AUTHORIZATION,,false -11857,c66d5f14-62df-4d73-b60f-77a686955a50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11858,c66d5f14-62df-4d73-b60f-77a686955a50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11859,c66d5f14-62df-4d73-b60f-77a686955a50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11854,4853ecdf-9f4c-4740-887c-92c4fa7a6fc8,LIST_ACCOUNTS,hbciListAccounts,false +11855,4853ecdf-9f4c-4740-887c-92c4fa7a6fc8,LIST_TRANSACTIONS,hbciListTransactions,false +11856,4853ecdf-9f4c-4740-887c-92c4fa7a6fc8,AUTHORIZATION,,false +11857,4853ecdf-9f4c-4740-887c-92c4fa7a6fc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11858,4853ecdf-9f4c-4740-887c-92c4fa7a6fc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11859,4853ecdf-9f4c-4740-887c-92c4fa7a6fc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11860,0a32936f-622f-4f47-ae1d-4fb42aff125f,LIST_ACCOUNTS,xs2aListAccounts,true -11861,0a32936f-622f-4f47-ae1d-4fb42aff125f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11861,0a32936f-622f-4f47-ae1d-4fb42aff125f,LIST_TRANSACTIONS,xs2aListTransactions,true 11862,0a32936f-622f-4f47-ae1d-4fb42aff125f,AUTHORIZATION,,true 11863,0a32936f-622f-4f47-ae1d-4fb42aff125f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11864,0a32936f-622f-4f47-ae1d-4fb42aff125f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11865,0a32936f-622f-4f47-ae1d-4fb42aff125f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11866,25014186-6118-4f72-a4a9-4fb6bbda4d46,LIST_ACCOUNTS,hbciListAccounts,false -11867,25014186-6118-4f72-a4a9-4fb6bbda4d46,LIST_TRANSACTIONS,hbciListTransactions,false -11868,25014186-6118-4f72-a4a9-4fb6bbda4d46,AUTHORIZATION,,false -11869,25014186-6118-4f72-a4a9-4fb6bbda4d46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11870,25014186-6118-4f72-a4a9-4fb6bbda4d46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11871,25014186-6118-4f72-a4a9-4fb6bbda4d46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11866,49625c57-72dd-4607-832d-163f7545a926,LIST_ACCOUNTS,hbciListAccounts,false +11867,49625c57-72dd-4607-832d-163f7545a926,LIST_TRANSACTIONS,hbciListTransactions,false +11868,49625c57-72dd-4607-832d-163f7545a926,AUTHORIZATION,,false +11869,49625c57-72dd-4607-832d-163f7545a926,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11870,49625c57-72dd-4607-832d-163f7545a926,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11871,49625c57-72dd-4607-832d-163f7545a926,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11872,f6946f3c-55e7-4132-9a8d-29a030676e95,LIST_ACCOUNTS,xs2aListAccounts,true -11873,f6946f3c-55e7-4132-9a8d-29a030676e95,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11873,f6946f3c-55e7-4132-9a8d-29a030676e95,LIST_TRANSACTIONS,xs2aListTransactions,true 11874,f6946f3c-55e7-4132-9a8d-29a030676e95,AUTHORIZATION,,true 11875,f6946f3c-55e7-4132-9a8d-29a030676e95,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11876,f6946f3c-55e7-4132-9a8d-29a030676e95,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11877,f6946f3c-55e7-4132-9a8d-29a030676e95,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11878,7554e417-3832-42c9-bb45-6f7436b1b52d,LIST_ACCOUNTS,hbciListAccounts,false -11879,7554e417-3832-42c9-bb45-6f7436b1b52d,LIST_TRANSACTIONS,hbciListTransactions,false -11880,7554e417-3832-42c9-bb45-6f7436b1b52d,AUTHORIZATION,,false -11881,7554e417-3832-42c9-bb45-6f7436b1b52d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11882,7554e417-3832-42c9-bb45-6f7436b1b52d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11883,7554e417-3832-42c9-bb45-6f7436b1b52d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11878,066964dd-11a7-4222-9fea-c2082fb2f4f2,LIST_ACCOUNTS,hbciListAccounts,false +11879,066964dd-11a7-4222-9fea-c2082fb2f4f2,LIST_TRANSACTIONS,hbciListTransactions,false +11880,066964dd-11a7-4222-9fea-c2082fb2f4f2,AUTHORIZATION,,false +11881,066964dd-11a7-4222-9fea-c2082fb2f4f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11882,066964dd-11a7-4222-9fea-c2082fb2f4f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11883,066964dd-11a7-4222-9fea-c2082fb2f4f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11884,490735e9-cc59-4621-aaec-ca5d3443b212,LIST_ACCOUNTS,xs2aListAccounts,true -11885,490735e9-cc59-4621-aaec-ca5d3443b212,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11885,490735e9-cc59-4621-aaec-ca5d3443b212,LIST_TRANSACTIONS,xs2aListTransactions,true 11886,490735e9-cc59-4621-aaec-ca5d3443b212,AUTHORIZATION,,true 11887,490735e9-cc59-4621-aaec-ca5d3443b212,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11888,490735e9-cc59-4621-aaec-ca5d3443b212,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11889,490735e9-cc59-4621-aaec-ca5d3443b212,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11890,aaeb718b-9b56-49ce-bb60-0dcd71accfda,LIST_ACCOUNTS,hbciListAccounts,false -11891,aaeb718b-9b56-49ce-bb60-0dcd71accfda,LIST_TRANSACTIONS,hbciListTransactions,false -11892,aaeb718b-9b56-49ce-bb60-0dcd71accfda,AUTHORIZATION,,false -11893,aaeb718b-9b56-49ce-bb60-0dcd71accfda,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11894,aaeb718b-9b56-49ce-bb60-0dcd71accfda,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11895,aaeb718b-9b56-49ce-bb60-0dcd71accfda,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11890,3e59a4b4-b6f2-41f9-ac0b-ecc0fc09edd8,LIST_ACCOUNTS,hbciListAccounts,false +11891,3e59a4b4-b6f2-41f9-ac0b-ecc0fc09edd8,LIST_TRANSACTIONS,hbciListTransactions,false +11892,3e59a4b4-b6f2-41f9-ac0b-ecc0fc09edd8,AUTHORIZATION,,false +11893,3e59a4b4-b6f2-41f9-ac0b-ecc0fc09edd8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11894,3e59a4b4-b6f2-41f9-ac0b-ecc0fc09edd8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11895,3e59a4b4-b6f2-41f9-ac0b-ecc0fc09edd8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11896,d29e72b1-c145-4021-826a-b683f72f74f9,LIST_ACCOUNTS,xs2aListAccounts,true -11897,d29e72b1-c145-4021-826a-b683f72f74f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11897,d29e72b1-c145-4021-826a-b683f72f74f9,LIST_TRANSACTIONS,xs2aListTransactions,true 11898,d29e72b1-c145-4021-826a-b683f72f74f9,AUTHORIZATION,,true 11899,d29e72b1-c145-4021-826a-b683f72f74f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11900,d29e72b1-c145-4021-826a-b683f72f74f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11901,d29e72b1-c145-4021-826a-b683f72f74f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11902,ecb6b0e3-3ee1-4ad3-8972-79da6ad8335d,LIST_ACCOUNTS,hbciListAccounts,false -11903,ecb6b0e3-3ee1-4ad3-8972-79da6ad8335d,LIST_TRANSACTIONS,hbciListTransactions,false -11904,ecb6b0e3-3ee1-4ad3-8972-79da6ad8335d,AUTHORIZATION,,false -11905,ecb6b0e3-3ee1-4ad3-8972-79da6ad8335d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11906,ecb6b0e3-3ee1-4ad3-8972-79da6ad8335d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11907,ecb6b0e3-3ee1-4ad3-8972-79da6ad8335d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11902,27f0774c-c8c4-44fd-8e38-f6a527136fba,LIST_ACCOUNTS,hbciListAccounts,false +11903,27f0774c-c8c4-44fd-8e38-f6a527136fba,LIST_TRANSACTIONS,hbciListTransactions,false +11904,27f0774c-c8c4-44fd-8e38-f6a527136fba,AUTHORIZATION,,false +11905,27f0774c-c8c4-44fd-8e38-f6a527136fba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11906,27f0774c-c8c4-44fd-8e38-f6a527136fba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11907,27f0774c-c8c4-44fd-8e38-f6a527136fba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11908,7897e23f-6770-4d6b-b51b-82b40db5c9d4,LIST_ACCOUNTS,xs2aListAccounts,true -11909,7897e23f-6770-4d6b-b51b-82b40db5c9d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11909,7897e23f-6770-4d6b-b51b-82b40db5c9d4,LIST_TRANSACTIONS,xs2aListTransactions,true 11910,7897e23f-6770-4d6b-b51b-82b40db5c9d4,AUTHORIZATION,,true 11911,7897e23f-6770-4d6b-b51b-82b40db5c9d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11912,7897e23f-6770-4d6b-b51b-82b40db5c9d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11913,7897e23f-6770-4d6b-b51b-82b40db5c9d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11914,1c419998-2493-4c0b-b174-fc20051ca38d,LIST_ACCOUNTS,hbciListAccounts,false -11915,1c419998-2493-4c0b-b174-fc20051ca38d,LIST_TRANSACTIONS,hbciListTransactions,false -11916,1c419998-2493-4c0b-b174-fc20051ca38d,AUTHORIZATION,,false -11917,1c419998-2493-4c0b-b174-fc20051ca38d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11918,1c419998-2493-4c0b-b174-fc20051ca38d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11919,1c419998-2493-4c0b-b174-fc20051ca38d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11914,c96414f5-7d5a-47ce-ba3a-2ceec7e0bc42,LIST_ACCOUNTS,hbciListAccounts,false +11915,c96414f5-7d5a-47ce-ba3a-2ceec7e0bc42,LIST_TRANSACTIONS,hbciListTransactions,false +11916,c96414f5-7d5a-47ce-ba3a-2ceec7e0bc42,AUTHORIZATION,,false +11917,c96414f5-7d5a-47ce-ba3a-2ceec7e0bc42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11918,c96414f5-7d5a-47ce-ba3a-2ceec7e0bc42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11919,c96414f5-7d5a-47ce-ba3a-2ceec7e0bc42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11920,2e95ff45-79c8-4084-82d0-5cb4d9070587,LIST_ACCOUNTS,xs2aListAccounts,true -11921,2e95ff45-79c8-4084-82d0-5cb4d9070587,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11921,2e95ff45-79c8-4084-82d0-5cb4d9070587,LIST_TRANSACTIONS,xs2aListTransactions,true 11922,2e95ff45-79c8-4084-82d0-5cb4d9070587,AUTHORIZATION,,true 11923,2e95ff45-79c8-4084-82d0-5cb4d9070587,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11924,2e95ff45-79c8-4084-82d0-5cb4d9070587,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11925,2e95ff45-79c8-4084-82d0-5cb4d9070587,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11926,d763b078-8c24-4bcf-b397-3e7cdaa269e2,LIST_ACCOUNTS,hbciListAccounts,false -11927,d763b078-8c24-4bcf-b397-3e7cdaa269e2,LIST_TRANSACTIONS,hbciListTransactions,false -11928,d763b078-8c24-4bcf-b397-3e7cdaa269e2,AUTHORIZATION,,false -11929,d763b078-8c24-4bcf-b397-3e7cdaa269e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11930,d763b078-8c24-4bcf-b397-3e7cdaa269e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11931,d763b078-8c24-4bcf-b397-3e7cdaa269e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11926,3e5ec343-2fac-4221-b9f4-ea9c04e315f5,LIST_ACCOUNTS,hbciListAccounts,false +11927,3e5ec343-2fac-4221-b9f4-ea9c04e315f5,LIST_TRANSACTIONS,hbciListTransactions,false +11928,3e5ec343-2fac-4221-b9f4-ea9c04e315f5,AUTHORIZATION,,false +11929,3e5ec343-2fac-4221-b9f4-ea9c04e315f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11930,3e5ec343-2fac-4221-b9f4-ea9c04e315f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11931,3e5ec343-2fac-4221-b9f4-ea9c04e315f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11932,96040dc8-6398-4856-bb1c-4d089bc5e32f,LIST_ACCOUNTS,xs2aListAccounts,true -11933,96040dc8-6398-4856-bb1c-4d089bc5e32f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11933,96040dc8-6398-4856-bb1c-4d089bc5e32f,LIST_TRANSACTIONS,xs2aListTransactions,true 11934,96040dc8-6398-4856-bb1c-4d089bc5e32f,AUTHORIZATION,,true 11935,96040dc8-6398-4856-bb1c-4d089bc5e32f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11936,96040dc8-6398-4856-bb1c-4d089bc5e32f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11937,96040dc8-6398-4856-bb1c-4d089bc5e32f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11938,9efc0946-f0b3-459c-b2f4-4a1e2ed70e0e,LIST_ACCOUNTS,hbciListAccounts,false -11939,9efc0946-f0b3-459c-b2f4-4a1e2ed70e0e,LIST_TRANSACTIONS,hbciListTransactions,false -11940,9efc0946-f0b3-459c-b2f4-4a1e2ed70e0e,AUTHORIZATION,,false -11941,9efc0946-f0b3-459c-b2f4-4a1e2ed70e0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11942,9efc0946-f0b3-459c-b2f4-4a1e2ed70e0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11943,9efc0946-f0b3-459c-b2f4-4a1e2ed70e0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11938,238b8d12-9fc2-465c-9730-ab0c1ad8a6b6,LIST_ACCOUNTS,hbciListAccounts,false +11939,238b8d12-9fc2-465c-9730-ab0c1ad8a6b6,LIST_TRANSACTIONS,hbciListTransactions,false +11940,238b8d12-9fc2-465c-9730-ab0c1ad8a6b6,AUTHORIZATION,,false +11941,238b8d12-9fc2-465c-9730-ab0c1ad8a6b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11942,238b8d12-9fc2-465c-9730-ab0c1ad8a6b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11943,238b8d12-9fc2-465c-9730-ab0c1ad8a6b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11944,b1463439-67e9-474a-802d-bb83db5cfef4,LIST_ACCOUNTS,xs2aListAccounts,true -11945,b1463439-67e9-474a-802d-bb83db5cfef4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11945,b1463439-67e9-474a-802d-bb83db5cfef4,LIST_TRANSACTIONS,xs2aListTransactions,true 11946,b1463439-67e9-474a-802d-bb83db5cfef4,AUTHORIZATION,,true 11947,b1463439-67e9-474a-802d-bb83db5cfef4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11948,b1463439-67e9-474a-802d-bb83db5cfef4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11949,b1463439-67e9-474a-802d-bb83db5cfef4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11950,5ab15074-a3fe-4ac3-b1cd-6d9fa1900590,LIST_ACCOUNTS,hbciListAccounts,false -11951,5ab15074-a3fe-4ac3-b1cd-6d9fa1900590,LIST_TRANSACTIONS,hbciListTransactions,false -11952,5ab15074-a3fe-4ac3-b1cd-6d9fa1900590,AUTHORIZATION,,false -11953,5ab15074-a3fe-4ac3-b1cd-6d9fa1900590,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11954,5ab15074-a3fe-4ac3-b1cd-6d9fa1900590,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11955,5ab15074-a3fe-4ac3-b1cd-6d9fa1900590,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11950,0bd5af6f-f4fb-4d48-b958-8323c49eaf8f,LIST_ACCOUNTS,hbciListAccounts,false +11951,0bd5af6f-f4fb-4d48-b958-8323c49eaf8f,LIST_TRANSACTIONS,hbciListTransactions,false +11952,0bd5af6f-f4fb-4d48-b958-8323c49eaf8f,AUTHORIZATION,,false +11953,0bd5af6f-f4fb-4d48-b958-8323c49eaf8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11954,0bd5af6f-f4fb-4d48-b958-8323c49eaf8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11955,0bd5af6f-f4fb-4d48-b958-8323c49eaf8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11956,212824c2-0b4a-4aa3-820d-2623712a35a9,LIST_ACCOUNTS,xs2aListAccounts,true -11957,212824c2-0b4a-4aa3-820d-2623712a35a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11957,212824c2-0b4a-4aa3-820d-2623712a35a9,LIST_TRANSACTIONS,xs2aListTransactions,true 11958,212824c2-0b4a-4aa3-820d-2623712a35a9,AUTHORIZATION,,true 11959,212824c2-0b4a-4aa3-820d-2623712a35a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11960,212824c2-0b4a-4aa3-820d-2623712a35a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11961,212824c2-0b4a-4aa3-820d-2623712a35a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11962,f4194af8-1199-4ce5-b73d-2d3184333fe1,LIST_ACCOUNTS,hbciListAccounts,false -11963,f4194af8-1199-4ce5-b73d-2d3184333fe1,LIST_TRANSACTIONS,hbciListTransactions,false -11964,f4194af8-1199-4ce5-b73d-2d3184333fe1,AUTHORIZATION,,false -11965,f4194af8-1199-4ce5-b73d-2d3184333fe1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11966,f4194af8-1199-4ce5-b73d-2d3184333fe1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11967,f4194af8-1199-4ce5-b73d-2d3184333fe1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11962,2a8641a3-d881-4f6b-9271-bd1e42619c6f,LIST_ACCOUNTS,hbciListAccounts,false +11963,2a8641a3-d881-4f6b-9271-bd1e42619c6f,LIST_TRANSACTIONS,hbciListTransactions,false +11964,2a8641a3-d881-4f6b-9271-bd1e42619c6f,AUTHORIZATION,,false +11965,2a8641a3-d881-4f6b-9271-bd1e42619c6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11966,2a8641a3-d881-4f6b-9271-bd1e42619c6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11967,2a8641a3-d881-4f6b-9271-bd1e42619c6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11968,ceb92e54-5951-4d2f-9bf9-d2d87a1a1ccc,LIST_ACCOUNTS,xs2aListAccounts,true -11969,ceb92e54-5951-4d2f-9bf9-d2d87a1a1ccc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11969,ceb92e54-5951-4d2f-9bf9-d2d87a1a1ccc,LIST_TRANSACTIONS,xs2aListTransactions,true 11970,ceb92e54-5951-4d2f-9bf9-d2d87a1a1ccc,AUTHORIZATION,,true 11971,ceb92e54-5951-4d2f-9bf9-d2d87a1a1ccc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11972,ceb92e54-5951-4d2f-9bf9-d2d87a1a1ccc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11973,ceb92e54-5951-4d2f-9bf9-d2d87a1a1ccc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11974,dbaec203-b8c1-452c-9975-a9cea85bc4ee,LIST_ACCOUNTS,hbciListAccounts,false -11975,dbaec203-b8c1-452c-9975-a9cea85bc4ee,LIST_TRANSACTIONS,hbciListTransactions,false -11976,dbaec203-b8c1-452c-9975-a9cea85bc4ee,AUTHORIZATION,,false -11977,dbaec203-b8c1-452c-9975-a9cea85bc4ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11978,dbaec203-b8c1-452c-9975-a9cea85bc4ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11979,dbaec203-b8c1-452c-9975-a9cea85bc4ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11974,5e81df5b-f74d-48e2-aaba-4d80ec04e0ca,LIST_ACCOUNTS,hbciListAccounts,false +11975,5e81df5b-f74d-48e2-aaba-4d80ec04e0ca,LIST_TRANSACTIONS,hbciListTransactions,false +11976,5e81df5b-f74d-48e2-aaba-4d80ec04e0ca,AUTHORIZATION,,false +11977,5e81df5b-f74d-48e2-aaba-4d80ec04e0ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11978,5e81df5b-f74d-48e2-aaba-4d80ec04e0ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11979,5e81df5b-f74d-48e2-aaba-4d80ec04e0ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11980,45f31515-ad3d-4a54-b9a7-84bccc3c9735,LIST_ACCOUNTS,xs2aListAccounts,true -11981,45f31515-ad3d-4a54-b9a7-84bccc3c9735,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11981,45f31515-ad3d-4a54-b9a7-84bccc3c9735,LIST_TRANSACTIONS,xs2aListTransactions,true 11982,45f31515-ad3d-4a54-b9a7-84bccc3c9735,AUTHORIZATION,,true 11983,45f31515-ad3d-4a54-b9a7-84bccc3c9735,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11984,45f31515-ad3d-4a54-b9a7-84bccc3c9735,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11985,45f31515-ad3d-4a54-b9a7-84bccc3c9735,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11986,6cb36b07-ab07-4193-a48c-394a9fd365d7,LIST_ACCOUNTS,hbciListAccounts,false -11987,6cb36b07-ab07-4193-a48c-394a9fd365d7,LIST_TRANSACTIONS,hbciListTransactions,false -11988,6cb36b07-ab07-4193-a48c-394a9fd365d7,AUTHORIZATION,,false -11989,6cb36b07-ab07-4193-a48c-394a9fd365d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -11990,6cb36b07-ab07-4193-a48c-394a9fd365d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -11991,6cb36b07-ab07-4193-a48c-394a9fd365d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11986,146e84bc-9cac-48af-a1cf-c8becf6a78cd,LIST_ACCOUNTS,hbciListAccounts,false +11987,146e84bc-9cac-48af-a1cf-c8becf6a78cd,LIST_TRANSACTIONS,hbciListTransactions,false +11988,146e84bc-9cac-48af-a1cf-c8becf6a78cd,AUTHORIZATION,,false +11989,146e84bc-9cac-48af-a1cf-c8becf6a78cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +11990,146e84bc-9cac-48af-a1cf-c8becf6a78cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +11991,146e84bc-9cac-48af-a1cf-c8becf6a78cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 11992,88544a23-906d-4fe1-bc9e-d5ee4ed8fe5b,LIST_ACCOUNTS,xs2aListAccounts,true -11993,88544a23-906d-4fe1-bc9e-d5ee4ed8fe5b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +11993,88544a23-906d-4fe1-bc9e-d5ee4ed8fe5b,LIST_TRANSACTIONS,xs2aListTransactions,true 11994,88544a23-906d-4fe1-bc9e-d5ee4ed8fe5b,AUTHORIZATION,,true 11995,88544a23-906d-4fe1-bc9e-d5ee4ed8fe5b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 11996,88544a23-906d-4fe1-bc9e-d5ee4ed8fe5b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 11997,88544a23-906d-4fe1-bc9e-d5ee4ed8fe5b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -11998,9f3c90b6-ab65-422e-a104-db9314c10789,LIST_ACCOUNTS,hbciListAccounts,false -11999,9f3c90b6-ab65-422e-a104-db9314c10789,LIST_TRANSACTIONS,hbciListTransactions,false -12000,9f3c90b6-ab65-422e-a104-db9314c10789,AUTHORIZATION,,false -12001,9f3c90b6-ab65-422e-a104-db9314c10789,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12002,9f3c90b6-ab65-422e-a104-db9314c10789,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12003,9f3c90b6-ab65-422e-a104-db9314c10789,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +11998,d8d6356a-9583-4c3d-95db-e1b3274544e1,LIST_ACCOUNTS,hbciListAccounts,false +11999,d8d6356a-9583-4c3d-95db-e1b3274544e1,LIST_TRANSACTIONS,hbciListTransactions,false +12000,d8d6356a-9583-4c3d-95db-e1b3274544e1,AUTHORIZATION,,false +12001,d8d6356a-9583-4c3d-95db-e1b3274544e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12002,d8d6356a-9583-4c3d-95db-e1b3274544e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12003,d8d6356a-9583-4c3d-95db-e1b3274544e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12004,5b9ac724-ab70-4abb-bb43-314ed9c85dc4,LIST_ACCOUNTS,xs2aListAccounts,true -12005,5b9ac724-ab70-4abb-bb43-314ed9c85dc4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12005,5b9ac724-ab70-4abb-bb43-314ed9c85dc4,LIST_TRANSACTIONS,xs2aListTransactions,true 12006,5b9ac724-ab70-4abb-bb43-314ed9c85dc4,AUTHORIZATION,,true 12007,5b9ac724-ab70-4abb-bb43-314ed9c85dc4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12008,5b9ac724-ab70-4abb-bb43-314ed9c85dc4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12009,5b9ac724-ab70-4abb-bb43-314ed9c85dc4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12010,c014d8e6-9c85-45d4-be01-0c6039a68de2,LIST_ACCOUNTS,hbciListAccounts,false -12011,c014d8e6-9c85-45d4-be01-0c6039a68de2,LIST_TRANSACTIONS,hbciListTransactions,false -12012,c014d8e6-9c85-45d4-be01-0c6039a68de2,AUTHORIZATION,,false -12013,c014d8e6-9c85-45d4-be01-0c6039a68de2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12014,c014d8e6-9c85-45d4-be01-0c6039a68de2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12015,c014d8e6-9c85-45d4-be01-0c6039a68de2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12010,bafb9cbb-3359-4bd6-a936-b6b6abf5024d,LIST_ACCOUNTS,hbciListAccounts,false +12011,bafb9cbb-3359-4bd6-a936-b6b6abf5024d,LIST_TRANSACTIONS,hbciListTransactions,false +12012,bafb9cbb-3359-4bd6-a936-b6b6abf5024d,AUTHORIZATION,,false +12013,bafb9cbb-3359-4bd6-a936-b6b6abf5024d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12014,bafb9cbb-3359-4bd6-a936-b6b6abf5024d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12015,bafb9cbb-3359-4bd6-a936-b6b6abf5024d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12016,75d706e0-c96b-460c-bdc8-0bac65c493fe,LIST_ACCOUNTS,xs2aListAccounts,true -12017,75d706e0-c96b-460c-bdc8-0bac65c493fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12017,75d706e0-c96b-460c-bdc8-0bac65c493fe,LIST_TRANSACTIONS,xs2aListTransactions,true 12018,75d706e0-c96b-460c-bdc8-0bac65c493fe,AUTHORIZATION,,true 12019,75d706e0-c96b-460c-bdc8-0bac65c493fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12020,75d706e0-c96b-460c-bdc8-0bac65c493fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12021,75d706e0-c96b-460c-bdc8-0bac65c493fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12022,f89d1c2b-f76e-488a-9a6d-2c27ff657af3,LIST_ACCOUNTS,hbciListAccounts,false -12023,f89d1c2b-f76e-488a-9a6d-2c27ff657af3,LIST_TRANSACTIONS,hbciListTransactions,false -12024,f89d1c2b-f76e-488a-9a6d-2c27ff657af3,AUTHORIZATION,,false -12025,f89d1c2b-f76e-488a-9a6d-2c27ff657af3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12026,f89d1c2b-f76e-488a-9a6d-2c27ff657af3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12027,f89d1c2b-f76e-488a-9a6d-2c27ff657af3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12022,11b3a496-d2a7-4fab-8585-06ca96fd5281,LIST_ACCOUNTS,hbciListAccounts,false +12023,11b3a496-d2a7-4fab-8585-06ca96fd5281,LIST_TRANSACTIONS,hbciListTransactions,false +12024,11b3a496-d2a7-4fab-8585-06ca96fd5281,AUTHORIZATION,,false +12025,11b3a496-d2a7-4fab-8585-06ca96fd5281,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12026,11b3a496-d2a7-4fab-8585-06ca96fd5281,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12027,11b3a496-d2a7-4fab-8585-06ca96fd5281,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12028,90cf3354-1f3a-49f3-8452-b7a423c5203d,LIST_ACCOUNTS,xs2aListAccounts,true -12029,90cf3354-1f3a-49f3-8452-b7a423c5203d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12029,90cf3354-1f3a-49f3-8452-b7a423c5203d,LIST_TRANSACTIONS,xs2aListTransactions,true 12030,90cf3354-1f3a-49f3-8452-b7a423c5203d,AUTHORIZATION,,true 12031,90cf3354-1f3a-49f3-8452-b7a423c5203d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12032,90cf3354-1f3a-49f3-8452-b7a423c5203d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12033,90cf3354-1f3a-49f3-8452-b7a423c5203d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12034,e8e19e5a-e526-4d84-9adf-a3917ca272bf,LIST_ACCOUNTS,hbciListAccounts,false -12035,e8e19e5a-e526-4d84-9adf-a3917ca272bf,LIST_TRANSACTIONS,hbciListTransactions,false -12036,e8e19e5a-e526-4d84-9adf-a3917ca272bf,AUTHORIZATION,,false -12037,e8e19e5a-e526-4d84-9adf-a3917ca272bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12038,e8e19e5a-e526-4d84-9adf-a3917ca272bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12039,e8e19e5a-e526-4d84-9adf-a3917ca272bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12034,0c1dd990-7508-47d9-922e-0f891d1ea9b9,LIST_ACCOUNTS,hbciListAccounts,false +12035,0c1dd990-7508-47d9-922e-0f891d1ea9b9,LIST_TRANSACTIONS,hbciListTransactions,false +12036,0c1dd990-7508-47d9-922e-0f891d1ea9b9,AUTHORIZATION,,false +12037,0c1dd990-7508-47d9-922e-0f891d1ea9b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12038,0c1dd990-7508-47d9-922e-0f891d1ea9b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12039,0c1dd990-7508-47d9-922e-0f891d1ea9b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12040,9c834e2c-e41f-42f7-9c79-e4cee28a9efc,LIST_ACCOUNTS,xs2aListAccounts,true -12041,9c834e2c-e41f-42f7-9c79-e4cee28a9efc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12041,9c834e2c-e41f-42f7-9c79-e4cee28a9efc,LIST_TRANSACTIONS,xs2aListTransactions,true 12042,9c834e2c-e41f-42f7-9c79-e4cee28a9efc,AUTHORIZATION,,true 12043,9c834e2c-e41f-42f7-9c79-e4cee28a9efc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12044,9c834e2c-e41f-42f7-9c79-e4cee28a9efc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12045,9c834e2c-e41f-42f7-9c79-e4cee28a9efc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12046,bdfaa257-106b-41d3-b6ef-1f9c49925531,LIST_ACCOUNTS,hbciListAccounts,false -12047,bdfaa257-106b-41d3-b6ef-1f9c49925531,LIST_TRANSACTIONS,hbciListTransactions,false -12048,bdfaa257-106b-41d3-b6ef-1f9c49925531,AUTHORIZATION,,false -12049,bdfaa257-106b-41d3-b6ef-1f9c49925531,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12050,bdfaa257-106b-41d3-b6ef-1f9c49925531,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12051,bdfaa257-106b-41d3-b6ef-1f9c49925531,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12046,563ea862-cbe5-4d97-8be8-f5fa2cf9100a,LIST_ACCOUNTS,hbciListAccounts,false +12047,563ea862-cbe5-4d97-8be8-f5fa2cf9100a,LIST_TRANSACTIONS,hbciListTransactions,false +12048,563ea862-cbe5-4d97-8be8-f5fa2cf9100a,AUTHORIZATION,,false +12049,563ea862-cbe5-4d97-8be8-f5fa2cf9100a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12050,563ea862-cbe5-4d97-8be8-f5fa2cf9100a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12051,563ea862-cbe5-4d97-8be8-f5fa2cf9100a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12052,bf599191-cbeb-4721-b974-6749e3b494e6,LIST_ACCOUNTS,xs2aListAccounts,true -12053,bf599191-cbeb-4721-b974-6749e3b494e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12053,bf599191-cbeb-4721-b974-6749e3b494e6,LIST_TRANSACTIONS,xs2aListTransactions,true 12054,bf599191-cbeb-4721-b974-6749e3b494e6,AUTHORIZATION,,true 12055,bf599191-cbeb-4721-b974-6749e3b494e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12056,bf599191-cbeb-4721-b974-6749e3b494e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12057,bf599191-cbeb-4721-b974-6749e3b494e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12058,631be2ab-dc16-429c-8863-b8b1667fb023,LIST_ACCOUNTS,hbciListAccounts,false -12059,631be2ab-dc16-429c-8863-b8b1667fb023,LIST_TRANSACTIONS,hbciListTransactions,false -12060,631be2ab-dc16-429c-8863-b8b1667fb023,AUTHORIZATION,,false -12061,631be2ab-dc16-429c-8863-b8b1667fb023,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12062,631be2ab-dc16-429c-8863-b8b1667fb023,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12063,631be2ab-dc16-429c-8863-b8b1667fb023,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12058,d10fc770-feeb-4e57-8aa2-3a5f973f9e8e,LIST_ACCOUNTS,hbciListAccounts,false +12059,d10fc770-feeb-4e57-8aa2-3a5f973f9e8e,LIST_TRANSACTIONS,hbciListTransactions,false +12060,d10fc770-feeb-4e57-8aa2-3a5f973f9e8e,AUTHORIZATION,,false +12061,d10fc770-feeb-4e57-8aa2-3a5f973f9e8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12062,d10fc770-feeb-4e57-8aa2-3a5f973f9e8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12063,d10fc770-feeb-4e57-8aa2-3a5f973f9e8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12064,92e073b4-91f1-4184-8dda-322d999268a0,LIST_ACCOUNTS,xs2aListAccounts,true -12065,92e073b4-91f1-4184-8dda-322d999268a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12065,92e073b4-91f1-4184-8dda-322d999268a0,LIST_TRANSACTIONS,xs2aListTransactions,true 12066,92e073b4-91f1-4184-8dda-322d999268a0,AUTHORIZATION,,true 12067,92e073b4-91f1-4184-8dda-322d999268a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12068,92e073b4-91f1-4184-8dda-322d999268a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12069,92e073b4-91f1-4184-8dda-322d999268a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12070,b8f252cb-4563-46f0-9cfe-cca612841f82,LIST_ACCOUNTS,hbciListAccounts,false -12071,b8f252cb-4563-46f0-9cfe-cca612841f82,LIST_TRANSACTIONS,hbciListTransactions,false -12072,b8f252cb-4563-46f0-9cfe-cca612841f82,AUTHORIZATION,,false -12073,b8f252cb-4563-46f0-9cfe-cca612841f82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12074,b8f252cb-4563-46f0-9cfe-cca612841f82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12075,b8f252cb-4563-46f0-9cfe-cca612841f82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12070,261e339a-05a3-4015-87c0-272f2d15e28d,LIST_ACCOUNTS,hbciListAccounts,false +12071,261e339a-05a3-4015-87c0-272f2d15e28d,LIST_TRANSACTIONS,hbciListTransactions,false +12072,261e339a-05a3-4015-87c0-272f2d15e28d,AUTHORIZATION,,false +12073,261e339a-05a3-4015-87c0-272f2d15e28d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12074,261e339a-05a3-4015-87c0-272f2d15e28d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12075,261e339a-05a3-4015-87c0-272f2d15e28d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12076,a184ac01-56d6-44df-ba0f-42b90526ec27,LIST_ACCOUNTS,xs2aListAccounts,true -12077,a184ac01-56d6-44df-ba0f-42b90526ec27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12077,a184ac01-56d6-44df-ba0f-42b90526ec27,LIST_TRANSACTIONS,xs2aListTransactions,true 12078,a184ac01-56d6-44df-ba0f-42b90526ec27,AUTHORIZATION,,true 12079,a184ac01-56d6-44df-ba0f-42b90526ec27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12080,a184ac01-56d6-44df-ba0f-42b90526ec27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12081,a184ac01-56d6-44df-ba0f-42b90526ec27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12082,1632dfec-181d-4bc8-b637-24240ac879cb,LIST_ACCOUNTS,hbciListAccounts,false -12083,1632dfec-181d-4bc8-b637-24240ac879cb,LIST_TRANSACTIONS,hbciListTransactions,false -12084,1632dfec-181d-4bc8-b637-24240ac879cb,AUTHORIZATION,,false -12085,1632dfec-181d-4bc8-b637-24240ac879cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12086,1632dfec-181d-4bc8-b637-24240ac879cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12087,1632dfec-181d-4bc8-b637-24240ac879cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12082,3af39c92-0eaa-48eb-ae4d-5caeb46846d5,LIST_ACCOUNTS,hbciListAccounts,false +12083,3af39c92-0eaa-48eb-ae4d-5caeb46846d5,LIST_TRANSACTIONS,hbciListTransactions,false +12084,3af39c92-0eaa-48eb-ae4d-5caeb46846d5,AUTHORIZATION,,false +12085,3af39c92-0eaa-48eb-ae4d-5caeb46846d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12086,3af39c92-0eaa-48eb-ae4d-5caeb46846d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12087,3af39c92-0eaa-48eb-ae4d-5caeb46846d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12088,ea088ddf-d86b-44f2-9a06-a1ee9acf7787,LIST_ACCOUNTS,xs2aListAccounts,true -12089,ea088ddf-d86b-44f2-9a06-a1ee9acf7787,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12089,ea088ddf-d86b-44f2-9a06-a1ee9acf7787,LIST_TRANSACTIONS,xs2aListTransactions,true 12090,ea088ddf-d86b-44f2-9a06-a1ee9acf7787,AUTHORIZATION,,true 12091,ea088ddf-d86b-44f2-9a06-a1ee9acf7787,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12092,ea088ddf-d86b-44f2-9a06-a1ee9acf7787,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12093,ea088ddf-d86b-44f2-9a06-a1ee9acf7787,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12094,3212459f-a6fe-49bd-bd83-a9741c3653e6,LIST_ACCOUNTS,hbciListAccounts,false -12095,3212459f-a6fe-49bd-bd83-a9741c3653e6,LIST_TRANSACTIONS,hbciListTransactions,false -12096,3212459f-a6fe-49bd-bd83-a9741c3653e6,AUTHORIZATION,,false -12097,3212459f-a6fe-49bd-bd83-a9741c3653e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12098,3212459f-a6fe-49bd-bd83-a9741c3653e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12099,3212459f-a6fe-49bd-bd83-a9741c3653e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12094,615a17e9-7e6a-45a8-8e6f-c97593dd74d4,LIST_ACCOUNTS,hbciListAccounts,false +12095,615a17e9-7e6a-45a8-8e6f-c97593dd74d4,LIST_TRANSACTIONS,hbciListTransactions,false +12096,615a17e9-7e6a-45a8-8e6f-c97593dd74d4,AUTHORIZATION,,false +12097,615a17e9-7e6a-45a8-8e6f-c97593dd74d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12098,615a17e9-7e6a-45a8-8e6f-c97593dd74d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12099,615a17e9-7e6a-45a8-8e6f-c97593dd74d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12100,d3e3b8ce-532c-48af-9311-aab29b43a2eb,LIST_ACCOUNTS,xs2aListAccounts,true -12101,d3e3b8ce-532c-48af-9311-aab29b43a2eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12101,d3e3b8ce-532c-48af-9311-aab29b43a2eb,LIST_TRANSACTIONS,xs2aListTransactions,true 12102,d3e3b8ce-532c-48af-9311-aab29b43a2eb,AUTHORIZATION,,true 12103,d3e3b8ce-532c-48af-9311-aab29b43a2eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12104,d3e3b8ce-532c-48af-9311-aab29b43a2eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12105,d3e3b8ce-532c-48af-9311-aab29b43a2eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12106,58c608e2-0c55-42c6-bcbf-e0e05d040207,LIST_ACCOUNTS,hbciListAccounts,false -12107,58c608e2-0c55-42c6-bcbf-e0e05d040207,LIST_TRANSACTIONS,hbciListTransactions,false -12108,58c608e2-0c55-42c6-bcbf-e0e05d040207,AUTHORIZATION,,false -12109,58c608e2-0c55-42c6-bcbf-e0e05d040207,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12110,58c608e2-0c55-42c6-bcbf-e0e05d040207,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12111,58c608e2-0c55-42c6-bcbf-e0e05d040207,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12106,015d0f86-d7c5-412b-87aa-f786b251c506,LIST_ACCOUNTS,hbciListAccounts,false +12107,015d0f86-d7c5-412b-87aa-f786b251c506,LIST_TRANSACTIONS,hbciListTransactions,false +12108,015d0f86-d7c5-412b-87aa-f786b251c506,AUTHORIZATION,,false +12109,015d0f86-d7c5-412b-87aa-f786b251c506,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12110,015d0f86-d7c5-412b-87aa-f786b251c506,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12111,015d0f86-d7c5-412b-87aa-f786b251c506,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12112,a7f1d462-568d-4692-9267-9c5b48334e44,LIST_ACCOUNTS,xs2aListAccounts,true -12113,a7f1d462-568d-4692-9267-9c5b48334e44,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12113,a7f1d462-568d-4692-9267-9c5b48334e44,LIST_TRANSACTIONS,xs2aListTransactions,true 12114,a7f1d462-568d-4692-9267-9c5b48334e44,AUTHORIZATION,,true 12115,a7f1d462-568d-4692-9267-9c5b48334e44,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12116,a7f1d462-568d-4692-9267-9c5b48334e44,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12117,a7f1d462-568d-4692-9267-9c5b48334e44,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12118,9c249148-30ff-4333-bc51-60dfa5b7f875,LIST_ACCOUNTS,hbciListAccounts,false -12119,9c249148-30ff-4333-bc51-60dfa5b7f875,LIST_TRANSACTIONS,hbciListTransactions,false -12120,9c249148-30ff-4333-bc51-60dfa5b7f875,AUTHORIZATION,,false -12121,9c249148-30ff-4333-bc51-60dfa5b7f875,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12122,9c249148-30ff-4333-bc51-60dfa5b7f875,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12123,9c249148-30ff-4333-bc51-60dfa5b7f875,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12118,621852e5-0d96-46ca-a0e8-b653f13c82ca,LIST_ACCOUNTS,hbciListAccounts,false +12119,621852e5-0d96-46ca-a0e8-b653f13c82ca,LIST_TRANSACTIONS,hbciListTransactions,false +12120,621852e5-0d96-46ca-a0e8-b653f13c82ca,AUTHORIZATION,,false +12121,621852e5-0d96-46ca-a0e8-b653f13c82ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12122,621852e5-0d96-46ca-a0e8-b653f13c82ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12123,621852e5-0d96-46ca-a0e8-b653f13c82ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12124,4772ce3d-48ce-4a40-859b-91cc401810fc,LIST_ACCOUNTS,xs2aListAccounts,true -12125,4772ce3d-48ce-4a40-859b-91cc401810fc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12125,4772ce3d-48ce-4a40-859b-91cc401810fc,LIST_TRANSACTIONS,xs2aListTransactions,true 12126,4772ce3d-48ce-4a40-859b-91cc401810fc,AUTHORIZATION,,true 12127,4772ce3d-48ce-4a40-859b-91cc401810fc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12128,4772ce3d-48ce-4a40-859b-91cc401810fc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12129,4772ce3d-48ce-4a40-859b-91cc401810fc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12130,1429e580-f0a6-4bae-b6a1-af1b62747cee,LIST_ACCOUNTS,hbciListAccounts,false -12131,1429e580-f0a6-4bae-b6a1-af1b62747cee,LIST_TRANSACTIONS,hbciListTransactions,false -12132,1429e580-f0a6-4bae-b6a1-af1b62747cee,AUTHORIZATION,,false -12133,1429e580-f0a6-4bae-b6a1-af1b62747cee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12134,1429e580-f0a6-4bae-b6a1-af1b62747cee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12135,1429e580-f0a6-4bae-b6a1-af1b62747cee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12130,3e27398a-1a3d-4fcb-8952-1dc2a65eb5f1,LIST_ACCOUNTS,hbciListAccounts,false +12131,3e27398a-1a3d-4fcb-8952-1dc2a65eb5f1,LIST_TRANSACTIONS,hbciListTransactions,false +12132,3e27398a-1a3d-4fcb-8952-1dc2a65eb5f1,AUTHORIZATION,,false +12133,3e27398a-1a3d-4fcb-8952-1dc2a65eb5f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12134,3e27398a-1a3d-4fcb-8952-1dc2a65eb5f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12135,3e27398a-1a3d-4fcb-8952-1dc2a65eb5f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12136,4c47e75a-760f-4d99-8d88-490221b39f98,LIST_ACCOUNTS,xs2aListAccounts,true -12137,4c47e75a-760f-4d99-8d88-490221b39f98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12137,4c47e75a-760f-4d99-8d88-490221b39f98,LIST_TRANSACTIONS,xs2aListTransactions,true 12138,4c47e75a-760f-4d99-8d88-490221b39f98,AUTHORIZATION,,true 12139,4c47e75a-760f-4d99-8d88-490221b39f98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12140,4c47e75a-760f-4d99-8d88-490221b39f98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12141,4c47e75a-760f-4d99-8d88-490221b39f98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12142,1d91783e-713b-4731-801f-e0cf3cfc367d,LIST_ACCOUNTS,hbciListAccounts,false -12143,1d91783e-713b-4731-801f-e0cf3cfc367d,LIST_TRANSACTIONS,hbciListTransactions,false -12144,1d91783e-713b-4731-801f-e0cf3cfc367d,AUTHORIZATION,,false -12145,1d91783e-713b-4731-801f-e0cf3cfc367d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12146,1d91783e-713b-4731-801f-e0cf3cfc367d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12147,1d91783e-713b-4731-801f-e0cf3cfc367d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12142,ae95b923-2a56-4d5e-8b8b-4129b269cd32,LIST_ACCOUNTS,hbciListAccounts,false +12143,ae95b923-2a56-4d5e-8b8b-4129b269cd32,LIST_TRANSACTIONS,hbciListTransactions,false +12144,ae95b923-2a56-4d5e-8b8b-4129b269cd32,AUTHORIZATION,,false +12145,ae95b923-2a56-4d5e-8b8b-4129b269cd32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12146,ae95b923-2a56-4d5e-8b8b-4129b269cd32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12147,ae95b923-2a56-4d5e-8b8b-4129b269cd32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12148,608c77dd-ab76-4ba1-b10f-a3480acea88c,LIST_ACCOUNTS,xs2aListAccounts,true -12149,608c77dd-ab76-4ba1-b10f-a3480acea88c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12149,608c77dd-ab76-4ba1-b10f-a3480acea88c,LIST_TRANSACTIONS,xs2aListTransactions,true 12150,608c77dd-ab76-4ba1-b10f-a3480acea88c,AUTHORIZATION,,true 12151,608c77dd-ab76-4ba1-b10f-a3480acea88c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12152,608c77dd-ab76-4ba1-b10f-a3480acea88c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12153,608c77dd-ab76-4ba1-b10f-a3480acea88c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12154,e3235b5b-1a23-49ee-9a9e-7d4c69fdba66,LIST_ACCOUNTS,hbciListAccounts,false -12155,e3235b5b-1a23-49ee-9a9e-7d4c69fdba66,LIST_TRANSACTIONS,hbciListTransactions,false -12156,e3235b5b-1a23-49ee-9a9e-7d4c69fdba66,AUTHORIZATION,,false -12157,e3235b5b-1a23-49ee-9a9e-7d4c69fdba66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12158,e3235b5b-1a23-49ee-9a9e-7d4c69fdba66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12159,e3235b5b-1a23-49ee-9a9e-7d4c69fdba66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12154,5c48e3de-8ebf-4e34-8221-147e79d07c34,LIST_ACCOUNTS,hbciListAccounts,false +12155,5c48e3de-8ebf-4e34-8221-147e79d07c34,LIST_TRANSACTIONS,hbciListTransactions,false +12156,5c48e3de-8ebf-4e34-8221-147e79d07c34,AUTHORIZATION,,false +12157,5c48e3de-8ebf-4e34-8221-147e79d07c34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12158,5c48e3de-8ebf-4e34-8221-147e79d07c34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12159,5c48e3de-8ebf-4e34-8221-147e79d07c34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12160,b716e348-3d46-4988-981e-9d0b61572798,LIST_ACCOUNTS,xs2aListAccounts,true -12161,b716e348-3d46-4988-981e-9d0b61572798,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12161,b716e348-3d46-4988-981e-9d0b61572798,LIST_TRANSACTIONS,xs2aListTransactions,true 12162,b716e348-3d46-4988-981e-9d0b61572798,AUTHORIZATION,,true 12163,b716e348-3d46-4988-981e-9d0b61572798,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12164,b716e348-3d46-4988-981e-9d0b61572798,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12165,b716e348-3d46-4988-981e-9d0b61572798,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12166,dcefb2be-5da4-4c90-8cb0-72c9b7aac4d0,LIST_ACCOUNTS,hbciListAccounts,false -12167,dcefb2be-5da4-4c90-8cb0-72c9b7aac4d0,LIST_TRANSACTIONS,hbciListTransactions,false -12168,dcefb2be-5da4-4c90-8cb0-72c9b7aac4d0,AUTHORIZATION,,false -12169,dcefb2be-5da4-4c90-8cb0-72c9b7aac4d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12170,dcefb2be-5da4-4c90-8cb0-72c9b7aac4d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12171,dcefb2be-5da4-4c90-8cb0-72c9b7aac4d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12166,3b14ed68-58fc-45b5-9f87-9ab60dd11a2d,LIST_ACCOUNTS,hbciListAccounts,false +12167,3b14ed68-58fc-45b5-9f87-9ab60dd11a2d,LIST_TRANSACTIONS,hbciListTransactions,false +12168,3b14ed68-58fc-45b5-9f87-9ab60dd11a2d,AUTHORIZATION,,false +12169,3b14ed68-58fc-45b5-9f87-9ab60dd11a2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12170,3b14ed68-58fc-45b5-9f87-9ab60dd11a2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12171,3b14ed68-58fc-45b5-9f87-9ab60dd11a2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12172,0f19ed55-e29c-4a66-a9de-e72a8a98d5c5,LIST_ACCOUNTS,xs2aListAccounts,true -12173,0f19ed55-e29c-4a66-a9de-e72a8a98d5c5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12173,0f19ed55-e29c-4a66-a9de-e72a8a98d5c5,LIST_TRANSACTIONS,xs2aListTransactions,true 12174,0f19ed55-e29c-4a66-a9de-e72a8a98d5c5,AUTHORIZATION,,true 12175,0f19ed55-e29c-4a66-a9de-e72a8a98d5c5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12176,0f19ed55-e29c-4a66-a9de-e72a8a98d5c5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12177,0f19ed55-e29c-4a66-a9de-e72a8a98d5c5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12178,23c09031-5747-4273-8c98-856d4753fd95,LIST_ACCOUNTS,hbciListAccounts,false -12179,23c09031-5747-4273-8c98-856d4753fd95,LIST_TRANSACTIONS,hbciListTransactions,false -12180,23c09031-5747-4273-8c98-856d4753fd95,AUTHORIZATION,,false -12181,23c09031-5747-4273-8c98-856d4753fd95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12182,23c09031-5747-4273-8c98-856d4753fd95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12183,23c09031-5747-4273-8c98-856d4753fd95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12178,5be9cc0c-bdf9-427d-9db5-c8f635e0a764,LIST_ACCOUNTS,hbciListAccounts,false +12179,5be9cc0c-bdf9-427d-9db5-c8f635e0a764,LIST_TRANSACTIONS,hbciListTransactions,false +12180,5be9cc0c-bdf9-427d-9db5-c8f635e0a764,AUTHORIZATION,,false +12181,5be9cc0c-bdf9-427d-9db5-c8f635e0a764,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12182,5be9cc0c-bdf9-427d-9db5-c8f635e0a764,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12183,5be9cc0c-bdf9-427d-9db5-c8f635e0a764,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12184,f1cea0eb-9e9e-4296-bf03-8bdbc20770c1,LIST_ACCOUNTS,xs2aListAccounts,true -12185,f1cea0eb-9e9e-4296-bf03-8bdbc20770c1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12185,f1cea0eb-9e9e-4296-bf03-8bdbc20770c1,LIST_TRANSACTIONS,xs2aListTransactions,true 12186,f1cea0eb-9e9e-4296-bf03-8bdbc20770c1,AUTHORIZATION,,true 12187,f1cea0eb-9e9e-4296-bf03-8bdbc20770c1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12188,f1cea0eb-9e9e-4296-bf03-8bdbc20770c1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12189,f1cea0eb-9e9e-4296-bf03-8bdbc20770c1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12190,59cd2786-7b3a-404b-afb9-9ab010767a71,LIST_ACCOUNTS,hbciListAccounts,false -12191,59cd2786-7b3a-404b-afb9-9ab010767a71,LIST_TRANSACTIONS,hbciListTransactions,false -12192,59cd2786-7b3a-404b-afb9-9ab010767a71,AUTHORIZATION,,false -12193,59cd2786-7b3a-404b-afb9-9ab010767a71,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12194,59cd2786-7b3a-404b-afb9-9ab010767a71,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12195,59cd2786-7b3a-404b-afb9-9ab010767a71,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12190,d7a55606-817c-4c79-bb86-cb7cb0026b2d,LIST_ACCOUNTS,hbciListAccounts,false +12191,d7a55606-817c-4c79-bb86-cb7cb0026b2d,LIST_TRANSACTIONS,hbciListTransactions,false +12192,d7a55606-817c-4c79-bb86-cb7cb0026b2d,AUTHORIZATION,,false +12193,d7a55606-817c-4c79-bb86-cb7cb0026b2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12194,d7a55606-817c-4c79-bb86-cb7cb0026b2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12195,d7a55606-817c-4c79-bb86-cb7cb0026b2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12196,77964c73-72bc-4348-9875-8628b026a804,LIST_ACCOUNTS,xs2aListAccounts,true -12197,77964c73-72bc-4348-9875-8628b026a804,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12197,77964c73-72bc-4348-9875-8628b026a804,LIST_TRANSACTIONS,xs2aListTransactions,true 12198,77964c73-72bc-4348-9875-8628b026a804,AUTHORIZATION,,true 12199,77964c73-72bc-4348-9875-8628b026a804,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12200,77964c73-72bc-4348-9875-8628b026a804,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12201,77964c73-72bc-4348-9875-8628b026a804,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12202,d4d030c5-d7fa-474e-b786-550a8a0edc16,LIST_ACCOUNTS,hbciListAccounts,false -12203,d4d030c5-d7fa-474e-b786-550a8a0edc16,LIST_TRANSACTIONS,hbciListTransactions,false -12204,d4d030c5-d7fa-474e-b786-550a8a0edc16,AUTHORIZATION,,false -12205,d4d030c5-d7fa-474e-b786-550a8a0edc16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12206,d4d030c5-d7fa-474e-b786-550a8a0edc16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12207,d4d030c5-d7fa-474e-b786-550a8a0edc16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12202,c92649f6-8e31-4091-904f-dd2ae0994727,LIST_ACCOUNTS,hbciListAccounts,false +12203,c92649f6-8e31-4091-904f-dd2ae0994727,LIST_TRANSACTIONS,hbciListTransactions,false +12204,c92649f6-8e31-4091-904f-dd2ae0994727,AUTHORIZATION,,false +12205,c92649f6-8e31-4091-904f-dd2ae0994727,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12206,c92649f6-8e31-4091-904f-dd2ae0994727,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12207,c92649f6-8e31-4091-904f-dd2ae0994727,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12208,8222a35b-ed6b-4f6b-88a9-1fb8c569b6cd,LIST_ACCOUNTS,xs2aListAccounts,true -12209,8222a35b-ed6b-4f6b-88a9-1fb8c569b6cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12209,8222a35b-ed6b-4f6b-88a9-1fb8c569b6cd,LIST_TRANSACTIONS,xs2aListTransactions,true 12210,8222a35b-ed6b-4f6b-88a9-1fb8c569b6cd,AUTHORIZATION,,true 12211,8222a35b-ed6b-4f6b-88a9-1fb8c569b6cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12212,8222a35b-ed6b-4f6b-88a9-1fb8c569b6cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12213,8222a35b-ed6b-4f6b-88a9-1fb8c569b6cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12214,3de8db3e-0781-4d48-a359-7a40f02f74bd,LIST_ACCOUNTS,hbciListAccounts,false -12215,3de8db3e-0781-4d48-a359-7a40f02f74bd,LIST_TRANSACTIONS,hbciListTransactions,false -12216,3de8db3e-0781-4d48-a359-7a40f02f74bd,AUTHORIZATION,,false -12217,3de8db3e-0781-4d48-a359-7a40f02f74bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12218,3de8db3e-0781-4d48-a359-7a40f02f74bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12219,3de8db3e-0781-4d48-a359-7a40f02f74bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12214,f97eb142-4460-464b-84fe-a2e70fdc24f8,LIST_ACCOUNTS,hbciListAccounts,false +12215,f97eb142-4460-464b-84fe-a2e70fdc24f8,LIST_TRANSACTIONS,hbciListTransactions,false +12216,f97eb142-4460-464b-84fe-a2e70fdc24f8,AUTHORIZATION,,false +12217,f97eb142-4460-464b-84fe-a2e70fdc24f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12218,f97eb142-4460-464b-84fe-a2e70fdc24f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12219,f97eb142-4460-464b-84fe-a2e70fdc24f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12220,44856c02-e3b9-4b40-858c-c02c9d0b292d,LIST_ACCOUNTS,xs2aListAccounts,true -12221,44856c02-e3b9-4b40-858c-c02c9d0b292d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12221,44856c02-e3b9-4b40-858c-c02c9d0b292d,LIST_TRANSACTIONS,xs2aListTransactions,true 12222,44856c02-e3b9-4b40-858c-c02c9d0b292d,AUTHORIZATION,,true 12223,44856c02-e3b9-4b40-858c-c02c9d0b292d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12224,44856c02-e3b9-4b40-858c-c02c9d0b292d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12225,44856c02-e3b9-4b40-858c-c02c9d0b292d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12226,7bac5ca5-eb22-4525-b1e9-200ed50f53b3,LIST_ACCOUNTS,hbciListAccounts,false -12227,7bac5ca5-eb22-4525-b1e9-200ed50f53b3,LIST_TRANSACTIONS,hbciListTransactions,false -12228,7bac5ca5-eb22-4525-b1e9-200ed50f53b3,AUTHORIZATION,,false -12229,7bac5ca5-eb22-4525-b1e9-200ed50f53b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12230,7bac5ca5-eb22-4525-b1e9-200ed50f53b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12231,7bac5ca5-eb22-4525-b1e9-200ed50f53b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12226,bd697a06-de33-4341-9c93-e7efad1f10f0,LIST_ACCOUNTS,hbciListAccounts,false +12227,bd697a06-de33-4341-9c93-e7efad1f10f0,LIST_TRANSACTIONS,hbciListTransactions,false +12228,bd697a06-de33-4341-9c93-e7efad1f10f0,AUTHORIZATION,,false +12229,bd697a06-de33-4341-9c93-e7efad1f10f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12230,bd697a06-de33-4341-9c93-e7efad1f10f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12231,bd697a06-de33-4341-9c93-e7efad1f10f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12232,b422b9f5-b881-4f6f-b7fd-a4a26222a5a4,LIST_ACCOUNTS,xs2aListAccounts,true -12233,b422b9f5-b881-4f6f-b7fd-a4a26222a5a4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12233,b422b9f5-b881-4f6f-b7fd-a4a26222a5a4,LIST_TRANSACTIONS,xs2aListTransactions,true 12234,b422b9f5-b881-4f6f-b7fd-a4a26222a5a4,AUTHORIZATION,,true 12235,b422b9f5-b881-4f6f-b7fd-a4a26222a5a4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12236,b422b9f5-b881-4f6f-b7fd-a4a26222a5a4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12237,b422b9f5-b881-4f6f-b7fd-a4a26222a5a4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12238,1cdaefd1-a0a4-4724-97f1-902a1f4d8daf,LIST_ACCOUNTS,hbciListAccounts,false -12239,1cdaefd1-a0a4-4724-97f1-902a1f4d8daf,LIST_TRANSACTIONS,hbciListTransactions,false -12240,1cdaefd1-a0a4-4724-97f1-902a1f4d8daf,AUTHORIZATION,,false -12241,1cdaefd1-a0a4-4724-97f1-902a1f4d8daf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12242,1cdaefd1-a0a4-4724-97f1-902a1f4d8daf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12243,1cdaefd1-a0a4-4724-97f1-902a1f4d8daf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12238,2d8f6180-934c-4ce9-bf24-517f0168b7ff,LIST_ACCOUNTS,hbciListAccounts,false +12239,2d8f6180-934c-4ce9-bf24-517f0168b7ff,LIST_TRANSACTIONS,hbciListTransactions,false +12240,2d8f6180-934c-4ce9-bf24-517f0168b7ff,AUTHORIZATION,,false +12241,2d8f6180-934c-4ce9-bf24-517f0168b7ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12242,2d8f6180-934c-4ce9-bf24-517f0168b7ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12243,2d8f6180-934c-4ce9-bf24-517f0168b7ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12244,af6f556c-ff5f-4278-850b-548059dcb2cd,LIST_ACCOUNTS,xs2aListAccounts,true -12245,af6f556c-ff5f-4278-850b-548059dcb2cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12245,af6f556c-ff5f-4278-850b-548059dcb2cd,LIST_TRANSACTIONS,xs2aListTransactions,true 12246,af6f556c-ff5f-4278-850b-548059dcb2cd,AUTHORIZATION,,true 12247,af6f556c-ff5f-4278-850b-548059dcb2cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12248,af6f556c-ff5f-4278-850b-548059dcb2cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12249,af6f556c-ff5f-4278-850b-548059dcb2cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12250,4d59fc89-5523-4209-a744-f8e2a48a8e17,LIST_ACCOUNTS,hbciListAccounts,false -12251,4d59fc89-5523-4209-a744-f8e2a48a8e17,LIST_TRANSACTIONS,hbciListTransactions,false -12252,4d59fc89-5523-4209-a744-f8e2a48a8e17,AUTHORIZATION,,false -12253,4d59fc89-5523-4209-a744-f8e2a48a8e17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12254,4d59fc89-5523-4209-a744-f8e2a48a8e17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12255,4d59fc89-5523-4209-a744-f8e2a48a8e17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12250,6124e67e-0396-4d30-8de2-97104604e416,LIST_ACCOUNTS,hbciListAccounts,false +12251,6124e67e-0396-4d30-8de2-97104604e416,LIST_TRANSACTIONS,hbciListTransactions,false +12252,6124e67e-0396-4d30-8de2-97104604e416,AUTHORIZATION,,false +12253,6124e67e-0396-4d30-8de2-97104604e416,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12254,6124e67e-0396-4d30-8de2-97104604e416,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12255,6124e67e-0396-4d30-8de2-97104604e416,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12256,6275cc00-f522-474d-b3d8-6ff550b34a65,LIST_ACCOUNTS,xs2aListAccounts,true -12257,6275cc00-f522-474d-b3d8-6ff550b34a65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12257,6275cc00-f522-474d-b3d8-6ff550b34a65,LIST_TRANSACTIONS,xs2aListTransactions,true 12258,6275cc00-f522-474d-b3d8-6ff550b34a65,AUTHORIZATION,,true 12259,6275cc00-f522-474d-b3d8-6ff550b34a65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12260,6275cc00-f522-474d-b3d8-6ff550b34a65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12261,6275cc00-f522-474d-b3d8-6ff550b34a65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12262,4496617e-eb07-475f-95eb-f8d42c0843fa,LIST_ACCOUNTS,hbciListAccounts,false -12263,4496617e-eb07-475f-95eb-f8d42c0843fa,LIST_TRANSACTIONS,hbciListTransactions,false -12264,4496617e-eb07-475f-95eb-f8d42c0843fa,AUTHORIZATION,,false -12265,4496617e-eb07-475f-95eb-f8d42c0843fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12266,4496617e-eb07-475f-95eb-f8d42c0843fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12267,4496617e-eb07-475f-95eb-f8d42c0843fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12262,6116675c-1b98-45a4-80e8-0197e77b3b1a,LIST_ACCOUNTS,hbciListAccounts,false +12263,6116675c-1b98-45a4-80e8-0197e77b3b1a,LIST_TRANSACTIONS,hbciListTransactions,false +12264,6116675c-1b98-45a4-80e8-0197e77b3b1a,AUTHORIZATION,,false +12265,6116675c-1b98-45a4-80e8-0197e77b3b1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12266,6116675c-1b98-45a4-80e8-0197e77b3b1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12267,6116675c-1b98-45a4-80e8-0197e77b3b1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12268,b291d0fc-73e9-4292-9397-4e648e594cf3,LIST_ACCOUNTS,xs2aListAccounts,true -12269,b291d0fc-73e9-4292-9397-4e648e594cf3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12269,b291d0fc-73e9-4292-9397-4e648e594cf3,LIST_TRANSACTIONS,xs2aListTransactions,true 12270,b291d0fc-73e9-4292-9397-4e648e594cf3,AUTHORIZATION,,true 12271,b291d0fc-73e9-4292-9397-4e648e594cf3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12272,b291d0fc-73e9-4292-9397-4e648e594cf3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12273,b291d0fc-73e9-4292-9397-4e648e594cf3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12274,e9ecd271-0b03-40ea-8c67-492b11768133,LIST_ACCOUNTS,hbciListAccounts,false -12275,e9ecd271-0b03-40ea-8c67-492b11768133,LIST_TRANSACTIONS,hbciListTransactions,false -12276,e9ecd271-0b03-40ea-8c67-492b11768133,AUTHORIZATION,,false -12277,e9ecd271-0b03-40ea-8c67-492b11768133,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12278,e9ecd271-0b03-40ea-8c67-492b11768133,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12279,e9ecd271-0b03-40ea-8c67-492b11768133,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12274,13854619-f587-43a0-9910-6393be6fea84,LIST_ACCOUNTS,hbciListAccounts,false +12275,13854619-f587-43a0-9910-6393be6fea84,LIST_TRANSACTIONS,hbciListTransactions,false +12276,13854619-f587-43a0-9910-6393be6fea84,AUTHORIZATION,,false +12277,13854619-f587-43a0-9910-6393be6fea84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12278,13854619-f587-43a0-9910-6393be6fea84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12279,13854619-f587-43a0-9910-6393be6fea84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12280,3987d528-595d-4897-b2b9-b5f07349c351,LIST_ACCOUNTS,xs2aListAccounts,true -12281,3987d528-595d-4897-b2b9-b5f07349c351,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12281,3987d528-595d-4897-b2b9-b5f07349c351,LIST_TRANSACTIONS,xs2aListTransactions,true 12282,3987d528-595d-4897-b2b9-b5f07349c351,AUTHORIZATION,,true 12283,3987d528-595d-4897-b2b9-b5f07349c351,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12284,3987d528-595d-4897-b2b9-b5f07349c351,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12285,3987d528-595d-4897-b2b9-b5f07349c351,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12286,a21658e7-dabf-4a6f-a992-90266affbd90,LIST_ACCOUNTS,hbciListAccounts,false -12287,a21658e7-dabf-4a6f-a992-90266affbd90,LIST_TRANSACTIONS,hbciListTransactions,false -12288,a21658e7-dabf-4a6f-a992-90266affbd90,AUTHORIZATION,,false -12289,a21658e7-dabf-4a6f-a992-90266affbd90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12290,a21658e7-dabf-4a6f-a992-90266affbd90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12291,a21658e7-dabf-4a6f-a992-90266affbd90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12286,767e3f99-ac1f-4b4c-8c83-90e6ece5b15b,LIST_ACCOUNTS,hbciListAccounts,false +12287,767e3f99-ac1f-4b4c-8c83-90e6ece5b15b,LIST_TRANSACTIONS,hbciListTransactions,false +12288,767e3f99-ac1f-4b4c-8c83-90e6ece5b15b,AUTHORIZATION,,false +12289,767e3f99-ac1f-4b4c-8c83-90e6ece5b15b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12290,767e3f99-ac1f-4b4c-8c83-90e6ece5b15b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12291,767e3f99-ac1f-4b4c-8c83-90e6ece5b15b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12292,dee6402f-1832-4520-b919-3c20f51307f9,LIST_ACCOUNTS,xs2aListAccounts,true -12293,dee6402f-1832-4520-b919-3c20f51307f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12293,dee6402f-1832-4520-b919-3c20f51307f9,LIST_TRANSACTIONS,xs2aListTransactions,true 12294,dee6402f-1832-4520-b919-3c20f51307f9,AUTHORIZATION,,true 12295,dee6402f-1832-4520-b919-3c20f51307f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12296,dee6402f-1832-4520-b919-3c20f51307f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12297,dee6402f-1832-4520-b919-3c20f51307f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12298,bbd8db6e-0b7e-4799-ae06-623b7d4435f2,LIST_ACCOUNTS,hbciListAccounts,false -12299,bbd8db6e-0b7e-4799-ae06-623b7d4435f2,LIST_TRANSACTIONS,hbciListTransactions,false -12300,bbd8db6e-0b7e-4799-ae06-623b7d4435f2,AUTHORIZATION,,false -12301,bbd8db6e-0b7e-4799-ae06-623b7d4435f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12302,bbd8db6e-0b7e-4799-ae06-623b7d4435f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12303,bbd8db6e-0b7e-4799-ae06-623b7d4435f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12298,a006c041-0e5d-4780-bf52-00e5e106f248,LIST_ACCOUNTS,hbciListAccounts,false +12299,a006c041-0e5d-4780-bf52-00e5e106f248,LIST_TRANSACTIONS,hbciListTransactions,false +12300,a006c041-0e5d-4780-bf52-00e5e106f248,AUTHORIZATION,,false +12301,a006c041-0e5d-4780-bf52-00e5e106f248,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12302,a006c041-0e5d-4780-bf52-00e5e106f248,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12303,a006c041-0e5d-4780-bf52-00e5e106f248,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12304,8f50bf19-21e4-46fb-b4df-1e447e14af45,LIST_ACCOUNTS,xs2aListAccounts,true -12305,8f50bf19-21e4-46fb-b4df-1e447e14af45,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12305,8f50bf19-21e4-46fb-b4df-1e447e14af45,LIST_TRANSACTIONS,xs2aListTransactions,true 12306,8f50bf19-21e4-46fb-b4df-1e447e14af45,AUTHORIZATION,,true 12307,8f50bf19-21e4-46fb-b4df-1e447e14af45,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12308,8f50bf19-21e4-46fb-b4df-1e447e14af45,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12309,8f50bf19-21e4-46fb-b4df-1e447e14af45,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12310,ea39c4cf-a3f5-436f-a408-18085e799a09,LIST_ACCOUNTS,hbciListAccounts,false -12311,ea39c4cf-a3f5-436f-a408-18085e799a09,LIST_TRANSACTIONS,hbciListTransactions,false -12312,ea39c4cf-a3f5-436f-a408-18085e799a09,AUTHORIZATION,,false -12313,ea39c4cf-a3f5-436f-a408-18085e799a09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12314,ea39c4cf-a3f5-436f-a408-18085e799a09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12315,ea39c4cf-a3f5-436f-a408-18085e799a09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12310,6217c0c4-8067-4a5b-809c-6f714566bbc0,LIST_ACCOUNTS,hbciListAccounts,false +12311,6217c0c4-8067-4a5b-809c-6f714566bbc0,LIST_TRANSACTIONS,hbciListTransactions,false +12312,6217c0c4-8067-4a5b-809c-6f714566bbc0,AUTHORIZATION,,false +12313,6217c0c4-8067-4a5b-809c-6f714566bbc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12314,6217c0c4-8067-4a5b-809c-6f714566bbc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12315,6217c0c4-8067-4a5b-809c-6f714566bbc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12316,97c6fac5-fa6a-4ecf-9eb2-e685ae685d25,LIST_ACCOUNTS,xs2aListAccounts,true -12317,97c6fac5-fa6a-4ecf-9eb2-e685ae685d25,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12317,97c6fac5-fa6a-4ecf-9eb2-e685ae685d25,LIST_TRANSACTIONS,xs2aListTransactions,true 12318,97c6fac5-fa6a-4ecf-9eb2-e685ae685d25,AUTHORIZATION,,true 12319,97c6fac5-fa6a-4ecf-9eb2-e685ae685d25,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12320,97c6fac5-fa6a-4ecf-9eb2-e685ae685d25,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12321,97c6fac5-fa6a-4ecf-9eb2-e685ae685d25,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12322,92eac8f1-ab2b-4a8a-b079-fa97d307c044,LIST_ACCOUNTS,hbciListAccounts,false -12323,92eac8f1-ab2b-4a8a-b079-fa97d307c044,LIST_TRANSACTIONS,hbciListTransactions,false -12324,92eac8f1-ab2b-4a8a-b079-fa97d307c044,AUTHORIZATION,,false -12325,92eac8f1-ab2b-4a8a-b079-fa97d307c044,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12326,92eac8f1-ab2b-4a8a-b079-fa97d307c044,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12327,92eac8f1-ab2b-4a8a-b079-fa97d307c044,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12322,6f0e5ce0-6770-4907-a23e-38d845b664f9,LIST_ACCOUNTS,hbciListAccounts,false +12323,6f0e5ce0-6770-4907-a23e-38d845b664f9,LIST_TRANSACTIONS,hbciListTransactions,false +12324,6f0e5ce0-6770-4907-a23e-38d845b664f9,AUTHORIZATION,,false +12325,6f0e5ce0-6770-4907-a23e-38d845b664f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12326,6f0e5ce0-6770-4907-a23e-38d845b664f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12327,6f0e5ce0-6770-4907-a23e-38d845b664f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12328,0a811717-f2ec-4725-a693-c8b0033a2788,LIST_ACCOUNTS,xs2aListAccounts,true -12329,0a811717-f2ec-4725-a693-c8b0033a2788,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12329,0a811717-f2ec-4725-a693-c8b0033a2788,LIST_TRANSACTIONS,xs2aListTransactions,true 12330,0a811717-f2ec-4725-a693-c8b0033a2788,AUTHORIZATION,,true 12331,0a811717-f2ec-4725-a693-c8b0033a2788,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12332,0a811717-f2ec-4725-a693-c8b0033a2788,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12333,0a811717-f2ec-4725-a693-c8b0033a2788,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12334,38f0313a-449d-4331-8ec7-e8c0eda849b0,LIST_ACCOUNTS,hbciListAccounts,false -12335,38f0313a-449d-4331-8ec7-e8c0eda849b0,LIST_TRANSACTIONS,hbciListTransactions,false -12336,38f0313a-449d-4331-8ec7-e8c0eda849b0,AUTHORIZATION,,false -12337,38f0313a-449d-4331-8ec7-e8c0eda849b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12338,38f0313a-449d-4331-8ec7-e8c0eda849b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12339,38f0313a-449d-4331-8ec7-e8c0eda849b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12334,7678c078-9518-4ce1-9052-5e030b317684,LIST_ACCOUNTS,hbciListAccounts,false +12335,7678c078-9518-4ce1-9052-5e030b317684,LIST_TRANSACTIONS,hbciListTransactions,false +12336,7678c078-9518-4ce1-9052-5e030b317684,AUTHORIZATION,,false +12337,7678c078-9518-4ce1-9052-5e030b317684,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12338,7678c078-9518-4ce1-9052-5e030b317684,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12339,7678c078-9518-4ce1-9052-5e030b317684,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12340,66ef5c8b-b0d0-49ef-9a0a-3f7512ee9d5a,LIST_ACCOUNTS,xs2aListAccounts,true -12341,66ef5c8b-b0d0-49ef-9a0a-3f7512ee9d5a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12341,66ef5c8b-b0d0-49ef-9a0a-3f7512ee9d5a,LIST_TRANSACTIONS,xs2aListTransactions,true 12342,66ef5c8b-b0d0-49ef-9a0a-3f7512ee9d5a,AUTHORIZATION,,true 12343,66ef5c8b-b0d0-49ef-9a0a-3f7512ee9d5a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12344,66ef5c8b-b0d0-49ef-9a0a-3f7512ee9d5a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12345,66ef5c8b-b0d0-49ef-9a0a-3f7512ee9d5a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12346,b3b6e431-4549-41f2-aa63-5fab8bd8625e,LIST_ACCOUNTS,hbciListAccounts,false -12347,b3b6e431-4549-41f2-aa63-5fab8bd8625e,LIST_TRANSACTIONS,hbciListTransactions,false -12348,b3b6e431-4549-41f2-aa63-5fab8bd8625e,AUTHORIZATION,,false -12349,b3b6e431-4549-41f2-aa63-5fab8bd8625e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12350,b3b6e431-4549-41f2-aa63-5fab8bd8625e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12351,b3b6e431-4549-41f2-aa63-5fab8bd8625e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12346,c0fafd86-0e8b-42ac-9e9b-83375374d34a,LIST_ACCOUNTS,hbciListAccounts,false +12347,c0fafd86-0e8b-42ac-9e9b-83375374d34a,LIST_TRANSACTIONS,hbciListTransactions,false +12348,c0fafd86-0e8b-42ac-9e9b-83375374d34a,AUTHORIZATION,,false +12349,c0fafd86-0e8b-42ac-9e9b-83375374d34a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12350,c0fafd86-0e8b-42ac-9e9b-83375374d34a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12351,c0fafd86-0e8b-42ac-9e9b-83375374d34a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12352,ea1880ef-da26-43c4-893a-5b471da20412,LIST_ACCOUNTS,xs2aListAccounts,true -12353,ea1880ef-da26-43c4-893a-5b471da20412,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12353,ea1880ef-da26-43c4-893a-5b471da20412,LIST_TRANSACTIONS,xs2aListTransactions,true 12354,ea1880ef-da26-43c4-893a-5b471da20412,AUTHORIZATION,,true 12355,ea1880ef-da26-43c4-893a-5b471da20412,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12356,ea1880ef-da26-43c4-893a-5b471da20412,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12357,ea1880ef-da26-43c4-893a-5b471da20412,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12358,79e05da0-2e38-4663-8a5b-0951d58230c0,LIST_ACCOUNTS,hbciListAccounts,false -12359,79e05da0-2e38-4663-8a5b-0951d58230c0,LIST_TRANSACTIONS,hbciListTransactions,false -12360,79e05da0-2e38-4663-8a5b-0951d58230c0,AUTHORIZATION,,false -12361,79e05da0-2e38-4663-8a5b-0951d58230c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12362,79e05da0-2e38-4663-8a5b-0951d58230c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12363,79e05da0-2e38-4663-8a5b-0951d58230c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12358,7e70a3a1-450d-4118-a256-08dbb593bbf4,LIST_ACCOUNTS,hbciListAccounts,false +12359,7e70a3a1-450d-4118-a256-08dbb593bbf4,LIST_TRANSACTIONS,hbciListTransactions,false +12360,7e70a3a1-450d-4118-a256-08dbb593bbf4,AUTHORIZATION,,false +12361,7e70a3a1-450d-4118-a256-08dbb593bbf4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12362,7e70a3a1-450d-4118-a256-08dbb593bbf4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12363,7e70a3a1-450d-4118-a256-08dbb593bbf4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12364,0f8142bd-c444-4fd5-baca-e04d04f32d94,LIST_ACCOUNTS,xs2aListAccounts,true -12365,0f8142bd-c444-4fd5-baca-e04d04f32d94,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12365,0f8142bd-c444-4fd5-baca-e04d04f32d94,LIST_TRANSACTIONS,xs2aListTransactions,true 12366,0f8142bd-c444-4fd5-baca-e04d04f32d94,AUTHORIZATION,,true 12367,0f8142bd-c444-4fd5-baca-e04d04f32d94,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12368,0f8142bd-c444-4fd5-baca-e04d04f32d94,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12369,0f8142bd-c444-4fd5-baca-e04d04f32d94,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12370,fd121a00-daf9-4c57-a838-5ff4f5f44682,LIST_ACCOUNTS,hbciListAccounts,false -12371,fd121a00-daf9-4c57-a838-5ff4f5f44682,LIST_TRANSACTIONS,hbciListTransactions,false -12372,fd121a00-daf9-4c57-a838-5ff4f5f44682,AUTHORIZATION,,false -12373,fd121a00-daf9-4c57-a838-5ff4f5f44682,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12374,fd121a00-daf9-4c57-a838-5ff4f5f44682,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12375,fd121a00-daf9-4c57-a838-5ff4f5f44682,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12370,a0b4b81c-feec-4dcd-8ee1-5552fad7407e,LIST_ACCOUNTS,hbciListAccounts,false +12371,a0b4b81c-feec-4dcd-8ee1-5552fad7407e,LIST_TRANSACTIONS,hbciListTransactions,false +12372,a0b4b81c-feec-4dcd-8ee1-5552fad7407e,AUTHORIZATION,,false +12373,a0b4b81c-feec-4dcd-8ee1-5552fad7407e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12374,a0b4b81c-feec-4dcd-8ee1-5552fad7407e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12375,a0b4b81c-feec-4dcd-8ee1-5552fad7407e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12376,c1350c79-04d6-4b01-b53b-3552af6bd519,LIST_ACCOUNTS,xs2aListAccounts,true -12377,c1350c79-04d6-4b01-b53b-3552af6bd519,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12377,c1350c79-04d6-4b01-b53b-3552af6bd519,LIST_TRANSACTIONS,xs2aListTransactions,true 12378,c1350c79-04d6-4b01-b53b-3552af6bd519,AUTHORIZATION,,true 12379,c1350c79-04d6-4b01-b53b-3552af6bd519,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12380,c1350c79-04d6-4b01-b53b-3552af6bd519,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12381,c1350c79-04d6-4b01-b53b-3552af6bd519,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12382,ab83426a-e782-4b32-9945-3e1d9db09482,LIST_ACCOUNTS,hbciListAccounts,false -12383,ab83426a-e782-4b32-9945-3e1d9db09482,LIST_TRANSACTIONS,hbciListTransactions,false -12384,ab83426a-e782-4b32-9945-3e1d9db09482,AUTHORIZATION,,false -12385,ab83426a-e782-4b32-9945-3e1d9db09482,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12386,ab83426a-e782-4b32-9945-3e1d9db09482,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12387,ab83426a-e782-4b32-9945-3e1d9db09482,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12382,188c693d-0711-4848-9dbf-7bafa969e328,LIST_ACCOUNTS,hbciListAccounts,false +12383,188c693d-0711-4848-9dbf-7bafa969e328,LIST_TRANSACTIONS,hbciListTransactions,false +12384,188c693d-0711-4848-9dbf-7bafa969e328,AUTHORIZATION,,false +12385,188c693d-0711-4848-9dbf-7bafa969e328,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12386,188c693d-0711-4848-9dbf-7bafa969e328,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12387,188c693d-0711-4848-9dbf-7bafa969e328,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12388,b10a20b3-dfe0-44e9-af34-8b56f49c913e,LIST_ACCOUNTS,xs2aListAccounts,true -12389,b10a20b3-dfe0-44e9-af34-8b56f49c913e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12389,b10a20b3-dfe0-44e9-af34-8b56f49c913e,LIST_TRANSACTIONS,xs2aListTransactions,true 12390,b10a20b3-dfe0-44e9-af34-8b56f49c913e,AUTHORIZATION,,true 12391,b10a20b3-dfe0-44e9-af34-8b56f49c913e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12392,b10a20b3-dfe0-44e9-af34-8b56f49c913e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12393,b10a20b3-dfe0-44e9-af34-8b56f49c913e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12394,e5f0830e-e8bb-477e-be5a-07caef32fad3,LIST_ACCOUNTS,hbciListAccounts,false -12395,e5f0830e-e8bb-477e-be5a-07caef32fad3,LIST_TRANSACTIONS,hbciListTransactions,false -12396,e5f0830e-e8bb-477e-be5a-07caef32fad3,AUTHORIZATION,,false -12397,e5f0830e-e8bb-477e-be5a-07caef32fad3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12398,e5f0830e-e8bb-477e-be5a-07caef32fad3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12399,e5f0830e-e8bb-477e-be5a-07caef32fad3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12394,b8ed4ec1-676b-4786-9e0d-43e164cd6ec6,LIST_ACCOUNTS,hbciListAccounts,false +12395,b8ed4ec1-676b-4786-9e0d-43e164cd6ec6,LIST_TRANSACTIONS,hbciListTransactions,false +12396,b8ed4ec1-676b-4786-9e0d-43e164cd6ec6,AUTHORIZATION,,false +12397,b8ed4ec1-676b-4786-9e0d-43e164cd6ec6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12398,b8ed4ec1-676b-4786-9e0d-43e164cd6ec6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12399,b8ed4ec1-676b-4786-9e0d-43e164cd6ec6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12400,236810fc-24a9-468b-b870-2efbf7095545,LIST_ACCOUNTS,xs2aListAccounts,true -12401,236810fc-24a9-468b-b870-2efbf7095545,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12401,236810fc-24a9-468b-b870-2efbf7095545,LIST_TRANSACTIONS,xs2aListTransactions,true 12402,236810fc-24a9-468b-b870-2efbf7095545,AUTHORIZATION,,true 12403,236810fc-24a9-468b-b870-2efbf7095545,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12404,236810fc-24a9-468b-b870-2efbf7095545,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12405,236810fc-24a9-468b-b870-2efbf7095545,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12406,3a5fe562-561a-4692-86b0-135d54e7e79b,LIST_ACCOUNTS,hbciListAccounts,false -12407,3a5fe562-561a-4692-86b0-135d54e7e79b,LIST_TRANSACTIONS,hbciListTransactions,false -12408,3a5fe562-561a-4692-86b0-135d54e7e79b,AUTHORIZATION,,false -12409,3a5fe562-561a-4692-86b0-135d54e7e79b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12410,3a5fe562-561a-4692-86b0-135d54e7e79b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12411,3a5fe562-561a-4692-86b0-135d54e7e79b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12406,61c977cc-976c-4c83-a152-8a6a7ad9a49e,LIST_ACCOUNTS,hbciListAccounts,false +12407,61c977cc-976c-4c83-a152-8a6a7ad9a49e,LIST_TRANSACTIONS,hbciListTransactions,false +12408,61c977cc-976c-4c83-a152-8a6a7ad9a49e,AUTHORIZATION,,false +12409,61c977cc-976c-4c83-a152-8a6a7ad9a49e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12410,61c977cc-976c-4c83-a152-8a6a7ad9a49e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12411,61c977cc-976c-4c83-a152-8a6a7ad9a49e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12412,7210282f-646b-49a3-b5ae-1a416cde6c0e,LIST_ACCOUNTS,xs2aListAccounts,true -12413,7210282f-646b-49a3-b5ae-1a416cde6c0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12413,7210282f-646b-49a3-b5ae-1a416cde6c0e,LIST_TRANSACTIONS,xs2aListTransactions,true 12414,7210282f-646b-49a3-b5ae-1a416cde6c0e,AUTHORIZATION,,true 12415,7210282f-646b-49a3-b5ae-1a416cde6c0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12416,7210282f-646b-49a3-b5ae-1a416cde6c0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12417,7210282f-646b-49a3-b5ae-1a416cde6c0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12418,291c8c97-cfac-45ef-87bb-ec49401794a0,LIST_ACCOUNTS,hbciListAccounts,false -12419,291c8c97-cfac-45ef-87bb-ec49401794a0,LIST_TRANSACTIONS,hbciListTransactions,false -12420,291c8c97-cfac-45ef-87bb-ec49401794a0,AUTHORIZATION,,false -12421,291c8c97-cfac-45ef-87bb-ec49401794a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12422,291c8c97-cfac-45ef-87bb-ec49401794a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12423,291c8c97-cfac-45ef-87bb-ec49401794a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12418,4ab72ab8-82b2-47ce-bf4e-f1c564205580,LIST_ACCOUNTS,hbciListAccounts,false +12419,4ab72ab8-82b2-47ce-bf4e-f1c564205580,LIST_TRANSACTIONS,hbciListTransactions,false +12420,4ab72ab8-82b2-47ce-bf4e-f1c564205580,AUTHORIZATION,,false +12421,4ab72ab8-82b2-47ce-bf4e-f1c564205580,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12422,4ab72ab8-82b2-47ce-bf4e-f1c564205580,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12423,4ab72ab8-82b2-47ce-bf4e-f1c564205580,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12424,8ac9bc0f-3e52-4532-8703-252aac21bf3a,LIST_ACCOUNTS,xs2aListAccounts,true -12425,8ac9bc0f-3e52-4532-8703-252aac21bf3a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12425,8ac9bc0f-3e52-4532-8703-252aac21bf3a,LIST_TRANSACTIONS,xs2aListTransactions,true 12426,8ac9bc0f-3e52-4532-8703-252aac21bf3a,AUTHORIZATION,,true 12427,8ac9bc0f-3e52-4532-8703-252aac21bf3a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12428,8ac9bc0f-3e52-4532-8703-252aac21bf3a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12429,8ac9bc0f-3e52-4532-8703-252aac21bf3a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12430,a9e0cfa8-3d87-49ae-9dbc-bea996b75f30,LIST_ACCOUNTS,hbciListAccounts,false -12431,a9e0cfa8-3d87-49ae-9dbc-bea996b75f30,LIST_TRANSACTIONS,hbciListTransactions,false -12432,a9e0cfa8-3d87-49ae-9dbc-bea996b75f30,AUTHORIZATION,,false -12433,a9e0cfa8-3d87-49ae-9dbc-bea996b75f30,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12434,a9e0cfa8-3d87-49ae-9dbc-bea996b75f30,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12435,a9e0cfa8-3d87-49ae-9dbc-bea996b75f30,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12430,8fcd3578-2e58-437d-ab2a-1e09d44e04f5,LIST_ACCOUNTS,hbciListAccounts,false +12431,8fcd3578-2e58-437d-ab2a-1e09d44e04f5,LIST_TRANSACTIONS,hbciListTransactions,false +12432,8fcd3578-2e58-437d-ab2a-1e09d44e04f5,AUTHORIZATION,,false +12433,8fcd3578-2e58-437d-ab2a-1e09d44e04f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12434,8fcd3578-2e58-437d-ab2a-1e09d44e04f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12435,8fcd3578-2e58-437d-ab2a-1e09d44e04f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12436,72d2fa34-1e9a-4c05-ab37-de1f808d687d,LIST_ACCOUNTS,xs2aListAccounts,true -12437,72d2fa34-1e9a-4c05-ab37-de1f808d687d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12437,72d2fa34-1e9a-4c05-ab37-de1f808d687d,LIST_TRANSACTIONS,xs2aListTransactions,true 12438,72d2fa34-1e9a-4c05-ab37-de1f808d687d,AUTHORIZATION,,true 12439,72d2fa34-1e9a-4c05-ab37-de1f808d687d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12440,72d2fa34-1e9a-4c05-ab37-de1f808d687d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12441,72d2fa34-1e9a-4c05-ab37-de1f808d687d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12442,e674ee9a-34d1-4bf6-bc01-f564b4c75318,LIST_ACCOUNTS,hbciListAccounts,false -12443,e674ee9a-34d1-4bf6-bc01-f564b4c75318,LIST_TRANSACTIONS,hbciListTransactions,false -12444,e674ee9a-34d1-4bf6-bc01-f564b4c75318,AUTHORIZATION,,false -12445,e674ee9a-34d1-4bf6-bc01-f564b4c75318,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12446,e674ee9a-34d1-4bf6-bc01-f564b4c75318,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12447,e674ee9a-34d1-4bf6-bc01-f564b4c75318,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12442,481ef845-2ff1-4119-93d3-4b9a1672361e,LIST_ACCOUNTS,hbciListAccounts,false +12443,481ef845-2ff1-4119-93d3-4b9a1672361e,LIST_TRANSACTIONS,hbciListTransactions,false +12444,481ef845-2ff1-4119-93d3-4b9a1672361e,AUTHORIZATION,,false +12445,481ef845-2ff1-4119-93d3-4b9a1672361e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12446,481ef845-2ff1-4119-93d3-4b9a1672361e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12447,481ef845-2ff1-4119-93d3-4b9a1672361e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12448,b6747c74-6bab-4e26-8410-b4992b09f809,LIST_ACCOUNTS,xs2aListAccounts,true -12449,b6747c74-6bab-4e26-8410-b4992b09f809,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12449,b6747c74-6bab-4e26-8410-b4992b09f809,LIST_TRANSACTIONS,xs2aListTransactions,true 12450,b6747c74-6bab-4e26-8410-b4992b09f809,AUTHORIZATION,,true 12451,b6747c74-6bab-4e26-8410-b4992b09f809,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12452,b6747c74-6bab-4e26-8410-b4992b09f809,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12453,b6747c74-6bab-4e26-8410-b4992b09f809,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12454,d01f69ef-c6f3-4b97-8c38-2d7c335351d2,LIST_ACCOUNTS,hbciListAccounts,false -12455,d01f69ef-c6f3-4b97-8c38-2d7c335351d2,LIST_TRANSACTIONS,hbciListTransactions,false -12456,d01f69ef-c6f3-4b97-8c38-2d7c335351d2,AUTHORIZATION,,false -12457,d01f69ef-c6f3-4b97-8c38-2d7c335351d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12458,d01f69ef-c6f3-4b97-8c38-2d7c335351d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12459,d01f69ef-c6f3-4b97-8c38-2d7c335351d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12454,157baadf-7190-46b7-9d3c-3464e591983f,LIST_ACCOUNTS,hbciListAccounts,false +12455,157baadf-7190-46b7-9d3c-3464e591983f,LIST_TRANSACTIONS,hbciListTransactions,false +12456,157baadf-7190-46b7-9d3c-3464e591983f,AUTHORIZATION,,false +12457,157baadf-7190-46b7-9d3c-3464e591983f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12458,157baadf-7190-46b7-9d3c-3464e591983f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12459,157baadf-7190-46b7-9d3c-3464e591983f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12460,20c91d57-8b81-42c1-b1b8-47677752e50d,LIST_ACCOUNTS,xs2aListAccounts,true -12461,20c91d57-8b81-42c1-b1b8-47677752e50d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12461,20c91d57-8b81-42c1-b1b8-47677752e50d,LIST_TRANSACTIONS,xs2aListTransactions,true 12462,20c91d57-8b81-42c1-b1b8-47677752e50d,AUTHORIZATION,,true 12463,20c91d57-8b81-42c1-b1b8-47677752e50d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12464,20c91d57-8b81-42c1-b1b8-47677752e50d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12465,20c91d57-8b81-42c1-b1b8-47677752e50d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12466,ef429e56-5141-400d-abe1-1aea93882ed8,LIST_ACCOUNTS,hbciListAccounts,false -12467,ef429e56-5141-400d-abe1-1aea93882ed8,LIST_TRANSACTIONS,hbciListTransactions,false -12468,ef429e56-5141-400d-abe1-1aea93882ed8,AUTHORIZATION,,false -12469,ef429e56-5141-400d-abe1-1aea93882ed8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12470,ef429e56-5141-400d-abe1-1aea93882ed8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12471,ef429e56-5141-400d-abe1-1aea93882ed8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12466,ff906240-f0c5-406b-99d0-28e54d54a4eb,LIST_ACCOUNTS,hbciListAccounts,false +12467,ff906240-f0c5-406b-99d0-28e54d54a4eb,LIST_TRANSACTIONS,hbciListTransactions,false +12468,ff906240-f0c5-406b-99d0-28e54d54a4eb,AUTHORIZATION,,false +12469,ff906240-f0c5-406b-99d0-28e54d54a4eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12470,ff906240-f0c5-406b-99d0-28e54d54a4eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12471,ff906240-f0c5-406b-99d0-28e54d54a4eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12472,282f8515-b900-4763-bc30-4cfbb9f1af1e,LIST_ACCOUNTS,xs2aListAccounts,true -12473,282f8515-b900-4763-bc30-4cfbb9f1af1e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12473,282f8515-b900-4763-bc30-4cfbb9f1af1e,LIST_TRANSACTIONS,xs2aListTransactions,true 12474,282f8515-b900-4763-bc30-4cfbb9f1af1e,AUTHORIZATION,,true 12475,282f8515-b900-4763-bc30-4cfbb9f1af1e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12476,282f8515-b900-4763-bc30-4cfbb9f1af1e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12477,282f8515-b900-4763-bc30-4cfbb9f1af1e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12478,73bda308-be1c-42cc-8f7f-85e608bd3c4b,LIST_ACCOUNTS,hbciListAccounts,false -12479,73bda308-be1c-42cc-8f7f-85e608bd3c4b,LIST_TRANSACTIONS,hbciListTransactions,false -12480,73bda308-be1c-42cc-8f7f-85e608bd3c4b,AUTHORIZATION,,false -12481,73bda308-be1c-42cc-8f7f-85e608bd3c4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12482,73bda308-be1c-42cc-8f7f-85e608bd3c4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12483,73bda308-be1c-42cc-8f7f-85e608bd3c4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12478,11347778-b6aa-4872-903d-708d4cc7e492,LIST_ACCOUNTS,hbciListAccounts,false +12479,11347778-b6aa-4872-903d-708d4cc7e492,LIST_TRANSACTIONS,hbciListTransactions,false +12480,11347778-b6aa-4872-903d-708d4cc7e492,AUTHORIZATION,,false +12481,11347778-b6aa-4872-903d-708d4cc7e492,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12482,11347778-b6aa-4872-903d-708d4cc7e492,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12483,11347778-b6aa-4872-903d-708d4cc7e492,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12484,675f2c0a-389c-49d3-8134-b17ec157884b,LIST_ACCOUNTS,xs2aListAccounts,true -12485,675f2c0a-389c-49d3-8134-b17ec157884b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12485,675f2c0a-389c-49d3-8134-b17ec157884b,LIST_TRANSACTIONS,xs2aListTransactions,true 12486,675f2c0a-389c-49d3-8134-b17ec157884b,AUTHORIZATION,,true 12487,675f2c0a-389c-49d3-8134-b17ec157884b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12488,675f2c0a-389c-49d3-8134-b17ec157884b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12489,675f2c0a-389c-49d3-8134-b17ec157884b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12490,3f2fe446-b491-4a5a-b07f-dda1fa09b4ec,LIST_ACCOUNTS,hbciListAccounts,false -12491,3f2fe446-b491-4a5a-b07f-dda1fa09b4ec,LIST_TRANSACTIONS,hbciListTransactions,false -12492,3f2fe446-b491-4a5a-b07f-dda1fa09b4ec,AUTHORIZATION,,false -12493,3f2fe446-b491-4a5a-b07f-dda1fa09b4ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12494,3f2fe446-b491-4a5a-b07f-dda1fa09b4ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12495,3f2fe446-b491-4a5a-b07f-dda1fa09b4ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12490,65c8154e-7a1b-4e7d-936b-d8a931d5b237,LIST_ACCOUNTS,hbciListAccounts,false +12491,65c8154e-7a1b-4e7d-936b-d8a931d5b237,LIST_TRANSACTIONS,hbciListTransactions,false +12492,65c8154e-7a1b-4e7d-936b-d8a931d5b237,AUTHORIZATION,,false +12493,65c8154e-7a1b-4e7d-936b-d8a931d5b237,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12494,65c8154e-7a1b-4e7d-936b-d8a931d5b237,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12495,65c8154e-7a1b-4e7d-936b-d8a931d5b237,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12496,0d31de54-ff62-41fd-bdad-740199258441,LIST_ACCOUNTS,xs2aListAccounts,true -12497,0d31de54-ff62-41fd-bdad-740199258441,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12497,0d31de54-ff62-41fd-bdad-740199258441,LIST_TRANSACTIONS,xs2aListTransactions,true 12498,0d31de54-ff62-41fd-bdad-740199258441,AUTHORIZATION,,true 12499,0d31de54-ff62-41fd-bdad-740199258441,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12500,0d31de54-ff62-41fd-bdad-740199258441,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12501,0d31de54-ff62-41fd-bdad-740199258441,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12502,2f29ef20-3fa1-4885-be41-efba54395df6,LIST_ACCOUNTS,hbciListAccounts,false -12503,2f29ef20-3fa1-4885-be41-efba54395df6,LIST_TRANSACTIONS,hbciListTransactions,false -12504,2f29ef20-3fa1-4885-be41-efba54395df6,AUTHORIZATION,,false -12505,2f29ef20-3fa1-4885-be41-efba54395df6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12506,2f29ef20-3fa1-4885-be41-efba54395df6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12507,2f29ef20-3fa1-4885-be41-efba54395df6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12502,0bf02854-c4e2-404a-92f1-365dff09a1cd,LIST_ACCOUNTS,hbciListAccounts,false +12503,0bf02854-c4e2-404a-92f1-365dff09a1cd,LIST_TRANSACTIONS,hbciListTransactions,false +12504,0bf02854-c4e2-404a-92f1-365dff09a1cd,AUTHORIZATION,,false +12505,0bf02854-c4e2-404a-92f1-365dff09a1cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12506,0bf02854-c4e2-404a-92f1-365dff09a1cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12507,0bf02854-c4e2-404a-92f1-365dff09a1cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12508,fe447b25-201b-44a5-9994-15e9a22fe141,LIST_ACCOUNTS,xs2aListAccounts,true -12509,fe447b25-201b-44a5-9994-15e9a22fe141,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12509,fe447b25-201b-44a5-9994-15e9a22fe141,LIST_TRANSACTIONS,xs2aListTransactions,true 12510,fe447b25-201b-44a5-9994-15e9a22fe141,AUTHORIZATION,,true 12511,fe447b25-201b-44a5-9994-15e9a22fe141,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12512,fe447b25-201b-44a5-9994-15e9a22fe141,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12513,fe447b25-201b-44a5-9994-15e9a22fe141,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12514,c720904f-c28a-4892-8da6-7772d50ba589,LIST_ACCOUNTS,hbciListAccounts,false -12515,c720904f-c28a-4892-8da6-7772d50ba589,LIST_TRANSACTIONS,hbciListTransactions,false -12516,c720904f-c28a-4892-8da6-7772d50ba589,AUTHORIZATION,,false -12517,c720904f-c28a-4892-8da6-7772d50ba589,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12518,c720904f-c28a-4892-8da6-7772d50ba589,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12519,c720904f-c28a-4892-8da6-7772d50ba589,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12514,e489a1eb-1643-499a-a005-ab2f08684e48,LIST_ACCOUNTS,hbciListAccounts,false +12515,e489a1eb-1643-499a-a005-ab2f08684e48,LIST_TRANSACTIONS,hbciListTransactions,false +12516,e489a1eb-1643-499a-a005-ab2f08684e48,AUTHORIZATION,,false +12517,e489a1eb-1643-499a-a005-ab2f08684e48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12518,e489a1eb-1643-499a-a005-ab2f08684e48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12519,e489a1eb-1643-499a-a005-ab2f08684e48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12520,71cd0ff2-9486-4319-a8b2-5a5455c7217a,LIST_ACCOUNTS,xs2aListAccounts,true -12521,71cd0ff2-9486-4319-a8b2-5a5455c7217a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12521,71cd0ff2-9486-4319-a8b2-5a5455c7217a,LIST_TRANSACTIONS,xs2aListTransactions,true 12522,71cd0ff2-9486-4319-a8b2-5a5455c7217a,AUTHORIZATION,,true 12523,71cd0ff2-9486-4319-a8b2-5a5455c7217a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12524,71cd0ff2-9486-4319-a8b2-5a5455c7217a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12525,71cd0ff2-9486-4319-a8b2-5a5455c7217a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12526,4113c68d-4347-4dd3-bec7-9d2c01b5d49e,LIST_ACCOUNTS,hbciListAccounts,false -12527,4113c68d-4347-4dd3-bec7-9d2c01b5d49e,LIST_TRANSACTIONS,hbciListTransactions,false -12528,4113c68d-4347-4dd3-bec7-9d2c01b5d49e,AUTHORIZATION,,false -12529,4113c68d-4347-4dd3-bec7-9d2c01b5d49e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12530,4113c68d-4347-4dd3-bec7-9d2c01b5d49e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12531,4113c68d-4347-4dd3-bec7-9d2c01b5d49e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12526,8b8b8219-8cf1-46e8-a7a4-6845d8e37050,LIST_ACCOUNTS,hbciListAccounts,false +12527,8b8b8219-8cf1-46e8-a7a4-6845d8e37050,LIST_TRANSACTIONS,hbciListTransactions,false +12528,8b8b8219-8cf1-46e8-a7a4-6845d8e37050,AUTHORIZATION,,false +12529,8b8b8219-8cf1-46e8-a7a4-6845d8e37050,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12530,8b8b8219-8cf1-46e8-a7a4-6845d8e37050,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12531,8b8b8219-8cf1-46e8-a7a4-6845d8e37050,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12532,52ea520b-0e1a-41d0-9a3c-81b46eddca77,LIST_ACCOUNTS,xs2aListAccounts,true -12533,52ea520b-0e1a-41d0-9a3c-81b46eddca77,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12533,52ea520b-0e1a-41d0-9a3c-81b46eddca77,LIST_TRANSACTIONS,xs2aListTransactions,true 12534,52ea520b-0e1a-41d0-9a3c-81b46eddca77,AUTHORIZATION,,true 12535,52ea520b-0e1a-41d0-9a3c-81b46eddca77,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12536,52ea520b-0e1a-41d0-9a3c-81b46eddca77,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12537,52ea520b-0e1a-41d0-9a3c-81b46eddca77,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12538,44f7f97d-2abe-4e89-8ab4-6e31bf5b8fe0,LIST_ACCOUNTS,hbciListAccounts,false -12539,44f7f97d-2abe-4e89-8ab4-6e31bf5b8fe0,LIST_TRANSACTIONS,hbciListTransactions,false -12540,44f7f97d-2abe-4e89-8ab4-6e31bf5b8fe0,AUTHORIZATION,,false -12541,44f7f97d-2abe-4e89-8ab4-6e31bf5b8fe0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12542,44f7f97d-2abe-4e89-8ab4-6e31bf5b8fe0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12543,44f7f97d-2abe-4e89-8ab4-6e31bf5b8fe0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12538,a919c826-48b9-4030-a8b1-6343f5cecb25,LIST_ACCOUNTS,hbciListAccounts,false +12539,a919c826-48b9-4030-a8b1-6343f5cecb25,LIST_TRANSACTIONS,hbciListTransactions,false +12540,a919c826-48b9-4030-a8b1-6343f5cecb25,AUTHORIZATION,,false +12541,a919c826-48b9-4030-a8b1-6343f5cecb25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12542,a919c826-48b9-4030-a8b1-6343f5cecb25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12543,a919c826-48b9-4030-a8b1-6343f5cecb25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12544,905fb4de-b52a-4877-8c47-4b6f6be99544,LIST_ACCOUNTS,xs2aListAccounts,true -12545,905fb4de-b52a-4877-8c47-4b6f6be99544,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12545,905fb4de-b52a-4877-8c47-4b6f6be99544,LIST_TRANSACTIONS,xs2aListTransactions,true 12546,905fb4de-b52a-4877-8c47-4b6f6be99544,AUTHORIZATION,,true 12547,905fb4de-b52a-4877-8c47-4b6f6be99544,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12548,905fb4de-b52a-4877-8c47-4b6f6be99544,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12549,905fb4de-b52a-4877-8c47-4b6f6be99544,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12550,c690d504-988a-45cb-9c20-da14a302bf98,LIST_ACCOUNTS,hbciListAccounts,false -12551,c690d504-988a-45cb-9c20-da14a302bf98,LIST_TRANSACTIONS,hbciListTransactions,false -12552,c690d504-988a-45cb-9c20-da14a302bf98,AUTHORIZATION,,false -12553,c690d504-988a-45cb-9c20-da14a302bf98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12554,c690d504-988a-45cb-9c20-da14a302bf98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12555,c690d504-988a-45cb-9c20-da14a302bf98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12550,2f0f9755-a093-49ae-9dc8-afed5478d394,LIST_ACCOUNTS,hbciListAccounts,false +12551,2f0f9755-a093-49ae-9dc8-afed5478d394,LIST_TRANSACTIONS,hbciListTransactions,false +12552,2f0f9755-a093-49ae-9dc8-afed5478d394,AUTHORIZATION,,false +12553,2f0f9755-a093-49ae-9dc8-afed5478d394,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12554,2f0f9755-a093-49ae-9dc8-afed5478d394,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12555,2f0f9755-a093-49ae-9dc8-afed5478d394,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12556,e208dd9b-854c-441a-9789-85997eae5bab,LIST_ACCOUNTS,xs2aListAccounts,true -12557,e208dd9b-854c-441a-9789-85997eae5bab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12557,e208dd9b-854c-441a-9789-85997eae5bab,LIST_TRANSACTIONS,xs2aListTransactions,true 12558,e208dd9b-854c-441a-9789-85997eae5bab,AUTHORIZATION,,true 12559,e208dd9b-854c-441a-9789-85997eae5bab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12560,e208dd9b-854c-441a-9789-85997eae5bab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12561,e208dd9b-854c-441a-9789-85997eae5bab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12562,901a77b7-0087-48af-89ed-9c18ed8d5cd6,LIST_ACCOUNTS,hbciListAccounts,false -12563,901a77b7-0087-48af-89ed-9c18ed8d5cd6,LIST_TRANSACTIONS,hbciListTransactions,false -12564,901a77b7-0087-48af-89ed-9c18ed8d5cd6,AUTHORIZATION,,false -12565,901a77b7-0087-48af-89ed-9c18ed8d5cd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12566,901a77b7-0087-48af-89ed-9c18ed8d5cd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12567,901a77b7-0087-48af-89ed-9c18ed8d5cd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12562,8f9287cf-4ae6-4c27-a31a-8c89d53878a0,LIST_ACCOUNTS,hbciListAccounts,false +12563,8f9287cf-4ae6-4c27-a31a-8c89d53878a0,LIST_TRANSACTIONS,hbciListTransactions,false +12564,8f9287cf-4ae6-4c27-a31a-8c89d53878a0,AUTHORIZATION,,false +12565,8f9287cf-4ae6-4c27-a31a-8c89d53878a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12566,8f9287cf-4ae6-4c27-a31a-8c89d53878a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12567,8f9287cf-4ae6-4c27-a31a-8c89d53878a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12568,89d14024-b58d-4b8d-93a4-3d1c1a599b7a,LIST_ACCOUNTS,xs2aListAccounts,true -12569,89d14024-b58d-4b8d-93a4-3d1c1a599b7a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12569,89d14024-b58d-4b8d-93a4-3d1c1a599b7a,LIST_TRANSACTIONS,xs2aListTransactions,true 12570,89d14024-b58d-4b8d-93a4-3d1c1a599b7a,AUTHORIZATION,,true 12571,89d14024-b58d-4b8d-93a4-3d1c1a599b7a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12572,89d14024-b58d-4b8d-93a4-3d1c1a599b7a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12573,89d14024-b58d-4b8d-93a4-3d1c1a599b7a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12574,0c75978d-b593-4dea-ad6f-b3d92e0fb2d5,LIST_ACCOUNTS,hbciListAccounts,false -12575,0c75978d-b593-4dea-ad6f-b3d92e0fb2d5,LIST_TRANSACTIONS,hbciListTransactions,false -12576,0c75978d-b593-4dea-ad6f-b3d92e0fb2d5,AUTHORIZATION,,false -12577,0c75978d-b593-4dea-ad6f-b3d92e0fb2d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12578,0c75978d-b593-4dea-ad6f-b3d92e0fb2d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12579,0c75978d-b593-4dea-ad6f-b3d92e0fb2d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12574,8d78b637-86e6-473b-b9ee-adcde03dc0cf,LIST_ACCOUNTS,hbciListAccounts,false +12575,8d78b637-86e6-473b-b9ee-adcde03dc0cf,LIST_TRANSACTIONS,hbciListTransactions,false +12576,8d78b637-86e6-473b-b9ee-adcde03dc0cf,AUTHORIZATION,,false +12577,8d78b637-86e6-473b-b9ee-adcde03dc0cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12578,8d78b637-86e6-473b-b9ee-adcde03dc0cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12579,8d78b637-86e6-473b-b9ee-adcde03dc0cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12580,516b7d67-933f-4770-bad2-f5716010a1f9,LIST_ACCOUNTS,xs2aListAccounts,true -12581,516b7d67-933f-4770-bad2-f5716010a1f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12581,516b7d67-933f-4770-bad2-f5716010a1f9,LIST_TRANSACTIONS,xs2aListTransactions,true 12582,516b7d67-933f-4770-bad2-f5716010a1f9,AUTHORIZATION,,true 12583,516b7d67-933f-4770-bad2-f5716010a1f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12584,516b7d67-933f-4770-bad2-f5716010a1f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12585,516b7d67-933f-4770-bad2-f5716010a1f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12586,9371d424-f1a5-494e-9577-3123a04e5dde,LIST_ACCOUNTS,hbciListAccounts,false -12587,9371d424-f1a5-494e-9577-3123a04e5dde,LIST_TRANSACTIONS,hbciListTransactions,false -12588,9371d424-f1a5-494e-9577-3123a04e5dde,AUTHORIZATION,,false -12589,9371d424-f1a5-494e-9577-3123a04e5dde,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12590,9371d424-f1a5-494e-9577-3123a04e5dde,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12591,9371d424-f1a5-494e-9577-3123a04e5dde,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12586,3855d15d-2dbd-42c4-bc00-b49434cd4d8b,LIST_ACCOUNTS,hbciListAccounts,false +12587,3855d15d-2dbd-42c4-bc00-b49434cd4d8b,LIST_TRANSACTIONS,hbciListTransactions,false +12588,3855d15d-2dbd-42c4-bc00-b49434cd4d8b,AUTHORIZATION,,false +12589,3855d15d-2dbd-42c4-bc00-b49434cd4d8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12590,3855d15d-2dbd-42c4-bc00-b49434cd4d8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12591,3855d15d-2dbd-42c4-bc00-b49434cd4d8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12592,3c856f85-dca0-4af9-a8d7-58f5051897fa,LIST_ACCOUNTS,xs2aListAccounts,true -12593,3c856f85-dca0-4af9-a8d7-58f5051897fa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12593,3c856f85-dca0-4af9-a8d7-58f5051897fa,LIST_TRANSACTIONS,xs2aListTransactions,true 12594,3c856f85-dca0-4af9-a8d7-58f5051897fa,AUTHORIZATION,,true 12595,3c856f85-dca0-4af9-a8d7-58f5051897fa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12596,3c856f85-dca0-4af9-a8d7-58f5051897fa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12597,3c856f85-dca0-4af9-a8d7-58f5051897fa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12598,79a413d3-c972-452f-b2c4-f581ee1062dc,LIST_ACCOUNTS,hbciListAccounts,false -12599,79a413d3-c972-452f-b2c4-f581ee1062dc,LIST_TRANSACTIONS,hbciListTransactions,false -12600,79a413d3-c972-452f-b2c4-f581ee1062dc,AUTHORIZATION,,false -12601,79a413d3-c972-452f-b2c4-f581ee1062dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12602,79a413d3-c972-452f-b2c4-f581ee1062dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12603,79a413d3-c972-452f-b2c4-f581ee1062dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12598,f4c99397-1531-4dca-aa47-53a9f9356210,LIST_ACCOUNTS,hbciListAccounts,false +12599,f4c99397-1531-4dca-aa47-53a9f9356210,LIST_TRANSACTIONS,hbciListTransactions,false +12600,f4c99397-1531-4dca-aa47-53a9f9356210,AUTHORIZATION,,false +12601,f4c99397-1531-4dca-aa47-53a9f9356210,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12602,f4c99397-1531-4dca-aa47-53a9f9356210,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12603,f4c99397-1531-4dca-aa47-53a9f9356210,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12604,fafd70d6-a1e0-44b8-a5db-1e7cb3dd9e81,LIST_ACCOUNTS,xs2aListAccounts,true -12605,fafd70d6-a1e0-44b8-a5db-1e7cb3dd9e81,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12605,fafd70d6-a1e0-44b8-a5db-1e7cb3dd9e81,LIST_TRANSACTIONS,xs2aListTransactions,true 12606,fafd70d6-a1e0-44b8-a5db-1e7cb3dd9e81,AUTHORIZATION,,true 12607,fafd70d6-a1e0-44b8-a5db-1e7cb3dd9e81,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12608,fafd70d6-a1e0-44b8-a5db-1e7cb3dd9e81,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12609,fafd70d6-a1e0-44b8-a5db-1e7cb3dd9e81,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12610,e983af6d-9919-449a-afb6-cdd27e1222e6,LIST_ACCOUNTS,hbciListAccounts,false -12611,e983af6d-9919-449a-afb6-cdd27e1222e6,LIST_TRANSACTIONS,hbciListTransactions,false -12612,e983af6d-9919-449a-afb6-cdd27e1222e6,AUTHORIZATION,,false -12613,e983af6d-9919-449a-afb6-cdd27e1222e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12614,e983af6d-9919-449a-afb6-cdd27e1222e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12615,e983af6d-9919-449a-afb6-cdd27e1222e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12610,bf890ec5-826c-49ed-84f8-b16f1d9c072f,LIST_ACCOUNTS,hbciListAccounts,false +12611,bf890ec5-826c-49ed-84f8-b16f1d9c072f,LIST_TRANSACTIONS,hbciListTransactions,false +12612,bf890ec5-826c-49ed-84f8-b16f1d9c072f,AUTHORIZATION,,false +12613,bf890ec5-826c-49ed-84f8-b16f1d9c072f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12614,bf890ec5-826c-49ed-84f8-b16f1d9c072f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12615,bf890ec5-826c-49ed-84f8-b16f1d9c072f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12616,978816e3-c4d7-4ae9-a85c-f3746a95b0b0,LIST_ACCOUNTS,xs2aListAccounts,true -12617,978816e3-c4d7-4ae9-a85c-f3746a95b0b0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12617,978816e3-c4d7-4ae9-a85c-f3746a95b0b0,LIST_TRANSACTIONS,xs2aListTransactions,true 12618,978816e3-c4d7-4ae9-a85c-f3746a95b0b0,AUTHORIZATION,,true 12619,978816e3-c4d7-4ae9-a85c-f3746a95b0b0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12620,978816e3-c4d7-4ae9-a85c-f3746a95b0b0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12621,978816e3-c4d7-4ae9-a85c-f3746a95b0b0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12622,3bfb6c21-f3a3-4cc8-9ee1-62dd48d194aa,LIST_ACCOUNTS,hbciListAccounts,false -12623,3bfb6c21-f3a3-4cc8-9ee1-62dd48d194aa,LIST_TRANSACTIONS,hbciListTransactions,false -12624,3bfb6c21-f3a3-4cc8-9ee1-62dd48d194aa,AUTHORIZATION,,false -12625,3bfb6c21-f3a3-4cc8-9ee1-62dd48d194aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12626,3bfb6c21-f3a3-4cc8-9ee1-62dd48d194aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12627,3bfb6c21-f3a3-4cc8-9ee1-62dd48d194aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12622,8e060b2c-712b-4781-85c2-e51e0dcd3beb,LIST_ACCOUNTS,hbciListAccounts,false +12623,8e060b2c-712b-4781-85c2-e51e0dcd3beb,LIST_TRANSACTIONS,hbciListTransactions,false +12624,8e060b2c-712b-4781-85c2-e51e0dcd3beb,AUTHORIZATION,,false +12625,8e060b2c-712b-4781-85c2-e51e0dcd3beb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12626,8e060b2c-712b-4781-85c2-e51e0dcd3beb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12627,8e060b2c-712b-4781-85c2-e51e0dcd3beb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12628,ca2dbb9a-4d8e-490d-84c1-3279e199b200,LIST_ACCOUNTS,xs2aListAccounts,true -12629,ca2dbb9a-4d8e-490d-84c1-3279e199b200,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12629,ca2dbb9a-4d8e-490d-84c1-3279e199b200,LIST_TRANSACTIONS,xs2aListTransactions,true 12630,ca2dbb9a-4d8e-490d-84c1-3279e199b200,AUTHORIZATION,,true 12631,ca2dbb9a-4d8e-490d-84c1-3279e199b200,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12632,ca2dbb9a-4d8e-490d-84c1-3279e199b200,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12633,ca2dbb9a-4d8e-490d-84c1-3279e199b200,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12634,b410c612-5b28-410c-aa03-5b1660eb0e53,LIST_ACCOUNTS,hbciListAccounts,false -12635,b410c612-5b28-410c-aa03-5b1660eb0e53,LIST_TRANSACTIONS,hbciListTransactions,false -12636,b410c612-5b28-410c-aa03-5b1660eb0e53,AUTHORIZATION,,false -12637,b410c612-5b28-410c-aa03-5b1660eb0e53,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12638,b410c612-5b28-410c-aa03-5b1660eb0e53,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12639,b410c612-5b28-410c-aa03-5b1660eb0e53,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12634,b9f01b44-44f5-4d7d-ae09-03f032c2df21,LIST_ACCOUNTS,hbciListAccounts,false +12635,b9f01b44-44f5-4d7d-ae09-03f032c2df21,LIST_TRANSACTIONS,hbciListTransactions,false +12636,b9f01b44-44f5-4d7d-ae09-03f032c2df21,AUTHORIZATION,,false +12637,b9f01b44-44f5-4d7d-ae09-03f032c2df21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12638,b9f01b44-44f5-4d7d-ae09-03f032c2df21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12639,b9f01b44-44f5-4d7d-ae09-03f032c2df21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12640,eede4b82-a479-4571-8153-738b7a9d2508,LIST_ACCOUNTS,xs2aListAccounts,true -12641,eede4b82-a479-4571-8153-738b7a9d2508,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12641,eede4b82-a479-4571-8153-738b7a9d2508,LIST_TRANSACTIONS,xs2aListTransactions,true 12642,eede4b82-a479-4571-8153-738b7a9d2508,AUTHORIZATION,,true 12643,eede4b82-a479-4571-8153-738b7a9d2508,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12644,eede4b82-a479-4571-8153-738b7a9d2508,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12645,eede4b82-a479-4571-8153-738b7a9d2508,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12646,abeff93a-373e-469a-9932-36d7c9b06f10,LIST_ACCOUNTS,hbciListAccounts,false -12647,abeff93a-373e-469a-9932-36d7c9b06f10,LIST_TRANSACTIONS,hbciListTransactions,false -12648,abeff93a-373e-469a-9932-36d7c9b06f10,AUTHORIZATION,,false -12649,abeff93a-373e-469a-9932-36d7c9b06f10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12650,abeff93a-373e-469a-9932-36d7c9b06f10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12651,abeff93a-373e-469a-9932-36d7c9b06f10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12646,c59c1f10-e633-419e-8f3f-876395fb5083,LIST_ACCOUNTS,hbciListAccounts,false +12647,c59c1f10-e633-419e-8f3f-876395fb5083,LIST_TRANSACTIONS,hbciListTransactions,false +12648,c59c1f10-e633-419e-8f3f-876395fb5083,AUTHORIZATION,,false +12649,c59c1f10-e633-419e-8f3f-876395fb5083,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12650,c59c1f10-e633-419e-8f3f-876395fb5083,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12651,c59c1f10-e633-419e-8f3f-876395fb5083,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12652,34234a70-af26-4fbd-84a6-3134e07d30dd,LIST_ACCOUNTS,xs2aListAccounts,true -12653,34234a70-af26-4fbd-84a6-3134e07d30dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12653,34234a70-af26-4fbd-84a6-3134e07d30dd,LIST_TRANSACTIONS,xs2aListTransactions,true 12654,34234a70-af26-4fbd-84a6-3134e07d30dd,AUTHORIZATION,,true 12655,34234a70-af26-4fbd-84a6-3134e07d30dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12656,34234a70-af26-4fbd-84a6-3134e07d30dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12657,34234a70-af26-4fbd-84a6-3134e07d30dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12658,3567af74-cbc4-42e3-8751-da0c372c49db,LIST_ACCOUNTS,hbciListAccounts,false -12659,3567af74-cbc4-42e3-8751-da0c372c49db,LIST_TRANSACTIONS,hbciListTransactions,false -12660,3567af74-cbc4-42e3-8751-da0c372c49db,AUTHORIZATION,,false -12661,3567af74-cbc4-42e3-8751-da0c372c49db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12662,3567af74-cbc4-42e3-8751-da0c372c49db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12663,3567af74-cbc4-42e3-8751-da0c372c49db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12658,1e3500ff-0860-4c80-bcd2-5a28a88347f1,LIST_ACCOUNTS,hbciListAccounts,false +12659,1e3500ff-0860-4c80-bcd2-5a28a88347f1,LIST_TRANSACTIONS,hbciListTransactions,false +12660,1e3500ff-0860-4c80-bcd2-5a28a88347f1,AUTHORIZATION,,false +12661,1e3500ff-0860-4c80-bcd2-5a28a88347f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12662,1e3500ff-0860-4c80-bcd2-5a28a88347f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12663,1e3500ff-0860-4c80-bcd2-5a28a88347f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12664,328ceed7-3d3d-4734-ae6c-11a77b007bb5,LIST_ACCOUNTS,xs2aListAccounts,true -12665,328ceed7-3d3d-4734-ae6c-11a77b007bb5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12665,328ceed7-3d3d-4734-ae6c-11a77b007bb5,LIST_TRANSACTIONS,xs2aListTransactions,true 12666,328ceed7-3d3d-4734-ae6c-11a77b007bb5,AUTHORIZATION,,true 12667,328ceed7-3d3d-4734-ae6c-11a77b007bb5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12668,328ceed7-3d3d-4734-ae6c-11a77b007bb5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12669,328ceed7-3d3d-4734-ae6c-11a77b007bb5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12670,e61d9123-24e8-42f3-a902-2e345b2ac656,LIST_ACCOUNTS,hbciListAccounts,false -12671,e61d9123-24e8-42f3-a902-2e345b2ac656,LIST_TRANSACTIONS,hbciListTransactions,false -12672,e61d9123-24e8-42f3-a902-2e345b2ac656,AUTHORIZATION,,false -12673,e61d9123-24e8-42f3-a902-2e345b2ac656,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12674,e61d9123-24e8-42f3-a902-2e345b2ac656,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12675,e61d9123-24e8-42f3-a902-2e345b2ac656,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12670,c9009ec6-ae45-4b00-8b3b-9f915b7ec5b7,LIST_ACCOUNTS,hbciListAccounts,false +12671,c9009ec6-ae45-4b00-8b3b-9f915b7ec5b7,LIST_TRANSACTIONS,hbciListTransactions,false +12672,c9009ec6-ae45-4b00-8b3b-9f915b7ec5b7,AUTHORIZATION,,false +12673,c9009ec6-ae45-4b00-8b3b-9f915b7ec5b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12674,c9009ec6-ae45-4b00-8b3b-9f915b7ec5b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12675,c9009ec6-ae45-4b00-8b3b-9f915b7ec5b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12676,dd1399e7-51e7-410c-97c3-950c62f6a7cb,LIST_ACCOUNTS,xs2aListAccounts,true -12677,dd1399e7-51e7-410c-97c3-950c62f6a7cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12677,dd1399e7-51e7-410c-97c3-950c62f6a7cb,LIST_TRANSACTIONS,xs2aListTransactions,true 12678,dd1399e7-51e7-410c-97c3-950c62f6a7cb,AUTHORIZATION,,true 12679,dd1399e7-51e7-410c-97c3-950c62f6a7cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12680,dd1399e7-51e7-410c-97c3-950c62f6a7cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12681,dd1399e7-51e7-410c-97c3-950c62f6a7cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12682,2ae74e8a-e3d9-487b-84f9-e449b5e6f758,LIST_ACCOUNTS,hbciListAccounts,false -12683,2ae74e8a-e3d9-487b-84f9-e449b5e6f758,LIST_TRANSACTIONS,hbciListTransactions,false -12684,2ae74e8a-e3d9-487b-84f9-e449b5e6f758,AUTHORIZATION,,false -12685,2ae74e8a-e3d9-487b-84f9-e449b5e6f758,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12686,2ae74e8a-e3d9-487b-84f9-e449b5e6f758,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12687,2ae74e8a-e3d9-487b-84f9-e449b5e6f758,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12682,174f3d52-41e1-4ab3-b09e-bdab6e90df38,LIST_ACCOUNTS,hbciListAccounts,false +12683,174f3d52-41e1-4ab3-b09e-bdab6e90df38,LIST_TRANSACTIONS,hbciListTransactions,false +12684,174f3d52-41e1-4ab3-b09e-bdab6e90df38,AUTHORIZATION,,false +12685,174f3d52-41e1-4ab3-b09e-bdab6e90df38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12686,174f3d52-41e1-4ab3-b09e-bdab6e90df38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12687,174f3d52-41e1-4ab3-b09e-bdab6e90df38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12688,db5d5f33-8608-4f28-8cc1-eb53ea34503b,LIST_ACCOUNTS,xs2aListAccounts,true -12689,db5d5f33-8608-4f28-8cc1-eb53ea34503b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12689,db5d5f33-8608-4f28-8cc1-eb53ea34503b,LIST_TRANSACTIONS,xs2aListTransactions,true 12690,db5d5f33-8608-4f28-8cc1-eb53ea34503b,AUTHORIZATION,,true 12691,db5d5f33-8608-4f28-8cc1-eb53ea34503b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12692,db5d5f33-8608-4f28-8cc1-eb53ea34503b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12693,db5d5f33-8608-4f28-8cc1-eb53ea34503b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12694,d3a308f0-27ab-49f9-8aaa-9bc390c92d8c,LIST_ACCOUNTS,hbciListAccounts,false -12695,d3a308f0-27ab-49f9-8aaa-9bc390c92d8c,LIST_TRANSACTIONS,hbciListTransactions,false -12696,d3a308f0-27ab-49f9-8aaa-9bc390c92d8c,AUTHORIZATION,,false -12697,d3a308f0-27ab-49f9-8aaa-9bc390c92d8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12698,d3a308f0-27ab-49f9-8aaa-9bc390c92d8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12699,d3a308f0-27ab-49f9-8aaa-9bc390c92d8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12694,c3c28583-aa5e-49c3-902d-f51bf989ef2e,LIST_ACCOUNTS,hbciListAccounts,false +12695,c3c28583-aa5e-49c3-902d-f51bf989ef2e,LIST_TRANSACTIONS,hbciListTransactions,false +12696,c3c28583-aa5e-49c3-902d-f51bf989ef2e,AUTHORIZATION,,false +12697,c3c28583-aa5e-49c3-902d-f51bf989ef2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12698,c3c28583-aa5e-49c3-902d-f51bf989ef2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12699,c3c28583-aa5e-49c3-902d-f51bf989ef2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12700,36f91648-e9f5-491a-aeb3-06bededc6749,LIST_ACCOUNTS,xs2aListAccounts,true -12701,36f91648-e9f5-491a-aeb3-06bededc6749,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12701,36f91648-e9f5-491a-aeb3-06bededc6749,LIST_TRANSACTIONS,xs2aListTransactions,true 12702,36f91648-e9f5-491a-aeb3-06bededc6749,AUTHORIZATION,,true 12703,36f91648-e9f5-491a-aeb3-06bededc6749,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12704,36f91648-e9f5-491a-aeb3-06bededc6749,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12705,36f91648-e9f5-491a-aeb3-06bededc6749,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12706,5e35f16f-0ecc-4972-8d2b-f2bb354aec57,LIST_ACCOUNTS,hbciListAccounts,false -12707,5e35f16f-0ecc-4972-8d2b-f2bb354aec57,LIST_TRANSACTIONS,hbciListTransactions,false -12708,5e35f16f-0ecc-4972-8d2b-f2bb354aec57,AUTHORIZATION,,false -12709,5e35f16f-0ecc-4972-8d2b-f2bb354aec57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12710,5e35f16f-0ecc-4972-8d2b-f2bb354aec57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12711,5e35f16f-0ecc-4972-8d2b-f2bb354aec57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12706,9b63b020-ced4-461c-aa2e-61630f4351c9,LIST_ACCOUNTS,hbciListAccounts,false +12707,9b63b020-ced4-461c-aa2e-61630f4351c9,LIST_TRANSACTIONS,hbciListTransactions,false +12708,9b63b020-ced4-461c-aa2e-61630f4351c9,AUTHORIZATION,,false +12709,9b63b020-ced4-461c-aa2e-61630f4351c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12710,9b63b020-ced4-461c-aa2e-61630f4351c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12711,9b63b020-ced4-461c-aa2e-61630f4351c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12712,afec1e4b-81e7-492c-bade-3dd513470e90,LIST_ACCOUNTS,xs2aListAccounts,true -12713,afec1e4b-81e7-492c-bade-3dd513470e90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12713,afec1e4b-81e7-492c-bade-3dd513470e90,LIST_TRANSACTIONS,xs2aListTransactions,true 12714,afec1e4b-81e7-492c-bade-3dd513470e90,AUTHORIZATION,,true 12715,afec1e4b-81e7-492c-bade-3dd513470e90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12716,afec1e4b-81e7-492c-bade-3dd513470e90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12717,afec1e4b-81e7-492c-bade-3dd513470e90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12718,15b026b3-f6a8-4809-9e7e-20bb92795a30,LIST_ACCOUNTS,hbciListAccounts,false -12719,15b026b3-f6a8-4809-9e7e-20bb92795a30,LIST_TRANSACTIONS,hbciListTransactions,false -12720,15b026b3-f6a8-4809-9e7e-20bb92795a30,AUTHORIZATION,,false -12721,15b026b3-f6a8-4809-9e7e-20bb92795a30,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12722,15b026b3-f6a8-4809-9e7e-20bb92795a30,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12723,15b026b3-f6a8-4809-9e7e-20bb92795a30,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12718,0867fe6e-a7eb-4610-aa3f-0096ed8e2cd1,LIST_ACCOUNTS,hbciListAccounts,false +12719,0867fe6e-a7eb-4610-aa3f-0096ed8e2cd1,LIST_TRANSACTIONS,hbciListTransactions,false +12720,0867fe6e-a7eb-4610-aa3f-0096ed8e2cd1,AUTHORIZATION,,false +12721,0867fe6e-a7eb-4610-aa3f-0096ed8e2cd1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12722,0867fe6e-a7eb-4610-aa3f-0096ed8e2cd1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12723,0867fe6e-a7eb-4610-aa3f-0096ed8e2cd1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12724,4de53a31-de54-4ee8-af9e-41ee46f0938f,LIST_ACCOUNTS,xs2aListAccounts,true -12725,4de53a31-de54-4ee8-af9e-41ee46f0938f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12725,4de53a31-de54-4ee8-af9e-41ee46f0938f,LIST_TRANSACTIONS,xs2aListTransactions,true 12726,4de53a31-de54-4ee8-af9e-41ee46f0938f,AUTHORIZATION,,true 12727,4de53a31-de54-4ee8-af9e-41ee46f0938f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12728,4de53a31-de54-4ee8-af9e-41ee46f0938f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12729,4de53a31-de54-4ee8-af9e-41ee46f0938f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12730,7b469ff1-1fc9-45a1-aa3e-6813bce7cc10,LIST_ACCOUNTS,hbciListAccounts,false -12731,7b469ff1-1fc9-45a1-aa3e-6813bce7cc10,LIST_TRANSACTIONS,hbciListTransactions,false -12732,7b469ff1-1fc9-45a1-aa3e-6813bce7cc10,AUTHORIZATION,,false -12733,7b469ff1-1fc9-45a1-aa3e-6813bce7cc10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12734,7b469ff1-1fc9-45a1-aa3e-6813bce7cc10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12735,7b469ff1-1fc9-45a1-aa3e-6813bce7cc10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12730,aace16f3-444c-4b9f-b864-37126d0df42d,LIST_ACCOUNTS,hbciListAccounts,false +12731,aace16f3-444c-4b9f-b864-37126d0df42d,LIST_TRANSACTIONS,hbciListTransactions,false +12732,aace16f3-444c-4b9f-b864-37126d0df42d,AUTHORIZATION,,false +12733,aace16f3-444c-4b9f-b864-37126d0df42d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12734,aace16f3-444c-4b9f-b864-37126d0df42d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12735,aace16f3-444c-4b9f-b864-37126d0df42d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12736,04a07510-5b95-41f4-95bf-841a87241321,LIST_ACCOUNTS,xs2aListAccounts,true -12737,04a07510-5b95-41f4-95bf-841a87241321,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12737,04a07510-5b95-41f4-95bf-841a87241321,LIST_TRANSACTIONS,xs2aListTransactions,true 12738,04a07510-5b95-41f4-95bf-841a87241321,AUTHORIZATION,,true 12739,04a07510-5b95-41f4-95bf-841a87241321,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12740,04a07510-5b95-41f4-95bf-841a87241321,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12741,04a07510-5b95-41f4-95bf-841a87241321,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12742,3e501091-4fef-44d6-a4b1-2db850046d67,LIST_ACCOUNTS,hbciListAccounts,false -12743,3e501091-4fef-44d6-a4b1-2db850046d67,LIST_TRANSACTIONS,hbciListTransactions,false -12744,3e501091-4fef-44d6-a4b1-2db850046d67,AUTHORIZATION,,false -12745,3e501091-4fef-44d6-a4b1-2db850046d67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12746,3e501091-4fef-44d6-a4b1-2db850046d67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12747,3e501091-4fef-44d6-a4b1-2db850046d67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12742,498593a1-7a51-4456-a9c0-f62e9b1fa6f0,LIST_ACCOUNTS,hbciListAccounts,false +12743,498593a1-7a51-4456-a9c0-f62e9b1fa6f0,LIST_TRANSACTIONS,hbciListTransactions,false +12744,498593a1-7a51-4456-a9c0-f62e9b1fa6f0,AUTHORIZATION,,false +12745,498593a1-7a51-4456-a9c0-f62e9b1fa6f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12746,498593a1-7a51-4456-a9c0-f62e9b1fa6f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12747,498593a1-7a51-4456-a9c0-f62e9b1fa6f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12748,7998d34e-3c17-435b-8aed-b7fc42260fa4,LIST_ACCOUNTS,xs2aListAccounts,true -12749,7998d34e-3c17-435b-8aed-b7fc42260fa4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12749,7998d34e-3c17-435b-8aed-b7fc42260fa4,LIST_TRANSACTIONS,xs2aListTransactions,true 12750,7998d34e-3c17-435b-8aed-b7fc42260fa4,AUTHORIZATION,,true 12751,7998d34e-3c17-435b-8aed-b7fc42260fa4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12752,7998d34e-3c17-435b-8aed-b7fc42260fa4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12753,7998d34e-3c17-435b-8aed-b7fc42260fa4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12754,fc0a4588-6b02-4095-918e-b7b873669dbf,LIST_ACCOUNTS,hbciListAccounts,false -12755,fc0a4588-6b02-4095-918e-b7b873669dbf,LIST_TRANSACTIONS,hbciListTransactions,false -12756,fc0a4588-6b02-4095-918e-b7b873669dbf,AUTHORIZATION,,false -12757,fc0a4588-6b02-4095-918e-b7b873669dbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12758,fc0a4588-6b02-4095-918e-b7b873669dbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12759,fc0a4588-6b02-4095-918e-b7b873669dbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12754,78878b9e-0d52-4c7b-93d3-a80a743a265d,LIST_ACCOUNTS,hbciListAccounts,false +12755,78878b9e-0d52-4c7b-93d3-a80a743a265d,LIST_TRANSACTIONS,hbciListTransactions,false +12756,78878b9e-0d52-4c7b-93d3-a80a743a265d,AUTHORIZATION,,false +12757,78878b9e-0d52-4c7b-93d3-a80a743a265d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12758,78878b9e-0d52-4c7b-93d3-a80a743a265d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12759,78878b9e-0d52-4c7b-93d3-a80a743a265d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12760,b738c95e-293b-4173-b9e4-f1dda9fa87d3,LIST_ACCOUNTS,xs2aListAccounts,true -12761,b738c95e-293b-4173-b9e4-f1dda9fa87d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12761,b738c95e-293b-4173-b9e4-f1dda9fa87d3,LIST_TRANSACTIONS,xs2aListTransactions,true 12762,b738c95e-293b-4173-b9e4-f1dda9fa87d3,AUTHORIZATION,,true 12763,b738c95e-293b-4173-b9e4-f1dda9fa87d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12764,b738c95e-293b-4173-b9e4-f1dda9fa87d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12765,b738c95e-293b-4173-b9e4-f1dda9fa87d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12766,4396a3a2-d20c-43f4-802f-6c18e0ed1a3c,LIST_ACCOUNTS,hbciListAccounts,false -12767,4396a3a2-d20c-43f4-802f-6c18e0ed1a3c,LIST_TRANSACTIONS,hbciListTransactions,false -12768,4396a3a2-d20c-43f4-802f-6c18e0ed1a3c,AUTHORIZATION,,false -12769,4396a3a2-d20c-43f4-802f-6c18e0ed1a3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12770,4396a3a2-d20c-43f4-802f-6c18e0ed1a3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12771,4396a3a2-d20c-43f4-802f-6c18e0ed1a3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12766,96b8b81d-37f0-412a-9c79-e58383cd2454,LIST_ACCOUNTS,hbciListAccounts,false +12767,96b8b81d-37f0-412a-9c79-e58383cd2454,LIST_TRANSACTIONS,hbciListTransactions,false +12768,96b8b81d-37f0-412a-9c79-e58383cd2454,AUTHORIZATION,,false +12769,96b8b81d-37f0-412a-9c79-e58383cd2454,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12770,96b8b81d-37f0-412a-9c79-e58383cd2454,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12771,96b8b81d-37f0-412a-9c79-e58383cd2454,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12772,93d30161-ac36-4f2d-8bd4-89fcc3856289,LIST_ACCOUNTS,xs2aListAccounts,true -12773,93d30161-ac36-4f2d-8bd4-89fcc3856289,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12773,93d30161-ac36-4f2d-8bd4-89fcc3856289,LIST_TRANSACTIONS,xs2aListTransactions,true 12774,93d30161-ac36-4f2d-8bd4-89fcc3856289,AUTHORIZATION,,true 12775,93d30161-ac36-4f2d-8bd4-89fcc3856289,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12776,93d30161-ac36-4f2d-8bd4-89fcc3856289,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12777,93d30161-ac36-4f2d-8bd4-89fcc3856289,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12778,a4c16abf-4e7b-4971-bb4d-2481d5bef20b,LIST_ACCOUNTS,hbciListAccounts,false -12779,a4c16abf-4e7b-4971-bb4d-2481d5bef20b,LIST_TRANSACTIONS,hbciListTransactions,false -12780,a4c16abf-4e7b-4971-bb4d-2481d5bef20b,AUTHORIZATION,,false -12781,a4c16abf-4e7b-4971-bb4d-2481d5bef20b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12782,a4c16abf-4e7b-4971-bb4d-2481d5bef20b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12783,a4c16abf-4e7b-4971-bb4d-2481d5bef20b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12778,52c66e31-48ea-4656-8ec3-7af84ed6b9c8,LIST_ACCOUNTS,hbciListAccounts,false +12779,52c66e31-48ea-4656-8ec3-7af84ed6b9c8,LIST_TRANSACTIONS,hbciListTransactions,false +12780,52c66e31-48ea-4656-8ec3-7af84ed6b9c8,AUTHORIZATION,,false +12781,52c66e31-48ea-4656-8ec3-7af84ed6b9c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12782,52c66e31-48ea-4656-8ec3-7af84ed6b9c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12783,52c66e31-48ea-4656-8ec3-7af84ed6b9c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12784,8f8c89f1-9a49-47aa-b6ba-20d86148d0d3,LIST_ACCOUNTS,xs2aListAccounts,true -12785,8f8c89f1-9a49-47aa-b6ba-20d86148d0d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12785,8f8c89f1-9a49-47aa-b6ba-20d86148d0d3,LIST_TRANSACTIONS,xs2aListTransactions,true 12786,8f8c89f1-9a49-47aa-b6ba-20d86148d0d3,AUTHORIZATION,,true 12787,8f8c89f1-9a49-47aa-b6ba-20d86148d0d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12788,8f8c89f1-9a49-47aa-b6ba-20d86148d0d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12789,8f8c89f1-9a49-47aa-b6ba-20d86148d0d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12790,e5b302fc-364a-4297-8f96-c379b468fafb,LIST_ACCOUNTS,hbciListAccounts,false -12791,e5b302fc-364a-4297-8f96-c379b468fafb,LIST_TRANSACTIONS,hbciListTransactions,false -12792,e5b302fc-364a-4297-8f96-c379b468fafb,AUTHORIZATION,,false -12793,e5b302fc-364a-4297-8f96-c379b468fafb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12794,e5b302fc-364a-4297-8f96-c379b468fafb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12795,e5b302fc-364a-4297-8f96-c379b468fafb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12790,7b1e82f0-8bd6-43d8-bf93-dafca0ac46a3,LIST_ACCOUNTS,hbciListAccounts,false +12791,7b1e82f0-8bd6-43d8-bf93-dafca0ac46a3,LIST_TRANSACTIONS,hbciListTransactions,false +12792,7b1e82f0-8bd6-43d8-bf93-dafca0ac46a3,AUTHORIZATION,,false +12793,7b1e82f0-8bd6-43d8-bf93-dafca0ac46a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12794,7b1e82f0-8bd6-43d8-bf93-dafca0ac46a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12795,7b1e82f0-8bd6-43d8-bf93-dafca0ac46a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12796,c8ca45ff-fd44-4f5a-962b-e29b66e91ffb,LIST_ACCOUNTS,xs2aListAccounts,true -12797,c8ca45ff-fd44-4f5a-962b-e29b66e91ffb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12797,c8ca45ff-fd44-4f5a-962b-e29b66e91ffb,LIST_TRANSACTIONS,xs2aListTransactions,true 12798,c8ca45ff-fd44-4f5a-962b-e29b66e91ffb,AUTHORIZATION,,true 12799,c8ca45ff-fd44-4f5a-962b-e29b66e91ffb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12800,c8ca45ff-fd44-4f5a-962b-e29b66e91ffb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12801,c8ca45ff-fd44-4f5a-962b-e29b66e91ffb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12802,6e64680e-355f-46b7-a992-b40ab657f056,LIST_ACCOUNTS,hbciListAccounts,false -12803,6e64680e-355f-46b7-a992-b40ab657f056,LIST_TRANSACTIONS,hbciListTransactions,false -12804,6e64680e-355f-46b7-a992-b40ab657f056,AUTHORIZATION,,false -12805,6e64680e-355f-46b7-a992-b40ab657f056,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12806,6e64680e-355f-46b7-a992-b40ab657f056,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12807,6e64680e-355f-46b7-a992-b40ab657f056,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12802,4ac8bff7-2d56-4b55-a976-259bec09a33d,LIST_ACCOUNTS,hbciListAccounts,false +12803,4ac8bff7-2d56-4b55-a976-259bec09a33d,LIST_TRANSACTIONS,hbciListTransactions,false +12804,4ac8bff7-2d56-4b55-a976-259bec09a33d,AUTHORIZATION,,false +12805,4ac8bff7-2d56-4b55-a976-259bec09a33d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12806,4ac8bff7-2d56-4b55-a976-259bec09a33d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12807,4ac8bff7-2d56-4b55-a976-259bec09a33d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12808,3af18501-d84f-4ec0-9af4-8585bcefd5f7,LIST_ACCOUNTS,xs2aListAccounts,true -12809,3af18501-d84f-4ec0-9af4-8585bcefd5f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12809,3af18501-d84f-4ec0-9af4-8585bcefd5f7,LIST_TRANSACTIONS,xs2aListTransactions,true 12810,3af18501-d84f-4ec0-9af4-8585bcefd5f7,AUTHORIZATION,,true 12811,3af18501-d84f-4ec0-9af4-8585bcefd5f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12812,3af18501-d84f-4ec0-9af4-8585bcefd5f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12813,3af18501-d84f-4ec0-9af4-8585bcefd5f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12814,2d333f9f-6be8-4cf3-ad63-5ab7a42691bb,LIST_ACCOUNTS,hbciListAccounts,false -12815,2d333f9f-6be8-4cf3-ad63-5ab7a42691bb,LIST_TRANSACTIONS,hbciListTransactions,false -12816,2d333f9f-6be8-4cf3-ad63-5ab7a42691bb,AUTHORIZATION,,false -12817,2d333f9f-6be8-4cf3-ad63-5ab7a42691bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12818,2d333f9f-6be8-4cf3-ad63-5ab7a42691bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12819,2d333f9f-6be8-4cf3-ad63-5ab7a42691bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12814,3d55c173-1ef2-41a1-9a6f-f815a4904404,LIST_ACCOUNTS,hbciListAccounts,false +12815,3d55c173-1ef2-41a1-9a6f-f815a4904404,LIST_TRANSACTIONS,hbciListTransactions,false +12816,3d55c173-1ef2-41a1-9a6f-f815a4904404,AUTHORIZATION,,false +12817,3d55c173-1ef2-41a1-9a6f-f815a4904404,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12818,3d55c173-1ef2-41a1-9a6f-f815a4904404,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12819,3d55c173-1ef2-41a1-9a6f-f815a4904404,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12820,a4b6153c-3e89-4115-88b9-2377d05bbb7d,LIST_ACCOUNTS,xs2aListAccounts,true -12821,a4b6153c-3e89-4115-88b9-2377d05bbb7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12821,a4b6153c-3e89-4115-88b9-2377d05bbb7d,LIST_TRANSACTIONS,xs2aListTransactions,true 12822,a4b6153c-3e89-4115-88b9-2377d05bbb7d,AUTHORIZATION,,true 12823,a4b6153c-3e89-4115-88b9-2377d05bbb7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12824,a4b6153c-3e89-4115-88b9-2377d05bbb7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12825,a4b6153c-3e89-4115-88b9-2377d05bbb7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12826,c8d5a2ca-e6c6-484b-b7ef-ae28908d0502,LIST_ACCOUNTS,hbciListAccounts,false -12827,c8d5a2ca-e6c6-484b-b7ef-ae28908d0502,LIST_TRANSACTIONS,hbciListTransactions,false -12828,c8d5a2ca-e6c6-484b-b7ef-ae28908d0502,AUTHORIZATION,,false -12829,c8d5a2ca-e6c6-484b-b7ef-ae28908d0502,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12830,c8d5a2ca-e6c6-484b-b7ef-ae28908d0502,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12831,c8d5a2ca-e6c6-484b-b7ef-ae28908d0502,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12826,f1bb05f9-3ef2-4589-bf68-d048bdab5490,LIST_ACCOUNTS,hbciListAccounts,false +12827,f1bb05f9-3ef2-4589-bf68-d048bdab5490,LIST_TRANSACTIONS,hbciListTransactions,false +12828,f1bb05f9-3ef2-4589-bf68-d048bdab5490,AUTHORIZATION,,false +12829,f1bb05f9-3ef2-4589-bf68-d048bdab5490,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12830,f1bb05f9-3ef2-4589-bf68-d048bdab5490,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12831,f1bb05f9-3ef2-4589-bf68-d048bdab5490,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12832,daf3c31b-149e-4d6f-b78f-ce600edfdddc,LIST_ACCOUNTS,xs2aListAccounts,true -12833,daf3c31b-149e-4d6f-b78f-ce600edfdddc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12833,daf3c31b-149e-4d6f-b78f-ce600edfdddc,LIST_TRANSACTIONS,xs2aListTransactions,true 12834,daf3c31b-149e-4d6f-b78f-ce600edfdddc,AUTHORIZATION,,true 12835,daf3c31b-149e-4d6f-b78f-ce600edfdddc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12836,daf3c31b-149e-4d6f-b78f-ce600edfdddc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12837,daf3c31b-149e-4d6f-b78f-ce600edfdddc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12838,d3abe37b-2566-4798-8c13-9dcb170e1faa,LIST_ACCOUNTS,hbciListAccounts,false -12839,d3abe37b-2566-4798-8c13-9dcb170e1faa,LIST_TRANSACTIONS,hbciListTransactions,false -12840,d3abe37b-2566-4798-8c13-9dcb170e1faa,AUTHORIZATION,,false -12841,d3abe37b-2566-4798-8c13-9dcb170e1faa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12842,d3abe37b-2566-4798-8c13-9dcb170e1faa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12843,d3abe37b-2566-4798-8c13-9dcb170e1faa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12838,4e86ef42-d80e-47fd-ad5b-831a1636a195,LIST_ACCOUNTS,hbciListAccounts,false +12839,4e86ef42-d80e-47fd-ad5b-831a1636a195,LIST_TRANSACTIONS,hbciListTransactions,false +12840,4e86ef42-d80e-47fd-ad5b-831a1636a195,AUTHORIZATION,,false +12841,4e86ef42-d80e-47fd-ad5b-831a1636a195,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12842,4e86ef42-d80e-47fd-ad5b-831a1636a195,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12843,4e86ef42-d80e-47fd-ad5b-831a1636a195,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12844,3a3a7c9e-9caa-4504-8300-e585817b979f,LIST_ACCOUNTS,xs2aListAccounts,true -12845,3a3a7c9e-9caa-4504-8300-e585817b979f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12845,3a3a7c9e-9caa-4504-8300-e585817b979f,LIST_TRANSACTIONS,xs2aListTransactions,true 12846,3a3a7c9e-9caa-4504-8300-e585817b979f,AUTHORIZATION,,true 12847,3a3a7c9e-9caa-4504-8300-e585817b979f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12848,3a3a7c9e-9caa-4504-8300-e585817b979f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12849,3a3a7c9e-9caa-4504-8300-e585817b979f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12850,04cf92d7-6b43-4265-aa52-e3dfbcc9b1de,LIST_ACCOUNTS,hbciListAccounts,false -12851,04cf92d7-6b43-4265-aa52-e3dfbcc9b1de,LIST_TRANSACTIONS,hbciListTransactions,false -12852,04cf92d7-6b43-4265-aa52-e3dfbcc9b1de,AUTHORIZATION,,false -12853,04cf92d7-6b43-4265-aa52-e3dfbcc9b1de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12854,04cf92d7-6b43-4265-aa52-e3dfbcc9b1de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12855,04cf92d7-6b43-4265-aa52-e3dfbcc9b1de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12850,f0041a13-fc72-4f9f-9562-d345a7c7fe0b,LIST_ACCOUNTS,hbciListAccounts,false +12851,f0041a13-fc72-4f9f-9562-d345a7c7fe0b,LIST_TRANSACTIONS,hbciListTransactions,false +12852,f0041a13-fc72-4f9f-9562-d345a7c7fe0b,AUTHORIZATION,,false +12853,f0041a13-fc72-4f9f-9562-d345a7c7fe0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12854,f0041a13-fc72-4f9f-9562-d345a7c7fe0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12855,f0041a13-fc72-4f9f-9562-d345a7c7fe0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12856,9d38e980-1900-4b47-96c0-ff3920aec30a,LIST_ACCOUNTS,xs2aListAccounts,true -12857,9d38e980-1900-4b47-96c0-ff3920aec30a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12857,9d38e980-1900-4b47-96c0-ff3920aec30a,LIST_TRANSACTIONS,xs2aListTransactions,true 12858,9d38e980-1900-4b47-96c0-ff3920aec30a,AUTHORIZATION,,true 12859,9d38e980-1900-4b47-96c0-ff3920aec30a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12860,9d38e980-1900-4b47-96c0-ff3920aec30a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12861,9d38e980-1900-4b47-96c0-ff3920aec30a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12862,4e35a43a-a86e-4b87-9847-62a61a6ba2cc,LIST_ACCOUNTS,hbciListAccounts,false -12863,4e35a43a-a86e-4b87-9847-62a61a6ba2cc,LIST_TRANSACTIONS,hbciListTransactions,false -12864,4e35a43a-a86e-4b87-9847-62a61a6ba2cc,AUTHORIZATION,,false -12865,4e35a43a-a86e-4b87-9847-62a61a6ba2cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12866,4e35a43a-a86e-4b87-9847-62a61a6ba2cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12867,4e35a43a-a86e-4b87-9847-62a61a6ba2cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12862,0fff479f-5e49-4726-8d78-1d9d93031fa0,LIST_ACCOUNTS,hbciListAccounts,false +12863,0fff479f-5e49-4726-8d78-1d9d93031fa0,LIST_TRANSACTIONS,hbciListTransactions,false +12864,0fff479f-5e49-4726-8d78-1d9d93031fa0,AUTHORIZATION,,false +12865,0fff479f-5e49-4726-8d78-1d9d93031fa0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12866,0fff479f-5e49-4726-8d78-1d9d93031fa0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12867,0fff479f-5e49-4726-8d78-1d9d93031fa0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12868,7f060be5-7ff0-41eb-8b9b-25ba7f8aada1,LIST_ACCOUNTS,xs2aListAccounts,true -12869,7f060be5-7ff0-41eb-8b9b-25ba7f8aada1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12869,7f060be5-7ff0-41eb-8b9b-25ba7f8aada1,LIST_TRANSACTIONS,xs2aListTransactions,true 12870,7f060be5-7ff0-41eb-8b9b-25ba7f8aada1,AUTHORIZATION,,true 12871,7f060be5-7ff0-41eb-8b9b-25ba7f8aada1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12872,7f060be5-7ff0-41eb-8b9b-25ba7f8aada1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12873,7f060be5-7ff0-41eb-8b9b-25ba7f8aada1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12874,b381c6e6-0d0d-4d7b-b8ad-0a05d24e503e,LIST_ACCOUNTS,hbciListAccounts,false -12875,b381c6e6-0d0d-4d7b-b8ad-0a05d24e503e,LIST_TRANSACTIONS,hbciListTransactions,false -12876,b381c6e6-0d0d-4d7b-b8ad-0a05d24e503e,AUTHORIZATION,,false -12877,b381c6e6-0d0d-4d7b-b8ad-0a05d24e503e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12878,b381c6e6-0d0d-4d7b-b8ad-0a05d24e503e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12879,b381c6e6-0d0d-4d7b-b8ad-0a05d24e503e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12874,3e17a3a4-3085-47b0-a9a9-7f40c13ac9f8,LIST_ACCOUNTS,hbciListAccounts,false +12875,3e17a3a4-3085-47b0-a9a9-7f40c13ac9f8,LIST_TRANSACTIONS,hbciListTransactions,false +12876,3e17a3a4-3085-47b0-a9a9-7f40c13ac9f8,AUTHORIZATION,,false +12877,3e17a3a4-3085-47b0-a9a9-7f40c13ac9f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12878,3e17a3a4-3085-47b0-a9a9-7f40c13ac9f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12879,3e17a3a4-3085-47b0-a9a9-7f40c13ac9f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12880,16548ae0-bc9a-423b-866a-acc0cd0761c1,LIST_ACCOUNTS,xs2aListAccounts,true -12881,16548ae0-bc9a-423b-866a-acc0cd0761c1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12881,16548ae0-bc9a-423b-866a-acc0cd0761c1,LIST_TRANSACTIONS,xs2aListTransactions,true 12882,16548ae0-bc9a-423b-866a-acc0cd0761c1,AUTHORIZATION,,true 12883,16548ae0-bc9a-423b-866a-acc0cd0761c1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12884,16548ae0-bc9a-423b-866a-acc0cd0761c1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12885,16548ae0-bc9a-423b-866a-acc0cd0761c1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12886,dbe7ad42-f88c-4d92-b9ab-3fe4eb4749bb,LIST_ACCOUNTS,hbciListAccounts,false -12887,dbe7ad42-f88c-4d92-b9ab-3fe4eb4749bb,LIST_TRANSACTIONS,hbciListTransactions,false -12888,dbe7ad42-f88c-4d92-b9ab-3fe4eb4749bb,AUTHORIZATION,,false -12889,dbe7ad42-f88c-4d92-b9ab-3fe4eb4749bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12890,dbe7ad42-f88c-4d92-b9ab-3fe4eb4749bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12891,dbe7ad42-f88c-4d92-b9ab-3fe4eb4749bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12886,f4c1640f-b972-49ed-ba0c-66b41a34682e,LIST_ACCOUNTS,hbciListAccounts,false +12887,f4c1640f-b972-49ed-ba0c-66b41a34682e,LIST_TRANSACTIONS,hbciListTransactions,false +12888,f4c1640f-b972-49ed-ba0c-66b41a34682e,AUTHORIZATION,,false +12889,f4c1640f-b972-49ed-ba0c-66b41a34682e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12890,f4c1640f-b972-49ed-ba0c-66b41a34682e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12891,f4c1640f-b972-49ed-ba0c-66b41a34682e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12892,bad0cfcb-ae32-459a-bbd4-6f867e98a1b0,LIST_ACCOUNTS,xs2aListAccounts,true -12893,bad0cfcb-ae32-459a-bbd4-6f867e98a1b0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12893,bad0cfcb-ae32-459a-bbd4-6f867e98a1b0,LIST_TRANSACTIONS,xs2aListTransactions,true 12894,bad0cfcb-ae32-459a-bbd4-6f867e98a1b0,AUTHORIZATION,,true 12895,bad0cfcb-ae32-459a-bbd4-6f867e98a1b0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12896,bad0cfcb-ae32-459a-bbd4-6f867e98a1b0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12897,bad0cfcb-ae32-459a-bbd4-6f867e98a1b0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12898,7f45b475-98cf-4838-971f-29fa24ead321,LIST_ACCOUNTS,hbciListAccounts,false -12899,7f45b475-98cf-4838-971f-29fa24ead321,LIST_TRANSACTIONS,hbciListTransactions,false -12900,7f45b475-98cf-4838-971f-29fa24ead321,AUTHORIZATION,,false -12901,7f45b475-98cf-4838-971f-29fa24ead321,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12902,7f45b475-98cf-4838-971f-29fa24ead321,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12903,7f45b475-98cf-4838-971f-29fa24ead321,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12898,f31312a8-5ef4-4f0a-8cc7-9db23983755e,LIST_ACCOUNTS,hbciListAccounts,false +12899,f31312a8-5ef4-4f0a-8cc7-9db23983755e,LIST_TRANSACTIONS,hbciListTransactions,false +12900,f31312a8-5ef4-4f0a-8cc7-9db23983755e,AUTHORIZATION,,false +12901,f31312a8-5ef4-4f0a-8cc7-9db23983755e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12902,f31312a8-5ef4-4f0a-8cc7-9db23983755e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12903,f31312a8-5ef4-4f0a-8cc7-9db23983755e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12904,3db6ad6b-f398-4681-95de-b3a73166bfe6,LIST_ACCOUNTS,xs2aListAccounts,true -12905,3db6ad6b-f398-4681-95de-b3a73166bfe6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12905,3db6ad6b-f398-4681-95de-b3a73166bfe6,LIST_TRANSACTIONS,xs2aListTransactions,true 12906,3db6ad6b-f398-4681-95de-b3a73166bfe6,AUTHORIZATION,,true 12907,3db6ad6b-f398-4681-95de-b3a73166bfe6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12908,3db6ad6b-f398-4681-95de-b3a73166bfe6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12909,3db6ad6b-f398-4681-95de-b3a73166bfe6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12910,68869465-fb3c-4512-abc0-280c870837e0,LIST_ACCOUNTS,hbciListAccounts,false -12911,68869465-fb3c-4512-abc0-280c870837e0,LIST_TRANSACTIONS,hbciListTransactions,false -12912,68869465-fb3c-4512-abc0-280c870837e0,AUTHORIZATION,,false -12913,68869465-fb3c-4512-abc0-280c870837e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12914,68869465-fb3c-4512-abc0-280c870837e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12915,68869465-fb3c-4512-abc0-280c870837e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12910,0398e713-fdb5-4e1e-b1c8-074f32cb2deb,LIST_ACCOUNTS,hbciListAccounts,false +12911,0398e713-fdb5-4e1e-b1c8-074f32cb2deb,LIST_TRANSACTIONS,hbciListTransactions,false +12912,0398e713-fdb5-4e1e-b1c8-074f32cb2deb,AUTHORIZATION,,false +12913,0398e713-fdb5-4e1e-b1c8-074f32cb2deb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12914,0398e713-fdb5-4e1e-b1c8-074f32cb2deb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12915,0398e713-fdb5-4e1e-b1c8-074f32cb2deb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12916,17ca6a3c-0665-4152-8b95-452536f890c7,LIST_ACCOUNTS,xs2aListAccounts,true -12917,17ca6a3c-0665-4152-8b95-452536f890c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12917,17ca6a3c-0665-4152-8b95-452536f890c7,LIST_TRANSACTIONS,xs2aListTransactions,true 12918,17ca6a3c-0665-4152-8b95-452536f890c7,AUTHORIZATION,,true 12919,17ca6a3c-0665-4152-8b95-452536f890c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12920,17ca6a3c-0665-4152-8b95-452536f890c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12921,17ca6a3c-0665-4152-8b95-452536f890c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12922,e5b91ed6-4630-46e0-a42e-0dbdd075a751,LIST_ACCOUNTS,hbciListAccounts,false -12923,e5b91ed6-4630-46e0-a42e-0dbdd075a751,LIST_TRANSACTIONS,hbciListTransactions,false -12924,e5b91ed6-4630-46e0-a42e-0dbdd075a751,AUTHORIZATION,,false -12925,e5b91ed6-4630-46e0-a42e-0dbdd075a751,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12926,e5b91ed6-4630-46e0-a42e-0dbdd075a751,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12927,e5b91ed6-4630-46e0-a42e-0dbdd075a751,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12922,bbdfe3fc-0816-4acf-81c8-ede553f77105,LIST_ACCOUNTS,hbciListAccounts,false +12923,bbdfe3fc-0816-4acf-81c8-ede553f77105,LIST_TRANSACTIONS,hbciListTransactions,false +12924,bbdfe3fc-0816-4acf-81c8-ede553f77105,AUTHORIZATION,,false +12925,bbdfe3fc-0816-4acf-81c8-ede553f77105,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12926,bbdfe3fc-0816-4acf-81c8-ede553f77105,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12927,bbdfe3fc-0816-4acf-81c8-ede553f77105,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12928,02a9d721-0607-4e2d-b8b9-33115da690b7,LIST_ACCOUNTS,xs2aListAccounts,true -12929,02a9d721-0607-4e2d-b8b9-33115da690b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12929,02a9d721-0607-4e2d-b8b9-33115da690b7,LIST_TRANSACTIONS,xs2aListTransactions,true 12930,02a9d721-0607-4e2d-b8b9-33115da690b7,AUTHORIZATION,,true 12931,02a9d721-0607-4e2d-b8b9-33115da690b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12932,02a9d721-0607-4e2d-b8b9-33115da690b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12933,02a9d721-0607-4e2d-b8b9-33115da690b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12934,4e161a02-cc8b-4df5-b4f7-1559201d822e,LIST_ACCOUNTS,hbciListAccounts,false -12935,4e161a02-cc8b-4df5-b4f7-1559201d822e,LIST_TRANSACTIONS,hbciListTransactions,false -12936,4e161a02-cc8b-4df5-b4f7-1559201d822e,AUTHORIZATION,,false -12937,4e161a02-cc8b-4df5-b4f7-1559201d822e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12938,4e161a02-cc8b-4df5-b4f7-1559201d822e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12939,4e161a02-cc8b-4df5-b4f7-1559201d822e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12934,a8c27147-f77a-4840-8a87-04a1167f4986,LIST_ACCOUNTS,hbciListAccounts,false +12935,a8c27147-f77a-4840-8a87-04a1167f4986,LIST_TRANSACTIONS,hbciListTransactions,false +12936,a8c27147-f77a-4840-8a87-04a1167f4986,AUTHORIZATION,,false +12937,a8c27147-f77a-4840-8a87-04a1167f4986,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12938,a8c27147-f77a-4840-8a87-04a1167f4986,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12939,a8c27147-f77a-4840-8a87-04a1167f4986,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12940,4f40ebfe-9922-4ca5-be16-f5c1f0ad1aae,LIST_ACCOUNTS,xs2aListAccounts,true -12941,4f40ebfe-9922-4ca5-be16-f5c1f0ad1aae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12941,4f40ebfe-9922-4ca5-be16-f5c1f0ad1aae,LIST_TRANSACTIONS,xs2aListTransactions,true 12942,4f40ebfe-9922-4ca5-be16-f5c1f0ad1aae,AUTHORIZATION,,true 12943,4f40ebfe-9922-4ca5-be16-f5c1f0ad1aae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12944,4f40ebfe-9922-4ca5-be16-f5c1f0ad1aae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12945,4f40ebfe-9922-4ca5-be16-f5c1f0ad1aae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12946,919fa2a8-8119-4fa2-9619-5773d2bc82c4,LIST_ACCOUNTS,hbciListAccounts,false -12947,919fa2a8-8119-4fa2-9619-5773d2bc82c4,LIST_TRANSACTIONS,hbciListTransactions,false -12948,919fa2a8-8119-4fa2-9619-5773d2bc82c4,AUTHORIZATION,,false -12949,919fa2a8-8119-4fa2-9619-5773d2bc82c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12950,919fa2a8-8119-4fa2-9619-5773d2bc82c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12951,919fa2a8-8119-4fa2-9619-5773d2bc82c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12946,9db337b3-92e5-452d-9a76-f6a3f672073b,LIST_ACCOUNTS,hbciListAccounts,false +12947,9db337b3-92e5-452d-9a76-f6a3f672073b,LIST_TRANSACTIONS,hbciListTransactions,false +12948,9db337b3-92e5-452d-9a76-f6a3f672073b,AUTHORIZATION,,false +12949,9db337b3-92e5-452d-9a76-f6a3f672073b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12950,9db337b3-92e5-452d-9a76-f6a3f672073b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12951,9db337b3-92e5-452d-9a76-f6a3f672073b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12952,a9893861-9a3d-41c8-970d-c958b1eafa8c,LIST_ACCOUNTS,xs2aListAccounts,true -12953,a9893861-9a3d-41c8-970d-c958b1eafa8c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12953,a9893861-9a3d-41c8-970d-c958b1eafa8c,LIST_TRANSACTIONS,xs2aListTransactions,true 12954,a9893861-9a3d-41c8-970d-c958b1eafa8c,AUTHORIZATION,,true 12955,a9893861-9a3d-41c8-970d-c958b1eafa8c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12956,a9893861-9a3d-41c8-970d-c958b1eafa8c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12957,a9893861-9a3d-41c8-970d-c958b1eafa8c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12958,9816808d-46b7-4578-8824-c245a8588bdb,LIST_ACCOUNTS,hbciListAccounts,false -12959,9816808d-46b7-4578-8824-c245a8588bdb,LIST_TRANSACTIONS,hbciListTransactions,false -12960,9816808d-46b7-4578-8824-c245a8588bdb,AUTHORIZATION,,false -12961,9816808d-46b7-4578-8824-c245a8588bdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12962,9816808d-46b7-4578-8824-c245a8588bdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12963,9816808d-46b7-4578-8824-c245a8588bdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12958,79a83664-01de-4e25-b217-42189b7273f8,LIST_ACCOUNTS,hbciListAccounts,false +12959,79a83664-01de-4e25-b217-42189b7273f8,LIST_TRANSACTIONS,hbciListTransactions,false +12960,79a83664-01de-4e25-b217-42189b7273f8,AUTHORIZATION,,false +12961,79a83664-01de-4e25-b217-42189b7273f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12962,79a83664-01de-4e25-b217-42189b7273f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12963,79a83664-01de-4e25-b217-42189b7273f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12964,ee08dec6-28d9-4bf3-b4a3-0afe80ca8178,LIST_ACCOUNTS,xs2aListAccounts,true -12965,ee08dec6-28d9-4bf3-b4a3-0afe80ca8178,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12965,ee08dec6-28d9-4bf3-b4a3-0afe80ca8178,LIST_TRANSACTIONS,xs2aListTransactions,true 12966,ee08dec6-28d9-4bf3-b4a3-0afe80ca8178,AUTHORIZATION,,true 12967,ee08dec6-28d9-4bf3-b4a3-0afe80ca8178,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12968,ee08dec6-28d9-4bf3-b4a3-0afe80ca8178,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12969,ee08dec6-28d9-4bf3-b4a3-0afe80ca8178,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12970,c223fed1-757d-46be-8e3b-8778440d9fb8,LIST_ACCOUNTS,hbciListAccounts,false -12971,c223fed1-757d-46be-8e3b-8778440d9fb8,LIST_TRANSACTIONS,hbciListTransactions,false -12972,c223fed1-757d-46be-8e3b-8778440d9fb8,AUTHORIZATION,,false -12973,c223fed1-757d-46be-8e3b-8778440d9fb8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12974,c223fed1-757d-46be-8e3b-8778440d9fb8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12975,c223fed1-757d-46be-8e3b-8778440d9fb8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12970,2d43eedf-a38c-400a-9224-b350236eae84,LIST_ACCOUNTS,hbciListAccounts,false +12971,2d43eedf-a38c-400a-9224-b350236eae84,LIST_TRANSACTIONS,hbciListTransactions,false +12972,2d43eedf-a38c-400a-9224-b350236eae84,AUTHORIZATION,,false +12973,2d43eedf-a38c-400a-9224-b350236eae84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12974,2d43eedf-a38c-400a-9224-b350236eae84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12975,2d43eedf-a38c-400a-9224-b350236eae84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12976,491aa9a1-ab77-449e-b636-10ca5afd7523,LIST_ACCOUNTS,xs2aListAccounts,true -12977,491aa9a1-ab77-449e-b636-10ca5afd7523,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12977,491aa9a1-ab77-449e-b636-10ca5afd7523,LIST_TRANSACTIONS,xs2aListTransactions,true 12978,491aa9a1-ab77-449e-b636-10ca5afd7523,AUTHORIZATION,,true 12979,491aa9a1-ab77-449e-b636-10ca5afd7523,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12980,491aa9a1-ab77-449e-b636-10ca5afd7523,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12981,491aa9a1-ab77-449e-b636-10ca5afd7523,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12982,7202cf3e-46c9-42a0-babe-bd4b827e81c6,LIST_ACCOUNTS,hbciListAccounts,false -12983,7202cf3e-46c9-42a0-babe-bd4b827e81c6,LIST_TRANSACTIONS,hbciListTransactions,false -12984,7202cf3e-46c9-42a0-babe-bd4b827e81c6,AUTHORIZATION,,false -12985,7202cf3e-46c9-42a0-babe-bd4b827e81c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12986,7202cf3e-46c9-42a0-babe-bd4b827e81c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12987,7202cf3e-46c9-42a0-babe-bd4b827e81c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12982,20f952b3-60da-4b05-b5b1-ce04bf3fd0be,LIST_ACCOUNTS,hbciListAccounts,false +12983,20f952b3-60da-4b05-b5b1-ce04bf3fd0be,LIST_TRANSACTIONS,hbciListTransactions,false +12984,20f952b3-60da-4b05-b5b1-ce04bf3fd0be,AUTHORIZATION,,false +12985,20f952b3-60da-4b05-b5b1-ce04bf3fd0be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12986,20f952b3-60da-4b05-b5b1-ce04bf3fd0be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12987,20f952b3-60da-4b05-b5b1-ce04bf3fd0be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 12988,a7881b0b-6d31-4b7d-8e39-b0fdf94b4969,LIST_ACCOUNTS,xs2aListAccounts,true -12989,a7881b0b-6d31-4b7d-8e39-b0fdf94b4969,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +12989,a7881b0b-6d31-4b7d-8e39-b0fdf94b4969,LIST_TRANSACTIONS,xs2aListTransactions,true 12990,a7881b0b-6d31-4b7d-8e39-b0fdf94b4969,AUTHORIZATION,,true 12991,a7881b0b-6d31-4b7d-8e39-b0fdf94b4969,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 12992,a7881b0b-6d31-4b7d-8e39-b0fdf94b4969,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 12993,a7881b0b-6d31-4b7d-8e39-b0fdf94b4969,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -12994,de4fabe1-04e5-464a-9c34-5db35d48de1a,LIST_ACCOUNTS,hbciListAccounts,false -12995,de4fabe1-04e5-464a-9c34-5db35d48de1a,LIST_TRANSACTIONS,hbciListTransactions,false -12996,de4fabe1-04e5-464a-9c34-5db35d48de1a,AUTHORIZATION,,false -12997,de4fabe1-04e5-464a-9c34-5db35d48de1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -12998,de4fabe1-04e5-464a-9c34-5db35d48de1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -12999,de4fabe1-04e5-464a-9c34-5db35d48de1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +12994,80638cbf-c7e5-48fe-9f24-a942f730be31,LIST_ACCOUNTS,hbciListAccounts,false +12995,80638cbf-c7e5-48fe-9f24-a942f730be31,LIST_TRANSACTIONS,hbciListTransactions,false +12996,80638cbf-c7e5-48fe-9f24-a942f730be31,AUTHORIZATION,,false +12997,80638cbf-c7e5-48fe-9f24-a942f730be31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +12998,80638cbf-c7e5-48fe-9f24-a942f730be31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +12999,80638cbf-c7e5-48fe-9f24-a942f730be31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13000,461b11eb-ddf6-4319-a5b8-6d826a0e693b,LIST_ACCOUNTS,xs2aListAccounts,true -13001,461b11eb-ddf6-4319-a5b8-6d826a0e693b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13001,461b11eb-ddf6-4319-a5b8-6d826a0e693b,LIST_TRANSACTIONS,xs2aListTransactions,true 13002,461b11eb-ddf6-4319-a5b8-6d826a0e693b,AUTHORIZATION,,true 13003,461b11eb-ddf6-4319-a5b8-6d826a0e693b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13004,461b11eb-ddf6-4319-a5b8-6d826a0e693b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13005,461b11eb-ddf6-4319-a5b8-6d826a0e693b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13006,27126d9f-221f-42e7-9816-edf673a4049f,LIST_ACCOUNTS,hbciListAccounts,false -13007,27126d9f-221f-42e7-9816-edf673a4049f,LIST_TRANSACTIONS,hbciListTransactions,false -13008,27126d9f-221f-42e7-9816-edf673a4049f,AUTHORIZATION,,false -13009,27126d9f-221f-42e7-9816-edf673a4049f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13010,27126d9f-221f-42e7-9816-edf673a4049f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13011,27126d9f-221f-42e7-9816-edf673a4049f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13006,91206252-55dc-4c55-8931-832b6df38957,LIST_ACCOUNTS,hbciListAccounts,false +13007,91206252-55dc-4c55-8931-832b6df38957,LIST_TRANSACTIONS,hbciListTransactions,false +13008,91206252-55dc-4c55-8931-832b6df38957,AUTHORIZATION,,false +13009,91206252-55dc-4c55-8931-832b6df38957,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13010,91206252-55dc-4c55-8931-832b6df38957,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13011,91206252-55dc-4c55-8931-832b6df38957,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13012,58e5d682-7c8b-4956-a36b-8658b708ee42,LIST_ACCOUNTS,xs2aListAccounts,true -13013,58e5d682-7c8b-4956-a36b-8658b708ee42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13013,58e5d682-7c8b-4956-a36b-8658b708ee42,LIST_TRANSACTIONS,xs2aListTransactions,true 13014,58e5d682-7c8b-4956-a36b-8658b708ee42,AUTHORIZATION,,true 13015,58e5d682-7c8b-4956-a36b-8658b708ee42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13016,58e5d682-7c8b-4956-a36b-8658b708ee42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13017,58e5d682-7c8b-4956-a36b-8658b708ee42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13018,01c0c315-a537-4adb-8133-271bb9fdef69,LIST_ACCOUNTS,hbciListAccounts,false -13019,01c0c315-a537-4adb-8133-271bb9fdef69,LIST_TRANSACTIONS,hbciListTransactions,false -13020,01c0c315-a537-4adb-8133-271bb9fdef69,AUTHORIZATION,,false -13021,01c0c315-a537-4adb-8133-271bb9fdef69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13022,01c0c315-a537-4adb-8133-271bb9fdef69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13023,01c0c315-a537-4adb-8133-271bb9fdef69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13018,17f2feed-ca16-4a7d-8140-5ce33c13ace4,LIST_ACCOUNTS,hbciListAccounts,false +13019,17f2feed-ca16-4a7d-8140-5ce33c13ace4,LIST_TRANSACTIONS,hbciListTransactions,false +13020,17f2feed-ca16-4a7d-8140-5ce33c13ace4,AUTHORIZATION,,false +13021,17f2feed-ca16-4a7d-8140-5ce33c13ace4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13022,17f2feed-ca16-4a7d-8140-5ce33c13ace4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13023,17f2feed-ca16-4a7d-8140-5ce33c13ace4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13024,381b0f0e-dc8e-4cf0-95cf-a4537c356809,LIST_ACCOUNTS,xs2aListAccounts,true -13025,381b0f0e-dc8e-4cf0-95cf-a4537c356809,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13025,381b0f0e-dc8e-4cf0-95cf-a4537c356809,LIST_TRANSACTIONS,xs2aListTransactions,true 13026,381b0f0e-dc8e-4cf0-95cf-a4537c356809,AUTHORIZATION,,true 13027,381b0f0e-dc8e-4cf0-95cf-a4537c356809,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13028,381b0f0e-dc8e-4cf0-95cf-a4537c356809,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13029,381b0f0e-dc8e-4cf0-95cf-a4537c356809,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13030,0933482f-9ebd-4fec-92de-2c63346d562f,LIST_ACCOUNTS,hbciListAccounts,false -13031,0933482f-9ebd-4fec-92de-2c63346d562f,LIST_TRANSACTIONS,hbciListTransactions,false -13032,0933482f-9ebd-4fec-92de-2c63346d562f,AUTHORIZATION,,false -13033,0933482f-9ebd-4fec-92de-2c63346d562f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13034,0933482f-9ebd-4fec-92de-2c63346d562f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13035,0933482f-9ebd-4fec-92de-2c63346d562f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13030,711c9940-6980-46e0-bf29-e8efa0b1af3c,LIST_ACCOUNTS,hbciListAccounts,false +13031,711c9940-6980-46e0-bf29-e8efa0b1af3c,LIST_TRANSACTIONS,hbciListTransactions,false +13032,711c9940-6980-46e0-bf29-e8efa0b1af3c,AUTHORIZATION,,false +13033,711c9940-6980-46e0-bf29-e8efa0b1af3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13034,711c9940-6980-46e0-bf29-e8efa0b1af3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13035,711c9940-6980-46e0-bf29-e8efa0b1af3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13036,c2622382-9dc6-4ef2-b2e9-c00d0a9fab15,LIST_ACCOUNTS,xs2aListAccounts,true -13037,c2622382-9dc6-4ef2-b2e9-c00d0a9fab15,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13037,c2622382-9dc6-4ef2-b2e9-c00d0a9fab15,LIST_TRANSACTIONS,xs2aListTransactions,true 13038,c2622382-9dc6-4ef2-b2e9-c00d0a9fab15,AUTHORIZATION,,true 13039,c2622382-9dc6-4ef2-b2e9-c00d0a9fab15,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13040,c2622382-9dc6-4ef2-b2e9-c00d0a9fab15,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13041,c2622382-9dc6-4ef2-b2e9-c00d0a9fab15,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13042,6979a2dc-ef8b-4bad-af35-9b903904eee0,LIST_ACCOUNTS,hbciListAccounts,false -13043,6979a2dc-ef8b-4bad-af35-9b903904eee0,LIST_TRANSACTIONS,hbciListTransactions,false -13044,6979a2dc-ef8b-4bad-af35-9b903904eee0,AUTHORIZATION,,false -13045,6979a2dc-ef8b-4bad-af35-9b903904eee0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13046,6979a2dc-ef8b-4bad-af35-9b903904eee0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13047,6979a2dc-ef8b-4bad-af35-9b903904eee0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13042,8a992fc0-88b2-4ac2-88bc-2b759361bd19,LIST_ACCOUNTS,hbciListAccounts,false +13043,8a992fc0-88b2-4ac2-88bc-2b759361bd19,LIST_TRANSACTIONS,hbciListTransactions,false +13044,8a992fc0-88b2-4ac2-88bc-2b759361bd19,AUTHORIZATION,,false +13045,8a992fc0-88b2-4ac2-88bc-2b759361bd19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13046,8a992fc0-88b2-4ac2-88bc-2b759361bd19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13047,8a992fc0-88b2-4ac2-88bc-2b759361bd19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13048,01a03f70-e48a-4ed4-8804-b0f00e96461a,LIST_ACCOUNTS,xs2aListAccounts,true -13049,01a03f70-e48a-4ed4-8804-b0f00e96461a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13049,01a03f70-e48a-4ed4-8804-b0f00e96461a,LIST_TRANSACTIONS,xs2aListTransactions,true 13050,01a03f70-e48a-4ed4-8804-b0f00e96461a,AUTHORIZATION,,true 13051,01a03f70-e48a-4ed4-8804-b0f00e96461a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13052,01a03f70-e48a-4ed4-8804-b0f00e96461a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13053,01a03f70-e48a-4ed4-8804-b0f00e96461a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13054,7b99d2e6-cf1a-46e4-8fe1-de9fe2333250,LIST_ACCOUNTS,hbciListAccounts,false -13055,7b99d2e6-cf1a-46e4-8fe1-de9fe2333250,LIST_TRANSACTIONS,hbciListTransactions,false -13056,7b99d2e6-cf1a-46e4-8fe1-de9fe2333250,AUTHORIZATION,,false -13057,7b99d2e6-cf1a-46e4-8fe1-de9fe2333250,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13058,7b99d2e6-cf1a-46e4-8fe1-de9fe2333250,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13059,7b99d2e6-cf1a-46e4-8fe1-de9fe2333250,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13054,a989e890-150b-4fb3-adc2-252a5e6c56c9,LIST_ACCOUNTS,hbciListAccounts,false +13055,a989e890-150b-4fb3-adc2-252a5e6c56c9,LIST_TRANSACTIONS,hbciListTransactions,false +13056,a989e890-150b-4fb3-adc2-252a5e6c56c9,AUTHORIZATION,,false +13057,a989e890-150b-4fb3-adc2-252a5e6c56c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13058,a989e890-150b-4fb3-adc2-252a5e6c56c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13059,a989e890-150b-4fb3-adc2-252a5e6c56c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13060,53b35bf3-649e-4b0a-9691-fb1eadafd4fd,LIST_ACCOUNTS,xs2aListAccounts,true -13061,53b35bf3-649e-4b0a-9691-fb1eadafd4fd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13061,53b35bf3-649e-4b0a-9691-fb1eadafd4fd,LIST_TRANSACTIONS,xs2aListTransactions,true 13062,53b35bf3-649e-4b0a-9691-fb1eadafd4fd,AUTHORIZATION,,true 13063,53b35bf3-649e-4b0a-9691-fb1eadafd4fd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13064,53b35bf3-649e-4b0a-9691-fb1eadafd4fd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13065,53b35bf3-649e-4b0a-9691-fb1eadafd4fd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13066,56181a91-46c0-4972-95f1-d4caedbf93a6,LIST_ACCOUNTS,hbciListAccounts,false -13067,56181a91-46c0-4972-95f1-d4caedbf93a6,LIST_TRANSACTIONS,hbciListTransactions,false -13068,56181a91-46c0-4972-95f1-d4caedbf93a6,AUTHORIZATION,,false -13069,56181a91-46c0-4972-95f1-d4caedbf93a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13070,56181a91-46c0-4972-95f1-d4caedbf93a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13071,56181a91-46c0-4972-95f1-d4caedbf93a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13066,1b3cc292-a858-4429-9162-8c3bcb1076cf,LIST_ACCOUNTS,hbciListAccounts,false +13067,1b3cc292-a858-4429-9162-8c3bcb1076cf,LIST_TRANSACTIONS,hbciListTransactions,false +13068,1b3cc292-a858-4429-9162-8c3bcb1076cf,AUTHORIZATION,,false +13069,1b3cc292-a858-4429-9162-8c3bcb1076cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13070,1b3cc292-a858-4429-9162-8c3bcb1076cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13071,1b3cc292-a858-4429-9162-8c3bcb1076cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13072,e7beb0c1-15e5-4397-a089-32659d642b36,LIST_ACCOUNTS,xs2aListAccounts,true -13073,e7beb0c1-15e5-4397-a089-32659d642b36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13073,e7beb0c1-15e5-4397-a089-32659d642b36,LIST_TRANSACTIONS,xs2aListTransactions,true 13074,e7beb0c1-15e5-4397-a089-32659d642b36,AUTHORIZATION,,true 13075,e7beb0c1-15e5-4397-a089-32659d642b36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13076,e7beb0c1-15e5-4397-a089-32659d642b36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13077,e7beb0c1-15e5-4397-a089-32659d642b36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13078,090d4adf-3aef-4a36-b350-efa9e67dadd6,LIST_ACCOUNTS,hbciListAccounts,false -13079,090d4adf-3aef-4a36-b350-efa9e67dadd6,LIST_TRANSACTIONS,hbciListTransactions,false -13080,090d4adf-3aef-4a36-b350-efa9e67dadd6,AUTHORIZATION,,false -13081,090d4adf-3aef-4a36-b350-efa9e67dadd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13082,090d4adf-3aef-4a36-b350-efa9e67dadd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13083,090d4adf-3aef-4a36-b350-efa9e67dadd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13078,1e274ec0-e298-45e6-9176-ad4b095de71e,LIST_ACCOUNTS,hbciListAccounts,false +13079,1e274ec0-e298-45e6-9176-ad4b095de71e,LIST_TRANSACTIONS,hbciListTransactions,false +13080,1e274ec0-e298-45e6-9176-ad4b095de71e,AUTHORIZATION,,false +13081,1e274ec0-e298-45e6-9176-ad4b095de71e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13082,1e274ec0-e298-45e6-9176-ad4b095de71e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13083,1e274ec0-e298-45e6-9176-ad4b095de71e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13084,c16bc0a4-5bf2-4e06-8d5c-02f5d22683cf,LIST_ACCOUNTS,xs2aListAccounts,true -13085,c16bc0a4-5bf2-4e06-8d5c-02f5d22683cf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13085,c16bc0a4-5bf2-4e06-8d5c-02f5d22683cf,LIST_TRANSACTIONS,xs2aListTransactions,true 13086,c16bc0a4-5bf2-4e06-8d5c-02f5d22683cf,AUTHORIZATION,,true 13087,c16bc0a4-5bf2-4e06-8d5c-02f5d22683cf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13088,c16bc0a4-5bf2-4e06-8d5c-02f5d22683cf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13089,c16bc0a4-5bf2-4e06-8d5c-02f5d22683cf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13090,9fb22e4e-ace1-48cb-9427-2772c9f9ffa5,LIST_ACCOUNTS,hbciListAccounts,false -13091,9fb22e4e-ace1-48cb-9427-2772c9f9ffa5,LIST_TRANSACTIONS,hbciListTransactions,false -13092,9fb22e4e-ace1-48cb-9427-2772c9f9ffa5,AUTHORIZATION,,false -13093,9fb22e4e-ace1-48cb-9427-2772c9f9ffa5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13094,9fb22e4e-ace1-48cb-9427-2772c9f9ffa5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13095,9fb22e4e-ace1-48cb-9427-2772c9f9ffa5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13090,64ef56ff-ab71-4315-978e-b1b7374805fd,LIST_ACCOUNTS,hbciListAccounts,false +13091,64ef56ff-ab71-4315-978e-b1b7374805fd,LIST_TRANSACTIONS,hbciListTransactions,false +13092,64ef56ff-ab71-4315-978e-b1b7374805fd,AUTHORIZATION,,false +13093,64ef56ff-ab71-4315-978e-b1b7374805fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13094,64ef56ff-ab71-4315-978e-b1b7374805fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13095,64ef56ff-ab71-4315-978e-b1b7374805fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13096,e69c7f04-f565-4f13-8110-adedb7d0a2a4,LIST_ACCOUNTS,xs2aListAccounts,true -13097,e69c7f04-f565-4f13-8110-adedb7d0a2a4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13097,e69c7f04-f565-4f13-8110-adedb7d0a2a4,LIST_TRANSACTIONS,xs2aListTransactions,true 13098,e69c7f04-f565-4f13-8110-adedb7d0a2a4,AUTHORIZATION,,true 13099,e69c7f04-f565-4f13-8110-adedb7d0a2a4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13100,e69c7f04-f565-4f13-8110-adedb7d0a2a4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13101,e69c7f04-f565-4f13-8110-adedb7d0a2a4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13102,368e1bbe-4e53-4899-ba44-8574a96f2d64,LIST_ACCOUNTS,hbciListAccounts,false -13103,368e1bbe-4e53-4899-ba44-8574a96f2d64,LIST_TRANSACTIONS,hbciListTransactions,false -13104,368e1bbe-4e53-4899-ba44-8574a96f2d64,AUTHORIZATION,,false -13105,368e1bbe-4e53-4899-ba44-8574a96f2d64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13106,368e1bbe-4e53-4899-ba44-8574a96f2d64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13107,368e1bbe-4e53-4899-ba44-8574a96f2d64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13102,c2c12f75-3159-4944-b0bc-4e4b82f49115,LIST_ACCOUNTS,hbciListAccounts,false +13103,c2c12f75-3159-4944-b0bc-4e4b82f49115,LIST_TRANSACTIONS,hbciListTransactions,false +13104,c2c12f75-3159-4944-b0bc-4e4b82f49115,AUTHORIZATION,,false +13105,c2c12f75-3159-4944-b0bc-4e4b82f49115,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13106,c2c12f75-3159-4944-b0bc-4e4b82f49115,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13107,c2c12f75-3159-4944-b0bc-4e4b82f49115,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13108,82dea668-ff4f-4e8f-a9c0-a9fc2702bfa6,LIST_ACCOUNTS,xs2aListAccounts,true -13109,82dea668-ff4f-4e8f-a9c0-a9fc2702bfa6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13109,82dea668-ff4f-4e8f-a9c0-a9fc2702bfa6,LIST_TRANSACTIONS,xs2aListTransactions,true 13110,82dea668-ff4f-4e8f-a9c0-a9fc2702bfa6,AUTHORIZATION,,true 13111,82dea668-ff4f-4e8f-a9c0-a9fc2702bfa6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13112,82dea668-ff4f-4e8f-a9c0-a9fc2702bfa6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13113,82dea668-ff4f-4e8f-a9c0-a9fc2702bfa6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13114,735987e3-9b56-451b-960d-e5bb43053fbe,LIST_ACCOUNTS,hbciListAccounts,false -13115,735987e3-9b56-451b-960d-e5bb43053fbe,LIST_TRANSACTIONS,hbciListTransactions,false -13116,735987e3-9b56-451b-960d-e5bb43053fbe,AUTHORIZATION,,false -13117,735987e3-9b56-451b-960d-e5bb43053fbe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13118,735987e3-9b56-451b-960d-e5bb43053fbe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13119,735987e3-9b56-451b-960d-e5bb43053fbe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13114,ccdd30ff-ad92-4eed-a84f-6214481499b2,LIST_ACCOUNTS,hbciListAccounts,false +13115,ccdd30ff-ad92-4eed-a84f-6214481499b2,LIST_TRANSACTIONS,hbciListTransactions,false +13116,ccdd30ff-ad92-4eed-a84f-6214481499b2,AUTHORIZATION,,false +13117,ccdd30ff-ad92-4eed-a84f-6214481499b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13118,ccdd30ff-ad92-4eed-a84f-6214481499b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13119,ccdd30ff-ad92-4eed-a84f-6214481499b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13120,3de24c34-87dc-4c17-a047-1c8201c9eacf,LIST_ACCOUNTS,xs2aListAccounts,true -13121,3de24c34-87dc-4c17-a047-1c8201c9eacf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13121,3de24c34-87dc-4c17-a047-1c8201c9eacf,LIST_TRANSACTIONS,xs2aListTransactions,true 13122,3de24c34-87dc-4c17-a047-1c8201c9eacf,AUTHORIZATION,,true 13123,3de24c34-87dc-4c17-a047-1c8201c9eacf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13124,3de24c34-87dc-4c17-a047-1c8201c9eacf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13125,3de24c34-87dc-4c17-a047-1c8201c9eacf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13126,d9339c2c-82d8-4477-acb4-89b6418b54a4,LIST_ACCOUNTS,hbciListAccounts,false -13127,d9339c2c-82d8-4477-acb4-89b6418b54a4,LIST_TRANSACTIONS,hbciListTransactions,false -13128,d9339c2c-82d8-4477-acb4-89b6418b54a4,AUTHORIZATION,,false -13129,d9339c2c-82d8-4477-acb4-89b6418b54a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13130,d9339c2c-82d8-4477-acb4-89b6418b54a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13131,d9339c2c-82d8-4477-acb4-89b6418b54a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13126,fb7346b4-2576-437c-b9a8-fb49c272cc0d,LIST_ACCOUNTS,hbciListAccounts,false +13127,fb7346b4-2576-437c-b9a8-fb49c272cc0d,LIST_TRANSACTIONS,hbciListTransactions,false +13128,fb7346b4-2576-437c-b9a8-fb49c272cc0d,AUTHORIZATION,,false +13129,fb7346b4-2576-437c-b9a8-fb49c272cc0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13130,fb7346b4-2576-437c-b9a8-fb49c272cc0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13131,fb7346b4-2576-437c-b9a8-fb49c272cc0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13132,e26814ec-c4b5-4d1b-a1fb-4d6a9f262162,LIST_ACCOUNTS,xs2aListAccounts,true -13133,e26814ec-c4b5-4d1b-a1fb-4d6a9f262162,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13133,e26814ec-c4b5-4d1b-a1fb-4d6a9f262162,LIST_TRANSACTIONS,xs2aListTransactions,true 13134,e26814ec-c4b5-4d1b-a1fb-4d6a9f262162,AUTHORIZATION,,true 13135,e26814ec-c4b5-4d1b-a1fb-4d6a9f262162,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13136,e26814ec-c4b5-4d1b-a1fb-4d6a9f262162,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13137,e26814ec-c4b5-4d1b-a1fb-4d6a9f262162,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13138,59b9409b-9977-440d-b61e-b91f7d035072,LIST_ACCOUNTS,hbciListAccounts,false -13139,59b9409b-9977-440d-b61e-b91f7d035072,LIST_TRANSACTIONS,hbciListTransactions,false -13140,59b9409b-9977-440d-b61e-b91f7d035072,AUTHORIZATION,,false -13141,59b9409b-9977-440d-b61e-b91f7d035072,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13142,59b9409b-9977-440d-b61e-b91f7d035072,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13143,59b9409b-9977-440d-b61e-b91f7d035072,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13138,cc662839-7a58-470f-909e-54a3a6c1b2e4,LIST_ACCOUNTS,hbciListAccounts,false +13139,cc662839-7a58-470f-909e-54a3a6c1b2e4,LIST_TRANSACTIONS,hbciListTransactions,false +13140,cc662839-7a58-470f-909e-54a3a6c1b2e4,AUTHORIZATION,,false +13141,cc662839-7a58-470f-909e-54a3a6c1b2e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13142,cc662839-7a58-470f-909e-54a3a6c1b2e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13143,cc662839-7a58-470f-909e-54a3a6c1b2e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13144,6322ae32-4c66-4c60-ae1b-12dd2093675f,LIST_ACCOUNTS,xs2aListAccounts,true -13145,6322ae32-4c66-4c60-ae1b-12dd2093675f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13145,6322ae32-4c66-4c60-ae1b-12dd2093675f,LIST_TRANSACTIONS,xs2aListTransactions,true 13146,6322ae32-4c66-4c60-ae1b-12dd2093675f,AUTHORIZATION,,true 13147,6322ae32-4c66-4c60-ae1b-12dd2093675f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13148,6322ae32-4c66-4c60-ae1b-12dd2093675f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13149,6322ae32-4c66-4c60-ae1b-12dd2093675f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13150,770e5052-a5f5-4588-acd6-a0d9ee806ea9,LIST_ACCOUNTS,hbciListAccounts,false -13151,770e5052-a5f5-4588-acd6-a0d9ee806ea9,LIST_TRANSACTIONS,hbciListTransactions,false -13152,770e5052-a5f5-4588-acd6-a0d9ee806ea9,AUTHORIZATION,,false -13153,770e5052-a5f5-4588-acd6-a0d9ee806ea9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13154,770e5052-a5f5-4588-acd6-a0d9ee806ea9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13155,770e5052-a5f5-4588-acd6-a0d9ee806ea9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13150,d998f788-3dee-451c-a819-d1e90d3e5485,LIST_ACCOUNTS,hbciListAccounts,false +13151,d998f788-3dee-451c-a819-d1e90d3e5485,LIST_TRANSACTIONS,hbciListTransactions,false +13152,d998f788-3dee-451c-a819-d1e90d3e5485,AUTHORIZATION,,false +13153,d998f788-3dee-451c-a819-d1e90d3e5485,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13154,d998f788-3dee-451c-a819-d1e90d3e5485,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13155,d998f788-3dee-451c-a819-d1e90d3e5485,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13156,59a7a75d-530a-42c4-af9d-088c9158049f,LIST_ACCOUNTS,xs2aListAccounts,true -13157,59a7a75d-530a-42c4-af9d-088c9158049f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13157,59a7a75d-530a-42c4-af9d-088c9158049f,LIST_TRANSACTIONS,xs2aListTransactions,true 13158,59a7a75d-530a-42c4-af9d-088c9158049f,AUTHORIZATION,,true 13159,59a7a75d-530a-42c4-af9d-088c9158049f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13160,59a7a75d-530a-42c4-af9d-088c9158049f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13161,59a7a75d-530a-42c4-af9d-088c9158049f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13162,e63ef986-e1cd-4c73-9757-49fde54fa488,LIST_ACCOUNTS,hbciListAccounts,false -13163,e63ef986-e1cd-4c73-9757-49fde54fa488,LIST_TRANSACTIONS,hbciListTransactions,false -13164,e63ef986-e1cd-4c73-9757-49fde54fa488,AUTHORIZATION,,false -13165,e63ef986-e1cd-4c73-9757-49fde54fa488,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13166,e63ef986-e1cd-4c73-9757-49fde54fa488,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13167,e63ef986-e1cd-4c73-9757-49fde54fa488,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13162,4bf830c2-92b8-496c-9fbf-a36ffb354075,LIST_ACCOUNTS,hbciListAccounts,false +13163,4bf830c2-92b8-496c-9fbf-a36ffb354075,LIST_TRANSACTIONS,hbciListTransactions,false +13164,4bf830c2-92b8-496c-9fbf-a36ffb354075,AUTHORIZATION,,false +13165,4bf830c2-92b8-496c-9fbf-a36ffb354075,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13166,4bf830c2-92b8-496c-9fbf-a36ffb354075,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13167,4bf830c2-92b8-496c-9fbf-a36ffb354075,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13168,372532c6-877b-42ff-929f-39e27dc49131,LIST_ACCOUNTS,xs2aListAccounts,true -13169,372532c6-877b-42ff-929f-39e27dc49131,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13169,372532c6-877b-42ff-929f-39e27dc49131,LIST_TRANSACTIONS,xs2aListTransactions,true 13170,372532c6-877b-42ff-929f-39e27dc49131,AUTHORIZATION,,true 13171,372532c6-877b-42ff-929f-39e27dc49131,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13172,372532c6-877b-42ff-929f-39e27dc49131,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13173,372532c6-877b-42ff-929f-39e27dc49131,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13174,c7a408d5-b9ee-4f60-b2e7-ac7079dfab39,LIST_ACCOUNTS,hbciListAccounts,false -13175,c7a408d5-b9ee-4f60-b2e7-ac7079dfab39,LIST_TRANSACTIONS,hbciListTransactions,false -13176,c7a408d5-b9ee-4f60-b2e7-ac7079dfab39,AUTHORIZATION,,false -13177,c7a408d5-b9ee-4f60-b2e7-ac7079dfab39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13178,c7a408d5-b9ee-4f60-b2e7-ac7079dfab39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13179,c7a408d5-b9ee-4f60-b2e7-ac7079dfab39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13174,cb16c8ae-93c0-4134-810d-026ddbfeb742,LIST_ACCOUNTS,hbciListAccounts,false +13175,cb16c8ae-93c0-4134-810d-026ddbfeb742,LIST_TRANSACTIONS,hbciListTransactions,false +13176,cb16c8ae-93c0-4134-810d-026ddbfeb742,AUTHORIZATION,,false +13177,cb16c8ae-93c0-4134-810d-026ddbfeb742,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13178,cb16c8ae-93c0-4134-810d-026ddbfeb742,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13179,cb16c8ae-93c0-4134-810d-026ddbfeb742,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13180,dd3be754-18c6-46d8-9cea-5b9234af7646,LIST_ACCOUNTS,xs2aListAccounts,true -13181,dd3be754-18c6-46d8-9cea-5b9234af7646,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13181,dd3be754-18c6-46d8-9cea-5b9234af7646,LIST_TRANSACTIONS,xs2aListTransactions,true 13182,dd3be754-18c6-46d8-9cea-5b9234af7646,AUTHORIZATION,,true 13183,dd3be754-18c6-46d8-9cea-5b9234af7646,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13184,dd3be754-18c6-46d8-9cea-5b9234af7646,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13185,dd3be754-18c6-46d8-9cea-5b9234af7646,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13186,582e755c-f898-409c-8c45-e1699a00e827,LIST_ACCOUNTS,hbciListAccounts,false -13187,582e755c-f898-409c-8c45-e1699a00e827,LIST_TRANSACTIONS,hbciListTransactions,false -13188,582e755c-f898-409c-8c45-e1699a00e827,AUTHORIZATION,,false -13189,582e755c-f898-409c-8c45-e1699a00e827,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13190,582e755c-f898-409c-8c45-e1699a00e827,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13191,582e755c-f898-409c-8c45-e1699a00e827,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13186,40ed8890-a4e0-4fd3-91cb-de64a6ce974a,LIST_ACCOUNTS,hbciListAccounts,false +13187,40ed8890-a4e0-4fd3-91cb-de64a6ce974a,LIST_TRANSACTIONS,hbciListTransactions,false +13188,40ed8890-a4e0-4fd3-91cb-de64a6ce974a,AUTHORIZATION,,false +13189,40ed8890-a4e0-4fd3-91cb-de64a6ce974a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13190,40ed8890-a4e0-4fd3-91cb-de64a6ce974a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13191,40ed8890-a4e0-4fd3-91cb-de64a6ce974a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13192,b5cb7e50-ad4a-49b4-845c-8555f4f014bb,LIST_ACCOUNTS,xs2aListAccounts,true -13193,b5cb7e50-ad4a-49b4-845c-8555f4f014bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13193,b5cb7e50-ad4a-49b4-845c-8555f4f014bb,LIST_TRANSACTIONS,xs2aListTransactions,true 13194,b5cb7e50-ad4a-49b4-845c-8555f4f014bb,AUTHORIZATION,,true 13195,b5cb7e50-ad4a-49b4-845c-8555f4f014bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13196,b5cb7e50-ad4a-49b4-845c-8555f4f014bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13197,b5cb7e50-ad4a-49b4-845c-8555f4f014bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13198,44e878d7-4b5f-42ef-a449-94da2517d831,LIST_ACCOUNTS,hbciListAccounts,false -13199,44e878d7-4b5f-42ef-a449-94da2517d831,LIST_TRANSACTIONS,hbciListTransactions,false -13200,44e878d7-4b5f-42ef-a449-94da2517d831,AUTHORIZATION,,false -13201,44e878d7-4b5f-42ef-a449-94da2517d831,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13202,44e878d7-4b5f-42ef-a449-94da2517d831,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13203,44e878d7-4b5f-42ef-a449-94da2517d831,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13198,1e03b7b4-468c-4890-986f-4e8ab5fd2318,LIST_ACCOUNTS,hbciListAccounts,false +13199,1e03b7b4-468c-4890-986f-4e8ab5fd2318,LIST_TRANSACTIONS,hbciListTransactions,false +13200,1e03b7b4-468c-4890-986f-4e8ab5fd2318,AUTHORIZATION,,false +13201,1e03b7b4-468c-4890-986f-4e8ab5fd2318,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13202,1e03b7b4-468c-4890-986f-4e8ab5fd2318,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13203,1e03b7b4-468c-4890-986f-4e8ab5fd2318,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13204,5f46f8ae-b646-4acc-8fb1-497bd61facfd,LIST_ACCOUNTS,xs2aListAccounts,true -13205,5f46f8ae-b646-4acc-8fb1-497bd61facfd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13205,5f46f8ae-b646-4acc-8fb1-497bd61facfd,LIST_TRANSACTIONS,xs2aListTransactions,true 13206,5f46f8ae-b646-4acc-8fb1-497bd61facfd,AUTHORIZATION,,true 13207,5f46f8ae-b646-4acc-8fb1-497bd61facfd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13208,5f46f8ae-b646-4acc-8fb1-497bd61facfd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13209,5f46f8ae-b646-4acc-8fb1-497bd61facfd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13210,bc7117c6-f4db-49ec-bf72-7d8a0cf3ee79,LIST_ACCOUNTS,hbciListAccounts,false -13211,bc7117c6-f4db-49ec-bf72-7d8a0cf3ee79,LIST_TRANSACTIONS,hbciListTransactions,false -13212,bc7117c6-f4db-49ec-bf72-7d8a0cf3ee79,AUTHORIZATION,,false -13213,bc7117c6-f4db-49ec-bf72-7d8a0cf3ee79,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13214,bc7117c6-f4db-49ec-bf72-7d8a0cf3ee79,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13215,bc7117c6-f4db-49ec-bf72-7d8a0cf3ee79,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13210,9dabe183-a986-485b-9c14-fd6aa1d9aaac,LIST_ACCOUNTS,hbciListAccounts,false +13211,9dabe183-a986-485b-9c14-fd6aa1d9aaac,LIST_TRANSACTIONS,hbciListTransactions,false +13212,9dabe183-a986-485b-9c14-fd6aa1d9aaac,AUTHORIZATION,,false +13213,9dabe183-a986-485b-9c14-fd6aa1d9aaac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13214,9dabe183-a986-485b-9c14-fd6aa1d9aaac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13215,9dabe183-a986-485b-9c14-fd6aa1d9aaac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13216,16ad3213-bb9d-454a-8517-e6504762b7c4,LIST_ACCOUNTS,xs2aListAccounts,true -13217,16ad3213-bb9d-454a-8517-e6504762b7c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13217,16ad3213-bb9d-454a-8517-e6504762b7c4,LIST_TRANSACTIONS,xs2aListTransactions,true 13218,16ad3213-bb9d-454a-8517-e6504762b7c4,AUTHORIZATION,,true 13219,16ad3213-bb9d-454a-8517-e6504762b7c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13220,16ad3213-bb9d-454a-8517-e6504762b7c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13221,16ad3213-bb9d-454a-8517-e6504762b7c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13222,c24a28dd-aeaa-4714-a0ca-cc05e04708bf,LIST_ACCOUNTS,hbciListAccounts,false -13223,c24a28dd-aeaa-4714-a0ca-cc05e04708bf,LIST_TRANSACTIONS,hbciListTransactions,false -13224,c24a28dd-aeaa-4714-a0ca-cc05e04708bf,AUTHORIZATION,,false -13225,c24a28dd-aeaa-4714-a0ca-cc05e04708bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13226,c24a28dd-aeaa-4714-a0ca-cc05e04708bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13227,c24a28dd-aeaa-4714-a0ca-cc05e04708bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13222,3f0bdba2-881f-46bd-ba56-efc05522e4ac,LIST_ACCOUNTS,hbciListAccounts,false +13223,3f0bdba2-881f-46bd-ba56-efc05522e4ac,LIST_TRANSACTIONS,hbciListTransactions,false +13224,3f0bdba2-881f-46bd-ba56-efc05522e4ac,AUTHORIZATION,,false +13225,3f0bdba2-881f-46bd-ba56-efc05522e4ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13226,3f0bdba2-881f-46bd-ba56-efc05522e4ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13227,3f0bdba2-881f-46bd-ba56-efc05522e4ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13228,7bb77e3f-8f44-4d69-b0a8-99199682552f,LIST_ACCOUNTS,xs2aListAccounts,true -13229,7bb77e3f-8f44-4d69-b0a8-99199682552f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13229,7bb77e3f-8f44-4d69-b0a8-99199682552f,LIST_TRANSACTIONS,xs2aListTransactions,true 13230,7bb77e3f-8f44-4d69-b0a8-99199682552f,AUTHORIZATION,,true 13231,7bb77e3f-8f44-4d69-b0a8-99199682552f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13232,7bb77e3f-8f44-4d69-b0a8-99199682552f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13233,7bb77e3f-8f44-4d69-b0a8-99199682552f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13234,cd8a1244-7db4-436a-93dd-feb141dd0927,LIST_ACCOUNTS,hbciListAccounts,false -13235,cd8a1244-7db4-436a-93dd-feb141dd0927,LIST_TRANSACTIONS,hbciListTransactions,false -13236,cd8a1244-7db4-436a-93dd-feb141dd0927,AUTHORIZATION,,false -13237,cd8a1244-7db4-436a-93dd-feb141dd0927,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13238,cd8a1244-7db4-436a-93dd-feb141dd0927,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13239,cd8a1244-7db4-436a-93dd-feb141dd0927,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13234,40eeced0-3d44-4764-8d9f-7024778c06e5,LIST_ACCOUNTS,hbciListAccounts,false +13235,40eeced0-3d44-4764-8d9f-7024778c06e5,LIST_TRANSACTIONS,hbciListTransactions,false +13236,40eeced0-3d44-4764-8d9f-7024778c06e5,AUTHORIZATION,,false +13237,40eeced0-3d44-4764-8d9f-7024778c06e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13238,40eeced0-3d44-4764-8d9f-7024778c06e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13239,40eeced0-3d44-4764-8d9f-7024778c06e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13240,eafbaefa-71d3-4b36-b860-29edfb529d36,LIST_ACCOUNTS,xs2aListAccounts,true -13241,eafbaefa-71d3-4b36-b860-29edfb529d36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13241,eafbaefa-71d3-4b36-b860-29edfb529d36,LIST_TRANSACTIONS,xs2aListTransactions,true 13242,eafbaefa-71d3-4b36-b860-29edfb529d36,AUTHORIZATION,,true 13243,eafbaefa-71d3-4b36-b860-29edfb529d36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13244,eafbaefa-71d3-4b36-b860-29edfb529d36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13245,eafbaefa-71d3-4b36-b860-29edfb529d36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13246,a60f0d40-77a5-4b36-b9c2-4647064e4a37,LIST_ACCOUNTS,hbciListAccounts,false -13247,a60f0d40-77a5-4b36-b9c2-4647064e4a37,LIST_TRANSACTIONS,hbciListTransactions,false -13248,a60f0d40-77a5-4b36-b9c2-4647064e4a37,AUTHORIZATION,,false -13249,a60f0d40-77a5-4b36-b9c2-4647064e4a37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13250,a60f0d40-77a5-4b36-b9c2-4647064e4a37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13251,a60f0d40-77a5-4b36-b9c2-4647064e4a37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13246,b1559ea0-498a-4180-ad10-7f90f52f87b8,LIST_ACCOUNTS,hbciListAccounts,false +13247,b1559ea0-498a-4180-ad10-7f90f52f87b8,LIST_TRANSACTIONS,hbciListTransactions,false +13248,b1559ea0-498a-4180-ad10-7f90f52f87b8,AUTHORIZATION,,false +13249,b1559ea0-498a-4180-ad10-7f90f52f87b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13250,b1559ea0-498a-4180-ad10-7f90f52f87b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13251,b1559ea0-498a-4180-ad10-7f90f52f87b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13252,dedf3c99-3235-4ef6-9b9c-a3cbe30cf87d,LIST_ACCOUNTS,xs2aListAccounts,true -13253,dedf3c99-3235-4ef6-9b9c-a3cbe30cf87d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13253,dedf3c99-3235-4ef6-9b9c-a3cbe30cf87d,LIST_TRANSACTIONS,xs2aListTransactions,true 13254,dedf3c99-3235-4ef6-9b9c-a3cbe30cf87d,AUTHORIZATION,,true 13255,dedf3c99-3235-4ef6-9b9c-a3cbe30cf87d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13256,dedf3c99-3235-4ef6-9b9c-a3cbe30cf87d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13257,dedf3c99-3235-4ef6-9b9c-a3cbe30cf87d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13258,8dd70ae6-50b8-42f3-82cc-dd751a69f33f,LIST_ACCOUNTS,hbciListAccounts,false -13259,8dd70ae6-50b8-42f3-82cc-dd751a69f33f,LIST_TRANSACTIONS,hbciListTransactions,false -13260,8dd70ae6-50b8-42f3-82cc-dd751a69f33f,AUTHORIZATION,,false -13261,8dd70ae6-50b8-42f3-82cc-dd751a69f33f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13262,8dd70ae6-50b8-42f3-82cc-dd751a69f33f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13263,8dd70ae6-50b8-42f3-82cc-dd751a69f33f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13258,794f76de-b8c3-4e08-9892-4bac33ce2014,LIST_ACCOUNTS,hbciListAccounts,false +13259,794f76de-b8c3-4e08-9892-4bac33ce2014,LIST_TRANSACTIONS,hbciListTransactions,false +13260,794f76de-b8c3-4e08-9892-4bac33ce2014,AUTHORIZATION,,false +13261,794f76de-b8c3-4e08-9892-4bac33ce2014,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13262,794f76de-b8c3-4e08-9892-4bac33ce2014,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13263,794f76de-b8c3-4e08-9892-4bac33ce2014,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13264,2f8dbc8d-3878-4130-b6d7-99f17c4e7067,LIST_ACCOUNTS,xs2aListAccounts,true -13265,2f8dbc8d-3878-4130-b6d7-99f17c4e7067,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13265,2f8dbc8d-3878-4130-b6d7-99f17c4e7067,LIST_TRANSACTIONS,xs2aListTransactions,true 13266,2f8dbc8d-3878-4130-b6d7-99f17c4e7067,AUTHORIZATION,,true 13267,2f8dbc8d-3878-4130-b6d7-99f17c4e7067,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13268,2f8dbc8d-3878-4130-b6d7-99f17c4e7067,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13269,2f8dbc8d-3878-4130-b6d7-99f17c4e7067,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13270,52836b9f-77e7-4f7b-9d47-1b9a2daf55b3,LIST_ACCOUNTS,hbciListAccounts,false -13271,52836b9f-77e7-4f7b-9d47-1b9a2daf55b3,LIST_TRANSACTIONS,hbciListTransactions,false -13272,52836b9f-77e7-4f7b-9d47-1b9a2daf55b3,AUTHORIZATION,,false -13273,52836b9f-77e7-4f7b-9d47-1b9a2daf55b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13274,52836b9f-77e7-4f7b-9d47-1b9a2daf55b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13275,52836b9f-77e7-4f7b-9d47-1b9a2daf55b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13270,00d7d8be-6ae6-43dc-a12d-daa26eacc60f,LIST_ACCOUNTS,hbciListAccounts,false +13271,00d7d8be-6ae6-43dc-a12d-daa26eacc60f,LIST_TRANSACTIONS,hbciListTransactions,false +13272,00d7d8be-6ae6-43dc-a12d-daa26eacc60f,AUTHORIZATION,,false +13273,00d7d8be-6ae6-43dc-a12d-daa26eacc60f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13274,00d7d8be-6ae6-43dc-a12d-daa26eacc60f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13275,00d7d8be-6ae6-43dc-a12d-daa26eacc60f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13276,7ecbd3e9-5782-48c4-ba39-f9276bd4bbfe,LIST_ACCOUNTS,xs2aListAccounts,true -13277,7ecbd3e9-5782-48c4-ba39-f9276bd4bbfe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13277,7ecbd3e9-5782-48c4-ba39-f9276bd4bbfe,LIST_TRANSACTIONS,xs2aListTransactions,true 13278,7ecbd3e9-5782-48c4-ba39-f9276bd4bbfe,AUTHORIZATION,,true 13279,7ecbd3e9-5782-48c4-ba39-f9276bd4bbfe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13280,7ecbd3e9-5782-48c4-ba39-f9276bd4bbfe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13281,7ecbd3e9-5782-48c4-ba39-f9276bd4bbfe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13282,97073672-f193-4256-953a-17840bc18090,LIST_ACCOUNTS,hbciListAccounts,false -13283,97073672-f193-4256-953a-17840bc18090,LIST_TRANSACTIONS,hbciListTransactions,false -13284,97073672-f193-4256-953a-17840bc18090,AUTHORIZATION,,false -13285,97073672-f193-4256-953a-17840bc18090,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13286,97073672-f193-4256-953a-17840bc18090,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13287,97073672-f193-4256-953a-17840bc18090,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13282,107400a1-d6f2-45ae-9086-2db356cd3d07,LIST_ACCOUNTS,hbciListAccounts,false +13283,107400a1-d6f2-45ae-9086-2db356cd3d07,LIST_TRANSACTIONS,hbciListTransactions,false +13284,107400a1-d6f2-45ae-9086-2db356cd3d07,AUTHORIZATION,,false +13285,107400a1-d6f2-45ae-9086-2db356cd3d07,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13286,107400a1-d6f2-45ae-9086-2db356cd3d07,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13287,107400a1-d6f2-45ae-9086-2db356cd3d07,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13288,4601920a-c84d-4a49-b760-e79f724e1cd8,LIST_ACCOUNTS,xs2aListAccounts,true -13289,4601920a-c84d-4a49-b760-e79f724e1cd8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13289,4601920a-c84d-4a49-b760-e79f724e1cd8,LIST_TRANSACTIONS,xs2aListTransactions,true 13290,4601920a-c84d-4a49-b760-e79f724e1cd8,AUTHORIZATION,,true 13291,4601920a-c84d-4a49-b760-e79f724e1cd8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13292,4601920a-c84d-4a49-b760-e79f724e1cd8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13293,4601920a-c84d-4a49-b760-e79f724e1cd8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13294,468de228-9440-4213-b205-31ca3c74affd,LIST_ACCOUNTS,hbciListAccounts,false -13295,468de228-9440-4213-b205-31ca3c74affd,LIST_TRANSACTIONS,hbciListTransactions,false -13296,468de228-9440-4213-b205-31ca3c74affd,AUTHORIZATION,,false -13297,468de228-9440-4213-b205-31ca3c74affd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13298,468de228-9440-4213-b205-31ca3c74affd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13299,468de228-9440-4213-b205-31ca3c74affd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13294,998ca5a5-3bd8-471b-8d11-33079cd20940,LIST_ACCOUNTS,hbciListAccounts,false +13295,998ca5a5-3bd8-471b-8d11-33079cd20940,LIST_TRANSACTIONS,hbciListTransactions,false +13296,998ca5a5-3bd8-471b-8d11-33079cd20940,AUTHORIZATION,,false +13297,998ca5a5-3bd8-471b-8d11-33079cd20940,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13298,998ca5a5-3bd8-471b-8d11-33079cd20940,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13299,998ca5a5-3bd8-471b-8d11-33079cd20940,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13300,ecc2b802-9089-462e-a180-741c438f49a4,LIST_ACCOUNTS,xs2aListAccounts,true -13301,ecc2b802-9089-462e-a180-741c438f49a4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13301,ecc2b802-9089-462e-a180-741c438f49a4,LIST_TRANSACTIONS,xs2aListTransactions,true 13302,ecc2b802-9089-462e-a180-741c438f49a4,AUTHORIZATION,,true 13303,ecc2b802-9089-462e-a180-741c438f49a4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13304,ecc2b802-9089-462e-a180-741c438f49a4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13305,ecc2b802-9089-462e-a180-741c438f49a4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13306,ddeae72d-3dd4-44c5-ada0-2f5347a4a0d2,LIST_ACCOUNTS,hbciListAccounts,false -13307,ddeae72d-3dd4-44c5-ada0-2f5347a4a0d2,LIST_TRANSACTIONS,hbciListTransactions,false -13308,ddeae72d-3dd4-44c5-ada0-2f5347a4a0d2,AUTHORIZATION,,false -13309,ddeae72d-3dd4-44c5-ada0-2f5347a4a0d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13310,ddeae72d-3dd4-44c5-ada0-2f5347a4a0d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13311,ddeae72d-3dd4-44c5-ada0-2f5347a4a0d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13306,c9837f8c-1b39-4e31-8ee1-9b2cbf10b952,LIST_ACCOUNTS,hbciListAccounts,false +13307,c9837f8c-1b39-4e31-8ee1-9b2cbf10b952,LIST_TRANSACTIONS,hbciListTransactions,false +13308,c9837f8c-1b39-4e31-8ee1-9b2cbf10b952,AUTHORIZATION,,false +13309,c9837f8c-1b39-4e31-8ee1-9b2cbf10b952,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13310,c9837f8c-1b39-4e31-8ee1-9b2cbf10b952,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13311,c9837f8c-1b39-4e31-8ee1-9b2cbf10b952,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13312,420bec4e-9049-45fb-8937-6b3a2086d395,LIST_ACCOUNTS,xs2aListAccounts,true -13313,420bec4e-9049-45fb-8937-6b3a2086d395,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13313,420bec4e-9049-45fb-8937-6b3a2086d395,LIST_TRANSACTIONS,xs2aListTransactions,true 13314,420bec4e-9049-45fb-8937-6b3a2086d395,AUTHORIZATION,,true 13315,420bec4e-9049-45fb-8937-6b3a2086d395,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13316,420bec4e-9049-45fb-8937-6b3a2086d395,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13317,420bec4e-9049-45fb-8937-6b3a2086d395,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13318,cdeeb13a-050a-4c73-a719-e8a131ef50fa,LIST_ACCOUNTS,hbciListAccounts,false -13319,cdeeb13a-050a-4c73-a719-e8a131ef50fa,LIST_TRANSACTIONS,hbciListTransactions,false -13320,cdeeb13a-050a-4c73-a719-e8a131ef50fa,AUTHORIZATION,,false -13321,cdeeb13a-050a-4c73-a719-e8a131ef50fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13322,cdeeb13a-050a-4c73-a719-e8a131ef50fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13323,cdeeb13a-050a-4c73-a719-e8a131ef50fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13318,d345de5d-bc48-4b42-9d3d-9b21b508ac84,LIST_ACCOUNTS,hbciListAccounts,false +13319,d345de5d-bc48-4b42-9d3d-9b21b508ac84,LIST_TRANSACTIONS,hbciListTransactions,false +13320,d345de5d-bc48-4b42-9d3d-9b21b508ac84,AUTHORIZATION,,false +13321,d345de5d-bc48-4b42-9d3d-9b21b508ac84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13322,d345de5d-bc48-4b42-9d3d-9b21b508ac84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13323,d345de5d-bc48-4b42-9d3d-9b21b508ac84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13324,d88b303d-d409-425e-bece-dc1de2424cdc,LIST_ACCOUNTS,xs2aListAccounts,true -13325,d88b303d-d409-425e-bece-dc1de2424cdc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13325,d88b303d-d409-425e-bece-dc1de2424cdc,LIST_TRANSACTIONS,xs2aListTransactions,true 13326,d88b303d-d409-425e-bece-dc1de2424cdc,AUTHORIZATION,,true 13327,d88b303d-d409-425e-bece-dc1de2424cdc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13328,d88b303d-d409-425e-bece-dc1de2424cdc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13329,d88b303d-d409-425e-bece-dc1de2424cdc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13330,1d3c34cc-de60-4ebb-9db5-651e0bd5e056,LIST_ACCOUNTS,hbciListAccounts,false -13331,1d3c34cc-de60-4ebb-9db5-651e0bd5e056,LIST_TRANSACTIONS,hbciListTransactions,false -13332,1d3c34cc-de60-4ebb-9db5-651e0bd5e056,AUTHORIZATION,,false -13333,1d3c34cc-de60-4ebb-9db5-651e0bd5e056,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13334,1d3c34cc-de60-4ebb-9db5-651e0bd5e056,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13335,1d3c34cc-de60-4ebb-9db5-651e0bd5e056,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13330,a941b3ee-d0c7-4018-ba41-6fa45031cfb4,LIST_ACCOUNTS,hbciListAccounts,false +13331,a941b3ee-d0c7-4018-ba41-6fa45031cfb4,LIST_TRANSACTIONS,hbciListTransactions,false +13332,a941b3ee-d0c7-4018-ba41-6fa45031cfb4,AUTHORIZATION,,false +13333,a941b3ee-d0c7-4018-ba41-6fa45031cfb4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13334,a941b3ee-d0c7-4018-ba41-6fa45031cfb4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13335,a941b3ee-d0c7-4018-ba41-6fa45031cfb4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13336,d91a3c63-f8c0-41d1-8afb-c67e33237038,LIST_ACCOUNTS,xs2aListAccounts,true -13337,d91a3c63-f8c0-41d1-8afb-c67e33237038,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13337,d91a3c63-f8c0-41d1-8afb-c67e33237038,LIST_TRANSACTIONS,xs2aListTransactions,true 13338,d91a3c63-f8c0-41d1-8afb-c67e33237038,AUTHORIZATION,,true 13339,d91a3c63-f8c0-41d1-8afb-c67e33237038,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13340,d91a3c63-f8c0-41d1-8afb-c67e33237038,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13341,d91a3c63-f8c0-41d1-8afb-c67e33237038,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13342,f5e6943d-9ee3-4e1b-af2d-341badd087de,LIST_ACCOUNTS,hbciListAccounts,false -13343,f5e6943d-9ee3-4e1b-af2d-341badd087de,LIST_TRANSACTIONS,hbciListTransactions,false -13344,f5e6943d-9ee3-4e1b-af2d-341badd087de,AUTHORIZATION,,false -13345,f5e6943d-9ee3-4e1b-af2d-341badd087de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13346,f5e6943d-9ee3-4e1b-af2d-341badd087de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13347,f5e6943d-9ee3-4e1b-af2d-341badd087de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13342,67a5ce54-624b-4a40-b392-a8a325a4f808,LIST_ACCOUNTS,hbciListAccounts,false +13343,67a5ce54-624b-4a40-b392-a8a325a4f808,LIST_TRANSACTIONS,hbciListTransactions,false +13344,67a5ce54-624b-4a40-b392-a8a325a4f808,AUTHORIZATION,,false +13345,67a5ce54-624b-4a40-b392-a8a325a4f808,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13346,67a5ce54-624b-4a40-b392-a8a325a4f808,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13347,67a5ce54-624b-4a40-b392-a8a325a4f808,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13348,6d86b7da-a98b-4fee-8a68-0f595f5bfe7b,LIST_ACCOUNTS,xs2aListAccounts,true -13349,6d86b7da-a98b-4fee-8a68-0f595f5bfe7b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13349,6d86b7da-a98b-4fee-8a68-0f595f5bfe7b,LIST_TRANSACTIONS,xs2aListTransactions,true 13350,6d86b7da-a98b-4fee-8a68-0f595f5bfe7b,AUTHORIZATION,,true 13351,6d86b7da-a98b-4fee-8a68-0f595f5bfe7b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13352,6d86b7da-a98b-4fee-8a68-0f595f5bfe7b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13353,6d86b7da-a98b-4fee-8a68-0f595f5bfe7b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13354,75638be8-fa97-4361-aa21-3a7348c7ddd6,LIST_ACCOUNTS,hbciListAccounts,false -13355,75638be8-fa97-4361-aa21-3a7348c7ddd6,LIST_TRANSACTIONS,hbciListTransactions,false -13356,75638be8-fa97-4361-aa21-3a7348c7ddd6,AUTHORIZATION,,false -13357,75638be8-fa97-4361-aa21-3a7348c7ddd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13358,75638be8-fa97-4361-aa21-3a7348c7ddd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13359,75638be8-fa97-4361-aa21-3a7348c7ddd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13354,30e0e963-24b6-45af-a9e0-fda2d167c479,LIST_ACCOUNTS,hbciListAccounts,false +13355,30e0e963-24b6-45af-a9e0-fda2d167c479,LIST_TRANSACTIONS,hbciListTransactions,false +13356,30e0e963-24b6-45af-a9e0-fda2d167c479,AUTHORIZATION,,false +13357,30e0e963-24b6-45af-a9e0-fda2d167c479,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13358,30e0e963-24b6-45af-a9e0-fda2d167c479,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13359,30e0e963-24b6-45af-a9e0-fda2d167c479,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13360,03c3a78c-2d7d-480c-9559-71fd6a160e57,LIST_ACCOUNTS,xs2aListAccounts,true -13361,03c3a78c-2d7d-480c-9559-71fd6a160e57,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13361,03c3a78c-2d7d-480c-9559-71fd6a160e57,LIST_TRANSACTIONS,xs2aListTransactions,true 13362,03c3a78c-2d7d-480c-9559-71fd6a160e57,AUTHORIZATION,,true 13363,03c3a78c-2d7d-480c-9559-71fd6a160e57,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13364,03c3a78c-2d7d-480c-9559-71fd6a160e57,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13365,03c3a78c-2d7d-480c-9559-71fd6a160e57,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13366,6c478524-597f-4901-9d9d-03a3e79c3046,LIST_ACCOUNTS,hbciListAccounts,false -13367,6c478524-597f-4901-9d9d-03a3e79c3046,LIST_TRANSACTIONS,hbciListTransactions,false -13368,6c478524-597f-4901-9d9d-03a3e79c3046,AUTHORIZATION,,false -13369,6c478524-597f-4901-9d9d-03a3e79c3046,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13370,6c478524-597f-4901-9d9d-03a3e79c3046,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13371,6c478524-597f-4901-9d9d-03a3e79c3046,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13366,295ad41c-ef4c-4df1-b8c2-17ba599e6d0f,LIST_ACCOUNTS,hbciListAccounts,false +13367,295ad41c-ef4c-4df1-b8c2-17ba599e6d0f,LIST_TRANSACTIONS,hbciListTransactions,false +13368,295ad41c-ef4c-4df1-b8c2-17ba599e6d0f,AUTHORIZATION,,false +13369,295ad41c-ef4c-4df1-b8c2-17ba599e6d0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13370,295ad41c-ef4c-4df1-b8c2-17ba599e6d0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13371,295ad41c-ef4c-4df1-b8c2-17ba599e6d0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13372,89aec313-e15f-486e-9e37-9b198cf09629,LIST_ACCOUNTS,xs2aListAccounts,true -13373,89aec313-e15f-486e-9e37-9b198cf09629,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13373,89aec313-e15f-486e-9e37-9b198cf09629,LIST_TRANSACTIONS,xs2aListTransactions,true 13374,89aec313-e15f-486e-9e37-9b198cf09629,AUTHORIZATION,,true 13375,89aec313-e15f-486e-9e37-9b198cf09629,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13376,89aec313-e15f-486e-9e37-9b198cf09629,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13377,89aec313-e15f-486e-9e37-9b198cf09629,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13378,e90c0cd0-1f32-4ef7-9dd5-4bb7b2c3bb48,LIST_ACCOUNTS,hbciListAccounts,false -13379,e90c0cd0-1f32-4ef7-9dd5-4bb7b2c3bb48,LIST_TRANSACTIONS,hbciListTransactions,false -13380,e90c0cd0-1f32-4ef7-9dd5-4bb7b2c3bb48,AUTHORIZATION,,false -13381,e90c0cd0-1f32-4ef7-9dd5-4bb7b2c3bb48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13382,e90c0cd0-1f32-4ef7-9dd5-4bb7b2c3bb48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13383,e90c0cd0-1f32-4ef7-9dd5-4bb7b2c3bb48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13378,51a1e55f-6cd1-4e29-81f7-f774f1b1fb39,LIST_ACCOUNTS,hbciListAccounts,false +13379,51a1e55f-6cd1-4e29-81f7-f774f1b1fb39,LIST_TRANSACTIONS,hbciListTransactions,false +13380,51a1e55f-6cd1-4e29-81f7-f774f1b1fb39,AUTHORIZATION,,false +13381,51a1e55f-6cd1-4e29-81f7-f774f1b1fb39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13382,51a1e55f-6cd1-4e29-81f7-f774f1b1fb39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13383,51a1e55f-6cd1-4e29-81f7-f774f1b1fb39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13384,4efe289f-f63c-434a-b35c-5ff310ceca9a,LIST_ACCOUNTS,xs2aListAccounts,true -13385,4efe289f-f63c-434a-b35c-5ff310ceca9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13385,4efe289f-f63c-434a-b35c-5ff310ceca9a,LIST_TRANSACTIONS,xs2aListTransactions,true 13386,4efe289f-f63c-434a-b35c-5ff310ceca9a,AUTHORIZATION,,true 13387,4efe289f-f63c-434a-b35c-5ff310ceca9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13388,4efe289f-f63c-434a-b35c-5ff310ceca9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13389,4efe289f-f63c-434a-b35c-5ff310ceca9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13390,8c478449-b04f-4ccf-bf14-b7b2d344fad1,LIST_ACCOUNTS,hbciListAccounts,false -13391,8c478449-b04f-4ccf-bf14-b7b2d344fad1,LIST_TRANSACTIONS,hbciListTransactions,false -13392,8c478449-b04f-4ccf-bf14-b7b2d344fad1,AUTHORIZATION,,false -13393,8c478449-b04f-4ccf-bf14-b7b2d344fad1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13394,8c478449-b04f-4ccf-bf14-b7b2d344fad1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13395,8c478449-b04f-4ccf-bf14-b7b2d344fad1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13390,24ae1dbb-54be-460f-83fa-ae3244bb875d,LIST_ACCOUNTS,hbciListAccounts,false +13391,24ae1dbb-54be-460f-83fa-ae3244bb875d,LIST_TRANSACTIONS,hbciListTransactions,false +13392,24ae1dbb-54be-460f-83fa-ae3244bb875d,AUTHORIZATION,,false +13393,24ae1dbb-54be-460f-83fa-ae3244bb875d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13394,24ae1dbb-54be-460f-83fa-ae3244bb875d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13395,24ae1dbb-54be-460f-83fa-ae3244bb875d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13396,7d955d83-c6ab-4be0-99c6-f48574ad98fa,LIST_ACCOUNTS,xs2aListAccounts,true -13397,7d955d83-c6ab-4be0-99c6-f48574ad98fa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13397,7d955d83-c6ab-4be0-99c6-f48574ad98fa,LIST_TRANSACTIONS,xs2aListTransactions,true 13398,7d955d83-c6ab-4be0-99c6-f48574ad98fa,AUTHORIZATION,,true 13399,7d955d83-c6ab-4be0-99c6-f48574ad98fa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13400,7d955d83-c6ab-4be0-99c6-f48574ad98fa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13401,7d955d83-c6ab-4be0-99c6-f48574ad98fa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13402,15d7bffa-5f25-4bde-a851-c3ed82fdf252,LIST_ACCOUNTS,hbciListAccounts,false -13403,15d7bffa-5f25-4bde-a851-c3ed82fdf252,LIST_TRANSACTIONS,hbciListTransactions,false -13404,15d7bffa-5f25-4bde-a851-c3ed82fdf252,AUTHORIZATION,,false -13405,15d7bffa-5f25-4bde-a851-c3ed82fdf252,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13406,15d7bffa-5f25-4bde-a851-c3ed82fdf252,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13407,15d7bffa-5f25-4bde-a851-c3ed82fdf252,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13402,dbb8ecc0-b7cd-4edb-bb5f-8f55f26802b2,LIST_ACCOUNTS,hbciListAccounts,false +13403,dbb8ecc0-b7cd-4edb-bb5f-8f55f26802b2,LIST_TRANSACTIONS,hbciListTransactions,false +13404,dbb8ecc0-b7cd-4edb-bb5f-8f55f26802b2,AUTHORIZATION,,false +13405,dbb8ecc0-b7cd-4edb-bb5f-8f55f26802b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13406,dbb8ecc0-b7cd-4edb-bb5f-8f55f26802b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13407,dbb8ecc0-b7cd-4edb-bb5f-8f55f26802b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13408,3db9be94-85ec-4326-8e2c-3753914d2625,LIST_ACCOUNTS,xs2aListAccounts,true -13409,3db9be94-85ec-4326-8e2c-3753914d2625,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13409,3db9be94-85ec-4326-8e2c-3753914d2625,LIST_TRANSACTIONS,xs2aListTransactions,true 13410,3db9be94-85ec-4326-8e2c-3753914d2625,AUTHORIZATION,,true 13411,3db9be94-85ec-4326-8e2c-3753914d2625,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13412,3db9be94-85ec-4326-8e2c-3753914d2625,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13413,3db9be94-85ec-4326-8e2c-3753914d2625,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13414,7219ffc8-fe43-42b1-aafa-99ee04b0fc84,LIST_ACCOUNTS,hbciListAccounts,false -13415,7219ffc8-fe43-42b1-aafa-99ee04b0fc84,LIST_TRANSACTIONS,hbciListTransactions,false -13416,7219ffc8-fe43-42b1-aafa-99ee04b0fc84,AUTHORIZATION,,false -13417,7219ffc8-fe43-42b1-aafa-99ee04b0fc84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13418,7219ffc8-fe43-42b1-aafa-99ee04b0fc84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13419,7219ffc8-fe43-42b1-aafa-99ee04b0fc84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13414,0d331247-67d8-4670-bd4a-2b8ec48016bc,LIST_ACCOUNTS,hbciListAccounts,false +13415,0d331247-67d8-4670-bd4a-2b8ec48016bc,LIST_TRANSACTIONS,hbciListTransactions,false +13416,0d331247-67d8-4670-bd4a-2b8ec48016bc,AUTHORIZATION,,false +13417,0d331247-67d8-4670-bd4a-2b8ec48016bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13418,0d331247-67d8-4670-bd4a-2b8ec48016bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13419,0d331247-67d8-4670-bd4a-2b8ec48016bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13420,c09238b3-3dce-4d50-888a-701393263fdd,LIST_ACCOUNTS,xs2aListAccounts,true -13421,c09238b3-3dce-4d50-888a-701393263fdd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13421,c09238b3-3dce-4d50-888a-701393263fdd,LIST_TRANSACTIONS,xs2aListTransactions,true 13422,c09238b3-3dce-4d50-888a-701393263fdd,AUTHORIZATION,,true 13423,c09238b3-3dce-4d50-888a-701393263fdd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13424,c09238b3-3dce-4d50-888a-701393263fdd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13425,c09238b3-3dce-4d50-888a-701393263fdd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13426,cd1a0d01-b182-4719-9d19-bfd7f858f03c,LIST_ACCOUNTS,hbciListAccounts,false -13427,cd1a0d01-b182-4719-9d19-bfd7f858f03c,LIST_TRANSACTIONS,hbciListTransactions,false -13428,cd1a0d01-b182-4719-9d19-bfd7f858f03c,AUTHORIZATION,,false -13429,cd1a0d01-b182-4719-9d19-bfd7f858f03c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13430,cd1a0d01-b182-4719-9d19-bfd7f858f03c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13431,cd1a0d01-b182-4719-9d19-bfd7f858f03c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13426,4c777eaa-e5f9-4f92-9888-80d46e577671,LIST_ACCOUNTS,hbciListAccounts,false +13427,4c777eaa-e5f9-4f92-9888-80d46e577671,LIST_TRANSACTIONS,hbciListTransactions,false +13428,4c777eaa-e5f9-4f92-9888-80d46e577671,AUTHORIZATION,,false +13429,4c777eaa-e5f9-4f92-9888-80d46e577671,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13430,4c777eaa-e5f9-4f92-9888-80d46e577671,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13431,4c777eaa-e5f9-4f92-9888-80d46e577671,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13432,41630772-225b-43d1-b4f0-6f6adf8f7a9f,LIST_ACCOUNTS,xs2aListAccounts,true -13433,41630772-225b-43d1-b4f0-6f6adf8f7a9f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13433,41630772-225b-43d1-b4f0-6f6adf8f7a9f,LIST_TRANSACTIONS,xs2aListTransactions,true 13434,41630772-225b-43d1-b4f0-6f6adf8f7a9f,AUTHORIZATION,,true 13435,41630772-225b-43d1-b4f0-6f6adf8f7a9f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13436,41630772-225b-43d1-b4f0-6f6adf8f7a9f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13437,41630772-225b-43d1-b4f0-6f6adf8f7a9f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13438,ee79855f-7743-4295-9fca-abfaabf4226b,LIST_ACCOUNTS,hbciListAccounts,false -13439,ee79855f-7743-4295-9fca-abfaabf4226b,LIST_TRANSACTIONS,hbciListTransactions,false -13440,ee79855f-7743-4295-9fca-abfaabf4226b,AUTHORIZATION,,false -13441,ee79855f-7743-4295-9fca-abfaabf4226b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13442,ee79855f-7743-4295-9fca-abfaabf4226b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13443,ee79855f-7743-4295-9fca-abfaabf4226b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13438,8d1e97fa-2d66-47da-a90b-e8f06cde89e0,LIST_ACCOUNTS,hbciListAccounts,false +13439,8d1e97fa-2d66-47da-a90b-e8f06cde89e0,LIST_TRANSACTIONS,hbciListTransactions,false +13440,8d1e97fa-2d66-47da-a90b-e8f06cde89e0,AUTHORIZATION,,false +13441,8d1e97fa-2d66-47da-a90b-e8f06cde89e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13442,8d1e97fa-2d66-47da-a90b-e8f06cde89e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13443,8d1e97fa-2d66-47da-a90b-e8f06cde89e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13444,d01ad965-4644-437f-ad16-2a23ed0a2b0f,LIST_ACCOUNTS,xs2aListAccounts,true -13445,d01ad965-4644-437f-ad16-2a23ed0a2b0f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13445,d01ad965-4644-437f-ad16-2a23ed0a2b0f,LIST_TRANSACTIONS,xs2aListTransactions,true 13446,d01ad965-4644-437f-ad16-2a23ed0a2b0f,AUTHORIZATION,,true 13447,d01ad965-4644-437f-ad16-2a23ed0a2b0f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13448,d01ad965-4644-437f-ad16-2a23ed0a2b0f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13449,d01ad965-4644-437f-ad16-2a23ed0a2b0f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13450,579d27cf-9bd7-4128-943d-f6e0d3c2667a,LIST_ACCOUNTS,hbciListAccounts,false -13451,579d27cf-9bd7-4128-943d-f6e0d3c2667a,LIST_TRANSACTIONS,hbciListTransactions,false -13452,579d27cf-9bd7-4128-943d-f6e0d3c2667a,AUTHORIZATION,,false -13453,579d27cf-9bd7-4128-943d-f6e0d3c2667a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13454,579d27cf-9bd7-4128-943d-f6e0d3c2667a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13455,579d27cf-9bd7-4128-943d-f6e0d3c2667a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13450,22586c65-f33c-463f-844f-a6a0893c7469,LIST_ACCOUNTS,hbciListAccounts,false +13451,22586c65-f33c-463f-844f-a6a0893c7469,LIST_TRANSACTIONS,hbciListTransactions,false +13452,22586c65-f33c-463f-844f-a6a0893c7469,AUTHORIZATION,,false +13453,22586c65-f33c-463f-844f-a6a0893c7469,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13454,22586c65-f33c-463f-844f-a6a0893c7469,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13455,22586c65-f33c-463f-844f-a6a0893c7469,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13456,52ccd1a7-58ca-485b-a071-0b6fbf57b26e,LIST_ACCOUNTS,xs2aListAccounts,true -13457,52ccd1a7-58ca-485b-a071-0b6fbf57b26e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13457,52ccd1a7-58ca-485b-a071-0b6fbf57b26e,LIST_TRANSACTIONS,xs2aListTransactions,true 13458,52ccd1a7-58ca-485b-a071-0b6fbf57b26e,AUTHORIZATION,,true 13459,52ccd1a7-58ca-485b-a071-0b6fbf57b26e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13460,52ccd1a7-58ca-485b-a071-0b6fbf57b26e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13461,52ccd1a7-58ca-485b-a071-0b6fbf57b26e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13462,2b19e069-f6ea-470e-9567-9a03cf740597,LIST_ACCOUNTS,hbciListAccounts,false -13463,2b19e069-f6ea-470e-9567-9a03cf740597,LIST_TRANSACTIONS,hbciListTransactions,false -13464,2b19e069-f6ea-470e-9567-9a03cf740597,AUTHORIZATION,,false -13465,2b19e069-f6ea-470e-9567-9a03cf740597,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13466,2b19e069-f6ea-470e-9567-9a03cf740597,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13467,2b19e069-f6ea-470e-9567-9a03cf740597,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13462,e314d6f9-9414-4628-948a-4793143032c5,LIST_ACCOUNTS,hbciListAccounts,false +13463,e314d6f9-9414-4628-948a-4793143032c5,LIST_TRANSACTIONS,hbciListTransactions,false +13464,e314d6f9-9414-4628-948a-4793143032c5,AUTHORIZATION,,false +13465,e314d6f9-9414-4628-948a-4793143032c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13466,e314d6f9-9414-4628-948a-4793143032c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13467,e314d6f9-9414-4628-948a-4793143032c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13468,43f2fec8-d1ae-4689-b912-c205a00778de,LIST_ACCOUNTS,xs2aListAccounts,true -13469,43f2fec8-d1ae-4689-b912-c205a00778de,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13469,43f2fec8-d1ae-4689-b912-c205a00778de,LIST_TRANSACTIONS,xs2aListTransactions,true 13470,43f2fec8-d1ae-4689-b912-c205a00778de,AUTHORIZATION,,true 13471,43f2fec8-d1ae-4689-b912-c205a00778de,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13472,43f2fec8-d1ae-4689-b912-c205a00778de,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13473,43f2fec8-d1ae-4689-b912-c205a00778de,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13474,e7892d92-9a8e-46bf-82be-a35b74bb19ee,LIST_ACCOUNTS,hbciListAccounts,false -13475,e7892d92-9a8e-46bf-82be-a35b74bb19ee,LIST_TRANSACTIONS,hbciListTransactions,false -13476,e7892d92-9a8e-46bf-82be-a35b74bb19ee,AUTHORIZATION,,false -13477,e7892d92-9a8e-46bf-82be-a35b74bb19ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13478,e7892d92-9a8e-46bf-82be-a35b74bb19ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13479,e7892d92-9a8e-46bf-82be-a35b74bb19ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13474,40d82168-4d32-4823-abf3-742b34ebc9c1,LIST_ACCOUNTS,hbciListAccounts,false +13475,40d82168-4d32-4823-abf3-742b34ebc9c1,LIST_TRANSACTIONS,hbciListTransactions,false +13476,40d82168-4d32-4823-abf3-742b34ebc9c1,AUTHORIZATION,,false +13477,40d82168-4d32-4823-abf3-742b34ebc9c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13478,40d82168-4d32-4823-abf3-742b34ebc9c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13479,40d82168-4d32-4823-abf3-742b34ebc9c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13480,f3853d51-0c57-4530-9f0e-98a44d4a3dee,LIST_ACCOUNTS,xs2aListAccounts,true -13481,f3853d51-0c57-4530-9f0e-98a44d4a3dee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13481,f3853d51-0c57-4530-9f0e-98a44d4a3dee,LIST_TRANSACTIONS,xs2aListTransactions,true 13482,f3853d51-0c57-4530-9f0e-98a44d4a3dee,AUTHORIZATION,,true 13483,f3853d51-0c57-4530-9f0e-98a44d4a3dee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13484,f3853d51-0c57-4530-9f0e-98a44d4a3dee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13485,f3853d51-0c57-4530-9f0e-98a44d4a3dee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13486,3d9e4e7e-ff2b-40b1-b21c-0ed8f5e2b5eb,LIST_ACCOUNTS,hbciListAccounts,false -13487,3d9e4e7e-ff2b-40b1-b21c-0ed8f5e2b5eb,LIST_TRANSACTIONS,hbciListTransactions,false -13488,3d9e4e7e-ff2b-40b1-b21c-0ed8f5e2b5eb,AUTHORIZATION,,false -13489,3d9e4e7e-ff2b-40b1-b21c-0ed8f5e2b5eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13490,3d9e4e7e-ff2b-40b1-b21c-0ed8f5e2b5eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13491,3d9e4e7e-ff2b-40b1-b21c-0ed8f5e2b5eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13486,3341a824-36e6-410b-b739-dc54b24c103e,LIST_ACCOUNTS,hbciListAccounts,false +13487,3341a824-36e6-410b-b739-dc54b24c103e,LIST_TRANSACTIONS,hbciListTransactions,false +13488,3341a824-36e6-410b-b739-dc54b24c103e,AUTHORIZATION,,false +13489,3341a824-36e6-410b-b739-dc54b24c103e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13490,3341a824-36e6-410b-b739-dc54b24c103e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13491,3341a824-36e6-410b-b739-dc54b24c103e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13492,f63e2995-1424-4659-bddd-acd11250692d,LIST_ACCOUNTS,xs2aListAccounts,true -13493,f63e2995-1424-4659-bddd-acd11250692d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13493,f63e2995-1424-4659-bddd-acd11250692d,LIST_TRANSACTIONS,xs2aListTransactions,true 13494,f63e2995-1424-4659-bddd-acd11250692d,AUTHORIZATION,,true 13495,f63e2995-1424-4659-bddd-acd11250692d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13496,f63e2995-1424-4659-bddd-acd11250692d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13497,f63e2995-1424-4659-bddd-acd11250692d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13498,d2fc6c6c-6054-4bcb-9394-250f20fd6381,LIST_ACCOUNTS,hbciListAccounts,false -13499,d2fc6c6c-6054-4bcb-9394-250f20fd6381,LIST_TRANSACTIONS,hbciListTransactions,false -13500,d2fc6c6c-6054-4bcb-9394-250f20fd6381,AUTHORIZATION,,false -13501,d2fc6c6c-6054-4bcb-9394-250f20fd6381,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13502,d2fc6c6c-6054-4bcb-9394-250f20fd6381,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13503,d2fc6c6c-6054-4bcb-9394-250f20fd6381,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13498,82fd3180-0174-4e47-9a2f-f1d59ebaa320,LIST_ACCOUNTS,hbciListAccounts,false +13499,82fd3180-0174-4e47-9a2f-f1d59ebaa320,LIST_TRANSACTIONS,hbciListTransactions,false +13500,82fd3180-0174-4e47-9a2f-f1d59ebaa320,AUTHORIZATION,,false +13501,82fd3180-0174-4e47-9a2f-f1d59ebaa320,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13502,82fd3180-0174-4e47-9a2f-f1d59ebaa320,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13503,82fd3180-0174-4e47-9a2f-f1d59ebaa320,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13504,637e3cf3-871f-4fbd-88e3-26910818358e,LIST_ACCOUNTS,xs2aListAccounts,true -13505,637e3cf3-871f-4fbd-88e3-26910818358e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13505,637e3cf3-871f-4fbd-88e3-26910818358e,LIST_TRANSACTIONS,xs2aListTransactions,true 13506,637e3cf3-871f-4fbd-88e3-26910818358e,AUTHORIZATION,,true 13507,637e3cf3-871f-4fbd-88e3-26910818358e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13508,637e3cf3-871f-4fbd-88e3-26910818358e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13509,637e3cf3-871f-4fbd-88e3-26910818358e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13510,7358319b-e4cb-4284-8a26-7bc1950178ce,LIST_ACCOUNTS,hbciListAccounts,false -13511,7358319b-e4cb-4284-8a26-7bc1950178ce,LIST_TRANSACTIONS,hbciListTransactions,false -13512,7358319b-e4cb-4284-8a26-7bc1950178ce,AUTHORIZATION,,false -13513,7358319b-e4cb-4284-8a26-7bc1950178ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13514,7358319b-e4cb-4284-8a26-7bc1950178ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13515,7358319b-e4cb-4284-8a26-7bc1950178ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13510,df8c0a43-d6e9-4223-8329-54b0ff6199a4,LIST_ACCOUNTS,hbciListAccounts,false +13511,df8c0a43-d6e9-4223-8329-54b0ff6199a4,LIST_TRANSACTIONS,hbciListTransactions,false +13512,df8c0a43-d6e9-4223-8329-54b0ff6199a4,AUTHORIZATION,,false +13513,df8c0a43-d6e9-4223-8329-54b0ff6199a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13514,df8c0a43-d6e9-4223-8329-54b0ff6199a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13515,df8c0a43-d6e9-4223-8329-54b0ff6199a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13516,43d77737-9a8b-4610-a0bd-102b79f21f48,LIST_ACCOUNTS,xs2aListAccounts,true -13517,43d77737-9a8b-4610-a0bd-102b79f21f48,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13517,43d77737-9a8b-4610-a0bd-102b79f21f48,LIST_TRANSACTIONS,xs2aListTransactions,true 13518,43d77737-9a8b-4610-a0bd-102b79f21f48,AUTHORIZATION,,true 13519,43d77737-9a8b-4610-a0bd-102b79f21f48,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13520,43d77737-9a8b-4610-a0bd-102b79f21f48,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13521,43d77737-9a8b-4610-a0bd-102b79f21f48,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13522,14861bd1-f636-45d8-8e2e-2fc0a1daa3fd,LIST_ACCOUNTS,hbciListAccounts,false -13523,14861bd1-f636-45d8-8e2e-2fc0a1daa3fd,LIST_TRANSACTIONS,hbciListTransactions,false -13524,14861bd1-f636-45d8-8e2e-2fc0a1daa3fd,AUTHORIZATION,,false -13525,14861bd1-f636-45d8-8e2e-2fc0a1daa3fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13526,14861bd1-f636-45d8-8e2e-2fc0a1daa3fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13527,14861bd1-f636-45d8-8e2e-2fc0a1daa3fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13522,a5bb74c5-68bc-40ca-b026-639af1570f34,LIST_ACCOUNTS,hbciListAccounts,false +13523,a5bb74c5-68bc-40ca-b026-639af1570f34,LIST_TRANSACTIONS,hbciListTransactions,false +13524,a5bb74c5-68bc-40ca-b026-639af1570f34,AUTHORIZATION,,false +13525,a5bb74c5-68bc-40ca-b026-639af1570f34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13526,a5bb74c5-68bc-40ca-b026-639af1570f34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13527,a5bb74c5-68bc-40ca-b026-639af1570f34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13528,72bd7bc6-edc2-4f11-9cd7-a1c9c5870df3,LIST_ACCOUNTS,xs2aListAccounts,true -13529,72bd7bc6-edc2-4f11-9cd7-a1c9c5870df3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13529,72bd7bc6-edc2-4f11-9cd7-a1c9c5870df3,LIST_TRANSACTIONS,xs2aListTransactions,true 13530,72bd7bc6-edc2-4f11-9cd7-a1c9c5870df3,AUTHORIZATION,,true 13531,72bd7bc6-edc2-4f11-9cd7-a1c9c5870df3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13532,72bd7bc6-edc2-4f11-9cd7-a1c9c5870df3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13533,72bd7bc6-edc2-4f11-9cd7-a1c9c5870df3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13534,30164664-f469-40e2-8d9f-1c7aee2460c4,LIST_ACCOUNTS,hbciListAccounts,false -13535,30164664-f469-40e2-8d9f-1c7aee2460c4,LIST_TRANSACTIONS,hbciListTransactions,false -13536,30164664-f469-40e2-8d9f-1c7aee2460c4,AUTHORIZATION,,false -13537,30164664-f469-40e2-8d9f-1c7aee2460c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13538,30164664-f469-40e2-8d9f-1c7aee2460c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13539,30164664-f469-40e2-8d9f-1c7aee2460c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13534,e00f4f55-2ef7-4072-b9a0-5b7c3d22f891,LIST_ACCOUNTS,hbciListAccounts,false +13535,e00f4f55-2ef7-4072-b9a0-5b7c3d22f891,LIST_TRANSACTIONS,hbciListTransactions,false +13536,e00f4f55-2ef7-4072-b9a0-5b7c3d22f891,AUTHORIZATION,,false +13537,e00f4f55-2ef7-4072-b9a0-5b7c3d22f891,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13538,e00f4f55-2ef7-4072-b9a0-5b7c3d22f891,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13539,e00f4f55-2ef7-4072-b9a0-5b7c3d22f891,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13540,6413ae7d-3a3b-4c84-8b0a-be5ef8ca0073,LIST_ACCOUNTS,xs2aListAccounts,true -13541,6413ae7d-3a3b-4c84-8b0a-be5ef8ca0073,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13541,6413ae7d-3a3b-4c84-8b0a-be5ef8ca0073,LIST_TRANSACTIONS,xs2aListTransactions,true 13542,6413ae7d-3a3b-4c84-8b0a-be5ef8ca0073,AUTHORIZATION,,true 13543,6413ae7d-3a3b-4c84-8b0a-be5ef8ca0073,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13544,6413ae7d-3a3b-4c84-8b0a-be5ef8ca0073,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13545,6413ae7d-3a3b-4c84-8b0a-be5ef8ca0073,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13546,a1a0287b-0b52-46d2-813e-8e7644ff921a,LIST_ACCOUNTS,hbciListAccounts,false -13547,a1a0287b-0b52-46d2-813e-8e7644ff921a,LIST_TRANSACTIONS,hbciListTransactions,false -13548,a1a0287b-0b52-46d2-813e-8e7644ff921a,AUTHORIZATION,,false -13549,a1a0287b-0b52-46d2-813e-8e7644ff921a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13550,a1a0287b-0b52-46d2-813e-8e7644ff921a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13551,a1a0287b-0b52-46d2-813e-8e7644ff921a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13546,719a9449-0968-4242-9671-6a2c88383d1c,LIST_ACCOUNTS,hbciListAccounts,false +13547,719a9449-0968-4242-9671-6a2c88383d1c,LIST_TRANSACTIONS,hbciListTransactions,false +13548,719a9449-0968-4242-9671-6a2c88383d1c,AUTHORIZATION,,false +13549,719a9449-0968-4242-9671-6a2c88383d1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13550,719a9449-0968-4242-9671-6a2c88383d1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13551,719a9449-0968-4242-9671-6a2c88383d1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13552,dd4f992b-232c-4ee2-9707-986bf0275c72,LIST_ACCOUNTS,xs2aListAccounts,true -13553,dd4f992b-232c-4ee2-9707-986bf0275c72,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13553,dd4f992b-232c-4ee2-9707-986bf0275c72,LIST_TRANSACTIONS,xs2aListTransactions,true 13554,dd4f992b-232c-4ee2-9707-986bf0275c72,AUTHORIZATION,,true 13555,dd4f992b-232c-4ee2-9707-986bf0275c72,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13556,dd4f992b-232c-4ee2-9707-986bf0275c72,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13557,dd4f992b-232c-4ee2-9707-986bf0275c72,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13558,fcd161bb-bff5-464b-bfe5-90e67ed5a2f2,LIST_ACCOUNTS,hbciListAccounts,false -13559,fcd161bb-bff5-464b-bfe5-90e67ed5a2f2,LIST_TRANSACTIONS,hbciListTransactions,false -13560,fcd161bb-bff5-464b-bfe5-90e67ed5a2f2,AUTHORIZATION,,false -13561,fcd161bb-bff5-464b-bfe5-90e67ed5a2f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13562,fcd161bb-bff5-464b-bfe5-90e67ed5a2f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13563,fcd161bb-bff5-464b-bfe5-90e67ed5a2f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13558,ae0070cd-b210-4680-86cd-908109d21ff8,LIST_ACCOUNTS,hbciListAccounts,false +13559,ae0070cd-b210-4680-86cd-908109d21ff8,LIST_TRANSACTIONS,hbciListTransactions,false +13560,ae0070cd-b210-4680-86cd-908109d21ff8,AUTHORIZATION,,false +13561,ae0070cd-b210-4680-86cd-908109d21ff8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13562,ae0070cd-b210-4680-86cd-908109d21ff8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13563,ae0070cd-b210-4680-86cd-908109d21ff8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13564,c19b2498-c5e0-4c3f-8505-4f35e43fd5b2,LIST_ACCOUNTS,xs2aListAccounts,true -13565,c19b2498-c5e0-4c3f-8505-4f35e43fd5b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13565,c19b2498-c5e0-4c3f-8505-4f35e43fd5b2,LIST_TRANSACTIONS,xs2aListTransactions,true 13566,c19b2498-c5e0-4c3f-8505-4f35e43fd5b2,AUTHORIZATION,,true 13567,c19b2498-c5e0-4c3f-8505-4f35e43fd5b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13568,c19b2498-c5e0-4c3f-8505-4f35e43fd5b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13569,c19b2498-c5e0-4c3f-8505-4f35e43fd5b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13570,1e13b180-1a7b-461d-b0ea-5a515bca6ba1,LIST_ACCOUNTS,hbciListAccounts,false -13571,1e13b180-1a7b-461d-b0ea-5a515bca6ba1,LIST_TRANSACTIONS,hbciListTransactions,false -13572,1e13b180-1a7b-461d-b0ea-5a515bca6ba1,AUTHORIZATION,,false -13573,1e13b180-1a7b-461d-b0ea-5a515bca6ba1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13574,1e13b180-1a7b-461d-b0ea-5a515bca6ba1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13575,1e13b180-1a7b-461d-b0ea-5a515bca6ba1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13570,5140e33a-f366-4ffb-ad3e-e440c45c033f,LIST_ACCOUNTS,hbciListAccounts,false +13571,5140e33a-f366-4ffb-ad3e-e440c45c033f,LIST_TRANSACTIONS,hbciListTransactions,false +13572,5140e33a-f366-4ffb-ad3e-e440c45c033f,AUTHORIZATION,,false +13573,5140e33a-f366-4ffb-ad3e-e440c45c033f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13574,5140e33a-f366-4ffb-ad3e-e440c45c033f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13575,5140e33a-f366-4ffb-ad3e-e440c45c033f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13576,8f404e78-3b23-46f7-a038-867a1fe98f1c,LIST_ACCOUNTS,xs2aListAccounts,true -13577,8f404e78-3b23-46f7-a038-867a1fe98f1c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13577,8f404e78-3b23-46f7-a038-867a1fe98f1c,LIST_TRANSACTIONS,xs2aListTransactions,true 13578,8f404e78-3b23-46f7-a038-867a1fe98f1c,AUTHORIZATION,,true 13579,8f404e78-3b23-46f7-a038-867a1fe98f1c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13580,8f404e78-3b23-46f7-a038-867a1fe98f1c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13581,8f404e78-3b23-46f7-a038-867a1fe98f1c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13582,514ad716-2bfc-4ddc-ace2-82524a9f1e2b,LIST_ACCOUNTS,hbciListAccounts,false -13583,514ad716-2bfc-4ddc-ace2-82524a9f1e2b,LIST_TRANSACTIONS,hbciListTransactions,false -13584,514ad716-2bfc-4ddc-ace2-82524a9f1e2b,AUTHORIZATION,,false -13585,514ad716-2bfc-4ddc-ace2-82524a9f1e2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13586,514ad716-2bfc-4ddc-ace2-82524a9f1e2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13587,514ad716-2bfc-4ddc-ace2-82524a9f1e2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13582,55d7903f-8421-4da3-8d90-af3731eb71c1,LIST_ACCOUNTS,hbciListAccounts,false +13583,55d7903f-8421-4da3-8d90-af3731eb71c1,LIST_TRANSACTIONS,hbciListTransactions,false +13584,55d7903f-8421-4da3-8d90-af3731eb71c1,AUTHORIZATION,,false +13585,55d7903f-8421-4da3-8d90-af3731eb71c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13586,55d7903f-8421-4da3-8d90-af3731eb71c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13587,55d7903f-8421-4da3-8d90-af3731eb71c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13588,176a26ac-dd51-4f6d-8319-b71f78eb1ee5,LIST_ACCOUNTS,xs2aListAccounts,true -13589,176a26ac-dd51-4f6d-8319-b71f78eb1ee5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13589,176a26ac-dd51-4f6d-8319-b71f78eb1ee5,LIST_TRANSACTIONS,xs2aListTransactions,true 13590,176a26ac-dd51-4f6d-8319-b71f78eb1ee5,AUTHORIZATION,,true 13591,176a26ac-dd51-4f6d-8319-b71f78eb1ee5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13592,176a26ac-dd51-4f6d-8319-b71f78eb1ee5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13593,176a26ac-dd51-4f6d-8319-b71f78eb1ee5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13594,4424ada8-12ef-4338-a39a-2cad235b58f3,LIST_ACCOUNTS,hbciListAccounts,false -13595,4424ada8-12ef-4338-a39a-2cad235b58f3,LIST_TRANSACTIONS,hbciListTransactions,false -13596,4424ada8-12ef-4338-a39a-2cad235b58f3,AUTHORIZATION,,false -13597,4424ada8-12ef-4338-a39a-2cad235b58f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13598,4424ada8-12ef-4338-a39a-2cad235b58f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13599,4424ada8-12ef-4338-a39a-2cad235b58f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13594,a5e7b506-593d-444b-a4a8-dc3a746122d2,LIST_ACCOUNTS,hbciListAccounts,false +13595,a5e7b506-593d-444b-a4a8-dc3a746122d2,LIST_TRANSACTIONS,hbciListTransactions,false +13596,a5e7b506-593d-444b-a4a8-dc3a746122d2,AUTHORIZATION,,false +13597,a5e7b506-593d-444b-a4a8-dc3a746122d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13598,a5e7b506-593d-444b-a4a8-dc3a746122d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13599,a5e7b506-593d-444b-a4a8-dc3a746122d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13600,fd6d19dc-29ca-4364-af43-713a214021c4,LIST_ACCOUNTS,xs2aListAccounts,true -13601,fd6d19dc-29ca-4364-af43-713a214021c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13601,fd6d19dc-29ca-4364-af43-713a214021c4,LIST_TRANSACTIONS,xs2aListTransactions,true 13602,fd6d19dc-29ca-4364-af43-713a214021c4,AUTHORIZATION,,true 13603,fd6d19dc-29ca-4364-af43-713a214021c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13604,fd6d19dc-29ca-4364-af43-713a214021c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13605,fd6d19dc-29ca-4364-af43-713a214021c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13606,d04f1cad-29a5-4cfe-928d-c7e276f08efd,LIST_ACCOUNTS,hbciListAccounts,false -13607,d04f1cad-29a5-4cfe-928d-c7e276f08efd,LIST_TRANSACTIONS,hbciListTransactions,false -13608,d04f1cad-29a5-4cfe-928d-c7e276f08efd,AUTHORIZATION,,false -13609,d04f1cad-29a5-4cfe-928d-c7e276f08efd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13610,d04f1cad-29a5-4cfe-928d-c7e276f08efd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13611,d04f1cad-29a5-4cfe-928d-c7e276f08efd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13606,eb838991-63e0-411a-b964-40f0c991552b,LIST_ACCOUNTS,hbciListAccounts,false +13607,eb838991-63e0-411a-b964-40f0c991552b,LIST_TRANSACTIONS,hbciListTransactions,false +13608,eb838991-63e0-411a-b964-40f0c991552b,AUTHORIZATION,,false +13609,eb838991-63e0-411a-b964-40f0c991552b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13610,eb838991-63e0-411a-b964-40f0c991552b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13611,eb838991-63e0-411a-b964-40f0c991552b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13612,ad0efb7b-7e02-4485-9c05-54a760483b0c,LIST_ACCOUNTS,xs2aListAccounts,true -13613,ad0efb7b-7e02-4485-9c05-54a760483b0c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13613,ad0efb7b-7e02-4485-9c05-54a760483b0c,LIST_TRANSACTIONS,xs2aListTransactions,true 13614,ad0efb7b-7e02-4485-9c05-54a760483b0c,AUTHORIZATION,,true 13615,ad0efb7b-7e02-4485-9c05-54a760483b0c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13616,ad0efb7b-7e02-4485-9c05-54a760483b0c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13617,ad0efb7b-7e02-4485-9c05-54a760483b0c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13618,906488cb-7248-4389-b691-db393937f257,LIST_ACCOUNTS,hbciListAccounts,false -13619,906488cb-7248-4389-b691-db393937f257,LIST_TRANSACTIONS,hbciListTransactions,false -13620,906488cb-7248-4389-b691-db393937f257,AUTHORIZATION,,false -13621,906488cb-7248-4389-b691-db393937f257,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13622,906488cb-7248-4389-b691-db393937f257,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13623,906488cb-7248-4389-b691-db393937f257,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13618,91354996-b630-4b1a-817a-99c5cdd1dd86,LIST_ACCOUNTS,hbciListAccounts,false +13619,91354996-b630-4b1a-817a-99c5cdd1dd86,LIST_TRANSACTIONS,hbciListTransactions,false +13620,91354996-b630-4b1a-817a-99c5cdd1dd86,AUTHORIZATION,,false +13621,91354996-b630-4b1a-817a-99c5cdd1dd86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13622,91354996-b630-4b1a-817a-99c5cdd1dd86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13623,91354996-b630-4b1a-817a-99c5cdd1dd86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13624,b137a405-6c31-4137-b7d0-371bfdc87d6d,LIST_ACCOUNTS,xs2aListAccounts,true -13625,b137a405-6c31-4137-b7d0-371bfdc87d6d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13625,b137a405-6c31-4137-b7d0-371bfdc87d6d,LIST_TRANSACTIONS,xs2aListTransactions,true 13626,b137a405-6c31-4137-b7d0-371bfdc87d6d,AUTHORIZATION,,true 13627,b137a405-6c31-4137-b7d0-371bfdc87d6d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13628,b137a405-6c31-4137-b7d0-371bfdc87d6d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13629,b137a405-6c31-4137-b7d0-371bfdc87d6d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13630,61b5bccb-6130-4afd-94f0-5840e7e43d7e,LIST_ACCOUNTS,hbciListAccounts,false -13631,61b5bccb-6130-4afd-94f0-5840e7e43d7e,LIST_TRANSACTIONS,hbciListTransactions,false -13632,61b5bccb-6130-4afd-94f0-5840e7e43d7e,AUTHORIZATION,,false -13633,61b5bccb-6130-4afd-94f0-5840e7e43d7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13634,61b5bccb-6130-4afd-94f0-5840e7e43d7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13635,61b5bccb-6130-4afd-94f0-5840e7e43d7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13630,6f1a74a1-7171-41f3-861c-7c96ea34a8da,LIST_ACCOUNTS,hbciListAccounts,false +13631,6f1a74a1-7171-41f3-861c-7c96ea34a8da,LIST_TRANSACTIONS,hbciListTransactions,false +13632,6f1a74a1-7171-41f3-861c-7c96ea34a8da,AUTHORIZATION,,false +13633,6f1a74a1-7171-41f3-861c-7c96ea34a8da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13634,6f1a74a1-7171-41f3-861c-7c96ea34a8da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13635,6f1a74a1-7171-41f3-861c-7c96ea34a8da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13636,6a093798-ad23-4ccd-a72b-438aa3a0a7ca,LIST_ACCOUNTS,xs2aListAccounts,true -13637,6a093798-ad23-4ccd-a72b-438aa3a0a7ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13637,6a093798-ad23-4ccd-a72b-438aa3a0a7ca,LIST_TRANSACTIONS,xs2aListTransactions,true 13638,6a093798-ad23-4ccd-a72b-438aa3a0a7ca,AUTHORIZATION,,true 13639,6a093798-ad23-4ccd-a72b-438aa3a0a7ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13640,6a093798-ad23-4ccd-a72b-438aa3a0a7ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13641,6a093798-ad23-4ccd-a72b-438aa3a0a7ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13642,d04d59ef-f475-43c0-b3a5-bd9d3c1413cd,LIST_ACCOUNTS,hbciListAccounts,false -13643,d04d59ef-f475-43c0-b3a5-bd9d3c1413cd,LIST_TRANSACTIONS,hbciListTransactions,false -13644,d04d59ef-f475-43c0-b3a5-bd9d3c1413cd,AUTHORIZATION,,false -13645,d04d59ef-f475-43c0-b3a5-bd9d3c1413cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13646,d04d59ef-f475-43c0-b3a5-bd9d3c1413cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13647,d04d59ef-f475-43c0-b3a5-bd9d3c1413cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13642,417e60cd-eae2-45b0-a87d-5533fcc20ef3,LIST_ACCOUNTS,hbciListAccounts,false +13643,417e60cd-eae2-45b0-a87d-5533fcc20ef3,LIST_TRANSACTIONS,hbciListTransactions,false +13644,417e60cd-eae2-45b0-a87d-5533fcc20ef3,AUTHORIZATION,,false +13645,417e60cd-eae2-45b0-a87d-5533fcc20ef3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13646,417e60cd-eae2-45b0-a87d-5533fcc20ef3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13647,417e60cd-eae2-45b0-a87d-5533fcc20ef3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13648,c45c1e08-df5b-4dd7-beb4-cec503913f42,LIST_ACCOUNTS,xs2aListAccounts,true -13649,c45c1e08-df5b-4dd7-beb4-cec503913f42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13649,c45c1e08-df5b-4dd7-beb4-cec503913f42,LIST_TRANSACTIONS,xs2aListTransactions,true 13650,c45c1e08-df5b-4dd7-beb4-cec503913f42,AUTHORIZATION,,true 13651,c45c1e08-df5b-4dd7-beb4-cec503913f42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13652,c45c1e08-df5b-4dd7-beb4-cec503913f42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13653,c45c1e08-df5b-4dd7-beb4-cec503913f42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13654,79069cc7-0dd5-4cd0-bef7-503999b8308c,LIST_ACCOUNTS,hbciListAccounts,false -13655,79069cc7-0dd5-4cd0-bef7-503999b8308c,LIST_TRANSACTIONS,hbciListTransactions,false -13656,79069cc7-0dd5-4cd0-bef7-503999b8308c,AUTHORIZATION,,false -13657,79069cc7-0dd5-4cd0-bef7-503999b8308c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13658,79069cc7-0dd5-4cd0-bef7-503999b8308c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13659,79069cc7-0dd5-4cd0-bef7-503999b8308c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13654,805d24e7-c480-4b49-b257-eaea955b8f5e,LIST_ACCOUNTS,hbciListAccounts,false +13655,805d24e7-c480-4b49-b257-eaea955b8f5e,LIST_TRANSACTIONS,hbciListTransactions,false +13656,805d24e7-c480-4b49-b257-eaea955b8f5e,AUTHORIZATION,,false +13657,805d24e7-c480-4b49-b257-eaea955b8f5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13658,805d24e7-c480-4b49-b257-eaea955b8f5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13659,805d24e7-c480-4b49-b257-eaea955b8f5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13660,c7ed5e6d-09ee-4175-a4aa-9bb5ac9c69e6,LIST_ACCOUNTS,xs2aListAccounts,true -13661,c7ed5e6d-09ee-4175-a4aa-9bb5ac9c69e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13661,c7ed5e6d-09ee-4175-a4aa-9bb5ac9c69e6,LIST_TRANSACTIONS,xs2aListTransactions,true 13662,c7ed5e6d-09ee-4175-a4aa-9bb5ac9c69e6,AUTHORIZATION,,true 13663,c7ed5e6d-09ee-4175-a4aa-9bb5ac9c69e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13664,c7ed5e6d-09ee-4175-a4aa-9bb5ac9c69e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13665,c7ed5e6d-09ee-4175-a4aa-9bb5ac9c69e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13666,a76f2f4d-14ee-492e-be69-7b478213fca2,LIST_ACCOUNTS,hbciListAccounts,false -13667,a76f2f4d-14ee-492e-be69-7b478213fca2,LIST_TRANSACTIONS,hbciListTransactions,false -13668,a76f2f4d-14ee-492e-be69-7b478213fca2,AUTHORIZATION,,false -13669,a76f2f4d-14ee-492e-be69-7b478213fca2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13670,a76f2f4d-14ee-492e-be69-7b478213fca2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13671,a76f2f4d-14ee-492e-be69-7b478213fca2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13666,91ef41de-d9b5-48e8-b405-c3097c727fc0,LIST_ACCOUNTS,hbciListAccounts,false +13667,91ef41de-d9b5-48e8-b405-c3097c727fc0,LIST_TRANSACTIONS,hbciListTransactions,false +13668,91ef41de-d9b5-48e8-b405-c3097c727fc0,AUTHORIZATION,,false +13669,91ef41de-d9b5-48e8-b405-c3097c727fc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13670,91ef41de-d9b5-48e8-b405-c3097c727fc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13671,91ef41de-d9b5-48e8-b405-c3097c727fc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13672,3ec0fc58-8987-4693-96af-a55b98a7a5b5,LIST_ACCOUNTS,xs2aListAccounts,true -13673,3ec0fc58-8987-4693-96af-a55b98a7a5b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13673,3ec0fc58-8987-4693-96af-a55b98a7a5b5,LIST_TRANSACTIONS,xs2aListTransactions,true 13674,3ec0fc58-8987-4693-96af-a55b98a7a5b5,AUTHORIZATION,,true 13675,3ec0fc58-8987-4693-96af-a55b98a7a5b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13676,3ec0fc58-8987-4693-96af-a55b98a7a5b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13677,3ec0fc58-8987-4693-96af-a55b98a7a5b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13678,a7462cae-9bd5-4401-ad06-7f4471529405,LIST_ACCOUNTS,hbciListAccounts,false -13679,a7462cae-9bd5-4401-ad06-7f4471529405,LIST_TRANSACTIONS,hbciListTransactions,false -13680,a7462cae-9bd5-4401-ad06-7f4471529405,AUTHORIZATION,,false -13681,a7462cae-9bd5-4401-ad06-7f4471529405,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13682,a7462cae-9bd5-4401-ad06-7f4471529405,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13683,a7462cae-9bd5-4401-ad06-7f4471529405,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13678,39117a26-66ce-42ac-8c77-c22427d532e9,LIST_ACCOUNTS,hbciListAccounts,false +13679,39117a26-66ce-42ac-8c77-c22427d532e9,LIST_TRANSACTIONS,hbciListTransactions,false +13680,39117a26-66ce-42ac-8c77-c22427d532e9,AUTHORIZATION,,false +13681,39117a26-66ce-42ac-8c77-c22427d532e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13682,39117a26-66ce-42ac-8c77-c22427d532e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13683,39117a26-66ce-42ac-8c77-c22427d532e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13684,79ab11cb-078e-4ef5-9195-d119bee6a55b,LIST_ACCOUNTS,xs2aListAccounts,true -13685,79ab11cb-078e-4ef5-9195-d119bee6a55b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13685,79ab11cb-078e-4ef5-9195-d119bee6a55b,LIST_TRANSACTIONS,xs2aListTransactions,true 13686,79ab11cb-078e-4ef5-9195-d119bee6a55b,AUTHORIZATION,,true 13687,79ab11cb-078e-4ef5-9195-d119bee6a55b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13688,79ab11cb-078e-4ef5-9195-d119bee6a55b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13689,79ab11cb-078e-4ef5-9195-d119bee6a55b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13690,4e58176d-24b8-4b20-8c84-34b22a9dbaac,LIST_ACCOUNTS,hbciListAccounts,false -13691,4e58176d-24b8-4b20-8c84-34b22a9dbaac,LIST_TRANSACTIONS,hbciListTransactions,false -13692,4e58176d-24b8-4b20-8c84-34b22a9dbaac,AUTHORIZATION,,false -13693,4e58176d-24b8-4b20-8c84-34b22a9dbaac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13694,4e58176d-24b8-4b20-8c84-34b22a9dbaac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13695,4e58176d-24b8-4b20-8c84-34b22a9dbaac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13690,fa5d814e-a48c-4d47-933e-044d796e024e,LIST_ACCOUNTS,hbciListAccounts,false +13691,fa5d814e-a48c-4d47-933e-044d796e024e,LIST_TRANSACTIONS,hbciListTransactions,false +13692,fa5d814e-a48c-4d47-933e-044d796e024e,AUTHORIZATION,,false +13693,fa5d814e-a48c-4d47-933e-044d796e024e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13694,fa5d814e-a48c-4d47-933e-044d796e024e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13695,fa5d814e-a48c-4d47-933e-044d796e024e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13696,cb83361b-06e6-4bd4-b6d5-cfc7c0d5bd35,LIST_ACCOUNTS,xs2aListAccounts,true -13697,cb83361b-06e6-4bd4-b6d5-cfc7c0d5bd35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13697,cb83361b-06e6-4bd4-b6d5-cfc7c0d5bd35,LIST_TRANSACTIONS,xs2aListTransactions,true 13698,cb83361b-06e6-4bd4-b6d5-cfc7c0d5bd35,AUTHORIZATION,,true 13699,cb83361b-06e6-4bd4-b6d5-cfc7c0d5bd35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13700,cb83361b-06e6-4bd4-b6d5-cfc7c0d5bd35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13701,cb83361b-06e6-4bd4-b6d5-cfc7c0d5bd35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13702,8874169d-bbf6-4475-ae63-312d35d824f6,LIST_ACCOUNTS,hbciListAccounts,false -13703,8874169d-bbf6-4475-ae63-312d35d824f6,LIST_TRANSACTIONS,hbciListTransactions,false -13704,8874169d-bbf6-4475-ae63-312d35d824f6,AUTHORIZATION,,false -13705,8874169d-bbf6-4475-ae63-312d35d824f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13706,8874169d-bbf6-4475-ae63-312d35d824f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13707,8874169d-bbf6-4475-ae63-312d35d824f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13702,640879bc-daf0-4262-b356-462d4517a589,LIST_ACCOUNTS,hbciListAccounts,false +13703,640879bc-daf0-4262-b356-462d4517a589,LIST_TRANSACTIONS,hbciListTransactions,false +13704,640879bc-daf0-4262-b356-462d4517a589,AUTHORIZATION,,false +13705,640879bc-daf0-4262-b356-462d4517a589,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13706,640879bc-daf0-4262-b356-462d4517a589,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13707,640879bc-daf0-4262-b356-462d4517a589,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13708,8f627708-058f-47eb-b6f5-8764d0f6600c,LIST_ACCOUNTS,xs2aListAccounts,true -13709,8f627708-058f-47eb-b6f5-8764d0f6600c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13709,8f627708-058f-47eb-b6f5-8764d0f6600c,LIST_TRANSACTIONS,xs2aListTransactions,true 13710,8f627708-058f-47eb-b6f5-8764d0f6600c,AUTHORIZATION,,true 13711,8f627708-058f-47eb-b6f5-8764d0f6600c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13712,8f627708-058f-47eb-b6f5-8764d0f6600c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13713,8f627708-058f-47eb-b6f5-8764d0f6600c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13714,1941e9ce-41c3-487b-8e09-ae94c1b90e92,LIST_ACCOUNTS,hbciListAccounts,false -13715,1941e9ce-41c3-487b-8e09-ae94c1b90e92,LIST_TRANSACTIONS,hbciListTransactions,false -13716,1941e9ce-41c3-487b-8e09-ae94c1b90e92,AUTHORIZATION,,false -13717,1941e9ce-41c3-487b-8e09-ae94c1b90e92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13718,1941e9ce-41c3-487b-8e09-ae94c1b90e92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13719,1941e9ce-41c3-487b-8e09-ae94c1b90e92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13714,5fbd02f5-f5e7-4ed4-ab73-82db7f539390,LIST_ACCOUNTS,hbciListAccounts,false +13715,5fbd02f5-f5e7-4ed4-ab73-82db7f539390,LIST_TRANSACTIONS,hbciListTransactions,false +13716,5fbd02f5-f5e7-4ed4-ab73-82db7f539390,AUTHORIZATION,,false +13717,5fbd02f5-f5e7-4ed4-ab73-82db7f539390,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13718,5fbd02f5-f5e7-4ed4-ab73-82db7f539390,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13719,5fbd02f5-f5e7-4ed4-ab73-82db7f539390,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13720,b033374f-0e33-4ec3-952e-44d04e7fc80e,LIST_ACCOUNTS,xs2aListAccounts,true -13721,b033374f-0e33-4ec3-952e-44d04e7fc80e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13721,b033374f-0e33-4ec3-952e-44d04e7fc80e,LIST_TRANSACTIONS,xs2aListTransactions,true 13722,b033374f-0e33-4ec3-952e-44d04e7fc80e,AUTHORIZATION,,true 13723,b033374f-0e33-4ec3-952e-44d04e7fc80e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13724,b033374f-0e33-4ec3-952e-44d04e7fc80e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13725,b033374f-0e33-4ec3-952e-44d04e7fc80e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13726,39f1df3e-6e1e-47d7-957c-177878a4f086,LIST_ACCOUNTS,hbciListAccounts,false -13727,39f1df3e-6e1e-47d7-957c-177878a4f086,LIST_TRANSACTIONS,hbciListTransactions,false -13728,39f1df3e-6e1e-47d7-957c-177878a4f086,AUTHORIZATION,,false -13729,39f1df3e-6e1e-47d7-957c-177878a4f086,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13730,39f1df3e-6e1e-47d7-957c-177878a4f086,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13731,39f1df3e-6e1e-47d7-957c-177878a4f086,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13726,4c8fb5ef-2867-42f3-a021-1ee7a948d47b,LIST_ACCOUNTS,hbciListAccounts,false +13727,4c8fb5ef-2867-42f3-a021-1ee7a948d47b,LIST_TRANSACTIONS,hbciListTransactions,false +13728,4c8fb5ef-2867-42f3-a021-1ee7a948d47b,AUTHORIZATION,,false +13729,4c8fb5ef-2867-42f3-a021-1ee7a948d47b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13730,4c8fb5ef-2867-42f3-a021-1ee7a948d47b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13731,4c8fb5ef-2867-42f3-a021-1ee7a948d47b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13732,976cc095-994b-4e29-a8d1-8471a76bba97,LIST_ACCOUNTS,xs2aListAccounts,true -13733,976cc095-994b-4e29-a8d1-8471a76bba97,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13733,976cc095-994b-4e29-a8d1-8471a76bba97,LIST_TRANSACTIONS,xs2aListTransactions,true 13734,976cc095-994b-4e29-a8d1-8471a76bba97,AUTHORIZATION,,true 13735,976cc095-994b-4e29-a8d1-8471a76bba97,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13736,976cc095-994b-4e29-a8d1-8471a76bba97,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13737,976cc095-994b-4e29-a8d1-8471a76bba97,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13738,18ae748a-030e-44f9-827a-c32d72db0d54,LIST_ACCOUNTS,hbciListAccounts,false -13739,18ae748a-030e-44f9-827a-c32d72db0d54,LIST_TRANSACTIONS,hbciListTransactions,false -13740,18ae748a-030e-44f9-827a-c32d72db0d54,AUTHORIZATION,,false -13741,18ae748a-030e-44f9-827a-c32d72db0d54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13742,18ae748a-030e-44f9-827a-c32d72db0d54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13743,18ae748a-030e-44f9-827a-c32d72db0d54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13738,9dd23e43-34e2-4f54-af58-be2fb196f25c,LIST_ACCOUNTS,hbciListAccounts,false +13739,9dd23e43-34e2-4f54-af58-be2fb196f25c,LIST_TRANSACTIONS,hbciListTransactions,false +13740,9dd23e43-34e2-4f54-af58-be2fb196f25c,AUTHORIZATION,,false +13741,9dd23e43-34e2-4f54-af58-be2fb196f25c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13742,9dd23e43-34e2-4f54-af58-be2fb196f25c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13743,9dd23e43-34e2-4f54-af58-be2fb196f25c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13744,21aa442f-d506-480e-8ffe-8cf4421bd71c,LIST_ACCOUNTS,xs2aListAccounts,true -13745,21aa442f-d506-480e-8ffe-8cf4421bd71c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13745,21aa442f-d506-480e-8ffe-8cf4421bd71c,LIST_TRANSACTIONS,xs2aListTransactions,true 13746,21aa442f-d506-480e-8ffe-8cf4421bd71c,AUTHORIZATION,,true 13747,21aa442f-d506-480e-8ffe-8cf4421bd71c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13748,21aa442f-d506-480e-8ffe-8cf4421bd71c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13749,21aa442f-d506-480e-8ffe-8cf4421bd71c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13750,d6c32872-735b-4285-b330-a652d4ba294c,LIST_ACCOUNTS,hbciListAccounts,false -13751,d6c32872-735b-4285-b330-a652d4ba294c,LIST_TRANSACTIONS,hbciListTransactions,false -13752,d6c32872-735b-4285-b330-a652d4ba294c,AUTHORIZATION,,false -13753,d6c32872-735b-4285-b330-a652d4ba294c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13754,d6c32872-735b-4285-b330-a652d4ba294c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13755,d6c32872-735b-4285-b330-a652d4ba294c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13750,2c3d273a-8a11-4cb4-b79f-bd2dda303617,LIST_ACCOUNTS,hbciListAccounts,false +13751,2c3d273a-8a11-4cb4-b79f-bd2dda303617,LIST_TRANSACTIONS,hbciListTransactions,false +13752,2c3d273a-8a11-4cb4-b79f-bd2dda303617,AUTHORIZATION,,false +13753,2c3d273a-8a11-4cb4-b79f-bd2dda303617,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13754,2c3d273a-8a11-4cb4-b79f-bd2dda303617,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13755,2c3d273a-8a11-4cb4-b79f-bd2dda303617,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13756,440b2625-0c1a-41fa-8f02-3f905ec4da65,LIST_ACCOUNTS,xs2aListAccounts,true -13757,440b2625-0c1a-41fa-8f02-3f905ec4da65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13757,440b2625-0c1a-41fa-8f02-3f905ec4da65,LIST_TRANSACTIONS,xs2aListTransactions,true 13758,440b2625-0c1a-41fa-8f02-3f905ec4da65,AUTHORIZATION,,true 13759,440b2625-0c1a-41fa-8f02-3f905ec4da65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13760,440b2625-0c1a-41fa-8f02-3f905ec4da65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13761,440b2625-0c1a-41fa-8f02-3f905ec4da65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13762,cee89584-c19d-4624-b754-6432d02c910e,LIST_ACCOUNTS,hbciListAccounts,false -13763,cee89584-c19d-4624-b754-6432d02c910e,LIST_TRANSACTIONS,hbciListTransactions,false -13764,cee89584-c19d-4624-b754-6432d02c910e,AUTHORIZATION,,false -13765,cee89584-c19d-4624-b754-6432d02c910e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13766,cee89584-c19d-4624-b754-6432d02c910e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13767,cee89584-c19d-4624-b754-6432d02c910e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13762,f771d6e3-41a3-48bc-8e7b-1532038482b2,LIST_ACCOUNTS,hbciListAccounts,false +13763,f771d6e3-41a3-48bc-8e7b-1532038482b2,LIST_TRANSACTIONS,hbciListTransactions,false +13764,f771d6e3-41a3-48bc-8e7b-1532038482b2,AUTHORIZATION,,false +13765,f771d6e3-41a3-48bc-8e7b-1532038482b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13766,f771d6e3-41a3-48bc-8e7b-1532038482b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13767,f771d6e3-41a3-48bc-8e7b-1532038482b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13768,64b11dfc-2ea3-4ec1-b30b-05f5c90c4356,LIST_ACCOUNTS,xs2aListAccounts,true -13769,64b11dfc-2ea3-4ec1-b30b-05f5c90c4356,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13769,64b11dfc-2ea3-4ec1-b30b-05f5c90c4356,LIST_TRANSACTIONS,xs2aListTransactions,true 13770,64b11dfc-2ea3-4ec1-b30b-05f5c90c4356,AUTHORIZATION,,true 13771,64b11dfc-2ea3-4ec1-b30b-05f5c90c4356,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13772,64b11dfc-2ea3-4ec1-b30b-05f5c90c4356,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13773,64b11dfc-2ea3-4ec1-b30b-05f5c90c4356,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13774,e9118e16-7a15-4fce-acf7-c15d8209a973,LIST_ACCOUNTS,hbciListAccounts,false -13775,e9118e16-7a15-4fce-acf7-c15d8209a973,LIST_TRANSACTIONS,hbciListTransactions,false -13776,e9118e16-7a15-4fce-acf7-c15d8209a973,AUTHORIZATION,,false -13777,e9118e16-7a15-4fce-acf7-c15d8209a973,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13778,e9118e16-7a15-4fce-acf7-c15d8209a973,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13779,e9118e16-7a15-4fce-acf7-c15d8209a973,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13774,ec7e6d47-6baf-43f0-9d75-b9cb3941f09c,LIST_ACCOUNTS,hbciListAccounts,false +13775,ec7e6d47-6baf-43f0-9d75-b9cb3941f09c,LIST_TRANSACTIONS,hbciListTransactions,false +13776,ec7e6d47-6baf-43f0-9d75-b9cb3941f09c,AUTHORIZATION,,false +13777,ec7e6d47-6baf-43f0-9d75-b9cb3941f09c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13778,ec7e6d47-6baf-43f0-9d75-b9cb3941f09c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13779,ec7e6d47-6baf-43f0-9d75-b9cb3941f09c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13780,0389e47b-2ae3-4b60-b235-64aba8376baa,LIST_ACCOUNTS,xs2aListAccounts,true -13781,0389e47b-2ae3-4b60-b235-64aba8376baa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13781,0389e47b-2ae3-4b60-b235-64aba8376baa,LIST_TRANSACTIONS,xs2aListTransactions,true 13782,0389e47b-2ae3-4b60-b235-64aba8376baa,AUTHORIZATION,,true 13783,0389e47b-2ae3-4b60-b235-64aba8376baa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13784,0389e47b-2ae3-4b60-b235-64aba8376baa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13785,0389e47b-2ae3-4b60-b235-64aba8376baa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13786,905aa038-d007-44ed-bafd-b9acc2d6ff81,LIST_ACCOUNTS,hbciListAccounts,false -13787,905aa038-d007-44ed-bafd-b9acc2d6ff81,LIST_TRANSACTIONS,hbciListTransactions,false -13788,905aa038-d007-44ed-bafd-b9acc2d6ff81,AUTHORIZATION,,false -13789,905aa038-d007-44ed-bafd-b9acc2d6ff81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13790,905aa038-d007-44ed-bafd-b9acc2d6ff81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13791,905aa038-d007-44ed-bafd-b9acc2d6ff81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13786,2d6df510-909b-4e84-a0a9-5e7f154650e8,LIST_ACCOUNTS,hbciListAccounts,false +13787,2d6df510-909b-4e84-a0a9-5e7f154650e8,LIST_TRANSACTIONS,hbciListTransactions,false +13788,2d6df510-909b-4e84-a0a9-5e7f154650e8,AUTHORIZATION,,false +13789,2d6df510-909b-4e84-a0a9-5e7f154650e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13790,2d6df510-909b-4e84-a0a9-5e7f154650e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13791,2d6df510-909b-4e84-a0a9-5e7f154650e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13792,cf81c976-32e5-407b-a084-d47e02424835,LIST_ACCOUNTS,xs2aListAccounts,true -13793,cf81c976-32e5-407b-a084-d47e02424835,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13793,cf81c976-32e5-407b-a084-d47e02424835,LIST_TRANSACTIONS,xs2aListTransactions,true 13794,cf81c976-32e5-407b-a084-d47e02424835,AUTHORIZATION,,true 13795,cf81c976-32e5-407b-a084-d47e02424835,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13796,cf81c976-32e5-407b-a084-d47e02424835,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13797,cf81c976-32e5-407b-a084-d47e02424835,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13798,23e68192-814b-4e67-b51b-f8274a6c7310,LIST_ACCOUNTS,hbciListAccounts,false -13799,23e68192-814b-4e67-b51b-f8274a6c7310,LIST_TRANSACTIONS,hbciListTransactions,false -13800,23e68192-814b-4e67-b51b-f8274a6c7310,AUTHORIZATION,,false -13801,23e68192-814b-4e67-b51b-f8274a6c7310,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13802,23e68192-814b-4e67-b51b-f8274a6c7310,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13803,23e68192-814b-4e67-b51b-f8274a6c7310,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13798,64734177-2df3-4b5c-821d-8608c1de607a,LIST_ACCOUNTS,hbciListAccounts,false +13799,64734177-2df3-4b5c-821d-8608c1de607a,LIST_TRANSACTIONS,hbciListTransactions,false +13800,64734177-2df3-4b5c-821d-8608c1de607a,AUTHORIZATION,,false +13801,64734177-2df3-4b5c-821d-8608c1de607a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13802,64734177-2df3-4b5c-821d-8608c1de607a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13803,64734177-2df3-4b5c-821d-8608c1de607a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13804,ecb5aa63-3b2e-4bea-ae4e-1f7e913ccb9c,LIST_ACCOUNTS,xs2aListAccounts,true -13805,ecb5aa63-3b2e-4bea-ae4e-1f7e913ccb9c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13805,ecb5aa63-3b2e-4bea-ae4e-1f7e913ccb9c,LIST_TRANSACTIONS,xs2aListTransactions,true 13806,ecb5aa63-3b2e-4bea-ae4e-1f7e913ccb9c,AUTHORIZATION,,true 13807,ecb5aa63-3b2e-4bea-ae4e-1f7e913ccb9c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13808,ecb5aa63-3b2e-4bea-ae4e-1f7e913ccb9c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13809,ecb5aa63-3b2e-4bea-ae4e-1f7e913ccb9c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13810,81b353ca-4009-4277-b760-fc4c8dd7a89e,LIST_ACCOUNTS,hbciListAccounts,false -13811,81b353ca-4009-4277-b760-fc4c8dd7a89e,LIST_TRANSACTIONS,hbciListTransactions,false -13812,81b353ca-4009-4277-b760-fc4c8dd7a89e,AUTHORIZATION,,false -13813,81b353ca-4009-4277-b760-fc4c8dd7a89e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13814,81b353ca-4009-4277-b760-fc4c8dd7a89e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13815,81b353ca-4009-4277-b760-fc4c8dd7a89e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13810,3dec822c-2bb0-4a4f-87ec-09c37103b2f0,LIST_ACCOUNTS,hbciListAccounts,false +13811,3dec822c-2bb0-4a4f-87ec-09c37103b2f0,LIST_TRANSACTIONS,hbciListTransactions,false +13812,3dec822c-2bb0-4a4f-87ec-09c37103b2f0,AUTHORIZATION,,false +13813,3dec822c-2bb0-4a4f-87ec-09c37103b2f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13814,3dec822c-2bb0-4a4f-87ec-09c37103b2f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13815,3dec822c-2bb0-4a4f-87ec-09c37103b2f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13816,3d96ad97-0b9a-4916-ab8c-995e078c4458,LIST_ACCOUNTS,xs2aListAccounts,true -13817,3d96ad97-0b9a-4916-ab8c-995e078c4458,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13817,3d96ad97-0b9a-4916-ab8c-995e078c4458,LIST_TRANSACTIONS,xs2aListTransactions,true 13818,3d96ad97-0b9a-4916-ab8c-995e078c4458,AUTHORIZATION,,true 13819,3d96ad97-0b9a-4916-ab8c-995e078c4458,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13820,3d96ad97-0b9a-4916-ab8c-995e078c4458,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13821,3d96ad97-0b9a-4916-ab8c-995e078c4458,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13822,02e8547f-7d73-48a7-8681-2bdbba26205b,LIST_ACCOUNTS,hbciListAccounts,false -13823,02e8547f-7d73-48a7-8681-2bdbba26205b,LIST_TRANSACTIONS,hbciListTransactions,false -13824,02e8547f-7d73-48a7-8681-2bdbba26205b,AUTHORIZATION,,false -13825,02e8547f-7d73-48a7-8681-2bdbba26205b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13826,02e8547f-7d73-48a7-8681-2bdbba26205b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13827,02e8547f-7d73-48a7-8681-2bdbba26205b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13822,e64c5d6c-fb09-43b4-9c50-c78e1b2123a2,LIST_ACCOUNTS,hbciListAccounts,false +13823,e64c5d6c-fb09-43b4-9c50-c78e1b2123a2,LIST_TRANSACTIONS,hbciListTransactions,false +13824,e64c5d6c-fb09-43b4-9c50-c78e1b2123a2,AUTHORIZATION,,false +13825,e64c5d6c-fb09-43b4-9c50-c78e1b2123a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13826,e64c5d6c-fb09-43b4-9c50-c78e1b2123a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13827,e64c5d6c-fb09-43b4-9c50-c78e1b2123a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13828,9e81ecc5-d604-456c-9796-ff06618088b9,LIST_ACCOUNTS,xs2aListAccounts,true -13829,9e81ecc5-d604-456c-9796-ff06618088b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13829,9e81ecc5-d604-456c-9796-ff06618088b9,LIST_TRANSACTIONS,xs2aListTransactions,true 13830,9e81ecc5-d604-456c-9796-ff06618088b9,AUTHORIZATION,,true 13831,9e81ecc5-d604-456c-9796-ff06618088b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13832,9e81ecc5-d604-456c-9796-ff06618088b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13833,9e81ecc5-d604-456c-9796-ff06618088b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13834,c43c8690-3852-4aef-bce9-b68475f3f12a,LIST_ACCOUNTS,hbciListAccounts,false -13835,c43c8690-3852-4aef-bce9-b68475f3f12a,LIST_TRANSACTIONS,hbciListTransactions,false -13836,c43c8690-3852-4aef-bce9-b68475f3f12a,AUTHORIZATION,,false -13837,c43c8690-3852-4aef-bce9-b68475f3f12a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13838,c43c8690-3852-4aef-bce9-b68475f3f12a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13839,c43c8690-3852-4aef-bce9-b68475f3f12a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13834,51f11c4b-eecc-4002-8d86-7a6bacb799cd,LIST_ACCOUNTS,hbciListAccounts,false +13835,51f11c4b-eecc-4002-8d86-7a6bacb799cd,LIST_TRANSACTIONS,hbciListTransactions,false +13836,51f11c4b-eecc-4002-8d86-7a6bacb799cd,AUTHORIZATION,,false +13837,51f11c4b-eecc-4002-8d86-7a6bacb799cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13838,51f11c4b-eecc-4002-8d86-7a6bacb799cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13839,51f11c4b-eecc-4002-8d86-7a6bacb799cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13840,7b7e7a75-84f1-403a-8c37-16303558bd14,LIST_ACCOUNTS,xs2aListAccounts,true -13841,7b7e7a75-84f1-403a-8c37-16303558bd14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13841,7b7e7a75-84f1-403a-8c37-16303558bd14,LIST_TRANSACTIONS,xs2aListTransactions,true 13842,7b7e7a75-84f1-403a-8c37-16303558bd14,AUTHORIZATION,,true 13843,7b7e7a75-84f1-403a-8c37-16303558bd14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13844,7b7e7a75-84f1-403a-8c37-16303558bd14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13845,7b7e7a75-84f1-403a-8c37-16303558bd14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13846,c7271007-e52c-4470-a491-df60d0cc2d33,LIST_ACCOUNTS,hbciListAccounts,false -13847,c7271007-e52c-4470-a491-df60d0cc2d33,LIST_TRANSACTIONS,hbciListTransactions,false -13848,c7271007-e52c-4470-a491-df60d0cc2d33,AUTHORIZATION,,false -13849,c7271007-e52c-4470-a491-df60d0cc2d33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13850,c7271007-e52c-4470-a491-df60d0cc2d33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13851,c7271007-e52c-4470-a491-df60d0cc2d33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13846,670be157-e85f-40b7-a509-1555c4383560,LIST_ACCOUNTS,hbciListAccounts,false +13847,670be157-e85f-40b7-a509-1555c4383560,LIST_TRANSACTIONS,hbciListTransactions,false +13848,670be157-e85f-40b7-a509-1555c4383560,AUTHORIZATION,,false +13849,670be157-e85f-40b7-a509-1555c4383560,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13850,670be157-e85f-40b7-a509-1555c4383560,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13851,670be157-e85f-40b7-a509-1555c4383560,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13852,e23ec0c5-f675-4d64-b515-48df19a82b41,LIST_ACCOUNTS,xs2aListAccounts,true -13853,e23ec0c5-f675-4d64-b515-48df19a82b41,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13853,e23ec0c5-f675-4d64-b515-48df19a82b41,LIST_TRANSACTIONS,xs2aListTransactions,true 13854,e23ec0c5-f675-4d64-b515-48df19a82b41,AUTHORIZATION,,true 13855,e23ec0c5-f675-4d64-b515-48df19a82b41,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13856,e23ec0c5-f675-4d64-b515-48df19a82b41,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13857,e23ec0c5-f675-4d64-b515-48df19a82b41,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13858,9d8668a7-9505-41aa-b193-035285b6044c,LIST_ACCOUNTS,hbciListAccounts,false -13859,9d8668a7-9505-41aa-b193-035285b6044c,LIST_TRANSACTIONS,hbciListTransactions,false -13860,9d8668a7-9505-41aa-b193-035285b6044c,AUTHORIZATION,,false -13861,9d8668a7-9505-41aa-b193-035285b6044c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13862,9d8668a7-9505-41aa-b193-035285b6044c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13863,9d8668a7-9505-41aa-b193-035285b6044c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13858,5675c968-a200-4d33-8d22-d789cbce3cb9,LIST_ACCOUNTS,hbciListAccounts,false +13859,5675c968-a200-4d33-8d22-d789cbce3cb9,LIST_TRANSACTIONS,hbciListTransactions,false +13860,5675c968-a200-4d33-8d22-d789cbce3cb9,AUTHORIZATION,,false +13861,5675c968-a200-4d33-8d22-d789cbce3cb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13862,5675c968-a200-4d33-8d22-d789cbce3cb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13863,5675c968-a200-4d33-8d22-d789cbce3cb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13864,0fd7b4cc-2a16-4a09-bece-d17d00ba61a1,LIST_ACCOUNTS,xs2aListAccounts,true -13865,0fd7b4cc-2a16-4a09-bece-d17d00ba61a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13865,0fd7b4cc-2a16-4a09-bece-d17d00ba61a1,LIST_TRANSACTIONS,xs2aListTransactions,true 13866,0fd7b4cc-2a16-4a09-bece-d17d00ba61a1,AUTHORIZATION,,true 13867,0fd7b4cc-2a16-4a09-bece-d17d00ba61a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13868,0fd7b4cc-2a16-4a09-bece-d17d00ba61a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13869,0fd7b4cc-2a16-4a09-bece-d17d00ba61a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13870,179626a4-df90-49ff-97a2-40749d9bac18,LIST_ACCOUNTS,hbciListAccounts,false -13871,179626a4-df90-49ff-97a2-40749d9bac18,LIST_TRANSACTIONS,hbciListTransactions,false -13872,179626a4-df90-49ff-97a2-40749d9bac18,AUTHORIZATION,,false -13873,179626a4-df90-49ff-97a2-40749d9bac18,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13874,179626a4-df90-49ff-97a2-40749d9bac18,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13875,179626a4-df90-49ff-97a2-40749d9bac18,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13870,617ae6e9-fefe-4746-b9ee-776ba00a5663,LIST_ACCOUNTS,hbciListAccounts,false +13871,617ae6e9-fefe-4746-b9ee-776ba00a5663,LIST_TRANSACTIONS,hbciListTransactions,false +13872,617ae6e9-fefe-4746-b9ee-776ba00a5663,AUTHORIZATION,,false +13873,617ae6e9-fefe-4746-b9ee-776ba00a5663,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13874,617ae6e9-fefe-4746-b9ee-776ba00a5663,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13875,617ae6e9-fefe-4746-b9ee-776ba00a5663,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13876,ae8b75eb-b433-4f95-a89b-0b06a0062ce5,LIST_ACCOUNTS,xs2aListAccounts,true -13877,ae8b75eb-b433-4f95-a89b-0b06a0062ce5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13877,ae8b75eb-b433-4f95-a89b-0b06a0062ce5,LIST_TRANSACTIONS,xs2aListTransactions,true 13878,ae8b75eb-b433-4f95-a89b-0b06a0062ce5,AUTHORIZATION,,true 13879,ae8b75eb-b433-4f95-a89b-0b06a0062ce5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13880,ae8b75eb-b433-4f95-a89b-0b06a0062ce5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13881,ae8b75eb-b433-4f95-a89b-0b06a0062ce5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13882,bec745b3-584d-4139-8c50-7c155f95d26d,LIST_ACCOUNTS,hbciListAccounts,false -13883,bec745b3-584d-4139-8c50-7c155f95d26d,LIST_TRANSACTIONS,hbciListTransactions,false -13884,bec745b3-584d-4139-8c50-7c155f95d26d,AUTHORIZATION,,false -13885,bec745b3-584d-4139-8c50-7c155f95d26d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13886,bec745b3-584d-4139-8c50-7c155f95d26d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13887,bec745b3-584d-4139-8c50-7c155f95d26d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13882,a46f657f-24f3-43c6-a1ba-44b45e667d94,LIST_ACCOUNTS,hbciListAccounts,false +13883,a46f657f-24f3-43c6-a1ba-44b45e667d94,LIST_TRANSACTIONS,hbciListTransactions,false +13884,a46f657f-24f3-43c6-a1ba-44b45e667d94,AUTHORIZATION,,false +13885,a46f657f-24f3-43c6-a1ba-44b45e667d94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13886,a46f657f-24f3-43c6-a1ba-44b45e667d94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13887,a46f657f-24f3-43c6-a1ba-44b45e667d94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13888,62c2b90e-bd2d-43f5-9dee-0bea7eae2b85,LIST_ACCOUNTS,xs2aListAccounts,true -13889,62c2b90e-bd2d-43f5-9dee-0bea7eae2b85,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13889,62c2b90e-bd2d-43f5-9dee-0bea7eae2b85,LIST_TRANSACTIONS,xs2aListTransactions,true 13890,62c2b90e-bd2d-43f5-9dee-0bea7eae2b85,AUTHORIZATION,,true 13891,62c2b90e-bd2d-43f5-9dee-0bea7eae2b85,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13892,62c2b90e-bd2d-43f5-9dee-0bea7eae2b85,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13893,62c2b90e-bd2d-43f5-9dee-0bea7eae2b85,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13894,373df924-424b-4644-a44d-451bb4edb1d3,LIST_ACCOUNTS,hbciListAccounts,false -13895,373df924-424b-4644-a44d-451bb4edb1d3,LIST_TRANSACTIONS,hbciListTransactions,false -13896,373df924-424b-4644-a44d-451bb4edb1d3,AUTHORIZATION,,false -13897,373df924-424b-4644-a44d-451bb4edb1d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13898,373df924-424b-4644-a44d-451bb4edb1d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13899,373df924-424b-4644-a44d-451bb4edb1d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13894,eeb08978-b5ee-40b4-ab2b-94cb13fa156b,LIST_ACCOUNTS,hbciListAccounts,false +13895,eeb08978-b5ee-40b4-ab2b-94cb13fa156b,LIST_TRANSACTIONS,hbciListTransactions,false +13896,eeb08978-b5ee-40b4-ab2b-94cb13fa156b,AUTHORIZATION,,false +13897,eeb08978-b5ee-40b4-ab2b-94cb13fa156b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13898,eeb08978-b5ee-40b4-ab2b-94cb13fa156b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13899,eeb08978-b5ee-40b4-ab2b-94cb13fa156b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13900,61aa8d10-d388-4ddb-8d90-b2d76a85f59d,LIST_ACCOUNTS,xs2aListAccounts,true -13901,61aa8d10-d388-4ddb-8d90-b2d76a85f59d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13901,61aa8d10-d388-4ddb-8d90-b2d76a85f59d,LIST_TRANSACTIONS,xs2aListTransactions,true 13902,61aa8d10-d388-4ddb-8d90-b2d76a85f59d,AUTHORIZATION,,true 13903,61aa8d10-d388-4ddb-8d90-b2d76a85f59d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13904,61aa8d10-d388-4ddb-8d90-b2d76a85f59d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13905,61aa8d10-d388-4ddb-8d90-b2d76a85f59d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13906,dca75e81-6f74-4012-b81f-abad46f7670d,LIST_ACCOUNTS,hbciListAccounts,false -13907,dca75e81-6f74-4012-b81f-abad46f7670d,LIST_TRANSACTIONS,hbciListTransactions,false -13908,dca75e81-6f74-4012-b81f-abad46f7670d,AUTHORIZATION,,false -13909,dca75e81-6f74-4012-b81f-abad46f7670d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13910,dca75e81-6f74-4012-b81f-abad46f7670d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13911,dca75e81-6f74-4012-b81f-abad46f7670d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13906,27bf8d56-4226-4f6d-b13d-d54771ab2a3d,LIST_ACCOUNTS,hbciListAccounts,false +13907,27bf8d56-4226-4f6d-b13d-d54771ab2a3d,LIST_TRANSACTIONS,hbciListTransactions,false +13908,27bf8d56-4226-4f6d-b13d-d54771ab2a3d,AUTHORIZATION,,false +13909,27bf8d56-4226-4f6d-b13d-d54771ab2a3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13910,27bf8d56-4226-4f6d-b13d-d54771ab2a3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13911,27bf8d56-4226-4f6d-b13d-d54771ab2a3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13912,62ff9e5e-b193-4100-8a06-c933e18a84eb,LIST_ACCOUNTS,xs2aListAccounts,true -13913,62ff9e5e-b193-4100-8a06-c933e18a84eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13913,62ff9e5e-b193-4100-8a06-c933e18a84eb,LIST_TRANSACTIONS,xs2aListTransactions,true 13914,62ff9e5e-b193-4100-8a06-c933e18a84eb,AUTHORIZATION,,true 13915,62ff9e5e-b193-4100-8a06-c933e18a84eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13916,62ff9e5e-b193-4100-8a06-c933e18a84eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13917,62ff9e5e-b193-4100-8a06-c933e18a84eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13918,dd041773-4a7c-433d-9d09-4b3ce79eb9ed,LIST_ACCOUNTS,hbciListAccounts,false -13919,dd041773-4a7c-433d-9d09-4b3ce79eb9ed,LIST_TRANSACTIONS,hbciListTransactions,false -13920,dd041773-4a7c-433d-9d09-4b3ce79eb9ed,AUTHORIZATION,,false -13921,dd041773-4a7c-433d-9d09-4b3ce79eb9ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13922,dd041773-4a7c-433d-9d09-4b3ce79eb9ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13923,dd041773-4a7c-433d-9d09-4b3ce79eb9ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13918,d864205c-c87e-4da5-9a8f-ff1fe4a3c392,LIST_ACCOUNTS,hbciListAccounts,false +13919,d864205c-c87e-4da5-9a8f-ff1fe4a3c392,LIST_TRANSACTIONS,hbciListTransactions,false +13920,d864205c-c87e-4da5-9a8f-ff1fe4a3c392,AUTHORIZATION,,false +13921,d864205c-c87e-4da5-9a8f-ff1fe4a3c392,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13922,d864205c-c87e-4da5-9a8f-ff1fe4a3c392,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13923,d864205c-c87e-4da5-9a8f-ff1fe4a3c392,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13924,1121103f-6ea3-448a-a777-f4a9f2815325,LIST_ACCOUNTS,xs2aListAccounts,true -13925,1121103f-6ea3-448a-a777-f4a9f2815325,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13925,1121103f-6ea3-448a-a777-f4a9f2815325,LIST_TRANSACTIONS,xs2aListTransactions,true 13926,1121103f-6ea3-448a-a777-f4a9f2815325,AUTHORIZATION,,true 13927,1121103f-6ea3-448a-a777-f4a9f2815325,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13928,1121103f-6ea3-448a-a777-f4a9f2815325,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13929,1121103f-6ea3-448a-a777-f4a9f2815325,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13930,4c0c3871-3951-41af-be66-51e5c2878f25,LIST_ACCOUNTS,hbciListAccounts,false -13931,4c0c3871-3951-41af-be66-51e5c2878f25,LIST_TRANSACTIONS,hbciListTransactions,false -13932,4c0c3871-3951-41af-be66-51e5c2878f25,AUTHORIZATION,,false -13933,4c0c3871-3951-41af-be66-51e5c2878f25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13934,4c0c3871-3951-41af-be66-51e5c2878f25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13935,4c0c3871-3951-41af-be66-51e5c2878f25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13930,3ba487de-ad37-45f0-a86e-1ee3ef0ca81a,LIST_ACCOUNTS,hbciListAccounts,false +13931,3ba487de-ad37-45f0-a86e-1ee3ef0ca81a,LIST_TRANSACTIONS,hbciListTransactions,false +13932,3ba487de-ad37-45f0-a86e-1ee3ef0ca81a,AUTHORIZATION,,false +13933,3ba487de-ad37-45f0-a86e-1ee3ef0ca81a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13934,3ba487de-ad37-45f0-a86e-1ee3ef0ca81a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13935,3ba487de-ad37-45f0-a86e-1ee3ef0ca81a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13936,55e5fd0f-dd1b-4627-84c8-f21345ba9f1f,LIST_ACCOUNTS,xs2aListAccounts,true -13937,55e5fd0f-dd1b-4627-84c8-f21345ba9f1f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13937,55e5fd0f-dd1b-4627-84c8-f21345ba9f1f,LIST_TRANSACTIONS,xs2aListTransactions,true 13938,55e5fd0f-dd1b-4627-84c8-f21345ba9f1f,AUTHORIZATION,,true 13939,55e5fd0f-dd1b-4627-84c8-f21345ba9f1f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13940,55e5fd0f-dd1b-4627-84c8-f21345ba9f1f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13941,55e5fd0f-dd1b-4627-84c8-f21345ba9f1f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13942,552ecd5a-e1e0-4909-b96d-065372d2f2aa,LIST_ACCOUNTS,hbciListAccounts,false -13943,552ecd5a-e1e0-4909-b96d-065372d2f2aa,LIST_TRANSACTIONS,hbciListTransactions,false -13944,552ecd5a-e1e0-4909-b96d-065372d2f2aa,AUTHORIZATION,,false -13945,552ecd5a-e1e0-4909-b96d-065372d2f2aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13946,552ecd5a-e1e0-4909-b96d-065372d2f2aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13947,552ecd5a-e1e0-4909-b96d-065372d2f2aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13942,c974988e-5f3b-4061-af80-a3740d65a1f5,LIST_ACCOUNTS,hbciListAccounts,false +13943,c974988e-5f3b-4061-af80-a3740d65a1f5,LIST_TRANSACTIONS,hbciListTransactions,false +13944,c974988e-5f3b-4061-af80-a3740d65a1f5,AUTHORIZATION,,false +13945,c974988e-5f3b-4061-af80-a3740d65a1f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13946,c974988e-5f3b-4061-af80-a3740d65a1f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13947,c974988e-5f3b-4061-af80-a3740d65a1f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13948,599563a6-bb53-4edc-8a0f-55af9a15ba2d,LIST_ACCOUNTS,xs2aListAccounts,true -13949,599563a6-bb53-4edc-8a0f-55af9a15ba2d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13949,599563a6-bb53-4edc-8a0f-55af9a15ba2d,LIST_TRANSACTIONS,xs2aListTransactions,true 13950,599563a6-bb53-4edc-8a0f-55af9a15ba2d,AUTHORIZATION,,true 13951,599563a6-bb53-4edc-8a0f-55af9a15ba2d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13952,599563a6-bb53-4edc-8a0f-55af9a15ba2d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13953,599563a6-bb53-4edc-8a0f-55af9a15ba2d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13954,8387cd7a-1ecc-44cd-83ec-a3c887e1e47e,LIST_ACCOUNTS,hbciListAccounts,false -13955,8387cd7a-1ecc-44cd-83ec-a3c887e1e47e,LIST_TRANSACTIONS,hbciListTransactions,false -13956,8387cd7a-1ecc-44cd-83ec-a3c887e1e47e,AUTHORIZATION,,false -13957,8387cd7a-1ecc-44cd-83ec-a3c887e1e47e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13958,8387cd7a-1ecc-44cd-83ec-a3c887e1e47e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13959,8387cd7a-1ecc-44cd-83ec-a3c887e1e47e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13954,b76d0c61-7559-45c5-b4d7-099710b8896b,LIST_ACCOUNTS,hbciListAccounts,false +13955,b76d0c61-7559-45c5-b4d7-099710b8896b,LIST_TRANSACTIONS,hbciListTransactions,false +13956,b76d0c61-7559-45c5-b4d7-099710b8896b,AUTHORIZATION,,false +13957,b76d0c61-7559-45c5-b4d7-099710b8896b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13958,b76d0c61-7559-45c5-b4d7-099710b8896b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13959,b76d0c61-7559-45c5-b4d7-099710b8896b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13960,3901b996-bc94-4d14-8851-68befeaafe23,LIST_ACCOUNTS,xs2aListAccounts,true -13961,3901b996-bc94-4d14-8851-68befeaafe23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13961,3901b996-bc94-4d14-8851-68befeaafe23,LIST_TRANSACTIONS,xs2aListTransactions,true 13962,3901b996-bc94-4d14-8851-68befeaafe23,AUTHORIZATION,,true 13963,3901b996-bc94-4d14-8851-68befeaafe23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13964,3901b996-bc94-4d14-8851-68befeaafe23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13965,3901b996-bc94-4d14-8851-68befeaafe23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13966,f205e7d4-30e6-4449-8ee3-60b271da032e,LIST_ACCOUNTS,hbciListAccounts,false -13967,f205e7d4-30e6-4449-8ee3-60b271da032e,LIST_TRANSACTIONS,hbciListTransactions,false -13968,f205e7d4-30e6-4449-8ee3-60b271da032e,AUTHORIZATION,,false -13969,f205e7d4-30e6-4449-8ee3-60b271da032e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13970,f205e7d4-30e6-4449-8ee3-60b271da032e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13971,f205e7d4-30e6-4449-8ee3-60b271da032e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13966,0067113f-c3b4-4c81-a3ad-cd7856b4fc28,LIST_ACCOUNTS,hbciListAccounts,false +13967,0067113f-c3b4-4c81-a3ad-cd7856b4fc28,LIST_TRANSACTIONS,hbciListTransactions,false +13968,0067113f-c3b4-4c81-a3ad-cd7856b4fc28,AUTHORIZATION,,false +13969,0067113f-c3b4-4c81-a3ad-cd7856b4fc28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13970,0067113f-c3b4-4c81-a3ad-cd7856b4fc28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13971,0067113f-c3b4-4c81-a3ad-cd7856b4fc28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13972,62d82802-b301-405b-96a2-4a681d07e04d,LIST_ACCOUNTS,xs2aListAccounts,true -13973,62d82802-b301-405b-96a2-4a681d07e04d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13973,62d82802-b301-405b-96a2-4a681d07e04d,LIST_TRANSACTIONS,xs2aListTransactions,true 13974,62d82802-b301-405b-96a2-4a681d07e04d,AUTHORIZATION,,true 13975,62d82802-b301-405b-96a2-4a681d07e04d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13976,62d82802-b301-405b-96a2-4a681d07e04d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13977,62d82802-b301-405b-96a2-4a681d07e04d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13978,af810542-d30f-4bc4-9097-1b0b4098b4dc,LIST_ACCOUNTS,hbciListAccounts,false -13979,af810542-d30f-4bc4-9097-1b0b4098b4dc,LIST_TRANSACTIONS,hbciListTransactions,false -13980,af810542-d30f-4bc4-9097-1b0b4098b4dc,AUTHORIZATION,,false -13981,af810542-d30f-4bc4-9097-1b0b4098b4dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13982,af810542-d30f-4bc4-9097-1b0b4098b4dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13983,af810542-d30f-4bc4-9097-1b0b4098b4dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13978,4e0e641a-e195-4d34-a5c9-f7b5cffe2947,LIST_ACCOUNTS,hbciListAccounts,false +13979,4e0e641a-e195-4d34-a5c9-f7b5cffe2947,LIST_TRANSACTIONS,hbciListTransactions,false +13980,4e0e641a-e195-4d34-a5c9-f7b5cffe2947,AUTHORIZATION,,false +13981,4e0e641a-e195-4d34-a5c9-f7b5cffe2947,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13982,4e0e641a-e195-4d34-a5c9-f7b5cffe2947,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13983,4e0e641a-e195-4d34-a5c9-f7b5cffe2947,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13984,768a8f34-f15b-4c1a-8971-73546c083a75,LIST_ACCOUNTS,xs2aListAccounts,true -13985,768a8f34-f15b-4c1a-8971-73546c083a75,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13985,768a8f34-f15b-4c1a-8971-73546c083a75,LIST_TRANSACTIONS,xs2aListTransactions,true 13986,768a8f34-f15b-4c1a-8971-73546c083a75,AUTHORIZATION,,true 13987,768a8f34-f15b-4c1a-8971-73546c083a75,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 13988,768a8f34-f15b-4c1a-8971-73546c083a75,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 13989,768a8f34-f15b-4c1a-8971-73546c083a75,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -13990,9c58df0b-9821-449c-823d-87c148cc6447,LIST_ACCOUNTS,hbciListAccounts,false -13991,9c58df0b-9821-449c-823d-87c148cc6447,LIST_TRANSACTIONS,hbciListTransactions,false -13992,9c58df0b-9821-449c-823d-87c148cc6447,AUTHORIZATION,,false -13993,9c58df0b-9821-449c-823d-87c148cc6447,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -13994,9c58df0b-9821-449c-823d-87c148cc6447,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -13995,9c58df0b-9821-449c-823d-87c148cc6447,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +13990,a2f3fbb0-a391-40d8-b096-fded3008e9bf,LIST_ACCOUNTS,hbciListAccounts,false +13991,a2f3fbb0-a391-40d8-b096-fded3008e9bf,LIST_TRANSACTIONS,hbciListTransactions,false +13992,a2f3fbb0-a391-40d8-b096-fded3008e9bf,AUTHORIZATION,,false +13993,a2f3fbb0-a391-40d8-b096-fded3008e9bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +13994,a2f3fbb0-a391-40d8-b096-fded3008e9bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +13995,a2f3fbb0-a391-40d8-b096-fded3008e9bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 13996,a0c44f03-f5ad-4766-a65f-708c57869821,LIST_ACCOUNTS,xs2aListAccounts,true -13997,a0c44f03-f5ad-4766-a65f-708c57869821,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +13997,a0c44f03-f5ad-4766-a65f-708c57869821,LIST_TRANSACTIONS,xs2aListTransactions,true 13998,a0c44f03-f5ad-4766-a65f-708c57869821,AUTHORIZATION,,true 13999,a0c44f03-f5ad-4766-a65f-708c57869821,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14000,a0c44f03-f5ad-4766-a65f-708c57869821,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14001,a0c44f03-f5ad-4766-a65f-708c57869821,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14002,baaf7886-f485-4b7d-85c2-d96e56c7a290,LIST_ACCOUNTS,hbciListAccounts,false -14003,baaf7886-f485-4b7d-85c2-d96e56c7a290,LIST_TRANSACTIONS,hbciListTransactions,false -14004,baaf7886-f485-4b7d-85c2-d96e56c7a290,AUTHORIZATION,,false -14005,baaf7886-f485-4b7d-85c2-d96e56c7a290,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14006,baaf7886-f485-4b7d-85c2-d96e56c7a290,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14007,baaf7886-f485-4b7d-85c2-d96e56c7a290,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14002,9124ad42-2923-44c8-9115-f9cda52ff93c,LIST_ACCOUNTS,hbciListAccounts,false +14003,9124ad42-2923-44c8-9115-f9cda52ff93c,LIST_TRANSACTIONS,hbciListTransactions,false +14004,9124ad42-2923-44c8-9115-f9cda52ff93c,AUTHORIZATION,,false +14005,9124ad42-2923-44c8-9115-f9cda52ff93c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14006,9124ad42-2923-44c8-9115-f9cda52ff93c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14007,9124ad42-2923-44c8-9115-f9cda52ff93c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14008,4b477d88-9c8f-4816-a137-1758edb1b978,LIST_ACCOUNTS,xs2aListAccounts,true -14009,4b477d88-9c8f-4816-a137-1758edb1b978,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14009,4b477d88-9c8f-4816-a137-1758edb1b978,LIST_TRANSACTIONS,xs2aListTransactions,true 14010,4b477d88-9c8f-4816-a137-1758edb1b978,AUTHORIZATION,,true 14011,4b477d88-9c8f-4816-a137-1758edb1b978,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14012,4b477d88-9c8f-4816-a137-1758edb1b978,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14013,4b477d88-9c8f-4816-a137-1758edb1b978,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14014,9ea0c425-6e37-4d68-9c18-b2929939d532,LIST_ACCOUNTS,hbciListAccounts,false -14015,9ea0c425-6e37-4d68-9c18-b2929939d532,LIST_TRANSACTIONS,hbciListTransactions,false -14016,9ea0c425-6e37-4d68-9c18-b2929939d532,AUTHORIZATION,,false -14017,9ea0c425-6e37-4d68-9c18-b2929939d532,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14018,9ea0c425-6e37-4d68-9c18-b2929939d532,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14019,9ea0c425-6e37-4d68-9c18-b2929939d532,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14014,780a89ad-e227-4fd3-b530-e14edd7b7453,LIST_ACCOUNTS,hbciListAccounts,false +14015,780a89ad-e227-4fd3-b530-e14edd7b7453,LIST_TRANSACTIONS,hbciListTransactions,false +14016,780a89ad-e227-4fd3-b530-e14edd7b7453,AUTHORIZATION,,false +14017,780a89ad-e227-4fd3-b530-e14edd7b7453,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14018,780a89ad-e227-4fd3-b530-e14edd7b7453,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14019,780a89ad-e227-4fd3-b530-e14edd7b7453,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14020,38ae4227-4c77-4acd-adf8-5e6e76c4c486,LIST_ACCOUNTS,xs2aListAccounts,true -14021,38ae4227-4c77-4acd-adf8-5e6e76c4c486,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14021,38ae4227-4c77-4acd-adf8-5e6e76c4c486,LIST_TRANSACTIONS,xs2aListTransactions,true 14022,38ae4227-4c77-4acd-adf8-5e6e76c4c486,AUTHORIZATION,,true 14023,38ae4227-4c77-4acd-adf8-5e6e76c4c486,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14024,38ae4227-4c77-4acd-adf8-5e6e76c4c486,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14025,38ae4227-4c77-4acd-adf8-5e6e76c4c486,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14026,59c0a995-c0a2-4bb6-b840-9533152f61a3,LIST_ACCOUNTS,hbciListAccounts,false -14027,59c0a995-c0a2-4bb6-b840-9533152f61a3,LIST_TRANSACTIONS,hbciListTransactions,false -14028,59c0a995-c0a2-4bb6-b840-9533152f61a3,AUTHORIZATION,,false -14029,59c0a995-c0a2-4bb6-b840-9533152f61a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14030,59c0a995-c0a2-4bb6-b840-9533152f61a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14031,59c0a995-c0a2-4bb6-b840-9533152f61a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14026,4b51c9d1-7f31-4735-bbef-b33cee00aad1,LIST_ACCOUNTS,hbciListAccounts,false +14027,4b51c9d1-7f31-4735-bbef-b33cee00aad1,LIST_TRANSACTIONS,hbciListTransactions,false +14028,4b51c9d1-7f31-4735-bbef-b33cee00aad1,AUTHORIZATION,,false +14029,4b51c9d1-7f31-4735-bbef-b33cee00aad1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14030,4b51c9d1-7f31-4735-bbef-b33cee00aad1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14031,4b51c9d1-7f31-4735-bbef-b33cee00aad1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14032,d21337b2-e5bc-423f-a3a9-e04571cee83f,LIST_ACCOUNTS,xs2aListAccounts,true -14033,d21337b2-e5bc-423f-a3a9-e04571cee83f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14033,d21337b2-e5bc-423f-a3a9-e04571cee83f,LIST_TRANSACTIONS,xs2aListTransactions,true 14034,d21337b2-e5bc-423f-a3a9-e04571cee83f,AUTHORIZATION,,true 14035,d21337b2-e5bc-423f-a3a9-e04571cee83f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14036,d21337b2-e5bc-423f-a3a9-e04571cee83f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14037,d21337b2-e5bc-423f-a3a9-e04571cee83f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14038,1819dbb6-395e-404f-9e8c-08d9e4c61636,LIST_ACCOUNTS,hbciListAccounts,false -14039,1819dbb6-395e-404f-9e8c-08d9e4c61636,LIST_TRANSACTIONS,hbciListTransactions,false -14040,1819dbb6-395e-404f-9e8c-08d9e4c61636,AUTHORIZATION,,false -14041,1819dbb6-395e-404f-9e8c-08d9e4c61636,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14042,1819dbb6-395e-404f-9e8c-08d9e4c61636,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14043,1819dbb6-395e-404f-9e8c-08d9e4c61636,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14038,0904c1aa-2340-4ce3-a13b-a23077d7d1a8,LIST_ACCOUNTS,hbciListAccounts,false +14039,0904c1aa-2340-4ce3-a13b-a23077d7d1a8,LIST_TRANSACTIONS,hbciListTransactions,false +14040,0904c1aa-2340-4ce3-a13b-a23077d7d1a8,AUTHORIZATION,,false +14041,0904c1aa-2340-4ce3-a13b-a23077d7d1a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14042,0904c1aa-2340-4ce3-a13b-a23077d7d1a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14043,0904c1aa-2340-4ce3-a13b-a23077d7d1a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14044,7526a2c4-ea07-422a-a194-9932f71c777e,LIST_ACCOUNTS,xs2aListAccounts,true -14045,7526a2c4-ea07-422a-a194-9932f71c777e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14045,7526a2c4-ea07-422a-a194-9932f71c777e,LIST_TRANSACTIONS,xs2aListTransactions,true 14046,7526a2c4-ea07-422a-a194-9932f71c777e,AUTHORIZATION,,true 14047,7526a2c4-ea07-422a-a194-9932f71c777e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14048,7526a2c4-ea07-422a-a194-9932f71c777e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14049,7526a2c4-ea07-422a-a194-9932f71c777e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14050,2b2090bc-76c0-4157-8afd-055c7bac7008,LIST_ACCOUNTS,hbciListAccounts,false -14051,2b2090bc-76c0-4157-8afd-055c7bac7008,LIST_TRANSACTIONS,hbciListTransactions,false -14052,2b2090bc-76c0-4157-8afd-055c7bac7008,AUTHORIZATION,,false -14053,2b2090bc-76c0-4157-8afd-055c7bac7008,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14054,2b2090bc-76c0-4157-8afd-055c7bac7008,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14055,2b2090bc-76c0-4157-8afd-055c7bac7008,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14050,66660b04-842f-49c2-87ba-bcf3586e14d5,LIST_ACCOUNTS,hbciListAccounts,false +14051,66660b04-842f-49c2-87ba-bcf3586e14d5,LIST_TRANSACTIONS,hbciListTransactions,false +14052,66660b04-842f-49c2-87ba-bcf3586e14d5,AUTHORIZATION,,false +14053,66660b04-842f-49c2-87ba-bcf3586e14d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14054,66660b04-842f-49c2-87ba-bcf3586e14d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14055,66660b04-842f-49c2-87ba-bcf3586e14d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14056,402e1d7d-50c0-4503-80ca-eda111e44280,LIST_ACCOUNTS,xs2aListAccounts,true -14057,402e1d7d-50c0-4503-80ca-eda111e44280,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14057,402e1d7d-50c0-4503-80ca-eda111e44280,LIST_TRANSACTIONS,xs2aListTransactions,true 14058,402e1d7d-50c0-4503-80ca-eda111e44280,AUTHORIZATION,,true 14059,402e1d7d-50c0-4503-80ca-eda111e44280,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14060,402e1d7d-50c0-4503-80ca-eda111e44280,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14061,402e1d7d-50c0-4503-80ca-eda111e44280,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14062,e1f882f5-6e0c-45b0-b241-1cb699bf90ee,LIST_ACCOUNTS,hbciListAccounts,false -14063,e1f882f5-6e0c-45b0-b241-1cb699bf90ee,LIST_TRANSACTIONS,hbciListTransactions,false -14064,e1f882f5-6e0c-45b0-b241-1cb699bf90ee,AUTHORIZATION,,false -14065,e1f882f5-6e0c-45b0-b241-1cb699bf90ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14066,e1f882f5-6e0c-45b0-b241-1cb699bf90ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14067,e1f882f5-6e0c-45b0-b241-1cb699bf90ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14062,2e90f748-d7cb-4fcd-96b3-fb88eda0ef1d,LIST_ACCOUNTS,hbciListAccounts,false +14063,2e90f748-d7cb-4fcd-96b3-fb88eda0ef1d,LIST_TRANSACTIONS,hbciListTransactions,false +14064,2e90f748-d7cb-4fcd-96b3-fb88eda0ef1d,AUTHORIZATION,,false +14065,2e90f748-d7cb-4fcd-96b3-fb88eda0ef1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14066,2e90f748-d7cb-4fcd-96b3-fb88eda0ef1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14067,2e90f748-d7cb-4fcd-96b3-fb88eda0ef1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14068,33691e3e-d5ff-4837-9eda-a1a4cccb13d4,LIST_ACCOUNTS,xs2aListAccounts,true -14069,33691e3e-d5ff-4837-9eda-a1a4cccb13d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14069,33691e3e-d5ff-4837-9eda-a1a4cccb13d4,LIST_TRANSACTIONS,xs2aListTransactions,true 14070,33691e3e-d5ff-4837-9eda-a1a4cccb13d4,AUTHORIZATION,,true 14071,33691e3e-d5ff-4837-9eda-a1a4cccb13d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14072,33691e3e-d5ff-4837-9eda-a1a4cccb13d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14073,33691e3e-d5ff-4837-9eda-a1a4cccb13d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14074,b4935771-4423-4d35-88c3-212c812b7d41,LIST_ACCOUNTS,hbciListAccounts,false -14075,b4935771-4423-4d35-88c3-212c812b7d41,LIST_TRANSACTIONS,hbciListTransactions,false -14076,b4935771-4423-4d35-88c3-212c812b7d41,AUTHORIZATION,,false -14077,b4935771-4423-4d35-88c3-212c812b7d41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14078,b4935771-4423-4d35-88c3-212c812b7d41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14079,b4935771-4423-4d35-88c3-212c812b7d41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14074,35d87f59-4829-4b76-9128-95db62418303,LIST_ACCOUNTS,hbciListAccounts,false +14075,35d87f59-4829-4b76-9128-95db62418303,LIST_TRANSACTIONS,hbciListTransactions,false +14076,35d87f59-4829-4b76-9128-95db62418303,AUTHORIZATION,,false +14077,35d87f59-4829-4b76-9128-95db62418303,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14078,35d87f59-4829-4b76-9128-95db62418303,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14079,35d87f59-4829-4b76-9128-95db62418303,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14080,9e23cf87-06b1-422c-8c88-1b372a346c0d,LIST_ACCOUNTS,xs2aListAccounts,true -14081,9e23cf87-06b1-422c-8c88-1b372a346c0d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14081,9e23cf87-06b1-422c-8c88-1b372a346c0d,LIST_TRANSACTIONS,xs2aListTransactions,true 14082,9e23cf87-06b1-422c-8c88-1b372a346c0d,AUTHORIZATION,,true 14083,9e23cf87-06b1-422c-8c88-1b372a346c0d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14084,9e23cf87-06b1-422c-8c88-1b372a346c0d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14085,9e23cf87-06b1-422c-8c88-1b372a346c0d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14086,59c98b62-8e16-4d00-b1e6-b32e8c10d522,LIST_ACCOUNTS,hbciListAccounts,false -14087,59c98b62-8e16-4d00-b1e6-b32e8c10d522,LIST_TRANSACTIONS,hbciListTransactions,false -14088,59c98b62-8e16-4d00-b1e6-b32e8c10d522,AUTHORIZATION,,false -14089,59c98b62-8e16-4d00-b1e6-b32e8c10d522,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14090,59c98b62-8e16-4d00-b1e6-b32e8c10d522,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14091,59c98b62-8e16-4d00-b1e6-b32e8c10d522,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14086,d0a261d9-aa34-4ae9-927c-a23c67e1e7cf,LIST_ACCOUNTS,hbciListAccounts,false +14087,d0a261d9-aa34-4ae9-927c-a23c67e1e7cf,LIST_TRANSACTIONS,hbciListTransactions,false +14088,d0a261d9-aa34-4ae9-927c-a23c67e1e7cf,AUTHORIZATION,,false +14089,d0a261d9-aa34-4ae9-927c-a23c67e1e7cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14090,d0a261d9-aa34-4ae9-927c-a23c67e1e7cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14091,d0a261d9-aa34-4ae9-927c-a23c67e1e7cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14092,59b173c4-eb60-4240-9d79-09069e154dcb,LIST_ACCOUNTS,xs2aListAccounts,true -14093,59b173c4-eb60-4240-9d79-09069e154dcb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14093,59b173c4-eb60-4240-9d79-09069e154dcb,LIST_TRANSACTIONS,xs2aListTransactions,true 14094,59b173c4-eb60-4240-9d79-09069e154dcb,AUTHORIZATION,,true 14095,59b173c4-eb60-4240-9d79-09069e154dcb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14096,59b173c4-eb60-4240-9d79-09069e154dcb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14097,59b173c4-eb60-4240-9d79-09069e154dcb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14098,fb1d5941-fcf1-49d8-a954-e97aa1ea5940,LIST_ACCOUNTS,hbciListAccounts,false -14099,fb1d5941-fcf1-49d8-a954-e97aa1ea5940,LIST_TRANSACTIONS,hbciListTransactions,false -14100,fb1d5941-fcf1-49d8-a954-e97aa1ea5940,AUTHORIZATION,,false -14101,fb1d5941-fcf1-49d8-a954-e97aa1ea5940,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14102,fb1d5941-fcf1-49d8-a954-e97aa1ea5940,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14103,fb1d5941-fcf1-49d8-a954-e97aa1ea5940,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14098,238fb8e4-ea34-4974-8e00-c90d75069060,LIST_ACCOUNTS,hbciListAccounts,false +14099,238fb8e4-ea34-4974-8e00-c90d75069060,LIST_TRANSACTIONS,hbciListTransactions,false +14100,238fb8e4-ea34-4974-8e00-c90d75069060,AUTHORIZATION,,false +14101,238fb8e4-ea34-4974-8e00-c90d75069060,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14102,238fb8e4-ea34-4974-8e00-c90d75069060,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14103,238fb8e4-ea34-4974-8e00-c90d75069060,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14104,4b832bfb-cfd9-443d-85a4-1cd178c455bf,LIST_ACCOUNTS,xs2aListAccounts,true -14105,4b832bfb-cfd9-443d-85a4-1cd178c455bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14105,4b832bfb-cfd9-443d-85a4-1cd178c455bf,LIST_TRANSACTIONS,xs2aListTransactions,true 14106,4b832bfb-cfd9-443d-85a4-1cd178c455bf,AUTHORIZATION,,true 14107,4b832bfb-cfd9-443d-85a4-1cd178c455bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14108,4b832bfb-cfd9-443d-85a4-1cd178c455bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14109,4b832bfb-cfd9-443d-85a4-1cd178c455bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14110,56fc70b8-18e7-4a77-ba63-58c5898cc760,LIST_ACCOUNTS,hbciListAccounts,false -14111,56fc70b8-18e7-4a77-ba63-58c5898cc760,LIST_TRANSACTIONS,hbciListTransactions,false -14112,56fc70b8-18e7-4a77-ba63-58c5898cc760,AUTHORIZATION,,false -14113,56fc70b8-18e7-4a77-ba63-58c5898cc760,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14114,56fc70b8-18e7-4a77-ba63-58c5898cc760,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14115,56fc70b8-18e7-4a77-ba63-58c5898cc760,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14110,6ea8104b-e112-4bc9-913d-d013c517e817,LIST_ACCOUNTS,hbciListAccounts,false +14111,6ea8104b-e112-4bc9-913d-d013c517e817,LIST_TRANSACTIONS,hbciListTransactions,false +14112,6ea8104b-e112-4bc9-913d-d013c517e817,AUTHORIZATION,,false +14113,6ea8104b-e112-4bc9-913d-d013c517e817,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14114,6ea8104b-e112-4bc9-913d-d013c517e817,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14115,6ea8104b-e112-4bc9-913d-d013c517e817,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14116,2ba504c5-38d5-4fee-bf84-a01697915d74,LIST_ACCOUNTS,xs2aListAccounts,true -14117,2ba504c5-38d5-4fee-bf84-a01697915d74,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14117,2ba504c5-38d5-4fee-bf84-a01697915d74,LIST_TRANSACTIONS,xs2aListTransactions,true 14118,2ba504c5-38d5-4fee-bf84-a01697915d74,AUTHORIZATION,,true 14119,2ba504c5-38d5-4fee-bf84-a01697915d74,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14120,2ba504c5-38d5-4fee-bf84-a01697915d74,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14121,2ba504c5-38d5-4fee-bf84-a01697915d74,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14122,6c1aeee9-4a3f-469f-bdbb-927e8452a01f,LIST_ACCOUNTS,hbciListAccounts,false -14123,6c1aeee9-4a3f-469f-bdbb-927e8452a01f,LIST_TRANSACTIONS,hbciListTransactions,false -14124,6c1aeee9-4a3f-469f-bdbb-927e8452a01f,AUTHORIZATION,,false -14125,6c1aeee9-4a3f-469f-bdbb-927e8452a01f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14126,6c1aeee9-4a3f-469f-bdbb-927e8452a01f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14127,6c1aeee9-4a3f-469f-bdbb-927e8452a01f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14122,1ebc2ef6-adde-49ec-86d0-f6a599b4bca5,LIST_ACCOUNTS,hbciListAccounts,false +14123,1ebc2ef6-adde-49ec-86d0-f6a599b4bca5,LIST_TRANSACTIONS,hbciListTransactions,false +14124,1ebc2ef6-adde-49ec-86d0-f6a599b4bca5,AUTHORIZATION,,false +14125,1ebc2ef6-adde-49ec-86d0-f6a599b4bca5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14126,1ebc2ef6-adde-49ec-86d0-f6a599b4bca5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14127,1ebc2ef6-adde-49ec-86d0-f6a599b4bca5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14128,7a2ac9f9-acd0-47bc-a4cf-5b7e5c04a77d,LIST_ACCOUNTS,xs2aListAccounts,true -14129,7a2ac9f9-acd0-47bc-a4cf-5b7e5c04a77d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14129,7a2ac9f9-acd0-47bc-a4cf-5b7e5c04a77d,LIST_TRANSACTIONS,xs2aListTransactions,true 14130,7a2ac9f9-acd0-47bc-a4cf-5b7e5c04a77d,AUTHORIZATION,,true 14131,7a2ac9f9-acd0-47bc-a4cf-5b7e5c04a77d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14132,7a2ac9f9-acd0-47bc-a4cf-5b7e5c04a77d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14133,7a2ac9f9-acd0-47bc-a4cf-5b7e5c04a77d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14134,cd696c6e-9ec1-48b7-8c48-3138958dbefd,LIST_ACCOUNTS,hbciListAccounts,false -14135,cd696c6e-9ec1-48b7-8c48-3138958dbefd,LIST_TRANSACTIONS,hbciListTransactions,false -14136,cd696c6e-9ec1-48b7-8c48-3138958dbefd,AUTHORIZATION,,false -14137,cd696c6e-9ec1-48b7-8c48-3138958dbefd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14138,cd696c6e-9ec1-48b7-8c48-3138958dbefd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14139,cd696c6e-9ec1-48b7-8c48-3138958dbefd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14134,637a8326-a085-4a04-b33f-f467bfe1af84,LIST_ACCOUNTS,hbciListAccounts,false +14135,637a8326-a085-4a04-b33f-f467bfe1af84,LIST_TRANSACTIONS,hbciListTransactions,false +14136,637a8326-a085-4a04-b33f-f467bfe1af84,AUTHORIZATION,,false +14137,637a8326-a085-4a04-b33f-f467bfe1af84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14138,637a8326-a085-4a04-b33f-f467bfe1af84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14139,637a8326-a085-4a04-b33f-f467bfe1af84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14140,1eea98a7-1f69-4e1c-88e9-9cbaa82361e6,LIST_ACCOUNTS,xs2aListAccounts,true -14141,1eea98a7-1f69-4e1c-88e9-9cbaa82361e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14141,1eea98a7-1f69-4e1c-88e9-9cbaa82361e6,LIST_TRANSACTIONS,xs2aListTransactions,true 14142,1eea98a7-1f69-4e1c-88e9-9cbaa82361e6,AUTHORIZATION,,true 14143,1eea98a7-1f69-4e1c-88e9-9cbaa82361e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14144,1eea98a7-1f69-4e1c-88e9-9cbaa82361e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14145,1eea98a7-1f69-4e1c-88e9-9cbaa82361e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14146,9a8085c3-4250-489e-a2e6-986b80e32d64,LIST_ACCOUNTS,hbciListAccounts,false -14147,9a8085c3-4250-489e-a2e6-986b80e32d64,LIST_TRANSACTIONS,hbciListTransactions,false -14148,9a8085c3-4250-489e-a2e6-986b80e32d64,AUTHORIZATION,,false -14149,9a8085c3-4250-489e-a2e6-986b80e32d64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14150,9a8085c3-4250-489e-a2e6-986b80e32d64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14151,9a8085c3-4250-489e-a2e6-986b80e32d64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14146,41c6fe61-a1f5-478e-b6c6-6b0fa69f2b4e,LIST_ACCOUNTS,hbciListAccounts,false +14147,41c6fe61-a1f5-478e-b6c6-6b0fa69f2b4e,LIST_TRANSACTIONS,hbciListTransactions,false +14148,41c6fe61-a1f5-478e-b6c6-6b0fa69f2b4e,AUTHORIZATION,,false +14149,41c6fe61-a1f5-478e-b6c6-6b0fa69f2b4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14150,41c6fe61-a1f5-478e-b6c6-6b0fa69f2b4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14151,41c6fe61-a1f5-478e-b6c6-6b0fa69f2b4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14152,6dc16053-b6d6-4189-94d8-db646b1becca,LIST_ACCOUNTS,xs2aListAccounts,true -14153,6dc16053-b6d6-4189-94d8-db646b1becca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14153,6dc16053-b6d6-4189-94d8-db646b1becca,LIST_TRANSACTIONS,xs2aListTransactions,true 14154,6dc16053-b6d6-4189-94d8-db646b1becca,AUTHORIZATION,,true 14155,6dc16053-b6d6-4189-94d8-db646b1becca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14156,6dc16053-b6d6-4189-94d8-db646b1becca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14157,6dc16053-b6d6-4189-94d8-db646b1becca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14158,c1bf166f-8e42-406e-a5e9-b1e3d4c27aad,LIST_ACCOUNTS,hbciListAccounts,false -14159,c1bf166f-8e42-406e-a5e9-b1e3d4c27aad,LIST_TRANSACTIONS,hbciListTransactions,false -14160,c1bf166f-8e42-406e-a5e9-b1e3d4c27aad,AUTHORIZATION,,false -14161,c1bf166f-8e42-406e-a5e9-b1e3d4c27aad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14162,c1bf166f-8e42-406e-a5e9-b1e3d4c27aad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14163,c1bf166f-8e42-406e-a5e9-b1e3d4c27aad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14158,68fa6bb2-f2f4-4548-a0b8-3ddb097ffe9b,LIST_ACCOUNTS,hbciListAccounts,false +14159,68fa6bb2-f2f4-4548-a0b8-3ddb097ffe9b,LIST_TRANSACTIONS,hbciListTransactions,false +14160,68fa6bb2-f2f4-4548-a0b8-3ddb097ffe9b,AUTHORIZATION,,false +14161,68fa6bb2-f2f4-4548-a0b8-3ddb097ffe9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14162,68fa6bb2-f2f4-4548-a0b8-3ddb097ffe9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14163,68fa6bb2-f2f4-4548-a0b8-3ddb097ffe9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14164,0d0465e0-5a46-42a5-be5c-a8383b57599a,LIST_ACCOUNTS,xs2aListAccounts,true -14165,0d0465e0-5a46-42a5-be5c-a8383b57599a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14165,0d0465e0-5a46-42a5-be5c-a8383b57599a,LIST_TRANSACTIONS,xs2aListTransactions,true 14166,0d0465e0-5a46-42a5-be5c-a8383b57599a,AUTHORIZATION,,true 14167,0d0465e0-5a46-42a5-be5c-a8383b57599a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14168,0d0465e0-5a46-42a5-be5c-a8383b57599a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14169,0d0465e0-5a46-42a5-be5c-a8383b57599a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14170,69d65bde-6197-49ef-ae9c-d62a339e07bc,LIST_ACCOUNTS,hbciListAccounts,false -14171,69d65bde-6197-49ef-ae9c-d62a339e07bc,LIST_TRANSACTIONS,hbciListTransactions,false -14172,69d65bde-6197-49ef-ae9c-d62a339e07bc,AUTHORIZATION,,false -14173,69d65bde-6197-49ef-ae9c-d62a339e07bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14174,69d65bde-6197-49ef-ae9c-d62a339e07bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14175,69d65bde-6197-49ef-ae9c-d62a339e07bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14170,dd838194-90e2-4517-a3fb-5f90f816d0eb,LIST_ACCOUNTS,hbciListAccounts,false +14171,dd838194-90e2-4517-a3fb-5f90f816d0eb,LIST_TRANSACTIONS,hbciListTransactions,false +14172,dd838194-90e2-4517-a3fb-5f90f816d0eb,AUTHORIZATION,,false +14173,dd838194-90e2-4517-a3fb-5f90f816d0eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14174,dd838194-90e2-4517-a3fb-5f90f816d0eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14175,dd838194-90e2-4517-a3fb-5f90f816d0eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14176,8536f450-8c9a-4d74-85f8-e0a1cb2b2620,LIST_ACCOUNTS,xs2aListAccounts,true -14177,8536f450-8c9a-4d74-85f8-e0a1cb2b2620,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14177,8536f450-8c9a-4d74-85f8-e0a1cb2b2620,LIST_TRANSACTIONS,xs2aListTransactions,true 14178,8536f450-8c9a-4d74-85f8-e0a1cb2b2620,AUTHORIZATION,,true 14179,8536f450-8c9a-4d74-85f8-e0a1cb2b2620,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14180,8536f450-8c9a-4d74-85f8-e0a1cb2b2620,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14181,8536f450-8c9a-4d74-85f8-e0a1cb2b2620,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14182,2c191943-d960-4b74-a043-e1f7a4c77b0f,LIST_ACCOUNTS,hbciListAccounts,false -14183,2c191943-d960-4b74-a043-e1f7a4c77b0f,LIST_TRANSACTIONS,hbciListTransactions,false -14184,2c191943-d960-4b74-a043-e1f7a4c77b0f,AUTHORIZATION,,false -14185,2c191943-d960-4b74-a043-e1f7a4c77b0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14186,2c191943-d960-4b74-a043-e1f7a4c77b0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14187,2c191943-d960-4b74-a043-e1f7a4c77b0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14182,716cbce9-6a66-42af-b5cb-3c3630f17d69,LIST_ACCOUNTS,hbciListAccounts,false +14183,716cbce9-6a66-42af-b5cb-3c3630f17d69,LIST_TRANSACTIONS,hbciListTransactions,false +14184,716cbce9-6a66-42af-b5cb-3c3630f17d69,AUTHORIZATION,,false +14185,716cbce9-6a66-42af-b5cb-3c3630f17d69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14186,716cbce9-6a66-42af-b5cb-3c3630f17d69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14187,716cbce9-6a66-42af-b5cb-3c3630f17d69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14188,a98afee2-98d6-4c36-b6d4-0c1cf5e80aef,LIST_ACCOUNTS,xs2aListAccounts,true -14189,a98afee2-98d6-4c36-b6d4-0c1cf5e80aef,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14189,a98afee2-98d6-4c36-b6d4-0c1cf5e80aef,LIST_TRANSACTIONS,xs2aListTransactions,true 14190,a98afee2-98d6-4c36-b6d4-0c1cf5e80aef,AUTHORIZATION,,true 14191,a98afee2-98d6-4c36-b6d4-0c1cf5e80aef,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14192,a98afee2-98d6-4c36-b6d4-0c1cf5e80aef,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14193,a98afee2-98d6-4c36-b6d4-0c1cf5e80aef,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14194,fd652ac9-4097-40bc-ba9a-46e57c72d732,LIST_ACCOUNTS,hbciListAccounts,false -14195,fd652ac9-4097-40bc-ba9a-46e57c72d732,LIST_TRANSACTIONS,hbciListTransactions,false -14196,fd652ac9-4097-40bc-ba9a-46e57c72d732,AUTHORIZATION,,false -14197,fd652ac9-4097-40bc-ba9a-46e57c72d732,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14198,fd652ac9-4097-40bc-ba9a-46e57c72d732,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14199,fd652ac9-4097-40bc-ba9a-46e57c72d732,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14194,7782937c-0644-4789-b190-baddac02170a,LIST_ACCOUNTS,hbciListAccounts,false +14195,7782937c-0644-4789-b190-baddac02170a,LIST_TRANSACTIONS,hbciListTransactions,false +14196,7782937c-0644-4789-b190-baddac02170a,AUTHORIZATION,,false +14197,7782937c-0644-4789-b190-baddac02170a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14198,7782937c-0644-4789-b190-baddac02170a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14199,7782937c-0644-4789-b190-baddac02170a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14200,4ae275ae-13f7-4503-b452-2e0df169b255,LIST_ACCOUNTS,xs2aListAccounts,true -14201,4ae275ae-13f7-4503-b452-2e0df169b255,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14201,4ae275ae-13f7-4503-b452-2e0df169b255,LIST_TRANSACTIONS,xs2aListTransactions,true 14202,4ae275ae-13f7-4503-b452-2e0df169b255,AUTHORIZATION,,true 14203,4ae275ae-13f7-4503-b452-2e0df169b255,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14204,4ae275ae-13f7-4503-b452-2e0df169b255,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14205,4ae275ae-13f7-4503-b452-2e0df169b255,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14206,4e5be5c1-e082-4f1d-ae0f-2a6290093c95,LIST_ACCOUNTS,hbciListAccounts,false -14207,4e5be5c1-e082-4f1d-ae0f-2a6290093c95,LIST_TRANSACTIONS,hbciListTransactions,false -14208,4e5be5c1-e082-4f1d-ae0f-2a6290093c95,AUTHORIZATION,,false -14209,4e5be5c1-e082-4f1d-ae0f-2a6290093c95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14210,4e5be5c1-e082-4f1d-ae0f-2a6290093c95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14211,4e5be5c1-e082-4f1d-ae0f-2a6290093c95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14206,29b78338-fa11-42f4-bd1c-e7ad5445b0d3,LIST_ACCOUNTS,hbciListAccounts,false +14207,29b78338-fa11-42f4-bd1c-e7ad5445b0d3,LIST_TRANSACTIONS,hbciListTransactions,false +14208,29b78338-fa11-42f4-bd1c-e7ad5445b0d3,AUTHORIZATION,,false +14209,29b78338-fa11-42f4-bd1c-e7ad5445b0d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14210,29b78338-fa11-42f4-bd1c-e7ad5445b0d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14211,29b78338-fa11-42f4-bd1c-e7ad5445b0d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14212,9704057d-b3a8-4e32-9a6a-95ffc051a425,LIST_ACCOUNTS,xs2aListAccounts,true -14213,9704057d-b3a8-4e32-9a6a-95ffc051a425,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14213,9704057d-b3a8-4e32-9a6a-95ffc051a425,LIST_TRANSACTIONS,xs2aListTransactions,true 14214,9704057d-b3a8-4e32-9a6a-95ffc051a425,AUTHORIZATION,,true 14215,9704057d-b3a8-4e32-9a6a-95ffc051a425,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14216,9704057d-b3a8-4e32-9a6a-95ffc051a425,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14217,9704057d-b3a8-4e32-9a6a-95ffc051a425,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14218,08410f9c-7cc1-42c0-bb3c-d693b6bacc32,LIST_ACCOUNTS,hbciListAccounts,false -14219,08410f9c-7cc1-42c0-bb3c-d693b6bacc32,LIST_TRANSACTIONS,hbciListTransactions,false -14220,08410f9c-7cc1-42c0-bb3c-d693b6bacc32,AUTHORIZATION,,false -14221,08410f9c-7cc1-42c0-bb3c-d693b6bacc32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14222,08410f9c-7cc1-42c0-bb3c-d693b6bacc32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14223,08410f9c-7cc1-42c0-bb3c-d693b6bacc32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14218,8352c95a-0120-4637-a660-f0bf9c8f7cef,LIST_ACCOUNTS,hbciListAccounts,false +14219,8352c95a-0120-4637-a660-f0bf9c8f7cef,LIST_TRANSACTIONS,hbciListTransactions,false +14220,8352c95a-0120-4637-a660-f0bf9c8f7cef,AUTHORIZATION,,false +14221,8352c95a-0120-4637-a660-f0bf9c8f7cef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14222,8352c95a-0120-4637-a660-f0bf9c8f7cef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14223,8352c95a-0120-4637-a660-f0bf9c8f7cef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14224,48f2c97f-3078-44ea-8b8f-270e3730f099,LIST_ACCOUNTS,xs2aListAccounts,true -14225,48f2c97f-3078-44ea-8b8f-270e3730f099,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14225,48f2c97f-3078-44ea-8b8f-270e3730f099,LIST_TRANSACTIONS,xs2aListTransactions,true 14226,48f2c97f-3078-44ea-8b8f-270e3730f099,AUTHORIZATION,,true 14227,48f2c97f-3078-44ea-8b8f-270e3730f099,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14228,48f2c97f-3078-44ea-8b8f-270e3730f099,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14229,48f2c97f-3078-44ea-8b8f-270e3730f099,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14230,6ca6f42a-3c04-4ee6-a5af-e286e35d112c,LIST_ACCOUNTS,hbciListAccounts,false -14231,6ca6f42a-3c04-4ee6-a5af-e286e35d112c,LIST_TRANSACTIONS,hbciListTransactions,false -14232,6ca6f42a-3c04-4ee6-a5af-e286e35d112c,AUTHORIZATION,,false -14233,6ca6f42a-3c04-4ee6-a5af-e286e35d112c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14234,6ca6f42a-3c04-4ee6-a5af-e286e35d112c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14235,6ca6f42a-3c04-4ee6-a5af-e286e35d112c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14230,1afdfb6f-374f-4855-8e49-6f12d239767c,LIST_ACCOUNTS,hbciListAccounts,false +14231,1afdfb6f-374f-4855-8e49-6f12d239767c,LIST_TRANSACTIONS,hbciListTransactions,false +14232,1afdfb6f-374f-4855-8e49-6f12d239767c,AUTHORIZATION,,false +14233,1afdfb6f-374f-4855-8e49-6f12d239767c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14234,1afdfb6f-374f-4855-8e49-6f12d239767c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14235,1afdfb6f-374f-4855-8e49-6f12d239767c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14236,4e653661-c7f8-474f-88b0-47f57896b991,LIST_ACCOUNTS,xs2aListAccounts,true -14237,4e653661-c7f8-474f-88b0-47f57896b991,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14237,4e653661-c7f8-474f-88b0-47f57896b991,LIST_TRANSACTIONS,xs2aListTransactions,true 14238,4e653661-c7f8-474f-88b0-47f57896b991,AUTHORIZATION,,true 14239,4e653661-c7f8-474f-88b0-47f57896b991,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14240,4e653661-c7f8-474f-88b0-47f57896b991,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14241,4e653661-c7f8-474f-88b0-47f57896b991,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14242,e0d79222-f750-4a2d-9c89-e3c07b05a906,LIST_ACCOUNTS,hbciListAccounts,false -14243,e0d79222-f750-4a2d-9c89-e3c07b05a906,LIST_TRANSACTIONS,hbciListTransactions,false -14244,e0d79222-f750-4a2d-9c89-e3c07b05a906,AUTHORIZATION,,false -14245,e0d79222-f750-4a2d-9c89-e3c07b05a906,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14246,e0d79222-f750-4a2d-9c89-e3c07b05a906,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14247,e0d79222-f750-4a2d-9c89-e3c07b05a906,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14242,74add828-2fa5-475b-b764-7a3a290f9a6f,LIST_ACCOUNTS,hbciListAccounts,false +14243,74add828-2fa5-475b-b764-7a3a290f9a6f,LIST_TRANSACTIONS,hbciListTransactions,false +14244,74add828-2fa5-475b-b764-7a3a290f9a6f,AUTHORIZATION,,false +14245,74add828-2fa5-475b-b764-7a3a290f9a6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14246,74add828-2fa5-475b-b764-7a3a290f9a6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14247,74add828-2fa5-475b-b764-7a3a290f9a6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14248,bb6f6981-9c66-4e0a-927e-dc5681ffc2ab,LIST_ACCOUNTS,xs2aListAccounts,true -14249,bb6f6981-9c66-4e0a-927e-dc5681ffc2ab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14249,bb6f6981-9c66-4e0a-927e-dc5681ffc2ab,LIST_TRANSACTIONS,xs2aListTransactions,true 14250,bb6f6981-9c66-4e0a-927e-dc5681ffc2ab,AUTHORIZATION,,true 14251,bb6f6981-9c66-4e0a-927e-dc5681ffc2ab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14252,bb6f6981-9c66-4e0a-927e-dc5681ffc2ab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14253,bb6f6981-9c66-4e0a-927e-dc5681ffc2ab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14254,4772e43c-031d-46ab-b012-f4984916581a,LIST_ACCOUNTS,hbciListAccounts,false -14255,4772e43c-031d-46ab-b012-f4984916581a,LIST_TRANSACTIONS,hbciListTransactions,false -14256,4772e43c-031d-46ab-b012-f4984916581a,AUTHORIZATION,,false -14257,4772e43c-031d-46ab-b012-f4984916581a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14258,4772e43c-031d-46ab-b012-f4984916581a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14259,4772e43c-031d-46ab-b012-f4984916581a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14254,81b19021-c940-4be4-96bc-498433e71a8e,LIST_ACCOUNTS,hbciListAccounts,false +14255,81b19021-c940-4be4-96bc-498433e71a8e,LIST_TRANSACTIONS,hbciListTransactions,false +14256,81b19021-c940-4be4-96bc-498433e71a8e,AUTHORIZATION,,false +14257,81b19021-c940-4be4-96bc-498433e71a8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14258,81b19021-c940-4be4-96bc-498433e71a8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14259,81b19021-c940-4be4-96bc-498433e71a8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14260,eaa033ef-6f74-46c6-bdf7-f24d7b989445,LIST_ACCOUNTS,xs2aListAccounts,true -14261,eaa033ef-6f74-46c6-bdf7-f24d7b989445,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14261,eaa033ef-6f74-46c6-bdf7-f24d7b989445,LIST_TRANSACTIONS,xs2aListTransactions,true 14262,eaa033ef-6f74-46c6-bdf7-f24d7b989445,AUTHORIZATION,,true 14263,eaa033ef-6f74-46c6-bdf7-f24d7b989445,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14264,eaa033ef-6f74-46c6-bdf7-f24d7b989445,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14265,eaa033ef-6f74-46c6-bdf7-f24d7b989445,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14266,f60df1f9-6601-4af7-8322-e2f9904a86c0,LIST_ACCOUNTS,hbciListAccounts,false -14267,f60df1f9-6601-4af7-8322-e2f9904a86c0,LIST_TRANSACTIONS,hbciListTransactions,false -14268,f60df1f9-6601-4af7-8322-e2f9904a86c0,AUTHORIZATION,,false -14269,f60df1f9-6601-4af7-8322-e2f9904a86c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14270,f60df1f9-6601-4af7-8322-e2f9904a86c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14271,f60df1f9-6601-4af7-8322-e2f9904a86c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14266,f37842a2-f4ed-4a82-bf69-ec2d04c27bfb,LIST_ACCOUNTS,hbciListAccounts,false +14267,f37842a2-f4ed-4a82-bf69-ec2d04c27bfb,LIST_TRANSACTIONS,hbciListTransactions,false +14268,f37842a2-f4ed-4a82-bf69-ec2d04c27bfb,AUTHORIZATION,,false +14269,f37842a2-f4ed-4a82-bf69-ec2d04c27bfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14270,f37842a2-f4ed-4a82-bf69-ec2d04c27bfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14271,f37842a2-f4ed-4a82-bf69-ec2d04c27bfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14272,a2d742d2-c011-43f8-8ba9-7fe754710279,LIST_ACCOUNTS,xs2aListAccounts,true -14273,a2d742d2-c011-43f8-8ba9-7fe754710279,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14273,a2d742d2-c011-43f8-8ba9-7fe754710279,LIST_TRANSACTIONS,xs2aListTransactions,true 14274,a2d742d2-c011-43f8-8ba9-7fe754710279,AUTHORIZATION,,true 14275,a2d742d2-c011-43f8-8ba9-7fe754710279,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14276,a2d742d2-c011-43f8-8ba9-7fe754710279,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14277,a2d742d2-c011-43f8-8ba9-7fe754710279,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14278,5c2c68e8-b331-440b-afcb-e4d552c80d78,LIST_ACCOUNTS,hbciListAccounts,false -14279,5c2c68e8-b331-440b-afcb-e4d552c80d78,LIST_TRANSACTIONS,hbciListTransactions,false -14280,5c2c68e8-b331-440b-afcb-e4d552c80d78,AUTHORIZATION,,false -14281,5c2c68e8-b331-440b-afcb-e4d552c80d78,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14282,5c2c68e8-b331-440b-afcb-e4d552c80d78,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14283,5c2c68e8-b331-440b-afcb-e4d552c80d78,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14278,faa6d839-59d7-4db9-bb0f-e5605d1604ef,LIST_ACCOUNTS,hbciListAccounts,false +14279,faa6d839-59d7-4db9-bb0f-e5605d1604ef,LIST_TRANSACTIONS,hbciListTransactions,false +14280,faa6d839-59d7-4db9-bb0f-e5605d1604ef,AUTHORIZATION,,false +14281,faa6d839-59d7-4db9-bb0f-e5605d1604ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14282,faa6d839-59d7-4db9-bb0f-e5605d1604ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14283,faa6d839-59d7-4db9-bb0f-e5605d1604ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14284,596bc070-d3e4-43bc-8b4d-f2816255158d,LIST_ACCOUNTS,xs2aListAccounts,true -14285,596bc070-d3e4-43bc-8b4d-f2816255158d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14285,596bc070-d3e4-43bc-8b4d-f2816255158d,LIST_TRANSACTIONS,xs2aListTransactions,true 14286,596bc070-d3e4-43bc-8b4d-f2816255158d,AUTHORIZATION,,true 14287,596bc070-d3e4-43bc-8b4d-f2816255158d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14288,596bc070-d3e4-43bc-8b4d-f2816255158d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14289,596bc070-d3e4-43bc-8b4d-f2816255158d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14290,4e04cf70-1443-4728-8e04-f36d262093a0,LIST_ACCOUNTS,hbciListAccounts,false -14291,4e04cf70-1443-4728-8e04-f36d262093a0,LIST_TRANSACTIONS,hbciListTransactions,false -14292,4e04cf70-1443-4728-8e04-f36d262093a0,AUTHORIZATION,,false -14293,4e04cf70-1443-4728-8e04-f36d262093a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14294,4e04cf70-1443-4728-8e04-f36d262093a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14295,4e04cf70-1443-4728-8e04-f36d262093a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14290,f5fdd700-3abf-45bf-abf4-7fba72abe88b,LIST_ACCOUNTS,hbciListAccounts,false +14291,f5fdd700-3abf-45bf-abf4-7fba72abe88b,LIST_TRANSACTIONS,hbciListTransactions,false +14292,f5fdd700-3abf-45bf-abf4-7fba72abe88b,AUTHORIZATION,,false +14293,f5fdd700-3abf-45bf-abf4-7fba72abe88b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14294,f5fdd700-3abf-45bf-abf4-7fba72abe88b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14295,f5fdd700-3abf-45bf-abf4-7fba72abe88b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14296,548e334f-bf5a-4314-b2d1-70aa9383b77f,LIST_ACCOUNTS,xs2aListAccounts,true -14297,548e334f-bf5a-4314-b2d1-70aa9383b77f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14297,548e334f-bf5a-4314-b2d1-70aa9383b77f,LIST_TRANSACTIONS,xs2aListTransactions,true 14298,548e334f-bf5a-4314-b2d1-70aa9383b77f,AUTHORIZATION,,true 14299,548e334f-bf5a-4314-b2d1-70aa9383b77f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14300,548e334f-bf5a-4314-b2d1-70aa9383b77f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14301,548e334f-bf5a-4314-b2d1-70aa9383b77f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14302,6aaa5b56-dc8b-4ceb-aacd-24ffe697393d,LIST_ACCOUNTS,hbciListAccounts,false -14303,6aaa5b56-dc8b-4ceb-aacd-24ffe697393d,LIST_TRANSACTIONS,hbciListTransactions,false -14304,6aaa5b56-dc8b-4ceb-aacd-24ffe697393d,AUTHORIZATION,,false -14305,6aaa5b56-dc8b-4ceb-aacd-24ffe697393d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14306,6aaa5b56-dc8b-4ceb-aacd-24ffe697393d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14307,6aaa5b56-dc8b-4ceb-aacd-24ffe697393d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14302,861c0c7a-ae16-4534-8479-813e7a95696c,LIST_ACCOUNTS,hbciListAccounts,false +14303,861c0c7a-ae16-4534-8479-813e7a95696c,LIST_TRANSACTIONS,hbciListTransactions,false +14304,861c0c7a-ae16-4534-8479-813e7a95696c,AUTHORIZATION,,false +14305,861c0c7a-ae16-4534-8479-813e7a95696c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14306,861c0c7a-ae16-4534-8479-813e7a95696c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14307,861c0c7a-ae16-4534-8479-813e7a95696c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14308,905800a4-ed4b-4e0e-974e-a3151219a4c8,LIST_ACCOUNTS,xs2aListAccounts,true -14309,905800a4-ed4b-4e0e-974e-a3151219a4c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14309,905800a4-ed4b-4e0e-974e-a3151219a4c8,LIST_TRANSACTIONS,xs2aListTransactions,true 14310,905800a4-ed4b-4e0e-974e-a3151219a4c8,AUTHORIZATION,,true 14311,905800a4-ed4b-4e0e-974e-a3151219a4c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14312,905800a4-ed4b-4e0e-974e-a3151219a4c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14313,905800a4-ed4b-4e0e-974e-a3151219a4c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14314,13dc8c23-015b-4367-a210-9906936bb2a7,LIST_ACCOUNTS,hbciListAccounts,false -14315,13dc8c23-015b-4367-a210-9906936bb2a7,LIST_TRANSACTIONS,hbciListTransactions,false -14316,13dc8c23-015b-4367-a210-9906936bb2a7,AUTHORIZATION,,false -14317,13dc8c23-015b-4367-a210-9906936bb2a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14318,13dc8c23-015b-4367-a210-9906936bb2a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14319,13dc8c23-015b-4367-a210-9906936bb2a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14314,c45f1e3a-3c10-4ac8-90ac-f66abb8306e7,LIST_ACCOUNTS,hbciListAccounts,false +14315,c45f1e3a-3c10-4ac8-90ac-f66abb8306e7,LIST_TRANSACTIONS,hbciListTransactions,false +14316,c45f1e3a-3c10-4ac8-90ac-f66abb8306e7,AUTHORIZATION,,false +14317,c45f1e3a-3c10-4ac8-90ac-f66abb8306e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14318,c45f1e3a-3c10-4ac8-90ac-f66abb8306e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14319,c45f1e3a-3c10-4ac8-90ac-f66abb8306e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14320,745f31a2-b0ee-44d7-af71-a488a99f5568,LIST_ACCOUNTS,xs2aListAccounts,true -14321,745f31a2-b0ee-44d7-af71-a488a99f5568,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14321,745f31a2-b0ee-44d7-af71-a488a99f5568,LIST_TRANSACTIONS,xs2aListTransactions,true 14322,745f31a2-b0ee-44d7-af71-a488a99f5568,AUTHORIZATION,,true 14323,745f31a2-b0ee-44d7-af71-a488a99f5568,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14324,745f31a2-b0ee-44d7-af71-a488a99f5568,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14325,745f31a2-b0ee-44d7-af71-a488a99f5568,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14326,cb9b26e3-826f-4e6d-9ecf-2d83068e4ad0,LIST_ACCOUNTS,hbciListAccounts,false -14327,cb9b26e3-826f-4e6d-9ecf-2d83068e4ad0,LIST_TRANSACTIONS,hbciListTransactions,false -14328,cb9b26e3-826f-4e6d-9ecf-2d83068e4ad0,AUTHORIZATION,,false -14329,cb9b26e3-826f-4e6d-9ecf-2d83068e4ad0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14330,cb9b26e3-826f-4e6d-9ecf-2d83068e4ad0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14331,cb9b26e3-826f-4e6d-9ecf-2d83068e4ad0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14326,17f7d261-5430-488f-a215-887a635f1034,LIST_ACCOUNTS,hbciListAccounts,false +14327,17f7d261-5430-488f-a215-887a635f1034,LIST_TRANSACTIONS,hbciListTransactions,false +14328,17f7d261-5430-488f-a215-887a635f1034,AUTHORIZATION,,false +14329,17f7d261-5430-488f-a215-887a635f1034,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14330,17f7d261-5430-488f-a215-887a635f1034,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14331,17f7d261-5430-488f-a215-887a635f1034,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14332,ad8d36ce-434f-43af-ad96-79da0a093ee4,LIST_ACCOUNTS,xs2aListAccounts,true -14333,ad8d36ce-434f-43af-ad96-79da0a093ee4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14333,ad8d36ce-434f-43af-ad96-79da0a093ee4,LIST_TRANSACTIONS,xs2aListTransactions,true 14334,ad8d36ce-434f-43af-ad96-79da0a093ee4,AUTHORIZATION,,true 14335,ad8d36ce-434f-43af-ad96-79da0a093ee4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14336,ad8d36ce-434f-43af-ad96-79da0a093ee4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14337,ad8d36ce-434f-43af-ad96-79da0a093ee4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14338,26d91ce8-592a-4d2d-ba27-53b96d283ab7,LIST_ACCOUNTS,hbciListAccounts,false -14339,26d91ce8-592a-4d2d-ba27-53b96d283ab7,LIST_TRANSACTIONS,hbciListTransactions,false -14340,26d91ce8-592a-4d2d-ba27-53b96d283ab7,AUTHORIZATION,,false -14341,26d91ce8-592a-4d2d-ba27-53b96d283ab7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14342,26d91ce8-592a-4d2d-ba27-53b96d283ab7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14343,26d91ce8-592a-4d2d-ba27-53b96d283ab7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14338,a3e26b48-d8fb-47ae-a66a-c6f211408c5c,LIST_ACCOUNTS,hbciListAccounts,false +14339,a3e26b48-d8fb-47ae-a66a-c6f211408c5c,LIST_TRANSACTIONS,hbciListTransactions,false +14340,a3e26b48-d8fb-47ae-a66a-c6f211408c5c,AUTHORIZATION,,false +14341,a3e26b48-d8fb-47ae-a66a-c6f211408c5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14342,a3e26b48-d8fb-47ae-a66a-c6f211408c5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14343,a3e26b48-d8fb-47ae-a66a-c6f211408c5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14344,2ee58efd-c55e-42e0-bed0-8101ed772533,LIST_ACCOUNTS,xs2aListAccounts,true -14345,2ee58efd-c55e-42e0-bed0-8101ed772533,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14345,2ee58efd-c55e-42e0-bed0-8101ed772533,LIST_TRANSACTIONS,xs2aListTransactions,true 14346,2ee58efd-c55e-42e0-bed0-8101ed772533,AUTHORIZATION,,true 14347,2ee58efd-c55e-42e0-bed0-8101ed772533,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14348,2ee58efd-c55e-42e0-bed0-8101ed772533,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14349,2ee58efd-c55e-42e0-bed0-8101ed772533,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14350,b5a38e8e-3dce-4f01-8934-883830bfa559,LIST_ACCOUNTS,hbciListAccounts,false -14351,b5a38e8e-3dce-4f01-8934-883830bfa559,LIST_TRANSACTIONS,hbciListTransactions,false -14352,b5a38e8e-3dce-4f01-8934-883830bfa559,AUTHORIZATION,,false -14353,b5a38e8e-3dce-4f01-8934-883830bfa559,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14354,b5a38e8e-3dce-4f01-8934-883830bfa559,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14355,b5a38e8e-3dce-4f01-8934-883830bfa559,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14350,6a808d85-e6c7-4fce-bda7-286a98a72360,LIST_ACCOUNTS,hbciListAccounts,false +14351,6a808d85-e6c7-4fce-bda7-286a98a72360,LIST_TRANSACTIONS,hbciListTransactions,false +14352,6a808d85-e6c7-4fce-bda7-286a98a72360,AUTHORIZATION,,false +14353,6a808d85-e6c7-4fce-bda7-286a98a72360,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14354,6a808d85-e6c7-4fce-bda7-286a98a72360,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14355,6a808d85-e6c7-4fce-bda7-286a98a72360,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14356,be8d0934-dee4-447a-8687-397d27887277,LIST_ACCOUNTS,xs2aListAccounts,true -14357,be8d0934-dee4-447a-8687-397d27887277,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14357,be8d0934-dee4-447a-8687-397d27887277,LIST_TRANSACTIONS,xs2aListTransactions,true 14358,be8d0934-dee4-447a-8687-397d27887277,AUTHORIZATION,,true 14359,be8d0934-dee4-447a-8687-397d27887277,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14360,be8d0934-dee4-447a-8687-397d27887277,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14361,be8d0934-dee4-447a-8687-397d27887277,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14362,99d7003a-b519-4ca6-bdb1-48f4fdebcaab,LIST_ACCOUNTS,hbciListAccounts,false -14363,99d7003a-b519-4ca6-bdb1-48f4fdebcaab,LIST_TRANSACTIONS,hbciListTransactions,false -14364,99d7003a-b519-4ca6-bdb1-48f4fdebcaab,AUTHORIZATION,,false -14365,99d7003a-b519-4ca6-bdb1-48f4fdebcaab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14366,99d7003a-b519-4ca6-bdb1-48f4fdebcaab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14367,99d7003a-b519-4ca6-bdb1-48f4fdebcaab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14362,9d6596ed-fb5d-419a-b3d9-a96279952c23,LIST_ACCOUNTS,hbciListAccounts,false +14363,9d6596ed-fb5d-419a-b3d9-a96279952c23,LIST_TRANSACTIONS,hbciListTransactions,false +14364,9d6596ed-fb5d-419a-b3d9-a96279952c23,AUTHORIZATION,,false +14365,9d6596ed-fb5d-419a-b3d9-a96279952c23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14366,9d6596ed-fb5d-419a-b3d9-a96279952c23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14367,9d6596ed-fb5d-419a-b3d9-a96279952c23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14368,13cdaf30-2472-49b9-9207-389c18520929,LIST_ACCOUNTS,xs2aListAccounts,true -14369,13cdaf30-2472-49b9-9207-389c18520929,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14369,13cdaf30-2472-49b9-9207-389c18520929,LIST_TRANSACTIONS,xs2aListTransactions,true 14370,13cdaf30-2472-49b9-9207-389c18520929,AUTHORIZATION,,true 14371,13cdaf30-2472-49b9-9207-389c18520929,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14372,13cdaf30-2472-49b9-9207-389c18520929,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14373,13cdaf30-2472-49b9-9207-389c18520929,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14374,3e7dfb46-bba3-4728-afca-340d897a1691,LIST_ACCOUNTS,hbciListAccounts,false -14375,3e7dfb46-bba3-4728-afca-340d897a1691,LIST_TRANSACTIONS,hbciListTransactions,false -14376,3e7dfb46-bba3-4728-afca-340d897a1691,AUTHORIZATION,,false -14377,3e7dfb46-bba3-4728-afca-340d897a1691,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14378,3e7dfb46-bba3-4728-afca-340d897a1691,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14379,3e7dfb46-bba3-4728-afca-340d897a1691,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14374,85918a53-532b-4381-8d9a-8118e56b8553,LIST_ACCOUNTS,hbciListAccounts,false +14375,85918a53-532b-4381-8d9a-8118e56b8553,LIST_TRANSACTIONS,hbciListTransactions,false +14376,85918a53-532b-4381-8d9a-8118e56b8553,AUTHORIZATION,,false +14377,85918a53-532b-4381-8d9a-8118e56b8553,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14378,85918a53-532b-4381-8d9a-8118e56b8553,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14379,85918a53-532b-4381-8d9a-8118e56b8553,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14380,06fd490d-e935-4337-abae-70de378410c5,LIST_ACCOUNTS,xs2aListAccounts,true -14381,06fd490d-e935-4337-abae-70de378410c5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14381,06fd490d-e935-4337-abae-70de378410c5,LIST_TRANSACTIONS,xs2aListTransactions,true 14382,06fd490d-e935-4337-abae-70de378410c5,AUTHORIZATION,,true 14383,06fd490d-e935-4337-abae-70de378410c5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14384,06fd490d-e935-4337-abae-70de378410c5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14385,06fd490d-e935-4337-abae-70de378410c5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14386,e5a8a9de-c222-48bc-8a0d-8fe2e5948e2c,LIST_ACCOUNTS,hbciListAccounts,false -14387,e5a8a9de-c222-48bc-8a0d-8fe2e5948e2c,LIST_TRANSACTIONS,hbciListTransactions,false -14388,e5a8a9de-c222-48bc-8a0d-8fe2e5948e2c,AUTHORIZATION,,false -14389,e5a8a9de-c222-48bc-8a0d-8fe2e5948e2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14390,e5a8a9de-c222-48bc-8a0d-8fe2e5948e2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14391,e5a8a9de-c222-48bc-8a0d-8fe2e5948e2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14386,c838bf4a-2c30-4248-acee-3e9afb4d760d,LIST_ACCOUNTS,hbciListAccounts,false +14387,c838bf4a-2c30-4248-acee-3e9afb4d760d,LIST_TRANSACTIONS,hbciListTransactions,false +14388,c838bf4a-2c30-4248-acee-3e9afb4d760d,AUTHORIZATION,,false +14389,c838bf4a-2c30-4248-acee-3e9afb4d760d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14390,c838bf4a-2c30-4248-acee-3e9afb4d760d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14391,c838bf4a-2c30-4248-acee-3e9afb4d760d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14392,6a5a2cea-4bf0-46b8-866f-36d93c1fd95b,LIST_ACCOUNTS,xs2aListAccounts,true -14393,6a5a2cea-4bf0-46b8-866f-36d93c1fd95b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14393,6a5a2cea-4bf0-46b8-866f-36d93c1fd95b,LIST_TRANSACTIONS,xs2aListTransactions,true 14394,6a5a2cea-4bf0-46b8-866f-36d93c1fd95b,AUTHORIZATION,,true 14395,6a5a2cea-4bf0-46b8-866f-36d93c1fd95b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14396,6a5a2cea-4bf0-46b8-866f-36d93c1fd95b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14397,6a5a2cea-4bf0-46b8-866f-36d93c1fd95b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14398,18173730-e3cb-4e85-8b23-3161e97d70a1,LIST_ACCOUNTS,hbciListAccounts,false -14399,18173730-e3cb-4e85-8b23-3161e97d70a1,LIST_TRANSACTIONS,hbciListTransactions,false -14400,18173730-e3cb-4e85-8b23-3161e97d70a1,AUTHORIZATION,,false -14401,18173730-e3cb-4e85-8b23-3161e97d70a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14402,18173730-e3cb-4e85-8b23-3161e97d70a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14403,18173730-e3cb-4e85-8b23-3161e97d70a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14398,88262d48-9aa9-4a7f-8e6e-61311a4871f2,LIST_ACCOUNTS,hbciListAccounts,false +14399,88262d48-9aa9-4a7f-8e6e-61311a4871f2,LIST_TRANSACTIONS,hbciListTransactions,false +14400,88262d48-9aa9-4a7f-8e6e-61311a4871f2,AUTHORIZATION,,false +14401,88262d48-9aa9-4a7f-8e6e-61311a4871f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14402,88262d48-9aa9-4a7f-8e6e-61311a4871f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14403,88262d48-9aa9-4a7f-8e6e-61311a4871f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14404,002ff929-4273-403e-9711-ee42fc96efb0,LIST_ACCOUNTS,xs2aListAccounts,true -14405,002ff929-4273-403e-9711-ee42fc96efb0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14405,002ff929-4273-403e-9711-ee42fc96efb0,LIST_TRANSACTIONS,xs2aListTransactions,true 14406,002ff929-4273-403e-9711-ee42fc96efb0,AUTHORIZATION,,true 14407,002ff929-4273-403e-9711-ee42fc96efb0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14408,002ff929-4273-403e-9711-ee42fc96efb0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14409,002ff929-4273-403e-9711-ee42fc96efb0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14410,63a0ed84-d4fd-4383-adca-27f6b76da882,LIST_ACCOUNTS,hbciListAccounts,false -14411,63a0ed84-d4fd-4383-adca-27f6b76da882,LIST_TRANSACTIONS,hbciListTransactions,false -14412,63a0ed84-d4fd-4383-adca-27f6b76da882,AUTHORIZATION,,false -14413,63a0ed84-d4fd-4383-adca-27f6b76da882,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14414,63a0ed84-d4fd-4383-adca-27f6b76da882,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14415,63a0ed84-d4fd-4383-adca-27f6b76da882,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14410,6669e4bd-4873-48e4-b7c2-bfa4605cd2de,LIST_ACCOUNTS,hbciListAccounts,false +14411,6669e4bd-4873-48e4-b7c2-bfa4605cd2de,LIST_TRANSACTIONS,hbciListTransactions,false +14412,6669e4bd-4873-48e4-b7c2-bfa4605cd2de,AUTHORIZATION,,false +14413,6669e4bd-4873-48e4-b7c2-bfa4605cd2de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14414,6669e4bd-4873-48e4-b7c2-bfa4605cd2de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14415,6669e4bd-4873-48e4-b7c2-bfa4605cd2de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14416,551e94bf-838f-4e9f-9205-b56dec2808bb,LIST_ACCOUNTS,xs2aListAccounts,true -14417,551e94bf-838f-4e9f-9205-b56dec2808bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14417,551e94bf-838f-4e9f-9205-b56dec2808bb,LIST_TRANSACTIONS,xs2aListTransactions,true 14418,551e94bf-838f-4e9f-9205-b56dec2808bb,AUTHORIZATION,,true 14419,551e94bf-838f-4e9f-9205-b56dec2808bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14420,551e94bf-838f-4e9f-9205-b56dec2808bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14421,551e94bf-838f-4e9f-9205-b56dec2808bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14422,283d0a05-970d-4096-9ce6-9d66614b88ae,LIST_ACCOUNTS,hbciListAccounts,false -14423,283d0a05-970d-4096-9ce6-9d66614b88ae,LIST_TRANSACTIONS,hbciListTransactions,false -14424,283d0a05-970d-4096-9ce6-9d66614b88ae,AUTHORIZATION,,false -14425,283d0a05-970d-4096-9ce6-9d66614b88ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14426,283d0a05-970d-4096-9ce6-9d66614b88ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14427,283d0a05-970d-4096-9ce6-9d66614b88ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14422,98ae25d7-f83f-4948-a3ea-ced7c4565329,LIST_ACCOUNTS,hbciListAccounts,false +14423,98ae25d7-f83f-4948-a3ea-ced7c4565329,LIST_TRANSACTIONS,hbciListTransactions,false +14424,98ae25d7-f83f-4948-a3ea-ced7c4565329,AUTHORIZATION,,false +14425,98ae25d7-f83f-4948-a3ea-ced7c4565329,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14426,98ae25d7-f83f-4948-a3ea-ced7c4565329,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14427,98ae25d7-f83f-4948-a3ea-ced7c4565329,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14428,9abf15db-303f-4faa-9eed-64d5a33144b2,LIST_ACCOUNTS,xs2aListAccounts,true -14429,9abf15db-303f-4faa-9eed-64d5a33144b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14429,9abf15db-303f-4faa-9eed-64d5a33144b2,LIST_TRANSACTIONS,xs2aListTransactions,true 14430,9abf15db-303f-4faa-9eed-64d5a33144b2,AUTHORIZATION,,true 14431,9abf15db-303f-4faa-9eed-64d5a33144b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14432,9abf15db-303f-4faa-9eed-64d5a33144b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14433,9abf15db-303f-4faa-9eed-64d5a33144b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14434,48ea91f7-63f2-4bef-9ba3-c3d174dffd5e,LIST_ACCOUNTS,hbciListAccounts,false -14435,48ea91f7-63f2-4bef-9ba3-c3d174dffd5e,LIST_TRANSACTIONS,hbciListTransactions,false -14436,48ea91f7-63f2-4bef-9ba3-c3d174dffd5e,AUTHORIZATION,,false -14437,48ea91f7-63f2-4bef-9ba3-c3d174dffd5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14438,48ea91f7-63f2-4bef-9ba3-c3d174dffd5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14439,48ea91f7-63f2-4bef-9ba3-c3d174dffd5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14434,7aa080d8-41b8-498c-9da6-c29f4b213134,LIST_ACCOUNTS,hbciListAccounts,false +14435,7aa080d8-41b8-498c-9da6-c29f4b213134,LIST_TRANSACTIONS,hbciListTransactions,false +14436,7aa080d8-41b8-498c-9da6-c29f4b213134,AUTHORIZATION,,false +14437,7aa080d8-41b8-498c-9da6-c29f4b213134,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14438,7aa080d8-41b8-498c-9da6-c29f4b213134,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14439,7aa080d8-41b8-498c-9da6-c29f4b213134,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14440,793b02b6-5ec2-4721-9fba-b5e7770c2b1d,LIST_ACCOUNTS,xs2aListAccounts,true -14441,793b02b6-5ec2-4721-9fba-b5e7770c2b1d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14441,793b02b6-5ec2-4721-9fba-b5e7770c2b1d,LIST_TRANSACTIONS,xs2aListTransactions,true 14442,793b02b6-5ec2-4721-9fba-b5e7770c2b1d,AUTHORIZATION,,true 14443,793b02b6-5ec2-4721-9fba-b5e7770c2b1d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14444,793b02b6-5ec2-4721-9fba-b5e7770c2b1d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14445,793b02b6-5ec2-4721-9fba-b5e7770c2b1d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14446,37dd5cda-41c7-4198-88ec-369b02ee1b29,LIST_ACCOUNTS,hbciListAccounts,false -14447,37dd5cda-41c7-4198-88ec-369b02ee1b29,LIST_TRANSACTIONS,hbciListTransactions,false -14448,37dd5cda-41c7-4198-88ec-369b02ee1b29,AUTHORIZATION,,false -14449,37dd5cda-41c7-4198-88ec-369b02ee1b29,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14450,37dd5cda-41c7-4198-88ec-369b02ee1b29,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14451,37dd5cda-41c7-4198-88ec-369b02ee1b29,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14446,1fd61fd6-4389-45a0-9a30-cd73732138bc,LIST_ACCOUNTS,hbciListAccounts,false +14447,1fd61fd6-4389-45a0-9a30-cd73732138bc,LIST_TRANSACTIONS,hbciListTransactions,false +14448,1fd61fd6-4389-45a0-9a30-cd73732138bc,AUTHORIZATION,,false +14449,1fd61fd6-4389-45a0-9a30-cd73732138bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14450,1fd61fd6-4389-45a0-9a30-cd73732138bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14451,1fd61fd6-4389-45a0-9a30-cd73732138bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14452,18d3989b-dfa5-4839-99bd-c75fb86fdfcf,LIST_ACCOUNTS,xs2aListAccounts,true -14453,18d3989b-dfa5-4839-99bd-c75fb86fdfcf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14453,18d3989b-dfa5-4839-99bd-c75fb86fdfcf,LIST_TRANSACTIONS,xs2aListTransactions,true 14454,18d3989b-dfa5-4839-99bd-c75fb86fdfcf,AUTHORIZATION,,true 14455,18d3989b-dfa5-4839-99bd-c75fb86fdfcf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14456,18d3989b-dfa5-4839-99bd-c75fb86fdfcf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14457,18d3989b-dfa5-4839-99bd-c75fb86fdfcf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14458,98b3ead4-6a6a-4474-a0b8-3ad24d83346a,LIST_ACCOUNTS,hbciListAccounts,false -14459,98b3ead4-6a6a-4474-a0b8-3ad24d83346a,LIST_TRANSACTIONS,hbciListTransactions,false -14460,98b3ead4-6a6a-4474-a0b8-3ad24d83346a,AUTHORIZATION,,false -14461,98b3ead4-6a6a-4474-a0b8-3ad24d83346a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14462,98b3ead4-6a6a-4474-a0b8-3ad24d83346a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14463,98b3ead4-6a6a-4474-a0b8-3ad24d83346a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14458,8aa18e62-bf39-4a7c-9ab7-fbf9fe0338f7,LIST_ACCOUNTS,hbciListAccounts,false +14459,8aa18e62-bf39-4a7c-9ab7-fbf9fe0338f7,LIST_TRANSACTIONS,hbciListTransactions,false +14460,8aa18e62-bf39-4a7c-9ab7-fbf9fe0338f7,AUTHORIZATION,,false +14461,8aa18e62-bf39-4a7c-9ab7-fbf9fe0338f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14462,8aa18e62-bf39-4a7c-9ab7-fbf9fe0338f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14463,8aa18e62-bf39-4a7c-9ab7-fbf9fe0338f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14464,088ccfb8-e249-42c5-925b-9dbce1ab1caa,LIST_ACCOUNTS,xs2aListAccounts,true -14465,088ccfb8-e249-42c5-925b-9dbce1ab1caa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14465,088ccfb8-e249-42c5-925b-9dbce1ab1caa,LIST_TRANSACTIONS,xs2aListTransactions,true 14466,088ccfb8-e249-42c5-925b-9dbce1ab1caa,AUTHORIZATION,,true 14467,088ccfb8-e249-42c5-925b-9dbce1ab1caa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14468,088ccfb8-e249-42c5-925b-9dbce1ab1caa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14469,088ccfb8-e249-42c5-925b-9dbce1ab1caa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14470,6bebaf4a-1112-436e-b165-4e06ec79e844,LIST_ACCOUNTS,hbciListAccounts,false -14471,6bebaf4a-1112-436e-b165-4e06ec79e844,LIST_TRANSACTIONS,hbciListTransactions,false -14472,6bebaf4a-1112-436e-b165-4e06ec79e844,AUTHORIZATION,,false -14473,6bebaf4a-1112-436e-b165-4e06ec79e844,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14474,6bebaf4a-1112-436e-b165-4e06ec79e844,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14475,6bebaf4a-1112-436e-b165-4e06ec79e844,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14470,483f169d-4205-49ad-a434-1bad28d98dc5,LIST_ACCOUNTS,hbciListAccounts,false +14471,483f169d-4205-49ad-a434-1bad28d98dc5,LIST_TRANSACTIONS,hbciListTransactions,false +14472,483f169d-4205-49ad-a434-1bad28d98dc5,AUTHORIZATION,,false +14473,483f169d-4205-49ad-a434-1bad28d98dc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14474,483f169d-4205-49ad-a434-1bad28d98dc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14475,483f169d-4205-49ad-a434-1bad28d98dc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14476,fb081e7c-610b-41b9-974f-9308e1df812c,LIST_ACCOUNTS,xs2aListAccounts,true -14477,fb081e7c-610b-41b9-974f-9308e1df812c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14477,fb081e7c-610b-41b9-974f-9308e1df812c,LIST_TRANSACTIONS,xs2aListTransactions,true 14478,fb081e7c-610b-41b9-974f-9308e1df812c,AUTHORIZATION,,true 14479,fb081e7c-610b-41b9-974f-9308e1df812c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14480,fb081e7c-610b-41b9-974f-9308e1df812c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14481,fb081e7c-610b-41b9-974f-9308e1df812c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14482,a9d287e7-b90f-46c2-84ad-a03084bd27bf,LIST_ACCOUNTS,hbciListAccounts,false -14483,a9d287e7-b90f-46c2-84ad-a03084bd27bf,LIST_TRANSACTIONS,hbciListTransactions,false -14484,a9d287e7-b90f-46c2-84ad-a03084bd27bf,AUTHORIZATION,,false -14485,a9d287e7-b90f-46c2-84ad-a03084bd27bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14486,a9d287e7-b90f-46c2-84ad-a03084bd27bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14487,a9d287e7-b90f-46c2-84ad-a03084bd27bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14482,3e4d3df0-701f-43f8-a834-bb9c7762bd76,LIST_ACCOUNTS,hbciListAccounts,false +14483,3e4d3df0-701f-43f8-a834-bb9c7762bd76,LIST_TRANSACTIONS,hbciListTransactions,false +14484,3e4d3df0-701f-43f8-a834-bb9c7762bd76,AUTHORIZATION,,false +14485,3e4d3df0-701f-43f8-a834-bb9c7762bd76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14486,3e4d3df0-701f-43f8-a834-bb9c7762bd76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14487,3e4d3df0-701f-43f8-a834-bb9c7762bd76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14488,83328023-b42d-454a-a976-1c4ae7c46b8a,LIST_ACCOUNTS,xs2aListAccounts,true -14489,83328023-b42d-454a-a976-1c4ae7c46b8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14489,83328023-b42d-454a-a976-1c4ae7c46b8a,LIST_TRANSACTIONS,xs2aListTransactions,true 14490,83328023-b42d-454a-a976-1c4ae7c46b8a,AUTHORIZATION,,true 14491,83328023-b42d-454a-a976-1c4ae7c46b8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14492,83328023-b42d-454a-a976-1c4ae7c46b8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14493,83328023-b42d-454a-a976-1c4ae7c46b8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14494,e95c6bc1-d1d6-431b-8216-b7824aa7ea2c,LIST_ACCOUNTS,hbciListAccounts,false -14495,e95c6bc1-d1d6-431b-8216-b7824aa7ea2c,LIST_TRANSACTIONS,hbciListTransactions,false -14496,e95c6bc1-d1d6-431b-8216-b7824aa7ea2c,AUTHORIZATION,,false -14497,e95c6bc1-d1d6-431b-8216-b7824aa7ea2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14498,e95c6bc1-d1d6-431b-8216-b7824aa7ea2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14499,e95c6bc1-d1d6-431b-8216-b7824aa7ea2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14494,6a044271-488c-4249-adbd-c580a3a083e7,LIST_ACCOUNTS,hbciListAccounts,false +14495,6a044271-488c-4249-adbd-c580a3a083e7,LIST_TRANSACTIONS,hbciListTransactions,false +14496,6a044271-488c-4249-adbd-c580a3a083e7,AUTHORIZATION,,false +14497,6a044271-488c-4249-adbd-c580a3a083e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14498,6a044271-488c-4249-adbd-c580a3a083e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14499,6a044271-488c-4249-adbd-c580a3a083e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14500,8cc2bd06-e6ab-4ebd-8ede-dce624310d8c,LIST_ACCOUNTS,xs2aListAccounts,true -14501,8cc2bd06-e6ab-4ebd-8ede-dce624310d8c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14501,8cc2bd06-e6ab-4ebd-8ede-dce624310d8c,LIST_TRANSACTIONS,xs2aListTransactions,true 14502,8cc2bd06-e6ab-4ebd-8ede-dce624310d8c,AUTHORIZATION,,true 14503,8cc2bd06-e6ab-4ebd-8ede-dce624310d8c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14504,8cc2bd06-e6ab-4ebd-8ede-dce624310d8c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14505,8cc2bd06-e6ab-4ebd-8ede-dce624310d8c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14506,60c5fd80-d07a-45a0-b8aa-a19095f9c896,LIST_ACCOUNTS,hbciListAccounts,false -14507,60c5fd80-d07a-45a0-b8aa-a19095f9c896,LIST_TRANSACTIONS,hbciListTransactions,false -14508,60c5fd80-d07a-45a0-b8aa-a19095f9c896,AUTHORIZATION,,false -14509,60c5fd80-d07a-45a0-b8aa-a19095f9c896,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14510,60c5fd80-d07a-45a0-b8aa-a19095f9c896,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14511,60c5fd80-d07a-45a0-b8aa-a19095f9c896,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14506,7ce4a4eb-7570-4f3a-afe7-a63d3e3b9d9b,LIST_ACCOUNTS,hbciListAccounts,false +14507,7ce4a4eb-7570-4f3a-afe7-a63d3e3b9d9b,LIST_TRANSACTIONS,hbciListTransactions,false +14508,7ce4a4eb-7570-4f3a-afe7-a63d3e3b9d9b,AUTHORIZATION,,false +14509,7ce4a4eb-7570-4f3a-afe7-a63d3e3b9d9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14510,7ce4a4eb-7570-4f3a-afe7-a63d3e3b9d9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14511,7ce4a4eb-7570-4f3a-afe7-a63d3e3b9d9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14512,7508e47c-0e4f-4efd-986a-ee2299d3dc64,LIST_ACCOUNTS,xs2aListAccounts,true -14513,7508e47c-0e4f-4efd-986a-ee2299d3dc64,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14513,7508e47c-0e4f-4efd-986a-ee2299d3dc64,LIST_TRANSACTIONS,xs2aListTransactions,true 14514,7508e47c-0e4f-4efd-986a-ee2299d3dc64,AUTHORIZATION,,true 14515,7508e47c-0e4f-4efd-986a-ee2299d3dc64,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14516,7508e47c-0e4f-4efd-986a-ee2299d3dc64,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14517,7508e47c-0e4f-4efd-986a-ee2299d3dc64,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14518,640f31ae-80b5-4435-bd9f-b3d8ba33923d,LIST_ACCOUNTS,hbciListAccounts,false -14519,640f31ae-80b5-4435-bd9f-b3d8ba33923d,LIST_TRANSACTIONS,hbciListTransactions,false -14520,640f31ae-80b5-4435-bd9f-b3d8ba33923d,AUTHORIZATION,,false -14521,640f31ae-80b5-4435-bd9f-b3d8ba33923d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14522,640f31ae-80b5-4435-bd9f-b3d8ba33923d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14523,640f31ae-80b5-4435-bd9f-b3d8ba33923d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14518,2bfde187-c112-4864-9487-69021d696f57,LIST_ACCOUNTS,hbciListAccounts,false +14519,2bfde187-c112-4864-9487-69021d696f57,LIST_TRANSACTIONS,hbciListTransactions,false +14520,2bfde187-c112-4864-9487-69021d696f57,AUTHORIZATION,,false +14521,2bfde187-c112-4864-9487-69021d696f57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14522,2bfde187-c112-4864-9487-69021d696f57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14523,2bfde187-c112-4864-9487-69021d696f57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14524,52811c1d-c036-464a-bd18-5f8a84050bc3,LIST_ACCOUNTS,xs2aListAccounts,true -14525,52811c1d-c036-464a-bd18-5f8a84050bc3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14525,52811c1d-c036-464a-bd18-5f8a84050bc3,LIST_TRANSACTIONS,xs2aListTransactions,true 14526,52811c1d-c036-464a-bd18-5f8a84050bc3,AUTHORIZATION,,true 14527,52811c1d-c036-464a-bd18-5f8a84050bc3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14528,52811c1d-c036-464a-bd18-5f8a84050bc3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14529,52811c1d-c036-464a-bd18-5f8a84050bc3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14530,dfcd3805-db8a-4343-a388-63ddf4a4aca0,LIST_ACCOUNTS,hbciListAccounts,false -14531,dfcd3805-db8a-4343-a388-63ddf4a4aca0,LIST_TRANSACTIONS,hbciListTransactions,false -14532,dfcd3805-db8a-4343-a388-63ddf4a4aca0,AUTHORIZATION,,false -14533,dfcd3805-db8a-4343-a388-63ddf4a4aca0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14534,dfcd3805-db8a-4343-a388-63ddf4a4aca0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14535,dfcd3805-db8a-4343-a388-63ddf4a4aca0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14530,84f833fd-9bd2-4932-9865-8cb5d1115d56,LIST_ACCOUNTS,hbciListAccounts,false +14531,84f833fd-9bd2-4932-9865-8cb5d1115d56,LIST_TRANSACTIONS,hbciListTransactions,false +14532,84f833fd-9bd2-4932-9865-8cb5d1115d56,AUTHORIZATION,,false +14533,84f833fd-9bd2-4932-9865-8cb5d1115d56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14534,84f833fd-9bd2-4932-9865-8cb5d1115d56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14535,84f833fd-9bd2-4932-9865-8cb5d1115d56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14536,1e322f36-1725-40f0-a38f-9db0929dbe53,LIST_ACCOUNTS,xs2aListAccounts,true -14537,1e322f36-1725-40f0-a38f-9db0929dbe53,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14537,1e322f36-1725-40f0-a38f-9db0929dbe53,LIST_TRANSACTIONS,xs2aListTransactions,true 14538,1e322f36-1725-40f0-a38f-9db0929dbe53,AUTHORIZATION,,true 14539,1e322f36-1725-40f0-a38f-9db0929dbe53,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14540,1e322f36-1725-40f0-a38f-9db0929dbe53,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14541,1e322f36-1725-40f0-a38f-9db0929dbe53,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14542,8101f660-f9cd-451b-a3f3-bef74f5b3031,LIST_ACCOUNTS,hbciListAccounts,false -14543,8101f660-f9cd-451b-a3f3-bef74f5b3031,LIST_TRANSACTIONS,hbciListTransactions,false -14544,8101f660-f9cd-451b-a3f3-bef74f5b3031,AUTHORIZATION,,false -14545,8101f660-f9cd-451b-a3f3-bef74f5b3031,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14546,8101f660-f9cd-451b-a3f3-bef74f5b3031,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14547,8101f660-f9cd-451b-a3f3-bef74f5b3031,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14542,93d86863-692f-43b1-af4f-80babdcb61c2,LIST_ACCOUNTS,hbciListAccounts,false +14543,93d86863-692f-43b1-af4f-80babdcb61c2,LIST_TRANSACTIONS,hbciListTransactions,false +14544,93d86863-692f-43b1-af4f-80babdcb61c2,AUTHORIZATION,,false +14545,93d86863-692f-43b1-af4f-80babdcb61c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14546,93d86863-692f-43b1-af4f-80babdcb61c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14547,93d86863-692f-43b1-af4f-80babdcb61c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14548,c37ddd5e-e8d5-4735-8648-e28aafe7f36d,LIST_ACCOUNTS,xs2aListAccounts,true -14549,c37ddd5e-e8d5-4735-8648-e28aafe7f36d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14549,c37ddd5e-e8d5-4735-8648-e28aafe7f36d,LIST_TRANSACTIONS,xs2aListTransactions,true 14550,c37ddd5e-e8d5-4735-8648-e28aafe7f36d,AUTHORIZATION,,true 14551,c37ddd5e-e8d5-4735-8648-e28aafe7f36d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14552,c37ddd5e-e8d5-4735-8648-e28aafe7f36d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14553,c37ddd5e-e8d5-4735-8648-e28aafe7f36d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14554,09ce52e5-2175-4bd8-bfe4-f0cc6f16b79b,LIST_ACCOUNTS,hbciListAccounts,false -14555,09ce52e5-2175-4bd8-bfe4-f0cc6f16b79b,LIST_TRANSACTIONS,hbciListTransactions,false -14556,09ce52e5-2175-4bd8-bfe4-f0cc6f16b79b,AUTHORIZATION,,false -14557,09ce52e5-2175-4bd8-bfe4-f0cc6f16b79b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14558,09ce52e5-2175-4bd8-bfe4-f0cc6f16b79b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14559,09ce52e5-2175-4bd8-bfe4-f0cc6f16b79b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14554,d7b99374-3b3e-4eb7-bc17-50cbdefcf1fd,LIST_ACCOUNTS,hbciListAccounts,false +14555,d7b99374-3b3e-4eb7-bc17-50cbdefcf1fd,LIST_TRANSACTIONS,hbciListTransactions,false +14556,d7b99374-3b3e-4eb7-bc17-50cbdefcf1fd,AUTHORIZATION,,false +14557,d7b99374-3b3e-4eb7-bc17-50cbdefcf1fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14558,d7b99374-3b3e-4eb7-bc17-50cbdefcf1fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14559,d7b99374-3b3e-4eb7-bc17-50cbdefcf1fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14560,15853da4-67e5-4e8b-be92-e893ccc7ec47,LIST_ACCOUNTS,xs2aListAccounts,true -14561,15853da4-67e5-4e8b-be92-e893ccc7ec47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14561,15853da4-67e5-4e8b-be92-e893ccc7ec47,LIST_TRANSACTIONS,xs2aListTransactions,true 14562,15853da4-67e5-4e8b-be92-e893ccc7ec47,AUTHORIZATION,,true 14563,15853da4-67e5-4e8b-be92-e893ccc7ec47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14564,15853da4-67e5-4e8b-be92-e893ccc7ec47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14565,15853da4-67e5-4e8b-be92-e893ccc7ec47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14566,3e25f654-ee91-486f-9ab9-9f32a3aca7cb,LIST_ACCOUNTS,hbciListAccounts,false -14567,3e25f654-ee91-486f-9ab9-9f32a3aca7cb,LIST_TRANSACTIONS,hbciListTransactions,false -14568,3e25f654-ee91-486f-9ab9-9f32a3aca7cb,AUTHORIZATION,,false -14569,3e25f654-ee91-486f-9ab9-9f32a3aca7cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14570,3e25f654-ee91-486f-9ab9-9f32a3aca7cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14571,3e25f654-ee91-486f-9ab9-9f32a3aca7cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14566,93d27d87-bc39-4698-a756-ade41691630b,LIST_ACCOUNTS,hbciListAccounts,false +14567,93d27d87-bc39-4698-a756-ade41691630b,LIST_TRANSACTIONS,hbciListTransactions,false +14568,93d27d87-bc39-4698-a756-ade41691630b,AUTHORIZATION,,false +14569,93d27d87-bc39-4698-a756-ade41691630b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14570,93d27d87-bc39-4698-a756-ade41691630b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14571,93d27d87-bc39-4698-a756-ade41691630b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14572,8e3c6694-b877-4973-a319-a90bf9fd882c,LIST_ACCOUNTS,xs2aListAccounts,true -14573,8e3c6694-b877-4973-a319-a90bf9fd882c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14573,8e3c6694-b877-4973-a319-a90bf9fd882c,LIST_TRANSACTIONS,xs2aListTransactions,true 14574,8e3c6694-b877-4973-a319-a90bf9fd882c,AUTHORIZATION,,true 14575,8e3c6694-b877-4973-a319-a90bf9fd882c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14576,8e3c6694-b877-4973-a319-a90bf9fd882c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14577,8e3c6694-b877-4973-a319-a90bf9fd882c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14578,19d0eed4-9d5b-4f1f-a117-4f4722c4fd9b,LIST_ACCOUNTS,hbciListAccounts,false -14579,19d0eed4-9d5b-4f1f-a117-4f4722c4fd9b,LIST_TRANSACTIONS,hbciListTransactions,false -14580,19d0eed4-9d5b-4f1f-a117-4f4722c4fd9b,AUTHORIZATION,,false -14581,19d0eed4-9d5b-4f1f-a117-4f4722c4fd9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14582,19d0eed4-9d5b-4f1f-a117-4f4722c4fd9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14583,19d0eed4-9d5b-4f1f-a117-4f4722c4fd9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14578,8eaf4899-d17b-48c2-9b9f-f65956b9ccae,LIST_ACCOUNTS,hbciListAccounts,false +14579,8eaf4899-d17b-48c2-9b9f-f65956b9ccae,LIST_TRANSACTIONS,hbciListTransactions,false +14580,8eaf4899-d17b-48c2-9b9f-f65956b9ccae,AUTHORIZATION,,false +14581,8eaf4899-d17b-48c2-9b9f-f65956b9ccae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14582,8eaf4899-d17b-48c2-9b9f-f65956b9ccae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14583,8eaf4899-d17b-48c2-9b9f-f65956b9ccae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14584,f492e226-df81-4119-8fcc-a0d01954ff1f,LIST_ACCOUNTS,xs2aListAccounts,true -14585,f492e226-df81-4119-8fcc-a0d01954ff1f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14585,f492e226-df81-4119-8fcc-a0d01954ff1f,LIST_TRANSACTIONS,xs2aListTransactions,true 14586,f492e226-df81-4119-8fcc-a0d01954ff1f,AUTHORIZATION,,true 14587,f492e226-df81-4119-8fcc-a0d01954ff1f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14588,f492e226-df81-4119-8fcc-a0d01954ff1f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14589,f492e226-df81-4119-8fcc-a0d01954ff1f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14590,25122b5e-1ba8-4a54-bfaa-d69e9fdfe783,LIST_ACCOUNTS,hbciListAccounts,false -14591,25122b5e-1ba8-4a54-bfaa-d69e9fdfe783,LIST_TRANSACTIONS,hbciListTransactions,false -14592,25122b5e-1ba8-4a54-bfaa-d69e9fdfe783,AUTHORIZATION,,false -14593,25122b5e-1ba8-4a54-bfaa-d69e9fdfe783,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14594,25122b5e-1ba8-4a54-bfaa-d69e9fdfe783,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14595,25122b5e-1ba8-4a54-bfaa-d69e9fdfe783,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14590,5010e7e1-7a9c-47ad-91c3-79f55bebcc1c,LIST_ACCOUNTS,hbciListAccounts,false +14591,5010e7e1-7a9c-47ad-91c3-79f55bebcc1c,LIST_TRANSACTIONS,hbciListTransactions,false +14592,5010e7e1-7a9c-47ad-91c3-79f55bebcc1c,AUTHORIZATION,,false +14593,5010e7e1-7a9c-47ad-91c3-79f55bebcc1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14594,5010e7e1-7a9c-47ad-91c3-79f55bebcc1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14595,5010e7e1-7a9c-47ad-91c3-79f55bebcc1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14596,9063866a-410e-4bf7-8566-14e25829b5f1,LIST_ACCOUNTS,xs2aListAccounts,true -14597,9063866a-410e-4bf7-8566-14e25829b5f1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14597,9063866a-410e-4bf7-8566-14e25829b5f1,LIST_TRANSACTIONS,xs2aListTransactions,true 14598,9063866a-410e-4bf7-8566-14e25829b5f1,AUTHORIZATION,,true 14599,9063866a-410e-4bf7-8566-14e25829b5f1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14600,9063866a-410e-4bf7-8566-14e25829b5f1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14601,9063866a-410e-4bf7-8566-14e25829b5f1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14602,bacf5429-252b-4719-85bf-e8a6f79fd3b7,LIST_ACCOUNTS,hbciListAccounts,false -14603,bacf5429-252b-4719-85bf-e8a6f79fd3b7,LIST_TRANSACTIONS,hbciListTransactions,false -14604,bacf5429-252b-4719-85bf-e8a6f79fd3b7,AUTHORIZATION,,false -14605,bacf5429-252b-4719-85bf-e8a6f79fd3b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14606,bacf5429-252b-4719-85bf-e8a6f79fd3b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14607,bacf5429-252b-4719-85bf-e8a6f79fd3b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14602,cb46cfcd-6880-47df-aa74-8e6f82ac351d,LIST_ACCOUNTS,hbciListAccounts,false +14603,cb46cfcd-6880-47df-aa74-8e6f82ac351d,LIST_TRANSACTIONS,hbciListTransactions,false +14604,cb46cfcd-6880-47df-aa74-8e6f82ac351d,AUTHORIZATION,,false +14605,cb46cfcd-6880-47df-aa74-8e6f82ac351d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14606,cb46cfcd-6880-47df-aa74-8e6f82ac351d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14607,cb46cfcd-6880-47df-aa74-8e6f82ac351d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14608,add8d175-fcca-47d1-a023-3a653c4b69e7,LIST_ACCOUNTS,xs2aListAccounts,true -14609,add8d175-fcca-47d1-a023-3a653c4b69e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14609,add8d175-fcca-47d1-a023-3a653c4b69e7,LIST_TRANSACTIONS,xs2aListTransactions,true 14610,add8d175-fcca-47d1-a023-3a653c4b69e7,AUTHORIZATION,,true 14611,add8d175-fcca-47d1-a023-3a653c4b69e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14612,add8d175-fcca-47d1-a023-3a653c4b69e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14613,add8d175-fcca-47d1-a023-3a653c4b69e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14614,17e0055e-e3c3-4178-85dc-b016b10a05a1,LIST_ACCOUNTS,hbciListAccounts,false -14615,17e0055e-e3c3-4178-85dc-b016b10a05a1,LIST_TRANSACTIONS,hbciListTransactions,false -14616,17e0055e-e3c3-4178-85dc-b016b10a05a1,AUTHORIZATION,,false -14617,17e0055e-e3c3-4178-85dc-b016b10a05a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14618,17e0055e-e3c3-4178-85dc-b016b10a05a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14619,17e0055e-e3c3-4178-85dc-b016b10a05a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14614,bd916f66-af74-47c3-b041-80f1f7a0ef70,LIST_ACCOUNTS,hbciListAccounts,false +14615,bd916f66-af74-47c3-b041-80f1f7a0ef70,LIST_TRANSACTIONS,hbciListTransactions,false +14616,bd916f66-af74-47c3-b041-80f1f7a0ef70,AUTHORIZATION,,false +14617,bd916f66-af74-47c3-b041-80f1f7a0ef70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14618,bd916f66-af74-47c3-b041-80f1f7a0ef70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14619,bd916f66-af74-47c3-b041-80f1f7a0ef70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14620,88a384f7-d2f4-4616-8966-dc93e9b0caa2,LIST_ACCOUNTS,xs2aListAccounts,true -14621,88a384f7-d2f4-4616-8966-dc93e9b0caa2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14621,88a384f7-d2f4-4616-8966-dc93e9b0caa2,LIST_TRANSACTIONS,xs2aListTransactions,true 14622,88a384f7-d2f4-4616-8966-dc93e9b0caa2,AUTHORIZATION,,true 14623,88a384f7-d2f4-4616-8966-dc93e9b0caa2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14624,88a384f7-d2f4-4616-8966-dc93e9b0caa2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14625,88a384f7-d2f4-4616-8966-dc93e9b0caa2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14626,9ce41f96-1a90-4936-a462-6705560ac7b8,LIST_ACCOUNTS,hbciListAccounts,false -14627,9ce41f96-1a90-4936-a462-6705560ac7b8,LIST_TRANSACTIONS,hbciListTransactions,false -14628,9ce41f96-1a90-4936-a462-6705560ac7b8,AUTHORIZATION,,false -14629,9ce41f96-1a90-4936-a462-6705560ac7b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14630,9ce41f96-1a90-4936-a462-6705560ac7b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14631,9ce41f96-1a90-4936-a462-6705560ac7b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14626,6c6cec8e-90fd-4092-955f-a040f13cdbcd,LIST_ACCOUNTS,hbciListAccounts,false +14627,6c6cec8e-90fd-4092-955f-a040f13cdbcd,LIST_TRANSACTIONS,hbciListTransactions,false +14628,6c6cec8e-90fd-4092-955f-a040f13cdbcd,AUTHORIZATION,,false +14629,6c6cec8e-90fd-4092-955f-a040f13cdbcd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14630,6c6cec8e-90fd-4092-955f-a040f13cdbcd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14631,6c6cec8e-90fd-4092-955f-a040f13cdbcd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14632,5257ab50-fb51-46de-a109-6430622c48d4,LIST_ACCOUNTS,xs2aListAccounts,true -14633,5257ab50-fb51-46de-a109-6430622c48d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14633,5257ab50-fb51-46de-a109-6430622c48d4,LIST_TRANSACTIONS,xs2aListTransactions,true 14634,5257ab50-fb51-46de-a109-6430622c48d4,AUTHORIZATION,,true 14635,5257ab50-fb51-46de-a109-6430622c48d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14636,5257ab50-fb51-46de-a109-6430622c48d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14637,5257ab50-fb51-46de-a109-6430622c48d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14638,ed69018f-c2cd-4eb1-8960-8b1adfbba5ea,LIST_ACCOUNTS,hbciListAccounts,false -14639,ed69018f-c2cd-4eb1-8960-8b1adfbba5ea,LIST_TRANSACTIONS,hbciListTransactions,false -14640,ed69018f-c2cd-4eb1-8960-8b1adfbba5ea,AUTHORIZATION,,false -14641,ed69018f-c2cd-4eb1-8960-8b1adfbba5ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14642,ed69018f-c2cd-4eb1-8960-8b1adfbba5ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14643,ed69018f-c2cd-4eb1-8960-8b1adfbba5ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14638,b70b9775-71af-40b3-8137-eba556f5db17,LIST_ACCOUNTS,hbciListAccounts,false +14639,b70b9775-71af-40b3-8137-eba556f5db17,LIST_TRANSACTIONS,hbciListTransactions,false +14640,b70b9775-71af-40b3-8137-eba556f5db17,AUTHORIZATION,,false +14641,b70b9775-71af-40b3-8137-eba556f5db17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14642,b70b9775-71af-40b3-8137-eba556f5db17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14643,b70b9775-71af-40b3-8137-eba556f5db17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14644,952554b0-8c06-489c-bb8c-c1fa3cc9d79f,LIST_ACCOUNTS,xs2aListAccounts,true -14645,952554b0-8c06-489c-bb8c-c1fa3cc9d79f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14645,952554b0-8c06-489c-bb8c-c1fa3cc9d79f,LIST_TRANSACTIONS,xs2aListTransactions,true 14646,952554b0-8c06-489c-bb8c-c1fa3cc9d79f,AUTHORIZATION,,true 14647,952554b0-8c06-489c-bb8c-c1fa3cc9d79f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14648,952554b0-8c06-489c-bb8c-c1fa3cc9d79f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14649,952554b0-8c06-489c-bb8c-c1fa3cc9d79f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14650,a33d5eb8-208a-4abf-b5d6-662a26764aca,LIST_ACCOUNTS,hbciListAccounts,false -14651,a33d5eb8-208a-4abf-b5d6-662a26764aca,LIST_TRANSACTIONS,hbciListTransactions,false -14652,a33d5eb8-208a-4abf-b5d6-662a26764aca,AUTHORIZATION,,false -14653,a33d5eb8-208a-4abf-b5d6-662a26764aca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14654,a33d5eb8-208a-4abf-b5d6-662a26764aca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14655,a33d5eb8-208a-4abf-b5d6-662a26764aca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14650,96342a80-d9ae-4fdb-8530-c3c9b3921130,LIST_ACCOUNTS,hbciListAccounts,false +14651,96342a80-d9ae-4fdb-8530-c3c9b3921130,LIST_TRANSACTIONS,hbciListTransactions,false +14652,96342a80-d9ae-4fdb-8530-c3c9b3921130,AUTHORIZATION,,false +14653,96342a80-d9ae-4fdb-8530-c3c9b3921130,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14654,96342a80-d9ae-4fdb-8530-c3c9b3921130,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14655,96342a80-d9ae-4fdb-8530-c3c9b3921130,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14656,4e4cad37-282a-43a3-a487-0d11e75e594a,LIST_ACCOUNTS,xs2aListAccounts,true -14657,4e4cad37-282a-43a3-a487-0d11e75e594a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14657,4e4cad37-282a-43a3-a487-0d11e75e594a,LIST_TRANSACTIONS,xs2aListTransactions,true 14658,4e4cad37-282a-43a3-a487-0d11e75e594a,AUTHORIZATION,,true 14659,4e4cad37-282a-43a3-a487-0d11e75e594a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14660,4e4cad37-282a-43a3-a487-0d11e75e594a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14661,4e4cad37-282a-43a3-a487-0d11e75e594a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14662,d4bc7da1-2326-4b89-85ca-91b54eec7f42,LIST_ACCOUNTS,hbciListAccounts,false -14663,d4bc7da1-2326-4b89-85ca-91b54eec7f42,LIST_TRANSACTIONS,hbciListTransactions,false -14664,d4bc7da1-2326-4b89-85ca-91b54eec7f42,AUTHORIZATION,,false -14665,d4bc7da1-2326-4b89-85ca-91b54eec7f42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14666,d4bc7da1-2326-4b89-85ca-91b54eec7f42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14667,d4bc7da1-2326-4b89-85ca-91b54eec7f42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14662,5da63a1e-0187-4155-b6ef-1a1b1541c356,LIST_ACCOUNTS,hbciListAccounts,false +14663,5da63a1e-0187-4155-b6ef-1a1b1541c356,LIST_TRANSACTIONS,hbciListTransactions,false +14664,5da63a1e-0187-4155-b6ef-1a1b1541c356,AUTHORIZATION,,false +14665,5da63a1e-0187-4155-b6ef-1a1b1541c356,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14666,5da63a1e-0187-4155-b6ef-1a1b1541c356,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14667,5da63a1e-0187-4155-b6ef-1a1b1541c356,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14668,0774d83f-a499-49d8-b565-4747c21e2ffe,LIST_ACCOUNTS,xs2aListAccounts,true -14669,0774d83f-a499-49d8-b565-4747c21e2ffe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14669,0774d83f-a499-49d8-b565-4747c21e2ffe,LIST_TRANSACTIONS,xs2aListTransactions,true 14670,0774d83f-a499-49d8-b565-4747c21e2ffe,AUTHORIZATION,,true 14671,0774d83f-a499-49d8-b565-4747c21e2ffe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14672,0774d83f-a499-49d8-b565-4747c21e2ffe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14673,0774d83f-a499-49d8-b565-4747c21e2ffe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14674,1c28b53f-0779-4b6b-9960-be8d40b86497,LIST_ACCOUNTS,hbciListAccounts,false -14675,1c28b53f-0779-4b6b-9960-be8d40b86497,LIST_TRANSACTIONS,hbciListTransactions,false -14676,1c28b53f-0779-4b6b-9960-be8d40b86497,AUTHORIZATION,,false -14677,1c28b53f-0779-4b6b-9960-be8d40b86497,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14678,1c28b53f-0779-4b6b-9960-be8d40b86497,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14679,1c28b53f-0779-4b6b-9960-be8d40b86497,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14674,817bfab9-835a-48ec-a259-2605a6c59135,LIST_ACCOUNTS,hbciListAccounts,false +14675,817bfab9-835a-48ec-a259-2605a6c59135,LIST_TRANSACTIONS,hbciListTransactions,false +14676,817bfab9-835a-48ec-a259-2605a6c59135,AUTHORIZATION,,false +14677,817bfab9-835a-48ec-a259-2605a6c59135,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14678,817bfab9-835a-48ec-a259-2605a6c59135,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14679,817bfab9-835a-48ec-a259-2605a6c59135,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14680,f7a7a9cf-2898-4ce9-a756-d69068424fbb,LIST_ACCOUNTS,xs2aListAccounts,true -14681,f7a7a9cf-2898-4ce9-a756-d69068424fbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14681,f7a7a9cf-2898-4ce9-a756-d69068424fbb,LIST_TRANSACTIONS,xs2aListTransactions,true 14682,f7a7a9cf-2898-4ce9-a756-d69068424fbb,AUTHORIZATION,,true 14683,f7a7a9cf-2898-4ce9-a756-d69068424fbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14684,f7a7a9cf-2898-4ce9-a756-d69068424fbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14685,f7a7a9cf-2898-4ce9-a756-d69068424fbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14686,edc56c90-1db3-46aa-8a88-162a036eda5a,LIST_ACCOUNTS,hbciListAccounts,false -14687,edc56c90-1db3-46aa-8a88-162a036eda5a,LIST_TRANSACTIONS,hbciListTransactions,false -14688,edc56c90-1db3-46aa-8a88-162a036eda5a,AUTHORIZATION,,false -14689,edc56c90-1db3-46aa-8a88-162a036eda5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14690,edc56c90-1db3-46aa-8a88-162a036eda5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14691,edc56c90-1db3-46aa-8a88-162a036eda5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14686,61ed2908-f8a3-4ef1-8046-bd3ffede2cfc,LIST_ACCOUNTS,hbciListAccounts,false +14687,61ed2908-f8a3-4ef1-8046-bd3ffede2cfc,LIST_TRANSACTIONS,hbciListTransactions,false +14688,61ed2908-f8a3-4ef1-8046-bd3ffede2cfc,AUTHORIZATION,,false +14689,61ed2908-f8a3-4ef1-8046-bd3ffede2cfc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14690,61ed2908-f8a3-4ef1-8046-bd3ffede2cfc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14691,61ed2908-f8a3-4ef1-8046-bd3ffede2cfc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14692,3882bf59-16bf-447f-b10f-59d66d9b87d6,LIST_ACCOUNTS,xs2aListAccounts,true -14693,3882bf59-16bf-447f-b10f-59d66d9b87d6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14693,3882bf59-16bf-447f-b10f-59d66d9b87d6,LIST_TRANSACTIONS,xs2aListTransactions,true 14694,3882bf59-16bf-447f-b10f-59d66d9b87d6,AUTHORIZATION,,true 14695,3882bf59-16bf-447f-b10f-59d66d9b87d6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14696,3882bf59-16bf-447f-b10f-59d66d9b87d6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14697,3882bf59-16bf-447f-b10f-59d66d9b87d6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14698,f4f4f935-7d90-4751-98a7-0ffc64328ec7,LIST_ACCOUNTS,hbciListAccounts,false -14699,f4f4f935-7d90-4751-98a7-0ffc64328ec7,LIST_TRANSACTIONS,hbciListTransactions,false -14700,f4f4f935-7d90-4751-98a7-0ffc64328ec7,AUTHORIZATION,,false -14701,f4f4f935-7d90-4751-98a7-0ffc64328ec7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14702,f4f4f935-7d90-4751-98a7-0ffc64328ec7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14703,f4f4f935-7d90-4751-98a7-0ffc64328ec7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14698,90125596-d60c-49ff-bcb6-f52a16a8ceff,LIST_ACCOUNTS,hbciListAccounts,false +14699,90125596-d60c-49ff-bcb6-f52a16a8ceff,LIST_TRANSACTIONS,hbciListTransactions,false +14700,90125596-d60c-49ff-bcb6-f52a16a8ceff,AUTHORIZATION,,false +14701,90125596-d60c-49ff-bcb6-f52a16a8ceff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14702,90125596-d60c-49ff-bcb6-f52a16a8ceff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14703,90125596-d60c-49ff-bcb6-f52a16a8ceff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14704,ab11f81f-2453-43be-88ae-25fc74c0b5c6,LIST_ACCOUNTS,xs2aListAccounts,true -14705,ab11f81f-2453-43be-88ae-25fc74c0b5c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14705,ab11f81f-2453-43be-88ae-25fc74c0b5c6,LIST_TRANSACTIONS,xs2aListTransactions,true 14706,ab11f81f-2453-43be-88ae-25fc74c0b5c6,AUTHORIZATION,,true 14707,ab11f81f-2453-43be-88ae-25fc74c0b5c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14708,ab11f81f-2453-43be-88ae-25fc74c0b5c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14709,ab11f81f-2453-43be-88ae-25fc74c0b5c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14710,f4654eca-53e5-488b-ad37-63a6cc49384f,LIST_ACCOUNTS,hbciListAccounts,false -14711,f4654eca-53e5-488b-ad37-63a6cc49384f,LIST_TRANSACTIONS,hbciListTransactions,false -14712,f4654eca-53e5-488b-ad37-63a6cc49384f,AUTHORIZATION,,false -14713,f4654eca-53e5-488b-ad37-63a6cc49384f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14714,f4654eca-53e5-488b-ad37-63a6cc49384f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14715,f4654eca-53e5-488b-ad37-63a6cc49384f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14710,b75bfa0b-30ce-44c0-8c09-8b3d8680e4bd,LIST_ACCOUNTS,hbciListAccounts,false +14711,b75bfa0b-30ce-44c0-8c09-8b3d8680e4bd,LIST_TRANSACTIONS,hbciListTransactions,false +14712,b75bfa0b-30ce-44c0-8c09-8b3d8680e4bd,AUTHORIZATION,,false +14713,b75bfa0b-30ce-44c0-8c09-8b3d8680e4bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14714,b75bfa0b-30ce-44c0-8c09-8b3d8680e4bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14715,b75bfa0b-30ce-44c0-8c09-8b3d8680e4bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14716,1d8a2a1d-9ab8-4799-9f44-a48e9414a222,LIST_ACCOUNTS,xs2aListAccounts,true -14717,1d8a2a1d-9ab8-4799-9f44-a48e9414a222,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14717,1d8a2a1d-9ab8-4799-9f44-a48e9414a222,LIST_TRANSACTIONS,xs2aListTransactions,true 14718,1d8a2a1d-9ab8-4799-9f44-a48e9414a222,AUTHORIZATION,,true 14719,1d8a2a1d-9ab8-4799-9f44-a48e9414a222,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14720,1d8a2a1d-9ab8-4799-9f44-a48e9414a222,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14721,1d8a2a1d-9ab8-4799-9f44-a48e9414a222,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14722,e8f1e7d6-876d-48db-ac27-2a42efb1522d,LIST_ACCOUNTS,hbciListAccounts,false -14723,e8f1e7d6-876d-48db-ac27-2a42efb1522d,LIST_TRANSACTIONS,hbciListTransactions,false -14724,e8f1e7d6-876d-48db-ac27-2a42efb1522d,AUTHORIZATION,,false -14725,e8f1e7d6-876d-48db-ac27-2a42efb1522d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14726,e8f1e7d6-876d-48db-ac27-2a42efb1522d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14727,e8f1e7d6-876d-48db-ac27-2a42efb1522d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14722,3a4d86a3-adbc-4d23-a2aa-d87636405ebd,LIST_ACCOUNTS,hbciListAccounts,false +14723,3a4d86a3-adbc-4d23-a2aa-d87636405ebd,LIST_TRANSACTIONS,hbciListTransactions,false +14724,3a4d86a3-adbc-4d23-a2aa-d87636405ebd,AUTHORIZATION,,false +14725,3a4d86a3-adbc-4d23-a2aa-d87636405ebd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14726,3a4d86a3-adbc-4d23-a2aa-d87636405ebd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14727,3a4d86a3-adbc-4d23-a2aa-d87636405ebd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14728,82e27d90-54cb-4df8-9c4b-8c75cfbd9901,LIST_ACCOUNTS,xs2aListAccounts,true -14729,82e27d90-54cb-4df8-9c4b-8c75cfbd9901,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14729,82e27d90-54cb-4df8-9c4b-8c75cfbd9901,LIST_TRANSACTIONS,xs2aListTransactions,true 14730,82e27d90-54cb-4df8-9c4b-8c75cfbd9901,AUTHORIZATION,,true 14731,82e27d90-54cb-4df8-9c4b-8c75cfbd9901,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14732,82e27d90-54cb-4df8-9c4b-8c75cfbd9901,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14733,82e27d90-54cb-4df8-9c4b-8c75cfbd9901,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14734,c1da1edf-9fc0-48f7-b8dd-8251c6026189,LIST_ACCOUNTS,hbciListAccounts,false -14735,c1da1edf-9fc0-48f7-b8dd-8251c6026189,LIST_TRANSACTIONS,hbciListTransactions,false -14736,c1da1edf-9fc0-48f7-b8dd-8251c6026189,AUTHORIZATION,,false -14737,c1da1edf-9fc0-48f7-b8dd-8251c6026189,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14738,c1da1edf-9fc0-48f7-b8dd-8251c6026189,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14739,c1da1edf-9fc0-48f7-b8dd-8251c6026189,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14734,53d5a9e3-6870-416f-831f-853aa17ba995,LIST_ACCOUNTS,hbciListAccounts,false +14735,53d5a9e3-6870-416f-831f-853aa17ba995,LIST_TRANSACTIONS,hbciListTransactions,false +14736,53d5a9e3-6870-416f-831f-853aa17ba995,AUTHORIZATION,,false +14737,53d5a9e3-6870-416f-831f-853aa17ba995,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14738,53d5a9e3-6870-416f-831f-853aa17ba995,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14739,53d5a9e3-6870-416f-831f-853aa17ba995,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14740,ff1748f0-0d7f-4c1f-973b-49b65a89c14b,LIST_ACCOUNTS,xs2aListAccounts,true -14741,ff1748f0-0d7f-4c1f-973b-49b65a89c14b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14741,ff1748f0-0d7f-4c1f-973b-49b65a89c14b,LIST_TRANSACTIONS,xs2aListTransactions,true 14742,ff1748f0-0d7f-4c1f-973b-49b65a89c14b,AUTHORIZATION,,true 14743,ff1748f0-0d7f-4c1f-973b-49b65a89c14b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14744,ff1748f0-0d7f-4c1f-973b-49b65a89c14b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14745,ff1748f0-0d7f-4c1f-973b-49b65a89c14b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14746,3187d952-1d43-4099-954a-0e578b6c050e,LIST_ACCOUNTS,hbciListAccounts,false -14747,3187d952-1d43-4099-954a-0e578b6c050e,LIST_TRANSACTIONS,hbciListTransactions,false -14748,3187d952-1d43-4099-954a-0e578b6c050e,AUTHORIZATION,,false -14749,3187d952-1d43-4099-954a-0e578b6c050e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14750,3187d952-1d43-4099-954a-0e578b6c050e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14751,3187d952-1d43-4099-954a-0e578b6c050e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14746,dfcd39ac-6cca-48b0-81ad-96def3ab58dd,LIST_ACCOUNTS,hbciListAccounts,false +14747,dfcd39ac-6cca-48b0-81ad-96def3ab58dd,LIST_TRANSACTIONS,hbciListTransactions,false +14748,dfcd39ac-6cca-48b0-81ad-96def3ab58dd,AUTHORIZATION,,false +14749,dfcd39ac-6cca-48b0-81ad-96def3ab58dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14750,dfcd39ac-6cca-48b0-81ad-96def3ab58dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14751,dfcd39ac-6cca-48b0-81ad-96def3ab58dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14752,e4bb83a0-b345-44de-ac00-b7a53dba3495,LIST_ACCOUNTS,xs2aListAccounts,true -14753,e4bb83a0-b345-44de-ac00-b7a53dba3495,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14753,e4bb83a0-b345-44de-ac00-b7a53dba3495,LIST_TRANSACTIONS,xs2aListTransactions,true 14754,e4bb83a0-b345-44de-ac00-b7a53dba3495,AUTHORIZATION,,true 14755,e4bb83a0-b345-44de-ac00-b7a53dba3495,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14756,e4bb83a0-b345-44de-ac00-b7a53dba3495,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14757,e4bb83a0-b345-44de-ac00-b7a53dba3495,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14758,ce7f2440-0b9e-4593-9944-03c6bf2a9d4b,LIST_ACCOUNTS,hbciListAccounts,false -14759,ce7f2440-0b9e-4593-9944-03c6bf2a9d4b,LIST_TRANSACTIONS,hbciListTransactions,false -14760,ce7f2440-0b9e-4593-9944-03c6bf2a9d4b,AUTHORIZATION,,false -14761,ce7f2440-0b9e-4593-9944-03c6bf2a9d4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14762,ce7f2440-0b9e-4593-9944-03c6bf2a9d4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14763,ce7f2440-0b9e-4593-9944-03c6bf2a9d4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14758,c516c947-e6b0-4f2e-bab1-f0bdfe72d352,LIST_ACCOUNTS,hbciListAccounts,false +14759,c516c947-e6b0-4f2e-bab1-f0bdfe72d352,LIST_TRANSACTIONS,hbciListTransactions,false +14760,c516c947-e6b0-4f2e-bab1-f0bdfe72d352,AUTHORIZATION,,false +14761,c516c947-e6b0-4f2e-bab1-f0bdfe72d352,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14762,c516c947-e6b0-4f2e-bab1-f0bdfe72d352,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14763,c516c947-e6b0-4f2e-bab1-f0bdfe72d352,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14764,65a2525f-fdf9-4667-ba64-fa912bdde1e5,LIST_ACCOUNTS,xs2aListAccounts,true -14765,65a2525f-fdf9-4667-ba64-fa912bdde1e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14765,65a2525f-fdf9-4667-ba64-fa912bdde1e5,LIST_TRANSACTIONS,xs2aListTransactions,true 14766,65a2525f-fdf9-4667-ba64-fa912bdde1e5,AUTHORIZATION,,true 14767,65a2525f-fdf9-4667-ba64-fa912bdde1e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14768,65a2525f-fdf9-4667-ba64-fa912bdde1e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14769,65a2525f-fdf9-4667-ba64-fa912bdde1e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14770,7489e4a2-3c1a-4e09-ad0c-cfdbd47b9360,LIST_ACCOUNTS,hbciListAccounts,false -14771,7489e4a2-3c1a-4e09-ad0c-cfdbd47b9360,LIST_TRANSACTIONS,hbciListTransactions,false -14772,7489e4a2-3c1a-4e09-ad0c-cfdbd47b9360,AUTHORIZATION,,false -14773,7489e4a2-3c1a-4e09-ad0c-cfdbd47b9360,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14774,7489e4a2-3c1a-4e09-ad0c-cfdbd47b9360,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14775,7489e4a2-3c1a-4e09-ad0c-cfdbd47b9360,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14770,29dd10cf-722f-4e0c-9394-3210dd0283c5,LIST_ACCOUNTS,hbciListAccounts,false +14771,29dd10cf-722f-4e0c-9394-3210dd0283c5,LIST_TRANSACTIONS,hbciListTransactions,false +14772,29dd10cf-722f-4e0c-9394-3210dd0283c5,AUTHORIZATION,,false +14773,29dd10cf-722f-4e0c-9394-3210dd0283c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14774,29dd10cf-722f-4e0c-9394-3210dd0283c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14775,29dd10cf-722f-4e0c-9394-3210dd0283c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14776,c7a5ffdd-13c2-4e40-8592-fbcfe4a967eb,LIST_ACCOUNTS,xs2aListAccounts,true -14777,c7a5ffdd-13c2-4e40-8592-fbcfe4a967eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14777,c7a5ffdd-13c2-4e40-8592-fbcfe4a967eb,LIST_TRANSACTIONS,xs2aListTransactions,true 14778,c7a5ffdd-13c2-4e40-8592-fbcfe4a967eb,AUTHORIZATION,,true 14779,c7a5ffdd-13c2-4e40-8592-fbcfe4a967eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14780,c7a5ffdd-13c2-4e40-8592-fbcfe4a967eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14781,c7a5ffdd-13c2-4e40-8592-fbcfe4a967eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14782,b2a0d6c1-d265-48b8-a402-850b322048f1,LIST_ACCOUNTS,hbciListAccounts,false -14783,b2a0d6c1-d265-48b8-a402-850b322048f1,LIST_TRANSACTIONS,hbciListTransactions,false -14784,b2a0d6c1-d265-48b8-a402-850b322048f1,AUTHORIZATION,,false -14785,b2a0d6c1-d265-48b8-a402-850b322048f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14786,b2a0d6c1-d265-48b8-a402-850b322048f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14787,b2a0d6c1-d265-48b8-a402-850b322048f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14782,cc2898be-6e66-451d-82c3-ce148df1b1eb,LIST_ACCOUNTS,hbciListAccounts,false +14783,cc2898be-6e66-451d-82c3-ce148df1b1eb,LIST_TRANSACTIONS,hbciListTransactions,false +14784,cc2898be-6e66-451d-82c3-ce148df1b1eb,AUTHORIZATION,,false +14785,cc2898be-6e66-451d-82c3-ce148df1b1eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14786,cc2898be-6e66-451d-82c3-ce148df1b1eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14787,cc2898be-6e66-451d-82c3-ce148df1b1eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14788,f455c8cb-d067-4e54-be28-1bbe4f673821,LIST_ACCOUNTS,xs2aListAccounts,true -14789,f455c8cb-d067-4e54-be28-1bbe4f673821,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14789,f455c8cb-d067-4e54-be28-1bbe4f673821,LIST_TRANSACTIONS,xs2aListTransactions,true 14790,f455c8cb-d067-4e54-be28-1bbe4f673821,AUTHORIZATION,,true 14791,f455c8cb-d067-4e54-be28-1bbe4f673821,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14792,f455c8cb-d067-4e54-be28-1bbe4f673821,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14793,f455c8cb-d067-4e54-be28-1bbe4f673821,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14794,0181ba28-f6f8-47fa-a224-4a956918ddbf,LIST_ACCOUNTS,hbciListAccounts,false -14795,0181ba28-f6f8-47fa-a224-4a956918ddbf,LIST_TRANSACTIONS,hbciListTransactions,false -14796,0181ba28-f6f8-47fa-a224-4a956918ddbf,AUTHORIZATION,,false -14797,0181ba28-f6f8-47fa-a224-4a956918ddbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14798,0181ba28-f6f8-47fa-a224-4a956918ddbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14799,0181ba28-f6f8-47fa-a224-4a956918ddbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14794,f66645b7-46f3-439f-b6c7-016ff68c9967,LIST_ACCOUNTS,hbciListAccounts,false +14795,f66645b7-46f3-439f-b6c7-016ff68c9967,LIST_TRANSACTIONS,hbciListTransactions,false +14796,f66645b7-46f3-439f-b6c7-016ff68c9967,AUTHORIZATION,,false +14797,f66645b7-46f3-439f-b6c7-016ff68c9967,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14798,f66645b7-46f3-439f-b6c7-016ff68c9967,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14799,f66645b7-46f3-439f-b6c7-016ff68c9967,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14800,7f7a20e7-c7e0-42fe-834b-55647e5751f8,LIST_ACCOUNTS,xs2aListAccounts,true -14801,7f7a20e7-c7e0-42fe-834b-55647e5751f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14801,7f7a20e7-c7e0-42fe-834b-55647e5751f8,LIST_TRANSACTIONS,xs2aListTransactions,true 14802,7f7a20e7-c7e0-42fe-834b-55647e5751f8,AUTHORIZATION,,true 14803,7f7a20e7-c7e0-42fe-834b-55647e5751f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14804,7f7a20e7-c7e0-42fe-834b-55647e5751f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14805,7f7a20e7-c7e0-42fe-834b-55647e5751f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14806,864ce8cf-c917-4c22-8aa3-925c3659b96e,LIST_ACCOUNTS,hbciListAccounts,false -14807,864ce8cf-c917-4c22-8aa3-925c3659b96e,LIST_TRANSACTIONS,hbciListTransactions,false -14808,864ce8cf-c917-4c22-8aa3-925c3659b96e,AUTHORIZATION,,false -14809,864ce8cf-c917-4c22-8aa3-925c3659b96e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14810,864ce8cf-c917-4c22-8aa3-925c3659b96e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14811,864ce8cf-c917-4c22-8aa3-925c3659b96e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14806,e33aa73a-0ae9-4bfd-a4c6-51576e47c90e,LIST_ACCOUNTS,hbciListAccounts,false +14807,e33aa73a-0ae9-4bfd-a4c6-51576e47c90e,LIST_TRANSACTIONS,hbciListTransactions,false +14808,e33aa73a-0ae9-4bfd-a4c6-51576e47c90e,AUTHORIZATION,,false +14809,e33aa73a-0ae9-4bfd-a4c6-51576e47c90e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14810,e33aa73a-0ae9-4bfd-a4c6-51576e47c90e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14811,e33aa73a-0ae9-4bfd-a4c6-51576e47c90e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14812,8594851b-e203-4a0c-839d-c9f89075ca91,LIST_ACCOUNTS,xs2aListAccounts,true -14813,8594851b-e203-4a0c-839d-c9f89075ca91,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14813,8594851b-e203-4a0c-839d-c9f89075ca91,LIST_TRANSACTIONS,xs2aListTransactions,true 14814,8594851b-e203-4a0c-839d-c9f89075ca91,AUTHORIZATION,,true 14815,8594851b-e203-4a0c-839d-c9f89075ca91,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14816,8594851b-e203-4a0c-839d-c9f89075ca91,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14817,8594851b-e203-4a0c-839d-c9f89075ca91,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14818,6ed95273-d86d-4128-9c95-aa480319118f,LIST_ACCOUNTS,hbciListAccounts,false -14819,6ed95273-d86d-4128-9c95-aa480319118f,LIST_TRANSACTIONS,hbciListTransactions,false -14820,6ed95273-d86d-4128-9c95-aa480319118f,AUTHORIZATION,,false -14821,6ed95273-d86d-4128-9c95-aa480319118f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14822,6ed95273-d86d-4128-9c95-aa480319118f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14823,6ed95273-d86d-4128-9c95-aa480319118f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14818,4a211e0d-79aa-430b-9a56-86fd60636e48,LIST_ACCOUNTS,hbciListAccounts,false +14819,4a211e0d-79aa-430b-9a56-86fd60636e48,LIST_TRANSACTIONS,hbciListTransactions,false +14820,4a211e0d-79aa-430b-9a56-86fd60636e48,AUTHORIZATION,,false +14821,4a211e0d-79aa-430b-9a56-86fd60636e48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14822,4a211e0d-79aa-430b-9a56-86fd60636e48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14823,4a211e0d-79aa-430b-9a56-86fd60636e48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14824,5b24f1ba-0771-4eb4-b9a4-0e5debb00d0b,LIST_ACCOUNTS,xs2aListAccounts,true -14825,5b24f1ba-0771-4eb4-b9a4-0e5debb00d0b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14825,5b24f1ba-0771-4eb4-b9a4-0e5debb00d0b,LIST_TRANSACTIONS,xs2aListTransactions,true 14826,5b24f1ba-0771-4eb4-b9a4-0e5debb00d0b,AUTHORIZATION,,true 14827,5b24f1ba-0771-4eb4-b9a4-0e5debb00d0b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14828,5b24f1ba-0771-4eb4-b9a4-0e5debb00d0b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14829,5b24f1ba-0771-4eb4-b9a4-0e5debb00d0b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14830,6a8eebf5-f306-4d41-972f-d4bd182f1d4d,LIST_ACCOUNTS,hbciListAccounts,false -14831,6a8eebf5-f306-4d41-972f-d4bd182f1d4d,LIST_TRANSACTIONS,hbciListTransactions,false -14832,6a8eebf5-f306-4d41-972f-d4bd182f1d4d,AUTHORIZATION,,false -14833,6a8eebf5-f306-4d41-972f-d4bd182f1d4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14834,6a8eebf5-f306-4d41-972f-d4bd182f1d4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14835,6a8eebf5-f306-4d41-972f-d4bd182f1d4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14830,a783d52a-81e4-4c82-ae20-41b5752fabbe,LIST_ACCOUNTS,hbciListAccounts,false +14831,a783d52a-81e4-4c82-ae20-41b5752fabbe,LIST_TRANSACTIONS,hbciListTransactions,false +14832,a783d52a-81e4-4c82-ae20-41b5752fabbe,AUTHORIZATION,,false +14833,a783d52a-81e4-4c82-ae20-41b5752fabbe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14834,a783d52a-81e4-4c82-ae20-41b5752fabbe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14835,a783d52a-81e4-4c82-ae20-41b5752fabbe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14836,714c675f-42b0-4226-8aed-f79a591deab1,LIST_ACCOUNTS,xs2aListAccounts,true -14837,714c675f-42b0-4226-8aed-f79a591deab1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14837,714c675f-42b0-4226-8aed-f79a591deab1,LIST_TRANSACTIONS,xs2aListTransactions,true 14838,714c675f-42b0-4226-8aed-f79a591deab1,AUTHORIZATION,,true 14839,714c675f-42b0-4226-8aed-f79a591deab1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14840,714c675f-42b0-4226-8aed-f79a591deab1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14841,714c675f-42b0-4226-8aed-f79a591deab1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14842,6ec03d96-ea49-417b-99a8-ddbb7f0895f9,LIST_ACCOUNTS,hbciListAccounts,false -14843,6ec03d96-ea49-417b-99a8-ddbb7f0895f9,LIST_TRANSACTIONS,hbciListTransactions,false -14844,6ec03d96-ea49-417b-99a8-ddbb7f0895f9,AUTHORIZATION,,false -14845,6ec03d96-ea49-417b-99a8-ddbb7f0895f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14846,6ec03d96-ea49-417b-99a8-ddbb7f0895f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14847,6ec03d96-ea49-417b-99a8-ddbb7f0895f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14842,e9e4f996-54a5-45cc-a7e8-42c2c3dcea37,LIST_ACCOUNTS,hbciListAccounts,false +14843,e9e4f996-54a5-45cc-a7e8-42c2c3dcea37,LIST_TRANSACTIONS,hbciListTransactions,false +14844,e9e4f996-54a5-45cc-a7e8-42c2c3dcea37,AUTHORIZATION,,false +14845,e9e4f996-54a5-45cc-a7e8-42c2c3dcea37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14846,e9e4f996-54a5-45cc-a7e8-42c2c3dcea37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14847,e9e4f996-54a5-45cc-a7e8-42c2c3dcea37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14848,2104882a-7bb2-467e-bf0f-e30d24841297,LIST_ACCOUNTS,xs2aListAccounts,true -14849,2104882a-7bb2-467e-bf0f-e30d24841297,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14849,2104882a-7bb2-467e-bf0f-e30d24841297,LIST_TRANSACTIONS,xs2aListTransactions,true 14850,2104882a-7bb2-467e-bf0f-e30d24841297,AUTHORIZATION,,true 14851,2104882a-7bb2-467e-bf0f-e30d24841297,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14852,2104882a-7bb2-467e-bf0f-e30d24841297,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14853,2104882a-7bb2-467e-bf0f-e30d24841297,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14854,cec0512a-dc40-4700-8e56-9df9574e1c2a,LIST_ACCOUNTS,hbciListAccounts,false -14855,cec0512a-dc40-4700-8e56-9df9574e1c2a,LIST_TRANSACTIONS,hbciListTransactions,false -14856,cec0512a-dc40-4700-8e56-9df9574e1c2a,AUTHORIZATION,,false -14857,cec0512a-dc40-4700-8e56-9df9574e1c2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14858,cec0512a-dc40-4700-8e56-9df9574e1c2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14859,cec0512a-dc40-4700-8e56-9df9574e1c2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14854,6e025c68-25dd-4988-aac5-c3df2075b11e,LIST_ACCOUNTS,hbciListAccounts,false +14855,6e025c68-25dd-4988-aac5-c3df2075b11e,LIST_TRANSACTIONS,hbciListTransactions,false +14856,6e025c68-25dd-4988-aac5-c3df2075b11e,AUTHORIZATION,,false +14857,6e025c68-25dd-4988-aac5-c3df2075b11e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14858,6e025c68-25dd-4988-aac5-c3df2075b11e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14859,6e025c68-25dd-4988-aac5-c3df2075b11e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14860,bcbbfae3-9c85-4ce0-9a37-e50bcbfa2ea5,LIST_ACCOUNTS,xs2aListAccounts,true -14861,bcbbfae3-9c85-4ce0-9a37-e50bcbfa2ea5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14861,bcbbfae3-9c85-4ce0-9a37-e50bcbfa2ea5,LIST_TRANSACTIONS,xs2aListTransactions,true 14862,bcbbfae3-9c85-4ce0-9a37-e50bcbfa2ea5,AUTHORIZATION,,true 14863,bcbbfae3-9c85-4ce0-9a37-e50bcbfa2ea5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14864,bcbbfae3-9c85-4ce0-9a37-e50bcbfa2ea5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14865,bcbbfae3-9c85-4ce0-9a37-e50bcbfa2ea5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14866,9870cb01-88c8-44dc-b2b3-1094d7127b84,LIST_ACCOUNTS,hbciListAccounts,false -14867,9870cb01-88c8-44dc-b2b3-1094d7127b84,LIST_TRANSACTIONS,hbciListTransactions,false -14868,9870cb01-88c8-44dc-b2b3-1094d7127b84,AUTHORIZATION,,false -14869,9870cb01-88c8-44dc-b2b3-1094d7127b84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14870,9870cb01-88c8-44dc-b2b3-1094d7127b84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14871,9870cb01-88c8-44dc-b2b3-1094d7127b84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14866,01c3b388-4b8d-4649-9ea1-a33f7c106c0f,LIST_ACCOUNTS,hbciListAccounts,false +14867,01c3b388-4b8d-4649-9ea1-a33f7c106c0f,LIST_TRANSACTIONS,hbciListTransactions,false +14868,01c3b388-4b8d-4649-9ea1-a33f7c106c0f,AUTHORIZATION,,false +14869,01c3b388-4b8d-4649-9ea1-a33f7c106c0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14870,01c3b388-4b8d-4649-9ea1-a33f7c106c0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14871,01c3b388-4b8d-4649-9ea1-a33f7c106c0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14872,38b77218-d2e7-464a-9ec5-4dbb913ec341,LIST_ACCOUNTS,xs2aListAccounts,true -14873,38b77218-d2e7-464a-9ec5-4dbb913ec341,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14873,38b77218-d2e7-464a-9ec5-4dbb913ec341,LIST_TRANSACTIONS,xs2aListTransactions,true 14874,38b77218-d2e7-464a-9ec5-4dbb913ec341,AUTHORIZATION,,true 14875,38b77218-d2e7-464a-9ec5-4dbb913ec341,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14876,38b77218-d2e7-464a-9ec5-4dbb913ec341,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14877,38b77218-d2e7-464a-9ec5-4dbb913ec341,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14878,d1f62a45-8a87-416e-8854-8f294630ba5a,LIST_ACCOUNTS,hbciListAccounts,false -14879,d1f62a45-8a87-416e-8854-8f294630ba5a,LIST_TRANSACTIONS,hbciListTransactions,false -14880,d1f62a45-8a87-416e-8854-8f294630ba5a,AUTHORIZATION,,false -14881,d1f62a45-8a87-416e-8854-8f294630ba5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14882,d1f62a45-8a87-416e-8854-8f294630ba5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14883,d1f62a45-8a87-416e-8854-8f294630ba5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14878,b3d371f3-95f8-46ae-8f55-ab7caa149f59,LIST_ACCOUNTS,hbciListAccounts,false +14879,b3d371f3-95f8-46ae-8f55-ab7caa149f59,LIST_TRANSACTIONS,hbciListTransactions,false +14880,b3d371f3-95f8-46ae-8f55-ab7caa149f59,AUTHORIZATION,,false +14881,b3d371f3-95f8-46ae-8f55-ab7caa149f59,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14882,b3d371f3-95f8-46ae-8f55-ab7caa149f59,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14883,b3d371f3-95f8-46ae-8f55-ab7caa149f59,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14884,e7803f28-f9c8-4c04-99f0-763fcb6a230c,LIST_ACCOUNTS,xs2aListAccounts,true -14885,e7803f28-f9c8-4c04-99f0-763fcb6a230c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14885,e7803f28-f9c8-4c04-99f0-763fcb6a230c,LIST_TRANSACTIONS,xs2aListTransactions,true 14886,e7803f28-f9c8-4c04-99f0-763fcb6a230c,AUTHORIZATION,,true 14887,e7803f28-f9c8-4c04-99f0-763fcb6a230c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14888,e7803f28-f9c8-4c04-99f0-763fcb6a230c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14889,e7803f28-f9c8-4c04-99f0-763fcb6a230c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14890,62c55937-2ec2-44c4-ae76-b5472ea139ea,LIST_ACCOUNTS,hbciListAccounts,false -14891,62c55937-2ec2-44c4-ae76-b5472ea139ea,LIST_TRANSACTIONS,hbciListTransactions,false -14892,62c55937-2ec2-44c4-ae76-b5472ea139ea,AUTHORIZATION,,false -14893,62c55937-2ec2-44c4-ae76-b5472ea139ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14894,62c55937-2ec2-44c4-ae76-b5472ea139ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14895,62c55937-2ec2-44c4-ae76-b5472ea139ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14890,3bc1d14a-6965-4ad9-a543-f3f09cf73d05,LIST_ACCOUNTS,hbciListAccounts,false +14891,3bc1d14a-6965-4ad9-a543-f3f09cf73d05,LIST_TRANSACTIONS,hbciListTransactions,false +14892,3bc1d14a-6965-4ad9-a543-f3f09cf73d05,AUTHORIZATION,,false +14893,3bc1d14a-6965-4ad9-a543-f3f09cf73d05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14894,3bc1d14a-6965-4ad9-a543-f3f09cf73d05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14895,3bc1d14a-6965-4ad9-a543-f3f09cf73d05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14896,0183abc2-b68c-43ba-a9b5-004b4ba82f42,LIST_ACCOUNTS,xs2aListAccounts,true -14897,0183abc2-b68c-43ba-a9b5-004b4ba82f42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14897,0183abc2-b68c-43ba-a9b5-004b4ba82f42,LIST_TRANSACTIONS,xs2aListTransactions,true 14898,0183abc2-b68c-43ba-a9b5-004b4ba82f42,AUTHORIZATION,,true 14899,0183abc2-b68c-43ba-a9b5-004b4ba82f42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14900,0183abc2-b68c-43ba-a9b5-004b4ba82f42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14901,0183abc2-b68c-43ba-a9b5-004b4ba82f42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14902,b42a7c1f-ceb0-4e52-a5ac-b6c319b1ec8c,LIST_ACCOUNTS,hbciListAccounts,false -14903,b42a7c1f-ceb0-4e52-a5ac-b6c319b1ec8c,LIST_TRANSACTIONS,hbciListTransactions,false -14904,b42a7c1f-ceb0-4e52-a5ac-b6c319b1ec8c,AUTHORIZATION,,false -14905,b42a7c1f-ceb0-4e52-a5ac-b6c319b1ec8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14906,b42a7c1f-ceb0-4e52-a5ac-b6c319b1ec8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14907,b42a7c1f-ceb0-4e52-a5ac-b6c319b1ec8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14902,1b44bf50-8b29-4c98-88e3-24221a4118d8,LIST_ACCOUNTS,hbciListAccounts,false +14903,1b44bf50-8b29-4c98-88e3-24221a4118d8,LIST_TRANSACTIONS,hbciListTransactions,false +14904,1b44bf50-8b29-4c98-88e3-24221a4118d8,AUTHORIZATION,,false +14905,1b44bf50-8b29-4c98-88e3-24221a4118d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14906,1b44bf50-8b29-4c98-88e3-24221a4118d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14907,1b44bf50-8b29-4c98-88e3-24221a4118d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14908,b69d8d43-8e9b-49a0-956f-0cea6d4d68ae,LIST_ACCOUNTS,xs2aListAccounts,true -14909,b69d8d43-8e9b-49a0-956f-0cea6d4d68ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14909,b69d8d43-8e9b-49a0-956f-0cea6d4d68ae,LIST_TRANSACTIONS,xs2aListTransactions,true 14910,b69d8d43-8e9b-49a0-956f-0cea6d4d68ae,AUTHORIZATION,,true 14911,b69d8d43-8e9b-49a0-956f-0cea6d4d68ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14912,b69d8d43-8e9b-49a0-956f-0cea6d4d68ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14913,b69d8d43-8e9b-49a0-956f-0cea6d4d68ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14914,3874f56c-b42c-4152-a299-95092409aa51,LIST_ACCOUNTS,hbciListAccounts,false -14915,3874f56c-b42c-4152-a299-95092409aa51,LIST_TRANSACTIONS,hbciListTransactions,false -14916,3874f56c-b42c-4152-a299-95092409aa51,AUTHORIZATION,,false -14917,3874f56c-b42c-4152-a299-95092409aa51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14918,3874f56c-b42c-4152-a299-95092409aa51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14919,3874f56c-b42c-4152-a299-95092409aa51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14914,48928dad-7b62-46ec-80ba-d0f7a4188fb1,LIST_ACCOUNTS,hbciListAccounts,false +14915,48928dad-7b62-46ec-80ba-d0f7a4188fb1,LIST_TRANSACTIONS,hbciListTransactions,false +14916,48928dad-7b62-46ec-80ba-d0f7a4188fb1,AUTHORIZATION,,false +14917,48928dad-7b62-46ec-80ba-d0f7a4188fb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14918,48928dad-7b62-46ec-80ba-d0f7a4188fb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14919,48928dad-7b62-46ec-80ba-d0f7a4188fb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14920,19dd84bd-febb-41bf-9cc3-47663f0b54af,LIST_ACCOUNTS,xs2aListAccounts,true -14921,19dd84bd-febb-41bf-9cc3-47663f0b54af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14921,19dd84bd-febb-41bf-9cc3-47663f0b54af,LIST_TRANSACTIONS,xs2aListTransactions,true 14922,19dd84bd-febb-41bf-9cc3-47663f0b54af,AUTHORIZATION,,true 14923,19dd84bd-febb-41bf-9cc3-47663f0b54af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14924,19dd84bd-febb-41bf-9cc3-47663f0b54af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14925,19dd84bd-febb-41bf-9cc3-47663f0b54af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14926,ea77ddf5-ca8f-4cca-a5c6-22158c8c1765,LIST_ACCOUNTS,hbciListAccounts,false -14927,ea77ddf5-ca8f-4cca-a5c6-22158c8c1765,LIST_TRANSACTIONS,hbciListTransactions,false -14928,ea77ddf5-ca8f-4cca-a5c6-22158c8c1765,AUTHORIZATION,,false -14929,ea77ddf5-ca8f-4cca-a5c6-22158c8c1765,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14930,ea77ddf5-ca8f-4cca-a5c6-22158c8c1765,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14931,ea77ddf5-ca8f-4cca-a5c6-22158c8c1765,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14926,ddaa753a-efe5-4c22-b8a3-d4e2cb0a9d7a,LIST_ACCOUNTS,hbciListAccounts,false +14927,ddaa753a-efe5-4c22-b8a3-d4e2cb0a9d7a,LIST_TRANSACTIONS,hbciListTransactions,false +14928,ddaa753a-efe5-4c22-b8a3-d4e2cb0a9d7a,AUTHORIZATION,,false +14929,ddaa753a-efe5-4c22-b8a3-d4e2cb0a9d7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14930,ddaa753a-efe5-4c22-b8a3-d4e2cb0a9d7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14931,ddaa753a-efe5-4c22-b8a3-d4e2cb0a9d7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14932,1b8426ff-2ae4-4149-a5c2-12e51e204a30,LIST_ACCOUNTS,xs2aListAccounts,true -14933,1b8426ff-2ae4-4149-a5c2-12e51e204a30,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14933,1b8426ff-2ae4-4149-a5c2-12e51e204a30,LIST_TRANSACTIONS,xs2aListTransactions,true 14934,1b8426ff-2ae4-4149-a5c2-12e51e204a30,AUTHORIZATION,,true 14935,1b8426ff-2ae4-4149-a5c2-12e51e204a30,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14936,1b8426ff-2ae4-4149-a5c2-12e51e204a30,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14937,1b8426ff-2ae4-4149-a5c2-12e51e204a30,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14938,8c94d235-cbba-4829-a91c-5fc6c9322ad3,LIST_ACCOUNTS,hbciListAccounts,false -14939,8c94d235-cbba-4829-a91c-5fc6c9322ad3,LIST_TRANSACTIONS,hbciListTransactions,false -14940,8c94d235-cbba-4829-a91c-5fc6c9322ad3,AUTHORIZATION,,false -14941,8c94d235-cbba-4829-a91c-5fc6c9322ad3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14942,8c94d235-cbba-4829-a91c-5fc6c9322ad3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14943,8c94d235-cbba-4829-a91c-5fc6c9322ad3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14938,3773950d-3168-4025-8565-b6f74525219e,LIST_ACCOUNTS,hbciListAccounts,false +14939,3773950d-3168-4025-8565-b6f74525219e,LIST_TRANSACTIONS,hbciListTransactions,false +14940,3773950d-3168-4025-8565-b6f74525219e,AUTHORIZATION,,false +14941,3773950d-3168-4025-8565-b6f74525219e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14942,3773950d-3168-4025-8565-b6f74525219e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14943,3773950d-3168-4025-8565-b6f74525219e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14944,170712e5-7bf1-4399-a359-e3e9a76315ff,LIST_ACCOUNTS,xs2aListAccounts,true -14945,170712e5-7bf1-4399-a359-e3e9a76315ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14945,170712e5-7bf1-4399-a359-e3e9a76315ff,LIST_TRANSACTIONS,xs2aListTransactions,true 14946,170712e5-7bf1-4399-a359-e3e9a76315ff,AUTHORIZATION,,true 14947,170712e5-7bf1-4399-a359-e3e9a76315ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14948,170712e5-7bf1-4399-a359-e3e9a76315ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14949,170712e5-7bf1-4399-a359-e3e9a76315ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14950,ee306e6d-02fe-4181-9c5d-6e5e15ee13ac,LIST_ACCOUNTS,hbciListAccounts,false -14951,ee306e6d-02fe-4181-9c5d-6e5e15ee13ac,LIST_TRANSACTIONS,hbciListTransactions,false -14952,ee306e6d-02fe-4181-9c5d-6e5e15ee13ac,AUTHORIZATION,,false -14953,ee306e6d-02fe-4181-9c5d-6e5e15ee13ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14954,ee306e6d-02fe-4181-9c5d-6e5e15ee13ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14955,ee306e6d-02fe-4181-9c5d-6e5e15ee13ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14950,8db0879a-a221-4e8f-ab92-956a625376dc,LIST_ACCOUNTS,hbciListAccounts,false +14951,8db0879a-a221-4e8f-ab92-956a625376dc,LIST_TRANSACTIONS,hbciListTransactions,false +14952,8db0879a-a221-4e8f-ab92-956a625376dc,AUTHORIZATION,,false +14953,8db0879a-a221-4e8f-ab92-956a625376dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14954,8db0879a-a221-4e8f-ab92-956a625376dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14955,8db0879a-a221-4e8f-ab92-956a625376dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14956,49b1f90b-129a-43d2-b45b-f3b51243e191,LIST_ACCOUNTS,xs2aListAccounts,true -14957,49b1f90b-129a-43d2-b45b-f3b51243e191,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14957,49b1f90b-129a-43d2-b45b-f3b51243e191,LIST_TRANSACTIONS,xs2aListTransactions,true 14958,49b1f90b-129a-43d2-b45b-f3b51243e191,AUTHORIZATION,,true 14959,49b1f90b-129a-43d2-b45b-f3b51243e191,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14960,49b1f90b-129a-43d2-b45b-f3b51243e191,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14961,49b1f90b-129a-43d2-b45b-f3b51243e191,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14962,26d71899-32e4-4b46-a852-ca5f69e0c04e,LIST_ACCOUNTS,hbciListAccounts,false -14963,26d71899-32e4-4b46-a852-ca5f69e0c04e,LIST_TRANSACTIONS,hbciListTransactions,false -14964,26d71899-32e4-4b46-a852-ca5f69e0c04e,AUTHORIZATION,,false -14965,26d71899-32e4-4b46-a852-ca5f69e0c04e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14966,26d71899-32e4-4b46-a852-ca5f69e0c04e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14967,26d71899-32e4-4b46-a852-ca5f69e0c04e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14962,e38ab694-972c-4d9d-a7b2-1b2e81c518a9,LIST_ACCOUNTS,hbciListAccounts,false +14963,e38ab694-972c-4d9d-a7b2-1b2e81c518a9,LIST_TRANSACTIONS,hbciListTransactions,false +14964,e38ab694-972c-4d9d-a7b2-1b2e81c518a9,AUTHORIZATION,,false +14965,e38ab694-972c-4d9d-a7b2-1b2e81c518a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14966,e38ab694-972c-4d9d-a7b2-1b2e81c518a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14967,e38ab694-972c-4d9d-a7b2-1b2e81c518a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14968,2272db5d-07c6-44bf-ab79-1697300c7278,LIST_ACCOUNTS,xs2aListAccounts,true -14969,2272db5d-07c6-44bf-ab79-1697300c7278,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14969,2272db5d-07c6-44bf-ab79-1697300c7278,LIST_TRANSACTIONS,xs2aListTransactions,true 14970,2272db5d-07c6-44bf-ab79-1697300c7278,AUTHORIZATION,,true 14971,2272db5d-07c6-44bf-ab79-1697300c7278,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14972,2272db5d-07c6-44bf-ab79-1697300c7278,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14973,2272db5d-07c6-44bf-ab79-1697300c7278,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14974,f5e79381-58c1-46bc-8ce0-b8e04537990b,LIST_ACCOUNTS,hbciListAccounts,false -14975,f5e79381-58c1-46bc-8ce0-b8e04537990b,LIST_TRANSACTIONS,hbciListTransactions,false -14976,f5e79381-58c1-46bc-8ce0-b8e04537990b,AUTHORIZATION,,false -14977,f5e79381-58c1-46bc-8ce0-b8e04537990b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14978,f5e79381-58c1-46bc-8ce0-b8e04537990b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14979,f5e79381-58c1-46bc-8ce0-b8e04537990b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14974,79c72e19-d6af-434b-a9d8-0d5d1edd342a,LIST_ACCOUNTS,hbciListAccounts,false +14975,79c72e19-d6af-434b-a9d8-0d5d1edd342a,LIST_TRANSACTIONS,hbciListTransactions,false +14976,79c72e19-d6af-434b-a9d8-0d5d1edd342a,AUTHORIZATION,,false +14977,79c72e19-d6af-434b-a9d8-0d5d1edd342a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14978,79c72e19-d6af-434b-a9d8-0d5d1edd342a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14979,79c72e19-d6af-434b-a9d8-0d5d1edd342a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14980,ef3a1d69-4a6a-4e75-a45c-ee04504f4baf,LIST_ACCOUNTS,xs2aListAccounts,true -14981,ef3a1d69-4a6a-4e75-a45c-ee04504f4baf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14981,ef3a1d69-4a6a-4e75-a45c-ee04504f4baf,LIST_TRANSACTIONS,xs2aListTransactions,true 14982,ef3a1d69-4a6a-4e75-a45c-ee04504f4baf,AUTHORIZATION,,true 14983,ef3a1d69-4a6a-4e75-a45c-ee04504f4baf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14984,ef3a1d69-4a6a-4e75-a45c-ee04504f4baf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14985,ef3a1d69-4a6a-4e75-a45c-ee04504f4baf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14986,8c603a23-3dee-4391-8717-b83a93eb73ca,LIST_ACCOUNTS,hbciListAccounts,false -14987,8c603a23-3dee-4391-8717-b83a93eb73ca,LIST_TRANSACTIONS,hbciListTransactions,false -14988,8c603a23-3dee-4391-8717-b83a93eb73ca,AUTHORIZATION,,false -14989,8c603a23-3dee-4391-8717-b83a93eb73ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -14990,8c603a23-3dee-4391-8717-b83a93eb73ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -14991,8c603a23-3dee-4391-8717-b83a93eb73ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14986,46d0330f-9d46-40ba-a7a5-53ece2a04430,LIST_ACCOUNTS,hbciListAccounts,false +14987,46d0330f-9d46-40ba-a7a5-53ece2a04430,LIST_TRANSACTIONS,hbciListTransactions,false +14988,46d0330f-9d46-40ba-a7a5-53ece2a04430,AUTHORIZATION,,false +14989,46d0330f-9d46-40ba-a7a5-53ece2a04430,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +14990,46d0330f-9d46-40ba-a7a5-53ece2a04430,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +14991,46d0330f-9d46-40ba-a7a5-53ece2a04430,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 14992,bc04ff4f-c337-41c6-8606-d594363ab8d8,LIST_ACCOUNTS,xs2aListAccounts,true -14993,bc04ff4f-c337-41c6-8606-d594363ab8d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +14993,bc04ff4f-c337-41c6-8606-d594363ab8d8,LIST_TRANSACTIONS,xs2aListTransactions,true 14994,bc04ff4f-c337-41c6-8606-d594363ab8d8,AUTHORIZATION,,true 14995,bc04ff4f-c337-41c6-8606-d594363ab8d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 14996,bc04ff4f-c337-41c6-8606-d594363ab8d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 14997,bc04ff4f-c337-41c6-8606-d594363ab8d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -14998,e9d01f53-e2dc-468e-bc90-38baf2d3cccf,LIST_ACCOUNTS,hbciListAccounts,false -14999,e9d01f53-e2dc-468e-bc90-38baf2d3cccf,LIST_TRANSACTIONS,hbciListTransactions,false -15000,e9d01f53-e2dc-468e-bc90-38baf2d3cccf,AUTHORIZATION,,false -15001,e9d01f53-e2dc-468e-bc90-38baf2d3cccf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15002,e9d01f53-e2dc-468e-bc90-38baf2d3cccf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15003,e9d01f53-e2dc-468e-bc90-38baf2d3cccf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +14998,6ecfc78e-ae11-4d26-b16e-d3888389473a,LIST_ACCOUNTS,hbciListAccounts,false +14999,6ecfc78e-ae11-4d26-b16e-d3888389473a,LIST_TRANSACTIONS,hbciListTransactions,false +15000,6ecfc78e-ae11-4d26-b16e-d3888389473a,AUTHORIZATION,,false +15001,6ecfc78e-ae11-4d26-b16e-d3888389473a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15002,6ecfc78e-ae11-4d26-b16e-d3888389473a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15003,6ecfc78e-ae11-4d26-b16e-d3888389473a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15004,5a46f20e-6746-4512-85dc-f74c7a0bb8b8,LIST_ACCOUNTS,xs2aListAccounts,true -15005,5a46f20e-6746-4512-85dc-f74c7a0bb8b8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15005,5a46f20e-6746-4512-85dc-f74c7a0bb8b8,LIST_TRANSACTIONS,xs2aListTransactions,true 15006,5a46f20e-6746-4512-85dc-f74c7a0bb8b8,AUTHORIZATION,,true 15007,5a46f20e-6746-4512-85dc-f74c7a0bb8b8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15008,5a46f20e-6746-4512-85dc-f74c7a0bb8b8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15009,5a46f20e-6746-4512-85dc-f74c7a0bb8b8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15010,1883e3ef-427f-4e36-bc26-ed90d4459752,LIST_ACCOUNTS,hbciListAccounts,false -15011,1883e3ef-427f-4e36-bc26-ed90d4459752,LIST_TRANSACTIONS,hbciListTransactions,false -15012,1883e3ef-427f-4e36-bc26-ed90d4459752,AUTHORIZATION,,false -15013,1883e3ef-427f-4e36-bc26-ed90d4459752,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15014,1883e3ef-427f-4e36-bc26-ed90d4459752,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15015,1883e3ef-427f-4e36-bc26-ed90d4459752,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15010,41b38cb5-6a15-4bd9-843a-49733ef94eed,LIST_ACCOUNTS,hbciListAccounts,false +15011,41b38cb5-6a15-4bd9-843a-49733ef94eed,LIST_TRANSACTIONS,hbciListTransactions,false +15012,41b38cb5-6a15-4bd9-843a-49733ef94eed,AUTHORIZATION,,false +15013,41b38cb5-6a15-4bd9-843a-49733ef94eed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15014,41b38cb5-6a15-4bd9-843a-49733ef94eed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15015,41b38cb5-6a15-4bd9-843a-49733ef94eed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15016,c707b4b5-0cc1-4514-88b1-081de019966a,LIST_ACCOUNTS,xs2aListAccounts,true -15017,c707b4b5-0cc1-4514-88b1-081de019966a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15017,c707b4b5-0cc1-4514-88b1-081de019966a,LIST_TRANSACTIONS,xs2aListTransactions,true 15018,c707b4b5-0cc1-4514-88b1-081de019966a,AUTHORIZATION,,true 15019,c707b4b5-0cc1-4514-88b1-081de019966a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15020,c707b4b5-0cc1-4514-88b1-081de019966a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15021,c707b4b5-0cc1-4514-88b1-081de019966a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15022,47c86ee6-eb6c-496b-8b52-e80709e77f17,LIST_ACCOUNTS,hbciListAccounts,false -15023,47c86ee6-eb6c-496b-8b52-e80709e77f17,LIST_TRANSACTIONS,hbciListTransactions,false -15024,47c86ee6-eb6c-496b-8b52-e80709e77f17,AUTHORIZATION,,false -15025,47c86ee6-eb6c-496b-8b52-e80709e77f17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15026,47c86ee6-eb6c-496b-8b52-e80709e77f17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15027,47c86ee6-eb6c-496b-8b52-e80709e77f17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15022,dcbcf32d-49fa-4081-9d75-ee79c588494b,LIST_ACCOUNTS,hbciListAccounts,false +15023,dcbcf32d-49fa-4081-9d75-ee79c588494b,LIST_TRANSACTIONS,hbciListTransactions,false +15024,dcbcf32d-49fa-4081-9d75-ee79c588494b,AUTHORIZATION,,false +15025,dcbcf32d-49fa-4081-9d75-ee79c588494b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15026,dcbcf32d-49fa-4081-9d75-ee79c588494b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15027,dcbcf32d-49fa-4081-9d75-ee79c588494b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15028,e91ed12d-4acd-44c8-b71d-003677f067cc,LIST_ACCOUNTS,xs2aListAccounts,true -15029,e91ed12d-4acd-44c8-b71d-003677f067cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15029,e91ed12d-4acd-44c8-b71d-003677f067cc,LIST_TRANSACTIONS,xs2aListTransactions,true 15030,e91ed12d-4acd-44c8-b71d-003677f067cc,AUTHORIZATION,,true 15031,e91ed12d-4acd-44c8-b71d-003677f067cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15032,e91ed12d-4acd-44c8-b71d-003677f067cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15033,e91ed12d-4acd-44c8-b71d-003677f067cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15034,bef22007-9176-483a-9e82-71c6c303e8f5,LIST_ACCOUNTS,hbciListAccounts,false -15035,bef22007-9176-483a-9e82-71c6c303e8f5,LIST_TRANSACTIONS,hbciListTransactions,false -15036,bef22007-9176-483a-9e82-71c6c303e8f5,AUTHORIZATION,,false -15037,bef22007-9176-483a-9e82-71c6c303e8f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15038,bef22007-9176-483a-9e82-71c6c303e8f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15039,bef22007-9176-483a-9e82-71c6c303e8f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15034,6db1e191-030c-4479-b9f9-5d99a17b9f02,LIST_ACCOUNTS,hbciListAccounts,false +15035,6db1e191-030c-4479-b9f9-5d99a17b9f02,LIST_TRANSACTIONS,hbciListTransactions,false +15036,6db1e191-030c-4479-b9f9-5d99a17b9f02,AUTHORIZATION,,false +15037,6db1e191-030c-4479-b9f9-5d99a17b9f02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15038,6db1e191-030c-4479-b9f9-5d99a17b9f02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15039,6db1e191-030c-4479-b9f9-5d99a17b9f02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15040,9d1d8756-cd1c-4c39-8b50-74a84459d408,LIST_ACCOUNTS,xs2aListAccounts,true -15041,9d1d8756-cd1c-4c39-8b50-74a84459d408,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15041,9d1d8756-cd1c-4c39-8b50-74a84459d408,LIST_TRANSACTIONS,xs2aListTransactions,true 15042,9d1d8756-cd1c-4c39-8b50-74a84459d408,AUTHORIZATION,,true 15043,9d1d8756-cd1c-4c39-8b50-74a84459d408,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15044,9d1d8756-cd1c-4c39-8b50-74a84459d408,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15045,9d1d8756-cd1c-4c39-8b50-74a84459d408,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15046,667845e0-c778-4212-af4c-1afa8110c42b,LIST_ACCOUNTS,hbciListAccounts,false -15047,667845e0-c778-4212-af4c-1afa8110c42b,LIST_TRANSACTIONS,hbciListTransactions,false -15048,667845e0-c778-4212-af4c-1afa8110c42b,AUTHORIZATION,,false -15049,667845e0-c778-4212-af4c-1afa8110c42b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15050,667845e0-c778-4212-af4c-1afa8110c42b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15051,667845e0-c778-4212-af4c-1afa8110c42b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15046,369d38d0-d6c3-4b08-904e-86a7893ad57c,LIST_ACCOUNTS,hbciListAccounts,false +15047,369d38d0-d6c3-4b08-904e-86a7893ad57c,LIST_TRANSACTIONS,hbciListTransactions,false +15048,369d38d0-d6c3-4b08-904e-86a7893ad57c,AUTHORIZATION,,false +15049,369d38d0-d6c3-4b08-904e-86a7893ad57c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15050,369d38d0-d6c3-4b08-904e-86a7893ad57c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15051,369d38d0-d6c3-4b08-904e-86a7893ad57c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15052,ecfa9a82-7754-417b-9214-72b2499fc807,LIST_ACCOUNTS,xs2aListAccounts,true -15053,ecfa9a82-7754-417b-9214-72b2499fc807,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15053,ecfa9a82-7754-417b-9214-72b2499fc807,LIST_TRANSACTIONS,xs2aListTransactions,true 15054,ecfa9a82-7754-417b-9214-72b2499fc807,AUTHORIZATION,,true 15055,ecfa9a82-7754-417b-9214-72b2499fc807,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15056,ecfa9a82-7754-417b-9214-72b2499fc807,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15057,ecfa9a82-7754-417b-9214-72b2499fc807,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15058,b767a304-6500-4583-a81c-9201ac24566b,LIST_ACCOUNTS,hbciListAccounts,false -15059,b767a304-6500-4583-a81c-9201ac24566b,LIST_TRANSACTIONS,hbciListTransactions,false -15060,b767a304-6500-4583-a81c-9201ac24566b,AUTHORIZATION,,false -15061,b767a304-6500-4583-a81c-9201ac24566b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15062,b767a304-6500-4583-a81c-9201ac24566b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15063,b767a304-6500-4583-a81c-9201ac24566b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15058,fdb3a0de-c621-433f-9e0f-ea08656e9261,LIST_ACCOUNTS,hbciListAccounts,false +15059,fdb3a0de-c621-433f-9e0f-ea08656e9261,LIST_TRANSACTIONS,hbciListTransactions,false +15060,fdb3a0de-c621-433f-9e0f-ea08656e9261,AUTHORIZATION,,false +15061,fdb3a0de-c621-433f-9e0f-ea08656e9261,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15062,fdb3a0de-c621-433f-9e0f-ea08656e9261,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15063,fdb3a0de-c621-433f-9e0f-ea08656e9261,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15064,c8085536-0a51-406f-b6ea-0a31538e1a5d,LIST_ACCOUNTS,xs2aListAccounts,true -15065,c8085536-0a51-406f-b6ea-0a31538e1a5d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15065,c8085536-0a51-406f-b6ea-0a31538e1a5d,LIST_TRANSACTIONS,xs2aListTransactions,true 15066,c8085536-0a51-406f-b6ea-0a31538e1a5d,AUTHORIZATION,,true 15067,c8085536-0a51-406f-b6ea-0a31538e1a5d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15068,c8085536-0a51-406f-b6ea-0a31538e1a5d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15069,c8085536-0a51-406f-b6ea-0a31538e1a5d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15070,2a677b77-21db-460a-af3e-99dfb9cc8811,LIST_ACCOUNTS,hbciListAccounts,false -15071,2a677b77-21db-460a-af3e-99dfb9cc8811,LIST_TRANSACTIONS,hbciListTransactions,false -15072,2a677b77-21db-460a-af3e-99dfb9cc8811,AUTHORIZATION,,false -15073,2a677b77-21db-460a-af3e-99dfb9cc8811,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15074,2a677b77-21db-460a-af3e-99dfb9cc8811,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15075,2a677b77-21db-460a-af3e-99dfb9cc8811,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15070,73633763-d5c1-4200-a026-52bc76b0670d,LIST_ACCOUNTS,hbciListAccounts,false +15071,73633763-d5c1-4200-a026-52bc76b0670d,LIST_TRANSACTIONS,hbciListTransactions,false +15072,73633763-d5c1-4200-a026-52bc76b0670d,AUTHORIZATION,,false +15073,73633763-d5c1-4200-a026-52bc76b0670d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15074,73633763-d5c1-4200-a026-52bc76b0670d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15075,73633763-d5c1-4200-a026-52bc76b0670d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15076,bd5c0a0b-1795-4b8a-81ba-e914333aa263,LIST_ACCOUNTS,xs2aListAccounts,true -15077,bd5c0a0b-1795-4b8a-81ba-e914333aa263,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15077,bd5c0a0b-1795-4b8a-81ba-e914333aa263,LIST_TRANSACTIONS,xs2aListTransactions,true 15078,bd5c0a0b-1795-4b8a-81ba-e914333aa263,AUTHORIZATION,,true 15079,bd5c0a0b-1795-4b8a-81ba-e914333aa263,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15080,bd5c0a0b-1795-4b8a-81ba-e914333aa263,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15081,bd5c0a0b-1795-4b8a-81ba-e914333aa263,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15082,848458c8-3ab8-4f02-a1be-794dd46a5487,LIST_ACCOUNTS,hbciListAccounts,false -15083,848458c8-3ab8-4f02-a1be-794dd46a5487,LIST_TRANSACTIONS,hbciListTransactions,false -15084,848458c8-3ab8-4f02-a1be-794dd46a5487,AUTHORIZATION,,false -15085,848458c8-3ab8-4f02-a1be-794dd46a5487,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15086,848458c8-3ab8-4f02-a1be-794dd46a5487,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15087,848458c8-3ab8-4f02-a1be-794dd46a5487,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15082,4fe69b54-8178-42c9-8264-88c1c1512578,LIST_ACCOUNTS,hbciListAccounts,false +15083,4fe69b54-8178-42c9-8264-88c1c1512578,LIST_TRANSACTIONS,hbciListTransactions,false +15084,4fe69b54-8178-42c9-8264-88c1c1512578,AUTHORIZATION,,false +15085,4fe69b54-8178-42c9-8264-88c1c1512578,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15086,4fe69b54-8178-42c9-8264-88c1c1512578,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15087,4fe69b54-8178-42c9-8264-88c1c1512578,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15088,a5c19dbd-6607-43f1-9316-e0bc9ad2d7bb,LIST_ACCOUNTS,xs2aListAccounts,true -15089,a5c19dbd-6607-43f1-9316-e0bc9ad2d7bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15089,a5c19dbd-6607-43f1-9316-e0bc9ad2d7bb,LIST_TRANSACTIONS,xs2aListTransactions,true 15090,a5c19dbd-6607-43f1-9316-e0bc9ad2d7bb,AUTHORIZATION,,true 15091,a5c19dbd-6607-43f1-9316-e0bc9ad2d7bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15092,a5c19dbd-6607-43f1-9316-e0bc9ad2d7bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15093,a5c19dbd-6607-43f1-9316-e0bc9ad2d7bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15094,100bf9d9-d1d3-48b6-85a4-63271a09dd4f,LIST_ACCOUNTS,hbciListAccounts,false -15095,100bf9d9-d1d3-48b6-85a4-63271a09dd4f,LIST_TRANSACTIONS,hbciListTransactions,false -15096,100bf9d9-d1d3-48b6-85a4-63271a09dd4f,AUTHORIZATION,,false -15097,100bf9d9-d1d3-48b6-85a4-63271a09dd4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15098,100bf9d9-d1d3-48b6-85a4-63271a09dd4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15099,100bf9d9-d1d3-48b6-85a4-63271a09dd4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15094,77ea129c-dc8f-4936-bbc1-53444ca2f7b2,LIST_ACCOUNTS,hbciListAccounts,false +15095,77ea129c-dc8f-4936-bbc1-53444ca2f7b2,LIST_TRANSACTIONS,hbciListTransactions,false +15096,77ea129c-dc8f-4936-bbc1-53444ca2f7b2,AUTHORIZATION,,false +15097,77ea129c-dc8f-4936-bbc1-53444ca2f7b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15098,77ea129c-dc8f-4936-bbc1-53444ca2f7b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15099,77ea129c-dc8f-4936-bbc1-53444ca2f7b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15100,75330747-3d9f-4330-ae0e-4cdd5bc30770,LIST_ACCOUNTS,xs2aListAccounts,true -15101,75330747-3d9f-4330-ae0e-4cdd5bc30770,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15101,75330747-3d9f-4330-ae0e-4cdd5bc30770,LIST_TRANSACTIONS,xs2aListTransactions,true 15102,75330747-3d9f-4330-ae0e-4cdd5bc30770,AUTHORIZATION,,true 15103,75330747-3d9f-4330-ae0e-4cdd5bc30770,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15104,75330747-3d9f-4330-ae0e-4cdd5bc30770,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15105,75330747-3d9f-4330-ae0e-4cdd5bc30770,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15106,9469bf64-a951-4938-82b0-af95165d7105,LIST_ACCOUNTS,hbciListAccounts,false -15107,9469bf64-a951-4938-82b0-af95165d7105,LIST_TRANSACTIONS,hbciListTransactions,false -15108,9469bf64-a951-4938-82b0-af95165d7105,AUTHORIZATION,,false -15109,9469bf64-a951-4938-82b0-af95165d7105,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15110,9469bf64-a951-4938-82b0-af95165d7105,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15111,9469bf64-a951-4938-82b0-af95165d7105,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15106,c6a7e115-f99c-4b67-9226-6c95672de3c9,LIST_ACCOUNTS,hbciListAccounts,false +15107,c6a7e115-f99c-4b67-9226-6c95672de3c9,LIST_TRANSACTIONS,hbciListTransactions,false +15108,c6a7e115-f99c-4b67-9226-6c95672de3c9,AUTHORIZATION,,false +15109,c6a7e115-f99c-4b67-9226-6c95672de3c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15110,c6a7e115-f99c-4b67-9226-6c95672de3c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15111,c6a7e115-f99c-4b67-9226-6c95672de3c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15112,b62be732-b3a7-4040-972e-2e797a7e010e,LIST_ACCOUNTS,xs2aListAccounts,true -15113,b62be732-b3a7-4040-972e-2e797a7e010e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15113,b62be732-b3a7-4040-972e-2e797a7e010e,LIST_TRANSACTIONS,xs2aListTransactions,true 15114,b62be732-b3a7-4040-972e-2e797a7e010e,AUTHORIZATION,,true 15115,b62be732-b3a7-4040-972e-2e797a7e010e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15116,b62be732-b3a7-4040-972e-2e797a7e010e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15117,b62be732-b3a7-4040-972e-2e797a7e010e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15118,672c2021-1073-44b5-8ab5-8056b6de557f,LIST_ACCOUNTS,hbciListAccounts,false -15119,672c2021-1073-44b5-8ab5-8056b6de557f,LIST_TRANSACTIONS,hbciListTransactions,false -15120,672c2021-1073-44b5-8ab5-8056b6de557f,AUTHORIZATION,,false -15121,672c2021-1073-44b5-8ab5-8056b6de557f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15122,672c2021-1073-44b5-8ab5-8056b6de557f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15123,672c2021-1073-44b5-8ab5-8056b6de557f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15118,26667dfb-864f-4c36-83fa-0e1e253c0497,LIST_ACCOUNTS,hbciListAccounts,false +15119,26667dfb-864f-4c36-83fa-0e1e253c0497,LIST_TRANSACTIONS,hbciListTransactions,false +15120,26667dfb-864f-4c36-83fa-0e1e253c0497,AUTHORIZATION,,false +15121,26667dfb-864f-4c36-83fa-0e1e253c0497,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15122,26667dfb-864f-4c36-83fa-0e1e253c0497,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15123,26667dfb-864f-4c36-83fa-0e1e253c0497,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15124,2e74449b-9b92-4f89-8015-2f264de66383,LIST_ACCOUNTS,xs2aListAccounts,true -15125,2e74449b-9b92-4f89-8015-2f264de66383,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15125,2e74449b-9b92-4f89-8015-2f264de66383,LIST_TRANSACTIONS,xs2aListTransactions,true 15126,2e74449b-9b92-4f89-8015-2f264de66383,AUTHORIZATION,,true 15127,2e74449b-9b92-4f89-8015-2f264de66383,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15128,2e74449b-9b92-4f89-8015-2f264de66383,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15129,2e74449b-9b92-4f89-8015-2f264de66383,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15130,591e359e-bf9d-496e-a7c0-ae196952625a,LIST_ACCOUNTS,hbciListAccounts,false -15131,591e359e-bf9d-496e-a7c0-ae196952625a,LIST_TRANSACTIONS,hbciListTransactions,false -15132,591e359e-bf9d-496e-a7c0-ae196952625a,AUTHORIZATION,,false -15133,591e359e-bf9d-496e-a7c0-ae196952625a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15134,591e359e-bf9d-496e-a7c0-ae196952625a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15135,591e359e-bf9d-496e-a7c0-ae196952625a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15130,14e39bdd-d80e-45cd-89d9-6f0e5a012f2a,LIST_ACCOUNTS,hbciListAccounts,false +15131,14e39bdd-d80e-45cd-89d9-6f0e5a012f2a,LIST_TRANSACTIONS,hbciListTransactions,false +15132,14e39bdd-d80e-45cd-89d9-6f0e5a012f2a,AUTHORIZATION,,false +15133,14e39bdd-d80e-45cd-89d9-6f0e5a012f2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15134,14e39bdd-d80e-45cd-89d9-6f0e5a012f2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15135,14e39bdd-d80e-45cd-89d9-6f0e5a012f2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15136,41536e05-a9ca-4647-bd5f-8e377fe35f78,LIST_ACCOUNTS,xs2aListAccounts,true -15137,41536e05-a9ca-4647-bd5f-8e377fe35f78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15137,41536e05-a9ca-4647-bd5f-8e377fe35f78,LIST_TRANSACTIONS,xs2aListTransactions,true 15138,41536e05-a9ca-4647-bd5f-8e377fe35f78,AUTHORIZATION,,true 15139,41536e05-a9ca-4647-bd5f-8e377fe35f78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15140,41536e05-a9ca-4647-bd5f-8e377fe35f78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15141,41536e05-a9ca-4647-bd5f-8e377fe35f78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15142,c519f22b-d765-493e-80fa-6ce3036f8539,LIST_ACCOUNTS,hbciListAccounts,false -15143,c519f22b-d765-493e-80fa-6ce3036f8539,LIST_TRANSACTIONS,hbciListTransactions,false -15144,c519f22b-d765-493e-80fa-6ce3036f8539,AUTHORIZATION,,false -15145,c519f22b-d765-493e-80fa-6ce3036f8539,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15146,c519f22b-d765-493e-80fa-6ce3036f8539,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15147,c519f22b-d765-493e-80fa-6ce3036f8539,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15142,411fef5d-ff12-4aa3-a63a-95304da04736,LIST_ACCOUNTS,hbciListAccounts,false +15143,411fef5d-ff12-4aa3-a63a-95304da04736,LIST_TRANSACTIONS,hbciListTransactions,false +15144,411fef5d-ff12-4aa3-a63a-95304da04736,AUTHORIZATION,,false +15145,411fef5d-ff12-4aa3-a63a-95304da04736,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15146,411fef5d-ff12-4aa3-a63a-95304da04736,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15147,411fef5d-ff12-4aa3-a63a-95304da04736,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15148,e013a2c4-78d3-4c6d-8a8f-ca0e2c5efd0c,LIST_ACCOUNTS,xs2aListAccounts,true -15149,e013a2c4-78d3-4c6d-8a8f-ca0e2c5efd0c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15149,e013a2c4-78d3-4c6d-8a8f-ca0e2c5efd0c,LIST_TRANSACTIONS,xs2aListTransactions,true 15150,e013a2c4-78d3-4c6d-8a8f-ca0e2c5efd0c,AUTHORIZATION,,true 15151,e013a2c4-78d3-4c6d-8a8f-ca0e2c5efd0c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15152,e013a2c4-78d3-4c6d-8a8f-ca0e2c5efd0c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15153,e013a2c4-78d3-4c6d-8a8f-ca0e2c5efd0c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15154,f3d9f6fd-9575-4d59-a1c8-3e601bc2b465,LIST_ACCOUNTS,hbciListAccounts,false -15155,f3d9f6fd-9575-4d59-a1c8-3e601bc2b465,LIST_TRANSACTIONS,hbciListTransactions,false -15156,f3d9f6fd-9575-4d59-a1c8-3e601bc2b465,AUTHORIZATION,,false -15157,f3d9f6fd-9575-4d59-a1c8-3e601bc2b465,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15158,f3d9f6fd-9575-4d59-a1c8-3e601bc2b465,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15159,f3d9f6fd-9575-4d59-a1c8-3e601bc2b465,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15154,94d73192-7030-46a7-95dd-2f58f5f7bcd6,LIST_ACCOUNTS,hbciListAccounts,false +15155,94d73192-7030-46a7-95dd-2f58f5f7bcd6,LIST_TRANSACTIONS,hbciListTransactions,false +15156,94d73192-7030-46a7-95dd-2f58f5f7bcd6,AUTHORIZATION,,false +15157,94d73192-7030-46a7-95dd-2f58f5f7bcd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15158,94d73192-7030-46a7-95dd-2f58f5f7bcd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15159,94d73192-7030-46a7-95dd-2f58f5f7bcd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15160,fc4256f8-85fe-445d-8880-6164d26a35dc,LIST_ACCOUNTS,xs2aListAccounts,true -15161,fc4256f8-85fe-445d-8880-6164d26a35dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15161,fc4256f8-85fe-445d-8880-6164d26a35dc,LIST_TRANSACTIONS,xs2aListTransactions,true 15162,fc4256f8-85fe-445d-8880-6164d26a35dc,AUTHORIZATION,,true 15163,fc4256f8-85fe-445d-8880-6164d26a35dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15164,fc4256f8-85fe-445d-8880-6164d26a35dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15165,fc4256f8-85fe-445d-8880-6164d26a35dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15166,71677633-4e5d-4cc0-a55d-713fb9997bcb,LIST_ACCOUNTS,hbciListAccounts,false -15167,71677633-4e5d-4cc0-a55d-713fb9997bcb,LIST_TRANSACTIONS,hbciListTransactions,false -15168,71677633-4e5d-4cc0-a55d-713fb9997bcb,AUTHORIZATION,,false -15169,71677633-4e5d-4cc0-a55d-713fb9997bcb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15170,71677633-4e5d-4cc0-a55d-713fb9997bcb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15171,71677633-4e5d-4cc0-a55d-713fb9997bcb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15166,6e993d88-98be-471b-b26d-1307aaaac6c7,LIST_ACCOUNTS,hbciListAccounts,false +15167,6e993d88-98be-471b-b26d-1307aaaac6c7,LIST_TRANSACTIONS,hbciListTransactions,false +15168,6e993d88-98be-471b-b26d-1307aaaac6c7,AUTHORIZATION,,false +15169,6e993d88-98be-471b-b26d-1307aaaac6c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15170,6e993d88-98be-471b-b26d-1307aaaac6c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15171,6e993d88-98be-471b-b26d-1307aaaac6c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15172,6570f80c-d39c-4224-8ebe-d25b8500a776,LIST_ACCOUNTS,xs2aListAccounts,true -15173,6570f80c-d39c-4224-8ebe-d25b8500a776,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15173,6570f80c-d39c-4224-8ebe-d25b8500a776,LIST_TRANSACTIONS,xs2aListTransactions,true 15174,6570f80c-d39c-4224-8ebe-d25b8500a776,AUTHORIZATION,,true 15175,6570f80c-d39c-4224-8ebe-d25b8500a776,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15176,6570f80c-d39c-4224-8ebe-d25b8500a776,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15177,6570f80c-d39c-4224-8ebe-d25b8500a776,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15178,093fe9bb-fa9a-4215-bc29-ef68f672be42,LIST_ACCOUNTS,hbciListAccounts,false -15179,093fe9bb-fa9a-4215-bc29-ef68f672be42,LIST_TRANSACTIONS,hbciListTransactions,false -15180,093fe9bb-fa9a-4215-bc29-ef68f672be42,AUTHORIZATION,,false -15181,093fe9bb-fa9a-4215-bc29-ef68f672be42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15182,093fe9bb-fa9a-4215-bc29-ef68f672be42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15183,093fe9bb-fa9a-4215-bc29-ef68f672be42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15178,ed2fef94-a94a-4fcc-8817-4ac9a8449dd3,LIST_ACCOUNTS,hbciListAccounts,false +15179,ed2fef94-a94a-4fcc-8817-4ac9a8449dd3,LIST_TRANSACTIONS,hbciListTransactions,false +15180,ed2fef94-a94a-4fcc-8817-4ac9a8449dd3,AUTHORIZATION,,false +15181,ed2fef94-a94a-4fcc-8817-4ac9a8449dd3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15182,ed2fef94-a94a-4fcc-8817-4ac9a8449dd3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15183,ed2fef94-a94a-4fcc-8817-4ac9a8449dd3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15184,fbd9c0f2-f3e3-4748-af1b-81300b3b5d0a,LIST_ACCOUNTS,xs2aListAccounts,true -15185,fbd9c0f2-f3e3-4748-af1b-81300b3b5d0a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15185,fbd9c0f2-f3e3-4748-af1b-81300b3b5d0a,LIST_TRANSACTIONS,xs2aListTransactions,true 15186,fbd9c0f2-f3e3-4748-af1b-81300b3b5d0a,AUTHORIZATION,,true 15187,fbd9c0f2-f3e3-4748-af1b-81300b3b5d0a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15188,fbd9c0f2-f3e3-4748-af1b-81300b3b5d0a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15189,fbd9c0f2-f3e3-4748-af1b-81300b3b5d0a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15190,6a4a00ca-dd7f-4100-9365-1879c412f959,LIST_ACCOUNTS,hbciListAccounts,false -15191,6a4a00ca-dd7f-4100-9365-1879c412f959,LIST_TRANSACTIONS,hbciListTransactions,false -15192,6a4a00ca-dd7f-4100-9365-1879c412f959,AUTHORIZATION,,false -15193,6a4a00ca-dd7f-4100-9365-1879c412f959,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15194,6a4a00ca-dd7f-4100-9365-1879c412f959,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15195,6a4a00ca-dd7f-4100-9365-1879c412f959,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15190,b4755112-5b15-4567-a58a-8a2d58d35e40,LIST_ACCOUNTS,hbciListAccounts,false +15191,b4755112-5b15-4567-a58a-8a2d58d35e40,LIST_TRANSACTIONS,hbciListTransactions,false +15192,b4755112-5b15-4567-a58a-8a2d58d35e40,AUTHORIZATION,,false +15193,b4755112-5b15-4567-a58a-8a2d58d35e40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15194,b4755112-5b15-4567-a58a-8a2d58d35e40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15195,b4755112-5b15-4567-a58a-8a2d58d35e40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15196,a42bc733-6da2-44e8-92e1-37cf16d56d26,LIST_ACCOUNTS,xs2aListAccounts,true -15197,a42bc733-6da2-44e8-92e1-37cf16d56d26,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15197,a42bc733-6da2-44e8-92e1-37cf16d56d26,LIST_TRANSACTIONS,xs2aListTransactions,true 15198,a42bc733-6da2-44e8-92e1-37cf16d56d26,AUTHORIZATION,,true 15199,a42bc733-6da2-44e8-92e1-37cf16d56d26,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15200,a42bc733-6da2-44e8-92e1-37cf16d56d26,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15201,a42bc733-6da2-44e8-92e1-37cf16d56d26,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15202,a327c68f-ca93-4f92-baf1-9b2a1feb70b1,LIST_ACCOUNTS,hbciListAccounts,false -15203,a327c68f-ca93-4f92-baf1-9b2a1feb70b1,LIST_TRANSACTIONS,hbciListTransactions,false -15204,a327c68f-ca93-4f92-baf1-9b2a1feb70b1,AUTHORIZATION,,false -15205,a327c68f-ca93-4f92-baf1-9b2a1feb70b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15206,a327c68f-ca93-4f92-baf1-9b2a1feb70b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15207,a327c68f-ca93-4f92-baf1-9b2a1feb70b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15202,7f1e364b-0cf4-4fa1-aed3-d87b5ae97253,LIST_ACCOUNTS,hbciListAccounts,false +15203,7f1e364b-0cf4-4fa1-aed3-d87b5ae97253,LIST_TRANSACTIONS,hbciListTransactions,false +15204,7f1e364b-0cf4-4fa1-aed3-d87b5ae97253,AUTHORIZATION,,false +15205,7f1e364b-0cf4-4fa1-aed3-d87b5ae97253,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15206,7f1e364b-0cf4-4fa1-aed3-d87b5ae97253,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15207,7f1e364b-0cf4-4fa1-aed3-d87b5ae97253,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15208,33ccb6e4-d054-4cb2-b4e5-48a922f4b489,LIST_ACCOUNTS,xs2aListAccounts,true -15209,33ccb6e4-d054-4cb2-b4e5-48a922f4b489,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15209,33ccb6e4-d054-4cb2-b4e5-48a922f4b489,LIST_TRANSACTIONS,xs2aListTransactions,true 15210,33ccb6e4-d054-4cb2-b4e5-48a922f4b489,AUTHORIZATION,,true 15211,33ccb6e4-d054-4cb2-b4e5-48a922f4b489,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15212,33ccb6e4-d054-4cb2-b4e5-48a922f4b489,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15213,33ccb6e4-d054-4cb2-b4e5-48a922f4b489,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15214,aebe6e70-7f79-41a2-b450-2d88d66e2724,LIST_ACCOUNTS,hbciListAccounts,false -15215,aebe6e70-7f79-41a2-b450-2d88d66e2724,LIST_TRANSACTIONS,hbciListTransactions,false -15216,aebe6e70-7f79-41a2-b450-2d88d66e2724,AUTHORIZATION,,false -15217,aebe6e70-7f79-41a2-b450-2d88d66e2724,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15218,aebe6e70-7f79-41a2-b450-2d88d66e2724,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15219,aebe6e70-7f79-41a2-b450-2d88d66e2724,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15214,bdf8436b-d0ad-44b6-9c62-a8b2667fc43d,LIST_ACCOUNTS,hbciListAccounts,false +15215,bdf8436b-d0ad-44b6-9c62-a8b2667fc43d,LIST_TRANSACTIONS,hbciListTransactions,false +15216,bdf8436b-d0ad-44b6-9c62-a8b2667fc43d,AUTHORIZATION,,false +15217,bdf8436b-d0ad-44b6-9c62-a8b2667fc43d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15218,bdf8436b-d0ad-44b6-9c62-a8b2667fc43d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15219,bdf8436b-d0ad-44b6-9c62-a8b2667fc43d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15220,d0b79229-f54e-49ae-9dca-5c0b19f3f68d,LIST_ACCOUNTS,xs2aListAccounts,true -15221,d0b79229-f54e-49ae-9dca-5c0b19f3f68d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15221,d0b79229-f54e-49ae-9dca-5c0b19f3f68d,LIST_TRANSACTIONS,xs2aListTransactions,true 15222,d0b79229-f54e-49ae-9dca-5c0b19f3f68d,AUTHORIZATION,,true 15223,d0b79229-f54e-49ae-9dca-5c0b19f3f68d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15224,d0b79229-f54e-49ae-9dca-5c0b19f3f68d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15225,d0b79229-f54e-49ae-9dca-5c0b19f3f68d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15226,2c61a8de-d4fd-4bde-909b-d3521b98b3d6,LIST_ACCOUNTS,hbciListAccounts,false -15227,2c61a8de-d4fd-4bde-909b-d3521b98b3d6,LIST_TRANSACTIONS,hbciListTransactions,false -15228,2c61a8de-d4fd-4bde-909b-d3521b98b3d6,AUTHORIZATION,,false -15229,2c61a8de-d4fd-4bde-909b-d3521b98b3d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15230,2c61a8de-d4fd-4bde-909b-d3521b98b3d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15231,2c61a8de-d4fd-4bde-909b-d3521b98b3d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15226,7dcf0656-1076-4cf8-8e03-9ef13bfe6f66,LIST_ACCOUNTS,hbciListAccounts,false +15227,7dcf0656-1076-4cf8-8e03-9ef13bfe6f66,LIST_TRANSACTIONS,hbciListTransactions,false +15228,7dcf0656-1076-4cf8-8e03-9ef13bfe6f66,AUTHORIZATION,,false +15229,7dcf0656-1076-4cf8-8e03-9ef13bfe6f66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15230,7dcf0656-1076-4cf8-8e03-9ef13bfe6f66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15231,7dcf0656-1076-4cf8-8e03-9ef13bfe6f66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15232,9a1ebe40-3004-4f3a-8a98-886489ecb163,LIST_ACCOUNTS,xs2aListAccounts,true -15233,9a1ebe40-3004-4f3a-8a98-886489ecb163,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15233,9a1ebe40-3004-4f3a-8a98-886489ecb163,LIST_TRANSACTIONS,xs2aListTransactions,true 15234,9a1ebe40-3004-4f3a-8a98-886489ecb163,AUTHORIZATION,,true 15235,9a1ebe40-3004-4f3a-8a98-886489ecb163,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15236,9a1ebe40-3004-4f3a-8a98-886489ecb163,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15237,9a1ebe40-3004-4f3a-8a98-886489ecb163,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15238,a1315a38-6f5d-40f4-92c1-369aff431f47,LIST_ACCOUNTS,hbciListAccounts,false -15239,a1315a38-6f5d-40f4-92c1-369aff431f47,LIST_TRANSACTIONS,hbciListTransactions,false -15240,a1315a38-6f5d-40f4-92c1-369aff431f47,AUTHORIZATION,,false -15241,a1315a38-6f5d-40f4-92c1-369aff431f47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15242,a1315a38-6f5d-40f4-92c1-369aff431f47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15243,a1315a38-6f5d-40f4-92c1-369aff431f47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15238,7a0a437d-c23b-487d-8a82-f9ec964c7f50,LIST_ACCOUNTS,hbciListAccounts,false +15239,7a0a437d-c23b-487d-8a82-f9ec964c7f50,LIST_TRANSACTIONS,hbciListTransactions,false +15240,7a0a437d-c23b-487d-8a82-f9ec964c7f50,AUTHORIZATION,,false +15241,7a0a437d-c23b-487d-8a82-f9ec964c7f50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15242,7a0a437d-c23b-487d-8a82-f9ec964c7f50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15243,7a0a437d-c23b-487d-8a82-f9ec964c7f50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15244,9a1ba312-a48b-401c-98aa-4e00fd1d4037,LIST_ACCOUNTS,xs2aListAccounts,true -15245,9a1ba312-a48b-401c-98aa-4e00fd1d4037,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15245,9a1ba312-a48b-401c-98aa-4e00fd1d4037,LIST_TRANSACTIONS,xs2aListTransactions,true 15246,9a1ba312-a48b-401c-98aa-4e00fd1d4037,AUTHORIZATION,,true 15247,9a1ba312-a48b-401c-98aa-4e00fd1d4037,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15248,9a1ba312-a48b-401c-98aa-4e00fd1d4037,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15249,9a1ba312-a48b-401c-98aa-4e00fd1d4037,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15250,e5d0c49f-bd5a-42c8-8581-d25157bd46d5,LIST_ACCOUNTS,hbciListAccounts,false -15251,e5d0c49f-bd5a-42c8-8581-d25157bd46d5,LIST_TRANSACTIONS,hbciListTransactions,false -15252,e5d0c49f-bd5a-42c8-8581-d25157bd46d5,AUTHORIZATION,,false -15253,e5d0c49f-bd5a-42c8-8581-d25157bd46d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15254,e5d0c49f-bd5a-42c8-8581-d25157bd46d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15255,e5d0c49f-bd5a-42c8-8581-d25157bd46d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15250,7fbde10c-e8d0-4449-898f-7bc399ed837c,LIST_ACCOUNTS,hbciListAccounts,false +15251,7fbde10c-e8d0-4449-898f-7bc399ed837c,LIST_TRANSACTIONS,hbciListTransactions,false +15252,7fbde10c-e8d0-4449-898f-7bc399ed837c,AUTHORIZATION,,false +15253,7fbde10c-e8d0-4449-898f-7bc399ed837c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15254,7fbde10c-e8d0-4449-898f-7bc399ed837c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15255,7fbde10c-e8d0-4449-898f-7bc399ed837c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15256,a986937f-e77a-4f49-b619-b520029964f9,LIST_ACCOUNTS,xs2aListAccounts,true -15257,a986937f-e77a-4f49-b619-b520029964f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15257,a986937f-e77a-4f49-b619-b520029964f9,LIST_TRANSACTIONS,xs2aListTransactions,true 15258,a986937f-e77a-4f49-b619-b520029964f9,AUTHORIZATION,,true 15259,a986937f-e77a-4f49-b619-b520029964f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15260,a986937f-e77a-4f49-b619-b520029964f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15261,a986937f-e77a-4f49-b619-b520029964f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15262,2d03dd4d-c2b1-4605-a6b8-51f7060bae92,LIST_ACCOUNTS,hbciListAccounts,false -15263,2d03dd4d-c2b1-4605-a6b8-51f7060bae92,LIST_TRANSACTIONS,hbciListTransactions,false -15264,2d03dd4d-c2b1-4605-a6b8-51f7060bae92,AUTHORIZATION,,false -15265,2d03dd4d-c2b1-4605-a6b8-51f7060bae92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15266,2d03dd4d-c2b1-4605-a6b8-51f7060bae92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15267,2d03dd4d-c2b1-4605-a6b8-51f7060bae92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15262,7f5bc922-a796-4b7d-ae20-3e6f4ad1aa2e,LIST_ACCOUNTS,hbciListAccounts,false +15263,7f5bc922-a796-4b7d-ae20-3e6f4ad1aa2e,LIST_TRANSACTIONS,hbciListTransactions,false +15264,7f5bc922-a796-4b7d-ae20-3e6f4ad1aa2e,AUTHORIZATION,,false +15265,7f5bc922-a796-4b7d-ae20-3e6f4ad1aa2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15266,7f5bc922-a796-4b7d-ae20-3e6f4ad1aa2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15267,7f5bc922-a796-4b7d-ae20-3e6f4ad1aa2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15268,5affb86c-f1ab-4d3d-b740-6eb4e4c4714b,LIST_ACCOUNTS,xs2aListAccounts,true -15269,5affb86c-f1ab-4d3d-b740-6eb4e4c4714b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15269,5affb86c-f1ab-4d3d-b740-6eb4e4c4714b,LIST_TRANSACTIONS,xs2aListTransactions,true 15270,5affb86c-f1ab-4d3d-b740-6eb4e4c4714b,AUTHORIZATION,,true 15271,5affb86c-f1ab-4d3d-b740-6eb4e4c4714b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15272,5affb86c-f1ab-4d3d-b740-6eb4e4c4714b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15273,5affb86c-f1ab-4d3d-b740-6eb4e4c4714b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15274,c9153d3a-fe3c-4ef4-919b-92c6ae88cbe5,LIST_ACCOUNTS,hbciListAccounts,false -15275,c9153d3a-fe3c-4ef4-919b-92c6ae88cbe5,LIST_TRANSACTIONS,hbciListTransactions,false -15276,c9153d3a-fe3c-4ef4-919b-92c6ae88cbe5,AUTHORIZATION,,false -15277,c9153d3a-fe3c-4ef4-919b-92c6ae88cbe5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15278,c9153d3a-fe3c-4ef4-919b-92c6ae88cbe5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15279,c9153d3a-fe3c-4ef4-919b-92c6ae88cbe5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15274,2a7dcc00-cd3f-4283-9411-0d1cee64d283,LIST_ACCOUNTS,hbciListAccounts,false +15275,2a7dcc00-cd3f-4283-9411-0d1cee64d283,LIST_TRANSACTIONS,hbciListTransactions,false +15276,2a7dcc00-cd3f-4283-9411-0d1cee64d283,AUTHORIZATION,,false +15277,2a7dcc00-cd3f-4283-9411-0d1cee64d283,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15278,2a7dcc00-cd3f-4283-9411-0d1cee64d283,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15279,2a7dcc00-cd3f-4283-9411-0d1cee64d283,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15280,a496980e-a34c-40ee-9e80-eaf94a310d5e,LIST_ACCOUNTS,xs2aListAccounts,true -15281,a496980e-a34c-40ee-9e80-eaf94a310d5e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15281,a496980e-a34c-40ee-9e80-eaf94a310d5e,LIST_TRANSACTIONS,xs2aListTransactions,true 15282,a496980e-a34c-40ee-9e80-eaf94a310d5e,AUTHORIZATION,,true 15283,a496980e-a34c-40ee-9e80-eaf94a310d5e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15284,a496980e-a34c-40ee-9e80-eaf94a310d5e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15285,a496980e-a34c-40ee-9e80-eaf94a310d5e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15286,a71eb66f-c086-45e2-8296-11b33386cb47,LIST_ACCOUNTS,hbciListAccounts,false -15287,a71eb66f-c086-45e2-8296-11b33386cb47,LIST_TRANSACTIONS,hbciListTransactions,false -15288,a71eb66f-c086-45e2-8296-11b33386cb47,AUTHORIZATION,,false -15289,a71eb66f-c086-45e2-8296-11b33386cb47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15290,a71eb66f-c086-45e2-8296-11b33386cb47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15291,a71eb66f-c086-45e2-8296-11b33386cb47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15286,0d25b944-b91c-425d-bcbb-20c6104cdbe7,LIST_ACCOUNTS,hbciListAccounts,false +15287,0d25b944-b91c-425d-bcbb-20c6104cdbe7,LIST_TRANSACTIONS,hbciListTransactions,false +15288,0d25b944-b91c-425d-bcbb-20c6104cdbe7,AUTHORIZATION,,false +15289,0d25b944-b91c-425d-bcbb-20c6104cdbe7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15290,0d25b944-b91c-425d-bcbb-20c6104cdbe7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15291,0d25b944-b91c-425d-bcbb-20c6104cdbe7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15292,be4e2b11-e58b-4805-a70b-f948d2b3a5a9,LIST_ACCOUNTS,xs2aListAccounts,true -15293,be4e2b11-e58b-4805-a70b-f948d2b3a5a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15293,be4e2b11-e58b-4805-a70b-f948d2b3a5a9,LIST_TRANSACTIONS,xs2aListTransactions,true 15294,be4e2b11-e58b-4805-a70b-f948d2b3a5a9,AUTHORIZATION,,true 15295,be4e2b11-e58b-4805-a70b-f948d2b3a5a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15296,be4e2b11-e58b-4805-a70b-f948d2b3a5a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15297,be4e2b11-e58b-4805-a70b-f948d2b3a5a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15298,70f5d65d-5b47-43d9-91b1-c84cd680d78f,LIST_ACCOUNTS,hbciListAccounts,false -15299,70f5d65d-5b47-43d9-91b1-c84cd680d78f,LIST_TRANSACTIONS,hbciListTransactions,false -15300,70f5d65d-5b47-43d9-91b1-c84cd680d78f,AUTHORIZATION,,false -15301,70f5d65d-5b47-43d9-91b1-c84cd680d78f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15302,70f5d65d-5b47-43d9-91b1-c84cd680d78f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15303,70f5d65d-5b47-43d9-91b1-c84cd680d78f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15298,fe5f5561-1347-4b16-8271-bdafc628c254,LIST_ACCOUNTS,hbciListAccounts,false +15299,fe5f5561-1347-4b16-8271-bdafc628c254,LIST_TRANSACTIONS,hbciListTransactions,false +15300,fe5f5561-1347-4b16-8271-bdafc628c254,AUTHORIZATION,,false +15301,fe5f5561-1347-4b16-8271-bdafc628c254,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15302,fe5f5561-1347-4b16-8271-bdafc628c254,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15303,fe5f5561-1347-4b16-8271-bdafc628c254,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15304,e4d19d73-12af-42bb-ae39-9c35059e1272,LIST_ACCOUNTS,xs2aListAccounts,true -15305,e4d19d73-12af-42bb-ae39-9c35059e1272,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15305,e4d19d73-12af-42bb-ae39-9c35059e1272,LIST_TRANSACTIONS,xs2aListTransactions,true 15306,e4d19d73-12af-42bb-ae39-9c35059e1272,AUTHORIZATION,,true 15307,e4d19d73-12af-42bb-ae39-9c35059e1272,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15308,e4d19d73-12af-42bb-ae39-9c35059e1272,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15309,e4d19d73-12af-42bb-ae39-9c35059e1272,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15310,f3ac8a2c-0264-4cfc-b560-e2eec23ff2f7,LIST_ACCOUNTS,hbciListAccounts,false -15311,f3ac8a2c-0264-4cfc-b560-e2eec23ff2f7,LIST_TRANSACTIONS,hbciListTransactions,false -15312,f3ac8a2c-0264-4cfc-b560-e2eec23ff2f7,AUTHORIZATION,,false -15313,f3ac8a2c-0264-4cfc-b560-e2eec23ff2f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15314,f3ac8a2c-0264-4cfc-b560-e2eec23ff2f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15315,f3ac8a2c-0264-4cfc-b560-e2eec23ff2f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15310,751538fa-1b47-45f8-b845-e397f9f3d3fe,LIST_ACCOUNTS,hbciListAccounts,false +15311,751538fa-1b47-45f8-b845-e397f9f3d3fe,LIST_TRANSACTIONS,hbciListTransactions,false +15312,751538fa-1b47-45f8-b845-e397f9f3d3fe,AUTHORIZATION,,false +15313,751538fa-1b47-45f8-b845-e397f9f3d3fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15314,751538fa-1b47-45f8-b845-e397f9f3d3fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15315,751538fa-1b47-45f8-b845-e397f9f3d3fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15316,8b4a3fee-aa38-4b9f-92b9-e7ec7dd4f306,LIST_ACCOUNTS,xs2aListAccounts,true -15317,8b4a3fee-aa38-4b9f-92b9-e7ec7dd4f306,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15317,8b4a3fee-aa38-4b9f-92b9-e7ec7dd4f306,LIST_TRANSACTIONS,xs2aListTransactions,true 15318,8b4a3fee-aa38-4b9f-92b9-e7ec7dd4f306,AUTHORIZATION,,true 15319,8b4a3fee-aa38-4b9f-92b9-e7ec7dd4f306,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15320,8b4a3fee-aa38-4b9f-92b9-e7ec7dd4f306,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15321,8b4a3fee-aa38-4b9f-92b9-e7ec7dd4f306,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15322,1870f96a-4863-4c77-81f6-c55a81635b93,LIST_ACCOUNTS,hbciListAccounts,false -15323,1870f96a-4863-4c77-81f6-c55a81635b93,LIST_TRANSACTIONS,hbciListTransactions,false -15324,1870f96a-4863-4c77-81f6-c55a81635b93,AUTHORIZATION,,false -15325,1870f96a-4863-4c77-81f6-c55a81635b93,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15326,1870f96a-4863-4c77-81f6-c55a81635b93,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15327,1870f96a-4863-4c77-81f6-c55a81635b93,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15322,5b331fb2-4771-4ece-bd30-fdbcd71a0133,LIST_ACCOUNTS,hbciListAccounts,false +15323,5b331fb2-4771-4ece-bd30-fdbcd71a0133,LIST_TRANSACTIONS,hbciListTransactions,false +15324,5b331fb2-4771-4ece-bd30-fdbcd71a0133,AUTHORIZATION,,false +15325,5b331fb2-4771-4ece-bd30-fdbcd71a0133,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15326,5b331fb2-4771-4ece-bd30-fdbcd71a0133,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15327,5b331fb2-4771-4ece-bd30-fdbcd71a0133,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15328,9bc95e06-52de-473f-9c7f-2e503d13a903,LIST_ACCOUNTS,xs2aListAccounts,true -15329,9bc95e06-52de-473f-9c7f-2e503d13a903,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15329,9bc95e06-52de-473f-9c7f-2e503d13a903,LIST_TRANSACTIONS,xs2aListTransactions,true 15330,9bc95e06-52de-473f-9c7f-2e503d13a903,AUTHORIZATION,,true 15331,9bc95e06-52de-473f-9c7f-2e503d13a903,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15332,9bc95e06-52de-473f-9c7f-2e503d13a903,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15333,9bc95e06-52de-473f-9c7f-2e503d13a903,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15334,ea54a4bf-3525-4812-b04c-eced97fee178,LIST_ACCOUNTS,hbciListAccounts,false -15335,ea54a4bf-3525-4812-b04c-eced97fee178,LIST_TRANSACTIONS,hbciListTransactions,false -15336,ea54a4bf-3525-4812-b04c-eced97fee178,AUTHORIZATION,,false -15337,ea54a4bf-3525-4812-b04c-eced97fee178,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15338,ea54a4bf-3525-4812-b04c-eced97fee178,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15339,ea54a4bf-3525-4812-b04c-eced97fee178,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15334,5624050a-8a9b-4b79-9c80-daf18c8eb8cd,LIST_ACCOUNTS,hbciListAccounts,false +15335,5624050a-8a9b-4b79-9c80-daf18c8eb8cd,LIST_TRANSACTIONS,hbciListTransactions,false +15336,5624050a-8a9b-4b79-9c80-daf18c8eb8cd,AUTHORIZATION,,false +15337,5624050a-8a9b-4b79-9c80-daf18c8eb8cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15338,5624050a-8a9b-4b79-9c80-daf18c8eb8cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15339,5624050a-8a9b-4b79-9c80-daf18c8eb8cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15340,49137a2d-8700-49a2-a821-f79c4e7317fe,LIST_ACCOUNTS,xs2aListAccounts,true -15341,49137a2d-8700-49a2-a821-f79c4e7317fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15341,49137a2d-8700-49a2-a821-f79c4e7317fe,LIST_TRANSACTIONS,xs2aListTransactions,true 15342,49137a2d-8700-49a2-a821-f79c4e7317fe,AUTHORIZATION,,true 15343,49137a2d-8700-49a2-a821-f79c4e7317fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15344,49137a2d-8700-49a2-a821-f79c4e7317fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15345,49137a2d-8700-49a2-a821-f79c4e7317fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15346,b76802cd-66ef-4c0b-8f88-0e0be729f11f,LIST_ACCOUNTS,hbciListAccounts,false -15347,b76802cd-66ef-4c0b-8f88-0e0be729f11f,LIST_TRANSACTIONS,hbciListTransactions,false -15348,b76802cd-66ef-4c0b-8f88-0e0be729f11f,AUTHORIZATION,,false -15349,b76802cd-66ef-4c0b-8f88-0e0be729f11f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15350,b76802cd-66ef-4c0b-8f88-0e0be729f11f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15351,b76802cd-66ef-4c0b-8f88-0e0be729f11f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15346,3370d6c9-480f-4d82-b836-8bdd7a88b04b,LIST_ACCOUNTS,hbciListAccounts,false +15347,3370d6c9-480f-4d82-b836-8bdd7a88b04b,LIST_TRANSACTIONS,hbciListTransactions,false +15348,3370d6c9-480f-4d82-b836-8bdd7a88b04b,AUTHORIZATION,,false +15349,3370d6c9-480f-4d82-b836-8bdd7a88b04b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15350,3370d6c9-480f-4d82-b836-8bdd7a88b04b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15351,3370d6c9-480f-4d82-b836-8bdd7a88b04b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15352,49b2a10e-f799-4bec-822c-82347d48452c,LIST_ACCOUNTS,xs2aListAccounts,true -15353,49b2a10e-f799-4bec-822c-82347d48452c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15353,49b2a10e-f799-4bec-822c-82347d48452c,LIST_TRANSACTIONS,xs2aListTransactions,true 15354,49b2a10e-f799-4bec-822c-82347d48452c,AUTHORIZATION,,true 15355,49b2a10e-f799-4bec-822c-82347d48452c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15356,49b2a10e-f799-4bec-822c-82347d48452c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15357,49b2a10e-f799-4bec-822c-82347d48452c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15358,f981dbce-4b72-4c98-abfd-da6c5c6214b6,LIST_ACCOUNTS,hbciListAccounts,false -15359,f981dbce-4b72-4c98-abfd-da6c5c6214b6,LIST_TRANSACTIONS,hbciListTransactions,false -15360,f981dbce-4b72-4c98-abfd-da6c5c6214b6,AUTHORIZATION,,false -15361,f981dbce-4b72-4c98-abfd-da6c5c6214b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15362,f981dbce-4b72-4c98-abfd-da6c5c6214b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15363,f981dbce-4b72-4c98-abfd-da6c5c6214b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15358,a7a4b7a1-d9b2-4f05-96e9-c050937c3bc5,LIST_ACCOUNTS,hbciListAccounts,false +15359,a7a4b7a1-d9b2-4f05-96e9-c050937c3bc5,LIST_TRANSACTIONS,hbciListTransactions,false +15360,a7a4b7a1-d9b2-4f05-96e9-c050937c3bc5,AUTHORIZATION,,false +15361,a7a4b7a1-d9b2-4f05-96e9-c050937c3bc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15362,a7a4b7a1-d9b2-4f05-96e9-c050937c3bc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15363,a7a4b7a1-d9b2-4f05-96e9-c050937c3bc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15364,69f48f9e-c16c-4a22-8ec3-38748403fab4,LIST_ACCOUNTS,xs2aListAccounts,true -15365,69f48f9e-c16c-4a22-8ec3-38748403fab4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15365,69f48f9e-c16c-4a22-8ec3-38748403fab4,LIST_TRANSACTIONS,xs2aListTransactions,true 15366,69f48f9e-c16c-4a22-8ec3-38748403fab4,AUTHORIZATION,,true 15367,69f48f9e-c16c-4a22-8ec3-38748403fab4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15368,69f48f9e-c16c-4a22-8ec3-38748403fab4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15369,69f48f9e-c16c-4a22-8ec3-38748403fab4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15370,d75cc738-ef42-4cf7-97a4-aecfccaba045,LIST_ACCOUNTS,hbciListAccounts,false -15371,d75cc738-ef42-4cf7-97a4-aecfccaba045,LIST_TRANSACTIONS,hbciListTransactions,false -15372,d75cc738-ef42-4cf7-97a4-aecfccaba045,AUTHORIZATION,,false -15373,d75cc738-ef42-4cf7-97a4-aecfccaba045,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15374,d75cc738-ef42-4cf7-97a4-aecfccaba045,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15375,d75cc738-ef42-4cf7-97a4-aecfccaba045,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15370,5e791312-edfa-4311-87a1-ade2306e4c47,LIST_ACCOUNTS,hbciListAccounts,false +15371,5e791312-edfa-4311-87a1-ade2306e4c47,LIST_TRANSACTIONS,hbciListTransactions,false +15372,5e791312-edfa-4311-87a1-ade2306e4c47,AUTHORIZATION,,false +15373,5e791312-edfa-4311-87a1-ade2306e4c47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15374,5e791312-edfa-4311-87a1-ade2306e4c47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15375,5e791312-edfa-4311-87a1-ade2306e4c47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15376,fcbf98a4-c073-4950-9f7a-b21373c60feb,LIST_ACCOUNTS,xs2aListAccounts,true -15377,fcbf98a4-c073-4950-9f7a-b21373c60feb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15377,fcbf98a4-c073-4950-9f7a-b21373c60feb,LIST_TRANSACTIONS,xs2aListTransactions,true 15378,fcbf98a4-c073-4950-9f7a-b21373c60feb,AUTHORIZATION,,true 15379,fcbf98a4-c073-4950-9f7a-b21373c60feb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15380,fcbf98a4-c073-4950-9f7a-b21373c60feb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15381,fcbf98a4-c073-4950-9f7a-b21373c60feb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15382,410bd0d9-3187-4b0a-af7c-24109bd8711e,LIST_ACCOUNTS,hbciListAccounts,false -15383,410bd0d9-3187-4b0a-af7c-24109bd8711e,LIST_TRANSACTIONS,hbciListTransactions,false -15384,410bd0d9-3187-4b0a-af7c-24109bd8711e,AUTHORIZATION,,false -15385,410bd0d9-3187-4b0a-af7c-24109bd8711e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15386,410bd0d9-3187-4b0a-af7c-24109bd8711e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15387,410bd0d9-3187-4b0a-af7c-24109bd8711e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15382,b97f6330-3bf3-4e04-9df5-377d0bd773da,LIST_ACCOUNTS,hbciListAccounts,false +15383,b97f6330-3bf3-4e04-9df5-377d0bd773da,LIST_TRANSACTIONS,hbciListTransactions,false +15384,b97f6330-3bf3-4e04-9df5-377d0bd773da,AUTHORIZATION,,false +15385,b97f6330-3bf3-4e04-9df5-377d0bd773da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15386,b97f6330-3bf3-4e04-9df5-377d0bd773da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15387,b97f6330-3bf3-4e04-9df5-377d0bd773da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15388,3616577f-0ef2-4f45-9dc7-ede421610b58,LIST_ACCOUNTS,xs2aListAccounts,true -15389,3616577f-0ef2-4f45-9dc7-ede421610b58,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15389,3616577f-0ef2-4f45-9dc7-ede421610b58,LIST_TRANSACTIONS,xs2aListTransactions,true 15390,3616577f-0ef2-4f45-9dc7-ede421610b58,AUTHORIZATION,,true 15391,3616577f-0ef2-4f45-9dc7-ede421610b58,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15392,3616577f-0ef2-4f45-9dc7-ede421610b58,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15393,3616577f-0ef2-4f45-9dc7-ede421610b58,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15394,eab232e9-05d3-4b8b-be7a-189d8a17081f,LIST_ACCOUNTS,hbciListAccounts,false -15395,eab232e9-05d3-4b8b-be7a-189d8a17081f,LIST_TRANSACTIONS,hbciListTransactions,false -15396,eab232e9-05d3-4b8b-be7a-189d8a17081f,AUTHORIZATION,,false -15397,eab232e9-05d3-4b8b-be7a-189d8a17081f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15398,eab232e9-05d3-4b8b-be7a-189d8a17081f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15399,eab232e9-05d3-4b8b-be7a-189d8a17081f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15394,818f84c6-261a-4cb1-a6f7-cb7de9498e62,LIST_ACCOUNTS,hbciListAccounts,false +15395,818f84c6-261a-4cb1-a6f7-cb7de9498e62,LIST_TRANSACTIONS,hbciListTransactions,false +15396,818f84c6-261a-4cb1-a6f7-cb7de9498e62,AUTHORIZATION,,false +15397,818f84c6-261a-4cb1-a6f7-cb7de9498e62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15398,818f84c6-261a-4cb1-a6f7-cb7de9498e62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15399,818f84c6-261a-4cb1-a6f7-cb7de9498e62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15400,024a593d-f92a-468f-b994-afc72b5125de,LIST_ACCOUNTS,xs2aListAccounts,true -15401,024a593d-f92a-468f-b994-afc72b5125de,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15401,024a593d-f92a-468f-b994-afc72b5125de,LIST_TRANSACTIONS,xs2aListTransactions,true 15402,024a593d-f92a-468f-b994-afc72b5125de,AUTHORIZATION,,true 15403,024a593d-f92a-468f-b994-afc72b5125de,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15404,024a593d-f92a-468f-b994-afc72b5125de,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15405,024a593d-f92a-468f-b994-afc72b5125de,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15406,d14fcd41-ca46-475c-b254-04462e019cc1,LIST_ACCOUNTS,hbciListAccounts,false -15407,d14fcd41-ca46-475c-b254-04462e019cc1,LIST_TRANSACTIONS,hbciListTransactions,false -15408,d14fcd41-ca46-475c-b254-04462e019cc1,AUTHORIZATION,,false -15409,d14fcd41-ca46-475c-b254-04462e019cc1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15410,d14fcd41-ca46-475c-b254-04462e019cc1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15411,d14fcd41-ca46-475c-b254-04462e019cc1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15406,2e4d5e94-674f-4ba3-b292-c71b30c5081b,LIST_ACCOUNTS,hbciListAccounts,false +15407,2e4d5e94-674f-4ba3-b292-c71b30c5081b,LIST_TRANSACTIONS,hbciListTransactions,false +15408,2e4d5e94-674f-4ba3-b292-c71b30c5081b,AUTHORIZATION,,false +15409,2e4d5e94-674f-4ba3-b292-c71b30c5081b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15410,2e4d5e94-674f-4ba3-b292-c71b30c5081b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15411,2e4d5e94-674f-4ba3-b292-c71b30c5081b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15412,ce6c85c1-4bba-4368-92af-c90144bde499,LIST_ACCOUNTS,xs2aListAccounts,true -15413,ce6c85c1-4bba-4368-92af-c90144bde499,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15413,ce6c85c1-4bba-4368-92af-c90144bde499,LIST_TRANSACTIONS,xs2aListTransactions,true 15414,ce6c85c1-4bba-4368-92af-c90144bde499,AUTHORIZATION,,true 15415,ce6c85c1-4bba-4368-92af-c90144bde499,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15416,ce6c85c1-4bba-4368-92af-c90144bde499,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15417,ce6c85c1-4bba-4368-92af-c90144bde499,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15418,88eef05b-e178-4dcf-ad90-87907b4892cc,LIST_ACCOUNTS,hbciListAccounts,false -15419,88eef05b-e178-4dcf-ad90-87907b4892cc,LIST_TRANSACTIONS,hbciListTransactions,false -15420,88eef05b-e178-4dcf-ad90-87907b4892cc,AUTHORIZATION,,false -15421,88eef05b-e178-4dcf-ad90-87907b4892cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15422,88eef05b-e178-4dcf-ad90-87907b4892cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15423,88eef05b-e178-4dcf-ad90-87907b4892cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15418,356a4d7f-cc17-4f1b-9b2c-bfc5776afbb8,LIST_ACCOUNTS,hbciListAccounts,false +15419,356a4d7f-cc17-4f1b-9b2c-bfc5776afbb8,LIST_TRANSACTIONS,hbciListTransactions,false +15420,356a4d7f-cc17-4f1b-9b2c-bfc5776afbb8,AUTHORIZATION,,false +15421,356a4d7f-cc17-4f1b-9b2c-bfc5776afbb8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15422,356a4d7f-cc17-4f1b-9b2c-bfc5776afbb8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15423,356a4d7f-cc17-4f1b-9b2c-bfc5776afbb8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15424,62adf888-44af-4b82-98b5-0548bbb583d4,LIST_ACCOUNTS,xs2aListAccounts,true -15425,62adf888-44af-4b82-98b5-0548bbb583d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15425,62adf888-44af-4b82-98b5-0548bbb583d4,LIST_TRANSACTIONS,xs2aListTransactions,true 15426,62adf888-44af-4b82-98b5-0548bbb583d4,AUTHORIZATION,,true 15427,62adf888-44af-4b82-98b5-0548bbb583d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15428,62adf888-44af-4b82-98b5-0548bbb583d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15429,62adf888-44af-4b82-98b5-0548bbb583d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15430,9d4c11bc-41f3-4710-bba6-a6cef3bb68f2,LIST_ACCOUNTS,hbciListAccounts,false -15431,9d4c11bc-41f3-4710-bba6-a6cef3bb68f2,LIST_TRANSACTIONS,hbciListTransactions,false -15432,9d4c11bc-41f3-4710-bba6-a6cef3bb68f2,AUTHORIZATION,,false -15433,9d4c11bc-41f3-4710-bba6-a6cef3bb68f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15434,9d4c11bc-41f3-4710-bba6-a6cef3bb68f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15435,9d4c11bc-41f3-4710-bba6-a6cef3bb68f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15430,587fe0aa-c8ff-46d9-932e-987ab5259da0,LIST_ACCOUNTS,hbciListAccounts,false +15431,587fe0aa-c8ff-46d9-932e-987ab5259da0,LIST_TRANSACTIONS,hbciListTransactions,false +15432,587fe0aa-c8ff-46d9-932e-987ab5259da0,AUTHORIZATION,,false +15433,587fe0aa-c8ff-46d9-932e-987ab5259da0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15434,587fe0aa-c8ff-46d9-932e-987ab5259da0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15435,587fe0aa-c8ff-46d9-932e-987ab5259da0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15436,012e565e-a8c9-4457-8c5f-cb75da1e5adb,LIST_ACCOUNTS,xs2aListAccounts,true -15437,012e565e-a8c9-4457-8c5f-cb75da1e5adb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15437,012e565e-a8c9-4457-8c5f-cb75da1e5adb,LIST_TRANSACTIONS,xs2aListTransactions,true 15438,012e565e-a8c9-4457-8c5f-cb75da1e5adb,AUTHORIZATION,,true 15439,012e565e-a8c9-4457-8c5f-cb75da1e5adb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15440,012e565e-a8c9-4457-8c5f-cb75da1e5adb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15441,012e565e-a8c9-4457-8c5f-cb75da1e5adb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15442,68a2d8ae-a15d-483c-b2ed-cfed78d83ab9,LIST_ACCOUNTS,hbciListAccounts,false -15443,68a2d8ae-a15d-483c-b2ed-cfed78d83ab9,LIST_TRANSACTIONS,hbciListTransactions,false -15444,68a2d8ae-a15d-483c-b2ed-cfed78d83ab9,AUTHORIZATION,,false -15445,68a2d8ae-a15d-483c-b2ed-cfed78d83ab9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15446,68a2d8ae-a15d-483c-b2ed-cfed78d83ab9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15447,68a2d8ae-a15d-483c-b2ed-cfed78d83ab9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15442,d217a4c2-3063-4d71-a5cc-ed81687284e0,LIST_ACCOUNTS,hbciListAccounts,false +15443,d217a4c2-3063-4d71-a5cc-ed81687284e0,LIST_TRANSACTIONS,hbciListTransactions,false +15444,d217a4c2-3063-4d71-a5cc-ed81687284e0,AUTHORIZATION,,false +15445,d217a4c2-3063-4d71-a5cc-ed81687284e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15446,d217a4c2-3063-4d71-a5cc-ed81687284e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15447,d217a4c2-3063-4d71-a5cc-ed81687284e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15448,18e357fe-6ecc-4bad-a67e-bd10aef46864,LIST_ACCOUNTS,xs2aListAccounts,true -15449,18e357fe-6ecc-4bad-a67e-bd10aef46864,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15449,18e357fe-6ecc-4bad-a67e-bd10aef46864,LIST_TRANSACTIONS,xs2aListTransactions,true 15450,18e357fe-6ecc-4bad-a67e-bd10aef46864,AUTHORIZATION,,true 15451,18e357fe-6ecc-4bad-a67e-bd10aef46864,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15452,18e357fe-6ecc-4bad-a67e-bd10aef46864,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15453,18e357fe-6ecc-4bad-a67e-bd10aef46864,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15454,a6b6775e-7309-4a88-b48a-dd2036556a05,LIST_ACCOUNTS,hbciListAccounts,false -15455,a6b6775e-7309-4a88-b48a-dd2036556a05,LIST_TRANSACTIONS,hbciListTransactions,false -15456,a6b6775e-7309-4a88-b48a-dd2036556a05,AUTHORIZATION,,false -15457,a6b6775e-7309-4a88-b48a-dd2036556a05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15458,a6b6775e-7309-4a88-b48a-dd2036556a05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15459,a6b6775e-7309-4a88-b48a-dd2036556a05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15454,97a66a34-138a-4d13-815d-651083966547,LIST_ACCOUNTS,hbciListAccounts,false +15455,97a66a34-138a-4d13-815d-651083966547,LIST_TRANSACTIONS,hbciListTransactions,false +15456,97a66a34-138a-4d13-815d-651083966547,AUTHORIZATION,,false +15457,97a66a34-138a-4d13-815d-651083966547,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15458,97a66a34-138a-4d13-815d-651083966547,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15459,97a66a34-138a-4d13-815d-651083966547,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15460,f5e4d73d-7be3-4164-b3f8-ce30096eb492,LIST_ACCOUNTS,xs2aListAccounts,true -15461,f5e4d73d-7be3-4164-b3f8-ce30096eb492,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15461,f5e4d73d-7be3-4164-b3f8-ce30096eb492,LIST_TRANSACTIONS,xs2aListTransactions,true 15462,f5e4d73d-7be3-4164-b3f8-ce30096eb492,AUTHORIZATION,,true 15463,f5e4d73d-7be3-4164-b3f8-ce30096eb492,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15464,f5e4d73d-7be3-4164-b3f8-ce30096eb492,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15465,f5e4d73d-7be3-4164-b3f8-ce30096eb492,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15466,6decacb7-05db-414d-9463-50c58da12080,LIST_ACCOUNTS,hbciListAccounts,false -15467,6decacb7-05db-414d-9463-50c58da12080,LIST_TRANSACTIONS,hbciListTransactions,false -15468,6decacb7-05db-414d-9463-50c58da12080,AUTHORIZATION,,false -15469,6decacb7-05db-414d-9463-50c58da12080,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15470,6decacb7-05db-414d-9463-50c58da12080,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15471,6decacb7-05db-414d-9463-50c58da12080,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15466,366a3a2b-7f6b-4b7c-b363-75fe9720b269,LIST_ACCOUNTS,hbciListAccounts,false +15467,366a3a2b-7f6b-4b7c-b363-75fe9720b269,LIST_TRANSACTIONS,hbciListTransactions,false +15468,366a3a2b-7f6b-4b7c-b363-75fe9720b269,AUTHORIZATION,,false +15469,366a3a2b-7f6b-4b7c-b363-75fe9720b269,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15470,366a3a2b-7f6b-4b7c-b363-75fe9720b269,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15471,366a3a2b-7f6b-4b7c-b363-75fe9720b269,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15472,d21e4455-feec-4e10-9675-70d64950b084,LIST_ACCOUNTS,xs2aListAccounts,true -15473,d21e4455-feec-4e10-9675-70d64950b084,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15473,d21e4455-feec-4e10-9675-70d64950b084,LIST_TRANSACTIONS,xs2aListTransactions,true 15474,d21e4455-feec-4e10-9675-70d64950b084,AUTHORIZATION,,true 15475,d21e4455-feec-4e10-9675-70d64950b084,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15476,d21e4455-feec-4e10-9675-70d64950b084,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15477,d21e4455-feec-4e10-9675-70d64950b084,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15478,d77db535-83c2-4f4e-9013-4c43bc0687e7,LIST_ACCOUNTS,hbciListAccounts,false -15479,d77db535-83c2-4f4e-9013-4c43bc0687e7,LIST_TRANSACTIONS,hbciListTransactions,false -15480,d77db535-83c2-4f4e-9013-4c43bc0687e7,AUTHORIZATION,,false -15481,d77db535-83c2-4f4e-9013-4c43bc0687e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15482,d77db535-83c2-4f4e-9013-4c43bc0687e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15483,d77db535-83c2-4f4e-9013-4c43bc0687e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15478,3f359849-1d0d-4698-9ae0-f1634acff2fd,LIST_ACCOUNTS,hbciListAccounts,false +15479,3f359849-1d0d-4698-9ae0-f1634acff2fd,LIST_TRANSACTIONS,hbciListTransactions,false +15480,3f359849-1d0d-4698-9ae0-f1634acff2fd,AUTHORIZATION,,false +15481,3f359849-1d0d-4698-9ae0-f1634acff2fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15482,3f359849-1d0d-4698-9ae0-f1634acff2fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15483,3f359849-1d0d-4698-9ae0-f1634acff2fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15484,6384141a-cdef-4bd5-931d-65bc0d7ca8f0,LIST_ACCOUNTS,xs2aListAccounts,true -15485,6384141a-cdef-4bd5-931d-65bc0d7ca8f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15485,6384141a-cdef-4bd5-931d-65bc0d7ca8f0,LIST_TRANSACTIONS,xs2aListTransactions,true 15486,6384141a-cdef-4bd5-931d-65bc0d7ca8f0,AUTHORIZATION,,true 15487,6384141a-cdef-4bd5-931d-65bc0d7ca8f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15488,6384141a-cdef-4bd5-931d-65bc0d7ca8f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15489,6384141a-cdef-4bd5-931d-65bc0d7ca8f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15490,282f835f-73ca-4398-9e47-e17410d1feb0,LIST_ACCOUNTS,hbciListAccounts,false -15491,282f835f-73ca-4398-9e47-e17410d1feb0,LIST_TRANSACTIONS,hbciListTransactions,false -15492,282f835f-73ca-4398-9e47-e17410d1feb0,AUTHORIZATION,,false -15493,282f835f-73ca-4398-9e47-e17410d1feb0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15494,282f835f-73ca-4398-9e47-e17410d1feb0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15495,282f835f-73ca-4398-9e47-e17410d1feb0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15490,eafcd179-8053-451c-bba1-f179ad698df4,LIST_ACCOUNTS,hbciListAccounts,false +15491,eafcd179-8053-451c-bba1-f179ad698df4,LIST_TRANSACTIONS,hbciListTransactions,false +15492,eafcd179-8053-451c-bba1-f179ad698df4,AUTHORIZATION,,false +15493,eafcd179-8053-451c-bba1-f179ad698df4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15494,eafcd179-8053-451c-bba1-f179ad698df4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15495,eafcd179-8053-451c-bba1-f179ad698df4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15496,112f402e-f596-440e-8684-acd296938da7,LIST_ACCOUNTS,xs2aListAccounts,true -15497,112f402e-f596-440e-8684-acd296938da7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15497,112f402e-f596-440e-8684-acd296938da7,LIST_TRANSACTIONS,xs2aListTransactions,true 15498,112f402e-f596-440e-8684-acd296938da7,AUTHORIZATION,,true 15499,112f402e-f596-440e-8684-acd296938da7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15500,112f402e-f596-440e-8684-acd296938da7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15501,112f402e-f596-440e-8684-acd296938da7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15502,d55c2b28-c2a5-4e23-819f-a5655e89aa51,LIST_ACCOUNTS,hbciListAccounts,false -15503,d55c2b28-c2a5-4e23-819f-a5655e89aa51,LIST_TRANSACTIONS,hbciListTransactions,false -15504,d55c2b28-c2a5-4e23-819f-a5655e89aa51,AUTHORIZATION,,false -15505,d55c2b28-c2a5-4e23-819f-a5655e89aa51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15506,d55c2b28-c2a5-4e23-819f-a5655e89aa51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15507,d55c2b28-c2a5-4e23-819f-a5655e89aa51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15502,b35629c2-7b20-4681-bcfb-ff71ee912ab0,LIST_ACCOUNTS,hbciListAccounts,false +15503,b35629c2-7b20-4681-bcfb-ff71ee912ab0,LIST_TRANSACTIONS,hbciListTransactions,false +15504,b35629c2-7b20-4681-bcfb-ff71ee912ab0,AUTHORIZATION,,false +15505,b35629c2-7b20-4681-bcfb-ff71ee912ab0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15506,b35629c2-7b20-4681-bcfb-ff71ee912ab0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15507,b35629c2-7b20-4681-bcfb-ff71ee912ab0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15508,96b15c1b-b5c9-4807-8151-d99c129d36af,LIST_ACCOUNTS,xs2aListAccounts,true -15509,96b15c1b-b5c9-4807-8151-d99c129d36af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15509,96b15c1b-b5c9-4807-8151-d99c129d36af,LIST_TRANSACTIONS,xs2aListTransactions,true 15510,96b15c1b-b5c9-4807-8151-d99c129d36af,AUTHORIZATION,,true 15511,96b15c1b-b5c9-4807-8151-d99c129d36af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15512,96b15c1b-b5c9-4807-8151-d99c129d36af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15513,96b15c1b-b5c9-4807-8151-d99c129d36af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15514,75b6a6d9-1a5d-468b-8687-4df6935e74dd,LIST_ACCOUNTS,hbciListAccounts,false -15515,75b6a6d9-1a5d-468b-8687-4df6935e74dd,LIST_TRANSACTIONS,hbciListTransactions,false -15516,75b6a6d9-1a5d-468b-8687-4df6935e74dd,AUTHORIZATION,,false -15517,75b6a6d9-1a5d-468b-8687-4df6935e74dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15518,75b6a6d9-1a5d-468b-8687-4df6935e74dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15519,75b6a6d9-1a5d-468b-8687-4df6935e74dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15514,65f54598-0a93-4f5b-9abd-42e2c665c5d3,LIST_ACCOUNTS,hbciListAccounts,false +15515,65f54598-0a93-4f5b-9abd-42e2c665c5d3,LIST_TRANSACTIONS,hbciListTransactions,false +15516,65f54598-0a93-4f5b-9abd-42e2c665c5d3,AUTHORIZATION,,false +15517,65f54598-0a93-4f5b-9abd-42e2c665c5d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15518,65f54598-0a93-4f5b-9abd-42e2c665c5d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15519,65f54598-0a93-4f5b-9abd-42e2c665c5d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15520,771943c6-c563-4b80-8a84-7cfa1e72561b,LIST_ACCOUNTS,xs2aListAccounts,true -15521,771943c6-c563-4b80-8a84-7cfa1e72561b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15521,771943c6-c563-4b80-8a84-7cfa1e72561b,LIST_TRANSACTIONS,xs2aListTransactions,true 15522,771943c6-c563-4b80-8a84-7cfa1e72561b,AUTHORIZATION,,true 15523,771943c6-c563-4b80-8a84-7cfa1e72561b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15524,771943c6-c563-4b80-8a84-7cfa1e72561b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15525,771943c6-c563-4b80-8a84-7cfa1e72561b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15526,4bffc597-44b2-4c84-acdd-3e79daf14e7d,LIST_ACCOUNTS,hbciListAccounts,false -15527,4bffc597-44b2-4c84-acdd-3e79daf14e7d,LIST_TRANSACTIONS,hbciListTransactions,false -15528,4bffc597-44b2-4c84-acdd-3e79daf14e7d,AUTHORIZATION,,false -15529,4bffc597-44b2-4c84-acdd-3e79daf14e7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15530,4bffc597-44b2-4c84-acdd-3e79daf14e7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15531,4bffc597-44b2-4c84-acdd-3e79daf14e7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15526,9ba72c45-1636-49ef-8b9d-ad808a22a21a,LIST_ACCOUNTS,hbciListAccounts,false +15527,9ba72c45-1636-49ef-8b9d-ad808a22a21a,LIST_TRANSACTIONS,hbciListTransactions,false +15528,9ba72c45-1636-49ef-8b9d-ad808a22a21a,AUTHORIZATION,,false +15529,9ba72c45-1636-49ef-8b9d-ad808a22a21a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15530,9ba72c45-1636-49ef-8b9d-ad808a22a21a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15531,9ba72c45-1636-49ef-8b9d-ad808a22a21a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15532,c5e18156-a041-4203-8b7b-23de4f5a969f,LIST_ACCOUNTS,xs2aListAccounts,true -15533,c5e18156-a041-4203-8b7b-23de4f5a969f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15533,c5e18156-a041-4203-8b7b-23de4f5a969f,LIST_TRANSACTIONS,xs2aListTransactions,true 15534,c5e18156-a041-4203-8b7b-23de4f5a969f,AUTHORIZATION,,true 15535,c5e18156-a041-4203-8b7b-23de4f5a969f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15536,c5e18156-a041-4203-8b7b-23de4f5a969f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15537,c5e18156-a041-4203-8b7b-23de4f5a969f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15538,2b09cc01-c973-4dc6-a8cd-91124bcf0104,LIST_ACCOUNTS,hbciListAccounts,false -15539,2b09cc01-c973-4dc6-a8cd-91124bcf0104,LIST_TRANSACTIONS,hbciListTransactions,false -15540,2b09cc01-c973-4dc6-a8cd-91124bcf0104,AUTHORIZATION,,false -15541,2b09cc01-c973-4dc6-a8cd-91124bcf0104,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15542,2b09cc01-c973-4dc6-a8cd-91124bcf0104,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15543,2b09cc01-c973-4dc6-a8cd-91124bcf0104,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15538,230859c4-8cf7-41ae-ae52-2f2fbcffbcda,LIST_ACCOUNTS,hbciListAccounts,false +15539,230859c4-8cf7-41ae-ae52-2f2fbcffbcda,LIST_TRANSACTIONS,hbciListTransactions,false +15540,230859c4-8cf7-41ae-ae52-2f2fbcffbcda,AUTHORIZATION,,false +15541,230859c4-8cf7-41ae-ae52-2f2fbcffbcda,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15542,230859c4-8cf7-41ae-ae52-2f2fbcffbcda,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15543,230859c4-8cf7-41ae-ae52-2f2fbcffbcda,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15544,aca29e15-e695-4eaf-8dc2-79af8b0e263d,LIST_ACCOUNTS,xs2aListAccounts,true -15545,aca29e15-e695-4eaf-8dc2-79af8b0e263d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15545,aca29e15-e695-4eaf-8dc2-79af8b0e263d,LIST_TRANSACTIONS,xs2aListTransactions,true 15546,aca29e15-e695-4eaf-8dc2-79af8b0e263d,AUTHORIZATION,,true 15547,aca29e15-e695-4eaf-8dc2-79af8b0e263d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15548,aca29e15-e695-4eaf-8dc2-79af8b0e263d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15549,aca29e15-e695-4eaf-8dc2-79af8b0e263d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15550,86f00802-ccae-4905-a6a4-2df3122ccc36,LIST_ACCOUNTS,hbciListAccounts,false -15551,86f00802-ccae-4905-a6a4-2df3122ccc36,LIST_TRANSACTIONS,hbciListTransactions,false -15552,86f00802-ccae-4905-a6a4-2df3122ccc36,AUTHORIZATION,,false -15553,86f00802-ccae-4905-a6a4-2df3122ccc36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15554,86f00802-ccae-4905-a6a4-2df3122ccc36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15555,86f00802-ccae-4905-a6a4-2df3122ccc36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15550,e2ffac52-b078-4ba2-b6c2-3f2bce0260c9,LIST_ACCOUNTS,hbciListAccounts,false +15551,e2ffac52-b078-4ba2-b6c2-3f2bce0260c9,LIST_TRANSACTIONS,hbciListTransactions,false +15552,e2ffac52-b078-4ba2-b6c2-3f2bce0260c9,AUTHORIZATION,,false +15553,e2ffac52-b078-4ba2-b6c2-3f2bce0260c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15554,e2ffac52-b078-4ba2-b6c2-3f2bce0260c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15555,e2ffac52-b078-4ba2-b6c2-3f2bce0260c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15556,17bde955-57a9-4678-a2e6-3702abbc8ed1,LIST_ACCOUNTS,xs2aListAccounts,true -15557,17bde955-57a9-4678-a2e6-3702abbc8ed1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15557,17bde955-57a9-4678-a2e6-3702abbc8ed1,LIST_TRANSACTIONS,xs2aListTransactions,true 15558,17bde955-57a9-4678-a2e6-3702abbc8ed1,AUTHORIZATION,,true 15559,17bde955-57a9-4678-a2e6-3702abbc8ed1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15560,17bde955-57a9-4678-a2e6-3702abbc8ed1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15561,17bde955-57a9-4678-a2e6-3702abbc8ed1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15562,19e5bf05-1666-488e-a5f9-0206ce782efa,LIST_ACCOUNTS,hbciListAccounts,false -15563,19e5bf05-1666-488e-a5f9-0206ce782efa,LIST_TRANSACTIONS,hbciListTransactions,false -15564,19e5bf05-1666-488e-a5f9-0206ce782efa,AUTHORIZATION,,false -15565,19e5bf05-1666-488e-a5f9-0206ce782efa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15566,19e5bf05-1666-488e-a5f9-0206ce782efa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15567,19e5bf05-1666-488e-a5f9-0206ce782efa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15562,887cef5c-41f6-428b-8342-eb22d31e4ec4,LIST_ACCOUNTS,hbciListAccounts,false +15563,887cef5c-41f6-428b-8342-eb22d31e4ec4,LIST_TRANSACTIONS,hbciListTransactions,false +15564,887cef5c-41f6-428b-8342-eb22d31e4ec4,AUTHORIZATION,,false +15565,887cef5c-41f6-428b-8342-eb22d31e4ec4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15566,887cef5c-41f6-428b-8342-eb22d31e4ec4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15567,887cef5c-41f6-428b-8342-eb22d31e4ec4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15568,c7650d43-89db-4e21-b8e8-c147555e9e8b,LIST_ACCOUNTS,xs2aListAccounts,true -15569,c7650d43-89db-4e21-b8e8-c147555e9e8b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15569,c7650d43-89db-4e21-b8e8-c147555e9e8b,LIST_TRANSACTIONS,xs2aListTransactions,true 15570,c7650d43-89db-4e21-b8e8-c147555e9e8b,AUTHORIZATION,,true 15571,c7650d43-89db-4e21-b8e8-c147555e9e8b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15572,c7650d43-89db-4e21-b8e8-c147555e9e8b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15573,c7650d43-89db-4e21-b8e8-c147555e9e8b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15574,4f0d7422-d06b-4e17-bb40-4c20a401dba1,LIST_ACCOUNTS,hbciListAccounts,false -15575,4f0d7422-d06b-4e17-bb40-4c20a401dba1,LIST_TRANSACTIONS,hbciListTransactions,false -15576,4f0d7422-d06b-4e17-bb40-4c20a401dba1,AUTHORIZATION,,false -15577,4f0d7422-d06b-4e17-bb40-4c20a401dba1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15578,4f0d7422-d06b-4e17-bb40-4c20a401dba1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15579,4f0d7422-d06b-4e17-bb40-4c20a401dba1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15574,23cad5af-4e92-43ff-8249-ac410c00dafe,LIST_ACCOUNTS,hbciListAccounts,false +15575,23cad5af-4e92-43ff-8249-ac410c00dafe,LIST_TRANSACTIONS,hbciListTransactions,false +15576,23cad5af-4e92-43ff-8249-ac410c00dafe,AUTHORIZATION,,false +15577,23cad5af-4e92-43ff-8249-ac410c00dafe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15578,23cad5af-4e92-43ff-8249-ac410c00dafe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15579,23cad5af-4e92-43ff-8249-ac410c00dafe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15580,f405c267-db0a-41af-ab01-06f759ca583f,LIST_ACCOUNTS,xs2aListAccounts,true -15581,f405c267-db0a-41af-ab01-06f759ca583f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15581,f405c267-db0a-41af-ab01-06f759ca583f,LIST_TRANSACTIONS,xs2aListTransactions,true 15582,f405c267-db0a-41af-ab01-06f759ca583f,AUTHORIZATION,,true 15583,f405c267-db0a-41af-ab01-06f759ca583f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15584,f405c267-db0a-41af-ab01-06f759ca583f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15585,f405c267-db0a-41af-ab01-06f759ca583f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15586,b429d03d-acad-4ae7-b43b-4dff50b40207,LIST_ACCOUNTS,hbciListAccounts,false -15587,b429d03d-acad-4ae7-b43b-4dff50b40207,LIST_TRANSACTIONS,hbciListTransactions,false -15588,b429d03d-acad-4ae7-b43b-4dff50b40207,AUTHORIZATION,,false -15589,b429d03d-acad-4ae7-b43b-4dff50b40207,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15590,b429d03d-acad-4ae7-b43b-4dff50b40207,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15591,b429d03d-acad-4ae7-b43b-4dff50b40207,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15586,ca1c2b48-ff92-441f-84aa-248dd6f7c898,LIST_ACCOUNTS,hbciListAccounts,false +15587,ca1c2b48-ff92-441f-84aa-248dd6f7c898,LIST_TRANSACTIONS,hbciListTransactions,false +15588,ca1c2b48-ff92-441f-84aa-248dd6f7c898,AUTHORIZATION,,false +15589,ca1c2b48-ff92-441f-84aa-248dd6f7c898,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15590,ca1c2b48-ff92-441f-84aa-248dd6f7c898,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15591,ca1c2b48-ff92-441f-84aa-248dd6f7c898,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15592,09098c3b-bbcf-496d-acc4-0c9868f56f62,LIST_ACCOUNTS,xs2aListAccounts,true -15593,09098c3b-bbcf-496d-acc4-0c9868f56f62,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15593,09098c3b-bbcf-496d-acc4-0c9868f56f62,LIST_TRANSACTIONS,xs2aListTransactions,true 15594,09098c3b-bbcf-496d-acc4-0c9868f56f62,AUTHORIZATION,,true 15595,09098c3b-bbcf-496d-acc4-0c9868f56f62,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15596,09098c3b-bbcf-496d-acc4-0c9868f56f62,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15597,09098c3b-bbcf-496d-acc4-0c9868f56f62,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15598,a1f8de5b-35ce-4b55-82bd-975de9d2ea80,LIST_ACCOUNTS,hbciListAccounts,false -15599,a1f8de5b-35ce-4b55-82bd-975de9d2ea80,LIST_TRANSACTIONS,hbciListTransactions,false -15600,a1f8de5b-35ce-4b55-82bd-975de9d2ea80,AUTHORIZATION,,false -15601,a1f8de5b-35ce-4b55-82bd-975de9d2ea80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15602,a1f8de5b-35ce-4b55-82bd-975de9d2ea80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15603,a1f8de5b-35ce-4b55-82bd-975de9d2ea80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15598,12062944-340a-4ec6-949f-d3d5ad578dc8,LIST_ACCOUNTS,hbciListAccounts,false +15599,12062944-340a-4ec6-949f-d3d5ad578dc8,LIST_TRANSACTIONS,hbciListTransactions,false +15600,12062944-340a-4ec6-949f-d3d5ad578dc8,AUTHORIZATION,,false +15601,12062944-340a-4ec6-949f-d3d5ad578dc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15602,12062944-340a-4ec6-949f-d3d5ad578dc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15603,12062944-340a-4ec6-949f-d3d5ad578dc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15604,5b85b9d5-463c-4ab0-a379-4ebaf568e63c,LIST_ACCOUNTS,xs2aListAccounts,true -15605,5b85b9d5-463c-4ab0-a379-4ebaf568e63c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15605,5b85b9d5-463c-4ab0-a379-4ebaf568e63c,LIST_TRANSACTIONS,xs2aListTransactions,true 15606,5b85b9d5-463c-4ab0-a379-4ebaf568e63c,AUTHORIZATION,,true 15607,5b85b9d5-463c-4ab0-a379-4ebaf568e63c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15608,5b85b9d5-463c-4ab0-a379-4ebaf568e63c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15609,5b85b9d5-463c-4ab0-a379-4ebaf568e63c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15610,73ee15a5-73b5-4234-9c74-75dd347652a9,LIST_ACCOUNTS,hbciListAccounts,false -15611,73ee15a5-73b5-4234-9c74-75dd347652a9,LIST_TRANSACTIONS,hbciListTransactions,false -15612,73ee15a5-73b5-4234-9c74-75dd347652a9,AUTHORIZATION,,false -15613,73ee15a5-73b5-4234-9c74-75dd347652a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15614,73ee15a5-73b5-4234-9c74-75dd347652a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15615,73ee15a5-73b5-4234-9c74-75dd347652a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15610,870a5b71-8aa0-4cb3-8257-3e8e1baf5a89,LIST_ACCOUNTS,hbciListAccounts,false +15611,870a5b71-8aa0-4cb3-8257-3e8e1baf5a89,LIST_TRANSACTIONS,hbciListTransactions,false +15612,870a5b71-8aa0-4cb3-8257-3e8e1baf5a89,AUTHORIZATION,,false +15613,870a5b71-8aa0-4cb3-8257-3e8e1baf5a89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15614,870a5b71-8aa0-4cb3-8257-3e8e1baf5a89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15615,870a5b71-8aa0-4cb3-8257-3e8e1baf5a89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15616,6172ab66-2313-4e92-a4c3-e07f3829544c,LIST_ACCOUNTS,xs2aListAccounts,true -15617,6172ab66-2313-4e92-a4c3-e07f3829544c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15617,6172ab66-2313-4e92-a4c3-e07f3829544c,LIST_TRANSACTIONS,xs2aListTransactions,true 15618,6172ab66-2313-4e92-a4c3-e07f3829544c,AUTHORIZATION,,true 15619,6172ab66-2313-4e92-a4c3-e07f3829544c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15620,6172ab66-2313-4e92-a4c3-e07f3829544c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15621,6172ab66-2313-4e92-a4c3-e07f3829544c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15622,42d0d22b-4f02-4ff9-9c5c-9a4c99c62005,LIST_ACCOUNTS,hbciListAccounts,false -15623,42d0d22b-4f02-4ff9-9c5c-9a4c99c62005,LIST_TRANSACTIONS,hbciListTransactions,false -15624,42d0d22b-4f02-4ff9-9c5c-9a4c99c62005,AUTHORIZATION,,false -15625,42d0d22b-4f02-4ff9-9c5c-9a4c99c62005,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15626,42d0d22b-4f02-4ff9-9c5c-9a4c99c62005,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15627,42d0d22b-4f02-4ff9-9c5c-9a4c99c62005,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15622,56f05ba6-e18b-4cdb-902f-b5d54c078264,LIST_ACCOUNTS,hbciListAccounts,false +15623,56f05ba6-e18b-4cdb-902f-b5d54c078264,LIST_TRANSACTIONS,hbciListTransactions,false +15624,56f05ba6-e18b-4cdb-902f-b5d54c078264,AUTHORIZATION,,false +15625,56f05ba6-e18b-4cdb-902f-b5d54c078264,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15626,56f05ba6-e18b-4cdb-902f-b5d54c078264,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15627,56f05ba6-e18b-4cdb-902f-b5d54c078264,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15628,9ec6a789-4fba-4b7b-8e7c-cc7f0b32f82d,LIST_ACCOUNTS,xs2aListAccounts,true -15629,9ec6a789-4fba-4b7b-8e7c-cc7f0b32f82d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15629,9ec6a789-4fba-4b7b-8e7c-cc7f0b32f82d,LIST_TRANSACTIONS,xs2aListTransactions,true 15630,9ec6a789-4fba-4b7b-8e7c-cc7f0b32f82d,AUTHORIZATION,,true 15631,9ec6a789-4fba-4b7b-8e7c-cc7f0b32f82d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15632,9ec6a789-4fba-4b7b-8e7c-cc7f0b32f82d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15633,9ec6a789-4fba-4b7b-8e7c-cc7f0b32f82d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15634,cee5789b-b02b-41ce-8d3b-07656d0cbf9a,LIST_ACCOUNTS,hbciListAccounts,false -15635,cee5789b-b02b-41ce-8d3b-07656d0cbf9a,LIST_TRANSACTIONS,hbciListTransactions,false -15636,cee5789b-b02b-41ce-8d3b-07656d0cbf9a,AUTHORIZATION,,false -15637,cee5789b-b02b-41ce-8d3b-07656d0cbf9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15638,cee5789b-b02b-41ce-8d3b-07656d0cbf9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15639,cee5789b-b02b-41ce-8d3b-07656d0cbf9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15634,d04a366e-8c5c-4869-9e0a-eecd2ed69590,LIST_ACCOUNTS,hbciListAccounts,false +15635,d04a366e-8c5c-4869-9e0a-eecd2ed69590,LIST_TRANSACTIONS,hbciListTransactions,false +15636,d04a366e-8c5c-4869-9e0a-eecd2ed69590,AUTHORIZATION,,false +15637,d04a366e-8c5c-4869-9e0a-eecd2ed69590,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15638,d04a366e-8c5c-4869-9e0a-eecd2ed69590,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15639,d04a366e-8c5c-4869-9e0a-eecd2ed69590,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15640,17d517e5-5339-435d-83bf-fc94e3ba6378,LIST_ACCOUNTS,xs2aListAccounts,true -15641,17d517e5-5339-435d-83bf-fc94e3ba6378,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15641,17d517e5-5339-435d-83bf-fc94e3ba6378,LIST_TRANSACTIONS,xs2aListTransactions,true 15642,17d517e5-5339-435d-83bf-fc94e3ba6378,AUTHORIZATION,,true 15643,17d517e5-5339-435d-83bf-fc94e3ba6378,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15644,17d517e5-5339-435d-83bf-fc94e3ba6378,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15645,17d517e5-5339-435d-83bf-fc94e3ba6378,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15646,10390b61-166a-4512-973d-be8e0c6ed1c0,LIST_ACCOUNTS,hbciListAccounts,false -15647,10390b61-166a-4512-973d-be8e0c6ed1c0,LIST_TRANSACTIONS,hbciListTransactions,false -15648,10390b61-166a-4512-973d-be8e0c6ed1c0,AUTHORIZATION,,false -15649,10390b61-166a-4512-973d-be8e0c6ed1c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15650,10390b61-166a-4512-973d-be8e0c6ed1c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15651,10390b61-166a-4512-973d-be8e0c6ed1c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15646,3ec09e96-e91e-48dc-a7d5-7c449f01cf0a,LIST_ACCOUNTS,hbciListAccounts,false +15647,3ec09e96-e91e-48dc-a7d5-7c449f01cf0a,LIST_TRANSACTIONS,hbciListTransactions,false +15648,3ec09e96-e91e-48dc-a7d5-7c449f01cf0a,AUTHORIZATION,,false +15649,3ec09e96-e91e-48dc-a7d5-7c449f01cf0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15650,3ec09e96-e91e-48dc-a7d5-7c449f01cf0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15651,3ec09e96-e91e-48dc-a7d5-7c449f01cf0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15652,56746168-e73e-4bb4-afd3-50246ac42fb8,LIST_ACCOUNTS,xs2aListAccounts,true -15653,56746168-e73e-4bb4-afd3-50246ac42fb8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15653,56746168-e73e-4bb4-afd3-50246ac42fb8,LIST_TRANSACTIONS,xs2aListTransactions,true 15654,56746168-e73e-4bb4-afd3-50246ac42fb8,AUTHORIZATION,,true 15655,56746168-e73e-4bb4-afd3-50246ac42fb8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15656,56746168-e73e-4bb4-afd3-50246ac42fb8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15657,56746168-e73e-4bb4-afd3-50246ac42fb8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15658,ab31e025-9c7f-4e60-90aa-1c37b0a5f2b2,LIST_ACCOUNTS,hbciListAccounts,false -15659,ab31e025-9c7f-4e60-90aa-1c37b0a5f2b2,LIST_TRANSACTIONS,hbciListTransactions,false -15660,ab31e025-9c7f-4e60-90aa-1c37b0a5f2b2,AUTHORIZATION,,false -15661,ab31e025-9c7f-4e60-90aa-1c37b0a5f2b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15662,ab31e025-9c7f-4e60-90aa-1c37b0a5f2b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15663,ab31e025-9c7f-4e60-90aa-1c37b0a5f2b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15658,7fd2363e-c975-4a87-9fff-8123c5798796,LIST_ACCOUNTS,hbciListAccounts,false +15659,7fd2363e-c975-4a87-9fff-8123c5798796,LIST_TRANSACTIONS,hbciListTransactions,false +15660,7fd2363e-c975-4a87-9fff-8123c5798796,AUTHORIZATION,,false +15661,7fd2363e-c975-4a87-9fff-8123c5798796,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15662,7fd2363e-c975-4a87-9fff-8123c5798796,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15663,7fd2363e-c975-4a87-9fff-8123c5798796,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15664,dfee7c33-5440-40d1-a165-2486587813c6,LIST_ACCOUNTS,xs2aListAccounts,true -15665,dfee7c33-5440-40d1-a165-2486587813c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15665,dfee7c33-5440-40d1-a165-2486587813c6,LIST_TRANSACTIONS,xs2aListTransactions,true 15666,dfee7c33-5440-40d1-a165-2486587813c6,AUTHORIZATION,,true 15667,dfee7c33-5440-40d1-a165-2486587813c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15668,dfee7c33-5440-40d1-a165-2486587813c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15669,dfee7c33-5440-40d1-a165-2486587813c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15670,3d7aa73b-6225-46c8-89e2-aeb28031341a,LIST_ACCOUNTS,hbciListAccounts,false -15671,3d7aa73b-6225-46c8-89e2-aeb28031341a,LIST_TRANSACTIONS,hbciListTransactions,false -15672,3d7aa73b-6225-46c8-89e2-aeb28031341a,AUTHORIZATION,,false -15673,3d7aa73b-6225-46c8-89e2-aeb28031341a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15674,3d7aa73b-6225-46c8-89e2-aeb28031341a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15675,3d7aa73b-6225-46c8-89e2-aeb28031341a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15670,13b07d87-8cba-414e-94fd-6c058b11f1b0,LIST_ACCOUNTS,hbciListAccounts,false +15671,13b07d87-8cba-414e-94fd-6c058b11f1b0,LIST_TRANSACTIONS,hbciListTransactions,false +15672,13b07d87-8cba-414e-94fd-6c058b11f1b0,AUTHORIZATION,,false +15673,13b07d87-8cba-414e-94fd-6c058b11f1b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15674,13b07d87-8cba-414e-94fd-6c058b11f1b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15675,13b07d87-8cba-414e-94fd-6c058b11f1b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15676,6b4d0d8b-bf05-413b-a356-3a3eef232de9,LIST_ACCOUNTS,xs2aListAccounts,true -15677,6b4d0d8b-bf05-413b-a356-3a3eef232de9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15677,6b4d0d8b-bf05-413b-a356-3a3eef232de9,LIST_TRANSACTIONS,xs2aListTransactions,true 15678,6b4d0d8b-bf05-413b-a356-3a3eef232de9,AUTHORIZATION,,true 15679,6b4d0d8b-bf05-413b-a356-3a3eef232de9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15680,6b4d0d8b-bf05-413b-a356-3a3eef232de9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15681,6b4d0d8b-bf05-413b-a356-3a3eef232de9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15682,2367f124-4cd1-41a8-936c-3e5898d0abe8,LIST_ACCOUNTS,hbciListAccounts,false -15683,2367f124-4cd1-41a8-936c-3e5898d0abe8,LIST_TRANSACTIONS,hbciListTransactions,false -15684,2367f124-4cd1-41a8-936c-3e5898d0abe8,AUTHORIZATION,,false -15685,2367f124-4cd1-41a8-936c-3e5898d0abe8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15686,2367f124-4cd1-41a8-936c-3e5898d0abe8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15687,2367f124-4cd1-41a8-936c-3e5898d0abe8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15682,abe239ce-02e2-4874-bdc3-059e6a92e4c2,LIST_ACCOUNTS,hbciListAccounts,false +15683,abe239ce-02e2-4874-bdc3-059e6a92e4c2,LIST_TRANSACTIONS,hbciListTransactions,false +15684,abe239ce-02e2-4874-bdc3-059e6a92e4c2,AUTHORIZATION,,false +15685,abe239ce-02e2-4874-bdc3-059e6a92e4c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15686,abe239ce-02e2-4874-bdc3-059e6a92e4c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15687,abe239ce-02e2-4874-bdc3-059e6a92e4c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15688,ff8bf60a-663a-4367-930f-a15b0ed1c5a4,LIST_ACCOUNTS,xs2aListAccounts,true -15689,ff8bf60a-663a-4367-930f-a15b0ed1c5a4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15689,ff8bf60a-663a-4367-930f-a15b0ed1c5a4,LIST_TRANSACTIONS,xs2aListTransactions,true 15690,ff8bf60a-663a-4367-930f-a15b0ed1c5a4,AUTHORIZATION,,true 15691,ff8bf60a-663a-4367-930f-a15b0ed1c5a4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15692,ff8bf60a-663a-4367-930f-a15b0ed1c5a4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15693,ff8bf60a-663a-4367-930f-a15b0ed1c5a4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15694,c1841f9d-7ecf-4228-84ca-cf944dcc612f,LIST_ACCOUNTS,hbciListAccounts,false -15695,c1841f9d-7ecf-4228-84ca-cf944dcc612f,LIST_TRANSACTIONS,hbciListTransactions,false -15696,c1841f9d-7ecf-4228-84ca-cf944dcc612f,AUTHORIZATION,,false -15697,c1841f9d-7ecf-4228-84ca-cf944dcc612f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15698,c1841f9d-7ecf-4228-84ca-cf944dcc612f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15699,c1841f9d-7ecf-4228-84ca-cf944dcc612f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15694,408fad48-f49e-401c-b469-19c2286fb0d9,LIST_ACCOUNTS,hbciListAccounts,false +15695,408fad48-f49e-401c-b469-19c2286fb0d9,LIST_TRANSACTIONS,hbciListTransactions,false +15696,408fad48-f49e-401c-b469-19c2286fb0d9,AUTHORIZATION,,false +15697,408fad48-f49e-401c-b469-19c2286fb0d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15698,408fad48-f49e-401c-b469-19c2286fb0d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15699,408fad48-f49e-401c-b469-19c2286fb0d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15700,b25fef9a-a6ca-46a2-a15b-9345e9925560,LIST_ACCOUNTS,xs2aListAccounts,true -15701,b25fef9a-a6ca-46a2-a15b-9345e9925560,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15701,b25fef9a-a6ca-46a2-a15b-9345e9925560,LIST_TRANSACTIONS,xs2aListTransactions,true 15702,b25fef9a-a6ca-46a2-a15b-9345e9925560,AUTHORIZATION,,true 15703,b25fef9a-a6ca-46a2-a15b-9345e9925560,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15704,b25fef9a-a6ca-46a2-a15b-9345e9925560,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15705,b25fef9a-a6ca-46a2-a15b-9345e9925560,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15706,21ca1608-0552-4a55-b52a-93035f4233f4,LIST_ACCOUNTS,hbciListAccounts,false -15707,21ca1608-0552-4a55-b52a-93035f4233f4,LIST_TRANSACTIONS,hbciListTransactions,false -15708,21ca1608-0552-4a55-b52a-93035f4233f4,AUTHORIZATION,,false -15709,21ca1608-0552-4a55-b52a-93035f4233f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15710,21ca1608-0552-4a55-b52a-93035f4233f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15711,21ca1608-0552-4a55-b52a-93035f4233f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15706,701e44af-9f24-4ae1-b861-11069972b371,LIST_ACCOUNTS,hbciListAccounts,false +15707,701e44af-9f24-4ae1-b861-11069972b371,LIST_TRANSACTIONS,hbciListTransactions,false +15708,701e44af-9f24-4ae1-b861-11069972b371,AUTHORIZATION,,false +15709,701e44af-9f24-4ae1-b861-11069972b371,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15710,701e44af-9f24-4ae1-b861-11069972b371,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15711,701e44af-9f24-4ae1-b861-11069972b371,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15712,7ebfa7e8-a279-467a-bd7f-87c933532fa2,LIST_ACCOUNTS,xs2aListAccounts,true -15713,7ebfa7e8-a279-467a-bd7f-87c933532fa2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15713,7ebfa7e8-a279-467a-bd7f-87c933532fa2,LIST_TRANSACTIONS,xs2aListTransactions,true 15714,7ebfa7e8-a279-467a-bd7f-87c933532fa2,AUTHORIZATION,,true 15715,7ebfa7e8-a279-467a-bd7f-87c933532fa2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15716,7ebfa7e8-a279-467a-bd7f-87c933532fa2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15717,7ebfa7e8-a279-467a-bd7f-87c933532fa2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15718,2b00d56d-b280-46cf-acf1-5d1cc3a09aaa,LIST_ACCOUNTS,hbciListAccounts,false -15719,2b00d56d-b280-46cf-acf1-5d1cc3a09aaa,LIST_TRANSACTIONS,hbciListTransactions,false -15720,2b00d56d-b280-46cf-acf1-5d1cc3a09aaa,AUTHORIZATION,,false -15721,2b00d56d-b280-46cf-acf1-5d1cc3a09aaa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15722,2b00d56d-b280-46cf-acf1-5d1cc3a09aaa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15723,2b00d56d-b280-46cf-acf1-5d1cc3a09aaa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15718,9ac2a3f4-943b-4aa0-ad96-8f0efa30c13d,LIST_ACCOUNTS,hbciListAccounts,false +15719,9ac2a3f4-943b-4aa0-ad96-8f0efa30c13d,LIST_TRANSACTIONS,hbciListTransactions,false +15720,9ac2a3f4-943b-4aa0-ad96-8f0efa30c13d,AUTHORIZATION,,false +15721,9ac2a3f4-943b-4aa0-ad96-8f0efa30c13d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15722,9ac2a3f4-943b-4aa0-ad96-8f0efa30c13d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15723,9ac2a3f4-943b-4aa0-ad96-8f0efa30c13d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15724,a8611cf2-9086-49d1-a847-aa2712e3ed16,LIST_ACCOUNTS,xs2aListAccounts,true -15725,a8611cf2-9086-49d1-a847-aa2712e3ed16,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15725,a8611cf2-9086-49d1-a847-aa2712e3ed16,LIST_TRANSACTIONS,xs2aListTransactions,true 15726,a8611cf2-9086-49d1-a847-aa2712e3ed16,AUTHORIZATION,,true 15727,a8611cf2-9086-49d1-a847-aa2712e3ed16,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15728,a8611cf2-9086-49d1-a847-aa2712e3ed16,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15729,a8611cf2-9086-49d1-a847-aa2712e3ed16,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15730,0f8d74b9-2c39-4950-b845-d15065ee7a18,LIST_ACCOUNTS,hbciListAccounts,false -15731,0f8d74b9-2c39-4950-b845-d15065ee7a18,LIST_TRANSACTIONS,hbciListTransactions,false -15732,0f8d74b9-2c39-4950-b845-d15065ee7a18,AUTHORIZATION,,false -15733,0f8d74b9-2c39-4950-b845-d15065ee7a18,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15734,0f8d74b9-2c39-4950-b845-d15065ee7a18,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15735,0f8d74b9-2c39-4950-b845-d15065ee7a18,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15730,5dc531fe-2732-4143-baf3-abb84003051b,LIST_ACCOUNTS,hbciListAccounts,false +15731,5dc531fe-2732-4143-baf3-abb84003051b,LIST_TRANSACTIONS,hbciListTransactions,false +15732,5dc531fe-2732-4143-baf3-abb84003051b,AUTHORIZATION,,false +15733,5dc531fe-2732-4143-baf3-abb84003051b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15734,5dc531fe-2732-4143-baf3-abb84003051b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15735,5dc531fe-2732-4143-baf3-abb84003051b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15736,f3a9a12a-e5c0-42a6-9398-8f2c55cce91a,LIST_ACCOUNTS,xs2aListAccounts,true -15737,f3a9a12a-e5c0-42a6-9398-8f2c55cce91a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15737,f3a9a12a-e5c0-42a6-9398-8f2c55cce91a,LIST_TRANSACTIONS,xs2aListTransactions,true 15738,f3a9a12a-e5c0-42a6-9398-8f2c55cce91a,AUTHORIZATION,,true 15739,f3a9a12a-e5c0-42a6-9398-8f2c55cce91a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15740,f3a9a12a-e5c0-42a6-9398-8f2c55cce91a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15741,f3a9a12a-e5c0-42a6-9398-8f2c55cce91a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15742,504a4412-2f54-4d63-8c97-f65f4d0116ba,LIST_ACCOUNTS,hbciListAccounts,false -15743,504a4412-2f54-4d63-8c97-f65f4d0116ba,LIST_TRANSACTIONS,hbciListTransactions,false -15744,504a4412-2f54-4d63-8c97-f65f4d0116ba,AUTHORIZATION,,false -15745,504a4412-2f54-4d63-8c97-f65f4d0116ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15746,504a4412-2f54-4d63-8c97-f65f4d0116ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15747,504a4412-2f54-4d63-8c97-f65f4d0116ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15742,2e21fe48-b854-4178-8050-47ea225e1d44,LIST_ACCOUNTS,hbciListAccounts,false +15743,2e21fe48-b854-4178-8050-47ea225e1d44,LIST_TRANSACTIONS,hbciListTransactions,false +15744,2e21fe48-b854-4178-8050-47ea225e1d44,AUTHORIZATION,,false +15745,2e21fe48-b854-4178-8050-47ea225e1d44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15746,2e21fe48-b854-4178-8050-47ea225e1d44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15747,2e21fe48-b854-4178-8050-47ea225e1d44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15748,1712786c-89ea-481f-b1f7-fd991fcb375b,LIST_ACCOUNTS,xs2aListAccounts,true -15749,1712786c-89ea-481f-b1f7-fd991fcb375b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15749,1712786c-89ea-481f-b1f7-fd991fcb375b,LIST_TRANSACTIONS,xs2aListTransactions,true 15750,1712786c-89ea-481f-b1f7-fd991fcb375b,AUTHORIZATION,,true 15751,1712786c-89ea-481f-b1f7-fd991fcb375b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15752,1712786c-89ea-481f-b1f7-fd991fcb375b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15753,1712786c-89ea-481f-b1f7-fd991fcb375b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15754,25b790aa-e46d-461e-bc02-79ab01cd5890,LIST_ACCOUNTS,hbciListAccounts,false -15755,25b790aa-e46d-461e-bc02-79ab01cd5890,LIST_TRANSACTIONS,hbciListTransactions,false -15756,25b790aa-e46d-461e-bc02-79ab01cd5890,AUTHORIZATION,,false -15757,25b790aa-e46d-461e-bc02-79ab01cd5890,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15758,25b790aa-e46d-461e-bc02-79ab01cd5890,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15759,25b790aa-e46d-461e-bc02-79ab01cd5890,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15754,8938261c-43c2-4fe0-a6a6-2de008e47200,LIST_ACCOUNTS,hbciListAccounts,false +15755,8938261c-43c2-4fe0-a6a6-2de008e47200,LIST_TRANSACTIONS,hbciListTransactions,false +15756,8938261c-43c2-4fe0-a6a6-2de008e47200,AUTHORIZATION,,false +15757,8938261c-43c2-4fe0-a6a6-2de008e47200,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15758,8938261c-43c2-4fe0-a6a6-2de008e47200,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15759,8938261c-43c2-4fe0-a6a6-2de008e47200,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15760,82fe8873-5700-4c52-ba0c-6755c4b3f6f3,LIST_ACCOUNTS,xs2aListAccounts,true -15761,82fe8873-5700-4c52-ba0c-6755c4b3f6f3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15761,82fe8873-5700-4c52-ba0c-6755c4b3f6f3,LIST_TRANSACTIONS,xs2aListTransactions,true 15762,82fe8873-5700-4c52-ba0c-6755c4b3f6f3,AUTHORIZATION,,true 15763,82fe8873-5700-4c52-ba0c-6755c4b3f6f3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15764,82fe8873-5700-4c52-ba0c-6755c4b3f6f3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15765,82fe8873-5700-4c52-ba0c-6755c4b3f6f3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15766,756b3ef9-a38c-487a-aadd-8df30f0f9419,LIST_ACCOUNTS,hbciListAccounts,false -15767,756b3ef9-a38c-487a-aadd-8df30f0f9419,LIST_TRANSACTIONS,hbciListTransactions,false -15768,756b3ef9-a38c-487a-aadd-8df30f0f9419,AUTHORIZATION,,false -15769,756b3ef9-a38c-487a-aadd-8df30f0f9419,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15770,756b3ef9-a38c-487a-aadd-8df30f0f9419,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15771,756b3ef9-a38c-487a-aadd-8df30f0f9419,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15766,6f4a4423-2e02-4944-8888-cd542a6fd616,LIST_ACCOUNTS,hbciListAccounts,false +15767,6f4a4423-2e02-4944-8888-cd542a6fd616,LIST_TRANSACTIONS,hbciListTransactions,false +15768,6f4a4423-2e02-4944-8888-cd542a6fd616,AUTHORIZATION,,false +15769,6f4a4423-2e02-4944-8888-cd542a6fd616,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15770,6f4a4423-2e02-4944-8888-cd542a6fd616,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15771,6f4a4423-2e02-4944-8888-cd542a6fd616,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15772,fc950828-47f4-4fbd-96e9-efc03074f56b,LIST_ACCOUNTS,xs2aListAccounts,true -15773,fc950828-47f4-4fbd-96e9-efc03074f56b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15773,fc950828-47f4-4fbd-96e9-efc03074f56b,LIST_TRANSACTIONS,xs2aListTransactions,true 15774,fc950828-47f4-4fbd-96e9-efc03074f56b,AUTHORIZATION,,true 15775,fc950828-47f4-4fbd-96e9-efc03074f56b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15776,fc950828-47f4-4fbd-96e9-efc03074f56b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15777,fc950828-47f4-4fbd-96e9-efc03074f56b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15778,ee8391c8-c5ea-4f8a-9fc7-56c905c5109c,LIST_ACCOUNTS,hbciListAccounts,false -15779,ee8391c8-c5ea-4f8a-9fc7-56c905c5109c,LIST_TRANSACTIONS,hbciListTransactions,false -15780,ee8391c8-c5ea-4f8a-9fc7-56c905c5109c,AUTHORIZATION,,false -15781,ee8391c8-c5ea-4f8a-9fc7-56c905c5109c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15782,ee8391c8-c5ea-4f8a-9fc7-56c905c5109c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15783,ee8391c8-c5ea-4f8a-9fc7-56c905c5109c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15778,28aec3e1-f733-460b-be86-ab0a0630c302,LIST_ACCOUNTS,hbciListAccounts,false +15779,28aec3e1-f733-460b-be86-ab0a0630c302,LIST_TRANSACTIONS,hbciListTransactions,false +15780,28aec3e1-f733-460b-be86-ab0a0630c302,AUTHORIZATION,,false +15781,28aec3e1-f733-460b-be86-ab0a0630c302,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15782,28aec3e1-f733-460b-be86-ab0a0630c302,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15783,28aec3e1-f733-460b-be86-ab0a0630c302,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15784,33f64549-6cd6-4623-8756-5dd497900aba,LIST_ACCOUNTS,xs2aListAccounts,true -15785,33f64549-6cd6-4623-8756-5dd497900aba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15785,33f64549-6cd6-4623-8756-5dd497900aba,LIST_TRANSACTIONS,xs2aListTransactions,true 15786,33f64549-6cd6-4623-8756-5dd497900aba,AUTHORIZATION,,true 15787,33f64549-6cd6-4623-8756-5dd497900aba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15788,33f64549-6cd6-4623-8756-5dd497900aba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15789,33f64549-6cd6-4623-8756-5dd497900aba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15790,ce8b9c1e-4897-4768-a51f-2720c7bfaf2b,LIST_ACCOUNTS,hbciListAccounts,false -15791,ce8b9c1e-4897-4768-a51f-2720c7bfaf2b,LIST_TRANSACTIONS,hbciListTransactions,false -15792,ce8b9c1e-4897-4768-a51f-2720c7bfaf2b,AUTHORIZATION,,false -15793,ce8b9c1e-4897-4768-a51f-2720c7bfaf2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15794,ce8b9c1e-4897-4768-a51f-2720c7bfaf2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15795,ce8b9c1e-4897-4768-a51f-2720c7bfaf2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15790,b6284436-6a91-4b1e-863d-262c806870e0,LIST_ACCOUNTS,hbciListAccounts,false +15791,b6284436-6a91-4b1e-863d-262c806870e0,LIST_TRANSACTIONS,hbciListTransactions,false +15792,b6284436-6a91-4b1e-863d-262c806870e0,AUTHORIZATION,,false +15793,b6284436-6a91-4b1e-863d-262c806870e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15794,b6284436-6a91-4b1e-863d-262c806870e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15795,b6284436-6a91-4b1e-863d-262c806870e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15796,941421b7-919b-48f8-9a98-97d6671a82e5,LIST_ACCOUNTS,xs2aListAccounts,true -15797,941421b7-919b-48f8-9a98-97d6671a82e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15797,941421b7-919b-48f8-9a98-97d6671a82e5,LIST_TRANSACTIONS,xs2aListTransactions,true 15798,941421b7-919b-48f8-9a98-97d6671a82e5,AUTHORIZATION,,true 15799,941421b7-919b-48f8-9a98-97d6671a82e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15800,941421b7-919b-48f8-9a98-97d6671a82e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15801,941421b7-919b-48f8-9a98-97d6671a82e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15802,e2be9405-5b4a-43f1-9857-31f70ae06f34,LIST_ACCOUNTS,hbciListAccounts,false -15803,e2be9405-5b4a-43f1-9857-31f70ae06f34,LIST_TRANSACTIONS,hbciListTransactions,false -15804,e2be9405-5b4a-43f1-9857-31f70ae06f34,AUTHORIZATION,,false -15805,e2be9405-5b4a-43f1-9857-31f70ae06f34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15806,e2be9405-5b4a-43f1-9857-31f70ae06f34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15807,e2be9405-5b4a-43f1-9857-31f70ae06f34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15802,a577e853-58ba-43a7-8673-ae9bfccee24a,LIST_ACCOUNTS,hbciListAccounts,false +15803,a577e853-58ba-43a7-8673-ae9bfccee24a,LIST_TRANSACTIONS,hbciListTransactions,false +15804,a577e853-58ba-43a7-8673-ae9bfccee24a,AUTHORIZATION,,false +15805,a577e853-58ba-43a7-8673-ae9bfccee24a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15806,a577e853-58ba-43a7-8673-ae9bfccee24a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15807,a577e853-58ba-43a7-8673-ae9bfccee24a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15808,8dbfc14b-7d4e-44c8-a09a-817670de5e96,LIST_ACCOUNTS,xs2aListAccounts,true -15809,8dbfc14b-7d4e-44c8-a09a-817670de5e96,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15809,8dbfc14b-7d4e-44c8-a09a-817670de5e96,LIST_TRANSACTIONS,xs2aListTransactions,true 15810,8dbfc14b-7d4e-44c8-a09a-817670de5e96,AUTHORIZATION,,true 15811,8dbfc14b-7d4e-44c8-a09a-817670de5e96,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15812,8dbfc14b-7d4e-44c8-a09a-817670de5e96,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15813,8dbfc14b-7d4e-44c8-a09a-817670de5e96,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15814,4bc18d15-efe5-4868-9b59-9baba1b66823,LIST_ACCOUNTS,hbciListAccounts,false -15815,4bc18d15-efe5-4868-9b59-9baba1b66823,LIST_TRANSACTIONS,hbciListTransactions,false -15816,4bc18d15-efe5-4868-9b59-9baba1b66823,AUTHORIZATION,,false -15817,4bc18d15-efe5-4868-9b59-9baba1b66823,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15818,4bc18d15-efe5-4868-9b59-9baba1b66823,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15819,4bc18d15-efe5-4868-9b59-9baba1b66823,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15814,4b542ca3-d29c-4efa-8d40-d40c64ae5f97,LIST_ACCOUNTS,hbciListAccounts,false +15815,4b542ca3-d29c-4efa-8d40-d40c64ae5f97,LIST_TRANSACTIONS,hbciListTransactions,false +15816,4b542ca3-d29c-4efa-8d40-d40c64ae5f97,AUTHORIZATION,,false +15817,4b542ca3-d29c-4efa-8d40-d40c64ae5f97,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15818,4b542ca3-d29c-4efa-8d40-d40c64ae5f97,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15819,4b542ca3-d29c-4efa-8d40-d40c64ae5f97,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15820,815c6ef9-ad7e-464b-a0d7-fbb220ab49ce,LIST_ACCOUNTS,xs2aListAccounts,true -15821,815c6ef9-ad7e-464b-a0d7-fbb220ab49ce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15821,815c6ef9-ad7e-464b-a0d7-fbb220ab49ce,LIST_TRANSACTIONS,xs2aListTransactions,true 15822,815c6ef9-ad7e-464b-a0d7-fbb220ab49ce,AUTHORIZATION,,true 15823,815c6ef9-ad7e-464b-a0d7-fbb220ab49ce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15824,815c6ef9-ad7e-464b-a0d7-fbb220ab49ce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15825,815c6ef9-ad7e-464b-a0d7-fbb220ab49ce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15826,6cb3163d-14ec-40a1-9a64-b985e756e5a3,LIST_ACCOUNTS,hbciListAccounts,false -15827,6cb3163d-14ec-40a1-9a64-b985e756e5a3,LIST_TRANSACTIONS,hbciListTransactions,false -15828,6cb3163d-14ec-40a1-9a64-b985e756e5a3,AUTHORIZATION,,false -15829,6cb3163d-14ec-40a1-9a64-b985e756e5a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15830,6cb3163d-14ec-40a1-9a64-b985e756e5a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15831,6cb3163d-14ec-40a1-9a64-b985e756e5a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15826,b2c1978f-ebaf-45aa-a310-cf0787f3d503,LIST_ACCOUNTS,hbciListAccounts,false +15827,b2c1978f-ebaf-45aa-a310-cf0787f3d503,LIST_TRANSACTIONS,hbciListTransactions,false +15828,b2c1978f-ebaf-45aa-a310-cf0787f3d503,AUTHORIZATION,,false +15829,b2c1978f-ebaf-45aa-a310-cf0787f3d503,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15830,b2c1978f-ebaf-45aa-a310-cf0787f3d503,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15831,b2c1978f-ebaf-45aa-a310-cf0787f3d503,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15832,d52ae9ef-10d8-4c1c-9775-0e1363342293,LIST_ACCOUNTS,xs2aListAccounts,true -15833,d52ae9ef-10d8-4c1c-9775-0e1363342293,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15833,d52ae9ef-10d8-4c1c-9775-0e1363342293,LIST_TRANSACTIONS,xs2aListTransactions,true 15834,d52ae9ef-10d8-4c1c-9775-0e1363342293,AUTHORIZATION,,true 15835,d52ae9ef-10d8-4c1c-9775-0e1363342293,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15836,d52ae9ef-10d8-4c1c-9775-0e1363342293,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15837,d52ae9ef-10d8-4c1c-9775-0e1363342293,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15838,babbad2c-ca77-463c-a80a-1084cca41f94,LIST_ACCOUNTS,hbciListAccounts,false -15839,babbad2c-ca77-463c-a80a-1084cca41f94,LIST_TRANSACTIONS,hbciListTransactions,false -15840,babbad2c-ca77-463c-a80a-1084cca41f94,AUTHORIZATION,,false -15841,babbad2c-ca77-463c-a80a-1084cca41f94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15842,babbad2c-ca77-463c-a80a-1084cca41f94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15843,babbad2c-ca77-463c-a80a-1084cca41f94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15838,502d056a-813e-437e-98f0-a80e33391ceb,LIST_ACCOUNTS,hbciListAccounts,false +15839,502d056a-813e-437e-98f0-a80e33391ceb,LIST_TRANSACTIONS,hbciListTransactions,false +15840,502d056a-813e-437e-98f0-a80e33391ceb,AUTHORIZATION,,false +15841,502d056a-813e-437e-98f0-a80e33391ceb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15842,502d056a-813e-437e-98f0-a80e33391ceb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15843,502d056a-813e-437e-98f0-a80e33391ceb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15844,e4b21b8b-b518-4ba9-ac85-69f176ddce08,LIST_ACCOUNTS,xs2aListAccounts,true -15845,e4b21b8b-b518-4ba9-ac85-69f176ddce08,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15845,e4b21b8b-b518-4ba9-ac85-69f176ddce08,LIST_TRANSACTIONS,xs2aListTransactions,true 15846,e4b21b8b-b518-4ba9-ac85-69f176ddce08,AUTHORIZATION,,true 15847,e4b21b8b-b518-4ba9-ac85-69f176ddce08,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15848,e4b21b8b-b518-4ba9-ac85-69f176ddce08,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15849,e4b21b8b-b518-4ba9-ac85-69f176ddce08,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15850,23edca22-0b9a-4b19-9f16-6b299059de96,LIST_ACCOUNTS,hbciListAccounts,false -15851,23edca22-0b9a-4b19-9f16-6b299059de96,LIST_TRANSACTIONS,hbciListTransactions,false -15852,23edca22-0b9a-4b19-9f16-6b299059de96,AUTHORIZATION,,false -15853,23edca22-0b9a-4b19-9f16-6b299059de96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15854,23edca22-0b9a-4b19-9f16-6b299059de96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15855,23edca22-0b9a-4b19-9f16-6b299059de96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15850,5b927a84-d3f8-466f-a282-1fe613595f12,LIST_ACCOUNTS,hbciListAccounts,false +15851,5b927a84-d3f8-466f-a282-1fe613595f12,LIST_TRANSACTIONS,hbciListTransactions,false +15852,5b927a84-d3f8-466f-a282-1fe613595f12,AUTHORIZATION,,false +15853,5b927a84-d3f8-466f-a282-1fe613595f12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15854,5b927a84-d3f8-466f-a282-1fe613595f12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15855,5b927a84-d3f8-466f-a282-1fe613595f12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15856,ab2d7823-aaec-4aa8-a049-7dc7c09e02a9,LIST_ACCOUNTS,xs2aListAccounts,true -15857,ab2d7823-aaec-4aa8-a049-7dc7c09e02a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15857,ab2d7823-aaec-4aa8-a049-7dc7c09e02a9,LIST_TRANSACTIONS,xs2aListTransactions,true 15858,ab2d7823-aaec-4aa8-a049-7dc7c09e02a9,AUTHORIZATION,,true 15859,ab2d7823-aaec-4aa8-a049-7dc7c09e02a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15860,ab2d7823-aaec-4aa8-a049-7dc7c09e02a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15861,ab2d7823-aaec-4aa8-a049-7dc7c09e02a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15862,a1d153e0-0977-49e1-ba42-59ab5c4e518a,LIST_ACCOUNTS,hbciListAccounts,false -15863,a1d153e0-0977-49e1-ba42-59ab5c4e518a,LIST_TRANSACTIONS,hbciListTransactions,false -15864,a1d153e0-0977-49e1-ba42-59ab5c4e518a,AUTHORIZATION,,false -15865,a1d153e0-0977-49e1-ba42-59ab5c4e518a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15866,a1d153e0-0977-49e1-ba42-59ab5c4e518a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15867,a1d153e0-0977-49e1-ba42-59ab5c4e518a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15862,997a8149-0527-4ebe-ba10-63c578a8512c,LIST_ACCOUNTS,hbciListAccounts,false +15863,997a8149-0527-4ebe-ba10-63c578a8512c,LIST_TRANSACTIONS,hbciListTransactions,false +15864,997a8149-0527-4ebe-ba10-63c578a8512c,AUTHORIZATION,,false +15865,997a8149-0527-4ebe-ba10-63c578a8512c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15866,997a8149-0527-4ebe-ba10-63c578a8512c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15867,997a8149-0527-4ebe-ba10-63c578a8512c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15868,14079822-393f-4807-98a3-aead77328336,LIST_ACCOUNTS,xs2aListAccounts,true -15869,14079822-393f-4807-98a3-aead77328336,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15869,14079822-393f-4807-98a3-aead77328336,LIST_TRANSACTIONS,xs2aListTransactions,true 15870,14079822-393f-4807-98a3-aead77328336,AUTHORIZATION,,true 15871,14079822-393f-4807-98a3-aead77328336,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15872,14079822-393f-4807-98a3-aead77328336,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15873,14079822-393f-4807-98a3-aead77328336,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15874,ad1de28c-5292-4179-9465-1f5ac6839d23,LIST_ACCOUNTS,hbciListAccounts,false -15875,ad1de28c-5292-4179-9465-1f5ac6839d23,LIST_TRANSACTIONS,hbciListTransactions,false -15876,ad1de28c-5292-4179-9465-1f5ac6839d23,AUTHORIZATION,,false -15877,ad1de28c-5292-4179-9465-1f5ac6839d23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15878,ad1de28c-5292-4179-9465-1f5ac6839d23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15879,ad1de28c-5292-4179-9465-1f5ac6839d23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15874,4c74b231-d6e5-41b7-90b2-3dbd0e250d9c,LIST_ACCOUNTS,hbciListAccounts,false +15875,4c74b231-d6e5-41b7-90b2-3dbd0e250d9c,LIST_TRANSACTIONS,hbciListTransactions,false +15876,4c74b231-d6e5-41b7-90b2-3dbd0e250d9c,AUTHORIZATION,,false +15877,4c74b231-d6e5-41b7-90b2-3dbd0e250d9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15878,4c74b231-d6e5-41b7-90b2-3dbd0e250d9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15879,4c74b231-d6e5-41b7-90b2-3dbd0e250d9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15880,b4a52b62-0c5c-4f4a-bb99-11b99b86a36f,LIST_ACCOUNTS,xs2aListAccounts,true -15881,b4a52b62-0c5c-4f4a-bb99-11b99b86a36f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15881,b4a52b62-0c5c-4f4a-bb99-11b99b86a36f,LIST_TRANSACTIONS,xs2aListTransactions,true 15882,b4a52b62-0c5c-4f4a-bb99-11b99b86a36f,AUTHORIZATION,,true 15883,b4a52b62-0c5c-4f4a-bb99-11b99b86a36f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15884,b4a52b62-0c5c-4f4a-bb99-11b99b86a36f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15885,b4a52b62-0c5c-4f4a-bb99-11b99b86a36f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15886,35404390-8e1f-4352-ab04-b9fa39ff3ff9,LIST_ACCOUNTS,hbciListAccounts,false -15887,35404390-8e1f-4352-ab04-b9fa39ff3ff9,LIST_TRANSACTIONS,hbciListTransactions,false -15888,35404390-8e1f-4352-ab04-b9fa39ff3ff9,AUTHORIZATION,,false -15889,35404390-8e1f-4352-ab04-b9fa39ff3ff9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15890,35404390-8e1f-4352-ab04-b9fa39ff3ff9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15891,35404390-8e1f-4352-ab04-b9fa39ff3ff9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15886,873348c8-77e8-4516-a02d-de455a55b636,LIST_ACCOUNTS,hbciListAccounts,false +15887,873348c8-77e8-4516-a02d-de455a55b636,LIST_TRANSACTIONS,hbciListTransactions,false +15888,873348c8-77e8-4516-a02d-de455a55b636,AUTHORIZATION,,false +15889,873348c8-77e8-4516-a02d-de455a55b636,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15890,873348c8-77e8-4516-a02d-de455a55b636,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15891,873348c8-77e8-4516-a02d-de455a55b636,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15892,0237bb78-1468-4dc7-8821-c66a5e34ce49,LIST_ACCOUNTS,xs2aListAccounts,true -15893,0237bb78-1468-4dc7-8821-c66a5e34ce49,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15893,0237bb78-1468-4dc7-8821-c66a5e34ce49,LIST_TRANSACTIONS,xs2aListTransactions,true 15894,0237bb78-1468-4dc7-8821-c66a5e34ce49,AUTHORIZATION,,true 15895,0237bb78-1468-4dc7-8821-c66a5e34ce49,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15896,0237bb78-1468-4dc7-8821-c66a5e34ce49,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15897,0237bb78-1468-4dc7-8821-c66a5e34ce49,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15898,94bb8e18-0b87-4599-8d3d-d0e3c9d42cef,LIST_ACCOUNTS,hbciListAccounts,false -15899,94bb8e18-0b87-4599-8d3d-d0e3c9d42cef,LIST_TRANSACTIONS,hbciListTransactions,false -15900,94bb8e18-0b87-4599-8d3d-d0e3c9d42cef,AUTHORIZATION,,false -15901,94bb8e18-0b87-4599-8d3d-d0e3c9d42cef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15902,94bb8e18-0b87-4599-8d3d-d0e3c9d42cef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15903,94bb8e18-0b87-4599-8d3d-d0e3c9d42cef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15898,6becd539-8acf-4916-8bc2-f403faf08362,LIST_ACCOUNTS,hbciListAccounts,false +15899,6becd539-8acf-4916-8bc2-f403faf08362,LIST_TRANSACTIONS,hbciListTransactions,false +15900,6becd539-8acf-4916-8bc2-f403faf08362,AUTHORIZATION,,false +15901,6becd539-8acf-4916-8bc2-f403faf08362,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15902,6becd539-8acf-4916-8bc2-f403faf08362,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15903,6becd539-8acf-4916-8bc2-f403faf08362,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15904,a73fc526-6287-413c-90f1-4567592dd0e7,LIST_ACCOUNTS,xs2aListAccounts,true -15905,a73fc526-6287-413c-90f1-4567592dd0e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15905,a73fc526-6287-413c-90f1-4567592dd0e7,LIST_TRANSACTIONS,xs2aListTransactions,true 15906,a73fc526-6287-413c-90f1-4567592dd0e7,AUTHORIZATION,,true 15907,a73fc526-6287-413c-90f1-4567592dd0e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15908,a73fc526-6287-413c-90f1-4567592dd0e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15909,a73fc526-6287-413c-90f1-4567592dd0e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15910,d29106c5-003a-4c29-8546-812511e6ef6c,LIST_ACCOUNTS,hbciListAccounts,false -15911,d29106c5-003a-4c29-8546-812511e6ef6c,LIST_TRANSACTIONS,hbciListTransactions,false -15912,d29106c5-003a-4c29-8546-812511e6ef6c,AUTHORIZATION,,false -15913,d29106c5-003a-4c29-8546-812511e6ef6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15914,d29106c5-003a-4c29-8546-812511e6ef6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15915,d29106c5-003a-4c29-8546-812511e6ef6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15910,9fa26be6-e837-4787-aa3b-967023d99069,LIST_ACCOUNTS,hbciListAccounts,false +15911,9fa26be6-e837-4787-aa3b-967023d99069,LIST_TRANSACTIONS,hbciListTransactions,false +15912,9fa26be6-e837-4787-aa3b-967023d99069,AUTHORIZATION,,false +15913,9fa26be6-e837-4787-aa3b-967023d99069,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15914,9fa26be6-e837-4787-aa3b-967023d99069,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15915,9fa26be6-e837-4787-aa3b-967023d99069,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15916,0cc67b9b-a09b-4cbc-8a2d-c6e69a7c3f31,LIST_ACCOUNTS,xs2aListAccounts,true -15917,0cc67b9b-a09b-4cbc-8a2d-c6e69a7c3f31,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15917,0cc67b9b-a09b-4cbc-8a2d-c6e69a7c3f31,LIST_TRANSACTIONS,xs2aListTransactions,true 15918,0cc67b9b-a09b-4cbc-8a2d-c6e69a7c3f31,AUTHORIZATION,,true 15919,0cc67b9b-a09b-4cbc-8a2d-c6e69a7c3f31,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15920,0cc67b9b-a09b-4cbc-8a2d-c6e69a7c3f31,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15921,0cc67b9b-a09b-4cbc-8a2d-c6e69a7c3f31,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15922,16346660-76ab-4198-b5a2-485123e3b820,LIST_ACCOUNTS,hbciListAccounts,false -15923,16346660-76ab-4198-b5a2-485123e3b820,LIST_TRANSACTIONS,hbciListTransactions,false -15924,16346660-76ab-4198-b5a2-485123e3b820,AUTHORIZATION,,false -15925,16346660-76ab-4198-b5a2-485123e3b820,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15926,16346660-76ab-4198-b5a2-485123e3b820,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15927,16346660-76ab-4198-b5a2-485123e3b820,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15922,dff6c21c-e768-4596-b73b-e26f1d04cd02,LIST_ACCOUNTS,hbciListAccounts,false +15923,dff6c21c-e768-4596-b73b-e26f1d04cd02,LIST_TRANSACTIONS,hbciListTransactions,false +15924,dff6c21c-e768-4596-b73b-e26f1d04cd02,AUTHORIZATION,,false +15925,dff6c21c-e768-4596-b73b-e26f1d04cd02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15926,dff6c21c-e768-4596-b73b-e26f1d04cd02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15927,dff6c21c-e768-4596-b73b-e26f1d04cd02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15928,93c11cd9-29aa-40a4-9237-35ef03b53bc7,LIST_ACCOUNTS,xs2aListAccounts,true -15929,93c11cd9-29aa-40a4-9237-35ef03b53bc7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15929,93c11cd9-29aa-40a4-9237-35ef03b53bc7,LIST_TRANSACTIONS,xs2aListTransactions,true 15930,93c11cd9-29aa-40a4-9237-35ef03b53bc7,AUTHORIZATION,,true 15931,93c11cd9-29aa-40a4-9237-35ef03b53bc7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15932,93c11cd9-29aa-40a4-9237-35ef03b53bc7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15933,93c11cd9-29aa-40a4-9237-35ef03b53bc7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15934,9e9e838d-69f8-4e44-bc98-a446fd4e46bb,LIST_ACCOUNTS,hbciListAccounts,false -15935,9e9e838d-69f8-4e44-bc98-a446fd4e46bb,LIST_TRANSACTIONS,hbciListTransactions,false -15936,9e9e838d-69f8-4e44-bc98-a446fd4e46bb,AUTHORIZATION,,false -15937,9e9e838d-69f8-4e44-bc98-a446fd4e46bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15938,9e9e838d-69f8-4e44-bc98-a446fd4e46bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15939,9e9e838d-69f8-4e44-bc98-a446fd4e46bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15934,bcafcfdd-14b4-4534-b628-14c90ed9837f,LIST_ACCOUNTS,hbciListAccounts,false +15935,bcafcfdd-14b4-4534-b628-14c90ed9837f,LIST_TRANSACTIONS,hbciListTransactions,false +15936,bcafcfdd-14b4-4534-b628-14c90ed9837f,AUTHORIZATION,,false +15937,bcafcfdd-14b4-4534-b628-14c90ed9837f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15938,bcafcfdd-14b4-4534-b628-14c90ed9837f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15939,bcafcfdd-14b4-4534-b628-14c90ed9837f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15940,3d48ddd3-9b21-4624-865a-a275fa924025,LIST_ACCOUNTS,xs2aListAccounts,true -15941,3d48ddd3-9b21-4624-865a-a275fa924025,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15941,3d48ddd3-9b21-4624-865a-a275fa924025,LIST_TRANSACTIONS,xs2aListTransactions,true 15942,3d48ddd3-9b21-4624-865a-a275fa924025,AUTHORIZATION,,true 15943,3d48ddd3-9b21-4624-865a-a275fa924025,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15944,3d48ddd3-9b21-4624-865a-a275fa924025,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15945,3d48ddd3-9b21-4624-865a-a275fa924025,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15946,3eb481ea-7c2f-47ac-bdea-79e773bfc13a,LIST_ACCOUNTS,hbciListAccounts,false -15947,3eb481ea-7c2f-47ac-bdea-79e773bfc13a,LIST_TRANSACTIONS,hbciListTransactions,false -15948,3eb481ea-7c2f-47ac-bdea-79e773bfc13a,AUTHORIZATION,,false -15949,3eb481ea-7c2f-47ac-bdea-79e773bfc13a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15950,3eb481ea-7c2f-47ac-bdea-79e773bfc13a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15951,3eb481ea-7c2f-47ac-bdea-79e773bfc13a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15946,f8a65288-11e7-452d-a934-eef437780ef1,LIST_ACCOUNTS,hbciListAccounts,false +15947,f8a65288-11e7-452d-a934-eef437780ef1,LIST_TRANSACTIONS,hbciListTransactions,false +15948,f8a65288-11e7-452d-a934-eef437780ef1,AUTHORIZATION,,false +15949,f8a65288-11e7-452d-a934-eef437780ef1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15950,f8a65288-11e7-452d-a934-eef437780ef1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15951,f8a65288-11e7-452d-a934-eef437780ef1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15952,0e2b12a8-3d8f-4457-a9fa-602a5dc13ede,LIST_ACCOUNTS,xs2aListAccounts,true -15953,0e2b12a8-3d8f-4457-a9fa-602a5dc13ede,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15953,0e2b12a8-3d8f-4457-a9fa-602a5dc13ede,LIST_TRANSACTIONS,xs2aListTransactions,true 15954,0e2b12a8-3d8f-4457-a9fa-602a5dc13ede,AUTHORIZATION,,true 15955,0e2b12a8-3d8f-4457-a9fa-602a5dc13ede,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15956,0e2b12a8-3d8f-4457-a9fa-602a5dc13ede,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15957,0e2b12a8-3d8f-4457-a9fa-602a5dc13ede,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15958,36a440eb-cba5-4695-9a5d-c1461f0adae2,LIST_ACCOUNTS,hbciListAccounts,false -15959,36a440eb-cba5-4695-9a5d-c1461f0adae2,LIST_TRANSACTIONS,hbciListTransactions,false -15960,36a440eb-cba5-4695-9a5d-c1461f0adae2,AUTHORIZATION,,false -15961,36a440eb-cba5-4695-9a5d-c1461f0adae2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15962,36a440eb-cba5-4695-9a5d-c1461f0adae2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15963,36a440eb-cba5-4695-9a5d-c1461f0adae2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15958,4686e723-478f-4dcc-95c9-16829dd43b52,LIST_ACCOUNTS,hbciListAccounts,false +15959,4686e723-478f-4dcc-95c9-16829dd43b52,LIST_TRANSACTIONS,hbciListTransactions,false +15960,4686e723-478f-4dcc-95c9-16829dd43b52,AUTHORIZATION,,false +15961,4686e723-478f-4dcc-95c9-16829dd43b52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15962,4686e723-478f-4dcc-95c9-16829dd43b52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15963,4686e723-478f-4dcc-95c9-16829dd43b52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15964,b286dace-4788-4bec-9c5f-be767698df12,LIST_ACCOUNTS,xs2aListAccounts,true -15965,b286dace-4788-4bec-9c5f-be767698df12,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15965,b286dace-4788-4bec-9c5f-be767698df12,LIST_TRANSACTIONS,xs2aListTransactions,true 15966,b286dace-4788-4bec-9c5f-be767698df12,AUTHORIZATION,,true 15967,b286dace-4788-4bec-9c5f-be767698df12,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15968,b286dace-4788-4bec-9c5f-be767698df12,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15969,b286dace-4788-4bec-9c5f-be767698df12,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15970,cdfaec0b-4b71-4b4a-b03a-dddf00ec0ae8,LIST_ACCOUNTS,hbciListAccounts,false -15971,cdfaec0b-4b71-4b4a-b03a-dddf00ec0ae8,LIST_TRANSACTIONS,hbciListTransactions,false -15972,cdfaec0b-4b71-4b4a-b03a-dddf00ec0ae8,AUTHORIZATION,,false -15973,cdfaec0b-4b71-4b4a-b03a-dddf00ec0ae8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15974,cdfaec0b-4b71-4b4a-b03a-dddf00ec0ae8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15975,cdfaec0b-4b71-4b4a-b03a-dddf00ec0ae8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15970,41d8a967-207c-4311-a9d8-5040898caa20,LIST_ACCOUNTS,hbciListAccounts,false +15971,41d8a967-207c-4311-a9d8-5040898caa20,LIST_TRANSACTIONS,hbciListTransactions,false +15972,41d8a967-207c-4311-a9d8-5040898caa20,AUTHORIZATION,,false +15973,41d8a967-207c-4311-a9d8-5040898caa20,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15974,41d8a967-207c-4311-a9d8-5040898caa20,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15975,41d8a967-207c-4311-a9d8-5040898caa20,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15976,b3209012-13f3-4d53-b6bf-c8fce2522e41,LIST_ACCOUNTS,xs2aListAccounts,true -15977,b3209012-13f3-4d53-b6bf-c8fce2522e41,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15977,b3209012-13f3-4d53-b6bf-c8fce2522e41,LIST_TRANSACTIONS,xs2aListTransactions,true 15978,b3209012-13f3-4d53-b6bf-c8fce2522e41,AUTHORIZATION,,true 15979,b3209012-13f3-4d53-b6bf-c8fce2522e41,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15980,b3209012-13f3-4d53-b6bf-c8fce2522e41,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15981,b3209012-13f3-4d53-b6bf-c8fce2522e41,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15982,53fc1ec7-ff63-4822-b00f-23546dc47f40,LIST_ACCOUNTS,hbciListAccounts,false -15983,53fc1ec7-ff63-4822-b00f-23546dc47f40,LIST_TRANSACTIONS,hbciListTransactions,false -15984,53fc1ec7-ff63-4822-b00f-23546dc47f40,AUTHORIZATION,,false -15985,53fc1ec7-ff63-4822-b00f-23546dc47f40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15986,53fc1ec7-ff63-4822-b00f-23546dc47f40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15987,53fc1ec7-ff63-4822-b00f-23546dc47f40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15982,8018946c-55df-4df2-abc7-5f05e3215b24,LIST_ACCOUNTS,hbciListAccounts,false +15983,8018946c-55df-4df2-abc7-5f05e3215b24,LIST_TRANSACTIONS,hbciListTransactions,false +15984,8018946c-55df-4df2-abc7-5f05e3215b24,AUTHORIZATION,,false +15985,8018946c-55df-4df2-abc7-5f05e3215b24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15986,8018946c-55df-4df2-abc7-5f05e3215b24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15987,8018946c-55df-4df2-abc7-5f05e3215b24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 15988,0e7dcce0-8ee2-4f20-ab44-18d4d47dcad1,LIST_ACCOUNTS,xs2aListAccounts,true -15989,0e7dcce0-8ee2-4f20-ab44-18d4d47dcad1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +15989,0e7dcce0-8ee2-4f20-ab44-18d4d47dcad1,LIST_TRANSACTIONS,xs2aListTransactions,true 15990,0e7dcce0-8ee2-4f20-ab44-18d4d47dcad1,AUTHORIZATION,,true 15991,0e7dcce0-8ee2-4f20-ab44-18d4d47dcad1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 15992,0e7dcce0-8ee2-4f20-ab44-18d4d47dcad1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 15993,0e7dcce0-8ee2-4f20-ab44-18d4d47dcad1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -15994,b02f8c68-d42d-408d-9a2e-c85baeb4d7f5,LIST_ACCOUNTS,hbciListAccounts,false -15995,b02f8c68-d42d-408d-9a2e-c85baeb4d7f5,LIST_TRANSACTIONS,hbciListTransactions,false -15996,b02f8c68-d42d-408d-9a2e-c85baeb4d7f5,AUTHORIZATION,,false -15997,b02f8c68-d42d-408d-9a2e-c85baeb4d7f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -15998,b02f8c68-d42d-408d-9a2e-c85baeb4d7f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -15999,b02f8c68-d42d-408d-9a2e-c85baeb4d7f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +15994,e946bfbc-58f3-4670-aae7-cce70ab82bfe,LIST_ACCOUNTS,hbciListAccounts,false +15995,e946bfbc-58f3-4670-aae7-cce70ab82bfe,LIST_TRANSACTIONS,hbciListTransactions,false +15996,e946bfbc-58f3-4670-aae7-cce70ab82bfe,AUTHORIZATION,,false +15997,e946bfbc-58f3-4670-aae7-cce70ab82bfe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +15998,e946bfbc-58f3-4670-aae7-cce70ab82bfe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +15999,e946bfbc-58f3-4670-aae7-cce70ab82bfe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16000,5833a39d-87cc-43e1-b885-150ef5224cf2,LIST_ACCOUNTS,xs2aListAccounts,true -16001,5833a39d-87cc-43e1-b885-150ef5224cf2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16001,5833a39d-87cc-43e1-b885-150ef5224cf2,LIST_TRANSACTIONS,xs2aListTransactions,true 16002,5833a39d-87cc-43e1-b885-150ef5224cf2,AUTHORIZATION,,true 16003,5833a39d-87cc-43e1-b885-150ef5224cf2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16004,5833a39d-87cc-43e1-b885-150ef5224cf2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16005,5833a39d-87cc-43e1-b885-150ef5224cf2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16006,bb0c92a7-30dd-4b31-a2ff-97ca7201d703,LIST_ACCOUNTS,hbciListAccounts,false -16007,bb0c92a7-30dd-4b31-a2ff-97ca7201d703,LIST_TRANSACTIONS,hbciListTransactions,false -16008,bb0c92a7-30dd-4b31-a2ff-97ca7201d703,AUTHORIZATION,,false -16009,bb0c92a7-30dd-4b31-a2ff-97ca7201d703,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16010,bb0c92a7-30dd-4b31-a2ff-97ca7201d703,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16011,bb0c92a7-30dd-4b31-a2ff-97ca7201d703,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16006,e32a169b-0ca1-4784-be5d-bbbbb574a3e0,LIST_ACCOUNTS,hbciListAccounts,false +16007,e32a169b-0ca1-4784-be5d-bbbbb574a3e0,LIST_TRANSACTIONS,hbciListTransactions,false +16008,e32a169b-0ca1-4784-be5d-bbbbb574a3e0,AUTHORIZATION,,false +16009,e32a169b-0ca1-4784-be5d-bbbbb574a3e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16010,e32a169b-0ca1-4784-be5d-bbbbb574a3e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16011,e32a169b-0ca1-4784-be5d-bbbbb574a3e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16012,ed0cdeb6-a370-4e07-b20f-708ae1ab8c6b,LIST_ACCOUNTS,xs2aListAccounts,true -16013,ed0cdeb6-a370-4e07-b20f-708ae1ab8c6b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16013,ed0cdeb6-a370-4e07-b20f-708ae1ab8c6b,LIST_TRANSACTIONS,xs2aListTransactions,true 16014,ed0cdeb6-a370-4e07-b20f-708ae1ab8c6b,AUTHORIZATION,,true 16015,ed0cdeb6-a370-4e07-b20f-708ae1ab8c6b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16016,ed0cdeb6-a370-4e07-b20f-708ae1ab8c6b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16017,ed0cdeb6-a370-4e07-b20f-708ae1ab8c6b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16018,cc50e45e-6f63-4c0a-90be-2844d7049edd,LIST_ACCOUNTS,hbciListAccounts,false -16019,cc50e45e-6f63-4c0a-90be-2844d7049edd,LIST_TRANSACTIONS,hbciListTransactions,false -16020,cc50e45e-6f63-4c0a-90be-2844d7049edd,AUTHORIZATION,,false -16021,cc50e45e-6f63-4c0a-90be-2844d7049edd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16022,cc50e45e-6f63-4c0a-90be-2844d7049edd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16023,cc50e45e-6f63-4c0a-90be-2844d7049edd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16018,97856b70-922c-4a97-bd14-cd593597d215,LIST_ACCOUNTS,hbciListAccounts,false +16019,97856b70-922c-4a97-bd14-cd593597d215,LIST_TRANSACTIONS,hbciListTransactions,false +16020,97856b70-922c-4a97-bd14-cd593597d215,AUTHORIZATION,,false +16021,97856b70-922c-4a97-bd14-cd593597d215,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16022,97856b70-922c-4a97-bd14-cd593597d215,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16023,97856b70-922c-4a97-bd14-cd593597d215,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16024,312170ca-c006-422c-9857-02fa82f7f4b1,LIST_ACCOUNTS,xs2aListAccounts,true -16025,312170ca-c006-422c-9857-02fa82f7f4b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16025,312170ca-c006-422c-9857-02fa82f7f4b1,LIST_TRANSACTIONS,xs2aListTransactions,true 16026,312170ca-c006-422c-9857-02fa82f7f4b1,AUTHORIZATION,,true 16027,312170ca-c006-422c-9857-02fa82f7f4b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16028,312170ca-c006-422c-9857-02fa82f7f4b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16029,312170ca-c006-422c-9857-02fa82f7f4b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16030,5985e79d-d68d-4f41-a061-82a5f5198b58,LIST_ACCOUNTS,hbciListAccounts,false -16031,5985e79d-d68d-4f41-a061-82a5f5198b58,LIST_TRANSACTIONS,hbciListTransactions,false -16032,5985e79d-d68d-4f41-a061-82a5f5198b58,AUTHORIZATION,,false -16033,5985e79d-d68d-4f41-a061-82a5f5198b58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16034,5985e79d-d68d-4f41-a061-82a5f5198b58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16035,5985e79d-d68d-4f41-a061-82a5f5198b58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16030,0d999395-7ca0-43cf-928c-cbcb924c480d,LIST_ACCOUNTS,hbciListAccounts,false +16031,0d999395-7ca0-43cf-928c-cbcb924c480d,LIST_TRANSACTIONS,hbciListTransactions,false +16032,0d999395-7ca0-43cf-928c-cbcb924c480d,AUTHORIZATION,,false +16033,0d999395-7ca0-43cf-928c-cbcb924c480d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16034,0d999395-7ca0-43cf-928c-cbcb924c480d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16035,0d999395-7ca0-43cf-928c-cbcb924c480d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16036,e6665724-ed9f-47ad-80d9-5d54da432254,LIST_ACCOUNTS,xs2aListAccounts,true -16037,e6665724-ed9f-47ad-80d9-5d54da432254,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16037,e6665724-ed9f-47ad-80d9-5d54da432254,LIST_TRANSACTIONS,xs2aListTransactions,true 16038,e6665724-ed9f-47ad-80d9-5d54da432254,AUTHORIZATION,,true 16039,e6665724-ed9f-47ad-80d9-5d54da432254,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16040,e6665724-ed9f-47ad-80d9-5d54da432254,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16041,e6665724-ed9f-47ad-80d9-5d54da432254,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16042,50f4e0ba-8170-4d28-a4bb-9c0994995635,LIST_ACCOUNTS,hbciListAccounts,false -16043,50f4e0ba-8170-4d28-a4bb-9c0994995635,LIST_TRANSACTIONS,hbciListTransactions,false -16044,50f4e0ba-8170-4d28-a4bb-9c0994995635,AUTHORIZATION,,false -16045,50f4e0ba-8170-4d28-a4bb-9c0994995635,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16046,50f4e0ba-8170-4d28-a4bb-9c0994995635,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16047,50f4e0ba-8170-4d28-a4bb-9c0994995635,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16042,91d80815-bfcc-4117-a7be-b1b3ab6fe205,LIST_ACCOUNTS,hbciListAccounts,false +16043,91d80815-bfcc-4117-a7be-b1b3ab6fe205,LIST_TRANSACTIONS,hbciListTransactions,false +16044,91d80815-bfcc-4117-a7be-b1b3ab6fe205,AUTHORIZATION,,false +16045,91d80815-bfcc-4117-a7be-b1b3ab6fe205,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16046,91d80815-bfcc-4117-a7be-b1b3ab6fe205,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16047,91d80815-bfcc-4117-a7be-b1b3ab6fe205,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16048,54a90589-8715-4f24-bee3-664f4061a5c4,LIST_ACCOUNTS,xs2aListAccounts,true -16049,54a90589-8715-4f24-bee3-664f4061a5c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16049,54a90589-8715-4f24-bee3-664f4061a5c4,LIST_TRANSACTIONS,xs2aListTransactions,true 16050,54a90589-8715-4f24-bee3-664f4061a5c4,AUTHORIZATION,,true 16051,54a90589-8715-4f24-bee3-664f4061a5c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16052,54a90589-8715-4f24-bee3-664f4061a5c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16053,54a90589-8715-4f24-bee3-664f4061a5c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16054,15f50043-b1d4-4f0c-9cc2-f4003b98bf15,LIST_ACCOUNTS,hbciListAccounts,false -16055,15f50043-b1d4-4f0c-9cc2-f4003b98bf15,LIST_TRANSACTIONS,hbciListTransactions,false -16056,15f50043-b1d4-4f0c-9cc2-f4003b98bf15,AUTHORIZATION,,false -16057,15f50043-b1d4-4f0c-9cc2-f4003b98bf15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16058,15f50043-b1d4-4f0c-9cc2-f4003b98bf15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16059,15f50043-b1d4-4f0c-9cc2-f4003b98bf15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16054,79c8f5b4-8249-43f5-8df5-269f9ea221a4,LIST_ACCOUNTS,hbciListAccounts,false +16055,79c8f5b4-8249-43f5-8df5-269f9ea221a4,LIST_TRANSACTIONS,hbciListTransactions,false +16056,79c8f5b4-8249-43f5-8df5-269f9ea221a4,AUTHORIZATION,,false +16057,79c8f5b4-8249-43f5-8df5-269f9ea221a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16058,79c8f5b4-8249-43f5-8df5-269f9ea221a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16059,79c8f5b4-8249-43f5-8df5-269f9ea221a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16060,00bac099-aeaf-465b-b97d-002fa3bce650,LIST_ACCOUNTS,xs2aListAccounts,true -16061,00bac099-aeaf-465b-b97d-002fa3bce650,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16061,00bac099-aeaf-465b-b97d-002fa3bce650,LIST_TRANSACTIONS,xs2aListTransactions,true 16062,00bac099-aeaf-465b-b97d-002fa3bce650,AUTHORIZATION,,true 16063,00bac099-aeaf-465b-b97d-002fa3bce650,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16064,00bac099-aeaf-465b-b97d-002fa3bce650,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16065,00bac099-aeaf-465b-b97d-002fa3bce650,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16066,45a565a1-6d7f-4b0a-97ba-02c6b699588c,LIST_ACCOUNTS,hbciListAccounts,false -16067,45a565a1-6d7f-4b0a-97ba-02c6b699588c,LIST_TRANSACTIONS,hbciListTransactions,false -16068,45a565a1-6d7f-4b0a-97ba-02c6b699588c,AUTHORIZATION,,false -16069,45a565a1-6d7f-4b0a-97ba-02c6b699588c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16070,45a565a1-6d7f-4b0a-97ba-02c6b699588c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16071,45a565a1-6d7f-4b0a-97ba-02c6b699588c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16066,272f68b4-f560-47a1-989d-b75b09bf7064,LIST_ACCOUNTS,hbciListAccounts,false +16067,272f68b4-f560-47a1-989d-b75b09bf7064,LIST_TRANSACTIONS,hbciListTransactions,false +16068,272f68b4-f560-47a1-989d-b75b09bf7064,AUTHORIZATION,,false +16069,272f68b4-f560-47a1-989d-b75b09bf7064,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16070,272f68b4-f560-47a1-989d-b75b09bf7064,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16071,272f68b4-f560-47a1-989d-b75b09bf7064,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16072,bd5e823a-9f1c-44db-a433-a77e1954c546,LIST_ACCOUNTS,xs2aListAccounts,true -16073,bd5e823a-9f1c-44db-a433-a77e1954c546,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16073,bd5e823a-9f1c-44db-a433-a77e1954c546,LIST_TRANSACTIONS,xs2aListTransactions,true 16074,bd5e823a-9f1c-44db-a433-a77e1954c546,AUTHORIZATION,,true 16075,bd5e823a-9f1c-44db-a433-a77e1954c546,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16076,bd5e823a-9f1c-44db-a433-a77e1954c546,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16077,bd5e823a-9f1c-44db-a433-a77e1954c546,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16078,cd6960b9-e743-424e-96d4-1bd0676a9bac,LIST_ACCOUNTS,hbciListAccounts,false -16079,cd6960b9-e743-424e-96d4-1bd0676a9bac,LIST_TRANSACTIONS,hbciListTransactions,false -16080,cd6960b9-e743-424e-96d4-1bd0676a9bac,AUTHORIZATION,,false -16081,cd6960b9-e743-424e-96d4-1bd0676a9bac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16082,cd6960b9-e743-424e-96d4-1bd0676a9bac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16083,cd6960b9-e743-424e-96d4-1bd0676a9bac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16078,a0117d99-10b2-40c4-8200-1128bd0b289e,LIST_ACCOUNTS,hbciListAccounts,false +16079,a0117d99-10b2-40c4-8200-1128bd0b289e,LIST_TRANSACTIONS,hbciListTransactions,false +16080,a0117d99-10b2-40c4-8200-1128bd0b289e,AUTHORIZATION,,false +16081,a0117d99-10b2-40c4-8200-1128bd0b289e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16082,a0117d99-10b2-40c4-8200-1128bd0b289e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16083,a0117d99-10b2-40c4-8200-1128bd0b289e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16084,3e412256-5bfc-4ac8-9db1-eebb18c84937,LIST_ACCOUNTS,xs2aListAccounts,true -16085,3e412256-5bfc-4ac8-9db1-eebb18c84937,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16085,3e412256-5bfc-4ac8-9db1-eebb18c84937,LIST_TRANSACTIONS,xs2aListTransactions,true 16086,3e412256-5bfc-4ac8-9db1-eebb18c84937,AUTHORIZATION,,true 16087,3e412256-5bfc-4ac8-9db1-eebb18c84937,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16088,3e412256-5bfc-4ac8-9db1-eebb18c84937,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16089,3e412256-5bfc-4ac8-9db1-eebb18c84937,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16090,b1209ba1-46c4-4197-931e-01e3ff26b40d,LIST_ACCOUNTS,hbciListAccounts,false -16091,b1209ba1-46c4-4197-931e-01e3ff26b40d,LIST_TRANSACTIONS,hbciListTransactions,false -16092,b1209ba1-46c4-4197-931e-01e3ff26b40d,AUTHORIZATION,,false -16093,b1209ba1-46c4-4197-931e-01e3ff26b40d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16094,b1209ba1-46c4-4197-931e-01e3ff26b40d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16095,b1209ba1-46c4-4197-931e-01e3ff26b40d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16090,c50bdacc-8735-4891-a6e8-aad066736d87,LIST_ACCOUNTS,hbciListAccounts,false +16091,c50bdacc-8735-4891-a6e8-aad066736d87,LIST_TRANSACTIONS,hbciListTransactions,false +16092,c50bdacc-8735-4891-a6e8-aad066736d87,AUTHORIZATION,,false +16093,c50bdacc-8735-4891-a6e8-aad066736d87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16094,c50bdacc-8735-4891-a6e8-aad066736d87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16095,c50bdacc-8735-4891-a6e8-aad066736d87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16096,e1bde97b-5d69-4c43-88cf-72fc8ac80388,LIST_ACCOUNTS,xs2aListAccounts,true -16097,e1bde97b-5d69-4c43-88cf-72fc8ac80388,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16097,e1bde97b-5d69-4c43-88cf-72fc8ac80388,LIST_TRANSACTIONS,xs2aListTransactions,true 16098,e1bde97b-5d69-4c43-88cf-72fc8ac80388,AUTHORIZATION,,true 16099,e1bde97b-5d69-4c43-88cf-72fc8ac80388,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16100,e1bde97b-5d69-4c43-88cf-72fc8ac80388,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16101,e1bde97b-5d69-4c43-88cf-72fc8ac80388,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16102,673274bf-87f4-4751-b98f-5374be603c06,LIST_ACCOUNTS,hbciListAccounts,false -16103,673274bf-87f4-4751-b98f-5374be603c06,LIST_TRANSACTIONS,hbciListTransactions,false -16104,673274bf-87f4-4751-b98f-5374be603c06,AUTHORIZATION,,false -16105,673274bf-87f4-4751-b98f-5374be603c06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16106,673274bf-87f4-4751-b98f-5374be603c06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16107,673274bf-87f4-4751-b98f-5374be603c06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16102,2182ec11-67f1-4913-aff6-27501cf8e830,LIST_ACCOUNTS,hbciListAccounts,false +16103,2182ec11-67f1-4913-aff6-27501cf8e830,LIST_TRANSACTIONS,hbciListTransactions,false +16104,2182ec11-67f1-4913-aff6-27501cf8e830,AUTHORIZATION,,false +16105,2182ec11-67f1-4913-aff6-27501cf8e830,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16106,2182ec11-67f1-4913-aff6-27501cf8e830,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16107,2182ec11-67f1-4913-aff6-27501cf8e830,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16108,f805fb72-8a00-4770-bfd3-ad3398ad0f91,LIST_ACCOUNTS,xs2aListAccounts,true -16109,f805fb72-8a00-4770-bfd3-ad3398ad0f91,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16109,f805fb72-8a00-4770-bfd3-ad3398ad0f91,LIST_TRANSACTIONS,xs2aListTransactions,true 16110,f805fb72-8a00-4770-bfd3-ad3398ad0f91,AUTHORIZATION,,true 16111,f805fb72-8a00-4770-bfd3-ad3398ad0f91,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16112,f805fb72-8a00-4770-bfd3-ad3398ad0f91,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16113,f805fb72-8a00-4770-bfd3-ad3398ad0f91,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16114,9927cfaf-cf49-41b1-882d-182e2528fe6e,LIST_ACCOUNTS,hbciListAccounts,false -16115,9927cfaf-cf49-41b1-882d-182e2528fe6e,LIST_TRANSACTIONS,hbciListTransactions,false -16116,9927cfaf-cf49-41b1-882d-182e2528fe6e,AUTHORIZATION,,false -16117,9927cfaf-cf49-41b1-882d-182e2528fe6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16118,9927cfaf-cf49-41b1-882d-182e2528fe6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16119,9927cfaf-cf49-41b1-882d-182e2528fe6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16114,0e991ee7-34b0-4a9f-91b8-3530337f4b2d,LIST_ACCOUNTS,hbciListAccounts,false +16115,0e991ee7-34b0-4a9f-91b8-3530337f4b2d,LIST_TRANSACTIONS,hbciListTransactions,false +16116,0e991ee7-34b0-4a9f-91b8-3530337f4b2d,AUTHORIZATION,,false +16117,0e991ee7-34b0-4a9f-91b8-3530337f4b2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16118,0e991ee7-34b0-4a9f-91b8-3530337f4b2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16119,0e991ee7-34b0-4a9f-91b8-3530337f4b2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16120,719ac4c3-eedf-4a7f-98e8-28724e0b003d,LIST_ACCOUNTS,xs2aListAccounts,true -16121,719ac4c3-eedf-4a7f-98e8-28724e0b003d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16121,719ac4c3-eedf-4a7f-98e8-28724e0b003d,LIST_TRANSACTIONS,xs2aListTransactions,true 16122,719ac4c3-eedf-4a7f-98e8-28724e0b003d,AUTHORIZATION,,true 16123,719ac4c3-eedf-4a7f-98e8-28724e0b003d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16124,719ac4c3-eedf-4a7f-98e8-28724e0b003d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16125,719ac4c3-eedf-4a7f-98e8-28724e0b003d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16126,8a332523-b72c-431a-a0a6-a9f25fd55882,LIST_ACCOUNTS,hbciListAccounts,false -16127,8a332523-b72c-431a-a0a6-a9f25fd55882,LIST_TRANSACTIONS,hbciListTransactions,false -16128,8a332523-b72c-431a-a0a6-a9f25fd55882,AUTHORIZATION,,false -16129,8a332523-b72c-431a-a0a6-a9f25fd55882,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16130,8a332523-b72c-431a-a0a6-a9f25fd55882,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16131,8a332523-b72c-431a-a0a6-a9f25fd55882,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16126,6c326bbc-f70d-4d68-835b-cc499894b23e,LIST_ACCOUNTS,hbciListAccounts,false +16127,6c326bbc-f70d-4d68-835b-cc499894b23e,LIST_TRANSACTIONS,hbciListTransactions,false +16128,6c326bbc-f70d-4d68-835b-cc499894b23e,AUTHORIZATION,,false +16129,6c326bbc-f70d-4d68-835b-cc499894b23e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16130,6c326bbc-f70d-4d68-835b-cc499894b23e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16131,6c326bbc-f70d-4d68-835b-cc499894b23e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16132,287ecef7-e325-44b6-9863-8128f89571fe,LIST_ACCOUNTS,xs2aListAccounts,true -16133,287ecef7-e325-44b6-9863-8128f89571fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16133,287ecef7-e325-44b6-9863-8128f89571fe,LIST_TRANSACTIONS,xs2aListTransactions,true 16134,287ecef7-e325-44b6-9863-8128f89571fe,AUTHORIZATION,,true 16135,287ecef7-e325-44b6-9863-8128f89571fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16136,287ecef7-e325-44b6-9863-8128f89571fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16137,287ecef7-e325-44b6-9863-8128f89571fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16138,64ada01d-8a26-4001-8fac-ee91a2dda110,LIST_ACCOUNTS,hbciListAccounts,false -16139,64ada01d-8a26-4001-8fac-ee91a2dda110,LIST_TRANSACTIONS,hbciListTransactions,false -16140,64ada01d-8a26-4001-8fac-ee91a2dda110,AUTHORIZATION,,false -16141,64ada01d-8a26-4001-8fac-ee91a2dda110,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16142,64ada01d-8a26-4001-8fac-ee91a2dda110,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16143,64ada01d-8a26-4001-8fac-ee91a2dda110,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16138,523bf732-b133-4609-bf4e-001385eef34a,LIST_ACCOUNTS,hbciListAccounts,false +16139,523bf732-b133-4609-bf4e-001385eef34a,LIST_TRANSACTIONS,hbciListTransactions,false +16140,523bf732-b133-4609-bf4e-001385eef34a,AUTHORIZATION,,false +16141,523bf732-b133-4609-bf4e-001385eef34a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16142,523bf732-b133-4609-bf4e-001385eef34a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16143,523bf732-b133-4609-bf4e-001385eef34a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16144,bdc4f2c8-8c6c-4c0f-9dc7-f420a3fab379,LIST_ACCOUNTS,xs2aListAccounts,true -16145,bdc4f2c8-8c6c-4c0f-9dc7-f420a3fab379,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16145,bdc4f2c8-8c6c-4c0f-9dc7-f420a3fab379,LIST_TRANSACTIONS,xs2aListTransactions,true 16146,bdc4f2c8-8c6c-4c0f-9dc7-f420a3fab379,AUTHORIZATION,,true 16147,bdc4f2c8-8c6c-4c0f-9dc7-f420a3fab379,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16148,bdc4f2c8-8c6c-4c0f-9dc7-f420a3fab379,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16149,bdc4f2c8-8c6c-4c0f-9dc7-f420a3fab379,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16150,2b155bd9-cd4f-4d0b-bbc1-d517e43f9b1a,LIST_ACCOUNTS,hbciListAccounts,false -16151,2b155bd9-cd4f-4d0b-bbc1-d517e43f9b1a,LIST_TRANSACTIONS,hbciListTransactions,false -16152,2b155bd9-cd4f-4d0b-bbc1-d517e43f9b1a,AUTHORIZATION,,false -16153,2b155bd9-cd4f-4d0b-bbc1-d517e43f9b1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16154,2b155bd9-cd4f-4d0b-bbc1-d517e43f9b1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16155,2b155bd9-cd4f-4d0b-bbc1-d517e43f9b1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16150,b7c89233-aea9-4376-9cb6-df63820cdf10,LIST_ACCOUNTS,hbciListAccounts,false +16151,b7c89233-aea9-4376-9cb6-df63820cdf10,LIST_TRANSACTIONS,hbciListTransactions,false +16152,b7c89233-aea9-4376-9cb6-df63820cdf10,AUTHORIZATION,,false +16153,b7c89233-aea9-4376-9cb6-df63820cdf10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16154,b7c89233-aea9-4376-9cb6-df63820cdf10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16155,b7c89233-aea9-4376-9cb6-df63820cdf10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16156,41152249-b004-47ed-9f37-76d6848e5767,LIST_ACCOUNTS,xs2aListAccounts,true -16157,41152249-b004-47ed-9f37-76d6848e5767,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16157,41152249-b004-47ed-9f37-76d6848e5767,LIST_TRANSACTIONS,xs2aListTransactions,true 16158,41152249-b004-47ed-9f37-76d6848e5767,AUTHORIZATION,,true 16159,41152249-b004-47ed-9f37-76d6848e5767,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16160,41152249-b004-47ed-9f37-76d6848e5767,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16161,41152249-b004-47ed-9f37-76d6848e5767,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16162,78e92849-2416-4e54-b884-850476ceccb1,LIST_ACCOUNTS,hbciListAccounts,false -16163,78e92849-2416-4e54-b884-850476ceccb1,LIST_TRANSACTIONS,hbciListTransactions,false -16164,78e92849-2416-4e54-b884-850476ceccb1,AUTHORIZATION,,false -16165,78e92849-2416-4e54-b884-850476ceccb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16166,78e92849-2416-4e54-b884-850476ceccb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16167,78e92849-2416-4e54-b884-850476ceccb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16162,44b19eac-6cb6-4936-8f5c-318220ab6cf9,LIST_ACCOUNTS,hbciListAccounts,false +16163,44b19eac-6cb6-4936-8f5c-318220ab6cf9,LIST_TRANSACTIONS,hbciListTransactions,false +16164,44b19eac-6cb6-4936-8f5c-318220ab6cf9,AUTHORIZATION,,false +16165,44b19eac-6cb6-4936-8f5c-318220ab6cf9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16166,44b19eac-6cb6-4936-8f5c-318220ab6cf9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16167,44b19eac-6cb6-4936-8f5c-318220ab6cf9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16168,8de81f68-0ce6-466c-a5e3-b9572a8729ad,LIST_ACCOUNTS,xs2aListAccounts,true -16169,8de81f68-0ce6-466c-a5e3-b9572a8729ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16169,8de81f68-0ce6-466c-a5e3-b9572a8729ad,LIST_TRANSACTIONS,xs2aListTransactions,true 16170,8de81f68-0ce6-466c-a5e3-b9572a8729ad,AUTHORIZATION,,true 16171,8de81f68-0ce6-466c-a5e3-b9572a8729ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16172,8de81f68-0ce6-466c-a5e3-b9572a8729ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16173,8de81f68-0ce6-466c-a5e3-b9572a8729ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16174,b4849f05-a74b-41e6-bef0-48f40869f0ec,LIST_ACCOUNTS,hbciListAccounts,false -16175,b4849f05-a74b-41e6-bef0-48f40869f0ec,LIST_TRANSACTIONS,hbciListTransactions,false -16176,b4849f05-a74b-41e6-bef0-48f40869f0ec,AUTHORIZATION,,false -16177,b4849f05-a74b-41e6-bef0-48f40869f0ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16178,b4849f05-a74b-41e6-bef0-48f40869f0ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16179,b4849f05-a74b-41e6-bef0-48f40869f0ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16174,4c022c89-be16-4432-bbf1-97e2ac4351f6,LIST_ACCOUNTS,hbciListAccounts,false +16175,4c022c89-be16-4432-bbf1-97e2ac4351f6,LIST_TRANSACTIONS,hbciListTransactions,false +16176,4c022c89-be16-4432-bbf1-97e2ac4351f6,AUTHORIZATION,,false +16177,4c022c89-be16-4432-bbf1-97e2ac4351f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16178,4c022c89-be16-4432-bbf1-97e2ac4351f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16179,4c022c89-be16-4432-bbf1-97e2ac4351f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16180,2f944c98-1997-4f48-92d1-e14be347f3d3,LIST_ACCOUNTS,xs2aListAccounts,true -16181,2f944c98-1997-4f48-92d1-e14be347f3d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16181,2f944c98-1997-4f48-92d1-e14be347f3d3,LIST_TRANSACTIONS,xs2aListTransactions,true 16182,2f944c98-1997-4f48-92d1-e14be347f3d3,AUTHORIZATION,,true 16183,2f944c98-1997-4f48-92d1-e14be347f3d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16184,2f944c98-1997-4f48-92d1-e14be347f3d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16185,2f944c98-1997-4f48-92d1-e14be347f3d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16186,ba8545ff-b601-42a7-8c7f-7de02414d0f9,LIST_ACCOUNTS,hbciListAccounts,false -16187,ba8545ff-b601-42a7-8c7f-7de02414d0f9,LIST_TRANSACTIONS,hbciListTransactions,false -16188,ba8545ff-b601-42a7-8c7f-7de02414d0f9,AUTHORIZATION,,false -16189,ba8545ff-b601-42a7-8c7f-7de02414d0f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16190,ba8545ff-b601-42a7-8c7f-7de02414d0f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16191,ba8545ff-b601-42a7-8c7f-7de02414d0f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16186,9b17d207-2988-4b46-8d99-ce7ed0064121,LIST_ACCOUNTS,hbciListAccounts,false +16187,9b17d207-2988-4b46-8d99-ce7ed0064121,LIST_TRANSACTIONS,hbciListTransactions,false +16188,9b17d207-2988-4b46-8d99-ce7ed0064121,AUTHORIZATION,,false +16189,9b17d207-2988-4b46-8d99-ce7ed0064121,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16190,9b17d207-2988-4b46-8d99-ce7ed0064121,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16191,9b17d207-2988-4b46-8d99-ce7ed0064121,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16192,8a56e0d8-640b-4d94-b28b-86ab1ea9070c,LIST_ACCOUNTS,xs2aListAccounts,true -16193,8a56e0d8-640b-4d94-b28b-86ab1ea9070c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16193,8a56e0d8-640b-4d94-b28b-86ab1ea9070c,LIST_TRANSACTIONS,xs2aListTransactions,true 16194,8a56e0d8-640b-4d94-b28b-86ab1ea9070c,AUTHORIZATION,,true 16195,8a56e0d8-640b-4d94-b28b-86ab1ea9070c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16196,8a56e0d8-640b-4d94-b28b-86ab1ea9070c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16197,8a56e0d8-640b-4d94-b28b-86ab1ea9070c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16198,3ae277d1-4bb5-44e7-a36e-7c17f60c094b,LIST_ACCOUNTS,hbciListAccounts,false -16199,3ae277d1-4bb5-44e7-a36e-7c17f60c094b,LIST_TRANSACTIONS,hbciListTransactions,false -16200,3ae277d1-4bb5-44e7-a36e-7c17f60c094b,AUTHORIZATION,,false -16201,3ae277d1-4bb5-44e7-a36e-7c17f60c094b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16202,3ae277d1-4bb5-44e7-a36e-7c17f60c094b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16203,3ae277d1-4bb5-44e7-a36e-7c17f60c094b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16198,823c30b3-2ff5-4b33-b485-69c7c812fa1a,LIST_ACCOUNTS,hbciListAccounts,false +16199,823c30b3-2ff5-4b33-b485-69c7c812fa1a,LIST_TRANSACTIONS,hbciListTransactions,false +16200,823c30b3-2ff5-4b33-b485-69c7c812fa1a,AUTHORIZATION,,false +16201,823c30b3-2ff5-4b33-b485-69c7c812fa1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16202,823c30b3-2ff5-4b33-b485-69c7c812fa1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16203,823c30b3-2ff5-4b33-b485-69c7c812fa1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16204,da9cffc1-e2d7-4b9c-b631-d58ee737ed43,LIST_ACCOUNTS,xs2aListAccounts,true -16205,da9cffc1-e2d7-4b9c-b631-d58ee737ed43,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16205,da9cffc1-e2d7-4b9c-b631-d58ee737ed43,LIST_TRANSACTIONS,xs2aListTransactions,true 16206,da9cffc1-e2d7-4b9c-b631-d58ee737ed43,AUTHORIZATION,,true 16207,da9cffc1-e2d7-4b9c-b631-d58ee737ed43,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16208,da9cffc1-e2d7-4b9c-b631-d58ee737ed43,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16209,da9cffc1-e2d7-4b9c-b631-d58ee737ed43,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16210,d956e8ef-b054-4eb3-9507-cf1ff8fd1446,LIST_ACCOUNTS,hbciListAccounts,false -16211,d956e8ef-b054-4eb3-9507-cf1ff8fd1446,LIST_TRANSACTIONS,hbciListTransactions,false -16212,d956e8ef-b054-4eb3-9507-cf1ff8fd1446,AUTHORIZATION,,false -16213,d956e8ef-b054-4eb3-9507-cf1ff8fd1446,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16214,d956e8ef-b054-4eb3-9507-cf1ff8fd1446,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16215,d956e8ef-b054-4eb3-9507-cf1ff8fd1446,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16210,b3361991-3bbc-4dbd-b6f9-d3808d3104d7,LIST_ACCOUNTS,hbciListAccounts,false +16211,b3361991-3bbc-4dbd-b6f9-d3808d3104d7,LIST_TRANSACTIONS,hbciListTransactions,false +16212,b3361991-3bbc-4dbd-b6f9-d3808d3104d7,AUTHORIZATION,,false +16213,b3361991-3bbc-4dbd-b6f9-d3808d3104d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16214,b3361991-3bbc-4dbd-b6f9-d3808d3104d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16215,b3361991-3bbc-4dbd-b6f9-d3808d3104d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16216,1da5e11c-86b1-40d0-bd28-5492e464f8e2,LIST_ACCOUNTS,xs2aListAccounts,true -16217,1da5e11c-86b1-40d0-bd28-5492e464f8e2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16217,1da5e11c-86b1-40d0-bd28-5492e464f8e2,LIST_TRANSACTIONS,xs2aListTransactions,true 16218,1da5e11c-86b1-40d0-bd28-5492e464f8e2,AUTHORIZATION,,true 16219,1da5e11c-86b1-40d0-bd28-5492e464f8e2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16220,1da5e11c-86b1-40d0-bd28-5492e464f8e2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16221,1da5e11c-86b1-40d0-bd28-5492e464f8e2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16222,072b9def-688c-4fe6-b9a2-59bf9a686f69,LIST_ACCOUNTS,hbciListAccounts,false -16223,072b9def-688c-4fe6-b9a2-59bf9a686f69,LIST_TRANSACTIONS,hbciListTransactions,false -16224,072b9def-688c-4fe6-b9a2-59bf9a686f69,AUTHORIZATION,,false -16225,072b9def-688c-4fe6-b9a2-59bf9a686f69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16226,072b9def-688c-4fe6-b9a2-59bf9a686f69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16227,072b9def-688c-4fe6-b9a2-59bf9a686f69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16222,315f11f3-0924-4d10-b538-7f7419d217f1,LIST_ACCOUNTS,hbciListAccounts,false +16223,315f11f3-0924-4d10-b538-7f7419d217f1,LIST_TRANSACTIONS,hbciListTransactions,false +16224,315f11f3-0924-4d10-b538-7f7419d217f1,AUTHORIZATION,,false +16225,315f11f3-0924-4d10-b538-7f7419d217f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16226,315f11f3-0924-4d10-b538-7f7419d217f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16227,315f11f3-0924-4d10-b538-7f7419d217f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16228,c221675a-5ff6-4bc2-bfe1-99c28e93139b,LIST_ACCOUNTS,xs2aListAccounts,true -16229,c221675a-5ff6-4bc2-bfe1-99c28e93139b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16229,c221675a-5ff6-4bc2-bfe1-99c28e93139b,LIST_TRANSACTIONS,xs2aListTransactions,true 16230,c221675a-5ff6-4bc2-bfe1-99c28e93139b,AUTHORIZATION,,true 16231,c221675a-5ff6-4bc2-bfe1-99c28e93139b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16232,c221675a-5ff6-4bc2-bfe1-99c28e93139b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16233,c221675a-5ff6-4bc2-bfe1-99c28e93139b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16234,228e6b9c-5a45-4350-9553-b95bce2e7b67,LIST_ACCOUNTS,hbciListAccounts,false -16235,228e6b9c-5a45-4350-9553-b95bce2e7b67,LIST_TRANSACTIONS,hbciListTransactions,false -16236,228e6b9c-5a45-4350-9553-b95bce2e7b67,AUTHORIZATION,,false -16237,228e6b9c-5a45-4350-9553-b95bce2e7b67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16238,228e6b9c-5a45-4350-9553-b95bce2e7b67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16239,228e6b9c-5a45-4350-9553-b95bce2e7b67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16234,6e4a1b20-0488-4c13-ba5b-3787b8de5221,LIST_ACCOUNTS,hbciListAccounts,false +16235,6e4a1b20-0488-4c13-ba5b-3787b8de5221,LIST_TRANSACTIONS,hbciListTransactions,false +16236,6e4a1b20-0488-4c13-ba5b-3787b8de5221,AUTHORIZATION,,false +16237,6e4a1b20-0488-4c13-ba5b-3787b8de5221,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16238,6e4a1b20-0488-4c13-ba5b-3787b8de5221,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16239,6e4a1b20-0488-4c13-ba5b-3787b8de5221,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16240,ba07303c-e3a4-4352-9771-b269a297b5bc,LIST_ACCOUNTS,xs2aListAccounts,true -16241,ba07303c-e3a4-4352-9771-b269a297b5bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16241,ba07303c-e3a4-4352-9771-b269a297b5bc,LIST_TRANSACTIONS,xs2aListTransactions,true 16242,ba07303c-e3a4-4352-9771-b269a297b5bc,AUTHORIZATION,,true 16243,ba07303c-e3a4-4352-9771-b269a297b5bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16244,ba07303c-e3a4-4352-9771-b269a297b5bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16245,ba07303c-e3a4-4352-9771-b269a297b5bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16246,583ab3fd-1de8-4673-89bb-e8c070558430,LIST_ACCOUNTS,hbciListAccounts,false -16247,583ab3fd-1de8-4673-89bb-e8c070558430,LIST_TRANSACTIONS,hbciListTransactions,false -16248,583ab3fd-1de8-4673-89bb-e8c070558430,AUTHORIZATION,,false -16249,583ab3fd-1de8-4673-89bb-e8c070558430,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16250,583ab3fd-1de8-4673-89bb-e8c070558430,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16251,583ab3fd-1de8-4673-89bb-e8c070558430,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16246,77a5a629-f741-4710-b6ab-aa68483f19d2,LIST_ACCOUNTS,hbciListAccounts,false +16247,77a5a629-f741-4710-b6ab-aa68483f19d2,LIST_TRANSACTIONS,hbciListTransactions,false +16248,77a5a629-f741-4710-b6ab-aa68483f19d2,AUTHORIZATION,,false +16249,77a5a629-f741-4710-b6ab-aa68483f19d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16250,77a5a629-f741-4710-b6ab-aa68483f19d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16251,77a5a629-f741-4710-b6ab-aa68483f19d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16252,c8c401a0-f967-41b4-8618-f36333a06b38,LIST_ACCOUNTS,xs2aListAccounts,true -16253,c8c401a0-f967-41b4-8618-f36333a06b38,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16253,c8c401a0-f967-41b4-8618-f36333a06b38,LIST_TRANSACTIONS,xs2aListTransactions,true 16254,c8c401a0-f967-41b4-8618-f36333a06b38,AUTHORIZATION,,true 16255,c8c401a0-f967-41b4-8618-f36333a06b38,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16256,c8c401a0-f967-41b4-8618-f36333a06b38,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16257,c8c401a0-f967-41b4-8618-f36333a06b38,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16258,e6a46c39-0133-4f25-9aca-3536bc4b3f2f,LIST_ACCOUNTS,hbciListAccounts,false -16259,e6a46c39-0133-4f25-9aca-3536bc4b3f2f,LIST_TRANSACTIONS,hbciListTransactions,false -16260,e6a46c39-0133-4f25-9aca-3536bc4b3f2f,AUTHORIZATION,,false -16261,e6a46c39-0133-4f25-9aca-3536bc4b3f2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16262,e6a46c39-0133-4f25-9aca-3536bc4b3f2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16263,e6a46c39-0133-4f25-9aca-3536bc4b3f2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16258,592dd6a1-b9aa-4a61-a4f6-23b8de68060d,LIST_ACCOUNTS,hbciListAccounts,false +16259,592dd6a1-b9aa-4a61-a4f6-23b8de68060d,LIST_TRANSACTIONS,hbciListTransactions,false +16260,592dd6a1-b9aa-4a61-a4f6-23b8de68060d,AUTHORIZATION,,false +16261,592dd6a1-b9aa-4a61-a4f6-23b8de68060d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16262,592dd6a1-b9aa-4a61-a4f6-23b8de68060d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16263,592dd6a1-b9aa-4a61-a4f6-23b8de68060d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16264,4138fb72-8876-46a0-897c-c84046563bcb,LIST_ACCOUNTS,xs2aListAccounts,true -16265,4138fb72-8876-46a0-897c-c84046563bcb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16265,4138fb72-8876-46a0-897c-c84046563bcb,LIST_TRANSACTIONS,xs2aListTransactions,true 16266,4138fb72-8876-46a0-897c-c84046563bcb,AUTHORIZATION,,true 16267,4138fb72-8876-46a0-897c-c84046563bcb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16268,4138fb72-8876-46a0-897c-c84046563bcb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16269,4138fb72-8876-46a0-897c-c84046563bcb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16270,673871dd-df4a-4627-9e9f-8e8295ad3444,LIST_ACCOUNTS,hbciListAccounts,false -16271,673871dd-df4a-4627-9e9f-8e8295ad3444,LIST_TRANSACTIONS,hbciListTransactions,false -16272,673871dd-df4a-4627-9e9f-8e8295ad3444,AUTHORIZATION,,false -16273,673871dd-df4a-4627-9e9f-8e8295ad3444,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16274,673871dd-df4a-4627-9e9f-8e8295ad3444,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16275,673871dd-df4a-4627-9e9f-8e8295ad3444,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16270,af0c8fef-51fa-46dc-9cea-226d404d940e,LIST_ACCOUNTS,hbciListAccounts,false +16271,af0c8fef-51fa-46dc-9cea-226d404d940e,LIST_TRANSACTIONS,hbciListTransactions,false +16272,af0c8fef-51fa-46dc-9cea-226d404d940e,AUTHORIZATION,,false +16273,af0c8fef-51fa-46dc-9cea-226d404d940e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16274,af0c8fef-51fa-46dc-9cea-226d404d940e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16275,af0c8fef-51fa-46dc-9cea-226d404d940e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16276,6cc3323c-113b-470a-ab0c-bcfaadc64f0f,LIST_ACCOUNTS,xs2aListAccounts,true -16277,6cc3323c-113b-470a-ab0c-bcfaadc64f0f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16277,6cc3323c-113b-470a-ab0c-bcfaadc64f0f,LIST_TRANSACTIONS,xs2aListTransactions,true 16278,6cc3323c-113b-470a-ab0c-bcfaadc64f0f,AUTHORIZATION,,true 16279,6cc3323c-113b-470a-ab0c-bcfaadc64f0f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16280,6cc3323c-113b-470a-ab0c-bcfaadc64f0f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16281,6cc3323c-113b-470a-ab0c-bcfaadc64f0f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16282,976af41e-86ee-45de-bf26-bb4553d67388,LIST_ACCOUNTS,hbciListAccounts,false -16283,976af41e-86ee-45de-bf26-bb4553d67388,LIST_TRANSACTIONS,hbciListTransactions,false -16284,976af41e-86ee-45de-bf26-bb4553d67388,AUTHORIZATION,,false -16285,976af41e-86ee-45de-bf26-bb4553d67388,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16286,976af41e-86ee-45de-bf26-bb4553d67388,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16287,976af41e-86ee-45de-bf26-bb4553d67388,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16282,ea9de9dd-f5bf-408c-8ded-41e850a1ec7d,LIST_ACCOUNTS,hbciListAccounts,false +16283,ea9de9dd-f5bf-408c-8ded-41e850a1ec7d,LIST_TRANSACTIONS,hbciListTransactions,false +16284,ea9de9dd-f5bf-408c-8ded-41e850a1ec7d,AUTHORIZATION,,false +16285,ea9de9dd-f5bf-408c-8ded-41e850a1ec7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16286,ea9de9dd-f5bf-408c-8ded-41e850a1ec7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16287,ea9de9dd-f5bf-408c-8ded-41e850a1ec7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16288,31fee3f7-b55c-41ec-bfff-ef313ec5828b,LIST_ACCOUNTS,xs2aListAccounts,true -16289,31fee3f7-b55c-41ec-bfff-ef313ec5828b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16289,31fee3f7-b55c-41ec-bfff-ef313ec5828b,LIST_TRANSACTIONS,xs2aListTransactions,true 16290,31fee3f7-b55c-41ec-bfff-ef313ec5828b,AUTHORIZATION,,true 16291,31fee3f7-b55c-41ec-bfff-ef313ec5828b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16292,31fee3f7-b55c-41ec-bfff-ef313ec5828b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16293,31fee3f7-b55c-41ec-bfff-ef313ec5828b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16294,b59186e7-8a4f-4f8d-862c-428c6d3ccd84,LIST_ACCOUNTS,hbciListAccounts,false -16295,b59186e7-8a4f-4f8d-862c-428c6d3ccd84,LIST_TRANSACTIONS,hbciListTransactions,false -16296,b59186e7-8a4f-4f8d-862c-428c6d3ccd84,AUTHORIZATION,,false -16297,b59186e7-8a4f-4f8d-862c-428c6d3ccd84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16298,b59186e7-8a4f-4f8d-862c-428c6d3ccd84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16299,b59186e7-8a4f-4f8d-862c-428c6d3ccd84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16294,0690b976-c69e-4ce4-9a76-3efe77e9cbea,LIST_ACCOUNTS,hbciListAccounts,false +16295,0690b976-c69e-4ce4-9a76-3efe77e9cbea,LIST_TRANSACTIONS,hbciListTransactions,false +16296,0690b976-c69e-4ce4-9a76-3efe77e9cbea,AUTHORIZATION,,false +16297,0690b976-c69e-4ce4-9a76-3efe77e9cbea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16298,0690b976-c69e-4ce4-9a76-3efe77e9cbea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16299,0690b976-c69e-4ce4-9a76-3efe77e9cbea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16300,38cd62bb-5b3a-4dbf-aa5f-820b189d61bc,LIST_ACCOUNTS,xs2aListAccounts,true -16301,38cd62bb-5b3a-4dbf-aa5f-820b189d61bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16301,38cd62bb-5b3a-4dbf-aa5f-820b189d61bc,LIST_TRANSACTIONS,xs2aListTransactions,true 16302,38cd62bb-5b3a-4dbf-aa5f-820b189d61bc,AUTHORIZATION,,true 16303,38cd62bb-5b3a-4dbf-aa5f-820b189d61bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16304,38cd62bb-5b3a-4dbf-aa5f-820b189d61bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16305,38cd62bb-5b3a-4dbf-aa5f-820b189d61bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16306,20da1e9e-8c84-49ca-9796-11a1a8ce8a4f,LIST_ACCOUNTS,hbciListAccounts,false -16307,20da1e9e-8c84-49ca-9796-11a1a8ce8a4f,LIST_TRANSACTIONS,hbciListTransactions,false -16308,20da1e9e-8c84-49ca-9796-11a1a8ce8a4f,AUTHORIZATION,,false -16309,20da1e9e-8c84-49ca-9796-11a1a8ce8a4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16310,20da1e9e-8c84-49ca-9796-11a1a8ce8a4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16311,20da1e9e-8c84-49ca-9796-11a1a8ce8a4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16306,1cc7d6d1-f6d8-469e-bdba-86724fc7d6e4,LIST_ACCOUNTS,hbciListAccounts,false +16307,1cc7d6d1-f6d8-469e-bdba-86724fc7d6e4,LIST_TRANSACTIONS,hbciListTransactions,false +16308,1cc7d6d1-f6d8-469e-bdba-86724fc7d6e4,AUTHORIZATION,,false +16309,1cc7d6d1-f6d8-469e-bdba-86724fc7d6e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16310,1cc7d6d1-f6d8-469e-bdba-86724fc7d6e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16311,1cc7d6d1-f6d8-469e-bdba-86724fc7d6e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16312,edddb5fc-a4f0-40e0-a515-4670fa760af6,LIST_ACCOUNTS,xs2aListAccounts,true -16313,edddb5fc-a4f0-40e0-a515-4670fa760af6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16313,edddb5fc-a4f0-40e0-a515-4670fa760af6,LIST_TRANSACTIONS,xs2aListTransactions,true 16314,edddb5fc-a4f0-40e0-a515-4670fa760af6,AUTHORIZATION,,true 16315,edddb5fc-a4f0-40e0-a515-4670fa760af6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16316,edddb5fc-a4f0-40e0-a515-4670fa760af6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16317,edddb5fc-a4f0-40e0-a515-4670fa760af6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16318,6291d121-d0c0-4575-b800-11093d0105f1,LIST_ACCOUNTS,hbciListAccounts,false -16319,6291d121-d0c0-4575-b800-11093d0105f1,LIST_TRANSACTIONS,hbciListTransactions,false -16320,6291d121-d0c0-4575-b800-11093d0105f1,AUTHORIZATION,,false -16321,6291d121-d0c0-4575-b800-11093d0105f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16322,6291d121-d0c0-4575-b800-11093d0105f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16323,6291d121-d0c0-4575-b800-11093d0105f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16318,371aff9c-fcaa-419d-a98c-f4f89c07aef6,LIST_ACCOUNTS,hbciListAccounts,false +16319,371aff9c-fcaa-419d-a98c-f4f89c07aef6,LIST_TRANSACTIONS,hbciListTransactions,false +16320,371aff9c-fcaa-419d-a98c-f4f89c07aef6,AUTHORIZATION,,false +16321,371aff9c-fcaa-419d-a98c-f4f89c07aef6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16322,371aff9c-fcaa-419d-a98c-f4f89c07aef6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16323,371aff9c-fcaa-419d-a98c-f4f89c07aef6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16324,c859438a-96ee-4c73-9424-6ba98801b1e1,LIST_ACCOUNTS,xs2aListAccounts,true -16325,c859438a-96ee-4c73-9424-6ba98801b1e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16325,c859438a-96ee-4c73-9424-6ba98801b1e1,LIST_TRANSACTIONS,xs2aListTransactions,true 16326,c859438a-96ee-4c73-9424-6ba98801b1e1,AUTHORIZATION,,true 16327,c859438a-96ee-4c73-9424-6ba98801b1e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16328,c859438a-96ee-4c73-9424-6ba98801b1e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16329,c859438a-96ee-4c73-9424-6ba98801b1e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16330,8e479897-6f9b-4ec9-bcff-3b48c663d8f5,LIST_ACCOUNTS,hbciListAccounts,false -16331,8e479897-6f9b-4ec9-bcff-3b48c663d8f5,LIST_TRANSACTIONS,hbciListTransactions,false -16332,8e479897-6f9b-4ec9-bcff-3b48c663d8f5,AUTHORIZATION,,false -16333,8e479897-6f9b-4ec9-bcff-3b48c663d8f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16334,8e479897-6f9b-4ec9-bcff-3b48c663d8f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16335,8e479897-6f9b-4ec9-bcff-3b48c663d8f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16330,cdbf6ad5-4cd5-4657-99d6-5b4f4104602e,LIST_ACCOUNTS,hbciListAccounts,false +16331,cdbf6ad5-4cd5-4657-99d6-5b4f4104602e,LIST_TRANSACTIONS,hbciListTransactions,false +16332,cdbf6ad5-4cd5-4657-99d6-5b4f4104602e,AUTHORIZATION,,false +16333,cdbf6ad5-4cd5-4657-99d6-5b4f4104602e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16334,cdbf6ad5-4cd5-4657-99d6-5b4f4104602e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16335,cdbf6ad5-4cd5-4657-99d6-5b4f4104602e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16336,a1158ac2-ecb1-4ff4-9d06-5d0e0e7394b4,LIST_ACCOUNTS,xs2aListAccounts,true -16337,a1158ac2-ecb1-4ff4-9d06-5d0e0e7394b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16337,a1158ac2-ecb1-4ff4-9d06-5d0e0e7394b4,LIST_TRANSACTIONS,xs2aListTransactions,true 16338,a1158ac2-ecb1-4ff4-9d06-5d0e0e7394b4,AUTHORIZATION,,true 16339,a1158ac2-ecb1-4ff4-9d06-5d0e0e7394b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16340,a1158ac2-ecb1-4ff4-9d06-5d0e0e7394b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16341,a1158ac2-ecb1-4ff4-9d06-5d0e0e7394b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16342,0bb3f135-24a8-4a53-ad29-8e300ffd0a37,LIST_ACCOUNTS,hbciListAccounts,false -16343,0bb3f135-24a8-4a53-ad29-8e300ffd0a37,LIST_TRANSACTIONS,hbciListTransactions,false -16344,0bb3f135-24a8-4a53-ad29-8e300ffd0a37,AUTHORIZATION,,false -16345,0bb3f135-24a8-4a53-ad29-8e300ffd0a37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16346,0bb3f135-24a8-4a53-ad29-8e300ffd0a37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16347,0bb3f135-24a8-4a53-ad29-8e300ffd0a37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16342,75beac86-2c1f-4b7a-9c1f-a80d551222b7,LIST_ACCOUNTS,hbciListAccounts,false +16343,75beac86-2c1f-4b7a-9c1f-a80d551222b7,LIST_TRANSACTIONS,hbciListTransactions,false +16344,75beac86-2c1f-4b7a-9c1f-a80d551222b7,AUTHORIZATION,,false +16345,75beac86-2c1f-4b7a-9c1f-a80d551222b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16346,75beac86-2c1f-4b7a-9c1f-a80d551222b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16347,75beac86-2c1f-4b7a-9c1f-a80d551222b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16348,9afb2d91-820a-48b5-8b34-4373e51a6261,LIST_ACCOUNTS,xs2aListAccounts,true -16349,9afb2d91-820a-48b5-8b34-4373e51a6261,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16349,9afb2d91-820a-48b5-8b34-4373e51a6261,LIST_TRANSACTIONS,xs2aListTransactions,true 16350,9afb2d91-820a-48b5-8b34-4373e51a6261,AUTHORIZATION,,true 16351,9afb2d91-820a-48b5-8b34-4373e51a6261,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16352,9afb2d91-820a-48b5-8b34-4373e51a6261,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16353,9afb2d91-820a-48b5-8b34-4373e51a6261,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16354,9b6d5f88-f0ed-4384-b79b-cfeb201d0035,LIST_ACCOUNTS,hbciListAccounts,false -16355,9b6d5f88-f0ed-4384-b79b-cfeb201d0035,LIST_TRANSACTIONS,hbciListTransactions,false -16356,9b6d5f88-f0ed-4384-b79b-cfeb201d0035,AUTHORIZATION,,false -16357,9b6d5f88-f0ed-4384-b79b-cfeb201d0035,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16358,9b6d5f88-f0ed-4384-b79b-cfeb201d0035,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16359,9b6d5f88-f0ed-4384-b79b-cfeb201d0035,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16354,475e14ce-cf38-47b9-9195-69e4d9fd7ced,LIST_ACCOUNTS,hbciListAccounts,false +16355,475e14ce-cf38-47b9-9195-69e4d9fd7ced,LIST_TRANSACTIONS,hbciListTransactions,false +16356,475e14ce-cf38-47b9-9195-69e4d9fd7ced,AUTHORIZATION,,false +16357,475e14ce-cf38-47b9-9195-69e4d9fd7ced,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16358,475e14ce-cf38-47b9-9195-69e4d9fd7ced,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16359,475e14ce-cf38-47b9-9195-69e4d9fd7ced,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16360,1d3ac6ba-5859-4fc3-a3ad-5adbb2fd1e66,LIST_ACCOUNTS,xs2aListAccounts,true -16361,1d3ac6ba-5859-4fc3-a3ad-5adbb2fd1e66,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16361,1d3ac6ba-5859-4fc3-a3ad-5adbb2fd1e66,LIST_TRANSACTIONS,xs2aListTransactions,true 16362,1d3ac6ba-5859-4fc3-a3ad-5adbb2fd1e66,AUTHORIZATION,,true 16363,1d3ac6ba-5859-4fc3-a3ad-5adbb2fd1e66,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16364,1d3ac6ba-5859-4fc3-a3ad-5adbb2fd1e66,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16365,1d3ac6ba-5859-4fc3-a3ad-5adbb2fd1e66,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16366,68207426-2423-417d-9aef-ebb6ed0ae6f5,LIST_ACCOUNTS,hbciListAccounts,false -16367,68207426-2423-417d-9aef-ebb6ed0ae6f5,LIST_TRANSACTIONS,hbciListTransactions,false -16368,68207426-2423-417d-9aef-ebb6ed0ae6f5,AUTHORIZATION,,false -16369,68207426-2423-417d-9aef-ebb6ed0ae6f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16370,68207426-2423-417d-9aef-ebb6ed0ae6f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16371,68207426-2423-417d-9aef-ebb6ed0ae6f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16366,3e2b73a6-7a35-4752-bc6a-05030666c6b4,LIST_ACCOUNTS,hbciListAccounts,false +16367,3e2b73a6-7a35-4752-bc6a-05030666c6b4,LIST_TRANSACTIONS,hbciListTransactions,false +16368,3e2b73a6-7a35-4752-bc6a-05030666c6b4,AUTHORIZATION,,false +16369,3e2b73a6-7a35-4752-bc6a-05030666c6b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16370,3e2b73a6-7a35-4752-bc6a-05030666c6b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16371,3e2b73a6-7a35-4752-bc6a-05030666c6b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16372,90b5546a-4ca0-4f73-b744-00d600ce907a,LIST_ACCOUNTS,xs2aListAccounts,true -16373,90b5546a-4ca0-4f73-b744-00d600ce907a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16373,90b5546a-4ca0-4f73-b744-00d600ce907a,LIST_TRANSACTIONS,xs2aListTransactions,true 16374,90b5546a-4ca0-4f73-b744-00d600ce907a,AUTHORIZATION,,true 16375,90b5546a-4ca0-4f73-b744-00d600ce907a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16376,90b5546a-4ca0-4f73-b744-00d600ce907a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16377,90b5546a-4ca0-4f73-b744-00d600ce907a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16378,ca6f19a8-b1d8-4d84-9080-77f8ec51c62e,LIST_ACCOUNTS,hbciListAccounts,false -16379,ca6f19a8-b1d8-4d84-9080-77f8ec51c62e,LIST_TRANSACTIONS,hbciListTransactions,false -16380,ca6f19a8-b1d8-4d84-9080-77f8ec51c62e,AUTHORIZATION,,false -16381,ca6f19a8-b1d8-4d84-9080-77f8ec51c62e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16382,ca6f19a8-b1d8-4d84-9080-77f8ec51c62e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16383,ca6f19a8-b1d8-4d84-9080-77f8ec51c62e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16378,03a14ee1-b97f-45c6-ad83-7691a44f4a74,LIST_ACCOUNTS,hbciListAccounts,false +16379,03a14ee1-b97f-45c6-ad83-7691a44f4a74,LIST_TRANSACTIONS,hbciListTransactions,false +16380,03a14ee1-b97f-45c6-ad83-7691a44f4a74,AUTHORIZATION,,false +16381,03a14ee1-b97f-45c6-ad83-7691a44f4a74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16382,03a14ee1-b97f-45c6-ad83-7691a44f4a74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16383,03a14ee1-b97f-45c6-ad83-7691a44f4a74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16384,ff6bf96d-5b58-4be1-b05f-d497d4164330,LIST_ACCOUNTS,xs2aListAccounts,true -16385,ff6bf96d-5b58-4be1-b05f-d497d4164330,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16385,ff6bf96d-5b58-4be1-b05f-d497d4164330,LIST_TRANSACTIONS,xs2aListTransactions,true 16386,ff6bf96d-5b58-4be1-b05f-d497d4164330,AUTHORIZATION,,true 16387,ff6bf96d-5b58-4be1-b05f-d497d4164330,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16388,ff6bf96d-5b58-4be1-b05f-d497d4164330,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16389,ff6bf96d-5b58-4be1-b05f-d497d4164330,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16390,6034f87b-ca62-4339-b319-3fb574f46c57,LIST_ACCOUNTS,hbciListAccounts,false -16391,6034f87b-ca62-4339-b319-3fb574f46c57,LIST_TRANSACTIONS,hbciListTransactions,false -16392,6034f87b-ca62-4339-b319-3fb574f46c57,AUTHORIZATION,,false -16393,6034f87b-ca62-4339-b319-3fb574f46c57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16394,6034f87b-ca62-4339-b319-3fb574f46c57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16395,6034f87b-ca62-4339-b319-3fb574f46c57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16390,5a9070c5-ca60-46c8-92e0-985e615f8a24,LIST_ACCOUNTS,hbciListAccounts,false +16391,5a9070c5-ca60-46c8-92e0-985e615f8a24,LIST_TRANSACTIONS,hbciListTransactions,false +16392,5a9070c5-ca60-46c8-92e0-985e615f8a24,AUTHORIZATION,,false +16393,5a9070c5-ca60-46c8-92e0-985e615f8a24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16394,5a9070c5-ca60-46c8-92e0-985e615f8a24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16395,5a9070c5-ca60-46c8-92e0-985e615f8a24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16396,09e03c2d-e2a3-406e-b2fa-dfe5d538ca9a,LIST_ACCOUNTS,xs2aListAccounts,true -16397,09e03c2d-e2a3-406e-b2fa-dfe5d538ca9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16397,09e03c2d-e2a3-406e-b2fa-dfe5d538ca9a,LIST_TRANSACTIONS,xs2aListTransactions,true 16398,09e03c2d-e2a3-406e-b2fa-dfe5d538ca9a,AUTHORIZATION,,true 16399,09e03c2d-e2a3-406e-b2fa-dfe5d538ca9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16400,09e03c2d-e2a3-406e-b2fa-dfe5d538ca9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16401,09e03c2d-e2a3-406e-b2fa-dfe5d538ca9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16402,f52b8b51-ac54-4612-8740-98c0a7635307,LIST_ACCOUNTS,hbciListAccounts,false -16403,f52b8b51-ac54-4612-8740-98c0a7635307,LIST_TRANSACTIONS,hbciListTransactions,false -16404,f52b8b51-ac54-4612-8740-98c0a7635307,AUTHORIZATION,,false -16405,f52b8b51-ac54-4612-8740-98c0a7635307,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16406,f52b8b51-ac54-4612-8740-98c0a7635307,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16407,f52b8b51-ac54-4612-8740-98c0a7635307,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16402,7a7fb3c5-5d7b-469b-b199-1de7ebf73336,LIST_ACCOUNTS,hbciListAccounts,false +16403,7a7fb3c5-5d7b-469b-b199-1de7ebf73336,LIST_TRANSACTIONS,hbciListTransactions,false +16404,7a7fb3c5-5d7b-469b-b199-1de7ebf73336,AUTHORIZATION,,false +16405,7a7fb3c5-5d7b-469b-b199-1de7ebf73336,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16406,7a7fb3c5-5d7b-469b-b199-1de7ebf73336,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16407,7a7fb3c5-5d7b-469b-b199-1de7ebf73336,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16408,8aeae77d-50f1-41a4-9c7c-3c9bee3fa228,LIST_ACCOUNTS,xs2aListAccounts,true -16409,8aeae77d-50f1-41a4-9c7c-3c9bee3fa228,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16409,8aeae77d-50f1-41a4-9c7c-3c9bee3fa228,LIST_TRANSACTIONS,xs2aListTransactions,true 16410,8aeae77d-50f1-41a4-9c7c-3c9bee3fa228,AUTHORIZATION,,true 16411,8aeae77d-50f1-41a4-9c7c-3c9bee3fa228,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16412,8aeae77d-50f1-41a4-9c7c-3c9bee3fa228,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16413,8aeae77d-50f1-41a4-9c7c-3c9bee3fa228,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16414,0240700b-5427-47c1-8cfc-7aa77e8f1483,LIST_ACCOUNTS,hbciListAccounts,false -16415,0240700b-5427-47c1-8cfc-7aa77e8f1483,LIST_TRANSACTIONS,hbciListTransactions,false -16416,0240700b-5427-47c1-8cfc-7aa77e8f1483,AUTHORIZATION,,false -16417,0240700b-5427-47c1-8cfc-7aa77e8f1483,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16418,0240700b-5427-47c1-8cfc-7aa77e8f1483,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16419,0240700b-5427-47c1-8cfc-7aa77e8f1483,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16414,876491c0-08f6-4a00-94cf-bfa828f2ee04,LIST_ACCOUNTS,hbciListAccounts,false +16415,876491c0-08f6-4a00-94cf-bfa828f2ee04,LIST_TRANSACTIONS,hbciListTransactions,false +16416,876491c0-08f6-4a00-94cf-bfa828f2ee04,AUTHORIZATION,,false +16417,876491c0-08f6-4a00-94cf-bfa828f2ee04,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16418,876491c0-08f6-4a00-94cf-bfa828f2ee04,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16419,876491c0-08f6-4a00-94cf-bfa828f2ee04,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16420,c1abec4f-3761-49e3-8f84-97f447aca9f5,LIST_ACCOUNTS,xs2aListAccounts,true -16421,c1abec4f-3761-49e3-8f84-97f447aca9f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16421,c1abec4f-3761-49e3-8f84-97f447aca9f5,LIST_TRANSACTIONS,xs2aListTransactions,true 16422,c1abec4f-3761-49e3-8f84-97f447aca9f5,AUTHORIZATION,,true 16423,c1abec4f-3761-49e3-8f84-97f447aca9f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16424,c1abec4f-3761-49e3-8f84-97f447aca9f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16425,c1abec4f-3761-49e3-8f84-97f447aca9f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16426,a0aa6913-d577-4ed2-9cd2-d67231295235,LIST_ACCOUNTS,hbciListAccounts,false -16427,a0aa6913-d577-4ed2-9cd2-d67231295235,LIST_TRANSACTIONS,hbciListTransactions,false -16428,a0aa6913-d577-4ed2-9cd2-d67231295235,AUTHORIZATION,,false -16429,a0aa6913-d577-4ed2-9cd2-d67231295235,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16430,a0aa6913-d577-4ed2-9cd2-d67231295235,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16431,a0aa6913-d577-4ed2-9cd2-d67231295235,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16426,23966aad-3898-4211-943a-138ce1ee84a3,LIST_ACCOUNTS,hbciListAccounts,false +16427,23966aad-3898-4211-943a-138ce1ee84a3,LIST_TRANSACTIONS,hbciListTransactions,false +16428,23966aad-3898-4211-943a-138ce1ee84a3,AUTHORIZATION,,false +16429,23966aad-3898-4211-943a-138ce1ee84a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16430,23966aad-3898-4211-943a-138ce1ee84a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16431,23966aad-3898-4211-943a-138ce1ee84a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16432,c71879c5-c9e5-43e7-aec2-11b5cd16fe62,LIST_ACCOUNTS,xs2aListAccounts,true -16433,c71879c5-c9e5-43e7-aec2-11b5cd16fe62,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16433,c71879c5-c9e5-43e7-aec2-11b5cd16fe62,LIST_TRANSACTIONS,xs2aListTransactions,true 16434,c71879c5-c9e5-43e7-aec2-11b5cd16fe62,AUTHORIZATION,,true 16435,c71879c5-c9e5-43e7-aec2-11b5cd16fe62,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16436,c71879c5-c9e5-43e7-aec2-11b5cd16fe62,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16437,c71879c5-c9e5-43e7-aec2-11b5cd16fe62,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16438,68e8145a-4893-4d39-8eea-4a13098b643b,LIST_ACCOUNTS,hbciListAccounts,false -16439,68e8145a-4893-4d39-8eea-4a13098b643b,LIST_TRANSACTIONS,hbciListTransactions,false -16440,68e8145a-4893-4d39-8eea-4a13098b643b,AUTHORIZATION,,false -16441,68e8145a-4893-4d39-8eea-4a13098b643b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16442,68e8145a-4893-4d39-8eea-4a13098b643b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16443,68e8145a-4893-4d39-8eea-4a13098b643b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16438,87bed7a5-0b67-4379-8395-9ceab6419702,LIST_ACCOUNTS,hbciListAccounts,false +16439,87bed7a5-0b67-4379-8395-9ceab6419702,LIST_TRANSACTIONS,hbciListTransactions,false +16440,87bed7a5-0b67-4379-8395-9ceab6419702,AUTHORIZATION,,false +16441,87bed7a5-0b67-4379-8395-9ceab6419702,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16442,87bed7a5-0b67-4379-8395-9ceab6419702,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16443,87bed7a5-0b67-4379-8395-9ceab6419702,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16444,0243b6f0-6f5e-492e-aa83-e585d5c8cc1b,LIST_ACCOUNTS,xs2aListAccounts,true -16445,0243b6f0-6f5e-492e-aa83-e585d5c8cc1b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16445,0243b6f0-6f5e-492e-aa83-e585d5c8cc1b,LIST_TRANSACTIONS,xs2aListTransactions,true 16446,0243b6f0-6f5e-492e-aa83-e585d5c8cc1b,AUTHORIZATION,,true 16447,0243b6f0-6f5e-492e-aa83-e585d5c8cc1b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16448,0243b6f0-6f5e-492e-aa83-e585d5c8cc1b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16449,0243b6f0-6f5e-492e-aa83-e585d5c8cc1b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16450,14dda433-35fc-4829-9056-b95ec94d11d3,LIST_ACCOUNTS,hbciListAccounts,false -16451,14dda433-35fc-4829-9056-b95ec94d11d3,LIST_TRANSACTIONS,hbciListTransactions,false -16452,14dda433-35fc-4829-9056-b95ec94d11d3,AUTHORIZATION,,false -16453,14dda433-35fc-4829-9056-b95ec94d11d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16454,14dda433-35fc-4829-9056-b95ec94d11d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16455,14dda433-35fc-4829-9056-b95ec94d11d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16450,39c30d22-2abe-4ee7-a394-dc9154d49ade,LIST_ACCOUNTS,hbciListAccounts,false +16451,39c30d22-2abe-4ee7-a394-dc9154d49ade,LIST_TRANSACTIONS,hbciListTransactions,false +16452,39c30d22-2abe-4ee7-a394-dc9154d49ade,AUTHORIZATION,,false +16453,39c30d22-2abe-4ee7-a394-dc9154d49ade,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16454,39c30d22-2abe-4ee7-a394-dc9154d49ade,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16455,39c30d22-2abe-4ee7-a394-dc9154d49ade,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16456,b07de484-c82c-4112-a218-1a004a8d74fa,LIST_ACCOUNTS,xs2aListAccounts,true -16457,b07de484-c82c-4112-a218-1a004a8d74fa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16457,b07de484-c82c-4112-a218-1a004a8d74fa,LIST_TRANSACTIONS,xs2aListTransactions,true 16458,b07de484-c82c-4112-a218-1a004a8d74fa,AUTHORIZATION,,true 16459,b07de484-c82c-4112-a218-1a004a8d74fa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16460,b07de484-c82c-4112-a218-1a004a8d74fa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16461,b07de484-c82c-4112-a218-1a004a8d74fa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16462,ebf57986-7c5f-41ad-85c8-54a55720eb79,LIST_ACCOUNTS,hbciListAccounts,false -16463,ebf57986-7c5f-41ad-85c8-54a55720eb79,LIST_TRANSACTIONS,hbciListTransactions,false -16464,ebf57986-7c5f-41ad-85c8-54a55720eb79,AUTHORIZATION,,false -16465,ebf57986-7c5f-41ad-85c8-54a55720eb79,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16466,ebf57986-7c5f-41ad-85c8-54a55720eb79,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16467,ebf57986-7c5f-41ad-85c8-54a55720eb79,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16462,e01d1f96-a9ad-498e-b5cd-c10b4692db2a,LIST_ACCOUNTS,hbciListAccounts,false +16463,e01d1f96-a9ad-498e-b5cd-c10b4692db2a,LIST_TRANSACTIONS,hbciListTransactions,false +16464,e01d1f96-a9ad-498e-b5cd-c10b4692db2a,AUTHORIZATION,,false +16465,e01d1f96-a9ad-498e-b5cd-c10b4692db2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16466,e01d1f96-a9ad-498e-b5cd-c10b4692db2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16467,e01d1f96-a9ad-498e-b5cd-c10b4692db2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16468,ac30a6a4-dd59-47aa-8e09-df683eb00673,LIST_ACCOUNTS,xs2aListAccounts,true -16469,ac30a6a4-dd59-47aa-8e09-df683eb00673,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16469,ac30a6a4-dd59-47aa-8e09-df683eb00673,LIST_TRANSACTIONS,xs2aListTransactions,true 16470,ac30a6a4-dd59-47aa-8e09-df683eb00673,AUTHORIZATION,,true 16471,ac30a6a4-dd59-47aa-8e09-df683eb00673,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16472,ac30a6a4-dd59-47aa-8e09-df683eb00673,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16473,ac30a6a4-dd59-47aa-8e09-df683eb00673,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16474,ce6eaad5-b16f-4da1-9805-d98eb923126d,LIST_ACCOUNTS,hbciListAccounts,false -16475,ce6eaad5-b16f-4da1-9805-d98eb923126d,LIST_TRANSACTIONS,hbciListTransactions,false -16476,ce6eaad5-b16f-4da1-9805-d98eb923126d,AUTHORIZATION,,false -16477,ce6eaad5-b16f-4da1-9805-d98eb923126d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16478,ce6eaad5-b16f-4da1-9805-d98eb923126d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16479,ce6eaad5-b16f-4da1-9805-d98eb923126d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16474,772c00c3-7f8e-4064-9949-1f65b74ddc6a,LIST_ACCOUNTS,hbciListAccounts,false +16475,772c00c3-7f8e-4064-9949-1f65b74ddc6a,LIST_TRANSACTIONS,hbciListTransactions,false +16476,772c00c3-7f8e-4064-9949-1f65b74ddc6a,AUTHORIZATION,,false +16477,772c00c3-7f8e-4064-9949-1f65b74ddc6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16478,772c00c3-7f8e-4064-9949-1f65b74ddc6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16479,772c00c3-7f8e-4064-9949-1f65b74ddc6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16480,2ab6fec5-f121-474c-97a3-a00ecfb565e0,LIST_ACCOUNTS,xs2aListAccounts,true -16481,2ab6fec5-f121-474c-97a3-a00ecfb565e0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16481,2ab6fec5-f121-474c-97a3-a00ecfb565e0,LIST_TRANSACTIONS,xs2aListTransactions,true 16482,2ab6fec5-f121-474c-97a3-a00ecfb565e0,AUTHORIZATION,,true 16483,2ab6fec5-f121-474c-97a3-a00ecfb565e0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16484,2ab6fec5-f121-474c-97a3-a00ecfb565e0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16485,2ab6fec5-f121-474c-97a3-a00ecfb565e0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16486,dd3db7a0-c2d3-478d-aa8b-2da8025744e1,LIST_ACCOUNTS,hbciListAccounts,false -16487,dd3db7a0-c2d3-478d-aa8b-2da8025744e1,LIST_TRANSACTIONS,hbciListTransactions,false -16488,dd3db7a0-c2d3-478d-aa8b-2da8025744e1,AUTHORIZATION,,false -16489,dd3db7a0-c2d3-478d-aa8b-2da8025744e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16490,dd3db7a0-c2d3-478d-aa8b-2da8025744e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16491,dd3db7a0-c2d3-478d-aa8b-2da8025744e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16486,6e33041f-d990-41d7-9acf-fc9bf554ab54,LIST_ACCOUNTS,hbciListAccounts,false +16487,6e33041f-d990-41d7-9acf-fc9bf554ab54,LIST_TRANSACTIONS,hbciListTransactions,false +16488,6e33041f-d990-41d7-9acf-fc9bf554ab54,AUTHORIZATION,,false +16489,6e33041f-d990-41d7-9acf-fc9bf554ab54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16490,6e33041f-d990-41d7-9acf-fc9bf554ab54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16491,6e33041f-d990-41d7-9acf-fc9bf554ab54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16492,a995d212-a739-4f5a-9aef-06f28408d41c,LIST_ACCOUNTS,xs2aListAccounts,true -16493,a995d212-a739-4f5a-9aef-06f28408d41c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16493,a995d212-a739-4f5a-9aef-06f28408d41c,LIST_TRANSACTIONS,xs2aListTransactions,true 16494,a995d212-a739-4f5a-9aef-06f28408d41c,AUTHORIZATION,,true 16495,a995d212-a739-4f5a-9aef-06f28408d41c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16496,a995d212-a739-4f5a-9aef-06f28408d41c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16497,a995d212-a739-4f5a-9aef-06f28408d41c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16498,4455ce01-b11a-4b90-a3ee-22b9d8d8b45e,LIST_ACCOUNTS,hbciListAccounts,false -16499,4455ce01-b11a-4b90-a3ee-22b9d8d8b45e,LIST_TRANSACTIONS,hbciListTransactions,false -16500,4455ce01-b11a-4b90-a3ee-22b9d8d8b45e,AUTHORIZATION,,false -16501,4455ce01-b11a-4b90-a3ee-22b9d8d8b45e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16502,4455ce01-b11a-4b90-a3ee-22b9d8d8b45e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16503,4455ce01-b11a-4b90-a3ee-22b9d8d8b45e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16498,05e8e161-59f5-4d6c-bdc0-6496c73f7984,LIST_ACCOUNTS,hbciListAccounts,false +16499,05e8e161-59f5-4d6c-bdc0-6496c73f7984,LIST_TRANSACTIONS,hbciListTransactions,false +16500,05e8e161-59f5-4d6c-bdc0-6496c73f7984,AUTHORIZATION,,false +16501,05e8e161-59f5-4d6c-bdc0-6496c73f7984,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16502,05e8e161-59f5-4d6c-bdc0-6496c73f7984,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16503,05e8e161-59f5-4d6c-bdc0-6496c73f7984,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16504,dbe66c67-f12b-46ff-9e0a-9cbb7d0d44e8,LIST_ACCOUNTS,xs2aListAccounts,true -16505,dbe66c67-f12b-46ff-9e0a-9cbb7d0d44e8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16505,dbe66c67-f12b-46ff-9e0a-9cbb7d0d44e8,LIST_TRANSACTIONS,xs2aListTransactions,true 16506,dbe66c67-f12b-46ff-9e0a-9cbb7d0d44e8,AUTHORIZATION,,true 16507,dbe66c67-f12b-46ff-9e0a-9cbb7d0d44e8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16508,dbe66c67-f12b-46ff-9e0a-9cbb7d0d44e8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16509,dbe66c67-f12b-46ff-9e0a-9cbb7d0d44e8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16510,e9820075-3d1b-490c-96a7-390015efa8d4,LIST_ACCOUNTS,hbciListAccounts,false -16511,e9820075-3d1b-490c-96a7-390015efa8d4,LIST_TRANSACTIONS,hbciListTransactions,false -16512,e9820075-3d1b-490c-96a7-390015efa8d4,AUTHORIZATION,,false -16513,e9820075-3d1b-490c-96a7-390015efa8d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16514,e9820075-3d1b-490c-96a7-390015efa8d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16515,e9820075-3d1b-490c-96a7-390015efa8d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16510,ced805d5-7ed2-4ea4-b343-8a0426edaa49,LIST_ACCOUNTS,hbciListAccounts,false +16511,ced805d5-7ed2-4ea4-b343-8a0426edaa49,LIST_TRANSACTIONS,hbciListTransactions,false +16512,ced805d5-7ed2-4ea4-b343-8a0426edaa49,AUTHORIZATION,,false +16513,ced805d5-7ed2-4ea4-b343-8a0426edaa49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16514,ced805d5-7ed2-4ea4-b343-8a0426edaa49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16515,ced805d5-7ed2-4ea4-b343-8a0426edaa49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16516,da6c69c0-2126-4e33-bb2f-633f69d1459d,LIST_ACCOUNTS,xs2aListAccounts,true -16517,da6c69c0-2126-4e33-bb2f-633f69d1459d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16517,da6c69c0-2126-4e33-bb2f-633f69d1459d,LIST_TRANSACTIONS,xs2aListTransactions,true 16518,da6c69c0-2126-4e33-bb2f-633f69d1459d,AUTHORIZATION,,true 16519,da6c69c0-2126-4e33-bb2f-633f69d1459d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16520,da6c69c0-2126-4e33-bb2f-633f69d1459d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16521,da6c69c0-2126-4e33-bb2f-633f69d1459d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16522,b503eaf2-c967-4c2d-990c-47006277ee7d,LIST_ACCOUNTS,hbciListAccounts,false -16523,b503eaf2-c967-4c2d-990c-47006277ee7d,LIST_TRANSACTIONS,hbciListTransactions,false -16524,b503eaf2-c967-4c2d-990c-47006277ee7d,AUTHORIZATION,,false -16525,b503eaf2-c967-4c2d-990c-47006277ee7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16526,b503eaf2-c967-4c2d-990c-47006277ee7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16527,b503eaf2-c967-4c2d-990c-47006277ee7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16522,090f7b1a-8860-47ab-8bbf-e405ed6c38f6,LIST_ACCOUNTS,hbciListAccounts,false +16523,090f7b1a-8860-47ab-8bbf-e405ed6c38f6,LIST_TRANSACTIONS,hbciListTransactions,false +16524,090f7b1a-8860-47ab-8bbf-e405ed6c38f6,AUTHORIZATION,,false +16525,090f7b1a-8860-47ab-8bbf-e405ed6c38f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16526,090f7b1a-8860-47ab-8bbf-e405ed6c38f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16527,090f7b1a-8860-47ab-8bbf-e405ed6c38f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16528,de25d133-0b50-467e-9414-6f49457b7fb7,LIST_ACCOUNTS,xs2aListAccounts,true -16529,de25d133-0b50-467e-9414-6f49457b7fb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16529,de25d133-0b50-467e-9414-6f49457b7fb7,LIST_TRANSACTIONS,xs2aListTransactions,true 16530,de25d133-0b50-467e-9414-6f49457b7fb7,AUTHORIZATION,,true 16531,de25d133-0b50-467e-9414-6f49457b7fb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16532,de25d133-0b50-467e-9414-6f49457b7fb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16533,de25d133-0b50-467e-9414-6f49457b7fb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16534,c15c32a2-a412-4ffe-98c5-ac7b3bee5a08,LIST_ACCOUNTS,hbciListAccounts,false -16535,c15c32a2-a412-4ffe-98c5-ac7b3bee5a08,LIST_TRANSACTIONS,hbciListTransactions,false -16536,c15c32a2-a412-4ffe-98c5-ac7b3bee5a08,AUTHORIZATION,,false -16537,c15c32a2-a412-4ffe-98c5-ac7b3bee5a08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16538,c15c32a2-a412-4ffe-98c5-ac7b3bee5a08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16539,c15c32a2-a412-4ffe-98c5-ac7b3bee5a08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16534,1e96c11c-3006-454e-9963-3332285ac90a,LIST_ACCOUNTS,hbciListAccounts,false +16535,1e96c11c-3006-454e-9963-3332285ac90a,LIST_TRANSACTIONS,hbciListTransactions,false +16536,1e96c11c-3006-454e-9963-3332285ac90a,AUTHORIZATION,,false +16537,1e96c11c-3006-454e-9963-3332285ac90a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16538,1e96c11c-3006-454e-9963-3332285ac90a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16539,1e96c11c-3006-454e-9963-3332285ac90a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16540,bb9ed1ca-1edb-4271-8af8-6513f524b3f2,LIST_ACCOUNTS,xs2aListAccounts,true -16541,bb9ed1ca-1edb-4271-8af8-6513f524b3f2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16541,bb9ed1ca-1edb-4271-8af8-6513f524b3f2,LIST_TRANSACTIONS,xs2aListTransactions,true 16542,bb9ed1ca-1edb-4271-8af8-6513f524b3f2,AUTHORIZATION,,true 16543,bb9ed1ca-1edb-4271-8af8-6513f524b3f2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16544,bb9ed1ca-1edb-4271-8af8-6513f524b3f2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16545,bb9ed1ca-1edb-4271-8af8-6513f524b3f2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16546,042aa437-74ff-4b55-b14a-63070f2ad921,LIST_ACCOUNTS,hbciListAccounts,false -16547,042aa437-74ff-4b55-b14a-63070f2ad921,LIST_TRANSACTIONS,hbciListTransactions,false -16548,042aa437-74ff-4b55-b14a-63070f2ad921,AUTHORIZATION,,false -16549,042aa437-74ff-4b55-b14a-63070f2ad921,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16550,042aa437-74ff-4b55-b14a-63070f2ad921,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16551,042aa437-74ff-4b55-b14a-63070f2ad921,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16546,d014c681-5e02-46c8-b071-0f126972584c,LIST_ACCOUNTS,hbciListAccounts,false +16547,d014c681-5e02-46c8-b071-0f126972584c,LIST_TRANSACTIONS,hbciListTransactions,false +16548,d014c681-5e02-46c8-b071-0f126972584c,AUTHORIZATION,,false +16549,d014c681-5e02-46c8-b071-0f126972584c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16550,d014c681-5e02-46c8-b071-0f126972584c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16551,d014c681-5e02-46c8-b071-0f126972584c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16552,45571e66-14df-4e36-bdc1-8c46dc179329,LIST_ACCOUNTS,xs2aListAccounts,true -16553,45571e66-14df-4e36-bdc1-8c46dc179329,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16553,45571e66-14df-4e36-bdc1-8c46dc179329,LIST_TRANSACTIONS,xs2aListTransactions,true 16554,45571e66-14df-4e36-bdc1-8c46dc179329,AUTHORIZATION,,true 16555,45571e66-14df-4e36-bdc1-8c46dc179329,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16556,45571e66-14df-4e36-bdc1-8c46dc179329,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16557,45571e66-14df-4e36-bdc1-8c46dc179329,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16558,8db2ed57-16da-4bed-87e7-6cc2d58209c0,LIST_ACCOUNTS,hbciListAccounts,false -16559,8db2ed57-16da-4bed-87e7-6cc2d58209c0,LIST_TRANSACTIONS,hbciListTransactions,false -16560,8db2ed57-16da-4bed-87e7-6cc2d58209c0,AUTHORIZATION,,false -16561,8db2ed57-16da-4bed-87e7-6cc2d58209c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16562,8db2ed57-16da-4bed-87e7-6cc2d58209c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16563,8db2ed57-16da-4bed-87e7-6cc2d58209c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16558,e8ac9e39-ac2a-4891-99cf-0372ce3e9a52,LIST_ACCOUNTS,hbciListAccounts,false +16559,e8ac9e39-ac2a-4891-99cf-0372ce3e9a52,LIST_TRANSACTIONS,hbciListTransactions,false +16560,e8ac9e39-ac2a-4891-99cf-0372ce3e9a52,AUTHORIZATION,,false +16561,e8ac9e39-ac2a-4891-99cf-0372ce3e9a52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16562,e8ac9e39-ac2a-4891-99cf-0372ce3e9a52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16563,e8ac9e39-ac2a-4891-99cf-0372ce3e9a52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16564,6e7d66f1-b4c0-493b-a7dd-4d1167373c2e,LIST_ACCOUNTS,xs2aListAccounts,true -16565,6e7d66f1-b4c0-493b-a7dd-4d1167373c2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16565,6e7d66f1-b4c0-493b-a7dd-4d1167373c2e,LIST_TRANSACTIONS,xs2aListTransactions,true 16566,6e7d66f1-b4c0-493b-a7dd-4d1167373c2e,AUTHORIZATION,,true 16567,6e7d66f1-b4c0-493b-a7dd-4d1167373c2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16568,6e7d66f1-b4c0-493b-a7dd-4d1167373c2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16569,6e7d66f1-b4c0-493b-a7dd-4d1167373c2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16570,bbe0591b-bb8a-41d1-b44f-e1a7f241fa2c,LIST_ACCOUNTS,hbciListAccounts,false -16571,bbe0591b-bb8a-41d1-b44f-e1a7f241fa2c,LIST_TRANSACTIONS,hbciListTransactions,false -16572,bbe0591b-bb8a-41d1-b44f-e1a7f241fa2c,AUTHORIZATION,,false -16573,bbe0591b-bb8a-41d1-b44f-e1a7f241fa2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16574,bbe0591b-bb8a-41d1-b44f-e1a7f241fa2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16575,bbe0591b-bb8a-41d1-b44f-e1a7f241fa2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16570,005a3821-483b-4abb-a989-6ea4e66d29db,LIST_ACCOUNTS,hbciListAccounts,false +16571,005a3821-483b-4abb-a989-6ea4e66d29db,LIST_TRANSACTIONS,hbciListTransactions,false +16572,005a3821-483b-4abb-a989-6ea4e66d29db,AUTHORIZATION,,false +16573,005a3821-483b-4abb-a989-6ea4e66d29db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16574,005a3821-483b-4abb-a989-6ea4e66d29db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16575,005a3821-483b-4abb-a989-6ea4e66d29db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16576,2b16bc7e-6249-4c18-98e8-b267a56e1358,LIST_ACCOUNTS,xs2aListAccounts,true -16577,2b16bc7e-6249-4c18-98e8-b267a56e1358,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16577,2b16bc7e-6249-4c18-98e8-b267a56e1358,LIST_TRANSACTIONS,xs2aListTransactions,true 16578,2b16bc7e-6249-4c18-98e8-b267a56e1358,AUTHORIZATION,,true 16579,2b16bc7e-6249-4c18-98e8-b267a56e1358,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16580,2b16bc7e-6249-4c18-98e8-b267a56e1358,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16581,2b16bc7e-6249-4c18-98e8-b267a56e1358,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16582,e7fac75a-9661-4fe6-9ab6-b2b88f7377a9,LIST_ACCOUNTS,hbciListAccounts,false -16583,e7fac75a-9661-4fe6-9ab6-b2b88f7377a9,LIST_TRANSACTIONS,hbciListTransactions,false -16584,e7fac75a-9661-4fe6-9ab6-b2b88f7377a9,AUTHORIZATION,,false -16585,e7fac75a-9661-4fe6-9ab6-b2b88f7377a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16586,e7fac75a-9661-4fe6-9ab6-b2b88f7377a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16587,e7fac75a-9661-4fe6-9ab6-b2b88f7377a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16582,2cf64caf-f6a5-41a9-8ab0-27bafbdd012a,LIST_ACCOUNTS,hbciListAccounts,false +16583,2cf64caf-f6a5-41a9-8ab0-27bafbdd012a,LIST_TRANSACTIONS,hbciListTransactions,false +16584,2cf64caf-f6a5-41a9-8ab0-27bafbdd012a,AUTHORIZATION,,false +16585,2cf64caf-f6a5-41a9-8ab0-27bafbdd012a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16586,2cf64caf-f6a5-41a9-8ab0-27bafbdd012a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16587,2cf64caf-f6a5-41a9-8ab0-27bafbdd012a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16588,77c2f0a3-f163-4fb1-bc93-1d7b9fc792f5,LIST_ACCOUNTS,xs2aListAccounts,true -16589,77c2f0a3-f163-4fb1-bc93-1d7b9fc792f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16589,77c2f0a3-f163-4fb1-bc93-1d7b9fc792f5,LIST_TRANSACTIONS,xs2aListTransactions,true 16590,77c2f0a3-f163-4fb1-bc93-1d7b9fc792f5,AUTHORIZATION,,true 16591,77c2f0a3-f163-4fb1-bc93-1d7b9fc792f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16592,77c2f0a3-f163-4fb1-bc93-1d7b9fc792f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16593,77c2f0a3-f163-4fb1-bc93-1d7b9fc792f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16594,cb822b9a-37d9-425c-95b5-915046ecb43d,LIST_ACCOUNTS,hbciListAccounts,false -16595,cb822b9a-37d9-425c-95b5-915046ecb43d,LIST_TRANSACTIONS,hbciListTransactions,false -16596,cb822b9a-37d9-425c-95b5-915046ecb43d,AUTHORIZATION,,false -16597,cb822b9a-37d9-425c-95b5-915046ecb43d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16598,cb822b9a-37d9-425c-95b5-915046ecb43d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16599,cb822b9a-37d9-425c-95b5-915046ecb43d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16594,de9bcf59-393a-4354-819c-80f8eee05c4c,LIST_ACCOUNTS,hbciListAccounts,false +16595,de9bcf59-393a-4354-819c-80f8eee05c4c,LIST_TRANSACTIONS,hbciListTransactions,false +16596,de9bcf59-393a-4354-819c-80f8eee05c4c,AUTHORIZATION,,false +16597,de9bcf59-393a-4354-819c-80f8eee05c4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16598,de9bcf59-393a-4354-819c-80f8eee05c4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16599,de9bcf59-393a-4354-819c-80f8eee05c4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16600,33a80b19-cbb7-48d0-8337-54a5ea6d8dbb,LIST_ACCOUNTS,xs2aListAccounts,true -16601,33a80b19-cbb7-48d0-8337-54a5ea6d8dbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16601,33a80b19-cbb7-48d0-8337-54a5ea6d8dbb,LIST_TRANSACTIONS,xs2aListTransactions,true 16602,33a80b19-cbb7-48d0-8337-54a5ea6d8dbb,AUTHORIZATION,,true 16603,33a80b19-cbb7-48d0-8337-54a5ea6d8dbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16604,33a80b19-cbb7-48d0-8337-54a5ea6d8dbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16605,33a80b19-cbb7-48d0-8337-54a5ea6d8dbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16606,c30d4d99-45dc-467c-b22d-68b14537daa6,LIST_ACCOUNTS,hbciListAccounts,false -16607,c30d4d99-45dc-467c-b22d-68b14537daa6,LIST_TRANSACTIONS,hbciListTransactions,false -16608,c30d4d99-45dc-467c-b22d-68b14537daa6,AUTHORIZATION,,false -16609,c30d4d99-45dc-467c-b22d-68b14537daa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16610,c30d4d99-45dc-467c-b22d-68b14537daa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16611,c30d4d99-45dc-467c-b22d-68b14537daa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16606,f4ec5b68-b006-4a53-9b84-22b61f4f318b,LIST_ACCOUNTS,hbciListAccounts,false +16607,f4ec5b68-b006-4a53-9b84-22b61f4f318b,LIST_TRANSACTIONS,hbciListTransactions,false +16608,f4ec5b68-b006-4a53-9b84-22b61f4f318b,AUTHORIZATION,,false +16609,f4ec5b68-b006-4a53-9b84-22b61f4f318b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16610,f4ec5b68-b006-4a53-9b84-22b61f4f318b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16611,f4ec5b68-b006-4a53-9b84-22b61f4f318b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16612,a84c1603-c3b3-40dd-bfeb-eb042e29e144,LIST_ACCOUNTS,xs2aListAccounts,true -16613,a84c1603-c3b3-40dd-bfeb-eb042e29e144,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16613,a84c1603-c3b3-40dd-bfeb-eb042e29e144,LIST_TRANSACTIONS,xs2aListTransactions,true 16614,a84c1603-c3b3-40dd-bfeb-eb042e29e144,AUTHORIZATION,,true 16615,a84c1603-c3b3-40dd-bfeb-eb042e29e144,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16616,a84c1603-c3b3-40dd-bfeb-eb042e29e144,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16617,a84c1603-c3b3-40dd-bfeb-eb042e29e144,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16618,0f477f09-3f40-40a9-97dd-e034193480a9,LIST_ACCOUNTS,hbciListAccounts,false -16619,0f477f09-3f40-40a9-97dd-e034193480a9,LIST_TRANSACTIONS,hbciListTransactions,false -16620,0f477f09-3f40-40a9-97dd-e034193480a9,AUTHORIZATION,,false -16621,0f477f09-3f40-40a9-97dd-e034193480a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16622,0f477f09-3f40-40a9-97dd-e034193480a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16623,0f477f09-3f40-40a9-97dd-e034193480a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16618,289638dd-e8b4-41ab-8de0-f8447253541d,LIST_ACCOUNTS,hbciListAccounts,false +16619,289638dd-e8b4-41ab-8de0-f8447253541d,LIST_TRANSACTIONS,hbciListTransactions,false +16620,289638dd-e8b4-41ab-8de0-f8447253541d,AUTHORIZATION,,false +16621,289638dd-e8b4-41ab-8de0-f8447253541d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16622,289638dd-e8b4-41ab-8de0-f8447253541d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16623,289638dd-e8b4-41ab-8de0-f8447253541d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16624,0cea9c92-28c6-43a0-b0b0-7ea519b76bab,LIST_ACCOUNTS,xs2aListAccounts,true -16625,0cea9c92-28c6-43a0-b0b0-7ea519b76bab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16625,0cea9c92-28c6-43a0-b0b0-7ea519b76bab,LIST_TRANSACTIONS,xs2aListTransactions,true 16626,0cea9c92-28c6-43a0-b0b0-7ea519b76bab,AUTHORIZATION,,true 16627,0cea9c92-28c6-43a0-b0b0-7ea519b76bab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16628,0cea9c92-28c6-43a0-b0b0-7ea519b76bab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16629,0cea9c92-28c6-43a0-b0b0-7ea519b76bab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16630,0c9e0214-861c-4298-884d-685179d3ae2f,LIST_ACCOUNTS,hbciListAccounts,false -16631,0c9e0214-861c-4298-884d-685179d3ae2f,LIST_TRANSACTIONS,hbciListTransactions,false -16632,0c9e0214-861c-4298-884d-685179d3ae2f,AUTHORIZATION,,false -16633,0c9e0214-861c-4298-884d-685179d3ae2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16634,0c9e0214-861c-4298-884d-685179d3ae2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16635,0c9e0214-861c-4298-884d-685179d3ae2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16630,c0a4f1a3-7d28-47f3-866a-a4864203d469,LIST_ACCOUNTS,hbciListAccounts,false +16631,c0a4f1a3-7d28-47f3-866a-a4864203d469,LIST_TRANSACTIONS,hbciListTransactions,false +16632,c0a4f1a3-7d28-47f3-866a-a4864203d469,AUTHORIZATION,,false +16633,c0a4f1a3-7d28-47f3-866a-a4864203d469,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16634,c0a4f1a3-7d28-47f3-866a-a4864203d469,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16635,c0a4f1a3-7d28-47f3-866a-a4864203d469,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16636,bc21b719-26b7-4595-931f-9d975aecef3b,LIST_ACCOUNTS,xs2aListAccounts,true -16637,bc21b719-26b7-4595-931f-9d975aecef3b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16637,bc21b719-26b7-4595-931f-9d975aecef3b,LIST_TRANSACTIONS,xs2aListTransactions,true 16638,bc21b719-26b7-4595-931f-9d975aecef3b,AUTHORIZATION,,true 16639,bc21b719-26b7-4595-931f-9d975aecef3b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16640,bc21b719-26b7-4595-931f-9d975aecef3b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16641,bc21b719-26b7-4595-931f-9d975aecef3b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16642,31cd4dde-44f6-46f6-95d4-64a997a1f842,LIST_ACCOUNTS,hbciListAccounts,false -16643,31cd4dde-44f6-46f6-95d4-64a997a1f842,LIST_TRANSACTIONS,hbciListTransactions,false -16644,31cd4dde-44f6-46f6-95d4-64a997a1f842,AUTHORIZATION,,false -16645,31cd4dde-44f6-46f6-95d4-64a997a1f842,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16646,31cd4dde-44f6-46f6-95d4-64a997a1f842,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16647,31cd4dde-44f6-46f6-95d4-64a997a1f842,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16642,6c5bbccf-7d60-4b18-8147-5bebcf132947,LIST_ACCOUNTS,hbciListAccounts,false +16643,6c5bbccf-7d60-4b18-8147-5bebcf132947,LIST_TRANSACTIONS,hbciListTransactions,false +16644,6c5bbccf-7d60-4b18-8147-5bebcf132947,AUTHORIZATION,,false +16645,6c5bbccf-7d60-4b18-8147-5bebcf132947,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16646,6c5bbccf-7d60-4b18-8147-5bebcf132947,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16647,6c5bbccf-7d60-4b18-8147-5bebcf132947,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16648,51371f75-4047-4cdd-9f2b-bb22e057e025,LIST_ACCOUNTS,xs2aListAccounts,true -16649,51371f75-4047-4cdd-9f2b-bb22e057e025,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16649,51371f75-4047-4cdd-9f2b-bb22e057e025,LIST_TRANSACTIONS,xs2aListTransactions,true 16650,51371f75-4047-4cdd-9f2b-bb22e057e025,AUTHORIZATION,,true 16651,51371f75-4047-4cdd-9f2b-bb22e057e025,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16652,51371f75-4047-4cdd-9f2b-bb22e057e025,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16653,51371f75-4047-4cdd-9f2b-bb22e057e025,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16654,200c1ba4-268f-4dd6-b9da-19f65622ffbf,LIST_ACCOUNTS,hbciListAccounts,false -16655,200c1ba4-268f-4dd6-b9da-19f65622ffbf,LIST_TRANSACTIONS,hbciListTransactions,false -16656,200c1ba4-268f-4dd6-b9da-19f65622ffbf,AUTHORIZATION,,false -16657,200c1ba4-268f-4dd6-b9da-19f65622ffbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16658,200c1ba4-268f-4dd6-b9da-19f65622ffbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16659,200c1ba4-268f-4dd6-b9da-19f65622ffbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16654,f323946d-8e0b-403f-a6eb-ccf194bb2125,LIST_ACCOUNTS,hbciListAccounts,false +16655,f323946d-8e0b-403f-a6eb-ccf194bb2125,LIST_TRANSACTIONS,hbciListTransactions,false +16656,f323946d-8e0b-403f-a6eb-ccf194bb2125,AUTHORIZATION,,false +16657,f323946d-8e0b-403f-a6eb-ccf194bb2125,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16658,f323946d-8e0b-403f-a6eb-ccf194bb2125,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16659,f323946d-8e0b-403f-a6eb-ccf194bb2125,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16660,bfc03500-d5ca-4b7a-9606-4063aac731eb,LIST_ACCOUNTS,xs2aListAccounts,true -16661,bfc03500-d5ca-4b7a-9606-4063aac731eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16661,bfc03500-d5ca-4b7a-9606-4063aac731eb,LIST_TRANSACTIONS,xs2aListTransactions,true 16662,bfc03500-d5ca-4b7a-9606-4063aac731eb,AUTHORIZATION,,true 16663,bfc03500-d5ca-4b7a-9606-4063aac731eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16664,bfc03500-d5ca-4b7a-9606-4063aac731eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16665,bfc03500-d5ca-4b7a-9606-4063aac731eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16666,f53a7fd1-8888-4136-b00d-bf29fb8c68c4,LIST_ACCOUNTS,hbciListAccounts,false -16667,f53a7fd1-8888-4136-b00d-bf29fb8c68c4,LIST_TRANSACTIONS,hbciListTransactions,false -16668,f53a7fd1-8888-4136-b00d-bf29fb8c68c4,AUTHORIZATION,,false -16669,f53a7fd1-8888-4136-b00d-bf29fb8c68c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16670,f53a7fd1-8888-4136-b00d-bf29fb8c68c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16671,f53a7fd1-8888-4136-b00d-bf29fb8c68c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16666,594e3aa9-863c-4615-ae3d-e0e7d0120fa2,LIST_ACCOUNTS,hbciListAccounts,false +16667,594e3aa9-863c-4615-ae3d-e0e7d0120fa2,LIST_TRANSACTIONS,hbciListTransactions,false +16668,594e3aa9-863c-4615-ae3d-e0e7d0120fa2,AUTHORIZATION,,false +16669,594e3aa9-863c-4615-ae3d-e0e7d0120fa2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16670,594e3aa9-863c-4615-ae3d-e0e7d0120fa2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16671,594e3aa9-863c-4615-ae3d-e0e7d0120fa2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16672,d63cb09c-cc36-4bd8-8963-aaa312f7d907,LIST_ACCOUNTS,xs2aListAccounts,true -16673,d63cb09c-cc36-4bd8-8963-aaa312f7d907,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16673,d63cb09c-cc36-4bd8-8963-aaa312f7d907,LIST_TRANSACTIONS,xs2aListTransactions,true 16674,d63cb09c-cc36-4bd8-8963-aaa312f7d907,AUTHORIZATION,,true 16675,d63cb09c-cc36-4bd8-8963-aaa312f7d907,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16676,d63cb09c-cc36-4bd8-8963-aaa312f7d907,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16677,d63cb09c-cc36-4bd8-8963-aaa312f7d907,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16678,23815c7a-7c41-41db-ac51-854550fb2cb1,LIST_ACCOUNTS,hbciListAccounts,false -16679,23815c7a-7c41-41db-ac51-854550fb2cb1,LIST_TRANSACTIONS,hbciListTransactions,false -16680,23815c7a-7c41-41db-ac51-854550fb2cb1,AUTHORIZATION,,false -16681,23815c7a-7c41-41db-ac51-854550fb2cb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16682,23815c7a-7c41-41db-ac51-854550fb2cb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16683,23815c7a-7c41-41db-ac51-854550fb2cb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16678,29dfb4c1-2ab4-450d-a6e5-be7c7ad0d019,LIST_ACCOUNTS,hbciListAccounts,false +16679,29dfb4c1-2ab4-450d-a6e5-be7c7ad0d019,LIST_TRANSACTIONS,hbciListTransactions,false +16680,29dfb4c1-2ab4-450d-a6e5-be7c7ad0d019,AUTHORIZATION,,false +16681,29dfb4c1-2ab4-450d-a6e5-be7c7ad0d019,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16682,29dfb4c1-2ab4-450d-a6e5-be7c7ad0d019,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16683,29dfb4c1-2ab4-450d-a6e5-be7c7ad0d019,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16684,741eb868-b8c9-4f8c-b18a-40b591ab51c8,LIST_ACCOUNTS,xs2aListAccounts,true -16685,741eb868-b8c9-4f8c-b18a-40b591ab51c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16685,741eb868-b8c9-4f8c-b18a-40b591ab51c8,LIST_TRANSACTIONS,xs2aListTransactions,true 16686,741eb868-b8c9-4f8c-b18a-40b591ab51c8,AUTHORIZATION,,true 16687,741eb868-b8c9-4f8c-b18a-40b591ab51c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16688,741eb868-b8c9-4f8c-b18a-40b591ab51c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16689,741eb868-b8c9-4f8c-b18a-40b591ab51c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16690,9c85c8a0-48a5-4f06-a045-0a3776bf47d0,LIST_ACCOUNTS,hbciListAccounts,false -16691,9c85c8a0-48a5-4f06-a045-0a3776bf47d0,LIST_TRANSACTIONS,hbciListTransactions,false -16692,9c85c8a0-48a5-4f06-a045-0a3776bf47d0,AUTHORIZATION,,false -16693,9c85c8a0-48a5-4f06-a045-0a3776bf47d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16694,9c85c8a0-48a5-4f06-a045-0a3776bf47d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16695,9c85c8a0-48a5-4f06-a045-0a3776bf47d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16690,21c4466e-6937-49b0-90cc-9cec33f1d69a,LIST_ACCOUNTS,hbciListAccounts,false +16691,21c4466e-6937-49b0-90cc-9cec33f1d69a,LIST_TRANSACTIONS,hbciListTransactions,false +16692,21c4466e-6937-49b0-90cc-9cec33f1d69a,AUTHORIZATION,,false +16693,21c4466e-6937-49b0-90cc-9cec33f1d69a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16694,21c4466e-6937-49b0-90cc-9cec33f1d69a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16695,21c4466e-6937-49b0-90cc-9cec33f1d69a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16696,5140bf9c-7fa0-4773-95b0-79e5aa0d2775,LIST_ACCOUNTS,xs2aListAccounts,true -16697,5140bf9c-7fa0-4773-95b0-79e5aa0d2775,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16697,5140bf9c-7fa0-4773-95b0-79e5aa0d2775,LIST_TRANSACTIONS,xs2aListTransactions,true 16698,5140bf9c-7fa0-4773-95b0-79e5aa0d2775,AUTHORIZATION,,true 16699,5140bf9c-7fa0-4773-95b0-79e5aa0d2775,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16700,5140bf9c-7fa0-4773-95b0-79e5aa0d2775,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16701,5140bf9c-7fa0-4773-95b0-79e5aa0d2775,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16702,22687505-fac2-4b3f-b300-5608c55707c8,LIST_ACCOUNTS,hbciListAccounts,false -16703,22687505-fac2-4b3f-b300-5608c55707c8,LIST_TRANSACTIONS,hbciListTransactions,false -16704,22687505-fac2-4b3f-b300-5608c55707c8,AUTHORIZATION,,false -16705,22687505-fac2-4b3f-b300-5608c55707c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16706,22687505-fac2-4b3f-b300-5608c55707c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16707,22687505-fac2-4b3f-b300-5608c55707c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16702,80e8d57e-74e8-4da2-8dc6-67f51f926dc0,LIST_ACCOUNTS,hbciListAccounts,false +16703,80e8d57e-74e8-4da2-8dc6-67f51f926dc0,LIST_TRANSACTIONS,hbciListTransactions,false +16704,80e8d57e-74e8-4da2-8dc6-67f51f926dc0,AUTHORIZATION,,false +16705,80e8d57e-74e8-4da2-8dc6-67f51f926dc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16706,80e8d57e-74e8-4da2-8dc6-67f51f926dc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16707,80e8d57e-74e8-4da2-8dc6-67f51f926dc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16708,081d550b-2e4f-4103-b911-25a169e2d747,LIST_ACCOUNTS,xs2aListAccounts,true -16709,081d550b-2e4f-4103-b911-25a169e2d747,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16709,081d550b-2e4f-4103-b911-25a169e2d747,LIST_TRANSACTIONS,xs2aListTransactions,true 16710,081d550b-2e4f-4103-b911-25a169e2d747,AUTHORIZATION,,true 16711,081d550b-2e4f-4103-b911-25a169e2d747,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16712,081d550b-2e4f-4103-b911-25a169e2d747,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16713,081d550b-2e4f-4103-b911-25a169e2d747,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16714,b335431c-5efc-4b9b-8a64-2b809fdce919,LIST_ACCOUNTS,hbciListAccounts,false -16715,b335431c-5efc-4b9b-8a64-2b809fdce919,LIST_TRANSACTIONS,hbciListTransactions,false -16716,b335431c-5efc-4b9b-8a64-2b809fdce919,AUTHORIZATION,,false -16717,b335431c-5efc-4b9b-8a64-2b809fdce919,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16718,b335431c-5efc-4b9b-8a64-2b809fdce919,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16719,b335431c-5efc-4b9b-8a64-2b809fdce919,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16714,89845284-f32b-46e0-b910-79be5f728de3,LIST_ACCOUNTS,hbciListAccounts,false +16715,89845284-f32b-46e0-b910-79be5f728de3,LIST_TRANSACTIONS,hbciListTransactions,false +16716,89845284-f32b-46e0-b910-79be5f728de3,AUTHORIZATION,,false +16717,89845284-f32b-46e0-b910-79be5f728de3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16718,89845284-f32b-46e0-b910-79be5f728de3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16719,89845284-f32b-46e0-b910-79be5f728de3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16720,7d471d32-ceb1-4111-b001-8e4bafcf377e,LIST_ACCOUNTS,xs2aListAccounts,true -16721,7d471d32-ceb1-4111-b001-8e4bafcf377e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16721,7d471d32-ceb1-4111-b001-8e4bafcf377e,LIST_TRANSACTIONS,xs2aListTransactions,true 16722,7d471d32-ceb1-4111-b001-8e4bafcf377e,AUTHORIZATION,,true 16723,7d471d32-ceb1-4111-b001-8e4bafcf377e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16724,7d471d32-ceb1-4111-b001-8e4bafcf377e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16725,7d471d32-ceb1-4111-b001-8e4bafcf377e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16726,466bfff2-8c1c-4f3b-a8f6-d2ca3db89950,LIST_ACCOUNTS,hbciListAccounts,false -16727,466bfff2-8c1c-4f3b-a8f6-d2ca3db89950,LIST_TRANSACTIONS,hbciListTransactions,false -16728,466bfff2-8c1c-4f3b-a8f6-d2ca3db89950,AUTHORIZATION,,false -16729,466bfff2-8c1c-4f3b-a8f6-d2ca3db89950,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16730,466bfff2-8c1c-4f3b-a8f6-d2ca3db89950,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16731,466bfff2-8c1c-4f3b-a8f6-d2ca3db89950,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16726,dc5984e1-5308-4b71-9d74-c8735da5cfbb,LIST_ACCOUNTS,hbciListAccounts,false +16727,dc5984e1-5308-4b71-9d74-c8735da5cfbb,LIST_TRANSACTIONS,hbciListTransactions,false +16728,dc5984e1-5308-4b71-9d74-c8735da5cfbb,AUTHORIZATION,,false +16729,dc5984e1-5308-4b71-9d74-c8735da5cfbb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16730,dc5984e1-5308-4b71-9d74-c8735da5cfbb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16731,dc5984e1-5308-4b71-9d74-c8735da5cfbb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16732,a9cd07a8-9393-4ef7-8005-e3095ade30dc,LIST_ACCOUNTS,xs2aListAccounts,true -16733,a9cd07a8-9393-4ef7-8005-e3095ade30dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16733,a9cd07a8-9393-4ef7-8005-e3095ade30dc,LIST_TRANSACTIONS,xs2aListTransactions,true 16734,a9cd07a8-9393-4ef7-8005-e3095ade30dc,AUTHORIZATION,,true 16735,a9cd07a8-9393-4ef7-8005-e3095ade30dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16736,a9cd07a8-9393-4ef7-8005-e3095ade30dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16737,a9cd07a8-9393-4ef7-8005-e3095ade30dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16738,49ea090d-eb7a-4eca-9aa0-f0b86a96dbc6,LIST_ACCOUNTS,hbciListAccounts,false -16739,49ea090d-eb7a-4eca-9aa0-f0b86a96dbc6,LIST_TRANSACTIONS,hbciListTransactions,false -16740,49ea090d-eb7a-4eca-9aa0-f0b86a96dbc6,AUTHORIZATION,,false -16741,49ea090d-eb7a-4eca-9aa0-f0b86a96dbc6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16742,49ea090d-eb7a-4eca-9aa0-f0b86a96dbc6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16743,49ea090d-eb7a-4eca-9aa0-f0b86a96dbc6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16738,9aa55914-e2d8-40ae-9938-64dd8b021179,LIST_ACCOUNTS,hbciListAccounts,false +16739,9aa55914-e2d8-40ae-9938-64dd8b021179,LIST_TRANSACTIONS,hbciListTransactions,false +16740,9aa55914-e2d8-40ae-9938-64dd8b021179,AUTHORIZATION,,false +16741,9aa55914-e2d8-40ae-9938-64dd8b021179,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16742,9aa55914-e2d8-40ae-9938-64dd8b021179,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16743,9aa55914-e2d8-40ae-9938-64dd8b021179,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16744,896654ad-dd74-492a-86c8-a0619ecfefe6,LIST_ACCOUNTS,xs2aListAccounts,true -16745,896654ad-dd74-492a-86c8-a0619ecfefe6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16745,896654ad-dd74-492a-86c8-a0619ecfefe6,LIST_TRANSACTIONS,xs2aListTransactions,true 16746,896654ad-dd74-492a-86c8-a0619ecfefe6,AUTHORIZATION,,true 16747,896654ad-dd74-492a-86c8-a0619ecfefe6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16748,896654ad-dd74-492a-86c8-a0619ecfefe6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16749,896654ad-dd74-492a-86c8-a0619ecfefe6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16750,3a8e506d-f2fc-470f-9e60-fc3d47e6d946,LIST_ACCOUNTS,hbciListAccounts,false -16751,3a8e506d-f2fc-470f-9e60-fc3d47e6d946,LIST_TRANSACTIONS,hbciListTransactions,false -16752,3a8e506d-f2fc-470f-9e60-fc3d47e6d946,AUTHORIZATION,,false -16753,3a8e506d-f2fc-470f-9e60-fc3d47e6d946,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16754,3a8e506d-f2fc-470f-9e60-fc3d47e6d946,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16755,3a8e506d-f2fc-470f-9e60-fc3d47e6d946,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16750,82820661-afd3-41b1-bb75-b68273aa2b06,LIST_ACCOUNTS,hbciListAccounts,false +16751,82820661-afd3-41b1-bb75-b68273aa2b06,LIST_TRANSACTIONS,hbciListTransactions,false +16752,82820661-afd3-41b1-bb75-b68273aa2b06,AUTHORIZATION,,false +16753,82820661-afd3-41b1-bb75-b68273aa2b06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16754,82820661-afd3-41b1-bb75-b68273aa2b06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16755,82820661-afd3-41b1-bb75-b68273aa2b06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16756,65b13f35-10f5-4036-9743-651f72c149df,LIST_ACCOUNTS,xs2aListAccounts,true -16757,65b13f35-10f5-4036-9743-651f72c149df,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16757,65b13f35-10f5-4036-9743-651f72c149df,LIST_TRANSACTIONS,xs2aListTransactions,true 16758,65b13f35-10f5-4036-9743-651f72c149df,AUTHORIZATION,,true 16759,65b13f35-10f5-4036-9743-651f72c149df,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16760,65b13f35-10f5-4036-9743-651f72c149df,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16761,65b13f35-10f5-4036-9743-651f72c149df,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16762,f94ac4a0-85be-4645-95f1-7bcae83fe009,LIST_ACCOUNTS,hbciListAccounts,false -16763,f94ac4a0-85be-4645-95f1-7bcae83fe009,LIST_TRANSACTIONS,hbciListTransactions,false -16764,f94ac4a0-85be-4645-95f1-7bcae83fe009,AUTHORIZATION,,false -16765,f94ac4a0-85be-4645-95f1-7bcae83fe009,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16766,f94ac4a0-85be-4645-95f1-7bcae83fe009,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16767,f94ac4a0-85be-4645-95f1-7bcae83fe009,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16762,b0ed786d-c9f0-4090-a3b4-d547d2bdf628,LIST_ACCOUNTS,hbciListAccounts,false +16763,b0ed786d-c9f0-4090-a3b4-d547d2bdf628,LIST_TRANSACTIONS,hbciListTransactions,false +16764,b0ed786d-c9f0-4090-a3b4-d547d2bdf628,AUTHORIZATION,,false +16765,b0ed786d-c9f0-4090-a3b4-d547d2bdf628,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16766,b0ed786d-c9f0-4090-a3b4-d547d2bdf628,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16767,b0ed786d-c9f0-4090-a3b4-d547d2bdf628,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16768,24445a7f-057b-45df-bfbd-4f73240a9ff5,LIST_ACCOUNTS,xs2aListAccounts,true -16769,24445a7f-057b-45df-bfbd-4f73240a9ff5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16769,24445a7f-057b-45df-bfbd-4f73240a9ff5,LIST_TRANSACTIONS,xs2aListTransactions,true 16770,24445a7f-057b-45df-bfbd-4f73240a9ff5,AUTHORIZATION,,true 16771,24445a7f-057b-45df-bfbd-4f73240a9ff5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16772,24445a7f-057b-45df-bfbd-4f73240a9ff5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16773,24445a7f-057b-45df-bfbd-4f73240a9ff5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16774,264e80dd-1ed2-4749-a49b-58004ebfa28f,LIST_ACCOUNTS,hbciListAccounts,false -16775,264e80dd-1ed2-4749-a49b-58004ebfa28f,LIST_TRANSACTIONS,hbciListTransactions,false -16776,264e80dd-1ed2-4749-a49b-58004ebfa28f,AUTHORIZATION,,false -16777,264e80dd-1ed2-4749-a49b-58004ebfa28f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16778,264e80dd-1ed2-4749-a49b-58004ebfa28f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16779,264e80dd-1ed2-4749-a49b-58004ebfa28f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16774,071e863a-3354-4f9d-9be5-bfc26b3f7eae,LIST_ACCOUNTS,hbciListAccounts,false +16775,071e863a-3354-4f9d-9be5-bfc26b3f7eae,LIST_TRANSACTIONS,hbciListTransactions,false +16776,071e863a-3354-4f9d-9be5-bfc26b3f7eae,AUTHORIZATION,,false +16777,071e863a-3354-4f9d-9be5-bfc26b3f7eae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16778,071e863a-3354-4f9d-9be5-bfc26b3f7eae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16779,071e863a-3354-4f9d-9be5-bfc26b3f7eae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16780,5d4b9a19-d1d2-462a-8524-c84d04a24ac9,LIST_ACCOUNTS,xs2aListAccounts,true -16781,5d4b9a19-d1d2-462a-8524-c84d04a24ac9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16781,5d4b9a19-d1d2-462a-8524-c84d04a24ac9,LIST_TRANSACTIONS,xs2aListTransactions,true 16782,5d4b9a19-d1d2-462a-8524-c84d04a24ac9,AUTHORIZATION,,true 16783,5d4b9a19-d1d2-462a-8524-c84d04a24ac9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16784,5d4b9a19-d1d2-462a-8524-c84d04a24ac9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16785,5d4b9a19-d1d2-462a-8524-c84d04a24ac9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16786,03fb8ea8-021e-468a-9335-ab2fd46addce,LIST_ACCOUNTS,hbciListAccounts,false -16787,03fb8ea8-021e-468a-9335-ab2fd46addce,LIST_TRANSACTIONS,hbciListTransactions,false -16788,03fb8ea8-021e-468a-9335-ab2fd46addce,AUTHORIZATION,,false -16789,03fb8ea8-021e-468a-9335-ab2fd46addce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16790,03fb8ea8-021e-468a-9335-ab2fd46addce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16791,03fb8ea8-021e-468a-9335-ab2fd46addce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16786,1deeb986-fa01-4c84-979c-81061fcac652,LIST_ACCOUNTS,hbciListAccounts,false +16787,1deeb986-fa01-4c84-979c-81061fcac652,LIST_TRANSACTIONS,hbciListTransactions,false +16788,1deeb986-fa01-4c84-979c-81061fcac652,AUTHORIZATION,,false +16789,1deeb986-fa01-4c84-979c-81061fcac652,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16790,1deeb986-fa01-4c84-979c-81061fcac652,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16791,1deeb986-fa01-4c84-979c-81061fcac652,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16792,f697664c-9ac6-485a-994d-509da41be533,LIST_ACCOUNTS,xs2aListAccounts,true -16793,f697664c-9ac6-485a-994d-509da41be533,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16793,f697664c-9ac6-485a-994d-509da41be533,LIST_TRANSACTIONS,xs2aListTransactions,true 16794,f697664c-9ac6-485a-994d-509da41be533,AUTHORIZATION,,true 16795,f697664c-9ac6-485a-994d-509da41be533,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16796,f697664c-9ac6-485a-994d-509da41be533,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16797,f697664c-9ac6-485a-994d-509da41be533,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16798,2e0b1843-faf5-4895-bd42-be68d5facf78,LIST_ACCOUNTS,hbciListAccounts,false -16799,2e0b1843-faf5-4895-bd42-be68d5facf78,LIST_TRANSACTIONS,hbciListTransactions,false -16800,2e0b1843-faf5-4895-bd42-be68d5facf78,AUTHORIZATION,,false -16801,2e0b1843-faf5-4895-bd42-be68d5facf78,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16802,2e0b1843-faf5-4895-bd42-be68d5facf78,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16803,2e0b1843-faf5-4895-bd42-be68d5facf78,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16798,2aa4901a-7fa4-490d-918e-0ac26b03d5f2,LIST_ACCOUNTS,hbciListAccounts,false +16799,2aa4901a-7fa4-490d-918e-0ac26b03d5f2,LIST_TRANSACTIONS,hbciListTransactions,false +16800,2aa4901a-7fa4-490d-918e-0ac26b03d5f2,AUTHORIZATION,,false +16801,2aa4901a-7fa4-490d-918e-0ac26b03d5f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16802,2aa4901a-7fa4-490d-918e-0ac26b03d5f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16803,2aa4901a-7fa4-490d-918e-0ac26b03d5f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16804,9972739d-7912-4a1e-a7b0-e390fda00425,LIST_ACCOUNTS,xs2aListAccounts,true -16805,9972739d-7912-4a1e-a7b0-e390fda00425,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16805,9972739d-7912-4a1e-a7b0-e390fda00425,LIST_TRANSACTIONS,xs2aListTransactions,true 16806,9972739d-7912-4a1e-a7b0-e390fda00425,AUTHORIZATION,,true 16807,9972739d-7912-4a1e-a7b0-e390fda00425,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16808,9972739d-7912-4a1e-a7b0-e390fda00425,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16809,9972739d-7912-4a1e-a7b0-e390fda00425,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16810,8cb1fd3e-3184-41dc-9839-1eb020969629,LIST_ACCOUNTS,hbciListAccounts,false -16811,8cb1fd3e-3184-41dc-9839-1eb020969629,LIST_TRANSACTIONS,hbciListTransactions,false -16812,8cb1fd3e-3184-41dc-9839-1eb020969629,AUTHORIZATION,,false -16813,8cb1fd3e-3184-41dc-9839-1eb020969629,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16814,8cb1fd3e-3184-41dc-9839-1eb020969629,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16815,8cb1fd3e-3184-41dc-9839-1eb020969629,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16810,da4258b1-e8a2-4feb-84c3-e88e57d51e2e,LIST_ACCOUNTS,hbciListAccounts,false +16811,da4258b1-e8a2-4feb-84c3-e88e57d51e2e,LIST_TRANSACTIONS,hbciListTransactions,false +16812,da4258b1-e8a2-4feb-84c3-e88e57d51e2e,AUTHORIZATION,,false +16813,da4258b1-e8a2-4feb-84c3-e88e57d51e2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16814,da4258b1-e8a2-4feb-84c3-e88e57d51e2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16815,da4258b1-e8a2-4feb-84c3-e88e57d51e2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16816,1088f7db-513a-4946-a8a1-6d5d8836144b,LIST_ACCOUNTS,xs2aListAccounts,true -16817,1088f7db-513a-4946-a8a1-6d5d8836144b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16817,1088f7db-513a-4946-a8a1-6d5d8836144b,LIST_TRANSACTIONS,xs2aListTransactions,true 16818,1088f7db-513a-4946-a8a1-6d5d8836144b,AUTHORIZATION,,true 16819,1088f7db-513a-4946-a8a1-6d5d8836144b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16820,1088f7db-513a-4946-a8a1-6d5d8836144b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16821,1088f7db-513a-4946-a8a1-6d5d8836144b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16822,0a4efa08-b618-4529-8bf1-41192704cfcc,LIST_ACCOUNTS,hbciListAccounts,false -16823,0a4efa08-b618-4529-8bf1-41192704cfcc,LIST_TRANSACTIONS,hbciListTransactions,false -16824,0a4efa08-b618-4529-8bf1-41192704cfcc,AUTHORIZATION,,false -16825,0a4efa08-b618-4529-8bf1-41192704cfcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16826,0a4efa08-b618-4529-8bf1-41192704cfcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16827,0a4efa08-b618-4529-8bf1-41192704cfcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16822,ee0485fd-f764-4028-9b36-aa9ca3dda6c6,LIST_ACCOUNTS,hbciListAccounts,false +16823,ee0485fd-f764-4028-9b36-aa9ca3dda6c6,LIST_TRANSACTIONS,hbciListTransactions,false +16824,ee0485fd-f764-4028-9b36-aa9ca3dda6c6,AUTHORIZATION,,false +16825,ee0485fd-f764-4028-9b36-aa9ca3dda6c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16826,ee0485fd-f764-4028-9b36-aa9ca3dda6c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16827,ee0485fd-f764-4028-9b36-aa9ca3dda6c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16828,94de0ff0-84bb-4a84-bf65-309e9e784b9a,LIST_ACCOUNTS,xs2aListAccounts,true -16829,94de0ff0-84bb-4a84-bf65-309e9e784b9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16829,94de0ff0-84bb-4a84-bf65-309e9e784b9a,LIST_TRANSACTIONS,xs2aListTransactions,true 16830,94de0ff0-84bb-4a84-bf65-309e9e784b9a,AUTHORIZATION,,true 16831,94de0ff0-84bb-4a84-bf65-309e9e784b9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16832,94de0ff0-84bb-4a84-bf65-309e9e784b9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16833,94de0ff0-84bb-4a84-bf65-309e9e784b9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16834,cc2eaa42-c258-43e9-aae7-715d0aec3c5a,LIST_ACCOUNTS,hbciListAccounts,false -16835,cc2eaa42-c258-43e9-aae7-715d0aec3c5a,LIST_TRANSACTIONS,hbciListTransactions,false -16836,cc2eaa42-c258-43e9-aae7-715d0aec3c5a,AUTHORIZATION,,false -16837,cc2eaa42-c258-43e9-aae7-715d0aec3c5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16838,cc2eaa42-c258-43e9-aae7-715d0aec3c5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16839,cc2eaa42-c258-43e9-aae7-715d0aec3c5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16834,47b741f0-bd7c-4de5-96cc-3ff7c14e20fc,LIST_ACCOUNTS,hbciListAccounts,false +16835,47b741f0-bd7c-4de5-96cc-3ff7c14e20fc,LIST_TRANSACTIONS,hbciListTransactions,false +16836,47b741f0-bd7c-4de5-96cc-3ff7c14e20fc,AUTHORIZATION,,false +16837,47b741f0-bd7c-4de5-96cc-3ff7c14e20fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16838,47b741f0-bd7c-4de5-96cc-3ff7c14e20fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16839,47b741f0-bd7c-4de5-96cc-3ff7c14e20fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16840,c084fcb2-2890-453e-8b38-0134cddb4d09,LIST_ACCOUNTS,xs2aListAccounts,true -16841,c084fcb2-2890-453e-8b38-0134cddb4d09,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16841,c084fcb2-2890-453e-8b38-0134cddb4d09,LIST_TRANSACTIONS,xs2aListTransactions,true 16842,c084fcb2-2890-453e-8b38-0134cddb4d09,AUTHORIZATION,,true 16843,c084fcb2-2890-453e-8b38-0134cddb4d09,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16844,c084fcb2-2890-453e-8b38-0134cddb4d09,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16845,c084fcb2-2890-453e-8b38-0134cddb4d09,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16846,442b0a53-493f-45fe-b03c-872eb5890d25,LIST_ACCOUNTS,hbciListAccounts,false -16847,442b0a53-493f-45fe-b03c-872eb5890d25,LIST_TRANSACTIONS,hbciListTransactions,false -16848,442b0a53-493f-45fe-b03c-872eb5890d25,AUTHORIZATION,,false -16849,442b0a53-493f-45fe-b03c-872eb5890d25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16850,442b0a53-493f-45fe-b03c-872eb5890d25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16851,442b0a53-493f-45fe-b03c-872eb5890d25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16846,8a45bf03-b1f8-466b-ba97-31a135f234b2,LIST_ACCOUNTS,hbciListAccounts,false +16847,8a45bf03-b1f8-466b-ba97-31a135f234b2,LIST_TRANSACTIONS,hbciListTransactions,false +16848,8a45bf03-b1f8-466b-ba97-31a135f234b2,AUTHORIZATION,,false +16849,8a45bf03-b1f8-466b-ba97-31a135f234b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16850,8a45bf03-b1f8-466b-ba97-31a135f234b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16851,8a45bf03-b1f8-466b-ba97-31a135f234b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16852,5619160a-7c4c-4b48-8986-3eee8420ca35,LIST_ACCOUNTS,xs2aListAccounts,true -16853,5619160a-7c4c-4b48-8986-3eee8420ca35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16853,5619160a-7c4c-4b48-8986-3eee8420ca35,LIST_TRANSACTIONS,xs2aListTransactions,true 16854,5619160a-7c4c-4b48-8986-3eee8420ca35,AUTHORIZATION,,true 16855,5619160a-7c4c-4b48-8986-3eee8420ca35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16856,5619160a-7c4c-4b48-8986-3eee8420ca35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16857,5619160a-7c4c-4b48-8986-3eee8420ca35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16858,f0511ed2-c122-41b7-93c2-5d855af97207,LIST_ACCOUNTS,hbciListAccounts,false -16859,f0511ed2-c122-41b7-93c2-5d855af97207,LIST_TRANSACTIONS,hbciListTransactions,false -16860,f0511ed2-c122-41b7-93c2-5d855af97207,AUTHORIZATION,,false -16861,f0511ed2-c122-41b7-93c2-5d855af97207,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16862,f0511ed2-c122-41b7-93c2-5d855af97207,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16863,f0511ed2-c122-41b7-93c2-5d855af97207,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16858,cb7c5485-e79d-4043-a5c1-2dabd97b2446,LIST_ACCOUNTS,hbciListAccounts,false +16859,cb7c5485-e79d-4043-a5c1-2dabd97b2446,LIST_TRANSACTIONS,hbciListTransactions,false +16860,cb7c5485-e79d-4043-a5c1-2dabd97b2446,AUTHORIZATION,,false +16861,cb7c5485-e79d-4043-a5c1-2dabd97b2446,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16862,cb7c5485-e79d-4043-a5c1-2dabd97b2446,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16863,cb7c5485-e79d-4043-a5c1-2dabd97b2446,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16864,77db5b8d-f681-40bb-be62-54bdaa14f596,LIST_ACCOUNTS,xs2aListAccounts,true -16865,77db5b8d-f681-40bb-be62-54bdaa14f596,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16865,77db5b8d-f681-40bb-be62-54bdaa14f596,LIST_TRANSACTIONS,xs2aListTransactions,true 16866,77db5b8d-f681-40bb-be62-54bdaa14f596,AUTHORIZATION,,true 16867,77db5b8d-f681-40bb-be62-54bdaa14f596,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16868,77db5b8d-f681-40bb-be62-54bdaa14f596,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16869,77db5b8d-f681-40bb-be62-54bdaa14f596,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16870,1d7c92fd-14e6-4cc0-8379-de976eae89e9,LIST_ACCOUNTS,hbciListAccounts,false -16871,1d7c92fd-14e6-4cc0-8379-de976eae89e9,LIST_TRANSACTIONS,hbciListTransactions,false -16872,1d7c92fd-14e6-4cc0-8379-de976eae89e9,AUTHORIZATION,,false -16873,1d7c92fd-14e6-4cc0-8379-de976eae89e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16874,1d7c92fd-14e6-4cc0-8379-de976eae89e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16875,1d7c92fd-14e6-4cc0-8379-de976eae89e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16870,a4de01fa-d3c2-4276-9b0f-3b8127ec30c3,LIST_ACCOUNTS,hbciListAccounts,false +16871,a4de01fa-d3c2-4276-9b0f-3b8127ec30c3,LIST_TRANSACTIONS,hbciListTransactions,false +16872,a4de01fa-d3c2-4276-9b0f-3b8127ec30c3,AUTHORIZATION,,false +16873,a4de01fa-d3c2-4276-9b0f-3b8127ec30c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16874,a4de01fa-d3c2-4276-9b0f-3b8127ec30c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16875,a4de01fa-d3c2-4276-9b0f-3b8127ec30c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16876,830cb362-a990-49c4-baef-9980a2be3e02,LIST_ACCOUNTS,xs2aListAccounts,true -16877,830cb362-a990-49c4-baef-9980a2be3e02,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16877,830cb362-a990-49c4-baef-9980a2be3e02,LIST_TRANSACTIONS,xs2aListTransactions,true 16878,830cb362-a990-49c4-baef-9980a2be3e02,AUTHORIZATION,,true 16879,830cb362-a990-49c4-baef-9980a2be3e02,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16880,830cb362-a990-49c4-baef-9980a2be3e02,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16881,830cb362-a990-49c4-baef-9980a2be3e02,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16882,1894543e-0e4f-4e6f-80a9-b0dacc3349bc,LIST_ACCOUNTS,hbciListAccounts,false -16883,1894543e-0e4f-4e6f-80a9-b0dacc3349bc,LIST_TRANSACTIONS,hbciListTransactions,false -16884,1894543e-0e4f-4e6f-80a9-b0dacc3349bc,AUTHORIZATION,,false -16885,1894543e-0e4f-4e6f-80a9-b0dacc3349bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16886,1894543e-0e4f-4e6f-80a9-b0dacc3349bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16887,1894543e-0e4f-4e6f-80a9-b0dacc3349bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16882,93dadb73-39ed-45e4-8b7c-fbd0362524c6,LIST_ACCOUNTS,hbciListAccounts,false +16883,93dadb73-39ed-45e4-8b7c-fbd0362524c6,LIST_TRANSACTIONS,hbciListTransactions,false +16884,93dadb73-39ed-45e4-8b7c-fbd0362524c6,AUTHORIZATION,,false +16885,93dadb73-39ed-45e4-8b7c-fbd0362524c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16886,93dadb73-39ed-45e4-8b7c-fbd0362524c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16887,93dadb73-39ed-45e4-8b7c-fbd0362524c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16888,7e262d87-acc1-43a7-adf3-dcb477e982da,LIST_ACCOUNTS,xs2aListAccounts,true -16889,7e262d87-acc1-43a7-adf3-dcb477e982da,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16889,7e262d87-acc1-43a7-adf3-dcb477e982da,LIST_TRANSACTIONS,xs2aListTransactions,true 16890,7e262d87-acc1-43a7-adf3-dcb477e982da,AUTHORIZATION,,true 16891,7e262d87-acc1-43a7-adf3-dcb477e982da,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16892,7e262d87-acc1-43a7-adf3-dcb477e982da,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16893,7e262d87-acc1-43a7-adf3-dcb477e982da,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16894,1c8ce2f7-34d7-4c5d-b591-22f0e13c0cb9,LIST_ACCOUNTS,hbciListAccounts,false -16895,1c8ce2f7-34d7-4c5d-b591-22f0e13c0cb9,LIST_TRANSACTIONS,hbciListTransactions,false -16896,1c8ce2f7-34d7-4c5d-b591-22f0e13c0cb9,AUTHORIZATION,,false -16897,1c8ce2f7-34d7-4c5d-b591-22f0e13c0cb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16898,1c8ce2f7-34d7-4c5d-b591-22f0e13c0cb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16899,1c8ce2f7-34d7-4c5d-b591-22f0e13c0cb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16894,379e48ec-c544-4147-97c2-610132797737,LIST_ACCOUNTS,hbciListAccounts,false +16895,379e48ec-c544-4147-97c2-610132797737,LIST_TRANSACTIONS,hbciListTransactions,false +16896,379e48ec-c544-4147-97c2-610132797737,AUTHORIZATION,,false +16897,379e48ec-c544-4147-97c2-610132797737,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16898,379e48ec-c544-4147-97c2-610132797737,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16899,379e48ec-c544-4147-97c2-610132797737,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16900,484f1040-7224-4cc6-aa2f-351e9f10eb64,LIST_ACCOUNTS,xs2aListAccounts,true -16901,484f1040-7224-4cc6-aa2f-351e9f10eb64,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16901,484f1040-7224-4cc6-aa2f-351e9f10eb64,LIST_TRANSACTIONS,xs2aListTransactions,true 16902,484f1040-7224-4cc6-aa2f-351e9f10eb64,AUTHORIZATION,,true 16903,484f1040-7224-4cc6-aa2f-351e9f10eb64,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16904,484f1040-7224-4cc6-aa2f-351e9f10eb64,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16905,484f1040-7224-4cc6-aa2f-351e9f10eb64,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16906,91818e16-e480-4b4c-8240-d5a39b83b4ec,LIST_ACCOUNTS,hbciListAccounts,false -16907,91818e16-e480-4b4c-8240-d5a39b83b4ec,LIST_TRANSACTIONS,hbciListTransactions,false -16908,91818e16-e480-4b4c-8240-d5a39b83b4ec,AUTHORIZATION,,false -16909,91818e16-e480-4b4c-8240-d5a39b83b4ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16910,91818e16-e480-4b4c-8240-d5a39b83b4ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16911,91818e16-e480-4b4c-8240-d5a39b83b4ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16906,d39af0b6-d16a-44d0-a068-b1a0c624848d,LIST_ACCOUNTS,hbciListAccounts,false +16907,d39af0b6-d16a-44d0-a068-b1a0c624848d,LIST_TRANSACTIONS,hbciListTransactions,false +16908,d39af0b6-d16a-44d0-a068-b1a0c624848d,AUTHORIZATION,,false +16909,d39af0b6-d16a-44d0-a068-b1a0c624848d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16910,d39af0b6-d16a-44d0-a068-b1a0c624848d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16911,d39af0b6-d16a-44d0-a068-b1a0c624848d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16912,4496df20-7ff9-48d5-b1e7-467e02ffa51d,LIST_ACCOUNTS,xs2aListAccounts,true -16913,4496df20-7ff9-48d5-b1e7-467e02ffa51d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16913,4496df20-7ff9-48d5-b1e7-467e02ffa51d,LIST_TRANSACTIONS,xs2aListTransactions,true 16914,4496df20-7ff9-48d5-b1e7-467e02ffa51d,AUTHORIZATION,,true 16915,4496df20-7ff9-48d5-b1e7-467e02ffa51d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16916,4496df20-7ff9-48d5-b1e7-467e02ffa51d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16917,4496df20-7ff9-48d5-b1e7-467e02ffa51d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16918,fc4006be-0bb3-43f0-aebb-a592b96cb5da,LIST_ACCOUNTS,hbciListAccounts,false -16919,fc4006be-0bb3-43f0-aebb-a592b96cb5da,LIST_TRANSACTIONS,hbciListTransactions,false -16920,fc4006be-0bb3-43f0-aebb-a592b96cb5da,AUTHORIZATION,,false -16921,fc4006be-0bb3-43f0-aebb-a592b96cb5da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16922,fc4006be-0bb3-43f0-aebb-a592b96cb5da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16923,fc4006be-0bb3-43f0-aebb-a592b96cb5da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16918,4814614a-f1e3-490e-bf77-3286dbe930f1,LIST_ACCOUNTS,hbciListAccounts,false +16919,4814614a-f1e3-490e-bf77-3286dbe930f1,LIST_TRANSACTIONS,hbciListTransactions,false +16920,4814614a-f1e3-490e-bf77-3286dbe930f1,AUTHORIZATION,,false +16921,4814614a-f1e3-490e-bf77-3286dbe930f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16922,4814614a-f1e3-490e-bf77-3286dbe930f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16923,4814614a-f1e3-490e-bf77-3286dbe930f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16924,6f200553-e5d4-45a7-aac9-4aa27efe557b,LIST_ACCOUNTS,xs2aListAccounts,true -16925,6f200553-e5d4-45a7-aac9-4aa27efe557b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16925,6f200553-e5d4-45a7-aac9-4aa27efe557b,LIST_TRANSACTIONS,xs2aListTransactions,true 16926,6f200553-e5d4-45a7-aac9-4aa27efe557b,AUTHORIZATION,,true 16927,6f200553-e5d4-45a7-aac9-4aa27efe557b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16928,6f200553-e5d4-45a7-aac9-4aa27efe557b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16929,6f200553-e5d4-45a7-aac9-4aa27efe557b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16930,79e5e01d-b6d0-4d1b-8b5e-cb63c76439fb,LIST_ACCOUNTS,hbciListAccounts,false -16931,79e5e01d-b6d0-4d1b-8b5e-cb63c76439fb,LIST_TRANSACTIONS,hbciListTransactions,false -16932,79e5e01d-b6d0-4d1b-8b5e-cb63c76439fb,AUTHORIZATION,,false -16933,79e5e01d-b6d0-4d1b-8b5e-cb63c76439fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16934,79e5e01d-b6d0-4d1b-8b5e-cb63c76439fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16935,79e5e01d-b6d0-4d1b-8b5e-cb63c76439fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16930,c9937656-add5-4c66-8a17-17a04ed0d56b,LIST_ACCOUNTS,hbciListAccounts,false +16931,c9937656-add5-4c66-8a17-17a04ed0d56b,LIST_TRANSACTIONS,hbciListTransactions,false +16932,c9937656-add5-4c66-8a17-17a04ed0d56b,AUTHORIZATION,,false +16933,c9937656-add5-4c66-8a17-17a04ed0d56b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16934,c9937656-add5-4c66-8a17-17a04ed0d56b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16935,c9937656-add5-4c66-8a17-17a04ed0d56b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16936,677d30b9-e1ec-4305-b0fa-78098118dea7,LIST_ACCOUNTS,xs2aListAccounts,true -16937,677d30b9-e1ec-4305-b0fa-78098118dea7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16937,677d30b9-e1ec-4305-b0fa-78098118dea7,LIST_TRANSACTIONS,xs2aListTransactions,true 16938,677d30b9-e1ec-4305-b0fa-78098118dea7,AUTHORIZATION,,true 16939,677d30b9-e1ec-4305-b0fa-78098118dea7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16940,677d30b9-e1ec-4305-b0fa-78098118dea7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16941,677d30b9-e1ec-4305-b0fa-78098118dea7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16942,baab4e7a-1eb1-48e3-bae6-5d5ee973dbd8,LIST_ACCOUNTS,hbciListAccounts,false -16943,baab4e7a-1eb1-48e3-bae6-5d5ee973dbd8,LIST_TRANSACTIONS,hbciListTransactions,false -16944,baab4e7a-1eb1-48e3-bae6-5d5ee973dbd8,AUTHORIZATION,,false -16945,baab4e7a-1eb1-48e3-bae6-5d5ee973dbd8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16946,baab4e7a-1eb1-48e3-bae6-5d5ee973dbd8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16947,baab4e7a-1eb1-48e3-bae6-5d5ee973dbd8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16942,b39015c4-d2a0-4030-92ff-35d7ccb606ce,LIST_ACCOUNTS,hbciListAccounts,false +16943,b39015c4-d2a0-4030-92ff-35d7ccb606ce,LIST_TRANSACTIONS,hbciListTransactions,false +16944,b39015c4-d2a0-4030-92ff-35d7ccb606ce,AUTHORIZATION,,false +16945,b39015c4-d2a0-4030-92ff-35d7ccb606ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16946,b39015c4-d2a0-4030-92ff-35d7ccb606ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16947,b39015c4-d2a0-4030-92ff-35d7ccb606ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16948,d1b5e4eb-54ee-4114-8b5f-cc415111dd0f,LIST_ACCOUNTS,xs2aListAccounts,true -16949,d1b5e4eb-54ee-4114-8b5f-cc415111dd0f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16949,d1b5e4eb-54ee-4114-8b5f-cc415111dd0f,LIST_TRANSACTIONS,xs2aListTransactions,true 16950,d1b5e4eb-54ee-4114-8b5f-cc415111dd0f,AUTHORIZATION,,true 16951,d1b5e4eb-54ee-4114-8b5f-cc415111dd0f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16952,d1b5e4eb-54ee-4114-8b5f-cc415111dd0f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16953,d1b5e4eb-54ee-4114-8b5f-cc415111dd0f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16954,f4202125-f417-4e2b-9686-677e667a9a59,LIST_ACCOUNTS,hbciListAccounts,false -16955,f4202125-f417-4e2b-9686-677e667a9a59,LIST_TRANSACTIONS,hbciListTransactions,false -16956,f4202125-f417-4e2b-9686-677e667a9a59,AUTHORIZATION,,false -16957,f4202125-f417-4e2b-9686-677e667a9a59,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16958,f4202125-f417-4e2b-9686-677e667a9a59,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16959,f4202125-f417-4e2b-9686-677e667a9a59,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16954,684c71d7-9f3d-4f4b-a96e-11af27a21a01,LIST_ACCOUNTS,hbciListAccounts,false +16955,684c71d7-9f3d-4f4b-a96e-11af27a21a01,LIST_TRANSACTIONS,hbciListTransactions,false +16956,684c71d7-9f3d-4f4b-a96e-11af27a21a01,AUTHORIZATION,,false +16957,684c71d7-9f3d-4f4b-a96e-11af27a21a01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16958,684c71d7-9f3d-4f4b-a96e-11af27a21a01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16959,684c71d7-9f3d-4f4b-a96e-11af27a21a01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16960,ac7c5ae0-0f9d-4d10-9cdf-f59449c4181c,LIST_ACCOUNTS,xs2aListAccounts,true -16961,ac7c5ae0-0f9d-4d10-9cdf-f59449c4181c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16961,ac7c5ae0-0f9d-4d10-9cdf-f59449c4181c,LIST_TRANSACTIONS,xs2aListTransactions,true 16962,ac7c5ae0-0f9d-4d10-9cdf-f59449c4181c,AUTHORIZATION,,true 16963,ac7c5ae0-0f9d-4d10-9cdf-f59449c4181c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16964,ac7c5ae0-0f9d-4d10-9cdf-f59449c4181c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16965,ac7c5ae0-0f9d-4d10-9cdf-f59449c4181c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16966,6f5acb0c-708e-4735-a695-1884e0407e4d,LIST_ACCOUNTS,hbciListAccounts,false -16967,6f5acb0c-708e-4735-a695-1884e0407e4d,LIST_TRANSACTIONS,hbciListTransactions,false -16968,6f5acb0c-708e-4735-a695-1884e0407e4d,AUTHORIZATION,,false -16969,6f5acb0c-708e-4735-a695-1884e0407e4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16970,6f5acb0c-708e-4735-a695-1884e0407e4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16971,6f5acb0c-708e-4735-a695-1884e0407e4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16966,46344d58-1068-419d-9267-d72b2d88e19a,LIST_ACCOUNTS,hbciListAccounts,false +16967,46344d58-1068-419d-9267-d72b2d88e19a,LIST_TRANSACTIONS,hbciListTransactions,false +16968,46344d58-1068-419d-9267-d72b2d88e19a,AUTHORIZATION,,false +16969,46344d58-1068-419d-9267-d72b2d88e19a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16970,46344d58-1068-419d-9267-d72b2d88e19a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16971,46344d58-1068-419d-9267-d72b2d88e19a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16972,c11ebff1-2a91-4335-9f56-e8940ca62ebc,LIST_ACCOUNTS,xs2aListAccounts,true -16973,c11ebff1-2a91-4335-9f56-e8940ca62ebc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16973,c11ebff1-2a91-4335-9f56-e8940ca62ebc,LIST_TRANSACTIONS,xs2aListTransactions,true 16974,c11ebff1-2a91-4335-9f56-e8940ca62ebc,AUTHORIZATION,,true 16975,c11ebff1-2a91-4335-9f56-e8940ca62ebc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16976,c11ebff1-2a91-4335-9f56-e8940ca62ebc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16977,c11ebff1-2a91-4335-9f56-e8940ca62ebc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16978,17849c26-dd40-408f-90b9-e5f9c53501ab,LIST_ACCOUNTS,hbciListAccounts,false -16979,17849c26-dd40-408f-90b9-e5f9c53501ab,LIST_TRANSACTIONS,hbciListTransactions,false -16980,17849c26-dd40-408f-90b9-e5f9c53501ab,AUTHORIZATION,,false -16981,17849c26-dd40-408f-90b9-e5f9c53501ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16982,17849c26-dd40-408f-90b9-e5f9c53501ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16983,17849c26-dd40-408f-90b9-e5f9c53501ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16978,5b18b417-a71e-4096-9c3b-5d5820dbdf23,LIST_ACCOUNTS,hbciListAccounts,false +16979,5b18b417-a71e-4096-9c3b-5d5820dbdf23,LIST_TRANSACTIONS,hbciListTransactions,false +16980,5b18b417-a71e-4096-9c3b-5d5820dbdf23,AUTHORIZATION,,false +16981,5b18b417-a71e-4096-9c3b-5d5820dbdf23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16982,5b18b417-a71e-4096-9c3b-5d5820dbdf23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16983,5b18b417-a71e-4096-9c3b-5d5820dbdf23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16984,18b7f98f-71f8-417a-9692-a5f82f9288f8,LIST_ACCOUNTS,xs2aListAccounts,true -16985,18b7f98f-71f8-417a-9692-a5f82f9288f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16985,18b7f98f-71f8-417a-9692-a5f82f9288f8,LIST_TRANSACTIONS,xs2aListTransactions,true 16986,18b7f98f-71f8-417a-9692-a5f82f9288f8,AUTHORIZATION,,true 16987,18b7f98f-71f8-417a-9692-a5f82f9288f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 16988,18b7f98f-71f8-417a-9692-a5f82f9288f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 16989,18b7f98f-71f8-417a-9692-a5f82f9288f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -16990,cd3c8852-a904-4197-ad8c-caae90ad42b4,LIST_ACCOUNTS,hbciListAccounts,false -16991,cd3c8852-a904-4197-ad8c-caae90ad42b4,LIST_TRANSACTIONS,hbciListTransactions,false -16992,cd3c8852-a904-4197-ad8c-caae90ad42b4,AUTHORIZATION,,false -16993,cd3c8852-a904-4197-ad8c-caae90ad42b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -16994,cd3c8852-a904-4197-ad8c-caae90ad42b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -16995,cd3c8852-a904-4197-ad8c-caae90ad42b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +16990,d0c04568-575e-4001-9485-375b3e3c17a4,LIST_ACCOUNTS,hbciListAccounts,false +16991,d0c04568-575e-4001-9485-375b3e3c17a4,LIST_TRANSACTIONS,hbciListTransactions,false +16992,d0c04568-575e-4001-9485-375b3e3c17a4,AUTHORIZATION,,false +16993,d0c04568-575e-4001-9485-375b3e3c17a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +16994,d0c04568-575e-4001-9485-375b3e3c17a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +16995,d0c04568-575e-4001-9485-375b3e3c17a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 16996,3e4c8671-52b6-4a74-97a4-775493143732,LIST_ACCOUNTS,xs2aListAccounts,true -16997,3e4c8671-52b6-4a74-97a4-775493143732,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +16997,3e4c8671-52b6-4a74-97a4-775493143732,LIST_TRANSACTIONS,xs2aListTransactions,true 16998,3e4c8671-52b6-4a74-97a4-775493143732,AUTHORIZATION,,true 16999,3e4c8671-52b6-4a74-97a4-775493143732,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17000,3e4c8671-52b6-4a74-97a4-775493143732,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17001,3e4c8671-52b6-4a74-97a4-775493143732,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17002,cdc7fd4c-5c8b-4e92-ab48-6aac3cfb92b6,LIST_ACCOUNTS,hbciListAccounts,false -17003,cdc7fd4c-5c8b-4e92-ab48-6aac3cfb92b6,LIST_TRANSACTIONS,hbciListTransactions,false -17004,cdc7fd4c-5c8b-4e92-ab48-6aac3cfb92b6,AUTHORIZATION,,false -17005,cdc7fd4c-5c8b-4e92-ab48-6aac3cfb92b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17006,cdc7fd4c-5c8b-4e92-ab48-6aac3cfb92b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17007,cdc7fd4c-5c8b-4e92-ab48-6aac3cfb92b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17002,226df6f8-03c2-4637-8114-d35cf749393e,LIST_ACCOUNTS,hbciListAccounts,false +17003,226df6f8-03c2-4637-8114-d35cf749393e,LIST_TRANSACTIONS,hbciListTransactions,false +17004,226df6f8-03c2-4637-8114-d35cf749393e,AUTHORIZATION,,false +17005,226df6f8-03c2-4637-8114-d35cf749393e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17006,226df6f8-03c2-4637-8114-d35cf749393e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17007,226df6f8-03c2-4637-8114-d35cf749393e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17008,0999b26e-a5db-41c2-8c0f-25359f9c961e,LIST_ACCOUNTS,xs2aListAccounts,true -17009,0999b26e-a5db-41c2-8c0f-25359f9c961e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17009,0999b26e-a5db-41c2-8c0f-25359f9c961e,LIST_TRANSACTIONS,xs2aListTransactions,true 17010,0999b26e-a5db-41c2-8c0f-25359f9c961e,AUTHORIZATION,,true 17011,0999b26e-a5db-41c2-8c0f-25359f9c961e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17012,0999b26e-a5db-41c2-8c0f-25359f9c961e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17013,0999b26e-a5db-41c2-8c0f-25359f9c961e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17014,565334ca-0e51-472c-acca-933e233aa08a,LIST_ACCOUNTS,hbciListAccounts,false -17015,565334ca-0e51-472c-acca-933e233aa08a,LIST_TRANSACTIONS,hbciListTransactions,false -17016,565334ca-0e51-472c-acca-933e233aa08a,AUTHORIZATION,,false -17017,565334ca-0e51-472c-acca-933e233aa08a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17018,565334ca-0e51-472c-acca-933e233aa08a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17019,565334ca-0e51-472c-acca-933e233aa08a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17014,6696178c-198a-4f58-a35c-56a68ff8cc87,LIST_ACCOUNTS,hbciListAccounts,false +17015,6696178c-198a-4f58-a35c-56a68ff8cc87,LIST_TRANSACTIONS,hbciListTransactions,false +17016,6696178c-198a-4f58-a35c-56a68ff8cc87,AUTHORIZATION,,false +17017,6696178c-198a-4f58-a35c-56a68ff8cc87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17018,6696178c-198a-4f58-a35c-56a68ff8cc87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17019,6696178c-198a-4f58-a35c-56a68ff8cc87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17020,a1a9520a-328e-4ba7-b918-72699e6650ac,LIST_ACCOUNTS,xs2aListAccounts,true -17021,a1a9520a-328e-4ba7-b918-72699e6650ac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17021,a1a9520a-328e-4ba7-b918-72699e6650ac,LIST_TRANSACTIONS,xs2aListTransactions,true 17022,a1a9520a-328e-4ba7-b918-72699e6650ac,AUTHORIZATION,,true 17023,a1a9520a-328e-4ba7-b918-72699e6650ac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17024,a1a9520a-328e-4ba7-b918-72699e6650ac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17025,a1a9520a-328e-4ba7-b918-72699e6650ac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17026,aee83f43-1ed9-41d0-a331-04bfffb79da3,LIST_ACCOUNTS,hbciListAccounts,false -17027,aee83f43-1ed9-41d0-a331-04bfffb79da3,LIST_TRANSACTIONS,hbciListTransactions,false -17028,aee83f43-1ed9-41d0-a331-04bfffb79da3,AUTHORIZATION,,false -17029,aee83f43-1ed9-41d0-a331-04bfffb79da3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17030,aee83f43-1ed9-41d0-a331-04bfffb79da3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17031,aee83f43-1ed9-41d0-a331-04bfffb79da3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17026,8b4c85ff-7afd-4877-9d66-bae5bd42d45b,LIST_ACCOUNTS,hbciListAccounts,false +17027,8b4c85ff-7afd-4877-9d66-bae5bd42d45b,LIST_TRANSACTIONS,hbciListTransactions,false +17028,8b4c85ff-7afd-4877-9d66-bae5bd42d45b,AUTHORIZATION,,false +17029,8b4c85ff-7afd-4877-9d66-bae5bd42d45b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17030,8b4c85ff-7afd-4877-9d66-bae5bd42d45b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17031,8b4c85ff-7afd-4877-9d66-bae5bd42d45b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17032,cc99f216-ac91-461f-bf45-8a4565797d01,LIST_ACCOUNTS,xs2aListAccounts,true -17033,cc99f216-ac91-461f-bf45-8a4565797d01,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17033,cc99f216-ac91-461f-bf45-8a4565797d01,LIST_TRANSACTIONS,xs2aListTransactions,true 17034,cc99f216-ac91-461f-bf45-8a4565797d01,AUTHORIZATION,,true 17035,cc99f216-ac91-461f-bf45-8a4565797d01,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17036,cc99f216-ac91-461f-bf45-8a4565797d01,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17037,cc99f216-ac91-461f-bf45-8a4565797d01,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17038,5e306a3c-36d8-424a-9bda-a0e7c6a1929a,LIST_ACCOUNTS,hbciListAccounts,false -17039,5e306a3c-36d8-424a-9bda-a0e7c6a1929a,LIST_TRANSACTIONS,hbciListTransactions,false -17040,5e306a3c-36d8-424a-9bda-a0e7c6a1929a,AUTHORIZATION,,false -17041,5e306a3c-36d8-424a-9bda-a0e7c6a1929a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17042,5e306a3c-36d8-424a-9bda-a0e7c6a1929a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17043,5e306a3c-36d8-424a-9bda-a0e7c6a1929a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17038,7c60973a-0a1a-49ff-90b7-39c35e285cc1,LIST_ACCOUNTS,hbciListAccounts,false +17039,7c60973a-0a1a-49ff-90b7-39c35e285cc1,LIST_TRANSACTIONS,hbciListTransactions,false +17040,7c60973a-0a1a-49ff-90b7-39c35e285cc1,AUTHORIZATION,,false +17041,7c60973a-0a1a-49ff-90b7-39c35e285cc1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17042,7c60973a-0a1a-49ff-90b7-39c35e285cc1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17043,7c60973a-0a1a-49ff-90b7-39c35e285cc1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17044,e7985b73-02ac-4f96-80f5-9d831fc7a6cb,LIST_ACCOUNTS,xs2aListAccounts,true -17045,e7985b73-02ac-4f96-80f5-9d831fc7a6cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17045,e7985b73-02ac-4f96-80f5-9d831fc7a6cb,LIST_TRANSACTIONS,xs2aListTransactions,true 17046,e7985b73-02ac-4f96-80f5-9d831fc7a6cb,AUTHORIZATION,,true 17047,e7985b73-02ac-4f96-80f5-9d831fc7a6cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17048,e7985b73-02ac-4f96-80f5-9d831fc7a6cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17049,e7985b73-02ac-4f96-80f5-9d831fc7a6cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17050,a4e2a519-58b3-4b77-bab5-91aa658cf585,LIST_ACCOUNTS,hbciListAccounts,false -17051,a4e2a519-58b3-4b77-bab5-91aa658cf585,LIST_TRANSACTIONS,hbciListTransactions,false -17052,a4e2a519-58b3-4b77-bab5-91aa658cf585,AUTHORIZATION,,false -17053,a4e2a519-58b3-4b77-bab5-91aa658cf585,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17054,a4e2a519-58b3-4b77-bab5-91aa658cf585,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17055,a4e2a519-58b3-4b77-bab5-91aa658cf585,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17050,61e9d5aa-5dae-4e97-8b48-7f494e63b947,LIST_ACCOUNTS,hbciListAccounts,false +17051,61e9d5aa-5dae-4e97-8b48-7f494e63b947,LIST_TRANSACTIONS,hbciListTransactions,false +17052,61e9d5aa-5dae-4e97-8b48-7f494e63b947,AUTHORIZATION,,false +17053,61e9d5aa-5dae-4e97-8b48-7f494e63b947,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17054,61e9d5aa-5dae-4e97-8b48-7f494e63b947,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17055,61e9d5aa-5dae-4e97-8b48-7f494e63b947,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17056,eff6011e-109c-4d3b-b1d9-8654329a6e01,LIST_ACCOUNTS,xs2aListAccounts,true -17057,eff6011e-109c-4d3b-b1d9-8654329a6e01,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17057,eff6011e-109c-4d3b-b1d9-8654329a6e01,LIST_TRANSACTIONS,xs2aListTransactions,true 17058,eff6011e-109c-4d3b-b1d9-8654329a6e01,AUTHORIZATION,,true 17059,eff6011e-109c-4d3b-b1d9-8654329a6e01,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17060,eff6011e-109c-4d3b-b1d9-8654329a6e01,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17061,eff6011e-109c-4d3b-b1d9-8654329a6e01,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17062,03ea4d30-7c0c-4467-be7e-2c417879c452,LIST_ACCOUNTS,hbciListAccounts,false -17063,03ea4d30-7c0c-4467-be7e-2c417879c452,LIST_TRANSACTIONS,hbciListTransactions,false -17064,03ea4d30-7c0c-4467-be7e-2c417879c452,AUTHORIZATION,,false -17065,03ea4d30-7c0c-4467-be7e-2c417879c452,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17066,03ea4d30-7c0c-4467-be7e-2c417879c452,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17067,03ea4d30-7c0c-4467-be7e-2c417879c452,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17062,53a62ecc-049b-4f8b-abf0-33154885cc66,LIST_ACCOUNTS,hbciListAccounts,false +17063,53a62ecc-049b-4f8b-abf0-33154885cc66,LIST_TRANSACTIONS,hbciListTransactions,false +17064,53a62ecc-049b-4f8b-abf0-33154885cc66,AUTHORIZATION,,false +17065,53a62ecc-049b-4f8b-abf0-33154885cc66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17066,53a62ecc-049b-4f8b-abf0-33154885cc66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17067,53a62ecc-049b-4f8b-abf0-33154885cc66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17068,dc18209d-a23a-4966-9dde-8e9467331f1e,LIST_ACCOUNTS,xs2aListAccounts,true -17069,dc18209d-a23a-4966-9dde-8e9467331f1e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17069,dc18209d-a23a-4966-9dde-8e9467331f1e,LIST_TRANSACTIONS,xs2aListTransactions,true 17070,dc18209d-a23a-4966-9dde-8e9467331f1e,AUTHORIZATION,,true 17071,dc18209d-a23a-4966-9dde-8e9467331f1e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17072,dc18209d-a23a-4966-9dde-8e9467331f1e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17073,dc18209d-a23a-4966-9dde-8e9467331f1e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17074,0213cff4-2e6f-47c3-a93d-adca571934dd,LIST_ACCOUNTS,hbciListAccounts,false -17075,0213cff4-2e6f-47c3-a93d-adca571934dd,LIST_TRANSACTIONS,hbciListTransactions,false -17076,0213cff4-2e6f-47c3-a93d-adca571934dd,AUTHORIZATION,,false -17077,0213cff4-2e6f-47c3-a93d-adca571934dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17078,0213cff4-2e6f-47c3-a93d-adca571934dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17079,0213cff4-2e6f-47c3-a93d-adca571934dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17074,24be3408-5bf7-44e8-b52b-d2cfc3564037,LIST_ACCOUNTS,hbciListAccounts,false +17075,24be3408-5bf7-44e8-b52b-d2cfc3564037,LIST_TRANSACTIONS,hbciListTransactions,false +17076,24be3408-5bf7-44e8-b52b-d2cfc3564037,AUTHORIZATION,,false +17077,24be3408-5bf7-44e8-b52b-d2cfc3564037,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17078,24be3408-5bf7-44e8-b52b-d2cfc3564037,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17079,24be3408-5bf7-44e8-b52b-d2cfc3564037,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17080,08f250ec-e72d-447d-be49-b5525c1d737f,LIST_ACCOUNTS,xs2aListAccounts,true -17081,08f250ec-e72d-447d-be49-b5525c1d737f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17081,08f250ec-e72d-447d-be49-b5525c1d737f,LIST_TRANSACTIONS,xs2aListTransactions,true 17082,08f250ec-e72d-447d-be49-b5525c1d737f,AUTHORIZATION,,true 17083,08f250ec-e72d-447d-be49-b5525c1d737f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17084,08f250ec-e72d-447d-be49-b5525c1d737f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17085,08f250ec-e72d-447d-be49-b5525c1d737f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17086,f53ab142-da6f-451b-8eb3-99eb85985e0e,LIST_ACCOUNTS,hbciListAccounts,false -17087,f53ab142-da6f-451b-8eb3-99eb85985e0e,LIST_TRANSACTIONS,hbciListTransactions,false -17088,f53ab142-da6f-451b-8eb3-99eb85985e0e,AUTHORIZATION,,false -17089,f53ab142-da6f-451b-8eb3-99eb85985e0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17090,f53ab142-da6f-451b-8eb3-99eb85985e0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17091,f53ab142-da6f-451b-8eb3-99eb85985e0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17086,32b2c7ec-434a-40d1-89e9-238c86e109eb,LIST_ACCOUNTS,hbciListAccounts,false +17087,32b2c7ec-434a-40d1-89e9-238c86e109eb,LIST_TRANSACTIONS,hbciListTransactions,false +17088,32b2c7ec-434a-40d1-89e9-238c86e109eb,AUTHORIZATION,,false +17089,32b2c7ec-434a-40d1-89e9-238c86e109eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17090,32b2c7ec-434a-40d1-89e9-238c86e109eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17091,32b2c7ec-434a-40d1-89e9-238c86e109eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17092,20352897-272a-4563-bc52-3a43f3dd37d4,LIST_ACCOUNTS,xs2aListAccounts,true -17093,20352897-272a-4563-bc52-3a43f3dd37d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17093,20352897-272a-4563-bc52-3a43f3dd37d4,LIST_TRANSACTIONS,xs2aListTransactions,true 17094,20352897-272a-4563-bc52-3a43f3dd37d4,AUTHORIZATION,,true 17095,20352897-272a-4563-bc52-3a43f3dd37d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17096,20352897-272a-4563-bc52-3a43f3dd37d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17097,20352897-272a-4563-bc52-3a43f3dd37d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17098,4c478070-e223-4022-94b4-0ac3326c41b4,LIST_ACCOUNTS,hbciListAccounts,false -17099,4c478070-e223-4022-94b4-0ac3326c41b4,LIST_TRANSACTIONS,hbciListTransactions,false -17100,4c478070-e223-4022-94b4-0ac3326c41b4,AUTHORIZATION,,false -17101,4c478070-e223-4022-94b4-0ac3326c41b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17102,4c478070-e223-4022-94b4-0ac3326c41b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17103,4c478070-e223-4022-94b4-0ac3326c41b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17098,9031a096-49e9-4f03-9acf-0d4354105561,LIST_ACCOUNTS,hbciListAccounts,false +17099,9031a096-49e9-4f03-9acf-0d4354105561,LIST_TRANSACTIONS,hbciListTransactions,false +17100,9031a096-49e9-4f03-9acf-0d4354105561,AUTHORIZATION,,false +17101,9031a096-49e9-4f03-9acf-0d4354105561,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17102,9031a096-49e9-4f03-9acf-0d4354105561,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17103,9031a096-49e9-4f03-9acf-0d4354105561,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17104,dd7d1927-5e50-4565-9cf9-db583fc768be,LIST_ACCOUNTS,xs2aListAccounts,true -17105,dd7d1927-5e50-4565-9cf9-db583fc768be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17105,dd7d1927-5e50-4565-9cf9-db583fc768be,LIST_TRANSACTIONS,xs2aListTransactions,true 17106,dd7d1927-5e50-4565-9cf9-db583fc768be,AUTHORIZATION,,true 17107,dd7d1927-5e50-4565-9cf9-db583fc768be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17108,dd7d1927-5e50-4565-9cf9-db583fc768be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17109,dd7d1927-5e50-4565-9cf9-db583fc768be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17110,6da983d0-25c8-4bd8-b139-3807b614d29b,LIST_ACCOUNTS,hbciListAccounts,false -17111,6da983d0-25c8-4bd8-b139-3807b614d29b,LIST_TRANSACTIONS,hbciListTransactions,false -17112,6da983d0-25c8-4bd8-b139-3807b614d29b,AUTHORIZATION,,false -17113,6da983d0-25c8-4bd8-b139-3807b614d29b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17114,6da983d0-25c8-4bd8-b139-3807b614d29b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17115,6da983d0-25c8-4bd8-b139-3807b614d29b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17110,b8b877b4-c7f6-4e81-b899-fed3fc3a228a,LIST_ACCOUNTS,hbciListAccounts,false +17111,b8b877b4-c7f6-4e81-b899-fed3fc3a228a,LIST_TRANSACTIONS,hbciListTransactions,false +17112,b8b877b4-c7f6-4e81-b899-fed3fc3a228a,AUTHORIZATION,,false +17113,b8b877b4-c7f6-4e81-b899-fed3fc3a228a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17114,b8b877b4-c7f6-4e81-b899-fed3fc3a228a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17115,b8b877b4-c7f6-4e81-b899-fed3fc3a228a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17116,323ece14-4605-4571-bae6-ebc8d951a38f,LIST_ACCOUNTS,xs2aListAccounts,true -17117,323ece14-4605-4571-bae6-ebc8d951a38f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17117,323ece14-4605-4571-bae6-ebc8d951a38f,LIST_TRANSACTIONS,xs2aListTransactions,true 17118,323ece14-4605-4571-bae6-ebc8d951a38f,AUTHORIZATION,,true 17119,323ece14-4605-4571-bae6-ebc8d951a38f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17120,323ece14-4605-4571-bae6-ebc8d951a38f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17121,323ece14-4605-4571-bae6-ebc8d951a38f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17122,10ee7726-2a34-4978-a522-0eb43e27a4ba,LIST_ACCOUNTS,hbciListAccounts,false -17123,10ee7726-2a34-4978-a522-0eb43e27a4ba,LIST_TRANSACTIONS,hbciListTransactions,false -17124,10ee7726-2a34-4978-a522-0eb43e27a4ba,AUTHORIZATION,,false -17125,10ee7726-2a34-4978-a522-0eb43e27a4ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17126,10ee7726-2a34-4978-a522-0eb43e27a4ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17127,10ee7726-2a34-4978-a522-0eb43e27a4ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17122,4fd035fb-8543-49d4-ab96-4054ae8dbf0e,LIST_ACCOUNTS,hbciListAccounts,false +17123,4fd035fb-8543-49d4-ab96-4054ae8dbf0e,LIST_TRANSACTIONS,hbciListTransactions,false +17124,4fd035fb-8543-49d4-ab96-4054ae8dbf0e,AUTHORIZATION,,false +17125,4fd035fb-8543-49d4-ab96-4054ae8dbf0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17126,4fd035fb-8543-49d4-ab96-4054ae8dbf0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17127,4fd035fb-8543-49d4-ab96-4054ae8dbf0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17128,bab457e0-de8f-48cd-91e7-3f4fad70f278,LIST_ACCOUNTS,xs2aListAccounts,true -17129,bab457e0-de8f-48cd-91e7-3f4fad70f278,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17129,bab457e0-de8f-48cd-91e7-3f4fad70f278,LIST_TRANSACTIONS,xs2aListTransactions,true 17130,bab457e0-de8f-48cd-91e7-3f4fad70f278,AUTHORIZATION,,true 17131,bab457e0-de8f-48cd-91e7-3f4fad70f278,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17132,bab457e0-de8f-48cd-91e7-3f4fad70f278,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17133,bab457e0-de8f-48cd-91e7-3f4fad70f278,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17134,a3fe6ee4-7f97-483f-a4ce-4f94f104020e,LIST_ACCOUNTS,hbciListAccounts,false -17135,a3fe6ee4-7f97-483f-a4ce-4f94f104020e,LIST_TRANSACTIONS,hbciListTransactions,false -17136,a3fe6ee4-7f97-483f-a4ce-4f94f104020e,AUTHORIZATION,,false -17137,a3fe6ee4-7f97-483f-a4ce-4f94f104020e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17138,a3fe6ee4-7f97-483f-a4ce-4f94f104020e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17139,a3fe6ee4-7f97-483f-a4ce-4f94f104020e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17134,32a32f02-f03d-4814-b0fc-52d79ccaf686,LIST_ACCOUNTS,hbciListAccounts,false +17135,32a32f02-f03d-4814-b0fc-52d79ccaf686,LIST_TRANSACTIONS,hbciListTransactions,false +17136,32a32f02-f03d-4814-b0fc-52d79ccaf686,AUTHORIZATION,,false +17137,32a32f02-f03d-4814-b0fc-52d79ccaf686,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17138,32a32f02-f03d-4814-b0fc-52d79ccaf686,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17139,32a32f02-f03d-4814-b0fc-52d79ccaf686,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17140,64d7b949-1ac6-474b-bced-dc581ba71c7f,LIST_ACCOUNTS,xs2aListAccounts,true -17141,64d7b949-1ac6-474b-bced-dc581ba71c7f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17141,64d7b949-1ac6-474b-bced-dc581ba71c7f,LIST_TRANSACTIONS,xs2aListTransactions,true 17142,64d7b949-1ac6-474b-bced-dc581ba71c7f,AUTHORIZATION,,true 17143,64d7b949-1ac6-474b-bced-dc581ba71c7f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17144,64d7b949-1ac6-474b-bced-dc581ba71c7f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17145,64d7b949-1ac6-474b-bced-dc581ba71c7f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17146,60a04cc6-9751-434a-8e0e-d7ba3cffcace,LIST_ACCOUNTS,hbciListAccounts,false -17147,60a04cc6-9751-434a-8e0e-d7ba3cffcace,LIST_TRANSACTIONS,hbciListTransactions,false -17148,60a04cc6-9751-434a-8e0e-d7ba3cffcace,AUTHORIZATION,,false -17149,60a04cc6-9751-434a-8e0e-d7ba3cffcace,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17150,60a04cc6-9751-434a-8e0e-d7ba3cffcace,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17151,60a04cc6-9751-434a-8e0e-d7ba3cffcace,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17146,4cf5f380-052f-4628-97a6-ca642262ec41,LIST_ACCOUNTS,hbciListAccounts,false +17147,4cf5f380-052f-4628-97a6-ca642262ec41,LIST_TRANSACTIONS,hbciListTransactions,false +17148,4cf5f380-052f-4628-97a6-ca642262ec41,AUTHORIZATION,,false +17149,4cf5f380-052f-4628-97a6-ca642262ec41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17150,4cf5f380-052f-4628-97a6-ca642262ec41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17151,4cf5f380-052f-4628-97a6-ca642262ec41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17152,4e5c932b-35c8-4cab-845d-4ca575a9273c,LIST_ACCOUNTS,xs2aListAccounts,true -17153,4e5c932b-35c8-4cab-845d-4ca575a9273c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17153,4e5c932b-35c8-4cab-845d-4ca575a9273c,LIST_TRANSACTIONS,xs2aListTransactions,true 17154,4e5c932b-35c8-4cab-845d-4ca575a9273c,AUTHORIZATION,,true 17155,4e5c932b-35c8-4cab-845d-4ca575a9273c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17156,4e5c932b-35c8-4cab-845d-4ca575a9273c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17157,4e5c932b-35c8-4cab-845d-4ca575a9273c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17158,8778c54a-fca6-4fa3-866a-3df88a71aa2f,LIST_ACCOUNTS,hbciListAccounts,false -17159,8778c54a-fca6-4fa3-866a-3df88a71aa2f,LIST_TRANSACTIONS,hbciListTransactions,false -17160,8778c54a-fca6-4fa3-866a-3df88a71aa2f,AUTHORIZATION,,false -17161,8778c54a-fca6-4fa3-866a-3df88a71aa2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17162,8778c54a-fca6-4fa3-866a-3df88a71aa2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17163,8778c54a-fca6-4fa3-866a-3df88a71aa2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17158,68cb4373-58a4-42a5-83d7-032fe9f264cd,LIST_ACCOUNTS,hbciListAccounts,false +17159,68cb4373-58a4-42a5-83d7-032fe9f264cd,LIST_TRANSACTIONS,hbciListTransactions,false +17160,68cb4373-58a4-42a5-83d7-032fe9f264cd,AUTHORIZATION,,false +17161,68cb4373-58a4-42a5-83d7-032fe9f264cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17162,68cb4373-58a4-42a5-83d7-032fe9f264cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17163,68cb4373-58a4-42a5-83d7-032fe9f264cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17164,46faa6ec-7beb-47ef-8e76-b5f1b4738449,LIST_ACCOUNTS,xs2aListAccounts,true -17165,46faa6ec-7beb-47ef-8e76-b5f1b4738449,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17165,46faa6ec-7beb-47ef-8e76-b5f1b4738449,LIST_TRANSACTIONS,xs2aListTransactions,true 17166,46faa6ec-7beb-47ef-8e76-b5f1b4738449,AUTHORIZATION,,true 17167,46faa6ec-7beb-47ef-8e76-b5f1b4738449,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17168,46faa6ec-7beb-47ef-8e76-b5f1b4738449,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17169,46faa6ec-7beb-47ef-8e76-b5f1b4738449,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17170,2c3b0f3b-4636-42ef-939e-4f6f0e4e2d35,LIST_ACCOUNTS,hbciListAccounts,false -17171,2c3b0f3b-4636-42ef-939e-4f6f0e4e2d35,LIST_TRANSACTIONS,hbciListTransactions,false -17172,2c3b0f3b-4636-42ef-939e-4f6f0e4e2d35,AUTHORIZATION,,false -17173,2c3b0f3b-4636-42ef-939e-4f6f0e4e2d35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17174,2c3b0f3b-4636-42ef-939e-4f6f0e4e2d35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17175,2c3b0f3b-4636-42ef-939e-4f6f0e4e2d35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17170,d3f3c154-0b5f-49bf-a824-1c3958bcf57c,LIST_ACCOUNTS,hbciListAccounts,false +17171,d3f3c154-0b5f-49bf-a824-1c3958bcf57c,LIST_TRANSACTIONS,hbciListTransactions,false +17172,d3f3c154-0b5f-49bf-a824-1c3958bcf57c,AUTHORIZATION,,false +17173,d3f3c154-0b5f-49bf-a824-1c3958bcf57c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17174,d3f3c154-0b5f-49bf-a824-1c3958bcf57c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17175,d3f3c154-0b5f-49bf-a824-1c3958bcf57c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17176,357cab5a-5b8f-4e8b-9e02-3962ed142000,LIST_ACCOUNTS,xs2aListAccounts,true -17177,357cab5a-5b8f-4e8b-9e02-3962ed142000,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17177,357cab5a-5b8f-4e8b-9e02-3962ed142000,LIST_TRANSACTIONS,xs2aListTransactions,true 17178,357cab5a-5b8f-4e8b-9e02-3962ed142000,AUTHORIZATION,,true 17179,357cab5a-5b8f-4e8b-9e02-3962ed142000,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17180,357cab5a-5b8f-4e8b-9e02-3962ed142000,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17181,357cab5a-5b8f-4e8b-9e02-3962ed142000,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17182,85c1c5ed-1a40-4651-ba7b-f16175dec95a,LIST_ACCOUNTS,hbciListAccounts,false -17183,85c1c5ed-1a40-4651-ba7b-f16175dec95a,LIST_TRANSACTIONS,hbciListTransactions,false -17184,85c1c5ed-1a40-4651-ba7b-f16175dec95a,AUTHORIZATION,,false -17185,85c1c5ed-1a40-4651-ba7b-f16175dec95a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17186,85c1c5ed-1a40-4651-ba7b-f16175dec95a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17187,85c1c5ed-1a40-4651-ba7b-f16175dec95a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17182,5147a33a-d76f-4d9a-8a77-d9379b2dcee8,LIST_ACCOUNTS,hbciListAccounts,false +17183,5147a33a-d76f-4d9a-8a77-d9379b2dcee8,LIST_TRANSACTIONS,hbciListTransactions,false +17184,5147a33a-d76f-4d9a-8a77-d9379b2dcee8,AUTHORIZATION,,false +17185,5147a33a-d76f-4d9a-8a77-d9379b2dcee8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17186,5147a33a-d76f-4d9a-8a77-d9379b2dcee8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17187,5147a33a-d76f-4d9a-8a77-d9379b2dcee8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17188,997ca240-7c92-49eb-b7e2-3b23a1fde81a,LIST_ACCOUNTS,xs2aListAccounts,true -17189,997ca240-7c92-49eb-b7e2-3b23a1fde81a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17189,997ca240-7c92-49eb-b7e2-3b23a1fde81a,LIST_TRANSACTIONS,xs2aListTransactions,true 17190,997ca240-7c92-49eb-b7e2-3b23a1fde81a,AUTHORIZATION,,true 17191,997ca240-7c92-49eb-b7e2-3b23a1fde81a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17192,997ca240-7c92-49eb-b7e2-3b23a1fde81a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17193,997ca240-7c92-49eb-b7e2-3b23a1fde81a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17194,14310557-3512-41a1-a886-cc9a4491c92e,LIST_ACCOUNTS,hbciListAccounts,false -17195,14310557-3512-41a1-a886-cc9a4491c92e,LIST_TRANSACTIONS,hbciListTransactions,false -17196,14310557-3512-41a1-a886-cc9a4491c92e,AUTHORIZATION,,false -17197,14310557-3512-41a1-a886-cc9a4491c92e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17198,14310557-3512-41a1-a886-cc9a4491c92e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17199,14310557-3512-41a1-a886-cc9a4491c92e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17194,70812777-dc8f-4084-97a4-877b2f816025,LIST_ACCOUNTS,hbciListAccounts,false +17195,70812777-dc8f-4084-97a4-877b2f816025,LIST_TRANSACTIONS,hbciListTransactions,false +17196,70812777-dc8f-4084-97a4-877b2f816025,AUTHORIZATION,,false +17197,70812777-dc8f-4084-97a4-877b2f816025,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17198,70812777-dc8f-4084-97a4-877b2f816025,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17199,70812777-dc8f-4084-97a4-877b2f816025,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17200,c616bd64-9618-401e-b7a4-4e5846919ecd,LIST_ACCOUNTS,xs2aListAccounts,true -17201,c616bd64-9618-401e-b7a4-4e5846919ecd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17201,c616bd64-9618-401e-b7a4-4e5846919ecd,LIST_TRANSACTIONS,xs2aListTransactions,true 17202,c616bd64-9618-401e-b7a4-4e5846919ecd,AUTHORIZATION,,true 17203,c616bd64-9618-401e-b7a4-4e5846919ecd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17204,c616bd64-9618-401e-b7a4-4e5846919ecd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17205,c616bd64-9618-401e-b7a4-4e5846919ecd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17206,09d6843d-1a0a-41d8-ae63-1155673084a3,LIST_ACCOUNTS,hbciListAccounts,false -17207,09d6843d-1a0a-41d8-ae63-1155673084a3,LIST_TRANSACTIONS,hbciListTransactions,false -17208,09d6843d-1a0a-41d8-ae63-1155673084a3,AUTHORIZATION,,false -17209,09d6843d-1a0a-41d8-ae63-1155673084a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17210,09d6843d-1a0a-41d8-ae63-1155673084a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17211,09d6843d-1a0a-41d8-ae63-1155673084a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17206,986762b0-cfff-4aeb-b415-d849dd971951,LIST_ACCOUNTS,hbciListAccounts,false +17207,986762b0-cfff-4aeb-b415-d849dd971951,LIST_TRANSACTIONS,hbciListTransactions,false +17208,986762b0-cfff-4aeb-b415-d849dd971951,AUTHORIZATION,,false +17209,986762b0-cfff-4aeb-b415-d849dd971951,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17210,986762b0-cfff-4aeb-b415-d849dd971951,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17211,986762b0-cfff-4aeb-b415-d849dd971951,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17212,8a8764b5-ec0f-4128-9e2d-5f23bab0b750,LIST_ACCOUNTS,xs2aListAccounts,true -17213,8a8764b5-ec0f-4128-9e2d-5f23bab0b750,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17213,8a8764b5-ec0f-4128-9e2d-5f23bab0b750,LIST_TRANSACTIONS,xs2aListTransactions,true 17214,8a8764b5-ec0f-4128-9e2d-5f23bab0b750,AUTHORIZATION,,true 17215,8a8764b5-ec0f-4128-9e2d-5f23bab0b750,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17216,8a8764b5-ec0f-4128-9e2d-5f23bab0b750,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17217,8a8764b5-ec0f-4128-9e2d-5f23bab0b750,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17218,a3c893f7-f7e5-4510-83ed-d3ce0349c1cf,LIST_ACCOUNTS,hbciListAccounts,false -17219,a3c893f7-f7e5-4510-83ed-d3ce0349c1cf,LIST_TRANSACTIONS,hbciListTransactions,false -17220,a3c893f7-f7e5-4510-83ed-d3ce0349c1cf,AUTHORIZATION,,false -17221,a3c893f7-f7e5-4510-83ed-d3ce0349c1cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17222,a3c893f7-f7e5-4510-83ed-d3ce0349c1cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17223,a3c893f7-f7e5-4510-83ed-d3ce0349c1cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17218,9b9df475-65f6-4956-ad1b-b729ce5b8cc8,LIST_ACCOUNTS,hbciListAccounts,false +17219,9b9df475-65f6-4956-ad1b-b729ce5b8cc8,LIST_TRANSACTIONS,hbciListTransactions,false +17220,9b9df475-65f6-4956-ad1b-b729ce5b8cc8,AUTHORIZATION,,false +17221,9b9df475-65f6-4956-ad1b-b729ce5b8cc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17222,9b9df475-65f6-4956-ad1b-b729ce5b8cc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17223,9b9df475-65f6-4956-ad1b-b729ce5b8cc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17224,13bfccd7-ee0f-4c73-a6a2-d6ee72622fb7,LIST_ACCOUNTS,xs2aListAccounts,true -17225,13bfccd7-ee0f-4c73-a6a2-d6ee72622fb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17225,13bfccd7-ee0f-4c73-a6a2-d6ee72622fb7,LIST_TRANSACTIONS,xs2aListTransactions,true 17226,13bfccd7-ee0f-4c73-a6a2-d6ee72622fb7,AUTHORIZATION,,true 17227,13bfccd7-ee0f-4c73-a6a2-d6ee72622fb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17228,13bfccd7-ee0f-4c73-a6a2-d6ee72622fb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17229,13bfccd7-ee0f-4c73-a6a2-d6ee72622fb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17230,a0f3816f-73ed-4801-a71b-f8c250e7b7ab,LIST_ACCOUNTS,hbciListAccounts,false -17231,a0f3816f-73ed-4801-a71b-f8c250e7b7ab,LIST_TRANSACTIONS,hbciListTransactions,false -17232,a0f3816f-73ed-4801-a71b-f8c250e7b7ab,AUTHORIZATION,,false -17233,a0f3816f-73ed-4801-a71b-f8c250e7b7ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17234,a0f3816f-73ed-4801-a71b-f8c250e7b7ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17235,a0f3816f-73ed-4801-a71b-f8c250e7b7ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17230,7272c979-304c-4461-95db-e73e1e7ac176,LIST_ACCOUNTS,hbciListAccounts,false +17231,7272c979-304c-4461-95db-e73e1e7ac176,LIST_TRANSACTIONS,hbciListTransactions,false +17232,7272c979-304c-4461-95db-e73e1e7ac176,AUTHORIZATION,,false +17233,7272c979-304c-4461-95db-e73e1e7ac176,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17234,7272c979-304c-4461-95db-e73e1e7ac176,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17235,7272c979-304c-4461-95db-e73e1e7ac176,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17236,6815ed30-83e7-4b6b-8d7a-271c8b9a071d,LIST_ACCOUNTS,xs2aListAccounts,true -17237,6815ed30-83e7-4b6b-8d7a-271c8b9a071d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17237,6815ed30-83e7-4b6b-8d7a-271c8b9a071d,LIST_TRANSACTIONS,xs2aListTransactions,true 17238,6815ed30-83e7-4b6b-8d7a-271c8b9a071d,AUTHORIZATION,,true 17239,6815ed30-83e7-4b6b-8d7a-271c8b9a071d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17240,6815ed30-83e7-4b6b-8d7a-271c8b9a071d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17241,6815ed30-83e7-4b6b-8d7a-271c8b9a071d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17242,6b5c6b73-f7a6-43b5-ab54-09fd2fd8d3e9,LIST_ACCOUNTS,hbciListAccounts,false -17243,6b5c6b73-f7a6-43b5-ab54-09fd2fd8d3e9,LIST_TRANSACTIONS,hbciListTransactions,false -17244,6b5c6b73-f7a6-43b5-ab54-09fd2fd8d3e9,AUTHORIZATION,,false -17245,6b5c6b73-f7a6-43b5-ab54-09fd2fd8d3e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17246,6b5c6b73-f7a6-43b5-ab54-09fd2fd8d3e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17247,6b5c6b73-f7a6-43b5-ab54-09fd2fd8d3e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17242,604eae15-0c3c-4214-9876-02706823fe3a,LIST_ACCOUNTS,hbciListAccounts,false +17243,604eae15-0c3c-4214-9876-02706823fe3a,LIST_TRANSACTIONS,hbciListTransactions,false +17244,604eae15-0c3c-4214-9876-02706823fe3a,AUTHORIZATION,,false +17245,604eae15-0c3c-4214-9876-02706823fe3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17246,604eae15-0c3c-4214-9876-02706823fe3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17247,604eae15-0c3c-4214-9876-02706823fe3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17248,15fd8dc5-19da-4641-814f-511ef67d6b3b,LIST_ACCOUNTS,xs2aListAccounts,true -17249,15fd8dc5-19da-4641-814f-511ef67d6b3b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17249,15fd8dc5-19da-4641-814f-511ef67d6b3b,LIST_TRANSACTIONS,xs2aListTransactions,true 17250,15fd8dc5-19da-4641-814f-511ef67d6b3b,AUTHORIZATION,,true 17251,15fd8dc5-19da-4641-814f-511ef67d6b3b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17252,15fd8dc5-19da-4641-814f-511ef67d6b3b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17253,15fd8dc5-19da-4641-814f-511ef67d6b3b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17254,5348d169-9eed-431e-814e-801c40180d6b,LIST_ACCOUNTS,hbciListAccounts,false -17255,5348d169-9eed-431e-814e-801c40180d6b,LIST_TRANSACTIONS,hbciListTransactions,false -17256,5348d169-9eed-431e-814e-801c40180d6b,AUTHORIZATION,,false -17257,5348d169-9eed-431e-814e-801c40180d6b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17258,5348d169-9eed-431e-814e-801c40180d6b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17259,5348d169-9eed-431e-814e-801c40180d6b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17254,f237658c-b180-470d-98f1-689e6da62f6a,LIST_ACCOUNTS,hbciListAccounts,false +17255,f237658c-b180-470d-98f1-689e6da62f6a,LIST_TRANSACTIONS,hbciListTransactions,false +17256,f237658c-b180-470d-98f1-689e6da62f6a,AUTHORIZATION,,false +17257,f237658c-b180-470d-98f1-689e6da62f6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17258,f237658c-b180-470d-98f1-689e6da62f6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17259,f237658c-b180-470d-98f1-689e6da62f6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17260,8cbfa57e-8e7d-4874-a6b6-26e889864428,LIST_ACCOUNTS,xs2aListAccounts,true -17261,8cbfa57e-8e7d-4874-a6b6-26e889864428,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17261,8cbfa57e-8e7d-4874-a6b6-26e889864428,LIST_TRANSACTIONS,xs2aListTransactions,true 17262,8cbfa57e-8e7d-4874-a6b6-26e889864428,AUTHORIZATION,,true 17263,8cbfa57e-8e7d-4874-a6b6-26e889864428,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17264,8cbfa57e-8e7d-4874-a6b6-26e889864428,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17265,8cbfa57e-8e7d-4874-a6b6-26e889864428,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17266,5ede9e90-87dc-4534-9dde-bdfa86525df9,LIST_ACCOUNTS,hbciListAccounts,false -17267,5ede9e90-87dc-4534-9dde-bdfa86525df9,LIST_TRANSACTIONS,hbciListTransactions,false -17268,5ede9e90-87dc-4534-9dde-bdfa86525df9,AUTHORIZATION,,false -17269,5ede9e90-87dc-4534-9dde-bdfa86525df9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17270,5ede9e90-87dc-4534-9dde-bdfa86525df9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17271,5ede9e90-87dc-4534-9dde-bdfa86525df9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17266,6397b892-aa41-471c-bea1-271c76ab1c8d,LIST_ACCOUNTS,hbciListAccounts,false +17267,6397b892-aa41-471c-bea1-271c76ab1c8d,LIST_TRANSACTIONS,hbciListTransactions,false +17268,6397b892-aa41-471c-bea1-271c76ab1c8d,AUTHORIZATION,,false +17269,6397b892-aa41-471c-bea1-271c76ab1c8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17270,6397b892-aa41-471c-bea1-271c76ab1c8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17271,6397b892-aa41-471c-bea1-271c76ab1c8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17272,510fd784-533f-45d0-951d-eee9aa08e29e,LIST_ACCOUNTS,xs2aListAccounts,true -17273,510fd784-533f-45d0-951d-eee9aa08e29e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17273,510fd784-533f-45d0-951d-eee9aa08e29e,LIST_TRANSACTIONS,xs2aListTransactions,true 17274,510fd784-533f-45d0-951d-eee9aa08e29e,AUTHORIZATION,,true 17275,510fd784-533f-45d0-951d-eee9aa08e29e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17276,510fd784-533f-45d0-951d-eee9aa08e29e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17277,510fd784-533f-45d0-951d-eee9aa08e29e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17278,684c60de-1f33-489a-903e-f1978f95a301,LIST_ACCOUNTS,hbciListAccounts,false -17279,684c60de-1f33-489a-903e-f1978f95a301,LIST_TRANSACTIONS,hbciListTransactions,false -17280,684c60de-1f33-489a-903e-f1978f95a301,AUTHORIZATION,,false -17281,684c60de-1f33-489a-903e-f1978f95a301,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17282,684c60de-1f33-489a-903e-f1978f95a301,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17283,684c60de-1f33-489a-903e-f1978f95a301,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17278,2a5e221f-dd90-4cb4-a121-df281d5fa938,LIST_ACCOUNTS,hbciListAccounts,false +17279,2a5e221f-dd90-4cb4-a121-df281d5fa938,LIST_TRANSACTIONS,hbciListTransactions,false +17280,2a5e221f-dd90-4cb4-a121-df281d5fa938,AUTHORIZATION,,false +17281,2a5e221f-dd90-4cb4-a121-df281d5fa938,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17282,2a5e221f-dd90-4cb4-a121-df281d5fa938,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17283,2a5e221f-dd90-4cb4-a121-df281d5fa938,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17284,95dbfe47-4f61-4786-bf99-0ccae71445c6,LIST_ACCOUNTS,xs2aListAccounts,true -17285,95dbfe47-4f61-4786-bf99-0ccae71445c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17285,95dbfe47-4f61-4786-bf99-0ccae71445c6,LIST_TRANSACTIONS,xs2aListTransactions,true 17286,95dbfe47-4f61-4786-bf99-0ccae71445c6,AUTHORIZATION,,true 17287,95dbfe47-4f61-4786-bf99-0ccae71445c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17288,95dbfe47-4f61-4786-bf99-0ccae71445c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17289,95dbfe47-4f61-4786-bf99-0ccae71445c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17290,20932baf-f82f-4468-8402-1dbca68a6349,LIST_ACCOUNTS,hbciListAccounts,false -17291,20932baf-f82f-4468-8402-1dbca68a6349,LIST_TRANSACTIONS,hbciListTransactions,false -17292,20932baf-f82f-4468-8402-1dbca68a6349,AUTHORIZATION,,false -17293,20932baf-f82f-4468-8402-1dbca68a6349,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17294,20932baf-f82f-4468-8402-1dbca68a6349,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17295,20932baf-f82f-4468-8402-1dbca68a6349,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17290,403e9d94-8d7e-4405-8463-d8bd1145c2d8,LIST_ACCOUNTS,hbciListAccounts,false +17291,403e9d94-8d7e-4405-8463-d8bd1145c2d8,LIST_TRANSACTIONS,hbciListTransactions,false +17292,403e9d94-8d7e-4405-8463-d8bd1145c2d8,AUTHORIZATION,,false +17293,403e9d94-8d7e-4405-8463-d8bd1145c2d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17294,403e9d94-8d7e-4405-8463-d8bd1145c2d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17295,403e9d94-8d7e-4405-8463-d8bd1145c2d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17296,8cb451bf-92f3-4786-8499-cc06c5f83369,LIST_ACCOUNTS,xs2aListAccounts,true -17297,8cb451bf-92f3-4786-8499-cc06c5f83369,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17297,8cb451bf-92f3-4786-8499-cc06c5f83369,LIST_TRANSACTIONS,xs2aListTransactions,true 17298,8cb451bf-92f3-4786-8499-cc06c5f83369,AUTHORIZATION,,true 17299,8cb451bf-92f3-4786-8499-cc06c5f83369,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17300,8cb451bf-92f3-4786-8499-cc06c5f83369,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17301,8cb451bf-92f3-4786-8499-cc06c5f83369,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17302,29ea79ee-366d-46f1-a3bd-b5429a2e486e,LIST_ACCOUNTS,hbciListAccounts,false -17303,29ea79ee-366d-46f1-a3bd-b5429a2e486e,LIST_TRANSACTIONS,hbciListTransactions,false -17304,29ea79ee-366d-46f1-a3bd-b5429a2e486e,AUTHORIZATION,,false -17305,29ea79ee-366d-46f1-a3bd-b5429a2e486e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17306,29ea79ee-366d-46f1-a3bd-b5429a2e486e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17307,29ea79ee-366d-46f1-a3bd-b5429a2e486e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17302,665e97df-9d03-4c1e-a60f-f406da1d205b,LIST_ACCOUNTS,hbciListAccounts,false +17303,665e97df-9d03-4c1e-a60f-f406da1d205b,LIST_TRANSACTIONS,hbciListTransactions,false +17304,665e97df-9d03-4c1e-a60f-f406da1d205b,AUTHORIZATION,,false +17305,665e97df-9d03-4c1e-a60f-f406da1d205b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17306,665e97df-9d03-4c1e-a60f-f406da1d205b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17307,665e97df-9d03-4c1e-a60f-f406da1d205b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17308,62d9ad1e-b32f-46ae-86b9-836a5bd2a9a9,LIST_ACCOUNTS,xs2aListAccounts,true -17309,62d9ad1e-b32f-46ae-86b9-836a5bd2a9a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17309,62d9ad1e-b32f-46ae-86b9-836a5bd2a9a9,LIST_TRANSACTIONS,xs2aListTransactions,true 17310,62d9ad1e-b32f-46ae-86b9-836a5bd2a9a9,AUTHORIZATION,,true 17311,62d9ad1e-b32f-46ae-86b9-836a5bd2a9a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17312,62d9ad1e-b32f-46ae-86b9-836a5bd2a9a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17313,62d9ad1e-b32f-46ae-86b9-836a5bd2a9a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17314,516491a1-87d3-4b53-9dfd-66b05ee10d22,LIST_ACCOUNTS,hbciListAccounts,false -17315,516491a1-87d3-4b53-9dfd-66b05ee10d22,LIST_TRANSACTIONS,hbciListTransactions,false -17316,516491a1-87d3-4b53-9dfd-66b05ee10d22,AUTHORIZATION,,false -17317,516491a1-87d3-4b53-9dfd-66b05ee10d22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17318,516491a1-87d3-4b53-9dfd-66b05ee10d22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17319,516491a1-87d3-4b53-9dfd-66b05ee10d22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17314,06c6cfa1-c3ac-417a-9a20-110e9caab3ad,LIST_ACCOUNTS,hbciListAccounts,false +17315,06c6cfa1-c3ac-417a-9a20-110e9caab3ad,LIST_TRANSACTIONS,hbciListTransactions,false +17316,06c6cfa1-c3ac-417a-9a20-110e9caab3ad,AUTHORIZATION,,false +17317,06c6cfa1-c3ac-417a-9a20-110e9caab3ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17318,06c6cfa1-c3ac-417a-9a20-110e9caab3ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17319,06c6cfa1-c3ac-417a-9a20-110e9caab3ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17320,4206666f-5d1f-4abb-a5cc-a6ffd2994364,LIST_ACCOUNTS,xs2aListAccounts,true -17321,4206666f-5d1f-4abb-a5cc-a6ffd2994364,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17321,4206666f-5d1f-4abb-a5cc-a6ffd2994364,LIST_TRANSACTIONS,xs2aListTransactions,true 17322,4206666f-5d1f-4abb-a5cc-a6ffd2994364,AUTHORIZATION,,true 17323,4206666f-5d1f-4abb-a5cc-a6ffd2994364,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17324,4206666f-5d1f-4abb-a5cc-a6ffd2994364,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17325,4206666f-5d1f-4abb-a5cc-a6ffd2994364,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17326,33f4d553-b685-46cd-89f3-15c6ebd56573,LIST_ACCOUNTS,hbciListAccounts,false -17327,33f4d553-b685-46cd-89f3-15c6ebd56573,LIST_TRANSACTIONS,hbciListTransactions,false -17328,33f4d553-b685-46cd-89f3-15c6ebd56573,AUTHORIZATION,,false -17329,33f4d553-b685-46cd-89f3-15c6ebd56573,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17330,33f4d553-b685-46cd-89f3-15c6ebd56573,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17331,33f4d553-b685-46cd-89f3-15c6ebd56573,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17326,0d6cc2b6-5c4f-4720-8411-f716159a20b9,LIST_ACCOUNTS,hbciListAccounts,false +17327,0d6cc2b6-5c4f-4720-8411-f716159a20b9,LIST_TRANSACTIONS,hbciListTransactions,false +17328,0d6cc2b6-5c4f-4720-8411-f716159a20b9,AUTHORIZATION,,false +17329,0d6cc2b6-5c4f-4720-8411-f716159a20b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17330,0d6cc2b6-5c4f-4720-8411-f716159a20b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17331,0d6cc2b6-5c4f-4720-8411-f716159a20b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17332,5266033c-5796-4ffa-801c-78dca4372bb2,LIST_ACCOUNTS,xs2aListAccounts,true -17333,5266033c-5796-4ffa-801c-78dca4372bb2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17333,5266033c-5796-4ffa-801c-78dca4372bb2,LIST_TRANSACTIONS,xs2aListTransactions,true 17334,5266033c-5796-4ffa-801c-78dca4372bb2,AUTHORIZATION,,true 17335,5266033c-5796-4ffa-801c-78dca4372bb2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17336,5266033c-5796-4ffa-801c-78dca4372bb2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17337,5266033c-5796-4ffa-801c-78dca4372bb2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17338,cde5b0b4-5b9e-4369-9c78-40a6ebf7fac1,LIST_ACCOUNTS,hbciListAccounts,false -17339,cde5b0b4-5b9e-4369-9c78-40a6ebf7fac1,LIST_TRANSACTIONS,hbciListTransactions,false -17340,cde5b0b4-5b9e-4369-9c78-40a6ebf7fac1,AUTHORIZATION,,false -17341,cde5b0b4-5b9e-4369-9c78-40a6ebf7fac1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17342,cde5b0b4-5b9e-4369-9c78-40a6ebf7fac1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17343,cde5b0b4-5b9e-4369-9c78-40a6ebf7fac1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17338,795570f2-839f-4fe9-aa41-0180eab4515c,LIST_ACCOUNTS,hbciListAccounts,false +17339,795570f2-839f-4fe9-aa41-0180eab4515c,LIST_TRANSACTIONS,hbciListTransactions,false +17340,795570f2-839f-4fe9-aa41-0180eab4515c,AUTHORIZATION,,false +17341,795570f2-839f-4fe9-aa41-0180eab4515c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17342,795570f2-839f-4fe9-aa41-0180eab4515c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17343,795570f2-839f-4fe9-aa41-0180eab4515c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17344,2fdf156f-16c6-48c8-b991-593606423d6b,LIST_ACCOUNTS,xs2aListAccounts,true -17345,2fdf156f-16c6-48c8-b991-593606423d6b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17345,2fdf156f-16c6-48c8-b991-593606423d6b,LIST_TRANSACTIONS,xs2aListTransactions,true 17346,2fdf156f-16c6-48c8-b991-593606423d6b,AUTHORIZATION,,true 17347,2fdf156f-16c6-48c8-b991-593606423d6b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17348,2fdf156f-16c6-48c8-b991-593606423d6b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17349,2fdf156f-16c6-48c8-b991-593606423d6b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17350,36fd6f4e-bee0-4a3a-b63e-d3671f035184,LIST_ACCOUNTS,hbciListAccounts,false -17351,36fd6f4e-bee0-4a3a-b63e-d3671f035184,LIST_TRANSACTIONS,hbciListTransactions,false -17352,36fd6f4e-bee0-4a3a-b63e-d3671f035184,AUTHORIZATION,,false -17353,36fd6f4e-bee0-4a3a-b63e-d3671f035184,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17354,36fd6f4e-bee0-4a3a-b63e-d3671f035184,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17355,36fd6f4e-bee0-4a3a-b63e-d3671f035184,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17350,07f15a7e-8874-4499-89f3-dc256d651a6c,LIST_ACCOUNTS,hbciListAccounts,false +17351,07f15a7e-8874-4499-89f3-dc256d651a6c,LIST_TRANSACTIONS,hbciListTransactions,false +17352,07f15a7e-8874-4499-89f3-dc256d651a6c,AUTHORIZATION,,false +17353,07f15a7e-8874-4499-89f3-dc256d651a6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17354,07f15a7e-8874-4499-89f3-dc256d651a6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17355,07f15a7e-8874-4499-89f3-dc256d651a6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17356,d1f22b27-73ee-406e-b60f-e0574db210b7,LIST_ACCOUNTS,xs2aListAccounts,true -17357,d1f22b27-73ee-406e-b60f-e0574db210b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17357,d1f22b27-73ee-406e-b60f-e0574db210b7,LIST_TRANSACTIONS,xs2aListTransactions,true 17358,d1f22b27-73ee-406e-b60f-e0574db210b7,AUTHORIZATION,,true 17359,d1f22b27-73ee-406e-b60f-e0574db210b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17360,d1f22b27-73ee-406e-b60f-e0574db210b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17361,d1f22b27-73ee-406e-b60f-e0574db210b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17362,049e6fd2-4fba-4de8-b8c8-2c70a0e11a57,LIST_ACCOUNTS,hbciListAccounts,false -17363,049e6fd2-4fba-4de8-b8c8-2c70a0e11a57,LIST_TRANSACTIONS,hbciListTransactions,false -17364,049e6fd2-4fba-4de8-b8c8-2c70a0e11a57,AUTHORIZATION,,false -17365,049e6fd2-4fba-4de8-b8c8-2c70a0e11a57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17366,049e6fd2-4fba-4de8-b8c8-2c70a0e11a57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17367,049e6fd2-4fba-4de8-b8c8-2c70a0e11a57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17362,080e0df4-9689-4d2b-9167-bc0f0cc7048c,LIST_ACCOUNTS,hbciListAccounts,false +17363,080e0df4-9689-4d2b-9167-bc0f0cc7048c,LIST_TRANSACTIONS,hbciListTransactions,false +17364,080e0df4-9689-4d2b-9167-bc0f0cc7048c,AUTHORIZATION,,false +17365,080e0df4-9689-4d2b-9167-bc0f0cc7048c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17366,080e0df4-9689-4d2b-9167-bc0f0cc7048c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17367,080e0df4-9689-4d2b-9167-bc0f0cc7048c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17368,628d7ea1-3632-48d7-ac18-df0621309d34,LIST_ACCOUNTS,xs2aListAccounts,true -17369,628d7ea1-3632-48d7-ac18-df0621309d34,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17369,628d7ea1-3632-48d7-ac18-df0621309d34,LIST_TRANSACTIONS,xs2aListTransactions,true 17370,628d7ea1-3632-48d7-ac18-df0621309d34,AUTHORIZATION,,true 17371,628d7ea1-3632-48d7-ac18-df0621309d34,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17372,628d7ea1-3632-48d7-ac18-df0621309d34,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17373,628d7ea1-3632-48d7-ac18-df0621309d34,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17374,06df49b0-0e87-4552-a7f4-7bcc64aa6ce2,LIST_ACCOUNTS,hbciListAccounts,false -17375,06df49b0-0e87-4552-a7f4-7bcc64aa6ce2,LIST_TRANSACTIONS,hbciListTransactions,false -17376,06df49b0-0e87-4552-a7f4-7bcc64aa6ce2,AUTHORIZATION,,false -17377,06df49b0-0e87-4552-a7f4-7bcc64aa6ce2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17378,06df49b0-0e87-4552-a7f4-7bcc64aa6ce2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17379,06df49b0-0e87-4552-a7f4-7bcc64aa6ce2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17374,af241d91-7d0b-488b-88fb-5dcd5a0389e0,LIST_ACCOUNTS,hbciListAccounts,false +17375,af241d91-7d0b-488b-88fb-5dcd5a0389e0,LIST_TRANSACTIONS,hbciListTransactions,false +17376,af241d91-7d0b-488b-88fb-5dcd5a0389e0,AUTHORIZATION,,false +17377,af241d91-7d0b-488b-88fb-5dcd5a0389e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17378,af241d91-7d0b-488b-88fb-5dcd5a0389e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17379,af241d91-7d0b-488b-88fb-5dcd5a0389e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17380,1cb8d2eb-48ee-45d3-a859-ec7cdf81dcbd,LIST_ACCOUNTS,xs2aListAccounts,true -17381,1cb8d2eb-48ee-45d3-a859-ec7cdf81dcbd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17381,1cb8d2eb-48ee-45d3-a859-ec7cdf81dcbd,LIST_TRANSACTIONS,xs2aListTransactions,true 17382,1cb8d2eb-48ee-45d3-a859-ec7cdf81dcbd,AUTHORIZATION,,true 17383,1cb8d2eb-48ee-45d3-a859-ec7cdf81dcbd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17384,1cb8d2eb-48ee-45d3-a859-ec7cdf81dcbd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17385,1cb8d2eb-48ee-45d3-a859-ec7cdf81dcbd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17386,e4e7ac66-3820-4ce9-848a-df901bd01745,LIST_ACCOUNTS,hbciListAccounts,false -17387,e4e7ac66-3820-4ce9-848a-df901bd01745,LIST_TRANSACTIONS,hbciListTransactions,false -17388,e4e7ac66-3820-4ce9-848a-df901bd01745,AUTHORIZATION,,false -17389,e4e7ac66-3820-4ce9-848a-df901bd01745,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17390,e4e7ac66-3820-4ce9-848a-df901bd01745,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17391,e4e7ac66-3820-4ce9-848a-df901bd01745,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17386,9cc69290-3e50-4732-9bea-ba5dd6986720,LIST_ACCOUNTS,hbciListAccounts,false +17387,9cc69290-3e50-4732-9bea-ba5dd6986720,LIST_TRANSACTIONS,hbciListTransactions,false +17388,9cc69290-3e50-4732-9bea-ba5dd6986720,AUTHORIZATION,,false +17389,9cc69290-3e50-4732-9bea-ba5dd6986720,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17390,9cc69290-3e50-4732-9bea-ba5dd6986720,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17391,9cc69290-3e50-4732-9bea-ba5dd6986720,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17392,1b624a50-e897-4fe6-a6f2-127a938bc3d3,LIST_ACCOUNTS,xs2aListAccounts,true -17393,1b624a50-e897-4fe6-a6f2-127a938bc3d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17393,1b624a50-e897-4fe6-a6f2-127a938bc3d3,LIST_TRANSACTIONS,xs2aListTransactions,true 17394,1b624a50-e897-4fe6-a6f2-127a938bc3d3,AUTHORIZATION,,true 17395,1b624a50-e897-4fe6-a6f2-127a938bc3d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17396,1b624a50-e897-4fe6-a6f2-127a938bc3d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17397,1b624a50-e897-4fe6-a6f2-127a938bc3d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17398,4343734d-7eb9-4086-ba61-5330b2a0c1e9,LIST_ACCOUNTS,hbciListAccounts,false -17399,4343734d-7eb9-4086-ba61-5330b2a0c1e9,LIST_TRANSACTIONS,hbciListTransactions,false -17400,4343734d-7eb9-4086-ba61-5330b2a0c1e9,AUTHORIZATION,,false -17401,4343734d-7eb9-4086-ba61-5330b2a0c1e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17402,4343734d-7eb9-4086-ba61-5330b2a0c1e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17403,4343734d-7eb9-4086-ba61-5330b2a0c1e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17398,9187d67c-4ddc-40f4-9463-3b581b504fb9,LIST_ACCOUNTS,hbciListAccounts,false +17399,9187d67c-4ddc-40f4-9463-3b581b504fb9,LIST_TRANSACTIONS,hbciListTransactions,false +17400,9187d67c-4ddc-40f4-9463-3b581b504fb9,AUTHORIZATION,,false +17401,9187d67c-4ddc-40f4-9463-3b581b504fb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17402,9187d67c-4ddc-40f4-9463-3b581b504fb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17403,9187d67c-4ddc-40f4-9463-3b581b504fb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17404,89b31b49-2e9d-442f-9def-81ff8a8e60f7,LIST_ACCOUNTS,xs2aListAccounts,true -17405,89b31b49-2e9d-442f-9def-81ff8a8e60f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17405,89b31b49-2e9d-442f-9def-81ff8a8e60f7,LIST_TRANSACTIONS,xs2aListTransactions,true 17406,89b31b49-2e9d-442f-9def-81ff8a8e60f7,AUTHORIZATION,,true 17407,89b31b49-2e9d-442f-9def-81ff8a8e60f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17408,89b31b49-2e9d-442f-9def-81ff8a8e60f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17409,89b31b49-2e9d-442f-9def-81ff8a8e60f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17410,68019dc8-5cb5-471a-8b71-6f4a2b08684f,LIST_ACCOUNTS,hbciListAccounts,false -17411,68019dc8-5cb5-471a-8b71-6f4a2b08684f,LIST_TRANSACTIONS,hbciListTransactions,false -17412,68019dc8-5cb5-471a-8b71-6f4a2b08684f,AUTHORIZATION,,false -17413,68019dc8-5cb5-471a-8b71-6f4a2b08684f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17414,68019dc8-5cb5-471a-8b71-6f4a2b08684f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17415,68019dc8-5cb5-471a-8b71-6f4a2b08684f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17410,d8c39967-2e8e-4e47-8b8f-75f818ad10c2,LIST_ACCOUNTS,hbciListAccounts,false +17411,d8c39967-2e8e-4e47-8b8f-75f818ad10c2,LIST_TRANSACTIONS,hbciListTransactions,false +17412,d8c39967-2e8e-4e47-8b8f-75f818ad10c2,AUTHORIZATION,,false +17413,d8c39967-2e8e-4e47-8b8f-75f818ad10c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17414,d8c39967-2e8e-4e47-8b8f-75f818ad10c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17415,d8c39967-2e8e-4e47-8b8f-75f818ad10c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17416,608ecbdf-b1a7-495d-886e-c46f90597daf,LIST_ACCOUNTS,xs2aListAccounts,true -17417,608ecbdf-b1a7-495d-886e-c46f90597daf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17417,608ecbdf-b1a7-495d-886e-c46f90597daf,LIST_TRANSACTIONS,xs2aListTransactions,true 17418,608ecbdf-b1a7-495d-886e-c46f90597daf,AUTHORIZATION,,true 17419,608ecbdf-b1a7-495d-886e-c46f90597daf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17420,608ecbdf-b1a7-495d-886e-c46f90597daf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17421,608ecbdf-b1a7-495d-886e-c46f90597daf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17422,19b95c51-df72-429a-92d2-119a3210569a,LIST_ACCOUNTS,hbciListAccounts,false -17423,19b95c51-df72-429a-92d2-119a3210569a,LIST_TRANSACTIONS,hbciListTransactions,false -17424,19b95c51-df72-429a-92d2-119a3210569a,AUTHORIZATION,,false -17425,19b95c51-df72-429a-92d2-119a3210569a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17426,19b95c51-df72-429a-92d2-119a3210569a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17427,19b95c51-df72-429a-92d2-119a3210569a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17422,04df90b2-23e3-40a5-b586-356eb8202e0a,LIST_ACCOUNTS,hbciListAccounts,false +17423,04df90b2-23e3-40a5-b586-356eb8202e0a,LIST_TRANSACTIONS,hbciListTransactions,false +17424,04df90b2-23e3-40a5-b586-356eb8202e0a,AUTHORIZATION,,false +17425,04df90b2-23e3-40a5-b586-356eb8202e0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17426,04df90b2-23e3-40a5-b586-356eb8202e0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17427,04df90b2-23e3-40a5-b586-356eb8202e0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17428,c03ff806-eb91-411e-a0e5-83a209bec097,LIST_ACCOUNTS,xs2aListAccounts,true -17429,c03ff806-eb91-411e-a0e5-83a209bec097,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17429,c03ff806-eb91-411e-a0e5-83a209bec097,LIST_TRANSACTIONS,xs2aListTransactions,true 17430,c03ff806-eb91-411e-a0e5-83a209bec097,AUTHORIZATION,,true 17431,c03ff806-eb91-411e-a0e5-83a209bec097,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17432,c03ff806-eb91-411e-a0e5-83a209bec097,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17433,c03ff806-eb91-411e-a0e5-83a209bec097,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17434,7ac78454-b94d-4a42-a656-f866a3358a16,LIST_ACCOUNTS,hbciListAccounts,false -17435,7ac78454-b94d-4a42-a656-f866a3358a16,LIST_TRANSACTIONS,hbciListTransactions,false -17436,7ac78454-b94d-4a42-a656-f866a3358a16,AUTHORIZATION,,false -17437,7ac78454-b94d-4a42-a656-f866a3358a16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17438,7ac78454-b94d-4a42-a656-f866a3358a16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17439,7ac78454-b94d-4a42-a656-f866a3358a16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17434,f5fe91ca-a700-48b4-94b0-7bb75214ddde,LIST_ACCOUNTS,hbciListAccounts,false +17435,f5fe91ca-a700-48b4-94b0-7bb75214ddde,LIST_TRANSACTIONS,hbciListTransactions,false +17436,f5fe91ca-a700-48b4-94b0-7bb75214ddde,AUTHORIZATION,,false +17437,f5fe91ca-a700-48b4-94b0-7bb75214ddde,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17438,f5fe91ca-a700-48b4-94b0-7bb75214ddde,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17439,f5fe91ca-a700-48b4-94b0-7bb75214ddde,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17440,d3fb30ae-0bc6-4e4b-a52a-3d28d8972042,LIST_ACCOUNTS,xs2aListAccounts,true -17441,d3fb30ae-0bc6-4e4b-a52a-3d28d8972042,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17441,d3fb30ae-0bc6-4e4b-a52a-3d28d8972042,LIST_TRANSACTIONS,xs2aListTransactions,true 17442,d3fb30ae-0bc6-4e4b-a52a-3d28d8972042,AUTHORIZATION,,true 17443,d3fb30ae-0bc6-4e4b-a52a-3d28d8972042,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17444,d3fb30ae-0bc6-4e4b-a52a-3d28d8972042,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17445,d3fb30ae-0bc6-4e4b-a52a-3d28d8972042,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17446,177bbad9-190b-4d0b-8d60-4afe8b07f019,LIST_ACCOUNTS,hbciListAccounts,false -17447,177bbad9-190b-4d0b-8d60-4afe8b07f019,LIST_TRANSACTIONS,hbciListTransactions,false -17448,177bbad9-190b-4d0b-8d60-4afe8b07f019,AUTHORIZATION,,false -17449,177bbad9-190b-4d0b-8d60-4afe8b07f019,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17450,177bbad9-190b-4d0b-8d60-4afe8b07f019,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17451,177bbad9-190b-4d0b-8d60-4afe8b07f019,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17446,e272c2b1-167d-4a48-ba6c-0c3df717bd7e,LIST_ACCOUNTS,hbciListAccounts,false +17447,e272c2b1-167d-4a48-ba6c-0c3df717bd7e,LIST_TRANSACTIONS,hbciListTransactions,false +17448,e272c2b1-167d-4a48-ba6c-0c3df717bd7e,AUTHORIZATION,,false +17449,e272c2b1-167d-4a48-ba6c-0c3df717bd7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17450,e272c2b1-167d-4a48-ba6c-0c3df717bd7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17451,e272c2b1-167d-4a48-ba6c-0c3df717bd7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17452,eb2b4953-543c-456a-9c95-fc30ec70e16e,LIST_ACCOUNTS,xs2aListAccounts,true -17453,eb2b4953-543c-456a-9c95-fc30ec70e16e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17453,eb2b4953-543c-456a-9c95-fc30ec70e16e,LIST_TRANSACTIONS,xs2aListTransactions,true 17454,eb2b4953-543c-456a-9c95-fc30ec70e16e,AUTHORIZATION,,true 17455,eb2b4953-543c-456a-9c95-fc30ec70e16e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17456,eb2b4953-543c-456a-9c95-fc30ec70e16e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17457,eb2b4953-543c-456a-9c95-fc30ec70e16e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17458,d7e9b97b-3805-4c5d-9d0e-c5e158f6c438,LIST_ACCOUNTS,hbciListAccounts,false -17459,d7e9b97b-3805-4c5d-9d0e-c5e158f6c438,LIST_TRANSACTIONS,hbciListTransactions,false -17460,d7e9b97b-3805-4c5d-9d0e-c5e158f6c438,AUTHORIZATION,,false -17461,d7e9b97b-3805-4c5d-9d0e-c5e158f6c438,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17462,d7e9b97b-3805-4c5d-9d0e-c5e158f6c438,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17463,d7e9b97b-3805-4c5d-9d0e-c5e158f6c438,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17458,41cc9fad-8ace-40c6-8053-998e0ac44c49,LIST_ACCOUNTS,hbciListAccounts,false +17459,41cc9fad-8ace-40c6-8053-998e0ac44c49,LIST_TRANSACTIONS,hbciListTransactions,false +17460,41cc9fad-8ace-40c6-8053-998e0ac44c49,AUTHORIZATION,,false +17461,41cc9fad-8ace-40c6-8053-998e0ac44c49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17462,41cc9fad-8ace-40c6-8053-998e0ac44c49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17463,41cc9fad-8ace-40c6-8053-998e0ac44c49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17464,96ce6910-6a65-4fbe-ba21-0f3196f4bbe4,LIST_ACCOUNTS,xs2aListAccounts,true -17465,96ce6910-6a65-4fbe-ba21-0f3196f4bbe4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17465,96ce6910-6a65-4fbe-ba21-0f3196f4bbe4,LIST_TRANSACTIONS,xs2aListTransactions,true 17466,96ce6910-6a65-4fbe-ba21-0f3196f4bbe4,AUTHORIZATION,,true 17467,96ce6910-6a65-4fbe-ba21-0f3196f4bbe4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17468,96ce6910-6a65-4fbe-ba21-0f3196f4bbe4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17469,96ce6910-6a65-4fbe-ba21-0f3196f4bbe4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17470,bb5eacf5-b94d-43aa-8212-8e8ac40a9e51,LIST_ACCOUNTS,hbciListAccounts,false -17471,bb5eacf5-b94d-43aa-8212-8e8ac40a9e51,LIST_TRANSACTIONS,hbciListTransactions,false -17472,bb5eacf5-b94d-43aa-8212-8e8ac40a9e51,AUTHORIZATION,,false -17473,bb5eacf5-b94d-43aa-8212-8e8ac40a9e51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17474,bb5eacf5-b94d-43aa-8212-8e8ac40a9e51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17475,bb5eacf5-b94d-43aa-8212-8e8ac40a9e51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17470,444b2c32-877c-4b72-97ed-aedf9ec2ff9a,LIST_ACCOUNTS,hbciListAccounts,false +17471,444b2c32-877c-4b72-97ed-aedf9ec2ff9a,LIST_TRANSACTIONS,hbciListTransactions,false +17472,444b2c32-877c-4b72-97ed-aedf9ec2ff9a,AUTHORIZATION,,false +17473,444b2c32-877c-4b72-97ed-aedf9ec2ff9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17474,444b2c32-877c-4b72-97ed-aedf9ec2ff9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17475,444b2c32-877c-4b72-97ed-aedf9ec2ff9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17476,1df1fd57-dc3c-4088-b712-2649fa244a5c,LIST_ACCOUNTS,xs2aListAccounts,true -17477,1df1fd57-dc3c-4088-b712-2649fa244a5c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17477,1df1fd57-dc3c-4088-b712-2649fa244a5c,LIST_TRANSACTIONS,xs2aListTransactions,true 17478,1df1fd57-dc3c-4088-b712-2649fa244a5c,AUTHORIZATION,,true 17479,1df1fd57-dc3c-4088-b712-2649fa244a5c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17480,1df1fd57-dc3c-4088-b712-2649fa244a5c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17481,1df1fd57-dc3c-4088-b712-2649fa244a5c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17482,45a68583-d606-4f0b-ad40-dab2d63effc2,LIST_ACCOUNTS,hbciListAccounts,false -17483,45a68583-d606-4f0b-ad40-dab2d63effc2,LIST_TRANSACTIONS,hbciListTransactions,false -17484,45a68583-d606-4f0b-ad40-dab2d63effc2,AUTHORIZATION,,false -17485,45a68583-d606-4f0b-ad40-dab2d63effc2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17486,45a68583-d606-4f0b-ad40-dab2d63effc2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17487,45a68583-d606-4f0b-ad40-dab2d63effc2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17482,5bd13771-d0cb-44e5-b06d-cb663466095e,LIST_ACCOUNTS,hbciListAccounts,false +17483,5bd13771-d0cb-44e5-b06d-cb663466095e,LIST_TRANSACTIONS,hbciListTransactions,false +17484,5bd13771-d0cb-44e5-b06d-cb663466095e,AUTHORIZATION,,false +17485,5bd13771-d0cb-44e5-b06d-cb663466095e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17486,5bd13771-d0cb-44e5-b06d-cb663466095e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17487,5bd13771-d0cb-44e5-b06d-cb663466095e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17488,a03b5c3d-38d2-4096-8657-1e5f59ed8014,LIST_ACCOUNTS,xs2aListAccounts,true -17489,a03b5c3d-38d2-4096-8657-1e5f59ed8014,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17489,a03b5c3d-38d2-4096-8657-1e5f59ed8014,LIST_TRANSACTIONS,xs2aListTransactions,true 17490,a03b5c3d-38d2-4096-8657-1e5f59ed8014,AUTHORIZATION,,true 17491,a03b5c3d-38d2-4096-8657-1e5f59ed8014,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17492,a03b5c3d-38d2-4096-8657-1e5f59ed8014,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17493,a03b5c3d-38d2-4096-8657-1e5f59ed8014,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17494,a14b0307-e6dd-4414-9fbd-948222f191d9,LIST_ACCOUNTS,hbciListAccounts,false -17495,a14b0307-e6dd-4414-9fbd-948222f191d9,LIST_TRANSACTIONS,hbciListTransactions,false -17496,a14b0307-e6dd-4414-9fbd-948222f191d9,AUTHORIZATION,,false -17497,a14b0307-e6dd-4414-9fbd-948222f191d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17498,a14b0307-e6dd-4414-9fbd-948222f191d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17499,a14b0307-e6dd-4414-9fbd-948222f191d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17494,f5360f3e-ee17-4e77-8ba4-42e7560ec578,LIST_ACCOUNTS,hbciListAccounts,false +17495,f5360f3e-ee17-4e77-8ba4-42e7560ec578,LIST_TRANSACTIONS,hbciListTransactions,false +17496,f5360f3e-ee17-4e77-8ba4-42e7560ec578,AUTHORIZATION,,false +17497,f5360f3e-ee17-4e77-8ba4-42e7560ec578,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17498,f5360f3e-ee17-4e77-8ba4-42e7560ec578,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17499,f5360f3e-ee17-4e77-8ba4-42e7560ec578,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17500,39c3e5e9-a344-404d-be96-548f0f86ab04,LIST_ACCOUNTS,xs2aListAccounts,true -17501,39c3e5e9-a344-404d-be96-548f0f86ab04,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17501,39c3e5e9-a344-404d-be96-548f0f86ab04,LIST_TRANSACTIONS,xs2aListTransactions,true 17502,39c3e5e9-a344-404d-be96-548f0f86ab04,AUTHORIZATION,,true 17503,39c3e5e9-a344-404d-be96-548f0f86ab04,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17504,39c3e5e9-a344-404d-be96-548f0f86ab04,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17505,39c3e5e9-a344-404d-be96-548f0f86ab04,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17506,1080a273-d240-4e22-988c-dc14ea5f710b,LIST_ACCOUNTS,hbciListAccounts,false -17507,1080a273-d240-4e22-988c-dc14ea5f710b,LIST_TRANSACTIONS,hbciListTransactions,false -17508,1080a273-d240-4e22-988c-dc14ea5f710b,AUTHORIZATION,,false -17509,1080a273-d240-4e22-988c-dc14ea5f710b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17510,1080a273-d240-4e22-988c-dc14ea5f710b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17511,1080a273-d240-4e22-988c-dc14ea5f710b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17506,e3f7a785-a5e5-4451-a4a1-045e632e9b47,LIST_ACCOUNTS,hbciListAccounts,false +17507,e3f7a785-a5e5-4451-a4a1-045e632e9b47,LIST_TRANSACTIONS,hbciListTransactions,false +17508,e3f7a785-a5e5-4451-a4a1-045e632e9b47,AUTHORIZATION,,false +17509,e3f7a785-a5e5-4451-a4a1-045e632e9b47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17510,e3f7a785-a5e5-4451-a4a1-045e632e9b47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17511,e3f7a785-a5e5-4451-a4a1-045e632e9b47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17512,a23801ca-21f4-445a-b9f7-f76ec065ba8a,LIST_ACCOUNTS,xs2aListAccounts,true -17513,a23801ca-21f4-445a-b9f7-f76ec065ba8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17513,a23801ca-21f4-445a-b9f7-f76ec065ba8a,LIST_TRANSACTIONS,xs2aListTransactions,true 17514,a23801ca-21f4-445a-b9f7-f76ec065ba8a,AUTHORIZATION,,true 17515,a23801ca-21f4-445a-b9f7-f76ec065ba8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17516,a23801ca-21f4-445a-b9f7-f76ec065ba8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17517,a23801ca-21f4-445a-b9f7-f76ec065ba8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17518,0213312c-0242-4a5b-9627-0776645cb13e,LIST_ACCOUNTS,hbciListAccounts,false -17519,0213312c-0242-4a5b-9627-0776645cb13e,LIST_TRANSACTIONS,hbciListTransactions,false -17520,0213312c-0242-4a5b-9627-0776645cb13e,AUTHORIZATION,,false -17521,0213312c-0242-4a5b-9627-0776645cb13e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17522,0213312c-0242-4a5b-9627-0776645cb13e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17523,0213312c-0242-4a5b-9627-0776645cb13e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17518,52ca3735-f037-4cf7-8a4b-df075fe1d27f,LIST_ACCOUNTS,hbciListAccounts,false +17519,52ca3735-f037-4cf7-8a4b-df075fe1d27f,LIST_TRANSACTIONS,hbciListTransactions,false +17520,52ca3735-f037-4cf7-8a4b-df075fe1d27f,AUTHORIZATION,,false +17521,52ca3735-f037-4cf7-8a4b-df075fe1d27f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17522,52ca3735-f037-4cf7-8a4b-df075fe1d27f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17523,52ca3735-f037-4cf7-8a4b-df075fe1d27f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17524,78b6309a-cccd-4b5c-b3de-5860734d1fa6,LIST_ACCOUNTS,xs2aListAccounts,true -17525,78b6309a-cccd-4b5c-b3de-5860734d1fa6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17525,78b6309a-cccd-4b5c-b3de-5860734d1fa6,LIST_TRANSACTIONS,xs2aListTransactions,true 17526,78b6309a-cccd-4b5c-b3de-5860734d1fa6,AUTHORIZATION,,true 17527,78b6309a-cccd-4b5c-b3de-5860734d1fa6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17528,78b6309a-cccd-4b5c-b3de-5860734d1fa6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17529,78b6309a-cccd-4b5c-b3de-5860734d1fa6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17530,23470e3f-6012-49e9-82fa-714d87656e6d,LIST_ACCOUNTS,hbciListAccounts,false -17531,23470e3f-6012-49e9-82fa-714d87656e6d,LIST_TRANSACTIONS,hbciListTransactions,false -17532,23470e3f-6012-49e9-82fa-714d87656e6d,AUTHORIZATION,,false -17533,23470e3f-6012-49e9-82fa-714d87656e6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17534,23470e3f-6012-49e9-82fa-714d87656e6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17535,23470e3f-6012-49e9-82fa-714d87656e6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17530,a5bde90c-663b-415b-9260-276f8c5fbc68,LIST_ACCOUNTS,hbciListAccounts,false +17531,a5bde90c-663b-415b-9260-276f8c5fbc68,LIST_TRANSACTIONS,hbciListTransactions,false +17532,a5bde90c-663b-415b-9260-276f8c5fbc68,AUTHORIZATION,,false +17533,a5bde90c-663b-415b-9260-276f8c5fbc68,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17534,a5bde90c-663b-415b-9260-276f8c5fbc68,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17535,a5bde90c-663b-415b-9260-276f8c5fbc68,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17536,b9ff8a97-0b23-4d98-b3b4-d9ad2a1c21da,LIST_ACCOUNTS,xs2aListAccounts,true -17537,b9ff8a97-0b23-4d98-b3b4-d9ad2a1c21da,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17537,b9ff8a97-0b23-4d98-b3b4-d9ad2a1c21da,LIST_TRANSACTIONS,xs2aListTransactions,true 17538,b9ff8a97-0b23-4d98-b3b4-d9ad2a1c21da,AUTHORIZATION,,true 17539,b9ff8a97-0b23-4d98-b3b4-d9ad2a1c21da,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17540,b9ff8a97-0b23-4d98-b3b4-d9ad2a1c21da,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17541,b9ff8a97-0b23-4d98-b3b4-d9ad2a1c21da,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17542,01ffc103-32c3-4283-8ea8-3a8e4bbe573d,LIST_ACCOUNTS,hbciListAccounts,false -17543,01ffc103-32c3-4283-8ea8-3a8e4bbe573d,LIST_TRANSACTIONS,hbciListTransactions,false -17544,01ffc103-32c3-4283-8ea8-3a8e4bbe573d,AUTHORIZATION,,false -17545,01ffc103-32c3-4283-8ea8-3a8e4bbe573d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17546,01ffc103-32c3-4283-8ea8-3a8e4bbe573d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17547,01ffc103-32c3-4283-8ea8-3a8e4bbe573d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17542,4d10165c-03e3-406b-ae4c-b1eec4d157af,LIST_ACCOUNTS,hbciListAccounts,false +17543,4d10165c-03e3-406b-ae4c-b1eec4d157af,LIST_TRANSACTIONS,hbciListTransactions,false +17544,4d10165c-03e3-406b-ae4c-b1eec4d157af,AUTHORIZATION,,false +17545,4d10165c-03e3-406b-ae4c-b1eec4d157af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17546,4d10165c-03e3-406b-ae4c-b1eec4d157af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17547,4d10165c-03e3-406b-ae4c-b1eec4d157af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17548,8460a96e-4ba9-4941-a74a-e86206497b25,LIST_ACCOUNTS,xs2aListAccounts,true -17549,8460a96e-4ba9-4941-a74a-e86206497b25,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17549,8460a96e-4ba9-4941-a74a-e86206497b25,LIST_TRANSACTIONS,xs2aListTransactions,true 17550,8460a96e-4ba9-4941-a74a-e86206497b25,AUTHORIZATION,,true 17551,8460a96e-4ba9-4941-a74a-e86206497b25,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17552,8460a96e-4ba9-4941-a74a-e86206497b25,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17553,8460a96e-4ba9-4941-a74a-e86206497b25,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17554,88a8ac48-32ea-447c-85de-a2b946cd45f8,LIST_ACCOUNTS,hbciListAccounts,false -17555,88a8ac48-32ea-447c-85de-a2b946cd45f8,LIST_TRANSACTIONS,hbciListTransactions,false -17556,88a8ac48-32ea-447c-85de-a2b946cd45f8,AUTHORIZATION,,false -17557,88a8ac48-32ea-447c-85de-a2b946cd45f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17558,88a8ac48-32ea-447c-85de-a2b946cd45f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17559,88a8ac48-32ea-447c-85de-a2b946cd45f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17554,2f9c7577-f28f-40f8-bd06-8db84aa9b3cd,LIST_ACCOUNTS,hbciListAccounts,false +17555,2f9c7577-f28f-40f8-bd06-8db84aa9b3cd,LIST_TRANSACTIONS,hbciListTransactions,false +17556,2f9c7577-f28f-40f8-bd06-8db84aa9b3cd,AUTHORIZATION,,false +17557,2f9c7577-f28f-40f8-bd06-8db84aa9b3cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17558,2f9c7577-f28f-40f8-bd06-8db84aa9b3cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17559,2f9c7577-f28f-40f8-bd06-8db84aa9b3cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17560,a1faf37b-4785-4d26-ad7e-8d0e1c4f16fb,LIST_ACCOUNTS,xs2aListAccounts,true -17561,a1faf37b-4785-4d26-ad7e-8d0e1c4f16fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17561,a1faf37b-4785-4d26-ad7e-8d0e1c4f16fb,LIST_TRANSACTIONS,xs2aListTransactions,true 17562,a1faf37b-4785-4d26-ad7e-8d0e1c4f16fb,AUTHORIZATION,,true 17563,a1faf37b-4785-4d26-ad7e-8d0e1c4f16fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17564,a1faf37b-4785-4d26-ad7e-8d0e1c4f16fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17565,a1faf37b-4785-4d26-ad7e-8d0e1c4f16fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17566,8c13c1db-5dc0-4835-ba66-4b51e999c6b0,LIST_ACCOUNTS,hbciListAccounts,false -17567,8c13c1db-5dc0-4835-ba66-4b51e999c6b0,LIST_TRANSACTIONS,hbciListTransactions,false -17568,8c13c1db-5dc0-4835-ba66-4b51e999c6b0,AUTHORIZATION,,false -17569,8c13c1db-5dc0-4835-ba66-4b51e999c6b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17570,8c13c1db-5dc0-4835-ba66-4b51e999c6b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17571,8c13c1db-5dc0-4835-ba66-4b51e999c6b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17566,6b42b4ea-e375-47c1-923f-c4d8f602fa24,LIST_ACCOUNTS,hbciListAccounts,false +17567,6b42b4ea-e375-47c1-923f-c4d8f602fa24,LIST_TRANSACTIONS,hbciListTransactions,false +17568,6b42b4ea-e375-47c1-923f-c4d8f602fa24,AUTHORIZATION,,false +17569,6b42b4ea-e375-47c1-923f-c4d8f602fa24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17570,6b42b4ea-e375-47c1-923f-c4d8f602fa24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17571,6b42b4ea-e375-47c1-923f-c4d8f602fa24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17572,f74b43f6-bb77-479f-877d-af7f452bb6d0,LIST_ACCOUNTS,xs2aListAccounts,true -17573,f74b43f6-bb77-479f-877d-af7f452bb6d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17573,f74b43f6-bb77-479f-877d-af7f452bb6d0,LIST_TRANSACTIONS,xs2aListTransactions,true 17574,f74b43f6-bb77-479f-877d-af7f452bb6d0,AUTHORIZATION,,true 17575,f74b43f6-bb77-479f-877d-af7f452bb6d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17576,f74b43f6-bb77-479f-877d-af7f452bb6d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17577,f74b43f6-bb77-479f-877d-af7f452bb6d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17578,475c820d-3c50-4572-a5e6-7f4f497151e5,LIST_ACCOUNTS,hbciListAccounts,false -17579,475c820d-3c50-4572-a5e6-7f4f497151e5,LIST_TRANSACTIONS,hbciListTransactions,false -17580,475c820d-3c50-4572-a5e6-7f4f497151e5,AUTHORIZATION,,false -17581,475c820d-3c50-4572-a5e6-7f4f497151e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17582,475c820d-3c50-4572-a5e6-7f4f497151e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17583,475c820d-3c50-4572-a5e6-7f4f497151e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17578,a9df5beb-4fbc-44f8-a331-8d6bf4ad47b6,LIST_ACCOUNTS,hbciListAccounts,false +17579,a9df5beb-4fbc-44f8-a331-8d6bf4ad47b6,LIST_TRANSACTIONS,hbciListTransactions,false +17580,a9df5beb-4fbc-44f8-a331-8d6bf4ad47b6,AUTHORIZATION,,false +17581,a9df5beb-4fbc-44f8-a331-8d6bf4ad47b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17582,a9df5beb-4fbc-44f8-a331-8d6bf4ad47b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17583,a9df5beb-4fbc-44f8-a331-8d6bf4ad47b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17584,ed5db8ed-9669-4470-972b-5a680881ac17,LIST_ACCOUNTS,xs2aListAccounts,true -17585,ed5db8ed-9669-4470-972b-5a680881ac17,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17585,ed5db8ed-9669-4470-972b-5a680881ac17,LIST_TRANSACTIONS,xs2aListTransactions,true 17586,ed5db8ed-9669-4470-972b-5a680881ac17,AUTHORIZATION,,true 17587,ed5db8ed-9669-4470-972b-5a680881ac17,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17588,ed5db8ed-9669-4470-972b-5a680881ac17,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17589,ed5db8ed-9669-4470-972b-5a680881ac17,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17590,1f2bf96e-6a54-451c-a4b2-215b727a3f1f,LIST_ACCOUNTS,hbciListAccounts,false -17591,1f2bf96e-6a54-451c-a4b2-215b727a3f1f,LIST_TRANSACTIONS,hbciListTransactions,false -17592,1f2bf96e-6a54-451c-a4b2-215b727a3f1f,AUTHORIZATION,,false -17593,1f2bf96e-6a54-451c-a4b2-215b727a3f1f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17594,1f2bf96e-6a54-451c-a4b2-215b727a3f1f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17595,1f2bf96e-6a54-451c-a4b2-215b727a3f1f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17590,9cef7902-2ea0-4817-8ff5-b1e58ea2d440,LIST_ACCOUNTS,hbciListAccounts,false +17591,9cef7902-2ea0-4817-8ff5-b1e58ea2d440,LIST_TRANSACTIONS,hbciListTransactions,false +17592,9cef7902-2ea0-4817-8ff5-b1e58ea2d440,AUTHORIZATION,,false +17593,9cef7902-2ea0-4817-8ff5-b1e58ea2d440,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17594,9cef7902-2ea0-4817-8ff5-b1e58ea2d440,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17595,9cef7902-2ea0-4817-8ff5-b1e58ea2d440,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17596,ef594c5d-afaf-4843-9220-f429cc8c8eae,LIST_ACCOUNTS,xs2aListAccounts,true -17597,ef594c5d-afaf-4843-9220-f429cc8c8eae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17597,ef594c5d-afaf-4843-9220-f429cc8c8eae,LIST_TRANSACTIONS,xs2aListTransactions,true 17598,ef594c5d-afaf-4843-9220-f429cc8c8eae,AUTHORIZATION,,true 17599,ef594c5d-afaf-4843-9220-f429cc8c8eae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17600,ef594c5d-afaf-4843-9220-f429cc8c8eae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17601,ef594c5d-afaf-4843-9220-f429cc8c8eae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17602,1e6d1e55-41a2-436f-9ed8-e2e4100a9c2c,LIST_ACCOUNTS,hbciListAccounts,false -17603,1e6d1e55-41a2-436f-9ed8-e2e4100a9c2c,LIST_TRANSACTIONS,hbciListTransactions,false -17604,1e6d1e55-41a2-436f-9ed8-e2e4100a9c2c,AUTHORIZATION,,false -17605,1e6d1e55-41a2-436f-9ed8-e2e4100a9c2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17606,1e6d1e55-41a2-436f-9ed8-e2e4100a9c2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17607,1e6d1e55-41a2-436f-9ed8-e2e4100a9c2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17602,92559c4a-3356-46b9-a2c1-651a45805868,LIST_ACCOUNTS,hbciListAccounts,false +17603,92559c4a-3356-46b9-a2c1-651a45805868,LIST_TRANSACTIONS,hbciListTransactions,false +17604,92559c4a-3356-46b9-a2c1-651a45805868,AUTHORIZATION,,false +17605,92559c4a-3356-46b9-a2c1-651a45805868,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17606,92559c4a-3356-46b9-a2c1-651a45805868,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17607,92559c4a-3356-46b9-a2c1-651a45805868,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17608,f3f016ad-ffd1-41c5-8e7a-1fc678cd902f,LIST_ACCOUNTS,xs2aListAccounts,true -17609,f3f016ad-ffd1-41c5-8e7a-1fc678cd902f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17609,f3f016ad-ffd1-41c5-8e7a-1fc678cd902f,LIST_TRANSACTIONS,xs2aListTransactions,true 17610,f3f016ad-ffd1-41c5-8e7a-1fc678cd902f,AUTHORIZATION,,true 17611,f3f016ad-ffd1-41c5-8e7a-1fc678cd902f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17612,f3f016ad-ffd1-41c5-8e7a-1fc678cd902f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17613,f3f016ad-ffd1-41c5-8e7a-1fc678cd902f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17614,e399e333-0963-459a-87b7-bd2ad782eaa3,LIST_ACCOUNTS,hbciListAccounts,false -17615,e399e333-0963-459a-87b7-bd2ad782eaa3,LIST_TRANSACTIONS,hbciListTransactions,false -17616,e399e333-0963-459a-87b7-bd2ad782eaa3,AUTHORIZATION,,false -17617,e399e333-0963-459a-87b7-bd2ad782eaa3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17618,e399e333-0963-459a-87b7-bd2ad782eaa3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17619,e399e333-0963-459a-87b7-bd2ad782eaa3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17614,d1d1caca-f800-401c-883f-7046d39f3d65,LIST_ACCOUNTS,hbciListAccounts,false +17615,d1d1caca-f800-401c-883f-7046d39f3d65,LIST_TRANSACTIONS,hbciListTransactions,false +17616,d1d1caca-f800-401c-883f-7046d39f3d65,AUTHORIZATION,,false +17617,d1d1caca-f800-401c-883f-7046d39f3d65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17618,d1d1caca-f800-401c-883f-7046d39f3d65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17619,d1d1caca-f800-401c-883f-7046d39f3d65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17620,0a166685-32ae-4fcf-b69c-4a0110772dc1,LIST_ACCOUNTS,xs2aListAccounts,true -17621,0a166685-32ae-4fcf-b69c-4a0110772dc1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17621,0a166685-32ae-4fcf-b69c-4a0110772dc1,LIST_TRANSACTIONS,xs2aListTransactions,true 17622,0a166685-32ae-4fcf-b69c-4a0110772dc1,AUTHORIZATION,,true 17623,0a166685-32ae-4fcf-b69c-4a0110772dc1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17624,0a166685-32ae-4fcf-b69c-4a0110772dc1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17625,0a166685-32ae-4fcf-b69c-4a0110772dc1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17626,33212823-6c76-40d6-83b5-2596c0a8ebac,LIST_ACCOUNTS,hbciListAccounts,false -17627,33212823-6c76-40d6-83b5-2596c0a8ebac,LIST_TRANSACTIONS,hbciListTransactions,false -17628,33212823-6c76-40d6-83b5-2596c0a8ebac,AUTHORIZATION,,false -17629,33212823-6c76-40d6-83b5-2596c0a8ebac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17630,33212823-6c76-40d6-83b5-2596c0a8ebac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17631,33212823-6c76-40d6-83b5-2596c0a8ebac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17626,589017ea-6c3e-43dd-8201-cae36db3f4e8,LIST_ACCOUNTS,hbciListAccounts,false +17627,589017ea-6c3e-43dd-8201-cae36db3f4e8,LIST_TRANSACTIONS,hbciListTransactions,false +17628,589017ea-6c3e-43dd-8201-cae36db3f4e8,AUTHORIZATION,,false +17629,589017ea-6c3e-43dd-8201-cae36db3f4e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17630,589017ea-6c3e-43dd-8201-cae36db3f4e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17631,589017ea-6c3e-43dd-8201-cae36db3f4e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17632,aebde93c-7531-4de6-928c-39a199ec1db4,LIST_ACCOUNTS,xs2aListAccounts,true -17633,aebde93c-7531-4de6-928c-39a199ec1db4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17633,aebde93c-7531-4de6-928c-39a199ec1db4,LIST_TRANSACTIONS,xs2aListTransactions,true 17634,aebde93c-7531-4de6-928c-39a199ec1db4,AUTHORIZATION,,true 17635,aebde93c-7531-4de6-928c-39a199ec1db4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17636,aebde93c-7531-4de6-928c-39a199ec1db4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17637,aebde93c-7531-4de6-928c-39a199ec1db4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17638,aa1dae3e-c6c3-42b1-b7c3-9e7d07a09829,LIST_ACCOUNTS,hbciListAccounts,false -17639,aa1dae3e-c6c3-42b1-b7c3-9e7d07a09829,LIST_TRANSACTIONS,hbciListTransactions,false -17640,aa1dae3e-c6c3-42b1-b7c3-9e7d07a09829,AUTHORIZATION,,false -17641,aa1dae3e-c6c3-42b1-b7c3-9e7d07a09829,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17642,aa1dae3e-c6c3-42b1-b7c3-9e7d07a09829,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17643,aa1dae3e-c6c3-42b1-b7c3-9e7d07a09829,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17638,0cbdc4e1-ce56-4702-9509-3bd84692f915,LIST_ACCOUNTS,hbciListAccounts,false +17639,0cbdc4e1-ce56-4702-9509-3bd84692f915,LIST_TRANSACTIONS,hbciListTransactions,false +17640,0cbdc4e1-ce56-4702-9509-3bd84692f915,AUTHORIZATION,,false +17641,0cbdc4e1-ce56-4702-9509-3bd84692f915,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17642,0cbdc4e1-ce56-4702-9509-3bd84692f915,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17643,0cbdc4e1-ce56-4702-9509-3bd84692f915,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17644,b957b7c5-3d93-4e44-b72e-d4f975ff7886,LIST_ACCOUNTS,xs2aListAccounts,true -17645,b957b7c5-3d93-4e44-b72e-d4f975ff7886,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17645,b957b7c5-3d93-4e44-b72e-d4f975ff7886,LIST_TRANSACTIONS,xs2aListTransactions,true 17646,b957b7c5-3d93-4e44-b72e-d4f975ff7886,AUTHORIZATION,,true 17647,b957b7c5-3d93-4e44-b72e-d4f975ff7886,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17648,b957b7c5-3d93-4e44-b72e-d4f975ff7886,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17649,b957b7c5-3d93-4e44-b72e-d4f975ff7886,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17650,fd65ab6c-bd00-4bfc-903a-d089761761fb,LIST_ACCOUNTS,hbciListAccounts,false -17651,fd65ab6c-bd00-4bfc-903a-d089761761fb,LIST_TRANSACTIONS,hbciListTransactions,false -17652,fd65ab6c-bd00-4bfc-903a-d089761761fb,AUTHORIZATION,,false -17653,fd65ab6c-bd00-4bfc-903a-d089761761fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17654,fd65ab6c-bd00-4bfc-903a-d089761761fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17655,fd65ab6c-bd00-4bfc-903a-d089761761fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17650,e0c2b68c-7208-4498-9394-a2e7fe862058,LIST_ACCOUNTS,hbciListAccounts,false +17651,e0c2b68c-7208-4498-9394-a2e7fe862058,LIST_TRANSACTIONS,hbciListTransactions,false +17652,e0c2b68c-7208-4498-9394-a2e7fe862058,AUTHORIZATION,,false +17653,e0c2b68c-7208-4498-9394-a2e7fe862058,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17654,e0c2b68c-7208-4498-9394-a2e7fe862058,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17655,e0c2b68c-7208-4498-9394-a2e7fe862058,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17656,64c164a0-ba3b-4a89-a4b9-c14ddb6a3fd5,LIST_ACCOUNTS,xs2aListAccounts,true -17657,64c164a0-ba3b-4a89-a4b9-c14ddb6a3fd5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17657,64c164a0-ba3b-4a89-a4b9-c14ddb6a3fd5,LIST_TRANSACTIONS,xs2aListTransactions,true 17658,64c164a0-ba3b-4a89-a4b9-c14ddb6a3fd5,AUTHORIZATION,,true 17659,64c164a0-ba3b-4a89-a4b9-c14ddb6a3fd5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17660,64c164a0-ba3b-4a89-a4b9-c14ddb6a3fd5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17661,64c164a0-ba3b-4a89-a4b9-c14ddb6a3fd5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17662,3102548e-947f-4add-be51-bbfdaed54912,LIST_ACCOUNTS,hbciListAccounts,false -17663,3102548e-947f-4add-be51-bbfdaed54912,LIST_TRANSACTIONS,hbciListTransactions,false -17664,3102548e-947f-4add-be51-bbfdaed54912,AUTHORIZATION,,false -17665,3102548e-947f-4add-be51-bbfdaed54912,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17666,3102548e-947f-4add-be51-bbfdaed54912,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17667,3102548e-947f-4add-be51-bbfdaed54912,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17662,c7ecd7bf-879b-4728-bfaf-97a5c7195637,LIST_ACCOUNTS,hbciListAccounts,false +17663,c7ecd7bf-879b-4728-bfaf-97a5c7195637,LIST_TRANSACTIONS,hbciListTransactions,false +17664,c7ecd7bf-879b-4728-bfaf-97a5c7195637,AUTHORIZATION,,false +17665,c7ecd7bf-879b-4728-bfaf-97a5c7195637,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17666,c7ecd7bf-879b-4728-bfaf-97a5c7195637,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17667,c7ecd7bf-879b-4728-bfaf-97a5c7195637,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17668,318b18bd-39d0-44de-aec4-9b39ca650bf5,LIST_ACCOUNTS,xs2aListAccounts,true -17669,318b18bd-39d0-44de-aec4-9b39ca650bf5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17669,318b18bd-39d0-44de-aec4-9b39ca650bf5,LIST_TRANSACTIONS,xs2aListTransactions,true 17670,318b18bd-39d0-44de-aec4-9b39ca650bf5,AUTHORIZATION,,true 17671,318b18bd-39d0-44de-aec4-9b39ca650bf5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17672,318b18bd-39d0-44de-aec4-9b39ca650bf5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17673,318b18bd-39d0-44de-aec4-9b39ca650bf5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17674,fd0c90f2-0137-4032-8b07-3f96dae32043,LIST_ACCOUNTS,hbciListAccounts,false -17675,fd0c90f2-0137-4032-8b07-3f96dae32043,LIST_TRANSACTIONS,hbciListTransactions,false -17676,fd0c90f2-0137-4032-8b07-3f96dae32043,AUTHORIZATION,,false -17677,fd0c90f2-0137-4032-8b07-3f96dae32043,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17678,fd0c90f2-0137-4032-8b07-3f96dae32043,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17679,fd0c90f2-0137-4032-8b07-3f96dae32043,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17674,b35c5c72-52cd-4ce8-ac18-63ae28944c8a,LIST_ACCOUNTS,hbciListAccounts,false +17675,b35c5c72-52cd-4ce8-ac18-63ae28944c8a,LIST_TRANSACTIONS,hbciListTransactions,false +17676,b35c5c72-52cd-4ce8-ac18-63ae28944c8a,AUTHORIZATION,,false +17677,b35c5c72-52cd-4ce8-ac18-63ae28944c8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17678,b35c5c72-52cd-4ce8-ac18-63ae28944c8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17679,b35c5c72-52cd-4ce8-ac18-63ae28944c8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17680,d4ab7eee-c28f-42ee-b11c-40892419cede,LIST_ACCOUNTS,xs2aListAccounts,true -17681,d4ab7eee-c28f-42ee-b11c-40892419cede,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17681,d4ab7eee-c28f-42ee-b11c-40892419cede,LIST_TRANSACTIONS,xs2aListTransactions,true 17682,d4ab7eee-c28f-42ee-b11c-40892419cede,AUTHORIZATION,,true 17683,d4ab7eee-c28f-42ee-b11c-40892419cede,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17684,d4ab7eee-c28f-42ee-b11c-40892419cede,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17685,d4ab7eee-c28f-42ee-b11c-40892419cede,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17686,5ef46ff7-179b-4416-b05f-1e53dbe59475,LIST_ACCOUNTS,hbciListAccounts,false -17687,5ef46ff7-179b-4416-b05f-1e53dbe59475,LIST_TRANSACTIONS,hbciListTransactions,false -17688,5ef46ff7-179b-4416-b05f-1e53dbe59475,AUTHORIZATION,,false -17689,5ef46ff7-179b-4416-b05f-1e53dbe59475,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17690,5ef46ff7-179b-4416-b05f-1e53dbe59475,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17691,5ef46ff7-179b-4416-b05f-1e53dbe59475,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17686,95b51a96-115c-49ff-9df8-341dba9c4364,LIST_ACCOUNTS,hbciListAccounts,false +17687,95b51a96-115c-49ff-9df8-341dba9c4364,LIST_TRANSACTIONS,hbciListTransactions,false +17688,95b51a96-115c-49ff-9df8-341dba9c4364,AUTHORIZATION,,false +17689,95b51a96-115c-49ff-9df8-341dba9c4364,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17690,95b51a96-115c-49ff-9df8-341dba9c4364,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17691,95b51a96-115c-49ff-9df8-341dba9c4364,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17692,e70ac9e2-704c-4247-bde2-050e8922a681,LIST_ACCOUNTS,xs2aListAccounts,true -17693,e70ac9e2-704c-4247-bde2-050e8922a681,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17693,e70ac9e2-704c-4247-bde2-050e8922a681,LIST_TRANSACTIONS,xs2aListTransactions,true 17694,e70ac9e2-704c-4247-bde2-050e8922a681,AUTHORIZATION,,true 17695,e70ac9e2-704c-4247-bde2-050e8922a681,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17696,e70ac9e2-704c-4247-bde2-050e8922a681,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17697,e70ac9e2-704c-4247-bde2-050e8922a681,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17698,3fbbcfee-ccfe-493a-b014-b8ee3bef136a,LIST_ACCOUNTS,hbciListAccounts,false -17699,3fbbcfee-ccfe-493a-b014-b8ee3bef136a,LIST_TRANSACTIONS,hbciListTransactions,false -17700,3fbbcfee-ccfe-493a-b014-b8ee3bef136a,AUTHORIZATION,,false -17701,3fbbcfee-ccfe-493a-b014-b8ee3bef136a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17702,3fbbcfee-ccfe-493a-b014-b8ee3bef136a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17703,3fbbcfee-ccfe-493a-b014-b8ee3bef136a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17698,f808d656-77fe-47c4-8db5-eb034062f18c,LIST_ACCOUNTS,hbciListAccounts,false +17699,f808d656-77fe-47c4-8db5-eb034062f18c,LIST_TRANSACTIONS,hbciListTransactions,false +17700,f808d656-77fe-47c4-8db5-eb034062f18c,AUTHORIZATION,,false +17701,f808d656-77fe-47c4-8db5-eb034062f18c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17702,f808d656-77fe-47c4-8db5-eb034062f18c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17703,f808d656-77fe-47c4-8db5-eb034062f18c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17704,3fde4430-4699-44e1-b468-812ddc6181f5,LIST_ACCOUNTS,xs2aListAccounts,true -17705,3fde4430-4699-44e1-b468-812ddc6181f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17705,3fde4430-4699-44e1-b468-812ddc6181f5,LIST_TRANSACTIONS,xs2aListTransactions,true 17706,3fde4430-4699-44e1-b468-812ddc6181f5,AUTHORIZATION,,true 17707,3fde4430-4699-44e1-b468-812ddc6181f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17708,3fde4430-4699-44e1-b468-812ddc6181f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17709,3fde4430-4699-44e1-b468-812ddc6181f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17710,a816b92a-d2a9-4fda-817d-cdc8f596c274,LIST_ACCOUNTS,hbciListAccounts,false -17711,a816b92a-d2a9-4fda-817d-cdc8f596c274,LIST_TRANSACTIONS,hbciListTransactions,false -17712,a816b92a-d2a9-4fda-817d-cdc8f596c274,AUTHORIZATION,,false -17713,a816b92a-d2a9-4fda-817d-cdc8f596c274,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17714,a816b92a-d2a9-4fda-817d-cdc8f596c274,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17715,a816b92a-d2a9-4fda-817d-cdc8f596c274,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17710,38bff19c-30d3-4a21-af1b-53aaffadc9fa,LIST_ACCOUNTS,hbciListAccounts,false +17711,38bff19c-30d3-4a21-af1b-53aaffadc9fa,LIST_TRANSACTIONS,hbciListTransactions,false +17712,38bff19c-30d3-4a21-af1b-53aaffadc9fa,AUTHORIZATION,,false +17713,38bff19c-30d3-4a21-af1b-53aaffadc9fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17714,38bff19c-30d3-4a21-af1b-53aaffadc9fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17715,38bff19c-30d3-4a21-af1b-53aaffadc9fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17716,c1bad30a-688b-4f03-b59f-6d3f43a4a310,LIST_ACCOUNTS,xs2aListAccounts,true -17717,c1bad30a-688b-4f03-b59f-6d3f43a4a310,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17717,c1bad30a-688b-4f03-b59f-6d3f43a4a310,LIST_TRANSACTIONS,xs2aListTransactions,true 17718,c1bad30a-688b-4f03-b59f-6d3f43a4a310,AUTHORIZATION,,true 17719,c1bad30a-688b-4f03-b59f-6d3f43a4a310,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17720,c1bad30a-688b-4f03-b59f-6d3f43a4a310,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17721,c1bad30a-688b-4f03-b59f-6d3f43a4a310,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17722,b36afb9f-efd4-4ae1-ad9e-037cf79224ba,LIST_ACCOUNTS,hbciListAccounts,false -17723,b36afb9f-efd4-4ae1-ad9e-037cf79224ba,LIST_TRANSACTIONS,hbciListTransactions,false -17724,b36afb9f-efd4-4ae1-ad9e-037cf79224ba,AUTHORIZATION,,false -17725,b36afb9f-efd4-4ae1-ad9e-037cf79224ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17726,b36afb9f-efd4-4ae1-ad9e-037cf79224ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17727,b36afb9f-efd4-4ae1-ad9e-037cf79224ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17722,38af3654-5144-4e98-8879-3931f613c90e,LIST_ACCOUNTS,hbciListAccounts,false +17723,38af3654-5144-4e98-8879-3931f613c90e,LIST_TRANSACTIONS,hbciListTransactions,false +17724,38af3654-5144-4e98-8879-3931f613c90e,AUTHORIZATION,,false +17725,38af3654-5144-4e98-8879-3931f613c90e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17726,38af3654-5144-4e98-8879-3931f613c90e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17727,38af3654-5144-4e98-8879-3931f613c90e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17728,96a7a454-93e7-4eac-ae15-4928d553113f,LIST_ACCOUNTS,xs2aListAccounts,true -17729,96a7a454-93e7-4eac-ae15-4928d553113f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17729,96a7a454-93e7-4eac-ae15-4928d553113f,LIST_TRANSACTIONS,xs2aListTransactions,true 17730,96a7a454-93e7-4eac-ae15-4928d553113f,AUTHORIZATION,,true 17731,96a7a454-93e7-4eac-ae15-4928d553113f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17732,96a7a454-93e7-4eac-ae15-4928d553113f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17733,96a7a454-93e7-4eac-ae15-4928d553113f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17734,7832825f-2805-46e8-8857-f9bab7fad1d6,LIST_ACCOUNTS,hbciListAccounts,false -17735,7832825f-2805-46e8-8857-f9bab7fad1d6,LIST_TRANSACTIONS,hbciListTransactions,false -17736,7832825f-2805-46e8-8857-f9bab7fad1d6,AUTHORIZATION,,false -17737,7832825f-2805-46e8-8857-f9bab7fad1d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17738,7832825f-2805-46e8-8857-f9bab7fad1d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17739,7832825f-2805-46e8-8857-f9bab7fad1d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17734,7933eafe-c4de-41e4-9d4b-bcabcea3fce0,LIST_ACCOUNTS,hbciListAccounts,false +17735,7933eafe-c4de-41e4-9d4b-bcabcea3fce0,LIST_TRANSACTIONS,hbciListTransactions,false +17736,7933eafe-c4de-41e4-9d4b-bcabcea3fce0,AUTHORIZATION,,false +17737,7933eafe-c4de-41e4-9d4b-bcabcea3fce0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17738,7933eafe-c4de-41e4-9d4b-bcabcea3fce0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17739,7933eafe-c4de-41e4-9d4b-bcabcea3fce0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17740,4df7495b-eebc-4eed-8c41-b2d114457220,LIST_ACCOUNTS,xs2aListAccounts,true -17741,4df7495b-eebc-4eed-8c41-b2d114457220,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17741,4df7495b-eebc-4eed-8c41-b2d114457220,LIST_TRANSACTIONS,xs2aListTransactions,true 17742,4df7495b-eebc-4eed-8c41-b2d114457220,AUTHORIZATION,,true 17743,4df7495b-eebc-4eed-8c41-b2d114457220,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17744,4df7495b-eebc-4eed-8c41-b2d114457220,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17745,4df7495b-eebc-4eed-8c41-b2d114457220,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17746,c033ca45-2df4-4b46-b7b4-ae6b94f2d8fb,LIST_ACCOUNTS,hbciListAccounts,false -17747,c033ca45-2df4-4b46-b7b4-ae6b94f2d8fb,LIST_TRANSACTIONS,hbciListTransactions,false -17748,c033ca45-2df4-4b46-b7b4-ae6b94f2d8fb,AUTHORIZATION,,false -17749,c033ca45-2df4-4b46-b7b4-ae6b94f2d8fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17750,c033ca45-2df4-4b46-b7b4-ae6b94f2d8fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17751,c033ca45-2df4-4b46-b7b4-ae6b94f2d8fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17746,f35de8f5-7a4f-4bc6-bed2-518807aade26,LIST_ACCOUNTS,hbciListAccounts,false +17747,f35de8f5-7a4f-4bc6-bed2-518807aade26,LIST_TRANSACTIONS,hbciListTransactions,false +17748,f35de8f5-7a4f-4bc6-bed2-518807aade26,AUTHORIZATION,,false +17749,f35de8f5-7a4f-4bc6-bed2-518807aade26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17750,f35de8f5-7a4f-4bc6-bed2-518807aade26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17751,f35de8f5-7a4f-4bc6-bed2-518807aade26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17752,3338d4ae-2eee-4ac3-b127-e43d2aa161a6,LIST_ACCOUNTS,xs2aListAccounts,true -17753,3338d4ae-2eee-4ac3-b127-e43d2aa161a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17753,3338d4ae-2eee-4ac3-b127-e43d2aa161a6,LIST_TRANSACTIONS,xs2aListTransactions,true 17754,3338d4ae-2eee-4ac3-b127-e43d2aa161a6,AUTHORIZATION,,true 17755,3338d4ae-2eee-4ac3-b127-e43d2aa161a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17756,3338d4ae-2eee-4ac3-b127-e43d2aa161a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17757,3338d4ae-2eee-4ac3-b127-e43d2aa161a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17758,3e5f5dbf-6180-4418-9d2a-86f9dab63ce2,LIST_ACCOUNTS,hbciListAccounts,false -17759,3e5f5dbf-6180-4418-9d2a-86f9dab63ce2,LIST_TRANSACTIONS,hbciListTransactions,false -17760,3e5f5dbf-6180-4418-9d2a-86f9dab63ce2,AUTHORIZATION,,false -17761,3e5f5dbf-6180-4418-9d2a-86f9dab63ce2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17762,3e5f5dbf-6180-4418-9d2a-86f9dab63ce2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17763,3e5f5dbf-6180-4418-9d2a-86f9dab63ce2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17758,e2bca34a-2bfd-4767-a04b-9ddc3cdaf0fb,LIST_ACCOUNTS,hbciListAccounts,false +17759,e2bca34a-2bfd-4767-a04b-9ddc3cdaf0fb,LIST_TRANSACTIONS,hbciListTransactions,false +17760,e2bca34a-2bfd-4767-a04b-9ddc3cdaf0fb,AUTHORIZATION,,false +17761,e2bca34a-2bfd-4767-a04b-9ddc3cdaf0fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17762,e2bca34a-2bfd-4767-a04b-9ddc3cdaf0fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17763,e2bca34a-2bfd-4767-a04b-9ddc3cdaf0fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17764,71ce735e-4584-4ad7-b305-b103d13164e5,LIST_ACCOUNTS,xs2aListAccounts,true -17765,71ce735e-4584-4ad7-b305-b103d13164e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17765,71ce735e-4584-4ad7-b305-b103d13164e5,LIST_TRANSACTIONS,xs2aListTransactions,true 17766,71ce735e-4584-4ad7-b305-b103d13164e5,AUTHORIZATION,,true 17767,71ce735e-4584-4ad7-b305-b103d13164e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17768,71ce735e-4584-4ad7-b305-b103d13164e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17769,71ce735e-4584-4ad7-b305-b103d13164e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17770,78d0a245-6c21-41e3-8f59-840041efd95b,LIST_ACCOUNTS,hbciListAccounts,false -17771,78d0a245-6c21-41e3-8f59-840041efd95b,LIST_TRANSACTIONS,hbciListTransactions,false -17772,78d0a245-6c21-41e3-8f59-840041efd95b,AUTHORIZATION,,false -17773,78d0a245-6c21-41e3-8f59-840041efd95b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17774,78d0a245-6c21-41e3-8f59-840041efd95b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17775,78d0a245-6c21-41e3-8f59-840041efd95b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17770,d20487c2-5d14-400c-9ad7-ddcc7e242b08,LIST_ACCOUNTS,hbciListAccounts,false +17771,d20487c2-5d14-400c-9ad7-ddcc7e242b08,LIST_TRANSACTIONS,hbciListTransactions,false +17772,d20487c2-5d14-400c-9ad7-ddcc7e242b08,AUTHORIZATION,,false +17773,d20487c2-5d14-400c-9ad7-ddcc7e242b08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17774,d20487c2-5d14-400c-9ad7-ddcc7e242b08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17775,d20487c2-5d14-400c-9ad7-ddcc7e242b08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17776,8ed1007a-9954-4391-8add-fbdf19f627e1,LIST_ACCOUNTS,xs2aListAccounts,true -17777,8ed1007a-9954-4391-8add-fbdf19f627e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17777,8ed1007a-9954-4391-8add-fbdf19f627e1,LIST_TRANSACTIONS,xs2aListTransactions,true 17778,8ed1007a-9954-4391-8add-fbdf19f627e1,AUTHORIZATION,,true 17779,8ed1007a-9954-4391-8add-fbdf19f627e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17780,8ed1007a-9954-4391-8add-fbdf19f627e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17781,8ed1007a-9954-4391-8add-fbdf19f627e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17782,aee380d4-9d44-454a-afd5-939c0ff78ee3,LIST_ACCOUNTS,hbciListAccounts,false -17783,aee380d4-9d44-454a-afd5-939c0ff78ee3,LIST_TRANSACTIONS,hbciListTransactions,false -17784,aee380d4-9d44-454a-afd5-939c0ff78ee3,AUTHORIZATION,,false -17785,aee380d4-9d44-454a-afd5-939c0ff78ee3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17786,aee380d4-9d44-454a-afd5-939c0ff78ee3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17787,aee380d4-9d44-454a-afd5-939c0ff78ee3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17782,a3f990d9-238b-4735-aac3-88e5c9c1ebe0,LIST_ACCOUNTS,hbciListAccounts,false +17783,a3f990d9-238b-4735-aac3-88e5c9c1ebe0,LIST_TRANSACTIONS,hbciListTransactions,false +17784,a3f990d9-238b-4735-aac3-88e5c9c1ebe0,AUTHORIZATION,,false +17785,a3f990d9-238b-4735-aac3-88e5c9c1ebe0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17786,a3f990d9-238b-4735-aac3-88e5c9c1ebe0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17787,a3f990d9-238b-4735-aac3-88e5c9c1ebe0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17788,b14692ec-7205-4d7e-bfa2-87c6256894a0,LIST_ACCOUNTS,xs2aListAccounts,true -17789,b14692ec-7205-4d7e-bfa2-87c6256894a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17789,b14692ec-7205-4d7e-bfa2-87c6256894a0,LIST_TRANSACTIONS,xs2aListTransactions,true 17790,b14692ec-7205-4d7e-bfa2-87c6256894a0,AUTHORIZATION,,true 17791,b14692ec-7205-4d7e-bfa2-87c6256894a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17792,b14692ec-7205-4d7e-bfa2-87c6256894a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17793,b14692ec-7205-4d7e-bfa2-87c6256894a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17794,337ac7a0-77d7-4a7a-b498-9e1cbefc9fd3,LIST_ACCOUNTS,hbciListAccounts,false -17795,337ac7a0-77d7-4a7a-b498-9e1cbefc9fd3,LIST_TRANSACTIONS,hbciListTransactions,false -17796,337ac7a0-77d7-4a7a-b498-9e1cbefc9fd3,AUTHORIZATION,,false -17797,337ac7a0-77d7-4a7a-b498-9e1cbefc9fd3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17798,337ac7a0-77d7-4a7a-b498-9e1cbefc9fd3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17799,337ac7a0-77d7-4a7a-b498-9e1cbefc9fd3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17794,72a204d5-86cb-4c53-a677-715472759614,LIST_ACCOUNTS,hbciListAccounts,false +17795,72a204d5-86cb-4c53-a677-715472759614,LIST_TRANSACTIONS,hbciListTransactions,false +17796,72a204d5-86cb-4c53-a677-715472759614,AUTHORIZATION,,false +17797,72a204d5-86cb-4c53-a677-715472759614,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17798,72a204d5-86cb-4c53-a677-715472759614,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17799,72a204d5-86cb-4c53-a677-715472759614,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17800,9d78bcc0-fcb0-4d79-ae48-aca7fcfd4261,LIST_ACCOUNTS,xs2aListAccounts,true -17801,9d78bcc0-fcb0-4d79-ae48-aca7fcfd4261,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17801,9d78bcc0-fcb0-4d79-ae48-aca7fcfd4261,LIST_TRANSACTIONS,xs2aListTransactions,true 17802,9d78bcc0-fcb0-4d79-ae48-aca7fcfd4261,AUTHORIZATION,,true 17803,9d78bcc0-fcb0-4d79-ae48-aca7fcfd4261,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17804,9d78bcc0-fcb0-4d79-ae48-aca7fcfd4261,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17805,9d78bcc0-fcb0-4d79-ae48-aca7fcfd4261,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17806,34e7af96-823d-455d-9d6e-d47c03850abd,LIST_ACCOUNTS,hbciListAccounts,false -17807,34e7af96-823d-455d-9d6e-d47c03850abd,LIST_TRANSACTIONS,hbciListTransactions,false -17808,34e7af96-823d-455d-9d6e-d47c03850abd,AUTHORIZATION,,false -17809,34e7af96-823d-455d-9d6e-d47c03850abd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17810,34e7af96-823d-455d-9d6e-d47c03850abd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17811,34e7af96-823d-455d-9d6e-d47c03850abd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17806,235bb04a-98a6-433e-8ba0-1cb17690fb23,LIST_ACCOUNTS,hbciListAccounts,false +17807,235bb04a-98a6-433e-8ba0-1cb17690fb23,LIST_TRANSACTIONS,hbciListTransactions,false +17808,235bb04a-98a6-433e-8ba0-1cb17690fb23,AUTHORIZATION,,false +17809,235bb04a-98a6-433e-8ba0-1cb17690fb23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17810,235bb04a-98a6-433e-8ba0-1cb17690fb23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17811,235bb04a-98a6-433e-8ba0-1cb17690fb23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17812,91cd20b9-b030-4a0b-b3fc-08eec14fad54,LIST_ACCOUNTS,xs2aListAccounts,true -17813,91cd20b9-b030-4a0b-b3fc-08eec14fad54,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17813,91cd20b9-b030-4a0b-b3fc-08eec14fad54,LIST_TRANSACTIONS,xs2aListTransactions,true 17814,91cd20b9-b030-4a0b-b3fc-08eec14fad54,AUTHORIZATION,,true 17815,91cd20b9-b030-4a0b-b3fc-08eec14fad54,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17816,91cd20b9-b030-4a0b-b3fc-08eec14fad54,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17817,91cd20b9-b030-4a0b-b3fc-08eec14fad54,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17818,594cbc93-d387-4fd0-a59c-a92626d66e1c,LIST_ACCOUNTS,hbciListAccounts,false -17819,594cbc93-d387-4fd0-a59c-a92626d66e1c,LIST_TRANSACTIONS,hbciListTransactions,false -17820,594cbc93-d387-4fd0-a59c-a92626d66e1c,AUTHORIZATION,,false -17821,594cbc93-d387-4fd0-a59c-a92626d66e1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17822,594cbc93-d387-4fd0-a59c-a92626d66e1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17823,594cbc93-d387-4fd0-a59c-a92626d66e1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17818,9df30cf0-b652-4b74-b775-f214f3987178,LIST_ACCOUNTS,hbciListAccounts,false +17819,9df30cf0-b652-4b74-b775-f214f3987178,LIST_TRANSACTIONS,hbciListTransactions,false +17820,9df30cf0-b652-4b74-b775-f214f3987178,AUTHORIZATION,,false +17821,9df30cf0-b652-4b74-b775-f214f3987178,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17822,9df30cf0-b652-4b74-b775-f214f3987178,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17823,9df30cf0-b652-4b74-b775-f214f3987178,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17824,7756141a-490b-4b8e-b348-db2ba8427773,LIST_ACCOUNTS,xs2aListAccounts,true -17825,7756141a-490b-4b8e-b348-db2ba8427773,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17825,7756141a-490b-4b8e-b348-db2ba8427773,LIST_TRANSACTIONS,xs2aListTransactions,true 17826,7756141a-490b-4b8e-b348-db2ba8427773,AUTHORIZATION,,true 17827,7756141a-490b-4b8e-b348-db2ba8427773,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17828,7756141a-490b-4b8e-b348-db2ba8427773,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17829,7756141a-490b-4b8e-b348-db2ba8427773,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17830,77f9340f-5bd1-4255-bfa3-9f738d1d2674,LIST_ACCOUNTS,hbciListAccounts,false -17831,77f9340f-5bd1-4255-bfa3-9f738d1d2674,LIST_TRANSACTIONS,hbciListTransactions,false -17832,77f9340f-5bd1-4255-bfa3-9f738d1d2674,AUTHORIZATION,,false -17833,77f9340f-5bd1-4255-bfa3-9f738d1d2674,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17834,77f9340f-5bd1-4255-bfa3-9f738d1d2674,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17835,77f9340f-5bd1-4255-bfa3-9f738d1d2674,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17830,3c98e0d0-54b7-42fe-9deb-8186f9974d65,LIST_ACCOUNTS,hbciListAccounts,false +17831,3c98e0d0-54b7-42fe-9deb-8186f9974d65,LIST_TRANSACTIONS,hbciListTransactions,false +17832,3c98e0d0-54b7-42fe-9deb-8186f9974d65,AUTHORIZATION,,false +17833,3c98e0d0-54b7-42fe-9deb-8186f9974d65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17834,3c98e0d0-54b7-42fe-9deb-8186f9974d65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17835,3c98e0d0-54b7-42fe-9deb-8186f9974d65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17836,8e630139-b716-4786-a804-0073da39d74a,LIST_ACCOUNTS,xs2aListAccounts,true -17837,8e630139-b716-4786-a804-0073da39d74a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17837,8e630139-b716-4786-a804-0073da39d74a,LIST_TRANSACTIONS,xs2aListTransactions,true 17838,8e630139-b716-4786-a804-0073da39d74a,AUTHORIZATION,,true 17839,8e630139-b716-4786-a804-0073da39d74a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17840,8e630139-b716-4786-a804-0073da39d74a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17841,8e630139-b716-4786-a804-0073da39d74a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17842,b883d0b0-1f53-42e5-808f-7f7ec9fc6b31,LIST_ACCOUNTS,hbciListAccounts,false -17843,b883d0b0-1f53-42e5-808f-7f7ec9fc6b31,LIST_TRANSACTIONS,hbciListTransactions,false -17844,b883d0b0-1f53-42e5-808f-7f7ec9fc6b31,AUTHORIZATION,,false -17845,b883d0b0-1f53-42e5-808f-7f7ec9fc6b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17846,b883d0b0-1f53-42e5-808f-7f7ec9fc6b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17847,b883d0b0-1f53-42e5-808f-7f7ec9fc6b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17842,072631ef-6225-4b59-a822-eaa533204103,LIST_ACCOUNTS,hbciListAccounts,false +17843,072631ef-6225-4b59-a822-eaa533204103,LIST_TRANSACTIONS,hbciListTransactions,false +17844,072631ef-6225-4b59-a822-eaa533204103,AUTHORIZATION,,false +17845,072631ef-6225-4b59-a822-eaa533204103,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17846,072631ef-6225-4b59-a822-eaa533204103,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17847,072631ef-6225-4b59-a822-eaa533204103,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17848,01d8c4f7-b6fb-431e-b2e1-da8ca112648a,LIST_ACCOUNTS,xs2aListAccounts,true -17849,01d8c4f7-b6fb-431e-b2e1-da8ca112648a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17849,01d8c4f7-b6fb-431e-b2e1-da8ca112648a,LIST_TRANSACTIONS,xs2aListTransactions,true 17850,01d8c4f7-b6fb-431e-b2e1-da8ca112648a,AUTHORIZATION,,true 17851,01d8c4f7-b6fb-431e-b2e1-da8ca112648a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17852,01d8c4f7-b6fb-431e-b2e1-da8ca112648a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17853,01d8c4f7-b6fb-431e-b2e1-da8ca112648a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17854,5b85f2cd-3c0d-4082-b736-4841d0bb72b8,LIST_ACCOUNTS,hbciListAccounts,false -17855,5b85f2cd-3c0d-4082-b736-4841d0bb72b8,LIST_TRANSACTIONS,hbciListTransactions,false -17856,5b85f2cd-3c0d-4082-b736-4841d0bb72b8,AUTHORIZATION,,false -17857,5b85f2cd-3c0d-4082-b736-4841d0bb72b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17858,5b85f2cd-3c0d-4082-b736-4841d0bb72b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17859,5b85f2cd-3c0d-4082-b736-4841d0bb72b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17854,5c863e33-7fd5-4467-b420-3a128be20650,LIST_ACCOUNTS,hbciListAccounts,false +17855,5c863e33-7fd5-4467-b420-3a128be20650,LIST_TRANSACTIONS,hbciListTransactions,false +17856,5c863e33-7fd5-4467-b420-3a128be20650,AUTHORIZATION,,false +17857,5c863e33-7fd5-4467-b420-3a128be20650,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17858,5c863e33-7fd5-4467-b420-3a128be20650,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17859,5c863e33-7fd5-4467-b420-3a128be20650,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17860,ab8acbce-290e-482e-940f-73b3ff802e9f,LIST_ACCOUNTS,xs2aListAccounts,true -17861,ab8acbce-290e-482e-940f-73b3ff802e9f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17861,ab8acbce-290e-482e-940f-73b3ff802e9f,LIST_TRANSACTIONS,xs2aListTransactions,true 17862,ab8acbce-290e-482e-940f-73b3ff802e9f,AUTHORIZATION,,true 17863,ab8acbce-290e-482e-940f-73b3ff802e9f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17864,ab8acbce-290e-482e-940f-73b3ff802e9f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17865,ab8acbce-290e-482e-940f-73b3ff802e9f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17866,f71dfbfc-ab7d-483d-86dc-4c187eba3f24,LIST_ACCOUNTS,hbciListAccounts,false -17867,f71dfbfc-ab7d-483d-86dc-4c187eba3f24,LIST_TRANSACTIONS,hbciListTransactions,false -17868,f71dfbfc-ab7d-483d-86dc-4c187eba3f24,AUTHORIZATION,,false -17869,f71dfbfc-ab7d-483d-86dc-4c187eba3f24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17870,f71dfbfc-ab7d-483d-86dc-4c187eba3f24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17871,f71dfbfc-ab7d-483d-86dc-4c187eba3f24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17866,343922ef-4cc4-4a6d-b20f-2215057674f6,LIST_ACCOUNTS,hbciListAccounts,false +17867,343922ef-4cc4-4a6d-b20f-2215057674f6,LIST_TRANSACTIONS,hbciListTransactions,false +17868,343922ef-4cc4-4a6d-b20f-2215057674f6,AUTHORIZATION,,false +17869,343922ef-4cc4-4a6d-b20f-2215057674f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17870,343922ef-4cc4-4a6d-b20f-2215057674f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17871,343922ef-4cc4-4a6d-b20f-2215057674f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17872,b41ca02c-cf42-4b0a-b815-722150ece408,LIST_ACCOUNTS,xs2aListAccounts,true -17873,b41ca02c-cf42-4b0a-b815-722150ece408,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17873,b41ca02c-cf42-4b0a-b815-722150ece408,LIST_TRANSACTIONS,xs2aListTransactions,true 17874,b41ca02c-cf42-4b0a-b815-722150ece408,AUTHORIZATION,,true 17875,b41ca02c-cf42-4b0a-b815-722150ece408,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17876,b41ca02c-cf42-4b0a-b815-722150ece408,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17877,b41ca02c-cf42-4b0a-b815-722150ece408,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17878,a9f6c234-8150-44a8-9a51-e2eab5a2e2fc,LIST_ACCOUNTS,hbciListAccounts,false -17879,a9f6c234-8150-44a8-9a51-e2eab5a2e2fc,LIST_TRANSACTIONS,hbciListTransactions,false -17880,a9f6c234-8150-44a8-9a51-e2eab5a2e2fc,AUTHORIZATION,,false -17881,a9f6c234-8150-44a8-9a51-e2eab5a2e2fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17882,a9f6c234-8150-44a8-9a51-e2eab5a2e2fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17883,a9f6c234-8150-44a8-9a51-e2eab5a2e2fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17878,0c87cd79-8b0c-4f4d-885f-6cfc20a5680b,LIST_ACCOUNTS,hbciListAccounts,false +17879,0c87cd79-8b0c-4f4d-885f-6cfc20a5680b,LIST_TRANSACTIONS,hbciListTransactions,false +17880,0c87cd79-8b0c-4f4d-885f-6cfc20a5680b,AUTHORIZATION,,false +17881,0c87cd79-8b0c-4f4d-885f-6cfc20a5680b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17882,0c87cd79-8b0c-4f4d-885f-6cfc20a5680b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17883,0c87cd79-8b0c-4f4d-885f-6cfc20a5680b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17884,ddca4364-dfc3-468b-9891-29a5e3100c92,LIST_ACCOUNTS,xs2aListAccounts,true -17885,ddca4364-dfc3-468b-9891-29a5e3100c92,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17885,ddca4364-dfc3-468b-9891-29a5e3100c92,LIST_TRANSACTIONS,xs2aListTransactions,true 17886,ddca4364-dfc3-468b-9891-29a5e3100c92,AUTHORIZATION,,true 17887,ddca4364-dfc3-468b-9891-29a5e3100c92,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17888,ddca4364-dfc3-468b-9891-29a5e3100c92,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17889,ddca4364-dfc3-468b-9891-29a5e3100c92,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17890,40b2128c-ace3-491d-a34f-f9705530fe09,LIST_ACCOUNTS,hbciListAccounts,false -17891,40b2128c-ace3-491d-a34f-f9705530fe09,LIST_TRANSACTIONS,hbciListTransactions,false -17892,40b2128c-ace3-491d-a34f-f9705530fe09,AUTHORIZATION,,false -17893,40b2128c-ace3-491d-a34f-f9705530fe09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17894,40b2128c-ace3-491d-a34f-f9705530fe09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17895,40b2128c-ace3-491d-a34f-f9705530fe09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17890,ff773184-e56c-4227-ad9d-a88838423f64,LIST_ACCOUNTS,hbciListAccounts,false +17891,ff773184-e56c-4227-ad9d-a88838423f64,LIST_TRANSACTIONS,hbciListTransactions,false +17892,ff773184-e56c-4227-ad9d-a88838423f64,AUTHORIZATION,,false +17893,ff773184-e56c-4227-ad9d-a88838423f64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17894,ff773184-e56c-4227-ad9d-a88838423f64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17895,ff773184-e56c-4227-ad9d-a88838423f64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17896,8df28cea-326d-4da7-bc49-1dd71de7841f,LIST_ACCOUNTS,xs2aListAccounts,true -17897,8df28cea-326d-4da7-bc49-1dd71de7841f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17897,8df28cea-326d-4da7-bc49-1dd71de7841f,LIST_TRANSACTIONS,xs2aListTransactions,true 17898,8df28cea-326d-4da7-bc49-1dd71de7841f,AUTHORIZATION,,true 17899,8df28cea-326d-4da7-bc49-1dd71de7841f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17900,8df28cea-326d-4da7-bc49-1dd71de7841f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17901,8df28cea-326d-4da7-bc49-1dd71de7841f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17902,b936bbc5-3dc2-46b8-bd19-e81e96742e10,LIST_ACCOUNTS,hbciListAccounts,false -17903,b936bbc5-3dc2-46b8-bd19-e81e96742e10,LIST_TRANSACTIONS,hbciListTransactions,false -17904,b936bbc5-3dc2-46b8-bd19-e81e96742e10,AUTHORIZATION,,false -17905,b936bbc5-3dc2-46b8-bd19-e81e96742e10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17906,b936bbc5-3dc2-46b8-bd19-e81e96742e10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17907,b936bbc5-3dc2-46b8-bd19-e81e96742e10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17902,c56f5753-570b-494a-9cb2-777478f1022d,LIST_ACCOUNTS,hbciListAccounts,false +17903,c56f5753-570b-494a-9cb2-777478f1022d,LIST_TRANSACTIONS,hbciListTransactions,false +17904,c56f5753-570b-494a-9cb2-777478f1022d,AUTHORIZATION,,false +17905,c56f5753-570b-494a-9cb2-777478f1022d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17906,c56f5753-570b-494a-9cb2-777478f1022d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17907,c56f5753-570b-494a-9cb2-777478f1022d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17908,c23f22ce-0b48-432d-a4e8-a37026359262,LIST_ACCOUNTS,xs2aListAccounts,true -17909,c23f22ce-0b48-432d-a4e8-a37026359262,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17909,c23f22ce-0b48-432d-a4e8-a37026359262,LIST_TRANSACTIONS,xs2aListTransactions,true 17910,c23f22ce-0b48-432d-a4e8-a37026359262,AUTHORIZATION,,true 17911,c23f22ce-0b48-432d-a4e8-a37026359262,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17912,c23f22ce-0b48-432d-a4e8-a37026359262,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17913,c23f22ce-0b48-432d-a4e8-a37026359262,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17914,10ea206d-8a40-4fb2-b3a8-9a85d361ac18,LIST_ACCOUNTS,hbciListAccounts,false -17915,10ea206d-8a40-4fb2-b3a8-9a85d361ac18,LIST_TRANSACTIONS,hbciListTransactions,false -17916,10ea206d-8a40-4fb2-b3a8-9a85d361ac18,AUTHORIZATION,,false -17917,10ea206d-8a40-4fb2-b3a8-9a85d361ac18,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17918,10ea206d-8a40-4fb2-b3a8-9a85d361ac18,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17919,10ea206d-8a40-4fb2-b3a8-9a85d361ac18,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17914,b75d7daa-e428-4ece-9180-02546abf1589,LIST_ACCOUNTS,hbciListAccounts,false +17915,b75d7daa-e428-4ece-9180-02546abf1589,LIST_TRANSACTIONS,hbciListTransactions,false +17916,b75d7daa-e428-4ece-9180-02546abf1589,AUTHORIZATION,,false +17917,b75d7daa-e428-4ece-9180-02546abf1589,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17918,b75d7daa-e428-4ece-9180-02546abf1589,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17919,b75d7daa-e428-4ece-9180-02546abf1589,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17920,39c562f5-08cf-4ab6-b8dd-6210b86f4726,LIST_ACCOUNTS,xs2aListAccounts,true -17921,39c562f5-08cf-4ab6-b8dd-6210b86f4726,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17921,39c562f5-08cf-4ab6-b8dd-6210b86f4726,LIST_TRANSACTIONS,xs2aListTransactions,true 17922,39c562f5-08cf-4ab6-b8dd-6210b86f4726,AUTHORIZATION,,true 17923,39c562f5-08cf-4ab6-b8dd-6210b86f4726,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17924,39c562f5-08cf-4ab6-b8dd-6210b86f4726,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17925,39c562f5-08cf-4ab6-b8dd-6210b86f4726,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17926,5dfcf506-99d6-46bb-8ece-ead2285169a9,LIST_ACCOUNTS,hbciListAccounts,false -17927,5dfcf506-99d6-46bb-8ece-ead2285169a9,LIST_TRANSACTIONS,hbciListTransactions,false -17928,5dfcf506-99d6-46bb-8ece-ead2285169a9,AUTHORIZATION,,false -17929,5dfcf506-99d6-46bb-8ece-ead2285169a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17930,5dfcf506-99d6-46bb-8ece-ead2285169a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17931,5dfcf506-99d6-46bb-8ece-ead2285169a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17926,e1d8095c-1695-418c-bb76-f4bed1ebfa22,LIST_ACCOUNTS,hbciListAccounts,false +17927,e1d8095c-1695-418c-bb76-f4bed1ebfa22,LIST_TRANSACTIONS,hbciListTransactions,false +17928,e1d8095c-1695-418c-bb76-f4bed1ebfa22,AUTHORIZATION,,false +17929,e1d8095c-1695-418c-bb76-f4bed1ebfa22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17930,e1d8095c-1695-418c-bb76-f4bed1ebfa22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17931,e1d8095c-1695-418c-bb76-f4bed1ebfa22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17932,8060c990-046a-40f3-af92-2cbdd2b4d293,LIST_ACCOUNTS,xs2aListAccounts,true -17933,8060c990-046a-40f3-af92-2cbdd2b4d293,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17933,8060c990-046a-40f3-af92-2cbdd2b4d293,LIST_TRANSACTIONS,xs2aListTransactions,true 17934,8060c990-046a-40f3-af92-2cbdd2b4d293,AUTHORIZATION,,true 17935,8060c990-046a-40f3-af92-2cbdd2b4d293,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17936,8060c990-046a-40f3-af92-2cbdd2b4d293,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17937,8060c990-046a-40f3-af92-2cbdd2b4d293,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17938,3f45ac05-23ae-4500-8479-b330d83fa16b,LIST_ACCOUNTS,hbciListAccounts,false -17939,3f45ac05-23ae-4500-8479-b330d83fa16b,LIST_TRANSACTIONS,hbciListTransactions,false -17940,3f45ac05-23ae-4500-8479-b330d83fa16b,AUTHORIZATION,,false -17941,3f45ac05-23ae-4500-8479-b330d83fa16b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17942,3f45ac05-23ae-4500-8479-b330d83fa16b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17943,3f45ac05-23ae-4500-8479-b330d83fa16b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17938,12997ff3-b96e-4e70-874b-aaaa5e7749b0,LIST_ACCOUNTS,hbciListAccounts,false +17939,12997ff3-b96e-4e70-874b-aaaa5e7749b0,LIST_TRANSACTIONS,hbciListTransactions,false +17940,12997ff3-b96e-4e70-874b-aaaa5e7749b0,AUTHORIZATION,,false +17941,12997ff3-b96e-4e70-874b-aaaa5e7749b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17942,12997ff3-b96e-4e70-874b-aaaa5e7749b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17943,12997ff3-b96e-4e70-874b-aaaa5e7749b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17944,6901b125-7141-4b5d-aaf9-cd34a59523e8,LIST_ACCOUNTS,xs2aListAccounts,true -17945,6901b125-7141-4b5d-aaf9-cd34a59523e8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17945,6901b125-7141-4b5d-aaf9-cd34a59523e8,LIST_TRANSACTIONS,xs2aListTransactions,true 17946,6901b125-7141-4b5d-aaf9-cd34a59523e8,AUTHORIZATION,,true 17947,6901b125-7141-4b5d-aaf9-cd34a59523e8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17948,6901b125-7141-4b5d-aaf9-cd34a59523e8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17949,6901b125-7141-4b5d-aaf9-cd34a59523e8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17950,a18491be-dccc-497b-9818-3779187f8061,LIST_ACCOUNTS,hbciListAccounts,false -17951,a18491be-dccc-497b-9818-3779187f8061,LIST_TRANSACTIONS,hbciListTransactions,false -17952,a18491be-dccc-497b-9818-3779187f8061,AUTHORIZATION,,false -17953,a18491be-dccc-497b-9818-3779187f8061,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17954,a18491be-dccc-497b-9818-3779187f8061,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17955,a18491be-dccc-497b-9818-3779187f8061,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17950,d4775c16-7de4-44fc-b55c-e92b833cbfc2,LIST_ACCOUNTS,hbciListAccounts,false +17951,d4775c16-7de4-44fc-b55c-e92b833cbfc2,LIST_TRANSACTIONS,hbciListTransactions,false +17952,d4775c16-7de4-44fc-b55c-e92b833cbfc2,AUTHORIZATION,,false +17953,d4775c16-7de4-44fc-b55c-e92b833cbfc2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17954,d4775c16-7de4-44fc-b55c-e92b833cbfc2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17955,d4775c16-7de4-44fc-b55c-e92b833cbfc2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17956,33b13fbb-84cc-4cac-95d1-868052774449,LIST_ACCOUNTS,xs2aListAccounts,true -17957,33b13fbb-84cc-4cac-95d1-868052774449,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17957,33b13fbb-84cc-4cac-95d1-868052774449,LIST_TRANSACTIONS,xs2aListTransactions,true 17958,33b13fbb-84cc-4cac-95d1-868052774449,AUTHORIZATION,,true 17959,33b13fbb-84cc-4cac-95d1-868052774449,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17960,33b13fbb-84cc-4cac-95d1-868052774449,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17961,33b13fbb-84cc-4cac-95d1-868052774449,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17962,5c869ca0-4135-403f-b18e-512bb5656f3e,LIST_ACCOUNTS,hbciListAccounts,false -17963,5c869ca0-4135-403f-b18e-512bb5656f3e,LIST_TRANSACTIONS,hbciListTransactions,false -17964,5c869ca0-4135-403f-b18e-512bb5656f3e,AUTHORIZATION,,false -17965,5c869ca0-4135-403f-b18e-512bb5656f3e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17966,5c869ca0-4135-403f-b18e-512bb5656f3e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17967,5c869ca0-4135-403f-b18e-512bb5656f3e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17962,44f83746-f9f5-40b1-bccc-2b95606cd00e,LIST_ACCOUNTS,hbciListAccounts,false +17963,44f83746-f9f5-40b1-bccc-2b95606cd00e,LIST_TRANSACTIONS,hbciListTransactions,false +17964,44f83746-f9f5-40b1-bccc-2b95606cd00e,AUTHORIZATION,,false +17965,44f83746-f9f5-40b1-bccc-2b95606cd00e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17966,44f83746-f9f5-40b1-bccc-2b95606cd00e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17967,44f83746-f9f5-40b1-bccc-2b95606cd00e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17968,7580ace8-6a87-4ecd-84bc-3fdace96be04,LIST_ACCOUNTS,xs2aListAccounts,true -17969,7580ace8-6a87-4ecd-84bc-3fdace96be04,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17969,7580ace8-6a87-4ecd-84bc-3fdace96be04,LIST_TRANSACTIONS,xs2aListTransactions,true 17970,7580ace8-6a87-4ecd-84bc-3fdace96be04,AUTHORIZATION,,true 17971,7580ace8-6a87-4ecd-84bc-3fdace96be04,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17972,7580ace8-6a87-4ecd-84bc-3fdace96be04,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17973,7580ace8-6a87-4ecd-84bc-3fdace96be04,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17974,b7df5951-0ffd-445d-866d-24c9ace7702a,LIST_ACCOUNTS,hbciListAccounts,false -17975,b7df5951-0ffd-445d-866d-24c9ace7702a,LIST_TRANSACTIONS,hbciListTransactions,false -17976,b7df5951-0ffd-445d-866d-24c9ace7702a,AUTHORIZATION,,false -17977,b7df5951-0ffd-445d-866d-24c9ace7702a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17978,b7df5951-0ffd-445d-866d-24c9ace7702a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17979,b7df5951-0ffd-445d-866d-24c9ace7702a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17974,70748f80-6357-4244-a0a5-6915b9381b72,LIST_ACCOUNTS,hbciListAccounts,false +17975,70748f80-6357-4244-a0a5-6915b9381b72,LIST_TRANSACTIONS,hbciListTransactions,false +17976,70748f80-6357-4244-a0a5-6915b9381b72,AUTHORIZATION,,false +17977,70748f80-6357-4244-a0a5-6915b9381b72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17978,70748f80-6357-4244-a0a5-6915b9381b72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17979,70748f80-6357-4244-a0a5-6915b9381b72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17980,777916ce-8b57-4998-a331-7cc03bc7cdda,LIST_ACCOUNTS,xs2aListAccounts,true -17981,777916ce-8b57-4998-a331-7cc03bc7cdda,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17981,777916ce-8b57-4998-a331-7cc03bc7cdda,LIST_TRANSACTIONS,xs2aListTransactions,true 17982,777916ce-8b57-4998-a331-7cc03bc7cdda,AUTHORIZATION,,true 17983,777916ce-8b57-4998-a331-7cc03bc7cdda,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17984,777916ce-8b57-4998-a331-7cc03bc7cdda,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17985,777916ce-8b57-4998-a331-7cc03bc7cdda,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17986,b651fde4-b02a-4072-bf82-ca04adfaa684,LIST_ACCOUNTS,hbciListAccounts,false -17987,b651fde4-b02a-4072-bf82-ca04adfaa684,LIST_TRANSACTIONS,hbciListTransactions,false -17988,b651fde4-b02a-4072-bf82-ca04adfaa684,AUTHORIZATION,,false -17989,b651fde4-b02a-4072-bf82-ca04adfaa684,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -17990,b651fde4-b02a-4072-bf82-ca04adfaa684,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -17991,b651fde4-b02a-4072-bf82-ca04adfaa684,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17986,bc3a7149-db0e-43e0-b74b-cd730761ef70,LIST_ACCOUNTS,hbciListAccounts,false +17987,bc3a7149-db0e-43e0-b74b-cd730761ef70,LIST_TRANSACTIONS,hbciListTransactions,false +17988,bc3a7149-db0e-43e0-b74b-cd730761ef70,AUTHORIZATION,,false +17989,bc3a7149-db0e-43e0-b74b-cd730761ef70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +17990,bc3a7149-db0e-43e0-b74b-cd730761ef70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +17991,bc3a7149-db0e-43e0-b74b-cd730761ef70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 17992,dd3e7087-358c-4414-8962-ba8082598ff7,LIST_ACCOUNTS,xs2aListAccounts,true -17993,dd3e7087-358c-4414-8962-ba8082598ff7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +17993,dd3e7087-358c-4414-8962-ba8082598ff7,LIST_TRANSACTIONS,xs2aListTransactions,true 17994,dd3e7087-358c-4414-8962-ba8082598ff7,AUTHORIZATION,,true 17995,dd3e7087-358c-4414-8962-ba8082598ff7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 17996,dd3e7087-358c-4414-8962-ba8082598ff7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 17997,dd3e7087-358c-4414-8962-ba8082598ff7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -17998,6927f2f2-4d68-49a3-9900-f3e1b5a9ddfb,LIST_ACCOUNTS,hbciListAccounts,false -17999,6927f2f2-4d68-49a3-9900-f3e1b5a9ddfb,LIST_TRANSACTIONS,hbciListTransactions,false -18000,6927f2f2-4d68-49a3-9900-f3e1b5a9ddfb,AUTHORIZATION,,false -18001,6927f2f2-4d68-49a3-9900-f3e1b5a9ddfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18002,6927f2f2-4d68-49a3-9900-f3e1b5a9ddfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18003,6927f2f2-4d68-49a3-9900-f3e1b5a9ddfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +17998,c0d75525-80f5-420f-9a41-3f239d80e3d2,LIST_ACCOUNTS,hbciListAccounts,false +17999,c0d75525-80f5-420f-9a41-3f239d80e3d2,LIST_TRANSACTIONS,hbciListTransactions,false +18000,c0d75525-80f5-420f-9a41-3f239d80e3d2,AUTHORIZATION,,false +18001,c0d75525-80f5-420f-9a41-3f239d80e3d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18002,c0d75525-80f5-420f-9a41-3f239d80e3d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18003,c0d75525-80f5-420f-9a41-3f239d80e3d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18004,7f7a743d-6ae1-45f7-ac67-954e0f61c3f7,LIST_ACCOUNTS,xs2aListAccounts,true -18005,7f7a743d-6ae1-45f7-ac67-954e0f61c3f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18005,7f7a743d-6ae1-45f7-ac67-954e0f61c3f7,LIST_TRANSACTIONS,xs2aListTransactions,true 18006,7f7a743d-6ae1-45f7-ac67-954e0f61c3f7,AUTHORIZATION,,true 18007,7f7a743d-6ae1-45f7-ac67-954e0f61c3f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18008,7f7a743d-6ae1-45f7-ac67-954e0f61c3f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18009,7f7a743d-6ae1-45f7-ac67-954e0f61c3f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18010,521f60aa-4f85-473b-965b-b7659b615267,LIST_ACCOUNTS,hbciListAccounts,false -18011,521f60aa-4f85-473b-965b-b7659b615267,LIST_TRANSACTIONS,hbciListTransactions,false -18012,521f60aa-4f85-473b-965b-b7659b615267,AUTHORIZATION,,false -18013,521f60aa-4f85-473b-965b-b7659b615267,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18014,521f60aa-4f85-473b-965b-b7659b615267,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18015,521f60aa-4f85-473b-965b-b7659b615267,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18010,898e2921-d2fc-4ed4-833c-c26c345daf4c,LIST_ACCOUNTS,hbciListAccounts,false +18011,898e2921-d2fc-4ed4-833c-c26c345daf4c,LIST_TRANSACTIONS,hbciListTransactions,false +18012,898e2921-d2fc-4ed4-833c-c26c345daf4c,AUTHORIZATION,,false +18013,898e2921-d2fc-4ed4-833c-c26c345daf4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18014,898e2921-d2fc-4ed4-833c-c26c345daf4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18015,898e2921-d2fc-4ed4-833c-c26c345daf4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18016,3bbee024-d7a9-4393-ba7a-7f526cf9579e,LIST_ACCOUNTS,xs2aListAccounts,true -18017,3bbee024-d7a9-4393-ba7a-7f526cf9579e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18017,3bbee024-d7a9-4393-ba7a-7f526cf9579e,LIST_TRANSACTIONS,xs2aListTransactions,true 18018,3bbee024-d7a9-4393-ba7a-7f526cf9579e,AUTHORIZATION,,true 18019,3bbee024-d7a9-4393-ba7a-7f526cf9579e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18020,3bbee024-d7a9-4393-ba7a-7f526cf9579e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18021,3bbee024-d7a9-4393-ba7a-7f526cf9579e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18022,e2dc94fa-5e1a-423a-a96b-7d9f72c710ba,LIST_ACCOUNTS,hbciListAccounts,false -18023,e2dc94fa-5e1a-423a-a96b-7d9f72c710ba,LIST_TRANSACTIONS,hbciListTransactions,false -18024,e2dc94fa-5e1a-423a-a96b-7d9f72c710ba,AUTHORIZATION,,false -18025,e2dc94fa-5e1a-423a-a96b-7d9f72c710ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18026,e2dc94fa-5e1a-423a-a96b-7d9f72c710ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18027,e2dc94fa-5e1a-423a-a96b-7d9f72c710ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18022,e62dd0f0-68df-4c24-a2fe-606432808aa6,LIST_ACCOUNTS,hbciListAccounts,false +18023,e62dd0f0-68df-4c24-a2fe-606432808aa6,LIST_TRANSACTIONS,hbciListTransactions,false +18024,e62dd0f0-68df-4c24-a2fe-606432808aa6,AUTHORIZATION,,false +18025,e62dd0f0-68df-4c24-a2fe-606432808aa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18026,e62dd0f0-68df-4c24-a2fe-606432808aa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18027,e62dd0f0-68df-4c24-a2fe-606432808aa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18028,26dc8b74-ad93-4de0-9066-6d2a93da29bd,LIST_ACCOUNTS,xs2aListAccounts,true -18029,26dc8b74-ad93-4de0-9066-6d2a93da29bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18029,26dc8b74-ad93-4de0-9066-6d2a93da29bd,LIST_TRANSACTIONS,xs2aListTransactions,true 18030,26dc8b74-ad93-4de0-9066-6d2a93da29bd,AUTHORIZATION,,true 18031,26dc8b74-ad93-4de0-9066-6d2a93da29bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18032,26dc8b74-ad93-4de0-9066-6d2a93da29bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18033,26dc8b74-ad93-4de0-9066-6d2a93da29bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18034,f264967e-7f56-4238-8256-c0ce53b894fb,LIST_ACCOUNTS,hbciListAccounts,false -18035,f264967e-7f56-4238-8256-c0ce53b894fb,LIST_TRANSACTIONS,hbciListTransactions,false -18036,f264967e-7f56-4238-8256-c0ce53b894fb,AUTHORIZATION,,false -18037,f264967e-7f56-4238-8256-c0ce53b894fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18038,f264967e-7f56-4238-8256-c0ce53b894fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18039,f264967e-7f56-4238-8256-c0ce53b894fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18034,481e2a42-3372-41ae-9153-a54424791150,LIST_ACCOUNTS,hbciListAccounts,false +18035,481e2a42-3372-41ae-9153-a54424791150,LIST_TRANSACTIONS,hbciListTransactions,false +18036,481e2a42-3372-41ae-9153-a54424791150,AUTHORIZATION,,false +18037,481e2a42-3372-41ae-9153-a54424791150,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18038,481e2a42-3372-41ae-9153-a54424791150,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18039,481e2a42-3372-41ae-9153-a54424791150,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18040,12993d28-4451-4e28-8e0b-8357833d5b1c,LIST_ACCOUNTS,xs2aListAccounts,true -18041,12993d28-4451-4e28-8e0b-8357833d5b1c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18041,12993d28-4451-4e28-8e0b-8357833d5b1c,LIST_TRANSACTIONS,xs2aListTransactions,true 18042,12993d28-4451-4e28-8e0b-8357833d5b1c,AUTHORIZATION,,true 18043,12993d28-4451-4e28-8e0b-8357833d5b1c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18044,12993d28-4451-4e28-8e0b-8357833d5b1c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18045,12993d28-4451-4e28-8e0b-8357833d5b1c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18046,d48a01b6-5074-4273-919e-aceeda07a2ad,LIST_ACCOUNTS,hbciListAccounts,false -18047,d48a01b6-5074-4273-919e-aceeda07a2ad,LIST_TRANSACTIONS,hbciListTransactions,false -18048,d48a01b6-5074-4273-919e-aceeda07a2ad,AUTHORIZATION,,false -18049,d48a01b6-5074-4273-919e-aceeda07a2ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18050,d48a01b6-5074-4273-919e-aceeda07a2ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18051,d48a01b6-5074-4273-919e-aceeda07a2ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18046,c1f90cda-aaf9-4786-9086-20708071adb2,LIST_ACCOUNTS,hbciListAccounts,false +18047,c1f90cda-aaf9-4786-9086-20708071adb2,LIST_TRANSACTIONS,hbciListTransactions,false +18048,c1f90cda-aaf9-4786-9086-20708071adb2,AUTHORIZATION,,false +18049,c1f90cda-aaf9-4786-9086-20708071adb2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18050,c1f90cda-aaf9-4786-9086-20708071adb2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18051,c1f90cda-aaf9-4786-9086-20708071adb2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18052,7739f90b-048e-40d3-9693-7704a34ff95f,LIST_ACCOUNTS,xs2aListAccounts,true -18053,7739f90b-048e-40d3-9693-7704a34ff95f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18053,7739f90b-048e-40d3-9693-7704a34ff95f,LIST_TRANSACTIONS,xs2aListTransactions,true 18054,7739f90b-048e-40d3-9693-7704a34ff95f,AUTHORIZATION,,true 18055,7739f90b-048e-40d3-9693-7704a34ff95f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18056,7739f90b-048e-40d3-9693-7704a34ff95f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18057,7739f90b-048e-40d3-9693-7704a34ff95f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18058,ea5e3bda-7c7c-498d-9df0-e82ef8ab9fae,LIST_ACCOUNTS,hbciListAccounts,false -18059,ea5e3bda-7c7c-498d-9df0-e82ef8ab9fae,LIST_TRANSACTIONS,hbciListTransactions,false -18060,ea5e3bda-7c7c-498d-9df0-e82ef8ab9fae,AUTHORIZATION,,false -18061,ea5e3bda-7c7c-498d-9df0-e82ef8ab9fae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18062,ea5e3bda-7c7c-498d-9df0-e82ef8ab9fae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18063,ea5e3bda-7c7c-498d-9df0-e82ef8ab9fae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18058,c33c4685-eb6f-4f90-94ab-ea5ebb8899f1,LIST_ACCOUNTS,hbciListAccounts,false +18059,c33c4685-eb6f-4f90-94ab-ea5ebb8899f1,LIST_TRANSACTIONS,hbciListTransactions,false +18060,c33c4685-eb6f-4f90-94ab-ea5ebb8899f1,AUTHORIZATION,,false +18061,c33c4685-eb6f-4f90-94ab-ea5ebb8899f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18062,c33c4685-eb6f-4f90-94ab-ea5ebb8899f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18063,c33c4685-eb6f-4f90-94ab-ea5ebb8899f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18064,2e5c3146-0bde-4172-a08b-752a8d40fec6,LIST_ACCOUNTS,xs2aListAccounts,true -18065,2e5c3146-0bde-4172-a08b-752a8d40fec6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18065,2e5c3146-0bde-4172-a08b-752a8d40fec6,LIST_TRANSACTIONS,xs2aListTransactions,true 18066,2e5c3146-0bde-4172-a08b-752a8d40fec6,AUTHORIZATION,,true 18067,2e5c3146-0bde-4172-a08b-752a8d40fec6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18068,2e5c3146-0bde-4172-a08b-752a8d40fec6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18069,2e5c3146-0bde-4172-a08b-752a8d40fec6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18070,d1296017-3343-4c97-b267-5db5b6b40567,LIST_ACCOUNTS,hbciListAccounts,false -18071,d1296017-3343-4c97-b267-5db5b6b40567,LIST_TRANSACTIONS,hbciListTransactions,false -18072,d1296017-3343-4c97-b267-5db5b6b40567,AUTHORIZATION,,false -18073,d1296017-3343-4c97-b267-5db5b6b40567,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18074,d1296017-3343-4c97-b267-5db5b6b40567,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18075,d1296017-3343-4c97-b267-5db5b6b40567,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18070,c0423011-c0a2-43de-b4a5-6dffcbcc318b,LIST_ACCOUNTS,hbciListAccounts,false +18071,c0423011-c0a2-43de-b4a5-6dffcbcc318b,LIST_TRANSACTIONS,hbciListTransactions,false +18072,c0423011-c0a2-43de-b4a5-6dffcbcc318b,AUTHORIZATION,,false +18073,c0423011-c0a2-43de-b4a5-6dffcbcc318b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18074,c0423011-c0a2-43de-b4a5-6dffcbcc318b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18075,c0423011-c0a2-43de-b4a5-6dffcbcc318b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18076,e8f6f4cf-a09f-48cc-8c97-c7a8fe43a1ac,LIST_ACCOUNTS,xs2aListAccounts,true -18077,e8f6f4cf-a09f-48cc-8c97-c7a8fe43a1ac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18077,e8f6f4cf-a09f-48cc-8c97-c7a8fe43a1ac,LIST_TRANSACTIONS,xs2aListTransactions,true 18078,e8f6f4cf-a09f-48cc-8c97-c7a8fe43a1ac,AUTHORIZATION,,true 18079,e8f6f4cf-a09f-48cc-8c97-c7a8fe43a1ac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18080,e8f6f4cf-a09f-48cc-8c97-c7a8fe43a1ac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18081,e8f6f4cf-a09f-48cc-8c97-c7a8fe43a1ac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18082,e2022ae4-dbbd-4032-9c9c-2b4e3b0f92c2,LIST_ACCOUNTS,hbciListAccounts,false -18083,e2022ae4-dbbd-4032-9c9c-2b4e3b0f92c2,LIST_TRANSACTIONS,hbciListTransactions,false -18084,e2022ae4-dbbd-4032-9c9c-2b4e3b0f92c2,AUTHORIZATION,,false -18085,e2022ae4-dbbd-4032-9c9c-2b4e3b0f92c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18086,e2022ae4-dbbd-4032-9c9c-2b4e3b0f92c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18087,e2022ae4-dbbd-4032-9c9c-2b4e3b0f92c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18082,aad85cb9-4599-4bec-ac6b-ee88cdb76c69,LIST_ACCOUNTS,hbciListAccounts,false +18083,aad85cb9-4599-4bec-ac6b-ee88cdb76c69,LIST_TRANSACTIONS,hbciListTransactions,false +18084,aad85cb9-4599-4bec-ac6b-ee88cdb76c69,AUTHORIZATION,,false +18085,aad85cb9-4599-4bec-ac6b-ee88cdb76c69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18086,aad85cb9-4599-4bec-ac6b-ee88cdb76c69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18087,aad85cb9-4599-4bec-ac6b-ee88cdb76c69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18088,3c29b971-e5c1-4ad4-bc60-31553cd55c37,LIST_ACCOUNTS,xs2aListAccounts,true -18089,3c29b971-e5c1-4ad4-bc60-31553cd55c37,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18089,3c29b971-e5c1-4ad4-bc60-31553cd55c37,LIST_TRANSACTIONS,xs2aListTransactions,true 18090,3c29b971-e5c1-4ad4-bc60-31553cd55c37,AUTHORIZATION,,true 18091,3c29b971-e5c1-4ad4-bc60-31553cd55c37,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18092,3c29b971-e5c1-4ad4-bc60-31553cd55c37,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18093,3c29b971-e5c1-4ad4-bc60-31553cd55c37,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18094,40f7e721-db03-4343-b3c2-b4b0ee8cbf8c,LIST_ACCOUNTS,hbciListAccounts,false -18095,40f7e721-db03-4343-b3c2-b4b0ee8cbf8c,LIST_TRANSACTIONS,hbciListTransactions,false -18096,40f7e721-db03-4343-b3c2-b4b0ee8cbf8c,AUTHORIZATION,,false -18097,40f7e721-db03-4343-b3c2-b4b0ee8cbf8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18098,40f7e721-db03-4343-b3c2-b4b0ee8cbf8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18099,40f7e721-db03-4343-b3c2-b4b0ee8cbf8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18094,47dfe0c9-c66b-4b1d-9202-5cd3058f4850,LIST_ACCOUNTS,hbciListAccounts,false +18095,47dfe0c9-c66b-4b1d-9202-5cd3058f4850,LIST_TRANSACTIONS,hbciListTransactions,false +18096,47dfe0c9-c66b-4b1d-9202-5cd3058f4850,AUTHORIZATION,,false +18097,47dfe0c9-c66b-4b1d-9202-5cd3058f4850,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18098,47dfe0c9-c66b-4b1d-9202-5cd3058f4850,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18099,47dfe0c9-c66b-4b1d-9202-5cd3058f4850,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18100,1efe4b1f-678d-4d48-a432-16fb3477e1e5,LIST_ACCOUNTS,xs2aListAccounts,true -18101,1efe4b1f-678d-4d48-a432-16fb3477e1e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18101,1efe4b1f-678d-4d48-a432-16fb3477e1e5,LIST_TRANSACTIONS,xs2aListTransactions,true 18102,1efe4b1f-678d-4d48-a432-16fb3477e1e5,AUTHORIZATION,,true 18103,1efe4b1f-678d-4d48-a432-16fb3477e1e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18104,1efe4b1f-678d-4d48-a432-16fb3477e1e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18105,1efe4b1f-678d-4d48-a432-16fb3477e1e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18106,d445d6e2-e052-4e62-ab4b-af1e748762c9,LIST_ACCOUNTS,hbciListAccounts,false -18107,d445d6e2-e052-4e62-ab4b-af1e748762c9,LIST_TRANSACTIONS,hbciListTransactions,false -18108,d445d6e2-e052-4e62-ab4b-af1e748762c9,AUTHORIZATION,,false -18109,d445d6e2-e052-4e62-ab4b-af1e748762c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18110,d445d6e2-e052-4e62-ab4b-af1e748762c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18111,d445d6e2-e052-4e62-ab4b-af1e748762c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18106,9c72e2a2-3a2f-47f9-b39b-4fc066dcc3f6,LIST_ACCOUNTS,hbciListAccounts,false +18107,9c72e2a2-3a2f-47f9-b39b-4fc066dcc3f6,LIST_TRANSACTIONS,hbciListTransactions,false +18108,9c72e2a2-3a2f-47f9-b39b-4fc066dcc3f6,AUTHORIZATION,,false +18109,9c72e2a2-3a2f-47f9-b39b-4fc066dcc3f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18110,9c72e2a2-3a2f-47f9-b39b-4fc066dcc3f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18111,9c72e2a2-3a2f-47f9-b39b-4fc066dcc3f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18112,4faa2c59-4cef-42bf-8727-11c1d2234b2c,LIST_ACCOUNTS,xs2aListAccounts,true -18113,4faa2c59-4cef-42bf-8727-11c1d2234b2c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18113,4faa2c59-4cef-42bf-8727-11c1d2234b2c,LIST_TRANSACTIONS,xs2aListTransactions,true 18114,4faa2c59-4cef-42bf-8727-11c1d2234b2c,AUTHORIZATION,,true 18115,4faa2c59-4cef-42bf-8727-11c1d2234b2c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18116,4faa2c59-4cef-42bf-8727-11c1d2234b2c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18117,4faa2c59-4cef-42bf-8727-11c1d2234b2c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18118,efcfc74d-3039-4252-94cd-938b424a0c27,LIST_ACCOUNTS,hbciListAccounts,false -18119,efcfc74d-3039-4252-94cd-938b424a0c27,LIST_TRANSACTIONS,hbciListTransactions,false -18120,efcfc74d-3039-4252-94cd-938b424a0c27,AUTHORIZATION,,false -18121,efcfc74d-3039-4252-94cd-938b424a0c27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18122,efcfc74d-3039-4252-94cd-938b424a0c27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18123,efcfc74d-3039-4252-94cd-938b424a0c27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18118,0a509fc4-40e7-4213-a0a3-774d71fd7c05,LIST_ACCOUNTS,hbciListAccounts,false +18119,0a509fc4-40e7-4213-a0a3-774d71fd7c05,LIST_TRANSACTIONS,hbciListTransactions,false +18120,0a509fc4-40e7-4213-a0a3-774d71fd7c05,AUTHORIZATION,,false +18121,0a509fc4-40e7-4213-a0a3-774d71fd7c05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18122,0a509fc4-40e7-4213-a0a3-774d71fd7c05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18123,0a509fc4-40e7-4213-a0a3-774d71fd7c05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18124,d90d5dcd-c533-4d8d-9af2-e53c6dac0e1a,LIST_ACCOUNTS,xs2aListAccounts,true -18125,d90d5dcd-c533-4d8d-9af2-e53c6dac0e1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18125,d90d5dcd-c533-4d8d-9af2-e53c6dac0e1a,LIST_TRANSACTIONS,xs2aListTransactions,true 18126,d90d5dcd-c533-4d8d-9af2-e53c6dac0e1a,AUTHORIZATION,,true 18127,d90d5dcd-c533-4d8d-9af2-e53c6dac0e1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18128,d90d5dcd-c533-4d8d-9af2-e53c6dac0e1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18129,d90d5dcd-c533-4d8d-9af2-e53c6dac0e1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18130,e878a4eb-d9cf-4f8c-b041-132ecbffdd19,LIST_ACCOUNTS,hbciListAccounts,false -18131,e878a4eb-d9cf-4f8c-b041-132ecbffdd19,LIST_TRANSACTIONS,hbciListTransactions,false -18132,e878a4eb-d9cf-4f8c-b041-132ecbffdd19,AUTHORIZATION,,false -18133,e878a4eb-d9cf-4f8c-b041-132ecbffdd19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18134,e878a4eb-d9cf-4f8c-b041-132ecbffdd19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18135,e878a4eb-d9cf-4f8c-b041-132ecbffdd19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18130,ad104167-8cc3-43f2-af4a-33a9044e33de,LIST_ACCOUNTS,hbciListAccounts,false +18131,ad104167-8cc3-43f2-af4a-33a9044e33de,LIST_TRANSACTIONS,hbciListTransactions,false +18132,ad104167-8cc3-43f2-af4a-33a9044e33de,AUTHORIZATION,,false +18133,ad104167-8cc3-43f2-af4a-33a9044e33de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18134,ad104167-8cc3-43f2-af4a-33a9044e33de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18135,ad104167-8cc3-43f2-af4a-33a9044e33de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18136,d0395480-cdcd-483f-bcb6-09ef03942954,LIST_ACCOUNTS,xs2aListAccounts,true -18137,d0395480-cdcd-483f-bcb6-09ef03942954,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18137,d0395480-cdcd-483f-bcb6-09ef03942954,LIST_TRANSACTIONS,xs2aListTransactions,true 18138,d0395480-cdcd-483f-bcb6-09ef03942954,AUTHORIZATION,,true 18139,d0395480-cdcd-483f-bcb6-09ef03942954,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18140,d0395480-cdcd-483f-bcb6-09ef03942954,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18141,d0395480-cdcd-483f-bcb6-09ef03942954,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18142,eacc3a8d-b501-4f34-92e6-5832f4c2830e,LIST_ACCOUNTS,hbciListAccounts,false -18143,eacc3a8d-b501-4f34-92e6-5832f4c2830e,LIST_TRANSACTIONS,hbciListTransactions,false -18144,eacc3a8d-b501-4f34-92e6-5832f4c2830e,AUTHORIZATION,,false -18145,eacc3a8d-b501-4f34-92e6-5832f4c2830e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18146,eacc3a8d-b501-4f34-92e6-5832f4c2830e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18147,eacc3a8d-b501-4f34-92e6-5832f4c2830e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18142,b0139fdd-92f9-402b-bd35-e359446eee68,LIST_ACCOUNTS,hbciListAccounts,false +18143,b0139fdd-92f9-402b-bd35-e359446eee68,LIST_TRANSACTIONS,hbciListTransactions,false +18144,b0139fdd-92f9-402b-bd35-e359446eee68,AUTHORIZATION,,false +18145,b0139fdd-92f9-402b-bd35-e359446eee68,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18146,b0139fdd-92f9-402b-bd35-e359446eee68,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18147,b0139fdd-92f9-402b-bd35-e359446eee68,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18148,063cb4f7-2273-492c-bed7-e3e92d3ae474,LIST_ACCOUNTS,xs2aListAccounts,true -18149,063cb4f7-2273-492c-bed7-e3e92d3ae474,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18149,063cb4f7-2273-492c-bed7-e3e92d3ae474,LIST_TRANSACTIONS,xs2aListTransactions,true 18150,063cb4f7-2273-492c-bed7-e3e92d3ae474,AUTHORIZATION,,true 18151,063cb4f7-2273-492c-bed7-e3e92d3ae474,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18152,063cb4f7-2273-492c-bed7-e3e92d3ae474,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18153,063cb4f7-2273-492c-bed7-e3e92d3ae474,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18154,025be8ad-86c2-4152-a1ce-eba2af87ac85,LIST_ACCOUNTS,hbciListAccounts,false -18155,025be8ad-86c2-4152-a1ce-eba2af87ac85,LIST_TRANSACTIONS,hbciListTransactions,false -18156,025be8ad-86c2-4152-a1ce-eba2af87ac85,AUTHORIZATION,,false -18157,025be8ad-86c2-4152-a1ce-eba2af87ac85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18158,025be8ad-86c2-4152-a1ce-eba2af87ac85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18159,025be8ad-86c2-4152-a1ce-eba2af87ac85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18154,10b4358d-f614-415f-be67-91d72d300d45,LIST_ACCOUNTS,hbciListAccounts,false +18155,10b4358d-f614-415f-be67-91d72d300d45,LIST_TRANSACTIONS,hbciListTransactions,false +18156,10b4358d-f614-415f-be67-91d72d300d45,AUTHORIZATION,,false +18157,10b4358d-f614-415f-be67-91d72d300d45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18158,10b4358d-f614-415f-be67-91d72d300d45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18159,10b4358d-f614-415f-be67-91d72d300d45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18160,ac627ed1-371c-42b3-a3ec-e5d543f76a68,LIST_ACCOUNTS,xs2aListAccounts,true -18161,ac627ed1-371c-42b3-a3ec-e5d543f76a68,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18161,ac627ed1-371c-42b3-a3ec-e5d543f76a68,LIST_TRANSACTIONS,xs2aListTransactions,true 18162,ac627ed1-371c-42b3-a3ec-e5d543f76a68,AUTHORIZATION,,true 18163,ac627ed1-371c-42b3-a3ec-e5d543f76a68,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18164,ac627ed1-371c-42b3-a3ec-e5d543f76a68,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18165,ac627ed1-371c-42b3-a3ec-e5d543f76a68,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18166,f2d295fa-5df3-4d87-8582-78b30c634caf,LIST_ACCOUNTS,hbciListAccounts,false -18167,f2d295fa-5df3-4d87-8582-78b30c634caf,LIST_TRANSACTIONS,hbciListTransactions,false -18168,f2d295fa-5df3-4d87-8582-78b30c634caf,AUTHORIZATION,,false -18169,f2d295fa-5df3-4d87-8582-78b30c634caf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18170,f2d295fa-5df3-4d87-8582-78b30c634caf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18171,f2d295fa-5df3-4d87-8582-78b30c634caf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18166,10d1dd6b-c550-492d-88ca-8c940ef85517,LIST_ACCOUNTS,hbciListAccounts,false +18167,10d1dd6b-c550-492d-88ca-8c940ef85517,LIST_TRANSACTIONS,hbciListTransactions,false +18168,10d1dd6b-c550-492d-88ca-8c940ef85517,AUTHORIZATION,,false +18169,10d1dd6b-c550-492d-88ca-8c940ef85517,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18170,10d1dd6b-c550-492d-88ca-8c940ef85517,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18171,10d1dd6b-c550-492d-88ca-8c940ef85517,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18172,44291cab-c407-4050-83d7-2ce461d3d322,LIST_ACCOUNTS,xs2aListAccounts,true -18173,44291cab-c407-4050-83d7-2ce461d3d322,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18173,44291cab-c407-4050-83d7-2ce461d3d322,LIST_TRANSACTIONS,xs2aListTransactions,true 18174,44291cab-c407-4050-83d7-2ce461d3d322,AUTHORIZATION,,true 18175,44291cab-c407-4050-83d7-2ce461d3d322,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18176,44291cab-c407-4050-83d7-2ce461d3d322,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18177,44291cab-c407-4050-83d7-2ce461d3d322,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18178,e6715434-d09f-41db-be45-aad78fa9a3df,LIST_ACCOUNTS,hbciListAccounts,false -18179,e6715434-d09f-41db-be45-aad78fa9a3df,LIST_TRANSACTIONS,hbciListTransactions,false -18180,e6715434-d09f-41db-be45-aad78fa9a3df,AUTHORIZATION,,false -18181,e6715434-d09f-41db-be45-aad78fa9a3df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18182,e6715434-d09f-41db-be45-aad78fa9a3df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18183,e6715434-d09f-41db-be45-aad78fa9a3df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18178,c639f604-b652-4691-9d12-d790e4c48598,LIST_ACCOUNTS,hbciListAccounts,false +18179,c639f604-b652-4691-9d12-d790e4c48598,LIST_TRANSACTIONS,hbciListTransactions,false +18180,c639f604-b652-4691-9d12-d790e4c48598,AUTHORIZATION,,false +18181,c639f604-b652-4691-9d12-d790e4c48598,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18182,c639f604-b652-4691-9d12-d790e4c48598,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18183,c639f604-b652-4691-9d12-d790e4c48598,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18184,f77ddae0-66a6-40e8-b1f6-a583a2ff7b06,LIST_ACCOUNTS,xs2aListAccounts,true -18185,f77ddae0-66a6-40e8-b1f6-a583a2ff7b06,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18185,f77ddae0-66a6-40e8-b1f6-a583a2ff7b06,LIST_TRANSACTIONS,xs2aListTransactions,true 18186,f77ddae0-66a6-40e8-b1f6-a583a2ff7b06,AUTHORIZATION,,true 18187,f77ddae0-66a6-40e8-b1f6-a583a2ff7b06,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18188,f77ddae0-66a6-40e8-b1f6-a583a2ff7b06,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18189,f77ddae0-66a6-40e8-b1f6-a583a2ff7b06,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18190,fa714964-4c67-4feb-9dd4-e263aea88acb,LIST_ACCOUNTS,hbciListAccounts,false -18191,fa714964-4c67-4feb-9dd4-e263aea88acb,LIST_TRANSACTIONS,hbciListTransactions,false -18192,fa714964-4c67-4feb-9dd4-e263aea88acb,AUTHORIZATION,,false -18193,fa714964-4c67-4feb-9dd4-e263aea88acb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18194,fa714964-4c67-4feb-9dd4-e263aea88acb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18195,fa714964-4c67-4feb-9dd4-e263aea88acb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18190,d378be11-8229-4946-8273-f75847be5095,LIST_ACCOUNTS,hbciListAccounts,false +18191,d378be11-8229-4946-8273-f75847be5095,LIST_TRANSACTIONS,hbciListTransactions,false +18192,d378be11-8229-4946-8273-f75847be5095,AUTHORIZATION,,false +18193,d378be11-8229-4946-8273-f75847be5095,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18194,d378be11-8229-4946-8273-f75847be5095,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18195,d378be11-8229-4946-8273-f75847be5095,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18196,46d7e0f1-6d71-4e76-a7a6-df0f97b829f3,LIST_ACCOUNTS,xs2aListAccounts,true -18197,46d7e0f1-6d71-4e76-a7a6-df0f97b829f3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18197,46d7e0f1-6d71-4e76-a7a6-df0f97b829f3,LIST_TRANSACTIONS,xs2aListTransactions,true 18198,46d7e0f1-6d71-4e76-a7a6-df0f97b829f3,AUTHORIZATION,,true 18199,46d7e0f1-6d71-4e76-a7a6-df0f97b829f3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18200,46d7e0f1-6d71-4e76-a7a6-df0f97b829f3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18201,46d7e0f1-6d71-4e76-a7a6-df0f97b829f3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18202,27f875ee-275c-4d6b-8d92-8f887c7a0e6c,LIST_ACCOUNTS,hbciListAccounts,false -18203,27f875ee-275c-4d6b-8d92-8f887c7a0e6c,LIST_TRANSACTIONS,hbciListTransactions,false -18204,27f875ee-275c-4d6b-8d92-8f887c7a0e6c,AUTHORIZATION,,false -18205,27f875ee-275c-4d6b-8d92-8f887c7a0e6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18206,27f875ee-275c-4d6b-8d92-8f887c7a0e6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18207,27f875ee-275c-4d6b-8d92-8f887c7a0e6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18202,c906e66c-f83b-4090-bd05-a70d0ab6db36,LIST_ACCOUNTS,hbciListAccounts,false +18203,c906e66c-f83b-4090-bd05-a70d0ab6db36,LIST_TRANSACTIONS,hbciListTransactions,false +18204,c906e66c-f83b-4090-bd05-a70d0ab6db36,AUTHORIZATION,,false +18205,c906e66c-f83b-4090-bd05-a70d0ab6db36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18206,c906e66c-f83b-4090-bd05-a70d0ab6db36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18207,c906e66c-f83b-4090-bd05-a70d0ab6db36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18208,5149a19c-198a-453d-b5ff-69e250eeb7b4,LIST_ACCOUNTS,xs2aListAccounts,true -18209,5149a19c-198a-453d-b5ff-69e250eeb7b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18209,5149a19c-198a-453d-b5ff-69e250eeb7b4,LIST_TRANSACTIONS,xs2aListTransactions,true 18210,5149a19c-198a-453d-b5ff-69e250eeb7b4,AUTHORIZATION,,true 18211,5149a19c-198a-453d-b5ff-69e250eeb7b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18212,5149a19c-198a-453d-b5ff-69e250eeb7b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18213,5149a19c-198a-453d-b5ff-69e250eeb7b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18214,626aae72-f254-4701-b9e3-58ec67decffa,LIST_ACCOUNTS,hbciListAccounts,false -18215,626aae72-f254-4701-b9e3-58ec67decffa,LIST_TRANSACTIONS,hbciListTransactions,false -18216,626aae72-f254-4701-b9e3-58ec67decffa,AUTHORIZATION,,false -18217,626aae72-f254-4701-b9e3-58ec67decffa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18218,626aae72-f254-4701-b9e3-58ec67decffa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18219,626aae72-f254-4701-b9e3-58ec67decffa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18214,cda14e8e-8d78-461d-8224-13317557edfd,LIST_ACCOUNTS,hbciListAccounts,false +18215,cda14e8e-8d78-461d-8224-13317557edfd,LIST_TRANSACTIONS,hbciListTransactions,false +18216,cda14e8e-8d78-461d-8224-13317557edfd,AUTHORIZATION,,false +18217,cda14e8e-8d78-461d-8224-13317557edfd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18218,cda14e8e-8d78-461d-8224-13317557edfd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18219,cda14e8e-8d78-461d-8224-13317557edfd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18220,01514269-b71f-47dc-80e8-ea950e7ff9e6,LIST_ACCOUNTS,xs2aListAccounts,true -18221,01514269-b71f-47dc-80e8-ea950e7ff9e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18221,01514269-b71f-47dc-80e8-ea950e7ff9e6,LIST_TRANSACTIONS,xs2aListTransactions,true 18222,01514269-b71f-47dc-80e8-ea950e7ff9e6,AUTHORIZATION,,true 18223,01514269-b71f-47dc-80e8-ea950e7ff9e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18224,01514269-b71f-47dc-80e8-ea950e7ff9e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18225,01514269-b71f-47dc-80e8-ea950e7ff9e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18226,fc3f4e06-812a-44de-80f7-e36b41a58ef6,LIST_ACCOUNTS,hbciListAccounts,false -18227,fc3f4e06-812a-44de-80f7-e36b41a58ef6,LIST_TRANSACTIONS,hbciListTransactions,false -18228,fc3f4e06-812a-44de-80f7-e36b41a58ef6,AUTHORIZATION,,false -18229,fc3f4e06-812a-44de-80f7-e36b41a58ef6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18230,fc3f4e06-812a-44de-80f7-e36b41a58ef6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18231,fc3f4e06-812a-44de-80f7-e36b41a58ef6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18226,d5723528-d589-46bf-9070-df54c9ad8368,LIST_ACCOUNTS,hbciListAccounts,false +18227,d5723528-d589-46bf-9070-df54c9ad8368,LIST_TRANSACTIONS,hbciListTransactions,false +18228,d5723528-d589-46bf-9070-df54c9ad8368,AUTHORIZATION,,false +18229,d5723528-d589-46bf-9070-df54c9ad8368,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18230,d5723528-d589-46bf-9070-df54c9ad8368,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18231,d5723528-d589-46bf-9070-df54c9ad8368,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18232,880384dc-3c97-4287-8908-66cd753bf297,LIST_ACCOUNTS,xs2aListAccounts,true -18233,880384dc-3c97-4287-8908-66cd753bf297,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18233,880384dc-3c97-4287-8908-66cd753bf297,LIST_TRANSACTIONS,xs2aListTransactions,true 18234,880384dc-3c97-4287-8908-66cd753bf297,AUTHORIZATION,,true 18235,880384dc-3c97-4287-8908-66cd753bf297,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18236,880384dc-3c97-4287-8908-66cd753bf297,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18237,880384dc-3c97-4287-8908-66cd753bf297,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18238,c0ba3098-b8db-43d9-ac3d-b7225720788d,LIST_ACCOUNTS,hbciListAccounts,false -18239,c0ba3098-b8db-43d9-ac3d-b7225720788d,LIST_TRANSACTIONS,hbciListTransactions,false -18240,c0ba3098-b8db-43d9-ac3d-b7225720788d,AUTHORIZATION,,false -18241,c0ba3098-b8db-43d9-ac3d-b7225720788d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18242,c0ba3098-b8db-43d9-ac3d-b7225720788d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18243,c0ba3098-b8db-43d9-ac3d-b7225720788d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18238,6f7b9124-5402-4318-956c-857da525e221,LIST_ACCOUNTS,hbciListAccounts,false +18239,6f7b9124-5402-4318-956c-857da525e221,LIST_TRANSACTIONS,hbciListTransactions,false +18240,6f7b9124-5402-4318-956c-857da525e221,AUTHORIZATION,,false +18241,6f7b9124-5402-4318-956c-857da525e221,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18242,6f7b9124-5402-4318-956c-857da525e221,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18243,6f7b9124-5402-4318-956c-857da525e221,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18244,021ac3d2-8136-45cf-ab59-e3dc89bb3b3a,LIST_ACCOUNTS,xs2aListAccounts,true -18245,021ac3d2-8136-45cf-ab59-e3dc89bb3b3a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18245,021ac3d2-8136-45cf-ab59-e3dc89bb3b3a,LIST_TRANSACTIONS,xs2aListTransactions,true 18246,021ac3d2-8136-45cf-ab59-e3dc89bb3b3a,AUTHORIZATION,,true 18247,021ac3d2-8136-45cf-ab59-e3dc89bb3b3a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18248,021ac3d2-8136-45cf-ab59-e3dc89bb3b3a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18249,021ac3d2-8136-45cf-ab59-e3dc89bb3b3a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18250,714b76c2-5004-4a9e-98d3-caa8105d281b,LIST_ACCOUNTS,hbciListAccounts,false -18251,714b76c2-5004-4a9e-98d3-caa8105d281b,LIST_TRANSACTIONS,hbciListTransactions,false -18252,714b76c2-5004-4a9e-98d3-caa8105d281b,AUTHORIZATION,,false -18253,714b76c2-5004-4a9e-98d3-caa8105d281b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18254,714b76c2-5004-4a9e-98d3-caa8105d281b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18255,714b76c2-5004-4a9e-98d3-caa8105d281b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18250,a3fbe834-0478-4dda-9d1f-efacc8efb15f,LIST_ACCOUNTS,hbciListAccounts,false +18251,a3fbe834-0478-4dda-9d1f-efacc8efb15f,LIST_TRANSACTIONS,hbciListTransactions,false +18252,a3fbe834-0478-4dda-9d1f-efacc8efb15f,AUTHORIZATION,,false +18253,a3fbe834-0478-4dda-9d1f-efacc8efb15f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18254,a3fbe834-0478-4dda-9d1f-efacc8efb15f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18255,a3fbe834-0478-4dda-9d1f-efacc8efb15f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18256,349805a0-70ea-4d9e-94d9-0c9f87f18edc,LIST_ACCOUNTS,xs2aListAccounts,true -18257,349805a0-70ea-4d9e-94d9-0c9f87f18edc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18257,349805a0-70ea-4d9e-94d9-0c9f87f18edc,LIST_TRANSACTIONS,xs2aListTransactions,true 18258,349805a0-70ea-4d9e-94d9-0c9f87f18edc,AUTHORIZATION,,true 18259,349805a0-70ea-4d9e-94d9-0c9f87f18edc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18260,349805a0-70ea-4d9e-94d9-0c9f87f18edc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18261,349805a0-70ea-4d9e-94d9-0c9f87f18edc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18262,9f06b5c0-c504-4dff-9222-f5d7db169907,LIST_ACCOUNTS,hbciListAccounts,false -18263,9f06b5c0-c504-4dff-9222-f5d7db169907,LIST_TRANSACTIONS,hbciListTransactions,false -18264,9f06b5c0-c504-4dff-9222-f5d7db169907,AUTHORIZATION,,false -18265,9f06b5c0-c504-4dff-9222-f5d7db169907,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18266,9f06b5c0-c504-4dff-9222-f5d7db169907,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18267,9f06b5c0-c504-4dff-9222-f5d7db169907,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18262,a2c045b6-064f-47c3-a3c0-b8b0e2d20ae3,LIST_ACCOUNTS,hbciListAccounts,false +18263,a2c045b6-064f-47c3-a3c0-b8b0e2d20ae3,LIST_TRANSACTIONS,hbciListTransactions,false +18264,a2c045b6-064f-47c3-a3c0-b8b0e2d20ae3,AUTHORIZATION,,false +18265,a2c045b6-064f-47c3-a3c0-b8b0e2d20ae3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18266,a2c045b6-064f-47c3-a3c0-b8b0e2d20ae3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18267,a2c045b6-064f-47c3-a3c0-b8b0e2d20ae3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18268,454b6600-540a-46d6-ac98-e47c98084a12,LIST_ACCOUNTS,xs2aListAccounts,true -18269,454b6600-540a-46d6-ac98-e47c98084a12,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18269,454b6600-540a-46d6-ac98-e47c98084a12,LIST_TRANSACTIONS,xs2aListTransactions,true 18270,454b6600-540a-46d6-ac98-e47c98084a12,AUTHORIZATION,,true 18271,454b6600-540a-46d6-ac98-e47c98084a12,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18272,454b6600-540a-46d6-ac98-e47c98084a12,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18273,454b6600-540a-46d6-ac98-e47c98084a12,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18274,d18eadca-292e-4814-96b5-d87070b0e75b,LIST_ACCOUNTS,hbciListAccounts,false -18275,d18eadca-292e-4814-96b5-d87070b0e75b,LIST_TRANSACTIONS,hbciListTransactions,false -18276,d18eadca-292e-4814-96b5-d87070b0e75b,AUTHORIZATION,,false -18277,d18eadca-292e-4814-96b5-d87070b0e75b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18278,d18eadca-292e-4814-96b5-d87070b0e75b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18279,d18eadca-292e-4814-96b5-d87070b0e75b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18274,ec0394ae-4421-4a24-aff3-6ebfd2bdecf5,LIST_ACCOUNTS,hbciListAccounts,false +18275,ec0394ae-4421-4a24-aff3-6ebfd2bdecf5,LIST_TRANSACTIONS,hbciListTransactions,false +18276,ec0394ae-4421-4a24-aff3-6ebfd2bdecf5,AUTHORIZATION,,false +18277,ec0394ae-4421-4a24-aff3-6ebfd2bdecf5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18278,ec0394ae-4421-4a24-aff3-6ebfd2bdecf5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18279,ec0394ae-4421-4a24-aff3-6ebfd2bdecf5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18280,4f6a314d-7566-4182-a4bb-682dfbfef6b8,LIST_ACCOUNTS,xs2aListAccounts,true -18281,4f6a314d-7566-4182-a4bb-682dfbfef6b8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18281,4f6a314d-7566-4182-a4bb-682dfbfef6b8,LIST_TRANSACTIONS,xs2aListTransactions,true 18282,4f6a314d-7566-4182-a4bb-682dfbfef6b8,AUTHORIZATION,,true 18283,4f6a314d-7566-4182-a4bb-682dfbfef6b8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18284,4f6a314d-7566-4182-a4bb-682dfbfef6b8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18285,4f6a314d-7566-4182-a4bb-682dfbfef6b8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18286,4b6e793b-9d89-4380-8b43-5349e180916e,LIST_ACCOUNTS,hbciListAccounts,false -18287,4b6e793b-9d89-4380-8b43-5349e180916e,LIST_TRANSACTIONS,hbciListTransactions,false -18288,4b6e793b-9d89-4380-8b43-5349e180916e,AUTHORIZATION,,false -18289,4b6e793b-9d89-4380-8b43-5349e180916e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18290,4b6e793b-9d89-4380-8b43-5349e180916e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18291,4b6e793b-9d89-4380-8b43-5349e180916e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18286,5469ae3d-92fc-4161-928a-1cbad24c1807,LIST_ACCOUNTS,hbciListAccounts,false +18287,5469ae3d-92fc-4161-928a-1cbad24c1807,LIST_TRANSACTIONS,hbciListTransactions,false +18288,5469ae3d-92fc-4161-928a-1cbad24c1807,AUTHORIZATION,,false +18289,5469ae3d-92fc-4161-928a-1cbad24c1807,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18290,5469ae3d-92fc-4161-928a-1cbad24c1807,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18291,5469ae3d-92fc-4161-928a-1cbad24c1807,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18292,3369d781-036a-4f2b-9a1c-85a54a8701df,LIST_ACCOUNTS,xs2aListAccounts,true -18293,3369d781-036a-4f2b-9a1c-85a54a8701df,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18293,3369d781-036a-4f2b-9a1c-85a54a8701df,LIST_TRANSACTIONS,xs2aListTransactions,true 18294,3369d781-036a-4f2b-9a1c-85a54a8701df,AUTHORIZATION,,true 18295,3369d781-036a-4f2b-9a1c-85a54a8701df,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18296,3369d781-036a-4f2b-9a1c-85a54a8701df,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18297,3369d781-036a-4f2b-9a1c-85a54a8701df,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18298,19ad5dc5-77b7-49dc-9926-123352b6a82d,LIST_ACCOUNTS,hbciListAccounts,false -18299,19ad5dc5-77b7-49dc-9926-123352b6a82d,LIST_TRANSACTIONS,hbciListTransactions,false -18300,19ad5dc5-77b7-49dc-9926-123352b6a82d,AUTHORIZATION,,false -18301,19ad5dc5-77b7-49dc-9926-123352b6a82d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18302,19ad5dc5-77b7-49dc-9926-123352b6a82d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18303,19ad5dc5-77b7-49dc-9926-123352b6a82d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18298,a807d880-cca3-4f51-804e-2bd6e3e5c58d,LIST_ACCOUNTS,hbciListAccounts,false +18299,a807d880-cca3-4f51-804e-2bd6e3e5c58d,LIST_TRANSACTIONS,hbciListTransactions,false +18300,a807d880-cca3-4f51-804e-2bd6e3e5c58d,AUTHORIZATION,,false +18301,a807d880-cca3-4f51-804e-2bd6e3e5c58d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18302,a807d880-cca3-4f51-804e-2bd6e3e5c58d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18303,a807d880-cca3-4f51-804e-2bd6e3e5c58d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18304,85620351-8c40-450c-a24d-a5e1b6dcadb5,LIST_ACCOUNTS,xs2aListAccounts,true -18305,85620351-8c40-450c-a24d-a5e1b6dcadb5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18305,85620351-8c40-450c-a24d-a5e1b6dcadb5,LIST_TRANSACTIONS,xs2aListTransactions,true 18306,85620351-8c40-450c-a24d-a5e1b6dcadb5,AUTHORIZATION,,true 18307,85620351-8c40-450c-a24d-a5e1b6dcadb5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18308,85620351-8c40-450c-a24d-a5e1b6dcadb5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18309,85620351-8c40-450c-a24d-a5e1b6dcadb5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18310,17b6e2ff-04a0-4caf-964e-b6e5e802e247,LIST_ACCOUNTS,hbciListAccounts,false -18311,17b6e2ff-04a0-4caf-964e-b6e5e802e247,LIST_TRANSACTIONS,hbciListTransactions,false -18312,17b6e2ff-04a0-4caf-964e-b6e5e802e247,AUTHORIZATION,,false -18313,17b6e2ff-04a0-4caf-964e-b6e5e802e247,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18314,17b6e2ff-04a0-4caf-964e-b6e5e802e247,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18315,17b6e2ff-04a0-4caf-964e-b6e5e802e247,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18310,8165969c-6693-4d08-a0bb-cdf106d58f74,LIST_ACCOUNTS,hbciListAccounts,false +18311,8165969c-6693-4d08-a0bb-cdf106d58f74,LIST_TRANSACTIONS,hbciListTransactions,false +18312,8165969c-6693-4d08-a0bb-cdf106d58f74,AUTHORIZATION,,false +18313,8165969c-6693-4d08-a0bb-cdf106d58f74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18314,8165969c-6693-4d08-a0bb-cdf106d58f74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18315,8165969c-6693-4d08-a0bb-cdf106d58f74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18316,76241d2f-8664-4a57-89f8-3f93b0438c8b,LIST_ACCOUNTS,xs2aListAccounts,true -18317,76241d2f-8664-4a57-89f8-3f93b0438c8b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18317,76241d2f-8664-4a57-89f8-3f93b0438c8b,LIST_TRANSACTIONS,xs2aListTransactions,true 18318,76241d2f-8664-4a57-89f8-3f93b0438c8b,AUTHORIZATION,,true 18319,76241d2f-8664-4a57-89f8-3f93b0438c8b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18320,76241d2f-8664-4a57-89f8-3f93b0438c8b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18321,76241d2f-8664-4a57-89f8-3f93b0438c8b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18322,76978fcb-bece-4b31-a353-949dedabf515,LIST_ACCOUNTS,hbciListAccounts,false -18323,76978fcb-bece-4b31-a353-949dedabf515,LIST_TRANSACTIONS,hbciListTransactions,false -18324,76978fcb-bece-4b31-a353-949dedabf515,AUTHORIZATION,,false -18325,76978fcb-bece-4b31-a353-949dedabf515,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18326,76978fcb-bece-4b31-a353-949dedabf515,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18327,76978fcb-bece-4b31-a353-949dedabf515,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18322,d757a76d-928e-4f4f-a86c-970e0952607a,LIST_ACCOUNTS,hbciListAccounts,false +18323,d757a76d-928e-4f4f-a86c-970e0952607a,LIST_TRANSACTIONS,hbciListTransactions,false +18324,d757a76d-928e-4f4f-a86c-970e0952607a,AUTHORIZATION,,false +18325,d757a76d-928e-4f4f-a86c-970e0952607a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18326,d757a76d-928e-4f4f-a86c-970e0952607a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18327,d757a76d-928e-4f4f-a86c-970e0952607a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18328,aa262bcd-7554-40d2-85fa-4631e287d464,LIST_ACCOUNTS,xs2aListAccounts,true -18329,aa262bcd-7554-40d2-85fa-4631e287d464,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18329,aa262bcd-7554-40d2-85fa-4631e287d464,LIST_TRANSACTIONS,xs2aListTransactions,true 18330,aa262bcd-7554-40d2-85fa-4631e287d464,AUTHORIZATION,,true 18331,aa262bcd-7554-40d2-85fa-4631e287d464,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18332,aa262bcd-7554-40d2-85fa-4631e287d464,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18333,aa262bcd-7554-40d2-85fa-4631e287d464,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18334,c9256693-26af-4ac9-a545-6b6e61787582,LIST_ACCOUNTS,hbciListAccounts,false -18335,c9256693-26af-4ac9-a545-6b6e61787582,LIST_TRANSACTIONS,hbciListTransactions,false -18336,c9256693-26af-4ac9-a545-6b6e61787582,AUTHORIZATION,,false -18337,c9256693-26af-4ac9-a545-6b6e61787582,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18338,c9256693-26af-4ac9-a545-6b6e61787582,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18339,c9256693-26af-4ac9-a545-6b6e61787582,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18334,28a30f4c-e104-4173-baa9-9b3d54dd307c,LIST_ACCOUNTS,hbciListAccounts,false +18335,28a30f4c-e104-4173-baa9-9b3d54dd307c,LIST_TRANSACTIONS,hbciListTransactions,false +18336,28a30f4c-e104-4173-baa9-9b3d54dd307c,AUTHORIZATION,,false +18337,28a30f4c-e104-4173-baa9-9b3d54dd307c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18338,28a30f4c-e104-4173-baa9-9b3d54dd307c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18339,28a30f4c-e104-4173-baa9-9b3d54dd307c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18340,5f75ed0f-9dbc-4437-876d-10800eb67104,LIST_ACCOUNTS,xs2aListAccounts,true -18341,5f75ed0f-9dbc-4437-876d-10800eb67104,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18341,5f75ed0f-9dbc-4437-876d-10800eb67104,LIST_TRANSACTIONS,xs2aListTransactions,true 18342,5f75ed0f-9dbc-4437-876d-10800eb67104,AUTHORIZATION,,true 18343,5f75ed0f-9dbc-4437-876d-10800eb67104,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18344,5f75ed0f-9dbc-4437-876d-10800eb67104,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18345,5f75ed0f-9dbc-4437-876d-10800eb67104,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18346,18a73411-d506-4506-8fcc-e4c35ddd30c4,LIST_ACCOUNTS,hbciListAccounts,false -18347,18a73411-d506-4506-8fcc-e4c35ddd30c4,LIST_TRANSACTIONS,hbciListTransactions,false -18348,18a73411-d506-4506-8fcc-e4c35ddd30c4,AUTHORIZATION,,false -18349,18a73411-d506-4506-8fcc-e4c35ddd30c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18350,18a73411-d506-4506-8fcc-e4c35ddd30c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18351,18a73411-d506-4506-8fcc-e4c35ddd30c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18346,26c5851e-26d4-4c7c-96f9-189067b34397,LIST_ACCOUNTS,hbciListAccounts,false +18347,26c5851e-26d4-4c7c-96f9-189067b34397,LIST_TRANSACTIONS,hbciListTransactions,false +18348,26c5851e-26d4-4c7c-96f9-189067b34397,AUTHORIZATION,,false +18349,26c5851e-26d4-4c7c-96f9-189067b34397,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18350,26c5851e-26d4-4c7c-96f9-189067b34397,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18351,26c5851e-26d4-4c7c-96f9-189067b34397,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18352,a772602d-b7c1-4ac0-9490-c6c19f3f7518,LIST_ACCOUNTS,xs2aListAccounts,true -18353,a772602d-b7c1-4ac0-9490-c6c19f3f7518,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18353,a772602d-b7c1-4ac0-9490-c6c19f3f7518,LIST_TRANSACTIONS,xs2aListTransactions,true 18354,a772602d-b7c1-4ac0-9490-c6c19f3f7518,AUTHORIZATION,,true 18355,a772602d-b7c1-4ac0-9490-c6c19f3f7518,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18356,a772602d-b7c1-4ac0-9490-c6c19f3f7518,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18357,a772602d-b7c1-4ac0-9490-c6c19f3f7518,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18358,bcf87885-7c6b-4a2f-9b4e-98231884d53e,LIST_ACCOUNTS,hbciListAccounts,false -18359,bcf87885-7c6b-4a2f-9b4e-98231884d53e,LIST_TRANSACTIONS,hbciListTransactions,false -18360,bcf87885-7c6b-4a2f-9b4e-98231884d53e,AUTHORIZATION,,false -18361,bcf87885-7c6b-4a2f-9b4e-98231884d53e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18362,bcf87885-7c6b-4a2f-9b4e-98231884d53e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18363,bcf87885-7c6b-4a2f-9b4e-98231884d53e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18358,35d21675-4ea2-458b-88e4-ad2dca6f4bae,LIST_ACCOUNTS,hbciListAccounts,false +18359,35d21675-4ea2-458b-88e4-ad2dca6f4bae,LIST_TRANSACTIONS,hbciListTransactions,false +18360,35d21675-4ea2-458b-88e4-ad2dca6f4bae,AUTHORIZATION,,false +18361,35d21675-4ea2-458b-88e4-ad2dca6f4bae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18362,35d21675-4ea2-458b-88e4-ad2dca6f4bae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18363,35d21675-4ea2-458b-88e4-ad2dca6f4bae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18364,aac467d2-a82d-48ca-8c15-717051f307b7,LIST_ACCOUNTS,xs2aListAccounts,true -18365,aac467d2-a82d-48ca-8c15-717051f307b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18365,aac467d2-a82d-48ca-8c15-717051f307b7,LIST_TRANSACTIONS,xs2aListTransactions,true 18366,aac467d2-a82d-48ca-8c15-717051f307b7,AUTHORIZATION,,true 18367,aac467d2-a82d-48ca-8c15-717051f307b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18368,aac467d2-a82d-48ca-8c15-717051f307b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18369,aac467d2-a82d-48ca-8c15-717051f307b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18370,e0566584-41d5-4362-8cff-a5905fb82258,LIST_ACCOUNTS,hbciListAccounts,false -18371,e0566584-41d5-4362-8cff-a5905fb82258,LIST_TRANSACTIONS,hbciListTransactions,false -18372,e0566584-41d5-4362-8cff-a5905fb82258,AUTHORIZATION,,false -18373,e0566584-41d5-4362-8cff-a5905fb82258,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18374,e0566584-41d5-4362-8cff-a5905fb82258,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18375,e0566584-41d5-4362-8cff-a5905fb82258,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18370,5e336da0-34e5-4504-adb1-ebb8d9abc3e3,LIST_ACCOUNTS,hbciListAccounts,false +18371,5e336da0-34e5-4504-adb1-ebb8d9abc3e3,LIST_TRANSACTIONS,hbciListTransactions,false +18372,5e336da0-34e5-4504-adb1-ebb8d9abc3e3,AUTHORIZATION,,false +18373,5e336da0-34e5-4504-adb1-ebb8d9abc3e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18374,5e336da0-34e5-4504-adb1-ebb8d9abc3e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18375,5e336da0-34e5-4504-adb1-ebb8d9abc3e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18376,5b0a64fe-8eea-43c6-8d79-6a975783ca04,LIST_ACCOUNTS,xs2aListAccounts,true -18377,5b0a64fe-8eea-43c6-8d79-6a975783ca04,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18377,5b0a64fe-8eea-43c6-8d79-6a975783ca04,LIST_TRANSACTIONS,xs2aListTransactions,true 18378,5b0a64fe-8eea-43c6-8d79-6a975783ca04,AUTHORIZATION,,true 18379,5b0a64fe-8eea-43c6-8d79-6a975783ca04,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18380,5b0a64fe-8eea-43c6-8d79-6a975783ca04,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18381,5b0a64fe-8eea-43c6-8d79-6a975783ca04,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18382,72589083-2856-47ba-beed-d9f2b97f5764,LIST_ACCOUNTS,hbciListAccounts,false -18383,72589083-2856-47ba-beed-d9f2b97f5764,LIST_TRANSACTIONS,hbciListTransactions,false -18384,72589083-2856-47ba-beed-d9f2b97f5764,AUTHORIZATION,,false -18385,72589083-2856-47ba-beed-d9f2b97f5764,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18386,72589083-2856-47ba-beed-d9f2b97f5764,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18387,72589083-2856-47ba-beed-d9f2b97f5764,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18382,04fe85fe-10b7-4d76-8498-3db59f780ee1,LIST_ACCOUNTS,hbciListAccounts,false +18383,04fe85fe-10b7-4d76-8498-3db59f780ee1,LIST_TRANSACTIONS,hbciListTransactions,false +18384,04fe85fe-10b7-4d76-8498-3db59f780ee1,AUTHORIZATION,,false +18385,04fe85fe-10b7-4d76-8498-3db59f780ee1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18386,04fe85fe-10b7-4d76-8498-3db59f780ee1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18387,04fe85fe-10b7-4d76-8498-3db59f780ee1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18388,3c2140dc-03d7-4afb-b4da-6a3b30add0c3,LIST_ACCOUNTS,xs2aListAccounts,true -18389,3c2140dc-03d7-4afb-b4da-6a3b30add0c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18389,3c2140dc-03d7-4afb-b4da-6a3b30add0c3,LIST_TRANSACTIONS,xs2aListTransactions,true 18390,3c2140dc-03d7-4afb-b4da-6a3b30add0c3,AUTHORIZATION,,true 18391,3c2140dc-03d7-4afb-b4da-6a3b30add0c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18392,3c2140dc-03d7-4afb-b4da-6a3b30add0c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18393,3c2140dc-03d7-4afb-b4da-6a3b30add0c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18394,438a6775-9449-4f79-b7fe-f480f32e05c2,LIST_ACCOUNTS,hbciListAccounts,false -18395,438a6775-9449-4f79-b7fe-f480f32e05c2,LIST_TRANSACTIONS,hbciListTransactions,false -18396,438a6775-9449-4f79-b7fe-f480f32e05c2,AUTHORIZATION,,false -18397,438a6775-9449-4f79-b7fe-f480f32e05c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18398,438a6775-9449-4f79-b7fe-f480f32e05c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18399,438a6775-9449-4f79-b7fe-f480f32e05c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18394,d781d151-61c4-4582-887a-3faa36351b44,LIST_ACCOUNTS,hbciListAccounts,false +18395,d781d151-61c4-4582-887a-3faa36351b44,LIST_TRANSACTIONS,hbciListTransactions,false +18396,d781d151-61c4-4582-887a-3faa36351b44,AUTHORIZATION,,false +18397,d781d151-61c4-4582-887a-3faa36351b44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18398,d781d151-61c4-4582-887a-3faa36351b44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18399,d781d151-61c4-4582-887a-3faa36351b44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18400,5c363761-d050-46ec-82ab-e18325eeb0fa,LIST_ACCOUNTS,xs2aListAccounts,true -18401,5c363761-d050-46ec-82ab-e18325eeb0fa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18401,5c363761-d050-46ec-82ab-e18325eeb0fa,LIST_TRANSACTIONS,xs2aListTransactions,true 18402,5c363761-d050-46ec-82ab-e18325eeb0fa,AUTHORIZATION,,true 18403,5c363761-d050-46ec-82ab-e18325eeb0fa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18404,5c363761-d050-46ec-82ab-e18325eeb0fa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18405,5c363761-d050-46ec-82ab-e18325eeb0fa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18406,a6e1f76a-017b-4c67-976f-3815e422a84a,LIST_ACCOUNTS,hbciListAccounts,false -18407,a6e1f76a-017b-4c67-976f-3815e422a84a,LIST_TRANSACTIONS,hbciListTransactions,false -18408,a6e1f76a-017b-4c67-976f-3815e422a84a,AUTHORIZATION,,false -18409,a6e1f76a-017b-4c67-976f-3815e422a84a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18410,a6e1f76a-017b-4c67-976f-3815e422a84a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18411,a6e1f76a-017b-4c67-976f-3815e422a84a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18406,172fc704-0113-4f64-9eb2-80012fa7af18,LIST_ACCOUNTS,hbciListAccounts,false +18407,172fc704-0113-4f64-9eb2-80012fa7af18,LIST_TRANSACTIONS,hbciListTransactions,false +18408,172fc704-0113-4f64-9eb2-80012fa7af18,AUTHORIZATION,,false +18409,172fc704-0113-4f64-9eb2-80012fa7af18,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18410,172fc704-0113-4f64-9eb2-80012fa7af18,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18411,172fc704-0113-4f64-9eb2-80012fa7af18,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18412,d8bebb89-0ce2-4c0d-801f-43eff196180f,LIST_ACCOUNTS,xs2aListAccounts,true -18413,d8bebb89-0ce2-4c0d-801f-43eff196180f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18413,d8bebb89-0ce2-4c0d-801f-43eff196180f,LIST_TRANSACTIONS,xs2aListTransactions,true 18414,d8bebb89-0ce2-4c0d-801f-43eff196180f,AUTHORIZATION,,true 18415,d8bebb89-0ce2-4c0d-801f-43eff196180f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18416,d8bebb89-0ce2-4c0d-801f-43eff196180f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18417,d8bebb89-0ce2-4c0d-801f-43eff196180f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18418,2f7822df-6282-4ecf-a7be-536e968a9684,LIST_ACCOUNTS,hbciListAccounts,false -18419,2f7822df-6282-4ecf-a7be-536e968a9684,LIST_TRANSACTIONS,hbciListTransactions,false -18420,2f7822df-6282-4ecf-a7be-536e968a9684,AUTHORIZATION,,false -18421,2f7822df-6282-4ecf-a7be-536e968a9684,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18422,2f7822df-6282-4ecf-a7be-536e968a9684,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18423,2f7822df-6282-4ecf-a7be-536e968a9684,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18418,80cabb54-ad48-4e5e-ae52-2354653432ab,LIST_ACCOUNTS,hbciListAccounts,false +18419,80cabb54-ad48-4e5e-ae52-2354653432ab,LIST_TRANSACTIONS,hbciListTransactions,false +18420,80cabb54-ad48-4e5e-ae52-2354653432ab,AUTHORIZATION,,false +18421,80cabb54-ad48-4e5e-ae52-2354653432ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18422,80cabb54-ad48-4e5e-ae52-2354653432ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18423,80cabb54-ad48-4e5e-ae52-2354653432ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18424,37e97acd-40e0-4974-b24b-56fcf6a42eb7,LIST_ACCOUNTS,xs2aListAccounts,true -18425,37e97acd-40e0-4974-b24b-56fcf6a42eb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18425,37e97acd-40e0-4974-b24b-56fcf6a42eb7,LIST_TRANSACTIONS,xs2aListTransactions,true 18426,37e97acd-40e0-4974-b24b-56fcf6a42eb7,AUTHORIZATION,,true 18427,37e97acd-40e0-4974-b24b-56fcf6a42eb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18428,37e97acd-40e0-4974-b24b-56fcf6a42eb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18429,37e97acd-40e0-4974-b24b-56fcf6a42eb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18430,63f94cff-5e5f-45c3-abed-5e1fb9d54469,LIST_ACCOUNTS,hbciListAccounts,false -18431,63f94cff-5e5f-45c3-abed-5e1fb9d54469,LIST_TRANSACTIONS,hbciListTransactions,false -18432,63f94cff-5e5f-45c3-abed-5e1fb9d54469,AUTHORIZATION,,false -18433,63f94cff-5e5f-45c3-abed-5e1fb9d54469,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18434,63f94cff-5e5f-45c3-abed-5e1fb9d54469,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18435,63f94cff-5e5f-45c3-abed-5e1fb9d54469,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18430,c3d41c0a-1731-4de1-9a14-a18fe7501bd7,LIST_ACCOUNTS,hbciListAccounts,false +18431,c3d41c0a-1731-4de1-9a14-a18fe7501bd7,LIST_TRANSACTIONS,hbciListTransactions,false +18432,c3d41c0a-1731-4de1-9a14-a18fe7501bd7,AUTHORIZATION,,false +18433,c3d41c0a-1731-4de1-9a14-a18fe7501bd7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18434,c3d41c0a-1731-4de1-9a14-a18fe7501bd7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18435,c3d41c0a-1731-4de1-9a14-a18fe7501bd7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18436,0e73658d-ccec-4313-b57b-ddbd3e668149,LIST_ACCOUNTS,xs2aListAccounts,true -18437,0e73658d-ccec-4313-b57b-ddbd3e668149,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18437,0e73658d-ccec-4313-b57b-ddbd3e668149,LIST_TRANSACTIONS,xs2aListTransactions,true 18438,0e73658d-ccec-4313-b57b-ddbd3e668149,AUTHORIZATION,,true 18439,0e73658d-ccec-4313-b57b-ddbd3e668149,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18440,0e73658d-ccec-4313-b57b-ddbd3e668149,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18441,0e73658d-ccec-4313-b57b-ddbd3e668149,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18442,83dbcea2-add8-4c79-8bda-5c8c51b1f8b6,LIST_ACCOUNTS,hbciListAccounts,false -18443,83dbcea2-add8-4c79-8bda-5c8c51b1f8b6,LIST_TRANSACTIONS,hbciListTransactions,false -18444,83dbcea2-add8-4c79-8bda-5c8c51b1f8b6,AUTHORIZATION,,false -18445,83dbcea2-add8-4c79-8bda-5c8c51b1f8b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18446,83dbcea2-add8-4c79-8bda-5c8c51b1f8b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18447,83dbcea2-add8-4c79-8bda-5c8c51b1f8b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18442,dceca7dc-aec4-4c11-85e9-9413ab88d242,LIST_ACCOUNTS,hbciListAccounts,false +18443,dceca7dc-aec4-4c11-85e9-9413ab88d242,LIST_TRANSACTIONS,hbciListTransactions,false +18444,dceca7dc-aec4-4c11-85e9-9413ab88d242,AUTHORIZATION,,false +18445,dceca7dc-aec4-4c11-85e9-9413ab88d242,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18446,dceca7dc-aec4-4c11-85e9-9413ab88d242,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18447,dceca7dc-aec4-4c11-85e9-9413ab88d242,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18448,7a2ab12c-b806-4ab2-b2f5-7dd237092558,LIST_ACCOUNTS,xs2aListAccounts,true -18449,7a2ab12c-b806-4ab2-b2f5-7dd237092558,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18449,7a2ab12c-b806-4ab2-b2f5-7dd237092558,LIST_TRANSACTIONS,xs2aListTransactions,true 18450,7a2ab12c-b806-4ab2-b2f5-7dd237092558,AUTHORIZATION,,true 18451,7a2ab12c-b806-4ab2-b2f5-7dd237092558,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18452,7a2ab12c-b806-4ab2-b2f5-7dd237092558,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18453,7a2ab12c-b806-4ab2-b2f5-7dd237092558,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18454,235e718b-e4d4-48b0-9cb6-7611e9b59b31,LIST_ACCOUNTS,hbciListAccounts,false -18455,235e718b-e4d4-48b0-9cb6-7611e9b59b31,LIST_TRANSACTIONS,hbciListTransactions,false -18456,235e718b-e4d4-48b0-9cb6-7611e9b59b31,AUTHORIZATION,,false -18457,235e718b-e4d4-48b0-9cb6-7611e9b59b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18458,235e718b-e4d4-48b0-9cb6-7611e9b59b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18459,235e718b-e4d4-48b0-9cb6-7611e9b59b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18454,98fdc298-d17b-4760-add2-d2b156c52254,LIST_ACCOUNTS,hbciListAccounts,false +18455,98fdc298-d17b-4760-add2-d2b156c52254,LIST_TRANSACTIONS,hbciListTransactions,false +18456,98fdc298-d17b-4760-add2-d2b156c52254,AUTHORIZATION,,false +18457,98fdc298-d17b-4760-add2-d2b156c52254,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18458,98fdc298-d17b-4760-add2-d2b156c52254,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18459,98fdc298-d17b-4760-add2-d2b156c52254,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18460,0cb133dc-fa64-41b1-bf45-500d45884467,LIST_ACCOUNTS,xs2aListAccounts,true -18461,0cb133dc-fa64-41b1-bf45-500d45884467,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18461,0cb133dc-fa64-41b1-bf45-500d45884467,LIST_TRANSACTIONS,xs2aListTransactions,true 18462,0cb133dc-fa64-41b1-bf45-500d45884467,AUTHORIZATION,,true 18463,0cb133dc-fa64-41b1-bf45-500d45884467,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18464,0cb133dc-fa64-41b1-bf45-500d45884467,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18465,0cb133dc-fa64-41b1-bf45-500d45884467,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18466,3ae7ccaf-4bdf-4e32-8f9c-3f8a0703bd6d,LIST_ACCOUNTS,hbciListAccounts,false -18467,3ae7ccaf-4bdf-4e32-8f9c-3f8a0703bd6d,LIST_TRANSACTIONS,hbciListTransactions,false -18468,3ae7ccaf-4bdf-4e32-8f9c-3f8a0703bd6d,AUTHORIZATION,,false -18469,3ae7ccaf-4bdf-4e32-8f9c-3f8a0703bd6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18470,3ae7ccaf-4bdf-4e32-8f9c-3f8a0703bd6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18471,3ae7ccaf-4bdf-4e32-8f9c-3f8a0703bd6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18466,0ae35031-428b-4a2b-bacb-5d80e3f6b7d0,LIST_ACCOUNTS,hbciListAccounts,false +18467,0ae35031-428b-4a2b-bacb-5d80e3f6b7d0,LIST_TRANSACTIONS,hbciListTransactions,false +18468,0ae35031-428b-4a2b-bacb-5d80e3f6b7d0,AUTHORIZATION,,false +18469,0ae35031-428b-4a2b-bacb-5d80e3f6b7d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18470,0ae35031-428b-4a2b-bacb-5d80e3f6b7d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18471,0ae35031-428b-4a2b-bacb-5d80e3f6b7d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18472,bfb3580f-059e-4690-aded-ad742adf1635,LIST_ACCOUNTS,xs2aListAccounts,true -18473,bfb3580f-059e-4690-aded-ad742adf1635,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18473,bfb3580f-059e-4690-aded-ad742adf1635,LIST_TRANSACTIONS,xs2aListTransactions,true 18474,bfb3580f-059e-4690-aded-ad742adf1635,AUTHORIZATION,,true 18475,bfb3580f-059e-4690-aded-ad742adf1635,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18476,bfb3580f-059e-4690-aded-ad742adf1635,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18477,bfb3580f-059e-4690-aded-ad742adf1635,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18478,db4f7086-ea3b-4c83-977f-da0498165b83,LIST_ACCOUNTS,hbciListAccounts,false -18479,db4f7086-ea3b-4c83-977f-da0498165b83,LIST_TRANSACTIONS,hbciListTransactions,false -18480,db4f7086-ea3b-4c83-977f-da0498165b83,AUTHORIZATION,,false -18481,db4f7086-ea3b-4c83-977f-da0498165b83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18482,db4f7086-ea3b-4c83-977f-da0498165b83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18483,db4f7086-ea3b-4c83-977f-da0498165b83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18478,ff06e55b-a542-47e1-9e36-59209182c132,LIST_ACCOUNTS,hbciListAccounts,false +18479,ff06e55b-a542-47e1-9e36-59209182c132,LIST_TRANSACTIONS,hbciListTransactions,false +18480,ff06e55b-a542-47e1-9e36-59209182c132,AUTHORIZATION,,false +18481,ff06e55b-a542-47e1-9e36-59209182c132,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18482,ff06e55b-a542-47e1-9e36-59209182c132,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18483,ff06e55b-a542-47e1-9e36-59209182c132,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18484,6095813b-d828-485f-9ba1-1fcedf6e4dd8,LIST_ACCOUNTS,xs2aListAccounts,true -18485,6095813b-d828-485f-9ba1-1fcedf6e4dd8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18485,6095813b-d828-485f-9ba1-1fcedf6e4dd8,LIST_TRANSACTIONS,xs2aListTransactions,true 18486,6095813b-d828-485f-9ba1-1fcedf6e4dd8,AUTHORIZATION,,true 18487,6095813b-d828-485f-9ba1-1fcedf6e4dd8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18488,6095813b-d828-485f-9ba1-1fcedf6e4dd8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18489,6095813b-d828-485f-9ba1-1fcedf6e4dd8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18490,45b4f432-ffd5-47a4-9d64-72fb20bd8d17,LIST_ACCOUNTS,hbciListAccounts,false -18491,45b4f432-ffd5-47a4-9d64-72fb20bd8d17,LIST_TRANSACTIONS,hbciListTransactions,false -18492,45b4f432-ffd5-47a4-9d64-72fb20bd8d17,AUTHORIZATION,,false -18493,45b4f432-ffd5-47a4-9d64-72fb20bd8d17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18494,45b4f432-ffd5-47a4-9d64-72fb20bd8d17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18495,45b4f432-ffd5-47a4-9d64-72fb20bd8d17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18490,9bb0d11c-1d7d-4430-8bb4-3b51db8df81e,LIST_ACCOUNTS,hbciListAccounts,false +18491,9bb0d11c-1d7d-4430-8bb4-3b51db8df81e,LIST_TRANSACTIONS,hbciListTransactions,false +18492,9bb0d11c-1d7d-4430-8bb4-3b51db8df81e,AUTHORIZATION,,false +18493,9bb0d11c-1d7d-4430-8bb4-3b51db8df81e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18494,9bb0d11c-1d7d-4430-8bb4-3b51db8df81e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18495,9bb0d11c-1d7d-4430-8bb4-3b51db8df81e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18496,662eb1af-a5ec-4572-a52f-2f5d71531238,LIST_ACCOUNTS,xs2aListAccounts,true -18497,662eb1af-a5ec-4572-a52f-2f5d71531238,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18497,662eb1af-a5ec-4572-a52f-2f5d71531238,LIST_TRANSACTIONS,xs2aListTransactions,true 18498,662eb1af-a5ec-4572-a52f-2f5d71531238,AUTHORIZATION,,true 18499,662eb1af-a5ec-4572-a52f-2f5d71531238,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18500,662eb1af-a5ec-4572-a52f-2f5d71531238,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18501,662eb1af-a5ec-4572-a52f-2f5d71531238,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18502,26b99788-542c-4a18-9ea3-099cc8ead81d,LIST_ACCOUNTS,hbciListAccounts,false -18503,26b99788-542c-4a18-9ea3-099cc8ead81d,LIST_TRANSACTIONS,hbciListTransactions,false -18504,26b99788-542c-4a18-9ea3-099cc8ead81d,AUTHORIZATION,,false -18505,26b99788-542c-4a18-9ea3-099cc8ead81d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18506,26b99788-542c-4a18-9ea3-099cc8ead81d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18507,26b99788-542c-4a18-9ea3-099cc8ead81d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18502,6c30b56e-77eb-4b74-809f-286f8b9ec530,LIST_ACCOUNTS,hbciListAccounts,false +18503,6c30b56e-77eb-4b74-809f-286f8b9ec530,LIST_TRANSACTIONS,hbciListTransactions,false +18504,6c30b56e-77eb-4b74-809f-286f8b9ec530,AUTHORIZATION,,false +18505,6c30b56e-77eb-4b74-809f-286f8b9ec530,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18506,6c30b56e-77eb-4b74-809f-286f8b9ec530,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18507,6c30b56e-77eb-4b74-809f-286f8b9ec530,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18508,2e733991-8286-4290-a5aa-826407236cc5,LIST_ACCOUNTS,xs2aListAccounts,true -18509,2e733991-8286-4290-a5aa-826407236cc5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18509,2e733991-8286-4290-a5aa-826407236cc5,LIST_TRANSACTIONS,xs2aListTransactions,true 18510,2e733991-8286-4290-a5aa-826407236cc5,AUTHORIZATION,,true 18511,2e733991-8286-4290-a5aa-826407236cc5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18512,2e733991-8286-4290-a5aa-826407236cc5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18513,2e733991-8286-4290-a5aa-826407236cc5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18514,040fa589-b406-40df-bfbe-9d8c4f1599db,LIST_ACCOUNTS,hbciListAccounts,false -18515,040fa589-b406-40df-bfbe-9d8c4f1599db,LIST_TRANSACTIONS,hbciListTransactions,false -18516,040fa589-b406-40df-bfbe-9d8c4f1599db,AUTHORIZATION,,false -18517,040fa589-b406-40df-bfbe-9d8c4f1599db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18518,040fa589-b406-40df-bfbe-9d8c4f1599db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18519,040fa589-b406-40df-bfbe-9d8c4f1599db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18514,dc3ce440-2432-453f-8242-0050d456a098,LIST_ACCOUNTS,hbciListAccounts,false +18515,dc3ce440-2432-453f-8242-0050d456a098,LIST_TRANSACTIONS,hbciListTransactions,false +18516,dc3ce440-2432-453f-8242-0050d456a098,AUTHORIZATION,,false +18517,dc3ce440-2432-453f-8242-0050d456a098,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18518,dc3ce440-2432-453f-8242-0050d456a098,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18519,dc3ce440-2432-453f-8242-0050d456a098,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18520,18a3e991-42df-476c-b18d-c955de917a30,LIST_ACCOUNTS,xs2aListAccounts,true -18521,18a3e991-42df-476c-b18d-c955de917a30,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18521,18a3e991-42df-476c-b18d-c955de917a30,LIST_TRANSACTIONS,xs2aListTransactions,true 18522,18a3e991-42df-476c-b18d-c955de917a30,AUTHORIZATION,,true 18523,18a3e991-42df-476c-b18d-c955de917a30,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18524,18a3e991-42df-476c-b18d-c955de917a30,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18525,18a3e991-42df-476c-b18d-c955de917a30,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18526,c5c6beae-ec8c-4a7d-abbc-c202b24f9235,LIST_ACCOUNTS,hbciListAccounts,false -18527,c5c6beae-ec8c-4a7d-abbc-c202b24f9235,LIST_TRANSACTIONS,hbciListTransactions,false -18528,c5c6beae-ec8c-4a7d-abbc-c202b24f9235,AUTHORIZATION,,false -18529,c5c6beae-ec8c-4a7d-abbc-c202b24f9235,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18530,c5c6beae-ec8c-4a7d-abbc-c202b24f9235,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18531,c5c6beae-ec8c-4a7d-abbc-c202b24f9235,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18526,532cbbf6-ac32-452c-8a35-3d8c36ee8b85,LIST_ACCOUNTS,hbciListAccounts,false +18527,532cbbf6-ac32-452c-8a35-3d8c36ee8b85,LIST_TRANSACTIONS,hbciListTransactions,false +18528,532cbbf6-ac32-452c-8a35-3d8c36ee8b85,AUTHORIZATION,,false +18529,532cbbf6-ac32-452c-8a35-3d8c36ee8b85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18530,532cbbf6-ac32-452c-8a35-3d8c36ee8b85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18531,532cbbf6-ac32-452c-8a35-3d8c36ee8b85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18532,05ca9e56-cbc9-483f-9dc8-ed5392f6866c,LIST_ACCOUNTS,xs2aListAccounts,true -18533,05ca9e56-cbc9-483f-9dc8-ed5392f6866c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18533,05ca9e56-cbc9-483f-9dc8-ed5392f6866c,LIST_TRANSACTIONS,xs2aListTransactions,true 18534,05ca9e56-cbc9-483f-9dc8-ed5392f6866c,AUTHORIZATION,,true 18535,05ca9e56-cbc9-483f-9dc8-ed5392f6866c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18536,05ca9e56-cbc9-483f-9dc8-ed5392f6866c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18537,05ca9e56-cbc9-483f-9dc8-ed5392f6866c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18538,f8b91b6b-7625-4144-9a42-9f8710d7ea8c,LIST_ACCOUNTS,hbciListAccounts,false -18539,f8b91b6b-7625-4144-9a42-9f8710d7ea8c,LIST_TRANSACTIONS,hbciListTransactions,false -18540,f8b91b6b-7625-4144-9a42-9f8710d7ea8c,AUTHORIZATION,,false -18541,f8b91b6b-7625-4144-9a42-9f8710d7ea8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18542,f8b91b6b-7625-4144-9a42-9f8710d7ea8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18543,f8b91b6b-7625-4144-9a42-9f8710d7ea8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18538,f362b382-4668-40c8-a7fa-2487d0c3ef08,LIST_ACCOUNTS,hbciListAccounts,false +18539,f362b382-4668-40c8-a7fa-2487d0c3ef08,LIST_TRANSACTIONS,hbciListTransactions,false +18540,f362b382-4668-40c8-a7fa-2487d0c3ef08,AUTHORIZATION,,false +18541,f362b382-4668-40c8-a7fa-2487d0c3ef08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18542,f362b382-4668-40c8-a7fa-2487d0c3ef08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18543,f362b382-4668-40c8-a7fa-2487d0c3ef08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18544,d463c2e6-0a54-492d-a11d-ced2cb3b6d69,LIST_ACCOUNTS,xs2aListAccounts,true -18545,d463c2e6-0a54-492d-a11d-ced2cb3b6d69,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18545,d463c2e6-0a54-492d-a11d-ced2cb3b6d69,LIST_TRANSACTIONS,xs2aListTransactions,true 18546,d463c2e6-0a54-492d-a11d-ced2cb3b6d69,AUTHORIZATION,,true 18547,d463c2e6-0a54-492d-a11d-ced2cb3b6d69,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18548,d463c2e6-0a54-492d-a11d-ced2cb3b6d69,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18549,d463c2e6-0a54-492d-a11d-ced2cb3b6d69,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18550,0d2ba03e-7db1-4a93-b80b-ced60b88f952,LIST_ACCOUNTS,hbciListAccounts,false -18551,0d2ba03e-7db1-4a93-b80b-ced60b88f952,LIST_TRANSACTIONS,hbciListTransactions,false -18552,0d2ba03e-7db1-4a93-b80b-ced60b88f952,AUTHORIZATION,,false -18553,0d2ba03e-7db1-4a93-b80b-ced60b88f952,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18554,0d2ba03e-7db1-4a93-b80b-ced60b88f952,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18555,0d2ba03e-7db1-4a93-b80b-ced60b88f952,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18550,ab790258-1507-40f5-a820-6b81ad8ab338,LIST_ACCOUNTS,hbciListAccounts,false +18551,ab790258-1507-40f5-a820-6b81ad8ab338,LIST_TRANSACTIONS,hbciListTransactions,false +18552,ab790258-1507-40f5-a820-6b81ad8ab338,AUTHORIZATION,,false +18553,ab790258-1507-40f5-a820-6b81ad8ab338,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18554,ab790258-1507-40f5-a820-6b81ad8ab338,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18555,ab790258-1507-40f5-a820-6b81ad8ab338,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18556,86518b48-2bef-4865-b338-2bde364c916d,LIST_ACCOUNTS,xs2aListAccounts,true -18557,86518b48-2bef-4865-b338-2bde364c916d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18557,86518b48-2bef-4865-b338-2bde364c916d,LIST_TRANSACTIONS,xs2aListTransactions,true 18558,86518b48-2bef-4865-b338-2bde364c916d,AUTHORIZATION,,true 18559,86518b48-2bef-4865-b338-2bde364c916d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18560,86518b48-2bef-4865-b338-2bde364c916d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18561,86518b48-2bef-4865-b338-2bde364c916d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18562,5425a71d-8b55-4762-948f-fa364bc0bcd1,LIST_ACCOUNTS,hbciListAccounts,false -18563,5425a71d-8b55-4762-948f-fa364bc0bcd1,LIST_TRANSACTIONS,hbciListTransactions,false -18564,5425a71d-8b55-4762-948f-fa364bc0bcd1,AUTHORIZATION,,false -18565,5425a71d-8b55-4762-948f-fa364bc0bcd1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18566,5425a71d-8b55-4762-948f-fa364bc0bcd1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18567,5425a71d-8b55-4762-948f-fa364bc0bcd1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18562,511286c9-4d42-4865-aa1a-7f3a862b24d0,LIST_ACCOUNTS,hbciListAccounts,false +18563,511286c9-4d42-4865-aa1a-7f3a862b24d0,LIST_TRANSACTIONS,hbciListTransactions,false +18564,511286c9-4d42-4865-aa1a-7f3a862b24d0,AUTHORIZATION,,false +18565,511286c9-4d42-4865-aa1a-7f3a862b24d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18566,511286c9-4d42-4865-aa1a-7f3a862b24d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18567,511286c9-4d42-4865-aa1a-7f3a862b24d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18568,fe4505d6-5412-4f0b-9cf1-baa7694fc73d,LIST_ACCOUNTS,xs2aListAccounts,true -18569,fe4505d6-5412-4f0b-9cf1-baa7694fc73d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18569,fe4505d6-5412-4f0b-9cf1-baa7694fc73d,LIST_TRANSACTIONS,xs2aListTransactions,true 18570,fe4505d6-5412-4f0b-9cf1-baa7694fc73d,AUTHORIZATION,,true 18571,fe4505d6-5412-4f0b-9cf1-baa7694fc73d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18572,fe4505d6-5412-4f0b-9cf1-baa7694fc73d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18573,fe4505d6-5412-4f0b-9cf1-baa7694fc73d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18574,16e506a9-ef3a-425a-ba62-90a60f25f62d,LIST_ACCOUNTS,hbciListAccounts,false -18575,16e506a9-ef3a-425a-ba62-90a60f25f62d,LIST_TRANSACTIONS,hbciListTransactions,false -18576,16e506a9-ef3a-425a-ba62-90a60f25f62d,AUTHORIZATION,,false -18577,16e506a9-ef3a-425a-ba62-90a60f25f62d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18578,16e506a9-ef3a-425a-ba62-90a60f25f62d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18579,16e506a9-ef3a-425a-ba62-90a60f25f62d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18574,c980a357-d81a-4cfa-9f4e-bca1449289c6,LIST_ACCOUNTS,hbciListAccounts,false +18575,c980a357-d81a-4cfa-9f4e-bca1449289c6,LIST_TRANSACTIONS,hbciListTransactions,false +18576,c980a357-d81a-4cfa-9f4e-bca1449289c6,AUTHORIZATION,,false +18577,c980a357-d81a-4cfa-9f4e-bca1449289c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18578,c980a357-d81a-4cfa-9f4e-bca1449289c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18579,c980a357-d81a-4cfa-9f4e-bca1449289c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18580,1c4b2e31-f3dd-462b-8b44-7360b590ba7c,LIST_ACCOUNTS,xs2aListAccounts,true -18581,1c4b2e31-f3dd-462b-8b44-7360b590ba7c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18581,1c4b2e31-f3dd-462b-8b44-7360b590ba7c,LIST_TRANSACTIONS,xs2aListTransactions,true 18582,1c4b2e31-f3dd-462b-8b44-7360b590ba7c,AUTHORIZATION,,true 18583,1c4b2e31-f3dd-462b-8b44-7360b590ba7c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18584,1c4b2e31-f3dd-462b-8b44-7360b590ba7c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18585,1c4b2e31-f3dd-462b-8b44-7360b590ba7c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18586,29312a5b-e56f-4b29-9004-a3493e77fd59,LIST_ACCOUNTS,hbciListAccounts,false -18587,29312a5b-e56f-4b29-9004-a3493e77fd59,LIST_TRANSACTIONS,hbciListTransactions,false -18588,29312a5b-e56f-4b29-9004-a3493e77fd59,AUTHORIZATION,,false -18589,29312a5b-e56f-4b29-9004-a3493e77fd59,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18590,29312a5b-e56f-4b29-9004-a3493e77fd59,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18591,29312a5b-e56f-4b29-9004-a3493e77fd59,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18586,fe3fc192-ba1f-4b2f-ba0f-5ce09cb6d793,LIST_ACCOUNTS,hbciListAccounts,false +18587,fe3fc192-ba1f-4b2f-ba0f-5ce09cb6d793,LIST_TRANSACTIONS,hbciListTransactions,false +18588,fe3fc192-ba1f-4b2f-ba0f-5ce09cb6d793,AUTHORIZATION,,false +18589,fe3fc192-ba1f-4b2f-ba0f-5ce09cb6d793,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18590,fe3fc192-ba1f-4b2f-ba0f-5ce09cb6d793,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18591,fe3fc192-ba1f-4b2f-ba0f-5ce09cb6d793,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18592,004fc02d-55c9-4fb8-a37b-5e940b5fe136,LIST_ACCOUNTS,xs2aListAccounts,true -18593,004fc02d-55c9-4fb8-a37b-5e940b5fe136,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18593,004fc02d-55c9-4fb8-a37b-5e940b5fe136,LIST_TRANSACTIONS,xs2aListTransactions,true 18594,004fc02d-55c9-4fb8-a37b-5e940b5fe136,AUTHORIZATION,,true 18595,004fc02d-55c9-4fb8-a37b-5e940b5fe136,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18596,004fc02d-55c9-4fb8-a37b-5e940b5fe136,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18597,004fc02d-55c9-4fb8-a37b-5e940b5fe136,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18598,a660c4ca-95d1-4072-9507-c9bb3dfb8458,LIST_ACCOUNTS,hbciListAccounts,false -18599,a660c4ca-95d1-4072-9507-c9bb3dfb8458,LIST_TRANSACTIONS,hbciListTransactions,false -18600,a660c4ca-95d1-4072-9507-c9bb3dfb8458,AUTHORIZATION,,false -18601,a660c4ca-95d1-4072-9507-c9bb3dfb8458,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18602,a660c4ca-95d1-4072-9507-c9bb3dfb8458,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18603,a660c4ca-95d1-4072-9507-c9bb3dfb8458,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18598,3747f30e-c52a-4567-8597-c57daa6ef9f9,LIST_ACCOUNTS,hbciListAccounts,false +18599,3747f30e-c52a-4567-8597-c57daa6ef9f9,LIST_TRANSACTIONS,hbciListTransactions,false +18600,3747f30e-c52a-4567-8597-c57daa6ef9f9,AUTHORIZATION,,false +18601,3747f30e-c52a-4567-8597-c57daa6ef9f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18602,3747f30e-c52a-4567-8597-c57daa6ef9f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18603,3747f30e-c52a-4567-8597-c57daa6ef9f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18604,be5b497c-66d3-499b-8687-d453d53a8cdc,LIST_ACCOUNTS,xs2aListAccounts,true -18605,be5b497c-66d3-499b-8687-d453d53a8cdc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18605,be5b497c-66d3-499b-8687-d453d53a8cdc,LIST_TRANSACTIONS,xs2aListTransactions,true 18606,be5b497c-66d3-499b-8687-d453d53a8cdc,AUTHORIZATION,,true 18607,be5b497c-66d3-499b-8687-d453d53a8cdc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18608,be5b497c-66d3-499b-8687-d453d53a8cdc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18609,be5b497c-66d3-499b-8687-d453d53a8cdc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18610,f47c62eb-93a2-45c9-a4f2-6772296f69c4,LIST_ACCOUNTS,hbciListAccounts,false -18611,f47c62eb-93a2-45c9-a4f2-6772296f69c4,LIST_TRANSACTIONS,hbciListTransactions,false -18612,f47c62eb-93a2-45c9-a4f2-6772296f69c4,AUTHORIZATION,,false -18613,f47c62eb-93a2-45c9-a4f2-6772296f69c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18614,f47c62eb-93a2-45c9-a4f2-6772296f69c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18615,f47c62eb-93a2-45c9-a4f2-6772296f69c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18610,0ec5f40c-8e2b-48d4-8d9a-898ef0475600,LIST_ACCOUNTS,hbciListAccounts,false +18611,0ec5f40c-8e2b-48d4-8d9a-898ef0475600,LIST_TRANSACTIONS,hbciListTransactions,false +18612,0ec5f40c-8e2b-48d4-8d9a-898ef0475600,AUTHORIZATION,,false +18613,0ec5f40c-8e2b-48d4-8d9a-898ef0475600,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18614,0ec5f40c-8e2b-48d4-8d9a-898ef0475600,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18615,0ec5f40c-8e2b-48d4-8d9a-898ef0475600,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18616,bee2ecb0-d181-40af-927d-705bf5c08aed,LIST_ACCOUNTS,xs2aListAccounts,true -18617,bee2ecb0-d181-40af-927d-705bf5c08aed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18617,bee2ecb0-d181-40af-927d-705bf5c08aed,LIST_TRANSACTIONS,xs2aListTransactions,true 18618,bee2ecb0-d181-40af-927d-705bf5c08aed,AUTHORIZATION,,true 18619,bee2ecb0-d181-40af-927d-705bf5c08aed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18620,bee2ecb0-d181-40af-927d-705bf5c08aed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18621,bee2ecb0-d181-40af-927d-705bf5c08aed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18622,a87be49c-5d85-4687-9def-c8cdfc94304f,LIST_ACCOUNTS,hbciListAccounts,false -18623,a87be49c-5d85-4687-9def-c8cdfc94304f,LIST_TRANSACTIONS,hbciListTransactions,false -18624,a87be49c-5d85-4687-9def-c8cdfc94304f,AUTHORIZATION,,false -18625,a87be49c-5d85-4687-9def-c8cdfc94304f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18626,a87be49c-5d85-4687-9def-c8cdfc94304f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18627,a87be49c-5d85-4687-9def-c8cdfc94304f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18622,f33f6b3b-0d20-44d4-86ec-b2cae1f9c1a6,LIST_ACCOUNTS,hbciListAccounts,false +18623,f33f6b3b-0d20-44d4-86ec-b2cae1f9c1a6,LIST_TRANSACTIONS,hbciListTransactions,false +18624,f33f6b3b-0d20-44d4-86ec-b2cae1f9c1a6,AUTHORIZATION,,false +18625,f33f6b3b-0d20-44d4-86ec-b2cae1f9c1a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18626,f33f6b3b-0d20-44d4-86ec-b2cae1f9c1a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18627,f33f6b3b-0d20-44d4-86ec-b2cae1f9c1a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18628,9feb4137-8c89-49d6-a3d0-709ae920c660,LIST_ACCOUNTS,xs2aListAccounts,true -18629,9feb4137-8c89-49d6-a3d0-709ae920c660,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18629,9feb4137-8c89-49d6-a3d0-709ae920c660,LIST_TRANSACTIONS,xs2aListTransactions,true 18630,9feb4137-8c89-49d6-a3d0-709ae920c660,AUTHORIZATION,,true 18631,9feb4137-8c89-49d6-a3d0-709ae920c660,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18632,9feb4137-8c89-49d6-a3d0-709ae920c660,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18633,9feb4137-8c89-49d6-a3d0-709ae920c660,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18634,6a232db0-204b-42aa-b171-b98a9bb861d0,LIST_ACCOUNTS,hbciListAccounts,false -18635,6a232db0-204b-42aa-b171-b98a9bb861d0,LIST_TRANSACTIONS,hbciListTransactions,false -18636,6a232db0-204b-42aa-b171-b98a9bb861d0,AUTHORIZATION,,false -18637,6a232db0-204b-42aa-b171-b98a9bb861d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18638,6a232db0-204b-42aa-b171-b98a9bb861d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18639,6a232db0-204b-42aa-b171-b98a9bb861d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18634,521bf02f-ebe8-45c5-98af-feec541a372c,LIST_ACCOUNTS,hbciListAccounts,false +18635,521bf02f-ebe8-45c5-98af-feec541a372c,LIST_TRANSACTIONS,hbciListTransactions,false +18636,521bf02f-ebe8-45c5-98af-feec541a372c,AUTHORIZATION,,false +18637,521bf02f-ebe8-45c5-98af-feec541a372c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18638,521bf02f-ebe8-45c5-98af-feec541a372c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18639,521bf02f-ebe8-45c5-98af-feec541a372c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18640,839605be-52b8-4db6-ac5d-cf6d5f048b13,LIST_ACCOUNTS,xs2aListAccounts,true -18641,839605be-52b8-4db6-ac5d-cf6d5f048b13,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18641,839605be-52b8-4db6-ac5d-cf6d5f048b13,LIST_TRANSACTIONS,xs2aListTransactions,true 18642,839605be-52b8-4db6-ac5d-cf6d5f048b13,AUTHORIZATION,,true 18643,839605be-52b8-4db6-ac5d-cf6d5f048b13,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18644,839605be-52b8-4db6-ac5d-cf6d5f048b13,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18645,839605be-52b8-4db6-ac5d-cf6d5f048b13,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18646,c9823bf6-6904-4e62-8cd7-e21cda13ee99,LIST_ACCOUNTS,hbciListAccounts,false -18647,c9823bf6-6904-4e62-8cd7-e21cda13ee99,LIST_TRANSACTIONS,hbciListTransactions,false -18648,c9823bf6-6904-4e62-8cd7-e21cda13ee99,AUTHORIZATION,,false -18649,c9823bf6-6904-4e62-8cd7-e21cda13ee99,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18650,c9823bf6-6904-4e62-8cd7-e21cda13ee99,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18651,c9823bf6-6904-4e62-8cd7-e21cda13ee99,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18646,1358aa8f-0b0f-4d66-8069-2f39949f3e4b,LIST_ACCOUNTS,hbciListAccounts,false +18647,1358aa8f-0b0f-4d66-8069-2f39949f3e4b,LIST_TRANSACTIONS,hbciListTransactions,false +18648,1358aa8f-0b0f-4d66-8069-2f39949f3e4b,AUTHORIZATION,,false +18649,1358aa8f-0b0f-4d66-8069-2f39949f3e4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18650,1358aa8f-0b0f-4d66-8069-2f39949f3e4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18651,1358aa8f-0b0f-4d66-8069-2f39949f3e4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18652,22b4513c-4505-49b7-b5bc-9805a98d8166,LIST_ACCOUNTS,xs2aListAccounts,true -18653,22b4513c-4505-49b7-b5bc-9805a98d8166,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18653,22b4513c-4505-49b7-b5bc-9805a98d8166,LIST_TRANSACTIONS,xs2aListTransactions,true 18654,22b4513c-4505-49b7-b5bc-9805a98d8166,AUTHORIZATION,,true 18655,22b4513c-4505-49b7-b5bc-9805a98d8166,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18656,22b4513c-4505-49b7-b5bc-9805a98d8166,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18657,22b4513c-4505-49b7-b5bc-9805a98d8166,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18658,b9dba798-a721-4a99-821c-8eb7f2a02147,LIST_ACCOUNTS,hbciListAccounts,false -18659,b9dba798-a721-4a99-821c-8eb7f2a02147,LIST_TRANSACTIONS,hbciListTransactions,false -18660,b9dba798-a721-4a99-821c-8eb7f2a02147,AUTHORIZATION,,false -18661,b9dba798-a721-4a99-821c-8eb7f2a02147,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18662,b9dba798-a721-4a99-821c-8eb7f2a02147,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18663,b9dba798-a721-4a99-821c-8eb7f2a02147,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18658,16c66f68-0c38-493e-962d-440b695bf98a,LIST_ACCOUNTS,hbciListAccounts,false +18659,16c66f68-0c38-493e-962d-440b695bf98a,LIST_TRANSACTIONS,hbciListTransactions,false +18660,16c66f68-0c38-493e-962d-440b695bf98a,AUTHORIZATION,,false +18661,16c66f68-0c38-493e-962d-440b695bf98a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18662,16c66f68-0c38-493e-962d-440b695bf98a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18663,16c66f68-0c38-493e-962d-440b695bf98a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18664,2ca5601d-5239-4e60-bfeb-d35dfce0ffb7,LIST_ACCOUNTS,xs2aListAccounts,true -18665,2ca5601d-5239-4e60-bfeb-d35dfce0ffb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18665,2ca5601d-5239-4e60-bfeb-d35dfce0ffb7,LIST_TRANSACTIONS,xs2aListTransactions,true 18666,2ca5601d-5239-4e60-bfeb-d35dfce0ffb7,AUTHORIZATION,,true 18667,2ca5601d-5239-4e60-bfeb-d35dfce0ffb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18668,2ca5601d-5239-4e60-bfeb-d35dfce0ffb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18669,2ca5601d-5239-4e60-bfeb-d35dfce0ffb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18670,91537749-e15a-4ecc-8b9b-525a5677378e,LIST_ACCOUNTS,hbciListAccounts,false -18671,91537749-e15a-4ecc-8b9b-525a5677378e,LIST_TRANSACTIONS,hbciListTransactions,false -18672,91537749-e15a-4ecc-8b9b-525a5677378e,AUTHORIZATION,,false -18673,91537749-e15a-4ecc-8b9b-525a5677378e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18674,91537749-e15a-4ecc-8b9b-525a5677378e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18675,91537749-e15a-4ecc-8b9b-525a5677378e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18670,61faff8a-7b4e-4508-95ef-ef8f43ee4fa1,LIST_ACCOUNTS,hbciListAccounts,false +18671,61faff8a-7b4e-4508-95ef-ef8f43ee4fa1,LIST_TRANSACTIONS,hbciListTransactions,false +18672,61faff8a-7b4e-4508-95ef-ef8f43ee4fa1,AUTHORIZATION,,false +18673,61faff8a-7b4e-4508-95ef-ef8f43ee4fa1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18674,61faff8a-7b4e-4508-95ef-ef8f43ee4fa1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18675,61faff8a-7b4e-4508-95ef-ef8f43ee4fa1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18676,6b9cab3b-bb01-45c2-bf75-a52e105cfe78,LIST_ACCOUNTS,xs2aListAccounts,true -18677,6b9cab3b-bb01-45c2-bf75-a52e105cfe78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18677,6b9cab3b-bb01-45c2-bf75-a52e105cfe78,LIST_TRANSACTIONS,xs2aListTransactions,true 18678,6b9cab3b-bb01-45c2-bf75-a52e105cfe78,AUTHORIZATION,,true 18679,6b9cab3b-bb01-45c2-bf75-a52e105cfe78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18680,6b9cab3b-bb01-45c2-bf75-a52e105cfe78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18681,6b9cab3b-bb01-45c2-bf75-a52e105cfe78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18682,6906b4d8-51e7-4a4f-9990-92f83ef0c4ef,LIST_ACCOUNTS,hbciListAccounts,false -18683,6906b4d8-51e7-4a4f-9990-92f83ef0c4ef,LIST_TRANSACTIONS,hbciListTransactions,false -18684,6906b4d8-51e7-4a4f-9990-92f83ef0c4ef,AUTHORIZATION,,false -18685,6906b4d8-51e7-4a4f-9990-92f83ef0c4ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18686,6906b4d8-51e7-4a4f-9990-92f83ef0c4ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18687,6906b4d8-51e7-4a4f-9990-92f83ef0c4ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18682,9c292ea1-eeed-459f-9105-14b30038f0c5,LIST_ACCOUNTS,hbciListAccounts,false +18683,9c292ea1-eeed-459f-9105-14b30038f0c5,LIST_TRANSACTIONS,hbciListTransactions,false +18684,9c292ea1-eeed-459f-9105-14b30038f0c5,AUTHORIZATION,,false +18685,9c292ea1-eeed-459f-9105-14b30038f0c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18686,9c292ea1-eeed-459f-9105-14b30038f0c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18687,9c292ea1-eeed-459f-9105-14b30038f0c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18688,78baaefd-2111-4bfe-a61d-0952a8b597e2,LIST_ACCOUNTS,xs2aListAccounts,true -18689,78baaefd-2111-4bfe-a61d-0952a8b597e2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18689,78baaefd-2111-4bfe-a61d-0952a8b597e2,LIST_TRANSACTIONS,xs2aListTransactions,true 18690,78baaefd-2111-4bfe-a61d-0952a8b597e2,AUTHORIZATION,,true 18691,78baaefd-2111-4bfe-a61d-0952a8b597e2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18692,78baaefd-2111-4bfe-a61d-0952a8b597e2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18693,78baaefd-2111-4bfe-a61d-0952a8b597e2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18694,1185b039-888b-41fc-84c0-053def1a1855,LIST_ACCOUNTS,hbciListAccounts,false -18695,1185b039-888b-41fc-84c0-053def1a1855,LIST_TRANSACTIONS,hbciListTransactions,false -18696,1185b039-888b-41fc-84c0-053def1a1855,AUTHORIZATION,,false -18697,1185b039-888b-41fc-84c0-053def1a1855,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18698,1185b039-888b-41fc-84c0-053def1a1855,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18699,1185b039-888b-41fc-84c0-053def1a1855,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18694,583cf0fb-7d54-4531-812b-c8510e0d7b4e,LIST_ACCOUNTS,hbciListAccounts,false +18695,583cf0fb-7d54-4531-812b-c8510e0d7b4e,LIST_TRANSACTIONS,hbciListTransactions,false +18696,583cf0fb-7d54-4531-812b-c8510e0d7b4e,AUTHORIZATION,,false +18697,583cf0fb-7d54-4531-812b-c8510e0d7b4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18698,583cf0fb-7d54-4531-812b-c8510e0d7b4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18699,583cf0fb-7d54-4531-812b-c8510e0d7b4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18700,c72b3eb6-077d-4325-823b-feb3f1d1f24a,LIST_ACCOUNTS,xs2aListAccounts,true -18701,c72b3eb6-077d-4325-823b-feb3f1d1f24a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18701,c72b3eb6-077d-4325-823b-feb3f1d1f24a,LIST_TRANSACTIONS,xs2aListTransactions,true 18702,c72b3eb6-077d-4325-823b-feb3f1d1f24a,AUTHORIZATION,,true 18703,c72b3eb6-077d-4325-823b-feb3f1d1f24a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18704,c72b3eb6-077d-4325-823b-feb3f1d1f24a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18705,c72b3eb6-077d-4325-823b-feb3f1d1f24a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18706,723d0f20-fda9-46fd-9a58-2ac79d3d4f71,LIST_ACCOUNTS,hbciListAccounts,false -18707,723d0f20-fda9-46fd-9a58-2ac79d3d4f71,LIST_TRANSACTIONS,hbciListTransactions,false -18708,723d0f20-fda9-46fd-9a58-2ac79d3d4f71,AUTHORIZATION,,false -18709,723d0f20-fda9-46fd-9a58-2ac79d3d4f71,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18710,723d0f20-fda9-46fd-9a58-2ac79d3d4f71,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18711,723d0f20-fda9-46fd-9a58-2ac79d3d4f71,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18706,68212713-a578-4c47-a2f0-0a1ded0a2fad,LIST_ACCOUNTS,hbciListAccounts,false +18707,68212713-a578-4c47-a2f0-0a1ded0a2fad,LIST_TRANSACTIONS,hbciListTransactions,false +18708,68212713-a578-4c47-a2f0-0a1ded0a2fad,AUTHORIZATION,,false +18709,68212713-a578-4c47-a2f0-0a1ded0a2fad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18710,68212713-a578-4c47-a2f0-0a1ded0a2fad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18711,68212713-a578-4c47-a2f0-0a1ded0a2fad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18712,60882673-e4f4-4aca-a5ae-cb2cc93ca859,LIST_ACCOUNTS,xs2aListAccounts,true -18713,60882673-e4f4-4aca-a5ae-cb2cc93ca859,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18713,60882673-e4f4-4aca-a5ae-cb2cc93ca859,LIST_TRANSACTIONS,xs2aListTransactions,true 18714,60882673-e4f4-4aca-a5ae-cb2cc93ca859,AUTHORIZATION,,true 18715,60882673-e4f4-4aca-a5ae-cb2cc93ca859,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18716,60882673-e4f4-4aca-a5ae-cb2cc93ca859,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18717,60882673-e4f4-4aca-a5ae-cb2cc93ca859,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18718,fca5b9e8-70c7-45eb-aaf7-e6ed8089e29e,LIST_ACCOUNTS,hbciListAccounts,false -18719,fca5b9e8-70c7-45eb-aaf7-e6ed8089e29e,LIST_TRANSACTIONS,hbciListTransactions,false -18720,fca5b9e8-70c7-45eb-aaf7-e6ed8089e29e,AUTHORIZATION,,false -18721,fca5b9e8-70c7-45eb-aaf7-e6ed8089e29e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18722,fca5b9e8-70c7-45eb-aaf7-e6ed8089e29e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18723,fca5b9e8-70c7-45eb-aaf7-e6ed8089e29e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18718,478832fd-ff6b-4f5e-ad4b-6884d0322181,LIST_ACCOUNTS,hbciListAccounts,false +18719,478832fd-ff6b-4f5e-ad4b-6884d0322181,LIST_TRANSACTIONS,hbciListTransactions,false +18720,478832fd-ff6b-4f5e-ad4b-6884d0322181,AUTHORIZATION,,false +18721,478832fd-ff6b-4f5e-ad4b-6884d0322181,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18722,478832fd-ff6b-4f5e-ad4b-6884d0322181,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18723,478832fd-ff6b-4f5e-ad4b-6884d0322181,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18724,6e970529-a1f1-49bf-95a8-2322d568fed2,LIST_ACCOUNTS,xs2aListAccounts,true -18725,6e970529-a1f1-49bf-95a8-2322d568fed2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18725,6e970529-a1f1-49bf-95a8-2322d568fed2,LIST_TRANSACTIONS,xs2aListTransactions,true 18726,6e970529-a1f1-49bf-95a8-2322d568fed2,AUTHORIZATION,,true 18727,6e970529-a1f1-49bf-95a8-2322d568fed2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18728,6e970529-a1f1-49bf-95a8-2322d568fed2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18729,6e970529-a1f1-49bf-95a8-2322d568fed2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18730,a233635d-f20c-45d4-b1d5-774ce720f48f,LIST_ACCOUNTS,hbciListAccounts,false -18731,a233635d-f20c-45d4-b1d5-774ce720f48f,LIST_TRANSACTIONS,hbciListTransactions,false -18732,a233635d-f20c-45d4-b1d5-774ce720f48f,AUTHORIZATION,,false -18733,a233635d-f20c-45d4-b1d5-774ce720f48f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18734,a233635d-f20c-45d4-b1d5-774ce720f48f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18735,a233635d-f20c-45d4-b1d5-774ce720f48f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18730,f3b999bf-24d9-4c71-9805-9feb6bd8172d,LIST_ACCOUNTS,hbciListAccounts,false +18731,f3b999bf-24d9-4c71-9805-9feb6bd8172d,LIST_TRANSACTIONS,hbciListTransactions,false +18732,f3b999bf-24d9-4c71-9805-9feb6bd8172d,AUTHORIZATION,,false +18733,f3b999bf-24d9-4c71-9805-9feb6bd8172d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18734,f3b999bf-24d9-4c71-9805-9feb6bd8172d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18735,f3b999bf-24d9-4c71-9805-9feb6bd8172d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18736,18ba562d-f519-46f5-b4d0-341c856dde4a,LIST_ACCOUNTS,xs2aListAccounts,true -18737,18ba562d-f519-46f5-b4d0-341c856dde4a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18737,18ba562d-f519-46f5-b4d0-341c856dde4a,LIST_TRANSACTIONS,xs2aListTransactions,true 18738,18ba562d-f519-46f5-b4d0-341c856dde4a,AUTHORIZATION,,true 18739,18ba562d-f519-46f5-b4d0-341c856dde4a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18740,18ba562d-f519-46f5-b4d0-341c856dde4a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18741,18ba562d-f519-46f5-b4d0-341c856dde4a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18742,65837a26-58fb-4207-88cc-6d2866b75aca,LIST_ACCOUNTS,hbciListAccounts,false -18743,65837a26-58fb-4207-88cc-6d2866b75aca,LIST_TRANSACTIONS,hbciListTransactions,false -18744,65837a26-58fb-4207-88cc-6d2866b75aca,AUTHORIZATION,,false -18745,65837a26-58fb-4207-88cc-6d2866b75aca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18746,65837a26-58fb-4207-88cc-6d2866b75aca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18747,65837a26-58fb-4207-88cc-6d2866b75aca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18742,67f382ec-13b0-4f0e-a81f-d322b67da409,LIST_ACCOUNTS,hbciListAccounts,false +18743,67f382ec-13b0-4f0e-a81f-d322b67da409,LIST_TRANSACTIONS,hbciListTransactions,false +18744,67f382ec-13b0-4f0e-a81f-d322b67da409,AUTHORIZATION,,false +18745,67f382ec-13b0-4f0e-a81f-d322b67da409,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18746,67f382ec-13b0-4f0e-a81f-d322b67da409,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18747,67f382ec-13b0-4f0e-a81f-d322b67da409,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18748,02b1c148-b1bf-479e-a5a6-c4eb9f9ce97f,LIST_ACCOUNTS,xs2aListAccounts,true -18749,02b1c148-b1bf-479e-a5a6-c4eb9f9ce97f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18749,02b1c148-b1bf-479e-a5a6-c4eb9f9ce97f,LIST_TRANSACTIONS,xs2aListTransactions,true 18750,02b1c148-b1bf-479e-a5a6-c4eb9f9ce97f,AUTHORIZATION,,true 18751,02b1c148-b1bf-479e-a5a6-c4eb9f9ce97f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18752,02b1c148-b1bf-479e-a5a6-c4eb9f9ce97f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18753,02b1c148-b1bf-479e-a5a6-c4eb9f9ce97f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18754,b3ba53f1-998b-4fea-a5ed-54dc956050a6,LIST_ACCOUNTS,hbciListAccounts,false -18755,b3ba53f1-998b-4fea-a5ed-54dc956050a6,LIST_TRANSACTIONS,hbciListTransactions,false -18756,b3ba53f1-998b-4fea-a5ed-54dc956050a6,AUTHORIZATION,,false -18757,b3ba53f1-998b-4fea-a5ed-54dc956050a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18758,b3ba53f1-998b-4fea-a5ed-54dc956050a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18759,b3ba53f1-998b-4fea-a5ed-54dc956050a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18754,e16dcc9d-266c-45ac-9ca9-b32ddfd8c003,LIST_ACCOUNTS,hbciListAccounts,false +18755,e16dcc9d-266c-45ac-9ca9-b32ddfd8c003,LIST_TRANSACTIONS,hbciListTransactions,false +18756,e16dcc9d-266c-45ac-9ca9-b32ddfd8c003,AUTHORIZATION,,false +18757,e16dcc9d-266c-45ac-9ca9-b32ddfd8c003,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18758,e16dcc9d-266c-45ac-9ca9-b32ddfd8c003,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18759,e16dcc9d-266c-45ac-9ca9-b32ddfd8c003,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18760,f951829e-5dad-4bd2-8c0d-d3df148f93d2,LIST_ACCOUNTS,xs2aListAccounts,true -18761,f951829e-5dad-4bd2-8c0d-d3df148f93d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18761,f951829e-5dad-4bd2-8c0d-d3df148f93d2,LIST_TRANSACTIONS,xs2aListTransactions,true 18762,f951829e-5dad-4bd2-8c0d-d3df148f93d2,AUTHORIZATION,,true 18763,f951829e-5dad-4bd2-8c0d-d3df148f93d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18764,f951829e-5dad-4bd2-8c0d-d3df148f93d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18765,f951829e-5dad-4bd2-8c0d-d3df148f93d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18766,3e73bbde-e456-4b02-af9b-a95a8891c5b6,LIST_ACCOUNTS,hbciListAccounts,false -18767,3e73bbde-e456-4b02-af9b-a95a8891c5b6,LIST_TRANSACTIONS,hbciListTransactions,false -18768,3e73bbde-e456-4b02-af9b-a95a8891c5b6,AUTHORIZATION,,false -18769,3e73bbde-e456-4b02-af9b-a95a8891c5b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18770,3e73bbde-e456-4b02-af9b-a95a8891c5b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18771,3e73bbde-e456-4b02-af9b-a95a8891c5b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18766,91d3c922-1ed3-41d1-b591-c616a8ec4ceb,LIST_ACCOUNTS,hbciListAccounts,false +18767,91d3c922-1ed3-41d1-b591-c616a8ec4ceb,LIST_TRANSACTIONS,hbciListTransactions,false +18768,91d3c922-1ed3-41d1-b591-c616a8ec4ceb,AUTHORIZATION,,false +18769,91d3c922-1ed3-41d1-b591-c616a8ec4ceb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18770,91d3c922-1ed3-41d1-b591-c616a8ec4ceb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18771,91d3c922-1ed3-41d1-b591-c616a8ec4ceb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18772,f5e32d1e-ba14-44a1-8d05-59b751e30278,LIST_ACCOUNTS,xs2aListAccounts,true -18773,f5e32d1e-ba14-44a1-8d05-59b751e30278,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18773,f5e32d1e-ba14-44a1-8d05-59b751e30278,LIST_TRANSACTIONS,xs2aListTransactions,true 18774,f5e32d1e-ba14-44a1-8d05-59b751e30278,AUTHORIZATION,,true 18775,f5e32d1e-ba14-44a1-8d05-59b751e30278,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18776,f5e32d1e-ba14-44a1-8d05-59b751e30278,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18777,f5e32d1e-ba14-44a1-8d05-59b751e30278,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18778,6422bb5d-d292-40e8-b190-eaab31e46077,LIST_ACCOUNTS,hbciListAccounts,false -18779,6422bb5d-d292-40e8-b190-eaab31e46077,LIST_TRANSACTIONS,hbciListTransactions,false -18780,6422bb5d-d292-40e8-b190-eaab31e46077,AUTHORIZATION,,false -18781,6422bb5d-d292-40e8-b190-eaab31e46077,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18782,6422bb5d-d292-40e8-b190-eaab31e46077,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18783,6422bb5d-d292-40e8-b190-eaab31e46077,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18778,2b6031be-4020-47a8-8504-20a1ba4d046e,LIST_ACCOUNTS,hbciListAccounts,false +18779,2b6031be-4020-47a8-8504-20a1ba4d046e,LIST_TRANSACTIONS,hbciListTransactions,false +18780,2b6031be-4020-47a8-8504-20a1ba4d046e,AUTHORIZATION,,false +18781,2b6031be-4020-47a8-8504-20a1ba4d046e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18782,2b6031be-4020-47a8-8504-20a1ba4d046e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18783,2b6031be-4020-47a8-8504-20a1ba4d046e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18784,72194521-cb35-4000-bf02-1738ea07959f,LIST_ACCOUNTS,xs2aListAccounts,true -18785,72194521-cb35-4000-bf02-1738ea07959f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18785,72194521-cb35-4000-bf02-1738ea07959f,LIST_TRANSACTIONS,xs2aListTransactions,true 18786,72194521-cb35-4000-bf02-1738ea07959f,AUTHORIZATION,,true 18787,72194521-cb35-4000-bf02-1738ea07959f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18788,72194521-cb35-4000-bf02-1738ea07959f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18789,72194521-cb35-4000-bf02-1738ea07959f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18790,66eeef0b-0ce2-4c7d-ac9f-111c984c7787,LIST_ACCOUNTS,hbciListAccounts,false -18791,66eeef0b-0ce2-4c7d-ac9f-111c984c7787,LIST_TRANSACTIONS,hbciListTransactions,false -18792,66eeef0b-0ce2-4c7d-ac9f-111c984c7787,AUTHORIZATION,,false -18793,66eeef0b-0ce2-4c7d-ac9f-111c984c7787,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18794,66eeef0b-0ce2-4c7d-ac9f-111c984c7787,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18795,66eeef0b-0ce2-4c7d-ac9f-111c984c7787,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18790,2856ba5d-9430-4a1c-b19b-b7d4b0d277b2,LIST_ACCOUNTS,hbciListAccounts,false +18791,2856ba5d-9430-4a1c-b19b-b7d4b0d277b2,LIST_TRANSACTIONS,hbciListTransactions,false +18792,2856ba5d-9430-4a1c-b19b-b7d4b0d277b2,AUTHORIZATION,,false +18793,2856ba5d-9430-4a1c-b19b-b7d4b0d277b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18794,2856ba5d-9430-4a1c-b19b-b7d4b0d277b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18795,2856ba5d-9430-4a1c-b19b-b7d4b0d277b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18796,1a514409-7d6c-423e-8005-176b55c0a316,LIST_ACCOUNTS,xs2aListAccounts,true -18797,1a514409-7d6c-423e-8005-176b55c0a316,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18797,1a514409-7d6c-423e-8005-176b55c0a316,LIST_TRANSACTIONS,xs2aListTransactions,true 18798,1a514409-7d6c-423e-8005-176b55c0a316,AUTHORIZATION,,true 18799,1a514409-7d6c-423e-8005-176b55c0a316,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18800,1a514409-7d6c-423e-8005-176b55c0a316,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18801,1a514409-7d6c-423e-8005-176b55c0a316,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18802,dfe66600-f3a3-491a-83af-8dcbafa6ce1c,LIST_ACCOUNTS,hbciListAccounts,false -18803,dfe66600-f3a3-491a-83af-8dcbafa6ce1c,LIST_TRANSACTIONS,hbciListTransactions,false -18804,dfe66600-f3a3-491a-83af-8dcbafa6ce1c,AUTHORIZATION,,false -18805,dfe66600-f3a3-491a-83af-8dcbafa6ce1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18806,dfe66600-f3a3-491a-83af-8dcbafa6ce1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18807,dfe66600-f3a3-491a-83af-8dcbafa6ce1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18802,b302af89-1879-4e36-9c98-7093419718cd,LIST_ACCOUNTS,hbciListAccounts,false +18803,b302af89-1879-4e36-9c98-7093419718cd,LIST_TRANSACTIONS,hbciListTransactions,false +18804,b302af89-1879-4e36-9c98-7093419718cd,AUTHORIZATION,,false +18805,b302af89-1879-4e36-9c98-7093419718cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18806,b302af89-1879-4e36-9c98-7093419718cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18807,b302af89-1879-4e36-9c98-7093419718cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18808,bee7ba20-1882-4576-b7da-228b4dd85645,LIST_ACCOUNTS,xs2aListAccounts,true -18809,bee7ba20-1882-4576-b7da-228b4dd85645,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18809,bee7ba20-1882-4576-b7da-228b4dd85645,LIST_TRANSACTIONS,xs2aListTransactions,true 18810,bee7ba20-1882-4576-b7da-228b4dd85645,AUTHORIZATION,,true 18811,bee7ba20-1882-4576-b7da-228b4dd85645,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18812,bee7ba20-1882-4576-b7da-228b4dd85645,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18813,bee7ba20-1882-4576-b7da-228b4dd85645,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18814,634c7b9a-1985-4642-bc05-a1e4afeea9b8,LIST_ACCOUNTS,hbciListAccounts,false -18815,634c7b9a-1985-4642-bc05-a1e4afeea9b8,LIST_TRANSACTIONS,hbciListTransactions,false -18816,634c7b9a-1985-4642-bc05-a1e4afeea9b8,AUTHORIZATION,,false -18817,634c7b9a-1985-4642-bc05-a1e4afeea9b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18818,634c7b9a-1985-4642-bc05-a1e4afeea9b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18819,634c7b9a-1985-4642-bc05-a1e4afeea9b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18814,1cb4db49-f98e-4f1e-a7e9-aaa7973a9fc4,LIST_ACCOUNTS,hbciListAccounts,false +18815,1cb4db49-f98e-4f1e-a7e9-aaa7973a9fc4,LIST_TRANSACTIONS,hbciListTransactions,false +18816,1cb4db49-f98e-4f1e-a7e9-aaa7973a9fc4,AUTHORIZATION,,false +18817,1cb4db49-f98e-4f1e-a7e9-aaa7973a9fc4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18818,1cb4db49-f98e-4f1e-a7e9-aaa7973a9fc4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18819,1cb4db49-f98e-4f1e-a7e9-aaa7973a9fc4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18820,8b0e935b-3a31-4902-ac85-62eabe1b7527,LIST_ACCOUNTS,xs2aListAccounts,true -18821,8b0e935b-3a31-4902-ac85-62eabe1b7527,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18821,8b0e935b-3a31-4902-ac85-62eabe1b7527,LIST_TRANSACTIONS,xs2aListTransactions,true 18822,8b0e935b-3a31-4902-ac85-62eabe1b7527,AUTHORIZATION,,true 18823,8b0e935b-3a31-4902-ac85-62eabe1b7527,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18824,8b0e935b-3a31-4902-ac85-62eabe1b7527,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18825,8b0e935b-3a31-4902-ac85-62eabe1b7527,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18826,1f8eab28-80e1-43d4-8d9e-8293da9b2803,LIST_ACCOUNTS,hbciListAccounts,false -18827,1f8eab28-80e1-43d4-8d9e-8293da9b2803,LIST_TRANSACTIONS,hbciListTransactions,false -18828,1f8eab28-80e1-43d4-8d9e-8293da9b2803,AUTHORIZATION,,false -18829,1f8eab28-80e1-43d4-8d9e-8293da9b2803,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18830,1f8eab28-80e1-43d4-8d9e-8293da9b2803,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18831,1f8eab28-80e1-43d4-8d9e-8293da9b2803,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18826,0b0d1f11-ddd7-4244-a314-75d65987959f,LIST_ACCOUNTS,hbciListAccounts,false +18827,0b0d1f11-ddd7-4244-a314-75d65987959f,LIST_TRANSACTIONS,hbciListTransactions,false +18828,0b0d1f11-ddd7-4244-a314-75d65987959f,AUTHORIZATION,,false +18829,0b0d1f11-ddd7-4244-a314-75d65987959f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18830,0b0d1f11-ddd7-4244-a314-75d65987959f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18831,0b0d1f11-ddd7-4244-a314-75d65987959f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18832,b38ac95d-8f21-4933-8994-42690f3a56e5,LIST_ACCOUNTS,xs2aListAccounts,true -18833,b38ac95d-8f21-4933-8994-42690f3a56e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18833,b38ac95d-8f21-4933-8994-42690f3a56e5,LIST_TRANSACTIONS,xs2aListTransactions,true 18834,b38ac95d-8f21-4933-8994-42690f3a56e5,AUTHORIZATION,,true 18835,b38ac95d-8f21-4933-8994-42690f3a56e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18836,b38ac95d-8f21-4933-8994-42690f3a56e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18837,b38ac95d-8f21-4933-8994-42690f3a56e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18838,4706eb8a-0ace-4034-aebd-7f06118cfb2e,LIST_ACCOUNTS,hbciListAccounts,false -18839,4706eb8a-0ace-4034-aebd-7f06118cfb2e,LIST_TRANSACTIONS,hbciListTransactions,false -18840,4706eb8a-0ace-4034-aebd-7f06118cfb2e,AUTHORIZATION,,false -18841,4706eb8a-0ace-4034-aebd-7f06118cfb2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18842,4706eb8a-0ace-4034-aebd-7f06118cfb2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18843,4706eb8a-0ace-4034-aebd-7f06118cfb2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18838,51a38577-f068-423c-b458-76762afff49b,LIST_ACCOUNTS,hbciListAccounts,false +18839,51a38577-f068-423c-b458-76762afff49b,LIST_TRANSACTIONS,hbciListTransactions,false +18840,51a38577-f068-423c-b458-76762afff49b,AUTHORIZATION,,false +18841,51a38577-f068-423c-b458-76762afff49b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18842,51a38577-f068-423c-b458-76762afff49b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18843,51a38577-f068-423c-b458-76762afff49b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18844,a1dc43e4-ca35-454f-89e4-9aa716ebb150,LIST_ACCOUNTS,xs2aListAccounts,true -18845,a1dc43e4-ca35-454f-89e4-9aa716ebb150,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18845,a1dc43e4-ca35-454f-89e4-9aa716ebb150,LIST_TRANSACTIONS,xs2aListTransactions,true 18846,a1dc43e4-ca35-454f-89e4-9aa716ebb150,AUTHORIZATION,,true 18847,a1dc43e4-ca35-454f-89e4-9aa716ebb150,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18848,a1dc43e4-ca35-454f-89e4-9aa716ebb150,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18849,a1dc43e4-ca35-454f-89e4-9aa716ebb150,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18850,d1ca2aaa-be1e-44c5-adc6-7012587d133b,LIST_ACCOUNTS,hbciListAccounts,false -18851,d1ca2aaa-be1e-44c5-adc6-7012587d133b,LIST_TRANSACTIONS,hbciListTransactions,false -18852,d1ca2aaa-be1e-44c5-adc6-7012587d133b,AUTHORIZATION,,false -18853,d1ca2aaa-be1e-44c5-adc6-7012587d133b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18854,d1ca2aaa-be1e-44c5-adc6-7012587d133b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18855,d1ca2aaa-be1e-44c5-adc6-7012587d133b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18850,4d62bb2b-a632-48a1-8764-7dcdd3b0a646,LIST_ACCOUNTS,hbciListAccounts,false +18851,4d62bb2b-a632-48a1-8764-7dcdd3b0a646,LIST_TRANSACTIONS,hbciListTransactions,false +18852,4d62bb2b-a632-48a1-8764-7dcdd3b0a646,AUTHORIZATION,,false +18853,4d62bb2b-a632-48a1-8764-7dcdd3b0a646,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18854,4d62bb2b-a632-48a1-8764-7dcdd3b0a646,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18855,4d62bb2b-a632-48a1-8764-7dcdd3b0a646,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18856,2a5dedaf-5c39-44bd-9ec2-146b04e84dce,LIST_ACCOUNTS,xs2aListAccounts,true -18857,2a5dedaf-5c39-44bd-9ec2-146b04e84dce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18857,2a5dedaf-5c39-44bd-9ec2-146b04e84dce,LIST_TRANSACTIONS,xs2aListTransactions,true 18858,2a5dedaf-5c39-44bd-9ec2-146b04e84dce,AUTHORIZATION,,true 18859,2a5dedaf-5c39-44bd-9ec2-146b04e84dce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18860,2a5dedaf-5c39-44bd-9ec2-146b04e84dce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18861,2a5dedaf-5c39-44bd-9ec2-146b04e84dce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18862,4382666d-977a-4f0b-93ba-345dc88b8134,LIST_ACCOUNTS,hbciListAccounts,false -18863,4382666d-977a-4f0b-93ba-345dc88b8134,LIST_TRANSACTIONS,hbciListTransactions,false -18864,4382666d-977a-4f0b-93ba-345dc88b8134,AUTHORIZATION,,false -18865,4382666d-977a-4f0b-93ba-345dc88b8134,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18866,4382666d-977a-4f0b-93ba-345dc88b8134,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18867,4382666d-977a-4f0b-93ba-345dc88b8134,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18862,3fd074bc-8fd0-43e5-947a-f27919d38141,LIST_ACCOUNTS,hbciListAccounts,false +18863,3fd074bc-8fd0-43e5-947a-f27919d38141,LIST_TRANSACTIONS,hbciListTransactions,false +18864,3fd074bc-8fd0-43e5-947a-f27919d38141,AUTHORIZATION,,false +18865,3fd074bc-8fd0-43e5-947a-f27919d38141,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18866,3fd074bc-8fd0-43e5-947a-f27919d38141,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18867,3fd074bc-8fd0-43e5-947a-f27919d38141,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18868,750a68a8-1a5b-4e7c-bd75-a6a24d211063,LIST_ACCOUNTS,xs2aListAccounts,true -18869,750a68a8-1a5b-4e7c-bd75-a6a24d211063,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18869,750a68a8-1a5b-4e7c-bd75-a6a24d211063,LIST_TRANSACTIONS,xs2aListTransactions,true 18870,750a68a8-1a5b-4e7c-bd75-a6a24d211063,AUTHORIZATION,,true 18871,750a68a8-1a5b-4e7c-bd75-a6a24d211063,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18872,750a68a8-1a5b-4e7c-bd75-a6a24d211063,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18873,750a68a8-1a5b-4e7c-bd75-a6a24d211063,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18874,5d67cba8-f1bb-4418-a80e-79b6d6ecf250,LIST_ACCOUNTS,hbciListAccounts,false -18875,5d67cba8-f1bb-4418-a80e-79b6d6ecf250,LIST_TRANSACTIONS,hbciListTransactions,false -18876,5d67cba8-f1bb-4418-a80e-79b6d6ecf250,AUTHORIZATION,,false -18877,5d67cba8-f1bb-4418-a80e-79b6d6ecf250,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18878,5d67cba8-f1bb-4418-a80e-79b6d6ecf250,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18879,5d67cba8-f1bb-4418-a80e-79b6d6ecf250,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18874,835bd10f-9bbf-4ea3-94b1-8be9aaaf3d40,LIST_ACCOUNTS,hbciListAccounts,false +18875,835bd10f-9bbf-4ea3-94b1-8be9aaaf3d40,LIST_TRANSACTIONS,hbciListTransactions,false +18876,835bd10f-9bbf-4ea3-94b1-8be9aaaf3d40,AUTHORIZATION,,false +18877,835bd10f-9bbf-4ea3-94b1-8be9aaaf3d40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18878,835bd10f-9bbf-4ea3-94b1-8be9aaaf3d40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18879,835bd10f-9bbf-4ea3-94b1-8be9aaaf3d40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18880,f5ce4a54-b118-40fe-9c47-2fb5ed92dae9,LIST_ACCOUNTS,xs2aListAccounts,true -18881,f5ce4a54-b118-40fe-9c47-2fb5ed92dae9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18881,f5ce4a54-b118-40fe-9c47-2fb5ed92dae9,LIST_TRANSACTIONS,xs2aListTransactions,true 18882,f5ce4a54-b118-40fe-9c47-2fb5ed92dae9,AUTHORIZATION,,true 18883,f5ce4a54-b118-40fe-9c47-2fb5ed92dae9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18884,f5ce4a54-b118-40fe-9c47-2fb5ed92dae9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18885,f5ce4a54-b118-40fe-9c47-2fb5ed92dae9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18886,4324aec1-8e8f-4e83-a4ef-f2735cb87090,LIST_ACCOUNTS,hbciListAccounts,false -18887,4324aec1-8e8f-4e83-a4ef-f2735cb87090,LIST_TRANSACTIONS,hbciListTransactions,false -18888,4324aec1-8e8f-4e83-a4ef-f2735cb87090,AUTHORIZATION,,false -18889,4324aec1-8e8f-4e83-a4ef-f2735cb87090,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18890,4324aec1-8e8f-4e83-a4ef-f2735cb87090,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18891,4324aec1-8e8f-4e83-a4ef-f2735cb87090,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18886,f83b92b0-0da2-4763-915e-f6467535a864,LIST_ACCOUNTS,hbciListAccounts,false +18887,f83b92b0-0da2-4763-915e-f6467535a864,LIST_TRANSACTIONS,hbciListTransactions,false +18888,f83b92b0-0da2-4763-915e-f6467535a864,AUTHORIZATION,,false +18889,f83b92b0-0da2-4763-915e-f6467535a864,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18890,f83b92b0-0da2-4763-915e-f6467535a864,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18891,f83b92b0-0da2-4763-915e-f6467535a864,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18892,20661c26-5528-4293-ac2a-e879967d7da7,LIST_ACCOUNTS,xs2aListAccounts,true -18893,20661c26-5528-4293-ac2a-e879967d7da7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18893,20661c26-5528-4293-ac2a-e879967d7da7,LIST_TRANSACTIONS,xs2aListTransactions,true 18894,20661c26-5528-4293-ac2a-e879967d7da7,AUTHORIZATION,,true 18895,20661c26-5528-4293-ac2a-e879967d7da7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18896,20661c26-5528-4293-ac2a-e879967d7da7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18897,20661c26-5528-4293-ac2a-e879967d7da7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18898,44695de6-82a0-4d37-90d3-bfdc288e889f,LIST_ACCOUNTS,hbciListAccounts,false -18899,44695de6-82a0-4d37-90d3-bfdc288e889f,LIST_TRANSACTIONS,hbciListTransactions,false -18900,44695de6-82a0-4d37-90d3-bfdc288e889f,AUTHORIZATION,,false -18901,44695de6-82a0-4d37-90d3-bfdc288e889f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18902,44695de6-82a0-4d37-90d3-bfdc288e889f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18903,44695de6-82a0-4d37-90d3-bfdc288e889f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18898,f8f3e644-4da9-4e87-9f7a-35ec704c2d94,LIST_ACCOUNTS,hbciListAccounts,false +18899,f8f3e644-4da9-4e87-9f7a-35ec704c2d94,LIST_TRANSACTIONS,hbciListTransactions,false +18900,f8f3e644-4da9-4e87-9f7a-35ec704c2d94,AUTHORIZATION,,false +18901,f8f3e644-4da9-4e87-9f7a-35ec704c2d94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18902,f8f3e644-4da9-4e87-9f7a-35ec704c2d94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18903,f8f3e644-4da9-4e87-9f7a-35ec704c2d94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18904,f38e9844-8c6d-4ec9-9ac1-ea02d27d5c0d,LIST_ACCOUNTS,xs2aListAccounts,true -18905,f38e9844-8c6d-4ec9-9ac1-ea02d27d5c0d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18905,f38e9844-8c6d-4ec9-9ac1-ea02d27d5c0d,LIST_TRANSACTIONS,xs2aListTransactions,true 18906,f38e9844-8c6d-4ec9-9ac1-ea02d27d5c0d,AUTHORIZATION,,true 18907,f38e9844-8c6d-4ec9-9ac1-ea02d27d5c0d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18908,f38e9844-8c6d-4ec9-9ac1-ea02d27d5c0d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18909,f38e9844-8c6d-4ec9-9ac1-ea02d27d5c0d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18910,7bd7eec5-7a2c-47a9-a2b2-e47434d20100,LIST_ACCOUNTS,hbciListAccounts,false -18911,7bd7eec5-7a2c-47a9-a2b2-e47434d20100,LIST_TRANSACTIONS,hbciListTransactions,false -18912,7bd7eec5-7a2c-47a9-a2b2-e47434d20100,AUTHORIZATION,,false -18913,7bd7eec5-7a2c-47a9-a2b2-e47434d20100,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18914,7bd7eec5-7a2c-47a9-a2b2-e47434d20100,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18915,7bd7eec5-7a2c-47a9-a2b2-e47434d20100,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18910,d70aba54-e77b-4aeb-837c-6adf3054e768,LIST_ACCOUNTS,hbciListAccounts,false +18911,d70aba54-e77b-4aeb-837c-6adf3054e768,LIST_TRANSACTIONS,hbciListTransactions,false +18912,d70aba54-e77b-4aeb-837c-6adf3054e768,AUTHORIZATION,,false +18913,d70aba54-e77b-4aeb-837c-6adf3054e768,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18914,d70aba54-e77b-4aeb-837c-6adf3054e768,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18915,d70aba54-e77b-4aeb-837c-6adf3054e768,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18916,31b100e0-f5b9-4278-a40e-fc0634b11d06,LIST_ACCOUNTS,xs2aListAccounts,true -18917,31b100e0-f5b9-4278-a40e-fc0634b11d06,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18917,31b100e0-f5b9-4278-a40e-fc0634b11d06,LIST_TRANSACTIONS,xs2aListTransactions,true 18918,31b100e0-f5b9-4278-a40e-fc0634b11d06,AUTHORIZATION,,true 18919,31b100e0-f5b9-4278-a40e-fc0634b11d06,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18920,31b100e0-f5b9-4278-a40e-fc0634b11d06,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18921,31b100e0-f5b9-4278-a40e-fc0634b11d06,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18922,286c775d-f97d-492c-a207-f46c889e199d,LIST_ACCOUNTS,hbciListAccounts,false -18923,286c775d-f97d-492c-a207-f46c889e199d,LIST_TRANSACTIONS,hbciListTransactions,false -18924,286c775d-f97d-492c-a207-f46c889e199d,AUTHORIZATION,,false -18925,286c775d-f97d-492c-a207-f46c889e199d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18926,286c775d-f97d-492c-a207-f46c889e199d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18927,286c775d-f97d-492c-a207-f46c889e199d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18922,15b65c5f-2032-421e-a489-312d896ffa5e,LIST_ACCOUNTS,hbciListAccounts,false +18923,15b65c5f-2032-421e-a489-312d896ffa5e,LIST_TRANSACTIONS,hbciListTransactions,false +18924,15b65c5f-2032-421e-a489-312d896ffa5e,AUTHORIZATION,,false +18925,15b65c5f-2032-421e-a489-312d896ffa5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18926,15b65c5f-2032-421e-a489-312d896ffa5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18927,15b65c5f-2032-421e-a489-312d896ffa5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18928,6cffee3f-056f-4b02-97da-e0675fc87ea0,LIST_ACCOUNTS,xs2aListAccounts,true -18929,6cffee3f-056f-4b02-97da-e0675fc87ea0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18929,6cffee3f-056f-4b02-97da-e0675fc87ea0,LIST_TRANSACTIONS,xs2aListTransactions,true 18930,6cffee3f-056f-4b02-97da-e0675fc87ea0,AUTHORIZATION,,true 18931,6cffee3f-056f-4b02-97da-e0675fc87ea0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18932,6cffee3f-056f-4b02-97da-e0675fc87ea0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18933,6cffee3f-056f-4b02-97da-e0675fc87ea0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18934,c024aadb-9d99-4f04-a0da-44097a5e2874,LIST_ACCOUNTS,hbciListAccounts,false -18935,c024aadb-9d99-4f04-a0da-44097a5e2874,LIST_TRANSACTIONS,hbciListTransactions,false -18936,c024aadb-9d99-4f04-a0da-44097a5e2874,AUTHORIZATION,,false -18937,c024aadb-9d99-4f04-a0da-44097a5e2874,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18938,c024aadb-9d99-4f04-a0da-44097a5e2874,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18939,c024aadb-9d99-4f04-a0da-44097a5e2874,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18934,4adf71c4-dc6b-459e-90f7-e8e8589d8507,LIST_ACCOUNTS,hbciListAccounts,false +18935,4adf71c4-dc6b-459e-90f7-e8e8589d8507,LIST_TRANSACTIONS,hbciListTransactions,false +18936,4adf71c4-dc6b-459e-90f7-e8e8589d8507,AUTHORIZATION,,false +18937,4adf71c4-dc6b-459e-90f7-e8e8589d8507,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18938,4adf71c4-dc6b-459e-90f7-e8e8589d8507,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18939,4adf71c4-dc6b-459e-90f7-e8e8589d8507,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18940,22e87e31-eb8e-4cda-b0eb-7816fdd69edf,LIST_ACCOUNTS,xs2aListAccounts,true -18941,22e87e31-eb8e-4cda-b0eb-7816fdd69edf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18941,22e87e31-eb8e-4cda-b0eb-7816fdd69edf,LIST_TRANSACTIONS,xs2aListTransactions,true 18942,22e87e31-eb8e-4cda-b0eb-7816fdd69edf,AUTHORIZATION,,true 18943,22e87e31-eb8e-4cda-b0eb-7816fdd69edf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18944,22e87e31-eb8e-4cda-b0eb-7816fdd69edf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18945,22e87e31-eb8e-4cda-b0eb-7816fdd69edf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18946,22ccc66b-0622-420b-a588-72a6441e4bd4,LIST_ACCOUNTS,hbciListAccounts,false -18947,22ccc66b-0622-420b-a588-72a6441e4bd4,LIST_TRANSACTIONS,hbciListTransactions,false -18948,22ccc66b-0622-420b-a588-72a6441e4bd4,AUTHORIZATION,,false -18949,22ccc66b-0622-420b-a588-72a6441e4bd4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18950,22ccc66b-0622-420b-a588-72a6441e4bd4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18951,22ccc66b-0622-420b-a588-72a6441e4bd4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18946,0982bca5-aba7-403a-80fd-e61103436436,LIST_ACCOUNTS,hbciListAccounts,false +18947,0982bca5-aba7-403a-80fd-e61103436436,LIST_TRANSACTIONS,hbciListTransactions,false +18948,0982bca5-aba7-403a-80fd-e61103436436,AUTHORIZATION,,false +18949,0982bca5-aba7-403a-80fd-e61103436436,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18950,0982bca5-aba7-403a-80fd-e61103436436,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18951,0982bca5-aba7-403a-80fd-e61103436436,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18952,8104ce49-3b50-455a-be99-fd2d13fc18a7,LIST_ACCOUNTS,xs2aListAccounts,true -18953,8104ce49-3b50-455a-be99-fd2d13fc18a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18953,8104ce49-3b50-455a-be99-fd2d13fc18a7,LIST_TRANSACTIONS,xs2aListTransactions,true 18954,8104ce49-3b50-455a-be99-fd2d13fc18a7,AUTHORIZATION,,true 18955,8104ce49-3b50-455a-be99-fd2d13fc18a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18956,8104ce49-3b50-455a-be99-fd2d13fc18a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18957,8104ce49-3b50-455a-be99-fd2d13fc18a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18958,54e2878c-04c3-45fd-b743-5390e4482597,LIST_ACCOUNTS,hbciListAccounts,false -18959,54e2878c-04c3-45fd-b743-5390e4482597,LIST_TRANSACTIONS,hbciListTransactions,false -18960,54e2878c-04c3-45fd-b743-5390e4482597,AUTHORIZATION,,false -18961,54e2878c-04c3-45fd-b743-5390e4482597,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18962,54e2878c-04c3-45fd-b743-5390e4482597,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18963,54e2878c-04c3-45fd-b743-5390e4482597,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18958,e45fa075-0846-4976-9e5b-d757f1e25c4e,LIST_ACCOUNTS,hbciListAccounts,false +18959,e45fa075-0846-4976-9e5b-d757f1e25c4e,LIST_TRANSACTIONS,hbciListTransactions,false +18960,e45fa075-0846-4976-9e5b-d757f1e25c4e,AUTHORIZATION,,false +18961,e45fa075-0846-4976-9e5b-d757f1e25c4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18962,e45fa075-0846-4976-9e5b-d757f1e25c4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18963,e45fa075-0846-4976-9e5b-d757f1e25c4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18964,006fba3f-d68d-4ba6-9727-bd7eca559097,LIST_ACCOUNTS,xs2aListAccounts,true -18965,006fba3f-d68d-4ba6-9727-bd7eca559097,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18965,006fba3f-d68d-4ba6-9727-bd7eca559097,LIST_TRANSACTIONS,xs2aListTransactions,true 18966,006fba3f-d68d-4ba6-9727-bd7eca559097,AUTHORIZATION,,true 18967,006fba3f-d68d-4ba6-9727-bd7eca559097,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18968,006fba3f-d68d-4ba6-9727-bd7eca559097,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18969,006fba3f-d68d-4ba6-9727-bd7eca559097,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18970,43d4e1e9-2ac4-47c9-93d0-abf2df74d2d3,LIST_ACCOUNTS,hbciListAccounts,false -18971,43d4e1e9-2ac4-47c9-93d0-abf2df74d2d3,LIST_TRANSACTIONS,hbciListTransactions,false -18972,43d4e1e9-2ac4-47c9-93d0-abf2df74d2d3,AUTHORIZATION,,false -18973,43d4e1e9-2ac4-47c9-93d0-abf2df74d2d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18974,43d4e1e9-2ac4-47c9-93d0-abf2df74d2d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18975,43d4e1e9-2ac4-47c9-93d0-abf2df74d2d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18970,a5b1a344-657c-473c-bae6-0e2905ee97bd,LIST_ACCOUNTS,hbciListAccounts,false +18971,a5b1a344-657c-473c-bae6-0e2905ee97bd,LIST_TRANSACTIONS,hbciListTransactions,false +18972,a5b1a344-657c-473c-bae6-0e2905ee97bd,AUTHORIZATION,,false +18973,a5b1a344-657c-473c-bae6-0e2905ee97bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18974,a5b1a344-657c-473c-bae6-0e2905ee97bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18975,a5b1a344-657c-473c-bae6-0e2905ee97bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18976,445ffbbf-28ad-400b-98f4-e14c308d2ae4,LIST_ACCOUNTS,xs2aListAccounts,true -18977,445ffbbf-28ad-400b-98f4-e14c308d2ae4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18977,445ffbbf-28ad-400b-98f4-e14c308d2ae4,LIST_TRANSACTIONS,xs2aListTransactions,true 18978,445ffbbf-28ad-400b-98f4-e14c308d2ae4,AUTHORIZATION,,true 18979,445ffbbf-28ad-400b-98f4-e14c308d2ae4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18980,445ffbbf-28ad-400b-98f4-e14c308d2ae4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18981,445ffbbf-28ad-400b-98f4-e14c308d2ae4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18982,a71f6434-f231-431b-810b-9a2fdc687b12,LIST_ACCOUNTS,hbciListAccounts,false -18983,a71f6434-f231-431b-810b-9a2fdc687b12,LIST_TRANSACTIONS,hbciListTransactions,false -18984,a71f6434-f231-431b-810b-9a2fdc687b12,AUTHORIZATION,,false -18985,a71f6434-f231-431b-810b-9a2fdc687b12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18986,a71f6434-f231-431b-810b-9a2fdc687b12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18987,a71f6434-f231-431b-810b-9a2fdc687b12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18982,0dfbb245-82a0-4493-98b1-506b88877560,LIST_ACCOUNTS,hbciListAccounts,false +18983,0dfbb245-82a0-4493-98b1-506b88877560,LIST_TRANSACTIONS,hbciListTransactions,false +18984,0dfbb245-82a0-4493-98b1-506b88877560,AUTHORIZATION,,false +18985,0dfbb245-82a0-4493-98b1-506b88877560,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18986,0dfbb245-82a0-4493-98b1-506b88877560,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18987,0dfbb245-82a0-4493-98b1-506b88877560,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 18988,a92de7fb-fdd0-4359-9fe9-02de0e7cf030,LIST_ACCOUNTS,xs2aListAccounts,true -18989,a92de7fb-fdd0-4359-9fe9-02de0e7cf030,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +18989,a92de7fb-fdd0-4359-9fe9-02de0e7cf030,LIST_TRANSACTIONS,xs2aListTransactions,true 18990,a92de7fb-fdd0-4359-9fe9-02de0e7cf030,AUTHORIZATION,,true 18991,a92de7fb-fdd0-4359-9fe9-02de0e7cf030,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 18992,a92de7fb-fdd0-4359-9fe9-02de0e7cf030,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 18993,a92de7fb-fdd0-4359-9fe9-02de0e7cf030,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -18994,51d062e8-a904-4f80-ad7d-d153961fb0d7,LIST_ACCOUNTS,hbciListAccounts,false -18995,51d062e8-a904-4f80-ad7d-d153961fb0d7,LIST_TRANSACTIONS,hbciListTransactions,false -18996,51d062e8-a904-4f80-ad7d-d153961fb0d7,AUTHORIZATION,,false -18997,51d062e8-a904-4f80-ad7d-d153961fb0d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -18998,51d062e8-a904-4f80-ad7d-d153961fb0d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -18999,51d062e8-a904-4f80-ad7d-d153961fb0d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +18994,c125c024-db13-47fb-a389-a5604e7d31db,LIST_ACCOUNTS,hbciListAccounts,false +18995,c125c024-db13-47fb-a389-a5604e7d31db,LIST_TRANSACTIONS,hbciListTransactions,false +18996,c125c024-db13-47fb-a389-a5604e7d31db,AUTHORIZATION,,false +18997,c125c024-db13-47fb-a389-a5604e7d31db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +18998,c125c024-db13-47fb-a389-a5604e7d31db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +18999,c125c024-db13-47fb-a389-a5604e7d31db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19000,3b68b899-5d87-418f-8be6-60b29eb83685,LIST_ACCOUNTS,xs2aListAccounts,true -19001,3b68b899-5d87-418f-8be6-60b29eb83685,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19001,3b68b899-5d87-418f-8be6-60b29eb83685,LIST_TRANSACTIONS,xs2aListTransactions,true 19002,3b68b899-5d87-418f-8be6-60b29eb83685,AUTHORIZATION,,true 19003,3b68b899-5d87-418f-8be6-60b29eb83685,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19004,3b68b899-5d87-418f-8be6-60b29eb83685,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19005,3b68b899-5d87-418f-8be6-60b29eb83685,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19006,c32861ab-4468-429d-8e36-5cad41643342,LIST_ACCOUNTS,hbciListAccounts,false -19007,c32861ab-4468-429d-8e36-5cad41643342,LIST_TRANSACTIONS,hbciListTransactions,false -19008,c32861ab-4468-429d-8e36-5cad41643342,AUTHORIZATION,,false -19009,c32861ab-4468-429d-8e36-5cad41643342,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19010,c32861ab-4468-429d-8e36-5cad41643342,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19011,c32861ab-4468-429d-8e36-5cad41643342,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19006,ad6024f1-e7fb-43de-b910-cf05f3d6c25a,LIST_ACCOUNTS,hbciListAccounts,false +19007,ad6024f1-e7fb-43de-b910-cf05f3d6c25a,LIST_TRANSACTIONS,hbciListTransactions,false +19008,ad6024f1-e7fb-43de-b910-cf05f3d6c25a,AUTHORIZATION,,false +19009,ad6024f1-e7fb-43de-b910-cf05f3d6c25a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19010,ad6024f1-e7fb-43de-b910-cf05f3d6c25a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19011,ad6024f1-e7fb-43de-b910-cf05f3d6c25a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19012,783c8514-387e-4373-9292-ffac9d03756c,LIST_ACCOUNTS,xs2aListAccounts,true -19013,783c8514-387e-4373-9292-ffac9d03756c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19013,783c8514-387e-4373-9292-ffac9d03756c,LIST_TRANSACTIONS,xs2aListTransactions,true 19014,783c8514-387e-4373-9292-ffac9d03756c,AUTHORIZATION,,true 19015,783c8514-387e-4373-9292-ffac9d03756c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19016,783c8514-387e-4373-9292-ffac9d03756c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19017,783c8514-387e-4373-9292-ffac9d03756c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19018,9c60e7c1-70ef-4b87-898b-79828347aafb,LIST_ACCOUNTS,hbciListAccounts,false -19019,9c60e7c1-70ef-4b87-898b-79828347aafb,LIST_TRANSACTIONS,hbciListTransactions,false -19020,9c60e7c1-70ef-4b87-898b-79828347aafb,AUTHORIZATION,,false -19021,9c60e7c1-70ef-4b87-898b-79828347aafb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19022,9c60e7c1-70ef-4b87-898b-79828347aafb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19023,9c60e7c1-70ef-4b87-898b-79828347aafb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19018,722b8c3d-ec2c-453e-a4fc-e556907f9776,LIST_ACCOUNTS,hbciListAccounts,false +19019,722b8c3d-ec2c-453e-a4fc-e556907f9776,LIST_TRANSACTIONS,hbciListTransactions,false +19020,722b8c3d-ec2c-453e-a4fc-e556907f9776,AUTHORIZATION,,false +19021,722b8c3d-ec2c-453e-a4fc-e556907f9776,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19022,722b8c3d-ec2c-453e-a4fc-e556907f9776,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19023,722b8c3d-ec2c-453e-a4fc-e556907f9776,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19024,0ba3b752-a530-4fe0-863a-f8d69f8741d5,LIST_ACCOUNTS,xs2aListAccounts,true -19025,0ba3b752-a530-4fe0-863a-f8d69f8741d5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19025,0ba3b752-a530-4fe0-863a-f8d69f8741d5,LIST_TRANSACTIONS,xs2aListTransactions,true 19026,0ba3b752-a530-4fe0-863a-f8d69f8741d5,AUTHORIZATION,,true 19027,0ba3b752-a530-4fe0-863a-f8d69f8741d5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19028,0ba3b752-a530-4fe0-863a-f8d69f8741d5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19029,0ba3b752-a530-4fe0-863a-f8d69f8741d5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19030,66ee4688-937f-4dcd-ba28-67fdff9a8c91,LIST_ACCOUNTS,hbciListAccounts,false -19031,66ee4688-937f-4dcd-ba28-67fdff9a8c91,LIST_TRANSACTIONS,hbciListTransactions,false -19032,66ee4688-937f-4dcd-ba28-67fdff9a8c91,AUTHORIZATION,,false -19033,66ee4688-937f-4dcd-ba28-67fdff9a8c91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19034,66ee4688-937f-4dcd-ba28-67fdff9a8c91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19035,66ee4688-937f-4dcd-ba28-67fdff9a8c91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19030,a6fff4c2-1265-4c97-bb63-930c7fb3f280,LIST_ACCOUNTS,hbciListAccounts,false +19031,a6fff4c2-1265-4c97-bb63-930c7fb3f280,LIST_TRANSACTIONS,hbciListTransactions,false +19032,a6fff4c2-1265-4c97-bb63-930c7fb3f280,AUTHORIZATION,,false +19033,a6fff4c2-1265-4c97-bb63-930c7fb3f280,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19034,a6fff4c2-1265-4c97-bb63-930c7fb3f280,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19035,a6fff4c2-1265-4c97-bb63-930c7fb3f280,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19036,89b2e946-2263-4aa7-95a9-15bdf8f20454,LIST_ACCOUNTS,xs2aListAccounts,true -19037,89b2e946-2263-4aa7-95a9-15bdf8f20454,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19037,89b2e946-2263-4aa7-95a9-15bdf8f20454,LIST_TRANSACTIONS,xs2aListTransactions,true 19038,89b2e946-2263-4aa7-95a9-15bdf8f20454,AUTHORIZATION,,true 19039,89b2e946-2263-4aa7-95a9-15bdf8f20454,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19040,89b2e946-2263-4aa7-95a9-15bdf8f20454,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19041,89b2e946-2263-4aa7-95a9-15bdf8f20454,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19042,1103b9bd-4bbf-42cc-a2e3-4d0366ede4f8,LIST_ACCOUNTS,hbciListAccounts,false -19043,1103b9bd-4bbf-42cc-a2e3-4d0366ede4f8,LIST_TRANSACTIONS,hbciListTransactions,false -19044,1103b9bd-4bbf-42cc-a2e3-4d0366ede4f8,AUTHORIZATION,,false -19045,1103b9bd-4bbf-42cc-a2e3-4d0366ede4f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19046,1103b9bd-4bbf-42cc-a2e3-4d0366ede4f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19047,1103b9bd-4bbf-42cc-a2e3-4d0366ede4f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19042,d0a06945-6601-416d-9014-438c66102dc5,LIST_ACCOUNTS,hbciListAccounts,false +19043,d0a06945-6601-416d-9014-438c66102dc5,LIST_TRANSACTIONS,hbciListTransactions,false +19044,d0a06945-6601-416d-9014-438c66102dc5,AUTHORIZATION,,false +19045,d0a06945-6601-416d-9014-438c66102dc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19046,d0a06945-6601-416d-9014-438c66102dc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19047,d0a06945-6601-416d-9014-438c66102dc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19048,ee2a7cbf-61fc-48a5-8a79-31fbf25f44cb,LIST_ACCOUNTS,xs2aListAccounts,true -19049,ee2a7cbf-61fc-48a5-8a79-31fbf25f44cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19049,ee2a7cbf-61fc-48a5-8a79-31fbf25f44cb,LIST_TRANSACTIONS,xs2aListTransactions,true 19050,ee2a7cbf-61fc-48a5-8a79-31fbf25f44cb,AUTHORIZATION,,true 19051,ee2a7cbf-61fc-48a5-8a79-31fbf25f44cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19052,ee2a7cbf-61fc-48a5-8a79-31fbf25f44cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19053,ee2a7cbf-61fc-48a5-8a79-31fbf25f44cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19054,ce9f6c41-03bd-4d85-8418-fa781b68bcef,LIST_ACCOUNTS,hbciListAccounts,false -19055,ce9f6c41-03bd-4d85-8418-fa781b68bcef,LIST_TRANSACTIONS,hbciListTransactions,false -19056,ce9f6c41-03bd-4d85-8418-fa781b68bcef,AUTHORIZATION,,false -19057,ce9f6c41-03bd-4d85-8418-fa781b68bcef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19058,ce9f6c41-03bd-4d85-8418-fa781b68bcef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19059,ce9f6c41-03bd-4d85-8418-fa781b68bcef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19054,f76ab4a3-e959-4387-9edb-31eca6cd083a,LIST_ACCOUNTS,hbciListAccounts,false +19055,f76ab4a3-e959-4387-9edb-31eca6cd083a,LIST_TRANSACTIONS,hbciListTransactions,false +19056,f76ab4a3-e959-4387-9edb-31eca6cd083a,AUTHORIZATION,,false +19057,f76ab4a3-e959-4387-9edb-31eca6cd083a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19058,f76ab4a3-e959-4387-9edb-31eca6cd083a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19059,f76ab4a3-e959-4387-9edb-31eca6cd083a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19060,a81c734d-6f89-49b7-a753-10ad47ddf430,LIST_ACCOUNTS,xs2aListAccounts,true -19061,a81c734d-6f89-49b7-a753-10ad47ddf430,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19061,a81c734d-6f89-49b7-a753-10ad47ddf430,LIST_TRANSACTIONS,xs2aListTransactions,true 19062,a81c734d-6f89-49b7-a753-10ad47ddf430,AUTHORIZATION,,true 19063,a81c734d-6f89-49b7-a753-10ad47ddf430,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19064,a81c734d-6f89-49b7-a753-10ad47ddf430,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19065,a81c734d-6f89-49b7-a753-10ad47ddf430,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19066,db7661bd-4c4a-4bab-bf9b-38abd9bb4de1,LIST_ACCOUNTS,hbciListAccounts,false -19067,db7661bd-4c4a-4bab-bf9b-38abd9bb4de1,LIST_TRANSACTIONS,hbciListTransactions,false -19068,db7661bd-4c4a-4bab-bf9b-38abd9bb4de1,AUTHORIZATION,,false -19069,db7661bd-4c4a-4bab-bf9b-38abd9bb4de1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19070,db7661bd-4c4a-4bab-bf9b-38abd9bb4de1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19071,db7661bd-4c4a-4bab-bf9b-38abd9bb4de1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19066,97a1a700-0656-4bf2-b657-da10f52b25a9,LIST_ACCOUNTS,hbciListAccounts,false +19067,97a1a700-0656-4bf2-b657-da10f52b25a9,LIST_TRANSACTIONS,hbciListTransactions,false +19068,97a1a700-0656-4bf2-b657-da10f52b25a9,AUTHORIZATION,,false +19069,97a1a700-0656-4bf2-b657-da10f52b25a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19070,97a1a700-0656-4bf2-b657-da10f52b25a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19071,97a1a700-0656-4bf2-b657-da10f52b25a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19072,dab498e2-16b4-4a4e-a716-df5f181beec0,LIST_ACCOUNTS,xs2aListAccounts,true -19073,dab498e2-16b4-4a4e-a716-df5f181beec0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19073,dab498e2-16b4-4a4e-a716-df5f181beec0,LIST_TRANSACTIONS,xs2aListTransactions,true 19074,dab498e2-16b4-4a4e-a716-df5f181beec0,AUTHORIZATION,,true 19075,dab498e2-16b4-4a4e-a716-df5f181beec0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19076,dab498e2-16b4-4a4e-a716-df5f181beec0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19077,dab498e2-16b4-4a4e-a716-df5f181beec0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19078,7b5496ce-06f8-4164-9808-c9a8198f7af1,LIST_ACCOUNTS,hbciListAccounts,false -19079,7b5496ce-06f8-4164-9808-c9a8198f7af1,LIST_TRANSACTIONS,hbciListTransactions,false -19080,7b5496ce-06f8-4164-9808-c9a8198f7af1,AUTHORIZATION,,false -19081,7b5496ce-06f8-4164-9808-c9a8198f7af1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19082,7b5496ce-06f8-4164-9808-c9a8198f7af1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19083,7b5496ce-06f8-4164-9808-c9a8198f7af1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19078,cb7d3a4e-336a-4851-9d5a-ce9f44779148,LIST_ACCOUNTS,hbciListAccounts,false +19079,cb7d3a4e-336a-4851-9d5a-ce9f44779148,LIST_TRANSACTIONS,hbciListTransactions,false +19080,cb7d3a4e-336a-4851-9d5a-ce9f44779148,AUTHORIZATION,,false +19081,cb7d3a4e-336a-4851-9d5a-ce9f44779148,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19082,cb7d3a4e-336a-4851-9d5a-ce9f44779148,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19083,cb7d3a4e-336a-4851-9d5a-ce9f44779148,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19084,9bd093f5-d19c-47cf-81e8-db187c29fdbf,LIST_ACCOUNTS,xs2aListAccounts,true -19085,9bd093f5-d19c-47cf-81e8-db187c29fdbf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19085,9bd093f5-d19c-47cf-81e8-db187c29fdbf,LIST_TRANSACTIONS,xs2aListTransactions,true 19086,9bd093f5-d19c-47cf-81e8-db187c29fdbf,AUTHORIZATION,,true 19087,9bd093f5-d19c-47cf-81e8-db187c29fdbf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19088,9bd093f5-d19c-47cf-81e8-db187c29fdbf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19089,9bd093f5-d19c-47cf-81e8-db187c29fdbf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19090,676f02bb-11b2-4256-a8df-9666718b856f,LIST_ACCOUNTS,hbciListAccounts,false -19091,676f02bb-11b2-4256-a8df-9666718b856f,LIST_TRANSACTIONS,hbciListTransactions,false -19092,676f02bb-11b2-4256-a8df-9666718b856f,AUTHORIZATION,,false -19093,676f02bb-11b2-4256-a8df-9666718b856f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19094,676f02bb-11b2-4256-a8df-9666718b856f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19095,676f02bb-11b2-4256-a8df-9666718b856f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19090,1348f2e0-eb7f-44a4-b18a-c4328a5ab351,LIST_ACCOUNTS,hbciListAccounts,false +19091,1348f2e0-eb7f-44a4-b18a-c4328a5ab351,LIST_TRANSACTIONS,hbciListTransactions,false +19092,1348f2e0-eb7f-44a4-b18a-c4328a5ab351,AUTHORIZATION,,false +19093,1348f2e0-eb7f-44a4-b18a-c4328a5ab351,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19094,1348f2e0-eb7f-44a4-b18a-c4328a5ab351,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19095,1348f2e0-eb7f-44a4-b18a-c4328a5ab351,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19096,77818e85-e6dc-493f-9148-a71c29c715af,LIST_ACCOUNTS,xs2aListAccounts,true -19097,77818e85-e6dc-493f-9148-a71c29c715af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19097,77818e85-e6dc-493f-9148-a71c29c715af,LIST_TRANSACTIONS,xs2aListTransactions,true 19098,77818e85-e6dc-493f-9148-a71c29c715af,AUTHORIZATION,,true 19099,77818e85-e6dc-493f-9148-a71c29c715af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19100,77818e85-e6dc-493f-9148-a71c29c715af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19101,77818e85-e6dc-493f-9148-a71c29c715af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19102,76ffdd10-b209-44a7-8568-5c229bc9cd07,LIST_ACCOUNTS,hbciListAccounts,false -19103,76ffdd10-b209-44a7-8568-5c229bc9cd07,LIST_TRANSACTIONS,hbciListTransactions,false -19104,76ffdd10-b209-44a7-8568-5c229bc9cd07,AUTHORIZATION,,false -19105,76ffdd10-b209-44a7-8568-5c229bc9cd07,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19106,76ffdd10-b209-44a7-8568-5c229bc9cd07,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19107,76ffdd10-b209-44a7-8568-5c229bc9cd07,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19102,c43a0c98-5a79-4610-ad9f-b7b4a2d5107b,LIST_ACCOUNTS,hbciListAccounts,false +19103,c43a0c98-5a79-4610-ad9f-b7b4a2d5107b,LIST_TRANSACTIONS,hbciListTransactions,false +19104,c43a0c98-5a79-4610-ad9f-b7b4a2d5107b,AUTHORIZATION,,false +19105,c43a0c98-5a79-4610-ad9f-b7b4a2d5107b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19106,c43a0c98-5a79-4610-ad9f-b7b4a2d5107b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19107,c43a0c98-5a79-4610-ad9f-b7b4a2d5107b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19108,0fb5f528-c594-4d0e-b0bf-1146e1c652d0,LIST_ACCOUNTS,xs2aListAccounts,true -19109,0fb5f528-c594-4d0e-b0bf-1146e1c652d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19109,0fb5f528-c594-4d0e-b0bf-1146e1c652d0,LIST_TRANSACTIONS,xs2aListTransactions,true 19110,0fb5f528-c594-4d0e-b0bf-1146e1c652d0,AUTHORIZATION,,true 19111,0fb5f528-c594-4d0e-b0bf-1146e1c652d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19112,0fb5f528-c594-4d0e-b0bf-1146e1c652d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19113,0fb5f528-c594-4d0e-b0bf-1146e1c652d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19114,bd95a75e-6fff-42f1-87a7-ea3c6ba0d2ec,LIST_ACCOUNTS,hbciListAccounts,false -19115,bd95a75e-6fff-42f1-87a7-ea3c6ba0d2ec,LIST_TRANSACTIONS,hbciListTransactions,false -19116,bd95a75e-6fff-42f1-87a7-ea3c6ba0d2ec,AUTHORIZATION,,false -19117,bd95a75e-6fff-42f1-87a7-ea3c6ba0d2ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19118,bd95a75e-6fff-42f1-87a7-ea3c6ba0d2ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19119,bd95a75e-6fff-42f1-87a7-ea3c6ba0d2ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19114,7d97c041-b609-4f21-a673-e1809fa3d241,LIST_ACCOUNTS,hbciListAccounts,false +19115,7d97c041-b609-4f21-a673-e1809fa3d241,LIST_TRANSACTIONS,hbciListTransactions,false +19116,7d97c041-b609-4f21-a673-e1809fa3d241,AUTHORIZATION,,false +19117,7d97c041-b609-4f21-a673-e1809fa3d241,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19118,7d97c041-b609-4f21-a673-e1809fa3d241,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19119,7d97c041-b609-4f21-a673-e1809fa3d241,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19120,0583032d-0560-4535-99a4-b8747ddd3d4d,LIST_ACCOUNTS,xs2aListAccounts,true -19121,0583032d-0560-4535-99a4-b8747ddd3d4d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19121,0583032d-0560-4535-99a4-b8747ddd3d4d,LIST_TRANSACTIONS,xs2aListTransactions,true 19122,0583032d-0560-4535-99a4-b8747ddd3d4d,AUTHORIZATION,,true 19123,0583032d-0560-4535-99a4-b8747ddd3d4d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19124,0583032d-0560-4535-99a4-b8747ddd3d4d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19125,0583032d-0560-4535-99a4-b8747ddd3d4d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19126,4e1e065a-779c-4c78-a083-3a55255738ce,LIST_ACCOUNTS,hbciListAccounts,false -19127,4e1e065a-779c-4c78-a083-3a55255738ce,LIST_TRANSACTIONS,hbciListTransactions,false -19128,4e1e065a-779c-4c78-a083-3a55255738ce,AUTHORIZATION,,false -19129,4e1e065a-779c-4c78-a083-3a55255738ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19130,4e1e065a-779c-4c78-a083-3a55255738ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19131,4e1e065a-779c-4c78-a083-3a55255738ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19126,e05dd16e-ef24-418d-82ea-cd61a6aac7ed,LIST_ACCOUNTS,hbciListAccounts,false +19127,e05dd16e-ef24-418d-82ea-cd61a6aac7ed,LIST_TRANSACTIONS,hbciListTransactions,false +19128,e05dd16e-ef24-418d-82ea-cd61a6aac7ed,AUTHORIZATION,,false +19129,e05dd16e-ef24-418d-82ea-cd61a6aac7ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19130,e05dd16e-ef24-418d-82ea-cd61a6aac7ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19131,e05dd16e-ef24-418d-82ea-cd61a6aac7ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19132,a963f288-55cf-4636-9fe5-7b0959ce6d98,LIST_ACCOUNTS,xs2aListAccounts,true -19133,a963f288-55cf-4636-9fe5-7b0959ce6d98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19133,a963f288-55cf-4636-9fe5-7b0959ce6d98,LIST_TRANSACTIONS,xs2aListTransactions,true 19134,a963f288-55cf-4636-9fe5-7b0959ce6d98,AUTHORIZATION,,true 19135,a963f288-55cf-4636-9fe5-7b0959ce6d98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19136,a963f288-55cf-4636-9fe5-7b0959ce6d98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19137,a963f288-55cf-4636-9fe5-7b0959ce6d98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19138,c0227d69-1348-4111-bbe5-baf3521a7944,LIST_ACCOUNTS,hbciListAccounts,false -19139,c0227d69-1348-4111-bbe5-baf3521a7944,LIST_TRANSACTIONS,hbciListTransactions,false -19140,c0227d69-1348-4111-bbe5-baf3521a7944,AUTHORIZATION,,false -19141,c0227d69-1348-4111-bbe5-baf3521a7944,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19142,c0227d69-1348-4111-bbe5-baf3521a7944,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19143,c0227d69-1348-4111-bbe5-baf3521a7944,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19138,b89de267-8cf0-4ab8-a20f-481377de7936,LIST_ACCOUNTS,hbciListAccounts,false +19139,b89de267-8cf0-4ab8-a20f-481377de7936,LIST_TRANSACTIONS,hbciListTransactions,false +19140,b89de267-8cf0-4ab8-a20f-481377de7936,AUTHORIZATION,,false +19141,b89de267-8cf0-4ab8-a20f-481377de7936,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19142,b89de267-8cf0-4ab8-a20f-481377de7936,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19143,b89de267-8cf0-4ab8-a20f-481377de7936,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19144,d5a9907a-13ca-4744-b71c-8f2120cc311b,LIST_ACCOUNTS,xs2aListAccounts,true -19145,d5a9907a-13ca-4744-b71c-8f2120cc311b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19145,d5a9907a-13ca-4744-b71c-8f2120cc311b,LIST_TRANSACTIONS,xs2aListTransactions,true 19146,d5a9907a-13ca-4744-b71c-8f2120cc311b,AUTHORIZATION,,true 19147,d5a9907a-13ca-4744-b71c-8f2120cc311b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19148,d5a9907a-13ca-4744-b71c-8f2120cc311b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19149,d5a9907a-13ca-4744-b71c-8f2120cc311b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19150,e09a87cd-15c9-44d3-83a7-a7e423af5a91,LIST_ACCOUNTS,hbciListAccounts,false -19151,e09a87cd-15c9-44d3-83a7-a7e423af5a91,LIST_TRANSACTIONS,hbciListTransactions,false -19152,e09a87cd-15c9-44d3-83a7-a7e423af5a91,AUTHORIZATION,,false -19153,e09a87cd-15c9-44d3-83a7-a7e423af5a91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19154,e09a87cd-15c9-44d3-83a7-a7e423af5a91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19155,e09a87cd-15c9-44d3-83a7-a7e423af5a91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19150,9b26256c-06fd-4b46-bc8a-bc14e7b576a4,LIST_ACCOUNTS,hbciListAccounts,false +19151,9b26256c-06fd-4b46-bc8a-bc14e7b576a4,LIST_TRANSACTIONS,hbciListTransactions,false +19152,9b26256c-06fd-4b46-bc8a-bc14e7b576a4,AUTHORIZATION,,false +19153,9b26256c-06fd-4b46-bc8a-bc14e7b576a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19154,9b26256c-06fd-4b46-bc8a-bc14e7b576a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19155,9b26256c-06fd-4b46-bc8a-bc14e7b576a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19156,3dabdd85-09fc-4a4c-946e-c759a6f53141,LIST_ACCOUNTS,xs2aListAccounts,true -19157,3dabdd85-09fc-4a4c-946e-c759a6f53141,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19157,3dabdd85-09fc-4a4c-946e-c759a6f53141,LIST_TRANSACTIONS,xs2aListTransactions,true 19158,3dabdd85-09fc-4a4c-946e-c759a6f53141,AUTHORIZATION,,true 19159,3dabdd85-09fc-4a4c-946e-c759a6f53141,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19160,3dabdd85-09fc-4a4c-946e-c759a6f53141,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19161,3dabdd85-09fc-4a4c-946e-c759a6f53141,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19162,81b9a82e-86cd-4bf4-8616-6faf1a50fa6a,LIST_ACCOUNTS,hbciListAccounts,false -19163,81b9a82e-86cd-4bf4-8616-6faf1a50fa6a,LIST_TRANSACTIONS,hbciListTransactions,false -19164,81b9a82e-86cd-4bf4-8616-6faf1a50fa6a,AUTHORIZATION,,false -19165,81b9a82e-86cd-4bf4-8616-6faf1a50fa6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19166,81b9a82e-86cd-4bf4-8616-6faf1a50fa6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19167,81b9a82e-86cd-4bf4-8616-6faf1a50fa6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19162,fc152650-c1f5-4ac3-8f75-e01e27d56581,LIST_ACCOUNTS,hbciListAccounts,false +19163,fc152650-c1f5-4ac3-8f75-e01e27d56581,LIST_TRANSACTIONS,hbciListTransactions,false +19164,fc152650-c1f5-4ac3-8f75-e01e27d56581,AUTHORIZATION,,false +19165,fc152650-c1f5-4ac3-8f75-e01e27d56581,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19166,fc152650-c1f5-4ac3-8f75-e01e27d56581,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19167,fc152650-c1f5-4ac3-8f75-e01e27d56581,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19168,1bb43e37-714a-499a-83d2-a06ce55a8cca,LIST_ACCOUNTS,xs2aListAccounts,true -19169,1bb43e37-714a-499a-83d2-a06ce55a8cca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19169,1bb43e37-714a-499a-83d2-a06ce55a8cca,LIST_TRANSACTIONS,xs2aListTransactions,true 19170,1bb43e37-714a-499a-83d2-a06ce55a8cca,AUTHORIZATION,,true 19171,1bb43e37-714a-499a-83d2-a06ce55a8cca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19172,1bb43e37-714a-499a-83d2-a06ce55a8cca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19173,1bb43e37-714a-499a-83d2-a06ce55a8cca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19174,cadc8822-77c1-4659-abe1-5224afdbfdb9,LIST_ACCOUNTS,hbciListAccounts,false -19175,cadc8822-77c1-4659-abe1-5224afdbfdb9,LIST_TRANSACTIONS,hbciListTransactions,false -19176,cadc8822-77c1-4659-abe1-5224afdbfdb9,AUTHORIZATION,,false -19177,cadc8822-77c1-4659-abe1-5224afdbfdb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19178,cadc8822-77c1-4659-abe1-5224afdbfdb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19179,cadc8822-77c1-4659-abe1-5224afdbfdb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19174,2645ceae-5fa1-4da1-b726-ce4b235a0e67,LIST_ACCOUNTS,hbciListAccounts,false +19175,2645ceae-5fa1-4da1-b726-ce4b235a0e67,LIST_TRANSACTIONS,hbciListTransactions,false +19176,2645ceae-5fa1-4da1-b726-ce4b235a0e67,AUTHORIZATION,,false +19177,2645ceae-5fa1-4da1-b726-ce4b235a0e67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19178,2645ceae-5fa1-4da1-b726-ce4b235a0e67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19179,2645ceae-5fa1-4da1-b726-ce4b235a0e67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19180,9abce8ff-82cb-47d2-9a0d-d7d44c05ca49,LIST_ACCOUNTS,xs2aListAccounts,true -19181,9abce8ff-82cb-47d2-9a0d-d7d44c05ca49,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19181,9abce8ff-82cb-47d2-9a0d-d7d44c05ca49,LIST_TRANSACTIONS,xs2aListTransactions,true 19182,9abce8ff-82cb-47d2-9a0d-d7d44c05ca49,AUTHORIZATION,,true 19183,9abce8ff-82cb-47d2-9a0d-d7d44c05ca49,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19184,9abce8ff-82cb-47d2-9a0d-d7d44c05ca49,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19185,9abce8ff-82cb-47d2-9a0d-d7d44c05ca49,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19186,cb5245a6-9504-435c-bda0-aa7aaa2bd49d,LIST_ACCOUNTS,hbciListAccounts,false -19187,cb5245a6-9504-435c-bda0-aa7aaa2bd49d,LIST_TRANSACTIONS,hbciListTransactions,false -19188,cb5245a6-9504-435c-bda0-aa7aaa2bd49d,AUTHORIZATION,,false -19189,cb5245a6-9504-435c-bda0-aa7aaa2bd49d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19190,cb5245a6-9504-435c-bda0-aa7aaa2bd49d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19191,cb5245a6-9504-435c-bda0-aa7aaa2bd49d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19186,3679b91f-b22f-43c3-9f2e-ac5f1d1d73e0,LIST_ACCOUNTS,hbciListAccounts,false +19187,3679b91f-b22f-43c3-9f2e-ac5f1d1d73e0,LIST_TRANSACTIONS,hbciListTransactions,false +19188,3679b91f-b22f-43c3-9f2e-ac5f1d1d73e0,AUTHORIZATION,,false +19189,3679b91f-b22f-43c3-9f2e-ac5f1d1d73e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19190,3679b91f-b22f-43c3-9f2e-ac5f1d1d73e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19191,3679b91f-b22f-43c3-9f2e-ac5f1d1d73e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19192,bf9a8b88-3862-4667-8487-3a67b05e4f55,LIST_ACCOUNTS,xs2aListAccounts,true -19193,bf9a8b88-3862-4667-8487-3a67b05e4f55,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19193,bf9a8b88-3862-4667-8487-3a67b05e4f55,LIST_TRANSACTIONS,xs2aListTransactions,true 19194,bf9a8b88-3862-4667-8487-3a67b05e4f55,AUTHORIZATION,,true 19195,bf9a8b88-3862-4667-8487-3a67b05e4f55,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19196,bf9a8b88-3862-4667-8487-3a67b05e4f55,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19197,bf9a8b88-3862-4667-8487-3a67b05e4f55,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19198,03beae71-c388-4fb3-9212-d8cf2cbb9694,LIST_ACCOUNTS,hbciListAccounts,false -19199,03beae71-c388-4fb3-9212-d8cf2cbb9694,LIST_TRANSACTIONS,hbciListTransactions,false -19200,03beae71-c388-4fb3-9212-d8cf2cbb9694,AUTHORIZATION,,false -19201,03beae71-c388-4fb3-9212-d8cf2cbb9694,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19202,03beae71-c388-4fb3-9212-d8cf2cbb9694,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19203,03beae71-c388-4fb3-9212-d8cf2cbb9694,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19198,3b025c22-35c0-455b-b7ed-013a16216b1d,LIST_ACCOUNTS,hbciListAccounts,false +19199,3b025c22-35c0-455b-b7ed-013a16216b1d,LIST_TRANSACTIONS,hbciListTransactions,false +19200,3b025c22-35c0-455b-b7ed-013a16216b1d,AUTHORIZATION,,false +19201,3b025c22-35c0-455b-b7ed-013a16216b1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19202,3b025c22-35c0-455b-b7ed-013a16216b1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19203,3b025c22-35c0-455b-b7ed-013a16216b1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19204,24c39856-a5d0-41db-9650-363eebc2eea3,LIST_ACCOUNTS,xs2aListAccounts,true -19205,24c39856-a5d0-41db-9650-363eebc2eea3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19205,24c39856-a5d0-41db-9650-363eebc2eea3,LIST_TRANSACTIONS,xs2aListTransactions,true 19206,24c39856-a5d0-41db-9650-363eebc2eea3,AUTHORIZATION,,true 19207,24c39856-a5d0-41db-9650-363eebc2eea3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19208,24c39856-a5d0-41db-9650-363eebc2eea3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19209,24c39856-a5d0-41db-9650-363eebc2eea3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19210,d4742756-db21-4461-a285-97c0801a2962,LIST_ACCOUNTS,hbciListAccounts,false -19211,d4742756-db21-4461-a285-97c0801a2962,LIST_TRANSACTIONS,hbciListTransactions,false -19212,d4742756-db21-4461-a285-97c0801a2962,AUTHORIZATION,,false -19213,d4742756-db21-4461-a285-97c0801a2962,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19214,d4742756-db21-4461-a285-97c0801a2962,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19215,d4742756-db21-4461-a285-97c0801a2962,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19210,499fda7b-565e-465c-99c7-9d1e75261a4c,LIST_ACCOUNTS,hbciListAccounts,false +19211,499fda7b-565e-465c-99c7-9d1e75261a4c,LIST_TRANSACTIONS,hbciListTransactions,false +19212,499fda7b-565e-465c-99c7-9d1e75261a4c,AUTHORIZATION,,false +19213,499fda7b-565e-465c-99c7-9d1e75261a4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19214,499fda7b-565e-465c-99c7-9d1e75261a4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19215,499fda7b-565e-465c-99c7-9d1e75261a4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19216,126b6404-d361-4669-8b2d-1e78c2ec5e6f,LIST_ACCOUNTS,xs2aListAccounts,true -19217,126b6404-d361-4669-8b2d-1e78c2ec5e6f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19217,126b6404-d361-4669-8b2d-1e78c2ec5e6f,LIST_TRANSACTIONS,xs2aListTransactions,true 19218,126b6404-d361-4669-8b2d-1e78c2ec5e6f,AUTHORIZATION,,true 19219,126b6404-d361-4669-8b2d-1e78c2ec5e6f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19220,126b6404-d361-4669-8b2d-1e78c2ec5e6f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19221,126b6404-d361-4669-8b2d-1e78c2ec5e6f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19222,bbb36411-94e8-4a11-b3ae-77abaaed81c5,LIST_ACCOUNTS,hbciListAccounts,false -19223,bbb36411-94e8-4a11-b3ae-77abaaed81c5,LIST_TRANSACTIONS,hbciListTransactions,false -19224,bbb36411-94e8-4a11-b3ae-77abaaed81c5,AUTHORIZATION,,false -19225,bbb36411-94e8-4a11-b3ae-77abaaed81c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19226,bbb36411-94e8-4a11-b3ae-77abaaed81c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19227,bbb36411-94e8-4a11-b3ae-77abaaed81c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19222,ac22a5da-4174-4433-89fe-9f38872793ad,LIST_ACCOUNTS,hbciListAccounts,false +19223,ac22a5da-4174-4433-89fe-9f38872793ad,LIST_TRANSACTIONS,hbciListTransactions,false +19224,ac22a5da-4174-4433-89fe-9f38872793ad,AUTHORIZATION,,false +19225,ac22a5da-4174-4433-89fe-9f38872793ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19226,ac22a5da-4174-4433-89fe-9f38872793ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19227,ac22a5da-4174-4433-89fe-9f38872793ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19228,73fbb66e-d13a-467a-a2f0-27757495cc84,LIST_ACCOUNTS,xs2aListAccounts,true -19229,73fbb66e-d13a-467a-a2f0-27757495cc84,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19229,73fbb66e-d13a-467a-a2f0-27757495cc84,LIST_TRANSACTIONS,xs2aListTransactions,true 19230,73fbb66e-d13a-467a-a2f0-27757495cc84,AUTHORIZATION,,true 19231,73fbb66e-d13a-467a-a2f0-27757495cc84,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19232,73fbb66e-d13a-467a-a2f0-27757495cc84,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19233,73fbb66e-d13a-467a-a2f0-27757495cc84,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19234,0d326ffe-b851-41e7-a928-bbd161debf09,LIST_ACCOUNTS,hbciListAccounts,false -19235,0d326ffe-b851-41e7-a928-bbd161debf09,LIST_TRANSACTIONS,hbciListTransactions,false -19236,0d326ffe-b851-41e7-a928-bbd161debf09,AUTHORIZATION,,false -19237,0d326ffe-b851-41e7-a928-bbd161debf09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19238,0d326ffe-b851-41e7-a928-bbd161debf09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19239,0d326ffe-b851-41e7-a928-bbd161debf09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19234,5dcd9bd7-a522-4016-b5da-8580fb5b4758,LIST_ACCOUNTS,hbciListAccounts,false +19235,5dcd9bd7-a522-4016-b5da-8580fb5b4758,LIST_TRANSACTIONS,hbciListTransactions,false +19236,5dcd9bd7-a522-4016-b5da-8580fb5b4758,AUTHORIZATION,,false +19237,5dcd9bd7-a522-4016-b5da-8580fb5b4758,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19238,5dcd9bd7-a522-4016-b5da-8580fb5b4758,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19239,5dcd9bd7-a522-4016-b5da-8580fb5b4758,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19240,adf46809-954f-42ce-9803-b4478c35f4f7,LIST_ACCOUNTS,xs2aListAccounts,true -19241,adf46809-954f-42ce-9803-b4478c35f4f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19241,adf46809-954f-42ce-9803-b4478c35f4f7,LIST_TRANSACTIONS,xs2aListTransactions,true 19242,adf46809-954f-42ce-9803-b4478c35f4f7,AUTHORIZATION,,true 19243,adf46809-954f-42ce-9803-b4478c35f4f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19244,adf46809-954f-42ce-9803-b4478c35f4f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19245,adf46809-954f-42ce-9803-b4478c35f4f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19246,754b5d20-a682-4d4f-b92f-84cfce0543b0,LIST_ACCOUNTS,hbciListAccounts,false -19247,754b5d20-a682-4d4f-b92f-84cfce0543b0,LIST_TRANSACTIONS,hbciListTransactions,false -19248,754b5d20-a682-4d4f-b92f-84cfce0543b0,AUTHORIZATION,,false -19249,754b5d20-a682-4d4f-b92f-84cfce0543b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19250,754b5d20-a682-4d4f-b92f-84cfce0543b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19251,754b5d20-a682-4d4f-b92f-84cfce0543b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19246,3dd8340d-f72c-4d58-8185-0679764f708d,LIST_ACCOUNTS,hbciListAccounts,false +19247,3dd8340d-f72c-4d58-8185-0679764f708d,LIST_TRANSACTIONS,hbciListTransactions,false +19248,3dd8340d-f72c-4d58-8185-0679764f708d,AUTHORIZATION,,false +19249,3dd8340d-f72c-4d58-8185-0679764f708d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19250,3dd8340d-f72c-4d58-8185-0679764f708d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19251,3dd8340d-f72c-4d58-8185-0679764f708d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19252,ae0c1947-87ef-418e-a5b3-bc160f8d0d00,LIST_ACCOUNTS,xs2aListAccounts,true -19253,ae0c1947-87ef-418e-a5b3-bc160f8d0d00,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19253,ae0c1947-87ef-418e-a5b3-bc160f8d0d00,LIST_TRANSACTIONS,xs2aListTransactions,true 19254,ae0c1947-87ef-418e-a5b3-bc160f8d0d00,AUTHORIZATION,,true 19255,ae0c1947-87ef-418e-a5b3-bc160f8d0d00,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19256,ae0c1947-87ef-418e-a5b3-bc160f8d0d00,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19257,ae0c1947-87ef-418e-a5b3-bc160f8d0d00,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19258,78133b96-de65-4da0-bda0-8911f78bfbb1,LIST_ACCOUNTS,hbciListAccounts,false -19259,78133b96-de65-4da0-bda0-8911f78bfbb1,LIST_TRANSACTIONS,hbciListTransactions,false -19260,78133b96-de65-4da0-bda0-8911f78bfbb1,AUTHORIZATION,,false -19261,78133b96-de65-4da0-bda0-8911f78bfbb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19262,78133b96-de65-4da0-bda0-8911f78bfbb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19263,78133b96-de65-4da0-bda0-8911f78bfbb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19258,325c4080-1693-423f-96f9-f3d0ca54a312,LIST_ACCOUNTS,hbciListAccounts,false +19259,325c4080-1693-423f-96f9-f3d0ca54a312,LIST_TRANSACTIONS,hbciListTransactions,false +19260,325c4080-1693-423f-96f9-f3d0ca54a312,AUTHORIZATION,,false +19261,325c4080-1693-423f-96f9-f3d0ca54a312,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19262,325c4080-1693-423f-96f9-f3d0ca54a312,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19263,325c4080-1693-423f-96f9-f3d0ca54a312,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19264,8af35292-924d-4db0-8546-686326f00da8,LIST_ACCOUNTS,xs2aListAccounts,true -19265,8af35292-924d-4db0-8546-686326f00da8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19265,8af35292-924d-4db0-8546-686326f00da8,LIST_TRANSACTIONS,xs2aListTransactions,true 19266,8af35292-924d-4db0-8546-686326f00da8,AUTHORIZATION,,true 19267,8af35292-924d-4db0-8546-686326f00da8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19268,8af35292-924d-4db0-8546-686326f00da8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19269,8af35292-924d-4db0-8546-686326f00da8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19270,d289538f-e39c-4c78-809b-d032dd7bac01,LIST_ACCOUNTS,hbciListAccounts,false -19271,d289538f-e39c-4c78-809b-d032dd7bac01,LIST_TRANSACTIONS,hbciListTransactions,false -19272,d289538f-e39c-4c78-809b-d032dd7bac01,AUTHORIZATION,,false -19273,d289538f-e39c-4c78-809b-d032dd7bac01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19274,d289538f-e39c-4c78-809b-d032dd7bac01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19275,d289538f-e39c-4c78-809b-d032dd7bac01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19270,440b58bf-78cf-4df2-b241-9ce132493737,LIST_ACCOUNTS,hbciListAccounts,false +19271,440b58bf-78cf-4df2-b241-9ce132493737,LIST_TRANSACTIONS,hbciListTransactions,false +19272,440b58bf-78cf-4df2-b241-9ce132493737,AUTHORIZATION,,false +19273,440b58bf-78cf-4df2-b241-9ce132493737,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19274,440b58bf-78cf-4df2-b241-9ce132493737,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19275,440b58bf-78cf-4df2-b241-9ce132493737,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19276,27f6a531-16fe-4655-acea-f4104dd1b434,LIST_ACCOUNTS,xs2aListAccounts,true -19277,27f6a531-16fe-4655-acea-f4104dd1b434,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19277,27f6a531-16fe-4655-acea-f4104dd1b434,LIST_TRANSACTIONS,xs2aListTransactions,true 19278,27f6a531-16fe-4655-acea-f4104dd1b434,AUTHORIZATION,,true 19279,27f6a531-16fe-4655-acea-f4104dd1b434,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19280,27f6a531-16fe-4655-acea-f4104dd1b434,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19281,27f6a531-16fe-4655-acea-f4104dd1b434,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19282,f4370860-bc5e-4743-a8e8-904664e6b75a,LIST_ACCOUNTS,hbciListAccounts,false -19283,f4370860-bc5e-4743-a8e8-904664e6b75a,LIST_TRANSACTIONS,hbciListTransactions,false -19284,f4370860-bc5e-4743-a8e8-904664e6b75a,AUTHORIZATION,,false -19285,f4370860-bc5e-4743-a8e8-904664e6b75a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19286,f4370860-bc5e-4743-a8e8-904664e6b75a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19287,f4370860-bc5e-4743-a8e8-904664e6b75a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19282,0a3f9ff4-ff12-4c8a-824d-97d97ca7ff21,LIST_ACCOUNTS,hbciListAccounts,false +19283,0a3f9ff4-ff12-4c8a-824d-97d97ca7ff21,LIST_TRANSACTIONS,hbciListTransactions,false +19284,0a3f9ff4-ff12-4c8a-824d-97d97ca7ff21,AUTHORIZATION,,false +19285,0a3f9ff4-ff12-4c8a-824d-97d97ca7ff21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19286,0a3f9ff4-ff12-4c8a-824d-97d97ca7ff21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19287,0a3f9ff4-ff12-4c8a-824d-97d97ca7ff21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19288,2057a825-fb20-49ac-8ef8-51e071103779,LIST_ACCOUNTS,xs2aListAccounts,true -19289,2057a825-fb20-49ac-8ef8-51e071103779,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19289,2057a825-fb20-49ac-8ef8-51e071103779,LIST_TRANSACTIONS,xs2aListTransactions,true 19290,2057a825-fb20-49ac-8ef8-51e071103779,AUTHORIZATION,,true 19291,2057a825-fb20-49ac-8ef8-51e071103779,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19292,2057a825-fb20-49ac-8ef8-51e071103779,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19293,2057a825-fb20-49ac-8ef8-51e071103779,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19294,84ee2675-ad3f-4bd1-b1c0-9a0985c3392a,LIST_ACCOUNTS,hbciListAccounts,false -19295,84ee2675-ad3f-4bd1-b1c0-9a0985c3392a,LIST_TRANSACTIONS,hbciListTransactions,false -19296,84ee2675-ad3f-4bd1-b1c0-9a0985c3392a,AUTHORIZATION,,false -19297,84ee2675-ad3f-4bd1-b1c0-9a0985c3392a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19298,84ee2675-ad3f-4bd1-b1c0-9a0985c3392a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19299,84ee2675-ad3f-4bd1-b1c0-9a0985c3392a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19294,c68b4c44-93a9-4db1-8fb8-15f12a9a8c05,LIST_ACCOUNTS,hbciListAccounts,false +19295,c68b4c44-93a9-4db1-8fb8-15f12a9a8c05,LIST_TRANSACTIONS,hbciListTransactions,false +19296,c68b4c44-93a9-4db1-8fb8-15f12a9a8c05,AUTHORIZATION,,false +19297,c68b4c44-93a9-4db1-8fb8-15f12a9a8c05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19298,c68b4c44-93a9-4db1-8fb8-15f12a9a8c05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19299,c68b4c44-93a9-4db1-8fb8-15f12a9a8c05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19300,42236700-2d2f-497e-9349-ea62a1871a51,LIST_ACCOUNTS,xs2aListAccounts,true -19301,42236700-2d2f-497e-9349-ea62a1871a51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19301,42236700-2d2f-497e-9349-ea62a1871a51,LIST_TRANSACTIONS,xs2aListTransactions,true 19302,42236700-2d2f-497e-9349-ea62a1871a51,AUTHORIZATION,,true 19303,42236700-2d2f-497e-9349-ea62a1871a51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19304,42236700-2d2f-497e-9349-ea62a1871a51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19305,42236700-2d2f-497e-9349-ea62a1871a51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19306,d7ba888c-fb66-4b6f-8924-a8d3ff2cf928,LIST_ACCOUNTS,hbciListAccounts,false -19307,d7ba888c-fb66-4b6f-8924-a8d3ff2cf928,LIST_TRANSACTIONS,hbciListTransactions,false -19308,d7ba888c-fb66-4b6f-8924-a8d3ff2cf928,AUTHORIZATION,,false -19309,d7ba888c-fb66-4b6f-8924-a8d3ff2cf928,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19310,d7ba888c-fb66-4b6f-8924-a8d3ff2cf928,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19311,d7ba888c-fb66-4b6f-8924-a8d3ff2cf928,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19306,76c0ec50-85ec-4421-8ceb-9ee9a62282ce,LIST_ACCOUNTS,hbciListAccounts,false +19307,76c0ec50-85ec-4421-8ceb-9ee9a62282ce,LIST_TRANSACTIONS,hbciListTransactions,false +19308,76c0ec50-85ec-4421-8ceb-9ee9a62282ce,AUTHORIZATION,,false +19309,76c0ec50-85ec-4421-8ceb-9ee9a62282ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19310,76c0ec50-85ec-4421-8ceb-9ee9a62282ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19311,76c0ec50-85ec-4421-8ceb-9ee9a62282ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19312,5e4147b0-0ced-47b6-99cc-41b0d8536af6,LIST_ACCOUNTS,xs2aListAccounts,true -19313,5e4147b0-0ced-47b6-99cc-41b0d8536af6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19313,5e4147b0-0ced-47b6-99cc-41b0d8536af6,LIST_TRANSACTIONS,xs2aListTransactions,true 19314,5e4147b0-0ced-47b6-99cc-41b0d8536af6,AUTHORIZATION,,true 19315,5e4147b0-0ced-47b6-99cc-41b0d8536af6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19316,5e4147b0-0ced-47b6-99cc-41b0d8536af6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19317,5e4147b0-0ced-47b6-99cc-41b0d8536af6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19318,796c1473-2d4c-41f9-8bea-b99b5fb0ebdf,LIST_ACCOUNTS,hbciListAccounts,false -19319,796c1473-2d4c-41f9-8bea-b99b5fb0ebdf,LIST_TRANSACTIONS,hbciListTransactions,false -19320,796c1473-2d4c-41f9-8bea-b99b5fb0ebdf,AUTHORIZATION,,false -19321,796c1473-2d4c-41f9-8bea-b99b5fb0ebdf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19322,796c1473-2d4c-41f9-8bea-b99b5fb0ebdf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19323,796c1473-2d4c-41f9-8bea-b99b5fb0ebdf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19318,77017d72-62d2-44e7-8d33-6456ea522471,LIST_ACCOUNTS,hbciListAccounts,false +19319,77017d72-62d2-44e7-8d33-6456ea522471,LIST_TRANSACTIONS,hbciListTransactions,false +19320,77017d72-62d2-44e7-8d33-6456ea522471,AUTHORIZATION,,false +19321,77017d72-62d2-44e7-8d33-6456ea522471,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19322,77017d72-62d2-44e7-8d33-6456ea522471,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19323,77017d72-62d2-44e7-8d33-6456ea522471,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19324,9ec9d730-9c81-4cdf-9b15-8ea470511d65,LIST_ACCOUNTS,xs2aListAccounts,true -19325,9ec9d730-9c81-4cdf-9b15-8ea470511d65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19325,9ec9d730-9c81-4cdf-9b15-8ea470511d65,LIST_TRANSACTIONS,xs2aListTransactions,true 19326,9ec9d730-9c81-4cdf-9b15-8ea470511d65,AUTHORIZATION,,true 19327,9ec9d730-9c81-4cdf-9b15-8ea470511d65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19328,9ec9d730-9c81-4cdf-9b15-8ea470511d65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19329,9ec9d730-9c81-4cdf-9b15-8ea470511d65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19330,7c0b9a99-a927-43e3-8245-8f5e0cc87f0f,LIST_ACCOUNTS,hbciListAccounts,false -19331,7c0b9a99-a927-43e3-8245-8f5e0cc87f0f,LIST_TRANSACTIONS,hbciListTransactions,false -19332,7c0b9a99-a927-43e3-8245-8f5e0cc87f0f,AUTHORIZATION,,false -19333,7c0b9a99-a927-43e3-8245-8f5e0cc87f0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19334,7c0b9a99-a927-43e3-8245-8f5e0cc87f0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19335,7c0b9a99-a927-43e3-8245-8f5e0cc87f0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19330,627eed2f-bc6a-40a3-b8a6-d5dedeaf1662,LIST_ACCOUNTS,hbciListAccounts,false +19331,627eed2f-bc6a-40a3-b8a6-d5dedeaf1662,LIST_TRANSACTIONS,hbciListTransactions,false +19332,627eed2f-bc6a-40a3-b8a6-d5dedeaf1662,AUTHORIZATION,,false +19333,627eed2f-bc6a-40a3-b8a6-d5dedeaf1662,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19334,627eed2f-bc6a-40a3-b8a6-d5dedeaf1662,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19335,627eed2f-bc6a-40a3-b8a6-d5dedeaf1662,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19336,89ba0386-c214-4de3-ba71-7589bfb7d55a,LIST_ACCOUNTS,xs2aListAccounts,true -19337,89ba0386-c214-4de3-ba71-7589bfb7d55a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19337,89ba0386-c214-4de3-ba71-7589bfb7d55a,LIST_TRANSACTIONS,xs2aListTransactions,true 19338,89ba0386-c214-4de3-ba71-7589bfb7d55a,AUTHORIZATION,,true 19339,89ba0386-c214-4de3-ba71-7589bfb7d55a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19340,89ba0386-c214-4de3-ba71-7589bfb7d55a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19341,89ba0386-c214-4de3-ba71-7589bfb7d55a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19342,e80c901f-1836-4e93-b176-102bcaf73cb9,LIST_ACCOUNTS,hbciListAccounts,false -19343,e80c901f-1836-4e93-b176-102bcaf73cb9,LIST_TRANSACTIONS,hbciListTransactions,false -19344,e80c901f-1836-4e93-b176-102bcaf73cb9,AUTHORIZATION,,false -19345,e80c901f-1836-4e93-b176-102bcaf73cb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19346,e80c901f-1836-4e93-b176-102bcaf73cb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19347,e80c901f-1836-4e93-b176-102bcaf73cb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19342,8e260dde-f90e-456f-ad07-74c74c9ac335,LIST_ACCOUNTS,hbciListAccounts,false +19343,8e260dde-f90e-456f-ad07-74c74c9ac335,LIST_TRANSACTIONS,hbciListTransactions,false +19344,8e260dde-f90e-456f-ad07-74c74c9ac335,AUTHORIZATION,,false +19345,8e260dde-f90e-456f-ad07-74c74c9ac335,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19346,8e260dde-f90e-456f-ad07-74c74c9ac335,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19347,8e260dde-f90e-456f-ad07-74c74c9ac335,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19348,5dfa5107-55de-4c78-a938-3893a2342860,LIST_ACCOUNTS,xs2aListAccounts,true -19349,5dfa5107-55de-4c78-a938-3893a2342860,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19349,5dfa5107-55de-4c78-a938-3893a2342860,LIST_TRANSACTIONS,xs2aListTransactions,true 19350,5dfa5107-55de-4c78-a938-3893a2342860,AUTHORIZATION,,true 19351,5dfa5107-55de-4c78-a938-3893a2342860,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19352,5dfa5107-55de-4c78-a938-3893a2342860,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19353,5dfa5107-55de-4c78-a938-3893a2342860,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19354,db6b074c-e475-4176-ad7e-0a118e0175fa,LIST_ACCOUNTS,hbciListAccounts,false -19355,db6b074c-e475-4176-ad7e-0a118e0175fa,LIST_TRANSACTIONS,hbciListTransactions,false -19356,db6b074c-e475-4176-ad7e-0a118e0175fa,AUTHORIZATION,,false -19357,db6b074c-e475-4176-ad7e-0a118e0175fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19358,db6b074c-e475-4176-ad7e-0a118e0175fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19359,db6b074c-e475-4176-ad7e-0a118e0175fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19354,1f3f7cc2-7495-41bd-8295-8bc3d7ec2ac9,LIST_ACCOUNTS,hbciListAccounts,false +19355,1f3f7cc2-7495-41bd-8295-8bc3d7ec2ac9,LIST_TRANSACTIONS,hbciListTransactions,false +19356,1f3f7cc2-7495-41bd-8295-8bc3d7ec2ac9,AUTHORIZATION,,false +19357,1f3f7cc2-7495-41bd-8295-8bc3d7ec2ac9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19358,1f3f7cc2-7495-41bd-8295-8bc3d7ec2ac9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19359,1f3f7cc2-7495-41bd-8295-8bc3d7ec2ac9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19360,a37161fe-bb6c-4b5a-b400-bd81ed67c8cc,LIST_ACCOUNTS,xs2aListAccounts,true -19361,a37161fe-bb6c-4b5a-b400-bd81ed67c8cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19361,a37161fe-bb6c-4b5a-b400-bd81ed67c8cc,LIST_TRANSACTIONS,xs2aListTransactions,true 19362,a37161fe-bb6c-4b5a-b400-bd81ed67c8cc,AUTHORIZATION,,true 19363,a37161fe-bb6c-4b5a-b400-bd81ed67c8cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19364,a37161fe-bb6c-4b5a-b400-bd81ed67c8cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19365,a37161fe-bb6c-4b5a-b400-bd81ed67c8cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19366,1bccffa3-48fe-4313-8a37-f5feba18f931,LIST_ACCOUNTS,hbciListAccounts,false -19367,1bccffa3-48fe-4313-8a37-f5feba18f931,LIST_TRANSACTIONS,hbciListTransactions,false -19368,1bccffa3-48fe-4313-8a37-f5feba18f931,AUTHORIZATION,,false -19369,1bccffa3-48fe-4313-8a37-f5feba18f931,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19370,1bccffa3-48fe-4313-8a37-f5feba18f931,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19371,1bccffa3-48fe-4313-8a37-f5feba18f931,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19366,e858ace9-5ab4-4d26-97fd-cbdcccace9fe,LIST_ACCOUNTS,hbciListAccounts,false +19367,e858ace9-5ab4-4d26-97fd-cbdcccace9fe,LIST_TRANSACTIONS,hbciListTransactions,false +19368,e858ace9-5ab4-4d26-97fd-cbdcccace9fe,AUTHORIZATION,,false +19369,e858ace9-5ab4-4d26-97fd-cbdcccace9fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19370,e858ace9-5ab4-4d26-97fd-cbdcccace9fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19371,e858ace9-5ab4-4d26-97fd-cbdcccace9fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19372,4bd91932-54f3-4584-9fa5-0a0337b655f9,LIST_ACCOUNTS,xs2aListAccounts,true -19373,4bd91932-54f3-4584-9fa5-0a0337b655f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19373,4bd91932-54f3-4584-9fa5-0a0337b655f9,LIST_TRANSACTIONS,xs2aListTransactions,true 19374,4bd91932-54f3-4584-9fa5-0a0337b655f9,AUTHORIZATION,,true 19375,4bd91932-54f3-4584-9fa5-0a0337b655f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19376,4bd91932-54f3-4584-9fa5-0a0337b655f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19377,4bd91932-54f3-4584-9fa5-0a0337b655f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19378,334c71fa-7305-4c37-b95c-63b95a3d3bad,LIST_ACCOUNTS,hbciListAccounts,false -19379,334c71fa-7305-4c37-b95c-63b95a3d3bad,LIST_TRANSACTIONS,hbciListTransactions,false -19380,334c71fa-7305-4c37-b95c-63b95a3d3bad,AUTHORIZATION,,false -19381,334c71fa-7305-4c37-b95c-63b95a3d3bad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19382,334c71fa-7305-4c37-b95c-63b95a3d3bad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19383,334c71fa-7305-4c37-b95c-63b95a3d3bad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19378,f1f3387e-eb17-4a71-aea9-9ab73a4d6620,LIST_ACCOUNTS,hbciListAccounts,false +19379,f1f3387e-eb17-4a71-aea9-9ab73a4d6620,LIST_TRANSACTIONS,hbciListTransactions,false +19380,f1f3387e-eb17-4a71-aea9-9ab73a4d6620,AUTHORIZATION,,false +19381,f1f3387e-eb17-4a71-aea9-9ab73a4d6620,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19382,f1f3387e-eb17-4a71-aea9-9ab73a4d6620,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19383,f1f3387e-eb17-4a71-aea9-9ab73a4d6620,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19384,b1bf6691-f7ff-46db-9ec1-df4fe6907292,LIST_ACCOUNTS,xs2aListAccounts,true -19385,b1bf6691-f7ff-46db-9ec1-df4fe6907292,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19385,b1bf6691-f7ff-46db-9ec1-df4fe6907292,LIST_TRANSACTIONS,xs2aListTransactions,true 19386,b1bf6691-f7ff-46db-9ec1-df4fe6907292,AUTHORIZATION,,true 19387,b1bf6691-f7ff-46db-9ec1-df4fe6907292,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19388,b1bf6691-f7ff-46db-9ec1-df4fe6907292,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19389,b1bf6691-f7ff-46db-9ec1-df4fe6907292,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19390,5ec70c6e-934c-4df9-8fe7-7d8632068154,LIST_ACCOUNTS,hbciListAccounts,false -19391,5ec70c6e-934c-4df9-8fe7-7d8632068154,LIST_TRANSACTIONS,hbciListTransactions,false -19392,5ec70c6e-934c-4df9-8fe7-7d8632068154,AUTHORIZATION,,false -19393,5ec70c6e-934c-4df9-8fe7-7d8632068154,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19394,5ec70c6e-934c-4df9-8fe7-7d8632068154,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19395,5ec70c6e-934c-4df9-8fe7-7d8632068154,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19390,024dcd2a-5517-4a6f-8152-fdc92f9bd1ba,LIST_ACCOUNTS,hbciListAccounts,false +19391,024dcd2a-5517-4a6f-8152-fdc92f9bd1ba,LIST_TRANSACTIONS,hbciListTransactions,false +19392,024dcd2a-5517-4a6f-8152-fdc92f9bd1ba,AUTHORIZATION,,false +19393,024dcd2a-5517-4a6f-8152-fdc92f9bd1ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19394,024dcd2a-5517-4a6f-8152-fdc92f9bd1ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19395,024dcd2a-5517-4a6f-8152-fdc92f9bd1ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19396,294f9842-db35-4ded-9b84-417ebdcfa1f0,LIST_ACCOUNTS,xs2aListAccounts,true -19397,294f9842-db35-4ded-9b84-417ebdcfa1f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19397,294f9842-db35-4ded-9b84-417ebdcfa1f0,LIST_TRANSACTIONS,xs2aListTransactions,true 19398,294f9842-db35-4ded-9b84-417ebdcfa1f0,AUTHORIZATION,,true 19399,294f9842-db35-4ded-9b84-417ebdcfa1f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19400,294f9842-db35-4ded-9b84-417ebdcfa1f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19401,294f9842-db35-4ded-9b84-417ebdcfa1f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19402,46c52f42-ba07-4a39-97f0-961688bab1b3,LIST_ACCOUNTS,hbciListAccounts,false -19403,46c52f42-ba07-4a39-97f0-961688bab1b3,LIST_TRANSACTIONS,hbciListTransactions,false -19404,46c52f42-ba07-4a39-97f0-961688bab1b3,AUTHORIZATION,,false -19405,46c52f42-ba07-4a39-97f0-961688bab1b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19406,46c52f42-ba07-4a39-97f0-961688bab1b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19407,46c52f42-ba07-4a39-97f0-961688bab1b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19402,caefdfd9-168a-4a6b-8d16-407d4b9c7a48,LIST_ACCOUNTS,hbciListAccounts,false +19403,caefdfd9-168a-4a6b-8d16-407d4b9c7a48,LIST_TRANSACTIONS,hbciListTransactions,false +19404,caefdfd9-168a-4a6b-8d16-407d4b9c7a48,AUTHORIZATION,,false +19405,caefdfd9-168a-4a6b-8d16-407d4b9c7a48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19406,caefdfd9-168a-4a6b-8d16-407d4b9c7a48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19407,caefdfd9-168a-4a6b-8d16-407d4b9c7a48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19408,ffcc6233-74bf-41ca-a61b-263a1f3322b5,LIST_ACCOUNTS,xs2aListAccounts,true -19409,ffcc6233-74bf-41ca-a61b-263a1f3322b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19409,ffcc6233-74bf-41ca-a61b-263a1f3322b5,LIST_TRANSACTIONS,xs2aListTransactions,true 19410,ffcc6233-74bf-41ca-a61b-263a1f3322b5,AUTHORIZATION,,true 19411,ffcc6233-74bf-41ca-a61b-263a1f3322b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19412,ffcc6233-74bf-41ca-a61b-263a1f3322b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19413,ffcc6233-74bf-41ca-a61b-263a1f3322b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19414,0cd3e75f-237d-4264-9f86-4c9f93aaa53b,LIST_ACCOUNTS,hbciListAccounts,false -19415,0cd3e75f-237d-4264-9f86-4c9f93aaa53b,LIST_TRANSACTIONS,hbciListTransactions,false -19416,0cd3e75f-237d-4264-9f86-4c9f93aaa53b,AUTHORIZATION,,false -19417,0cd3e75f-237d-4264-9f86-4c9f93aaa53b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19418,0cd3e75f-237d-4264-9f86-4c9f93aaa53b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19419,0cd3e75f-237d-4264-9f86-4c9f93aaa53b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19414,6411420a-95ad-4c50-afb0-21a872cdb559,LIST_ACCOUNTS,hbciListAccounts,false +19415,6411420a-95ad-4c50-afb0-21a872cdb559,LIST_TRANSACTIONS,hbciListTransactions,false +19416,6411420a-95ad-4c50-afb0-21a872cdb559,AUTHORIZATION,,false +19417,6411420a-95ad-4c50-afb0-21a872cdb559,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19418,6411420a-95ad-4c50-afb0-21a872cdb559,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19419,6411420a-95ad-4c50-afb0-21a872cdb559,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19420,1c4432b5-6472-4afc-8fbd-8f921190ee03,LIST_ACCOUNTS,xs2aListAccounts,true -19421,1c4432b5-6472-4afc-8fbd-8f921190ee03,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19421,1c4432b5-6472-4afc-8fbd-8f921190ee03,LIST_TRANSACTIONS,xs2aListTransactions,true 19422,1c4432b5-6472-4afc-8fbd-8f921190ee03,AUTHORIZATION,,true 19423,1c4432b5-6472-4afc-8fbd-8f921190ee03,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19424,1c4432b5-6472-4afc-8fbd-8f921190ee03,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19425,1c4432b5-6472-4afc-8fbd-8f921190ee03,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19426,10d1e9f2-8b81-4ca3-a684-2bc02452a380,LIST_ACCOUNTS,hbciListAccounts,false -19427,10d1e9f2-8b81-4ca3-a684-2bc02452a380,LIST_TRANSACTIONS,hbciListTransactions,false -19428,10d1e9f2-8b81-4ca3-a684-2bc02452a380,AUTHORIZATION,,false -19429,10d1e9f2-8b81-4ca3-a684-2bc02452a380,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19430,10d1e9f2-8b81-4ca3-a684-2bc02452a380,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19431,10d1e9f2-8b81-4ca3-a684-2bc02452a380,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19426,b6c6d834-6b17-4d3b-8757-c795293299ef,LIST_ACCOUNTS,hbciListAccounts,false +19427,b6c6d834-6b17-4d3b-8757-c795293299ef,LIST_TRANSACTIONS,hbciListTransactions,false +19428,b6c6d834-6b17-4d3b-8757-c795293299ef,AUTHORIZATION,,false +19429,b6c6d834-6b17-4d3b-8757-c795293299ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19430,b6c6d834-6b17-4d3b-8757-c795293299ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19431,b6c6d834-6b17-4d3b-8757-c795293299ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19432,68316944-0a35-43bb-b84c-b387d0d72e4c,LIST_ACCOUNTS,xs2aListAccounts,true -19433,68316944-0a35-43bb-b84c-b387d0d72e4c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19433,68316944-0a35-43bb-b84c-b387d0d72e4c,LIST_TRANSACTIONS,xs2aListTransactions,true 19434,68316944-0a35-43bb-b84c-b387d0d72e4c,AUTHORIZATION,,true 19435,68316944-0a35-43bb-b84c-b387d0d72e4c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19436,68316944-0a35-43bb-b84c-b387d0d72e4c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19437,68316944-0a35-43bb-b84c-b387d0d72e4c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19438,a48e16ee-d238-43a8-9091-6ef6178eb010,LIST_ACCOUNTS,hbciListAccounts,false -19439,a48e16ee-d238-43a8-9091-6ef6178eb010,LIST_TRANSACTIONS,hbciListTransactions,false -19440,a48e16ee-d238-43a8-9091-6ef6178eb010,AUTHORIZATION,,false -19441,a48e16ee-d238-43a8-9091-6ef6178eb010,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19442,a48e16ee-d238-43a8-9091-6ef6178eb010,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19443,a48e16ee-d238-43a8-9091-6ef6178eb010,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19438,b987fc21-9630-47b2-a16e-46b9b684b907,LIST_ACCOUNTS,hbciListAccounts,false +19439,b987fc21-9630-47b2-a16e-46b9b684b907,LIST_TRANSACTIONS,hbciListTransactions,false +19440,b987fc21-9630-47b2-a16e-46b9b684b907,AUTHORIZATION,,false +19441,b987fc21-9630-47b2-a16e-46b9b684b907,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19442,b987fc21-9630-47b2-a16e-46b9b684b907,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19443,b987fc21-9630-47b2-a16e-46b9b684b907,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19444,ef8fedcd-cf2f-4ca0-b1f9-8812684022b5,LIST_ACCOUNTS,xs2aListAccounts,true -19445,ef8fedcd-cf2f-4ca0-b1f9-8812684022b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19445,ef8fedcd-cf2f-4ca0-b1f9-8812684022b5,LIST_TRANSACTIONS,xs2aListTransactions,true 19446,ef8fedcd-cf2f-4ca0-b1f9-8812684022b5,AUTHORIZATION,,true 19447,ef8fedcd-cf2f-4ca0-b1f9-8812684022b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19448,ef8fedcd-cf2f-4ca0-b1f9-8812684022b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19449,ef8fedcd-cf2f-4ca0-b1f9-8812684022b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19450,f29b40cb-1b8d-4378-b4d3-db28b9effc38,LIST_ACCOUNTS,hbciListAccounts,false -19451,f29b40cb-1b8d-4378-b4d3-db28b9effc38,LIST_TRANSACTIONS,hbciListTransactions,false -19452,f29b40cb-1b8d-4378-b4d3-db28b9effc38,AUTHORIZATION,,false -19453,f29b40cb-1b8d-4378-b4d3-db28b9effc38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19454,f29b40cb-1b8d-4378-b4d3-db28b9effc38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19455,f29b40cb-1b8d-4378-b4d3-db28b9effc38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19450,bf3c7b09-a08e-446a-8547-6beb53c6334c,LIST_ACCOUNTS,hbciListAccounts,false +19451,bf3c7b09-a08e-446a-8547-6beb53c6334c,LIST_TRANSACTIONS,hbciListTransactions,false +19452,bf3c7b09-a08e-446a-8547-6beb53c6334c,AUTHORIZATION,,false +19453,bf3c7b09-a08e-446a-8547-6beb53c6334c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19454,bf3c7b09-a08e-446a-8547-6beb53c6334c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19455,bf3c7b09-a08e-446a-8547-6beb53c6334c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19456,3a54baee-6219-4074-b75f-b9a83ca82f04,LIST_ACCOUNTS,xs2aListAccounts,true -19457,3a54baee-6219-4074-b75f-b9a83ca82f04,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19457,3a54baee-6219-4074-b75f-b9a83ca82f04,LIST_TRANSACTIONS,xs2aListTransactions,true 19458,3a54baee-6219-4074-b75f-b9a83ca82f04,AUTHORIZATION,,true 19459,3a54baee-6219-4074-b75f-b9a83ca82f04,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19460,3a54baee-6219-4074-b75f-b9a83ca82f04,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19461,3a54baee-6219-4074-b75f-b9a83ca82f04,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19462,a192fb33-1979-48a0-b485-9424ae7e7d01,LIST_ACCOUNTS,hbciListAccounts,false -19463,a192fb33-1979-48a0-b485-9424ae7e7d01,LIST_TRANSACTIONS,hbciListTransactions,false -19464,a192fb33-1979-48a0-b485-9424ae7e7d01,AUTHORIZATION,,false -19465,a192fb33-1979-48a0-b485-9424ae7e7d01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19466,a192fb33-1979-48a0-b485-9424ae7e7d01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19467,a192fb33-1979-48a0-b485-9424ae7e7d01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19462,c2f7286f-f065-4841-9139-e1123f8b1460,LIST_ACCOUNTS,hbciListAccounts,false +19463,c2f7286f-f065-4841-9139-e1123f8b1460,LIST_TRANSACTIONS,hbciListTransactions,false +19464,c2f7286f-f065-4841-9139-e1123f8b1460,AUTHORIZATION,,false +19465,c2f7286f-f065-4841-9139-e1123f8b1460,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19466,c2f7286f-f065-4841-9139-e1123f8b1460,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19467,c2f7286f-f065-4841-9139-e1123f8b1460,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19468,dc0398d8-2339-4db3-9a31-2f0260fcfbdb,LIST_ACCOUNTS,xs2aListAccounts,true -19469,dc0398d8-2339-4db3-9a31-2f0260fcfbdb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19469,dc0398d8-2339-4db3-9a31-2f0260fcfbdb,LIST_TRANSACTIONS,xs2aListTransactions,true 19470,dc0398d8-2339-4db3-9a31-2f0260fcfbdb,AUTHORIZATION,,true 19471,dc0398d8-2339-4db3-9a31-2f0260fcfbdb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19472,dc0398d8-2339-4db3-9a31-2f0260fcfbdb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19473,dc0398d8-2339-4db3-9a31-2f0260fcfbdb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19474,9172fae0-22bd-4e8a-8caa-f1efae176923,LIST_ACCOUNTS,hbciListAccounts,false -19475,9172fae0-22bd-4e8a-8caa-f1efae176923,LIST_TRANSACTIONS,hbciListTransactions,false -19476,9172fae0-22bd-4e8a-8caa-f1efae176923,AUTHORIZATION,,false -19477,9172fae0-22bd-4e8a-8caa-f1efae176923,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19478,9172fae0-22bd-4e8a-8caa-f1efae176923,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19479,9172fae0-22bd-4e8a-8caa-f1efae176923,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19474,edc41456-9db1-43cf-b88c-0d94afd4ffba,LIST_ACCOUNTS,hbciListAccounts,false +19475,edc41456-9db1-43cf-b88c-0d94afd4ffba,LIST_TRANSACTIONS,hbciListTransactions,false +19476,edc41456-9db1-43cf-b88c-0d94afd4ffba,AUTHORIZATION,,false +19477,edc41456-9db1-43cf-b88c-0d94afd4ffba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19478,edc41456-9db1-43cf-b88c-0d94afd4ffba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19479,edc41456-9db1-43cf-b88c-0d94afd4ffba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19480,4614dd56-984f-410a-ac12-1a4c1a89ce99,LIST_ACCOUNTS,xs2aListAccounts,true -19481,4614dd56-984f-410a-ac12-1a4c1a89ce99,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19481,4614dd56-984f-410a-ac12-1a4c1a89ce99,LIST_TRANSACTIONS,xs2aListTransactions,true 19482,4614dd56-984f-410a-ac12-1a4c1a89ce99,AUTHORIZATION,,true 19483,4614dd56-984f-410a-ac12-1a4c1a89ce99,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19484,4614dd56-984f-410a-ac12-1a4c1a89ce99,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19485,4614dd56-984f-410a-ac12-1a4c1a89ce99,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19486,06ff2b29-71cf-4c3f-922f-ef9dd03919db,LIST_ACCOUNTS,hbciListAccounts,false -19487,06ff2b29-71cf-4c3f-922f-ef9dd03919db,LIST_TRANSACTIONS,hbciListTransactions,false -19488,06ff2b29-71cf-4c3f-922f-ef9dd03919db,AUTHORIZATION,,false -19489,06ff2b29-71cf-4c3f-922f-ef9dd03919db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19490,06ff2b29-71cf-4c3f-922f-ef9dd03919db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19491,06ff2b29-71cf-4c3f-922f-ef9dd03919db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19486,66db7dcb-c44e-4dd9-a3ad-ef0703d0a1d8,LIST_ACCOUNTS,hbciListAccounts,false +19487,66db7dcb-c44e-4dd9-a3ad-ef0703d0a1d8,LIST_TRANSACTIONS,hbciListTransactions,false +19488,66db7dcb-c44e-4dd9-a3ad-ef0703d0a1d8,AUTHORIZATION,,false +19489,66db7dcb-c44e-4dd9-a3ad-ef0703d0a1d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19490,66db7dcb-c44e-4dd9-a3ad-ef0703d0a1d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19491,66db7dcb-c44e-4dd9-a3ad-ef0703d0a1d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19492,70f0ac9f-2058-4a2d-83e8-14670659c642,LIST_ACCOUNTS,xs2aListAccounts,true -19493,70f0ac9f-2058-4a2d-83e8-14670659c642,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19493,70f0ac9f-2058-4a2d-83e8-14670659c642,LIST_TRANSACTIONS,xs2aListTransactions,true 19494,70f0ac9f-2058-4a2d-83e8-14670659c642,AUTHORIZATION,,true 19495,70f0ac9f-2058-4a2d-83e8-14670659c642,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19496,70f0ac9f-2058-4a2d-83e8-14670659c642,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19497,70f0ac9f-2058-4a2d-83e8-14670659c642,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19498,d75d5f74-59cc-4a3c-8602-ce2cda204980,LIST_ACCOUNTS,hbciListAccounts,false -19499,d75d5f74-59cc-4a3c-8602-ce2cda204980,LIST_TRANSACTIONS,hbciListTransactions,false -19500,d75d5f74-59cc-4a3c-8602-ce2cda204980,AUTHORIZATION,,false -19501,d75d5f74-59cc-4a3c-8602-ce2cda204980,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19502,d75d5f74-59cc-4a3c-8602-ce2cda204980,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19503,d75d5f74-59cc-4a3c-8602-ce2cda204980,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19498,c1d9c1d2-de51-44f2-93e7-15d0d6da53b5,LIST_ACCOUNTS,hbciListAccounts,false +19499,c1d9c1d2-de51-44f2-93e7-15d0d6da53b5,LIST_TRANSACTIONS,hbciListTransactions,false +19500,c1d9c1d2-de51-44f2-93e7-15d0d6da53b5,AUTHORIZATION,,false +19501,c1d9c1d2-de51-44f2-93e7-15d0d6da53b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19502,c1d9c1d2-de51-44f2-93e7-15d0d6da53b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19503,c1d9c1d2-de51-44f2-93e7-15d0d6da53b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19504,34c430fb-21e0-406d-bb12-460353428264,LIST_ACCOUNTS,xs2aListAccounts,true -19505,34c430fb-21e0-406d-bb12-460353428264,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19505,34c430fb-21e0-406d-bb12-460353428264,LIST_TRANSACTIONS,xs2aListTransactions,true 19506,34c430fb-21e0-406d-bb12-460353428264,AUTHORIZATION,,true 19507,34c430fb-21e0-406d-bb12-460353428264,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19508,34c430fb-21e0-406d-bb12-460353428264,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19509,34c430fb-21e0-406d-bb12-460353428264,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19510,6588d221-c33b-4f77-826f-c5cb5fb243fc,LIST_ACCOUNTS,hbciListAccounts,false -19511,6588d221-c33b-4f77-826f-c5cb5fb243fc,LIST_TRANSACTIONS,hbciListTransactions,false -19512,6588d221-c33b-4f77-826f-c5cb5fb243fc,AUTHORIZATION,,false -19513,6588d221-c33b-4f77-826f-c5cb5fb243fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19514,6588d221-c33b-4f77-826f-c5cb5fb243fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19515,6588d221-c33b-4f77-826f-c5cb5fb243fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19510,6392910f-1c9b-4fe5-9e1f-6b091c9a084f,LIST_ACCOUNTS,hbciListAccounts,false +19511,6392910f-1c9b-4fe5-9e1f-6b091c9a084f,LIST_TRANSACTIONS,hbciListTransactions,false +19512,6392910f-1c9b-4fe5-9e1f-6b091c9a084f,AUTHORIZATION,,false +19513,6392910f-1c9b-4fe5-9e1f-6b091c9a084f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19514,6392910f-1c9b-4fe5-9e1f-6b091c9a084f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19515,6392910f-1c9b-4fe5-9e1f-6b091c9a084f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19516,16a0dbb4-8b63-417c-b534-1843c6b665bf,LIST_ACCOUNTS,xs2aListAccounts,true -19517,16a0dbb4-8b63-417c-b534-1843c6b665bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19517,16a0dbb4-8b63-417c-b534-1843c6b665bf,LIST_TRANSACTIONS,xs2aListTransactions,true 19518,16a0dbb4-8b63-417c-b534-1843c6b665bf,AUTHORIZATION,,true 19519,16a0dbb4-8b63-417c-b534-1843c6b665bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19520,16a0dbb4-8b63-417c-b534-1843c6b665bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19521,16a0dbb4-8b63-417c-b534-1843c6b665bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19522,97d11bd5-dfdd-41c2-84c5-4478ee2e6a8d,LIST_ACCOUNTS,hbciListAccounts,false -19523,97d11bd5-dfdd-41c2-84c5-4478ee2e6a8d,LIST_TRANSACTIONS,hbciListTransactions,false -19524,97d11bd5-dfdd-41c2-84c5-4478ee2e6a8d,AUTHORIZATION,,false -19525,97d11bd5-dfdd-41c2-84c5-4478ee2e6a8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19526,97d11bd5-dfdd-41c2-84c5-4478ee2e6a8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19527,97d11bd5-dfdd-41c2-84c5-4478ee2e6a8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19522,f243f565-f192-49ba-9f1c-1f7872287aff,LIST_ACCOUNTS,hbciListAccounts,false +19523,f243f565-f192-49ba-9f1c-1f7872287aff,LIST_TRANSACTIONS,hbciListTransactions,false +19524,f243f565-f192-49ba-9f1c-1f7872287aff,AUTHORIZATION,,false +19525,f243f565-f192-49ba-9f1c-1f7872287aff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19526,f243f565-f192-49ba-9f1c-1f7872287aff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19527,f243f565-f192-49ba-9f1c-1f7872287aff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19528,4b3b7014-2164-4bba-826f-27d4e89ae12d,LIST_ACCOUNTS,xs2aListAccounts,true -19529,4b3b7014-2164-4bba-826f-27d4e89ae12d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19529,4b3b7014-2164-4bba-826f-27d4e89ae12d,LIST_TRANSACTIONS,xs2aListTransactions,true 19530,4b3b7014-2164-4bba-826f-27d4e89ae12d,AUTHORIZATION,,true 19531,4b3b7014-2164-4bba-826f-27d4e89ae12d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19532,4b3b7014-2164-4bba-826f-27d4e89ae12d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19533,4b3b7014-2164-4bba-826f-27d4e89ae12d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19534,1df4d90c-faf8-4abc-b6ec-f520b1c4a9a2,LIST_ACCOUNTS,hbciListAccounts,false -19535,1df4d90c-faf8-4abc-b6ec-f520b1c4a9a2,LIST_TRANSACTIONS,hbciListTransactions,false -19536,1df4d90c-faf8-4abc-b6ec-f520b1c4a9a2,AUTHORIZATION,,false -19537,1df4d90c-faf8-4abc-b6ec-f520b1c4a9a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19538,1df4d90c-faf8-4abc-b6ec-f520b1c4a9a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19539,1df4d90c-faf8-4abc-b6ec-f520b1c4a9a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19534,cf4b4818-c289-41d5-a2ff-fe9e394dcc47,LIST_ACCOUNTS,hbciListAccounts,false +19535,cf4b4818-c289-41d5-a2ff-fe9e394dcc47,LIST_TRANSACTIONS,hbciListTransactions,false +19536,cf4b4818-c289-41d5-a2ff-fe9e394dcc47,AUTHORIZATION,,false +19537,cf4b4818-c289-41d5-a2ff-fe9e394dcc47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19538,cf4b4818-c289-41d5-a2ff-fe9e394dcc47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19539,cf4b4818-c289-41d5-a2ff-fe9e394dcc47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19540,3ed9f6a8-d2f5-453e-a93b-b0483e712445,LIST_ACCOUNTS,xs2aListAccounts,true -19541,3ed9f6a8-d2f5-453e-a93b-b0483e712445,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19541,3ed9f6a8-d2f5-453e-a93b-b0483e712445,LIST_TRANSACTIONS,xs2aListTransactions,true 19542,3ed9f6a8-d2f5-453e-a93b-b0483e712445,AUTHORIZATION,,true 19543,3ed9f6a8-d2f5-453e-a93b-b0483e712445,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19544,3ed9f6a8-d2f5-453e-a93b-b0483e712445,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19545,3ed9f6a8-d2f5-453e-a93b-b0483e712445,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19546,ebc0321c-7e1a-4a66-a2bd-214f539c3c53,LIST_ACCOUNTS,hbciListAccounts,false -19547,ebc0321c-7e1a-4a66-a2bd-214f539c3c53,LIST_TRANSACTIONS,hbciListTransactions,false -19548,ebc0321c-7e1a-4a66-a2bd-214f539c3c53,AUTHORIZATION,,false -19549,ebc0321c-7e1a-4a66-a2bd-214f539c3c53,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19550,ebc0321c-7e1a-4a66-a2bd-214f539c3c53,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19551,ebc0321c-7e1a-4a66-a2bd-214f539c3c53,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19546,91f6dc57-3207-42d8-8cff-17da6366bc61,LIST_ACCOUNTS,hbciListAccounts,false +19547,91f6dc57-3207-42d8-8cff-17da6366bc61,LIST_TRANSACTIONS,hbciListTransactions,false +19548,91f6dc57-3207-42d8-8cff-17da6366bc61,AUTHORIZATION,,false +19549,91f6dc57-3207-42d8-8cff-17da6366bc61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19550,91f6dc57-3207-42d8-8cff-17da6366bc61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19551,91f6dc57-3207-42d8-8cff-17da6366bc61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19552,9dcada33-e899-4219-b39b-5905655c3741,LIST_ACCOUNTS,xs2aListAccounts,true -19553,9dcada33-e899-4219-b39b-5905655c3741,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19553,9dcada33-e899-4219-b39b-5905655c3741,LIST_TRANSACTIONS,xs2aListTransactions,true 19554,9dcada33-e899-4219-b39b-5905655c3741,AUTHORIZATION,,true 19555,9dcada33-e899-4219-b39b-5905655c3741,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19556,9dcada33-e899-4219-b39b-5905655c3741,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19557,9dcada33-e899-4219-b39b-5905655c3741,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19558,9d695a6e-5e98-47c4-868e-598786ca57a6,LIST_ACCOUNTS,hbciListAccounts,false -19559,9d695a6e-5e98-47c4-868e-598786ca57a6,LIST_TRANSACTIONS,hbciListTransactions,false -19560,9d695a6e-5e98-47c4-868e-598786ca57a6,AUTHORIZATION,,false -19561,9d695a6e-5e98-47c4-868e-598786ca57a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19562,9d695a6e-5e98-47c4-868e-598786ca57a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19563,9d695a6e-5e98-47c4-868e-598786ca57a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19558,c72e0751-7725-4f54-bbf1-b19553b47523,LIST_ACCOUNTS,hbciListAccounts,false +19559,c72e0751-7725-4f54-bbf1-b19553b47523,LIST_TRANSACTIONS,hbciListTransactions,false +19560,c72e0751-7725-4f54-bbf1-b19553b47523,AUTHORIZATION,,false +19561,c72e0751-7725-4f54-bbf1-b19553b47523,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19562,c72e0751-7725-4f54-bbf1-b19553b47523,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19563,c72e0751-7725-4f54-bbf1-b19553b47523,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19564,97b055a3-3cd7-486e-ba64-b2d862348d58,LIST_ACCOUNTS,xs2aListAccounts,true -19565,97b055a3-3cd7-486e-ba64-b2d862348d58,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19565,97b055a3-3cd7-486e-ba64-b2d862348d58,LIST_TRANSACTIONS,xs2aListTransactions,true 19566,97b055a3-3cd7-486e-ba64-b2d862348d58,AUTHORIZATION,,true 19567,97b055a3-3cd7-486e-ba64-b2d862348d58,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19568,97b055a3-3cd7-486e-ba64-b2d862348d58,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19569,97b055a3-3cd7-486e-ba64-b2d862348d58,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19570,86b69dbd-a032-4573-bb6b-5a11cb4f99b3,LIST_ACCOUNTS,hbciListAccounts,false -19571,86b69dbd-a032-4573-bb6b-5a11cb4f99b3,LIST_TRANSACTIONS,hbciListTransactions,false -19572,86b69dbd-a032-4573-bb6b-5a11cb4f99b3,AUTHORIZATION,,false -19573,86b69dbd-a032-4573-bb6b-5a11cb4f99b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19574,86b69dbd-a032-4573-bb6b-5a11cb4f99b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19575,86b69dbd-a032-4573-bb6b-5a11cb4f99b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19570,b2fc81ab-1b3b-4158-aec7-816c1a8d381e,LIST_ACCOUNTS,hbciListAccounts,false +19571,b2fc81ab-1b3b-4158-aec7-816c1a8d381e,LIST_TRANSACTIONS,hbciListTransactions,false +19572,b2fc81ab-1b3b-4158-aec7-816c1a8d381e,AUTHORIZATION,,false +19573,b2fc81ab-1b3b-4158-aec7-816c1a8d381e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19574,b2fc81ab-1b3b-4158-aec7-816c1a8d381e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19575,b2fc81ab-1b3b-4158-aec7-816c1a8d381e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19576,ddce2266-84ea-45c2-a069-bd55f85b5fbe,LIST_ACCOUNTS,xs2aListAccounts,true -19577,ddce2266-84ea-45c2-a069-bd55f85b5fbe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19577,ddce2266-84ea-45c2-a069-bd55f85b5fbe,LIST_TRANSACTIONS,xs2aListTransactions,true 19578,ddce2266-84ea-45c2-a069-bd55f85b5fbe,AUTHORIZATION,,true 19579,ddce2266-84ea-45c2-a069-bd55f85b5fbe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19580,ddce2266-84ea-45c2-a069-bd55f85b5fbe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19581,ddce2266-84ea-45c2-a069-bd55f85b5fbe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19582,d3400524-9742-4751-9579-4bfdec7d1a35,LIST_ACCOUNTS,hbciListAccounts,false -19583,d3400524-9742-4751-9579-4bfdec7d1a35,LIST_TRANSACTIONS,hbciListTransactions,false -19584,d3400524-9742-4751-9579-4bfdec7d1a35,AUTHORIZATION,,false -19585,d3400524-9742-4751-9579-4bfdec7d1a35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19586,d3400524-9742-4751-9579-4bfdec7d1a35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19587,d3400524-9742-4751-9579-4bfdec7d1a35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19582,218a3994-f79a-44e2-9dd7-fc4e6e67484b,LIST_ACCOUNTS,hbciListAccounts,false +19583,218a3994-f79a-44e2-9dd7-fc4e6e67484b,LIST_TRANSACTIONS,hbciListTransactions,false +19584,218a3994-f79a-44e2-9dd7-fc4e6e67484b,AUTHORIZATION,,false +19585,218a3994-f79a-44e2-9dd7-fc4e6e67484b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19586,218a3994-f79a-44e2-9dd7-fc4e6e67484b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19587,218a3994-f79a-44e2-9dd7-fc4e6e67484b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19588,78ee9938-a775-48eb-8be8-3c6a4ac25263,LIST_ACCOUNTS,xs2aListAccounts,true -19589,78ee9938-a775-48eb-8be8-3c6a4ac25263,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19589,78ee9938-a775-48eb-8be8-3c6a4ac25263,LIST_TRANSACTIONS,xs2aListTransactions,true 19590,78ee9938-a775-48eb-8be8-3c6a4ac25263,AUTHORIZATION,,true 19591,78ee9938-a775-48eb-8be8-3c6a4ac25263,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19592,78ee9938-a775-48eb-8be8-3c6a4ac25263,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19593,78ee9938-a775-48eb-8be8-3c6a4ac25263,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19594,a313efb7-56f1-44fc-a895-90e4e353273f,LIST_ACCOUNTS,hbciListAccounts,false -19595,a313efb7-56f1-44fc-a895-90e4e353273f,LIST_TRANSACTIONS,hbciListTransactions,false -19596,a313efb7-56f1-44fc-a895-90e4e353273f,AUTHORIZATION,,false -19597,a313efb7-56f1-44fc-a895-90e4e353273f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19598,a313efb7-56f1-44fc-a895-90e4e353273f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19599,a313efb7-56f1-44fc-a895-90e4e353273f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19594,355d5846-eaef-42d8-b7e6-4ab9c9a9f070,LIST_ACCOUNTS,hbciListAccounts,false +19595,355d5846-eaef-42d8-b7e6-4ab9c9a9f070,LIST_TRANSACTIONS,hbciListTransactions,false +19596,355d5846-eaef-42d8-b7e6-4ab9c9a9f070,AUTHORIZATION,,false +19597,355d5846-eaef-42d8-b7e6-4ab9c9a9f070,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19598,355d5846-eaef-42d8-b7e6-4ab9c9a9f070,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19599,355d5846-eaef-42d8-b7e6-4ab9c9a9f070,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19600,5fbfd076-4bfc-45d3-ad3a-8c4f929e1275,LIST_ACCOUNTS,xs2aListAccounts,true -19601,5fbfd076-4bfc-45d3-ad3a-8c4f929e1275,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19601,5fbfd076-4bfc-45d3-ad3a-8c4f929e1275,LIST_TRANSACTIONS,xs2aListTransactions,true 19602,5fbfd076-4bfc-45d3-ad3a-8c4f929e1275,AUTHORIZATION,,true 19603,5fbfd076-4bfc-45d3-ad3a-8c4f929e1275,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19604,5fbfd076-4bfc-45d3-ad3a-8c4f929e1275,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19605,5fbfd076-4bfc-45d3-ad3a-8c4f929e1275,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19606,297e9e8f-90dc-4618-bf5d-b8b70f803ef7,LIST_ACCOUNTS,hbciListAccounts,false -19607,297e9e8f-90dc-4618-bf5d-b8b70f803ef7,LIST_TRANSACTIONS,hbciListTransactions,false -19608,297e9e8f-90dc-4618-bf5d-b8b70f803ef7,AUTHORIZATION,,false -19609,297e9e8f-90dc-4618-bf5d-b8b70f803ef7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19610,297e9e8f-90dc-4618-bf5d-b8b70f803ef7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19611,297e9e8f-90dc-4618-bf5d-b8b70f803ef7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19606,9b36b1ed-fd88-4f3a-8147-a794fc306b11,LIST_ACCOUNTS,hbciListAccounts,false +19607,9b36b1ed-fd88-4f3a-8147-a794fc306b11,LIST_TRANSACTIONS,hbciListTransactions,false +19608,9b36b1ed-fd88-4f3a-8147-a794fc306b11,AUTHORIZATION,,false +19609,9b36b1ed-fd88-4f3a-8147-a794fc306b11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19610,9b36b1ed-fd88-4f3a-8147-a794fc306b11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19611,9b36b1ed-fd88-4f3a-8147-a794fc306b11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19612,39e72565-a28e-4141-ad37-e5385490f606,LIST_ACCOUNTS,xs2aListAccounts,true -19613,39e72565-a28e-4141-ad37-e5385490f606,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19613,39e72565-a28e-4141-ad37-e5385490f606,LIST_TRANSACTIONS,xs2aListTransactions,true 19614,39e72565-a28e-4141-ad37-e5385490f606,AUTHORIZATION,,true 19615,39e72565-a28e-4141-ad37-e5385490f606,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19616,39e72565-a28e-4141-ad37-e5385490f606,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19617,39e72565-a28e-4141-ad37-e5385490f606,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19618,073547eb-9ca9-4fdd-afa1-8e16b0bfafa6,LIST_ACCOUNTS,hbciListAccounts,false -19619,073547eb-9ca9-4fdd-afa1-8e16b0bfafa6,LIST_TRANSACTIONS,hbciListTransactions,false -19620,073547eb-9ca9-4fdd-afa1-8e16b0bfafa6,AUTHORIZATION,,false -19621,073547eb-9ca9-4fdd-afa1-8e16b0bfafa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19622,073547eb-9ca9-4fdd-afa1-8e16b0bfafa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19623,073547eb-9ca9-4fdd-afa1-8e16b0bfafa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19618,406a87a3-fc9d-4bd5-bb94-b99522f8812b,LIST_ACCOUNTS,hbciListAccounts,false +19619,406a87a3-fc9d-4bd5-bb94-b99522f8812b,LIST_TRANSACTIONS,hbciListTransactions,false +19620,406a87a3-fc9d-4bd5-bb94-b99522f8812b,AUTHORIZATION,,false +19621,406a87a3-fc9d-4bd5-bb94-b99522f8812b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19622,406a87a3-fc9d-4bd5-bb94-b99522f8812b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19623,406a87a3-fc9d-4bd5-bb94-b99522f8812b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19624,564d3268-e8b4-4aab-a95e-1c836f950d85,LIST_ACCOUNTS,xs2aListAccounts,true -19625,564d3268-e8b4-4aab-a95e-1c836f950d85,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19625,564d3268-e8b4-4aab-a95e-1c836f950d85,LIST_TRANSACTIONS,xs2aListTransactions,true 19626,564d3268-e8b4-4aab-a95e-1c836f950d85,AUTHORIZATION,,true 19627,564d3268-e8b4-4aab-a95e-1c836f950d85,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19628,564d3268-e8b4-4aab-a95e-1c836f950d85,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19629,564d3268-e8b4-4aab-a95e-1c836f950d85,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19630,6dbee66b-b9da-423b-b808-7e0744fb8885,LIST_ACCOUNTS,hbciListAccounts,false -19631,6dbee66b-b9da-423b-b808-7e0744fb8885,LIST_TRANSACTIONS,hbciListTransactions,false -19632,6dbee66b-b9da-423b-b808-7e0744fb8885,AUTHORIZATION,,false -19633,6dbee66b-b9da-423b-b808-7e0744fb8885,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19634,6dbee66b-b9da-423b-b808-7e0744fb8885,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19635,6dbee66b-b9da-423b-b808-7e0744fb8885,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19630,ea68c26f-fb4b-49de-afe8-73725c468185,LIST_ACCOUNTS,hbciListAccounts,false +19631,ea68c26f-fb4b-49de-afe8-73725c468185,LIST_TRANSACTIONS,hbciListTransactions,false +19632,ea68c26f-fb4b-49de-afe8-73725c468185,AUTHORIZATION,,false +19633,ea68c26f-fb4b-49de-afe8-73725c468185,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19634,ea68c26f-fb4b-49de-afe8-73725c468185,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19635,ea68c26f-fb4b-49de-afe8-73725c468185,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19636,4b34a5cf-36b2-4e0a-9a81-b7811da4e807,LIST_ACCOUNTS,xs2aListAccounts,true -19637,4b34a5cf-36b2-4e0a-9a81-b7811da4e807,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19637,4b34a5cf-36b2-4e0a-9a81-b7811da4e807,LIST_TRANSACTIONS,xs2aListTransactions,true 19638,4b34a5cf-36b2-4e0a-9a81-b7811da4e807,AUTHORIZATION,,true 19639,4b34a5cf-36b2-4e0a-9a81-b7811da4e807,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19640,4b34a5cf-36b2-4e0a-9a81-b7811da4e807,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19641,4b34a5cf-36b2-4e0a-9a81-b7811da4e807,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19642,8051bbb9-91ea-41ef-8777-9c24173f4894,LIST_ACCOUNTS,hbciListAccounts,false -19643,8051bbb9-91ea-41ef-8777-9c24173f4894,LIST_TRANSACTIONS,hbciListTransactions,false -19644,8051bbb9-91ea-41ef-8777-9c24173f4894,AUTHORIZATION,,false -19645,8051bbb9-91ea-41ef-8777-9c24173f4894,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19646,8051bbb9-91ea-41ef-8777-9c24173f4894,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19647,8051bbb9-91ea-41ef-8777-9c24173f4894,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19642,668a7ce1-82fb-4585-ba11-69a0595cc89d,LIST_ACCOUNTS,hbciListAccounts,false +19643,668a7ce1-82fb-4585-ba11-69a0595cc89d,LIST_TRANSACTIONS,hbciListTransactions,false +19644,668a7ce1-82fb-4585-ba11-69a0595cc89d,AUTHORIZATION,,false +19645,668a7ce1-82fb-4585-ba11-69a0595cc89d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19646,668a7ce1-82fb-4585-ba11-69a0595cc89d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19647,668a7ce1-82fb-4585-ba11-69a0595cc89d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19648,ed2fd98f-9a2f-4223-9631-bf566285eb64,LIST_ACCOUNTS,xs2aListAccounts,true -19649,ed2fd98f-9a2f-4223-9631-bf566285eb64,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19649,ed2fd98f-9a2f-4223-9631-bf566285eb64,LIST_TRANSACTIONS,xs2aListTransactions,true 19650,ed2fd98f-9a2f-4223-9631-bf566285eb64,AUTHORIZATION,,true 19651,ed2fd98f-9a2f-4223-9631-bf566285eb64,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19652,ed2fd98f-9a2f-4223-9631-bf566285eb64,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19653,ed2fd98f-9a2f-4223-9631-bf566285eb64,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19654,63b6c525-3306-4ff5-9dab-c2903d0e177b,LIST_ACCOUNTS,hbciListAccounts,false -19655,63b6c525-3306-4ff5-9dab-c2903d0e177b,LIST_TRANSACTIONS,hbciListTransactions,false -19656,63b6c525-3306-4ff5-9dab-c2903d0e177b,AUTHORIZATION,,false -19657,63b6c525-3306-4ff5-9dab-c2903d0e177b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19658,63b6c525-3306-4ff5-9dab-c2903d0e177b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19659,63b6c525-3306-4ff5-9dab-c2903d0e177b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19654,f3397d7f-4e91-45a0-b5e5-bf5541c5336f,LIST_ACCOUNTS,hbciListAccounts,false +19655,f3397d7f-4e91-45a0-b5e5-bf5541c5336f,LIST_TRANSACTIONS,hbciListTransactions,false +19656,f3397d7f-4e91-45a0-b5e5-bf5541c5336f,AUTHORIZATION,,false +19657,f3397d7f-4e91-45a0-b5e5-bf5541c5336f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19658,f3397d7f-4e91-45a0-b5e5-bf5541c5336f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19659,f3397d7f-4e91-45a0-b5e5-bf5541c5336f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19660,59c27229-ebfa-4c83-9700-70212dff1938,LIST_ACCOUNTS,xs2aListAccounts,true -19661,59c27229-ebfa-4c83-9700-70212dff1938,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19661,59c27229-ebfa-4c83-9700-70212dff1938,LIST_TRANSACTIONS,xs2aListTransactions,true 19662,59c27229-ebfa-4c83-9700-70212dff1938,AUTHORIZATION,,true 19663,59c27229-ebfa-4c83-9700-70212dff1938,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19664,59c27229-ebfa-4c83-9700-70212dff1938,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19665,59c27229-ebfa-4c83-9700-70212dff1938,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19666,b02aed05-8a66-4e0d-9d38-0f4de65bd044,LIST_ACCOUNTS,hbciListAccounts,false -19667,b02aed05-8a66-4e0d-9d38-0f4de65bd044,LIST_TRANSACTIONS,hbciListTransactions,false -19668,b02aed05-8a66-4e0d-9d38-0f4de65bd044,AUTHORIZATION,,false -19669,b02aed05-8a66-4e0d-9d38-0f4de65bd044,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19670,b02aed05-8a66-4e0d-9d38-0f4de65bd044,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19671,b02aed05-8a66-4e0d-9d38-0f4de65bd044,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19666,b53e81b1-be35-4001-b187-24dc4fd50ef5,LIST_ACCOUNTS,hbciListAccounts,false +19667,b53e81b1-be35-4001-b187-24dc4fd50ef5,LIST_TRANSACTIONS,hbciListTransactions,false +19668,b53e81b1-be35-4001-b187-24dc4fd50ef5,AUTHORIZATION,,false +19669,b53e81b1-be35-4001-b187-24dc4fd50ef5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19670,b53e81b1-be35-4001-b187-24dc4fd50ef5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19671,b53e81b1-be35-4001-b187-24dc4fd50ef5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19672,7cce5d91-1255-4a58-b772-e062e3367d61,LIST_ACCOUNTS,xs2aListAccounts,true -19673,7cce5d91-1255-4a58-b772-e062e3367d61,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19673,7cce5d91-1255-4a58-b772-e062e3367d61,LIST_TRANSACTIONS,xs2aListTransactions,true 19674,7cce5d91-1255-4a58-b772-e062e3367d61,AUTHORIZATION,,true 19675,7cce5d91-1255-4a58-b772-e062e3367d61,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19676,7cce5d91-1255-4a58-b772-e062e3367d61,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19677,7cce5d91-1255-4a58-b772-e062e3367d61,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19678,815f18ad-3339-49be-a398-a84976ddef82,LIST_ACCOUNTS,hbciListAccounts,false -19679,815f18ad-3339-49be-a398-a84976ddef82,LIST_TRANSACTIONS,hbciListTransactions,false -19680,815f18ad-3339-49be-a398-a84976ddef82,AUTHORIZATION,,false -19681,815f18ad-3339-49be-a398-a84976ddef82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19682,815f18ad-3339-49be-a398-a84976ddef82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19683,815f18ad-3339-49be-a398-a84976ddef82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19678,5b28999b-9c57-4c11-86b1-9159d098a46b,LIST_ACCOUNTS,hbciListAccounts,false +19679,5b28999b-9c57-4c11-86b1-9159d098a46b,LIST_TRANSACTIONS,hbciListTransactions,false +19680,5b28999b-9c57-4c11-86b1-9159d098a46b,AUTHORIZATION,,false +19681,5b28999b-9c57-4c11-86b1-9159d098a46b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19682,5b28999b-9c57-4c11-86b1-9159d098a46b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19683,5b28999b-9c57-4c11-86b1-9159d098a46b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19684,019fa129-59d0-499f-9b8f-0fdf15ce3e65,LIST_ACCOUNTS,xs2aListAccounts,true -19685,019fa129-59d0-499f-9b8f-0fdf15ce3e65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19685,019fa129-59d0-499f-9b8f-0fdf15ce3e65,LIST_TRANSACTIONS,xs2aListTransactions,true 19686,019fa129-59d0-499f-9b8f-0fdf15ce3e65,AUTHORIZATION,,true 19687,019fa129-59d0-499f-9b8f-0fdf15ce3e65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19688,019fa129-59d0-499f-9b8f-0fdf15ce3e65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19689,019fa129-59d0-499f-9b8f-0fdf15ce3e65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19690,1fb69d4f-6720-4f2f-8471-b67eeee407be,LIST_ACCOUNTS,hbciListAccounts,false -19691,1fb69d4f-6720-4f2f-8471-b67eeee407be,LIST_TRANSACTIONS,hbciListTransactions,false -19692,1fb69d4f-6720-4f2f-8471-b67eeee407be,AUTHORIZATION,,false -19693,1fb69d4f-6720-4f2f-8471-b67eeee407be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19694,1fb69d4f-6720-4f2f-8471-b67eeee407be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19695,1fb69d4f-6720-4f2f-8471-b67eeee407be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19690,5ef4adfb-f60e-42bb-bfc1-64462a8fce17,LIST_ACCOUNTS,hbciListAccounts,false +19691,5ef4adfb-f60e-42bb-bfc1-64462a8fce17,LIST_TRANSACTIONS,hbciListTransactions,false +19692,5ef4adfb-f60e-42bb-bfc1-64462a8fce17,AUTHORIZATION,,false +19693,5ef4adfb-f60e-42bb-bfc1-64462a8fce17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19694,5ef4adfb-f60e-42bb-bfc1-64462a8fce17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19695,5ef4adfb-f60e-42bb-bfc1-64462a8fce17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19696,52def03e-00b1-4af0-acaf-a87e3d2a5db3,LIST_ACCOUNTS,xs2aListAccounts,true -19697,52def03e-00b1-4af0-acaf-a87e3d2a5db3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19697,52def03e-00b1-4af0-acaf-a87e3d2a5db3,LIST_TRANSACTIONS,xs2aListTransactions,true 19698,52def03e-00b1-4af0-acaf-a87e3d2a5db3,AUTHORIZATION,,true 19699,52def03e-00b1-4af0-acaf-a87e3d2a5db3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19700,52def03e-00b1-4af0-acaf-a87e3d2a5db3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19701,52def03e-00b1-4af0-acaf-a87e3d2a5db3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19702,fdeae5e2-ae68-48b0-a36a-8aa6a64aa6d7,LIST_ACCOUNTS,hbciListAccounts,false -19703,fdeae5e2-ae68-48b0-a36a-8aa6a64aa6d7,LIST_TRANSACTIONS,hbciListTransactions,false -19704,fdeae5e2-ae68-48b0-a36a-8aa6a64aa6d7,AUTHORIZATION,,false -19705,fdeae5e2-ae68-48b0-a36a-8aa6a64aa6d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19706,fdeae5e2-ae68-48b0-a36a-8aa6a64aa6d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19707,fdeae5e2-ae68-48b0-a36a-8aa6a64aa6d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19702,6d56014c-04f6-41f9-9b30-39046b9a9aae,LIST_ACCOUNTS,hbciListAccounts,false +19703,6d56014c-04f6-41f9-9b30-39046b9a9aae,LIST_TRANSACTIONS,hbciListTransactions,false +19704,6d56014c-04f6-41f9-9b30-39046b9a9aae,AUTHORIZATION,,false +19705,6d56014c-04f6-41f9-9b30-39046b9a9aae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19706,6d56014c-04f6-41f9-9b30-39046b9a9aae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19707,6d56014c-04f6-41f9-9b30-39046b9a9aae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19708,9a2d42ca-dff7-4b8c-8378-cad56cc44d93,LIST_ACCOUNTS,xs2aListAccounts,true -19709,9a2d42ca-dff7-4b8c-8378-cad56cc44d93,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19709,9a2d42ca-dff7-4b8c-8378-cad56cc44d93,LIST_TRANSACTIONS,xs2aListTransactions,true 19710,9a2d42ca-dff7-4b8c-8378-cad56cc44d93,AUTHORIZATION,,true 19711,9a2d42ca-dff7-4b8c-8378-cad56cc44d93,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19712,9a2d42ca-dff7-4b8c-8378-cad56cc44d93,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19713,9a2d42ca-dff7-4b8c-8378-cad56cc44d93,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19714,2cdb1191-f7a4-4123-a5c2-4b026cb26c5f,LIST_ACCOUNTS,hbciListAccounts,false -19715,2cdb1191-f7a4-4123-a5c2-4b026cb26c5f,LIST_TRANSACTIONS,hbciListTransactions,false -19716,2cdb1191-f7a4-4123-a5c2-4b026cb26c5f,AUTHORIZATION,,false -19717,2cdb1191-f7a4-4123-a5c2-4b026cb26c5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19718,2cdb1191-f7a4-4123-a5c2-4b026cb26c5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19719,2cdb1191-f7a4-4123-a5c2-4b026cb26c5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19714,bd8ce401-1e58-42b3-bba2-c0f10dd5ed69,LIST_ACCOUNTS,hbciListAccounts,false +19715,bd8ce401-1e58-42b3-bba2-c0f10dd5ed69,LIST_TRANSACTIONS,hbciListTransactions,false +19716,bd8ce401-1e58-42b3-bba2-c0f10dd5ed69,AUTHORIZATION,,false +19717,bd8ce401-1e58-42b3-bba2-c0f10dd5ed69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19718,bd8ce401-1e58-42b3-bba2-c0f10dd5ed69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19719,bd8ce401-1e58-42b3-bba2-c0f10dd5ed69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19720,bf1ed5cd-f442-495d-a1bc-40856cbbd93b,LIST_ACCOUNTS,xs2aListAccounts,true -19721,bf1ed5cd-f442-495d-a1bc-40856cbbd93b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19721,bf1ed5cd-f442-495d-a1bc-40856cbbd93b,LIST_TRANSACTIONS,xs2aListTransactions,true 19722,bf1ed5cd-f442-495d-a1bc-40856cbbd93b,AUTHORIZATION,,true 19723,bf1ed5cd-f442-495d-a1bc-40856cbbd93b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19724,bf1ed5cd-f442-495d-a1bc-40856cbbd93b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19725,bf1ed5cd-f442-495d-a1bc-40856cbbd93b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19726,ab3496fb-385f-4dea-991a-5ab0960c849a,LIST_ACCOUNTS,hbciListAccounts,false -19727,ab3496fb-385f-4dea-991a-5ab0960c849a,LIST_TRANSACTIONS,hbciListTransactions,false -19728,ab3496fb-385f-4dea-991a-5ab0960c849a,AUTHORIZATION,,false -19729,ab3496fb-385f-4dea-991a-5ab0960c849a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19730,ab3496fb-385f-4dea-991a-5ab0960c849a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19731,ab3496fb-385f-4dea-991a-5ab0960c849a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19726,3677113c-e83e-45bc-8ac8-ab471c9ec9e8,LIST_ACCOUNTS,hbciListAccounts,false +19727,3677113c-e83e-45bc-8ac8-ab471c9ec9e8,LIST_TRANSACTIONS,hbciListTransactions,false +19728,3677113c-e83e-45bc-8ac8-ab471c9ec9e8,AUTHORIZATION,,false +19729,3677113c-e83e-45bc-8ac8-ab471c9ec9e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19730,3677113c-e83e-45bc-8ac8-ab471c9ec9e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19731,3677113c-e83e-45bc-8ac8-ab471c9ec9e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19732,c562378b-0844-4a34-95de-f5ca2a2a523b,LIST_ACCOUNTS,xs2aListAccounts,true -19733,c562378b-0844-4a34-95de-f5ca2a2a523b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19733,c562378b-0844-4a34-95de-f5ca2a2a523b,LIST_TRANSACTIONS,xs2aListTransactions,true 19734,c562378b-0844-4a34-95de-f5ca2a2a523b,AUTHORIZATION,,true 19735,c562378b-0844-4a34-95de-f5ca2a2a523b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19736,c562378b-0844-4a34-95de-f5ca2a2a523b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19737,c562378b-0844-4a34-95de-f5ca2a2a523b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19738,276a045b-fb08-494b-926a-341d38c5d2c4,LIST_ACCOUNTS,hbciListAccounts,false -19739,276a045b-fb08-494b-926a-341d38c5d2c4,LIST_TRANSACTIONS,hbciListTransactions,false -19740,276a045b-fb08-494b-926a-341d38c5d2c4,AUTHORIZATION,,false -19741,276a045b-fb08-494b-926a-341d38c5d2c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19742,276a045b-fb08-494b-926a-341d38c5d2c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19743,276a045b-fb08-494b-926a-341d38c5d2c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19738,524e1ab0-ecaa-4602-8f9c-7fb98f101767,LIST_ACCOUNTS,hbciListAccounts,false +19739,524e1ab0-ecaa-4602-8f9c-7fb98f101767,LIST_TRANSACTIONS,hbciListTransactions,false +19740,524e1ab0-ecaa-4602-8f9c-7fb98f101767,AUTHORIZATION,,false +19741,524e1ab0-ecaa-4602-8f9c-7fb98f101767,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19742,524e1ab0-ecaa-4602-8f9c-7fb98f101767,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19743,524e1ab0-ecaa-4602-8f9c-7fb98f101767,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19744,affbc5a7-1f29-4c05-a7a2-7abce58900dd,LIST_ACCOUNTS,xs2aListAccounts,true -19745,affbc5a7-1f29-4c05-a7a2-7abce58900dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19745,affbc5a7-1f29-4c05-a7a2-7abce58900dd,LIST_TRANSACTIONS,xs2aListTransactions,true 19746,affbc5a7-1f29-4c05-a7a2-7abce58900dd,AUTHORIZATION,,true 19747,affbc5a7-1f29-4c05-a7a2-7abce58900dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19748,affbc5a7-1f29-4c05-a7a2-7abce58900dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19749,affbc5a7-1f29-4c05-a7a2-7abce58900dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19750,f37dcdef-4228-469f-9c19-2051e56256b5,LIST_ACCOUNTS,hbciListAccounts,false -19751,f37dcdef-4228-469f-9c19-2051e56256b5,LIST_TRANSACTIONS,hbciListTransactions,false -19752,f37dcdef-4228-469f-9c19-2051e56256b5,AUTHORIZATION,,false -19753,f37dcdef-4228-469f-9c19-2051e56256b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19754,f37dcdef-4228-469f-9c19-2051e56256b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19755,f37dcdef-4228-469f-9c19-2051e56256b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19750,e7d7ef88-4400-4925-85ef-5d2d0edae8cd,LIST_ACCOUNTS,hbciListAccounts,false +19751,e7d7ef88-4400-4925-85ef-5d2d0edae8cd,LIST_TRANSACTIONS,hbciListTransactions,false +19752,e7d7ef88-4400-4925-85ef-5d2d0edae8cd,AUTHORIZATION,,false +19753,e7d7ef88-4400-4925-85ef-5d2d0edae8cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19754,e7d7ef88-4400-4925-85ef-5d2d0edae8cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19755,e7d7ef88-4400-4925-85ef-5d2d0edae8cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19756,3e7bf28c-16a2-4a2a-a3c4-c5ae0fe5bc3b,LIST_ACCOUNTS,xs2aListAccounts,true -19757,3e7bf28c-16a2-4a2a-a3c4-c5ae0fe5bc3b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19757,3e7bf28c-16a2-4a2a-a3c4-c5ae0fe5bc3b,LIST_TRANSACTIONS,xs2aListTransactions,true 19758,3e7bf28c-16a2-4a2a-a3c4-c5ae0fe5bc3b,AUTHORIZATION,,true 19759,3e7bf28c-16a2-4a2a-a3c4-c5ae0fe5bc3b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19760,3e7bf28c-16a2-4a2a-a3c4-c5ae0fe5bc3b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19761,3e7bf28c-16a2-4a2a-a3c4-c5ae0fe5bc3b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19762,2c581c10-77a7-4ea0-8e78-b6b06239acbb,LIST_ACCOUNTS,hbciListAccounts,false -19763,2c581c10-77a7-4ea0-8e78-b6b06239acbb,LIST_TRANSACTIONS,hbciListTransactions,false -19764,2c581c10-77a7-4ea0-8e78-b6b06239acbb,AUTHORIZATION,,false -19765,2c581c10-77a7-4ea0-8e78-b6b06239acbb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19766,2c581c10-77a7-4ea0-8e78-b6b06239acbb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19767,2c581c10-77a7-4ea0-8e78-b6b06239acbb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19762,3189f52d-4429-4cd1-95d3-a9034fe1bbdc,LIST_ACCOUNTS,hbciListAccounts,false +19763,3189f52d-4429-4cd1-95d3-a9034fe1bbdc,LIST_TRANSACTIONS,hbciListTransactions,false +19764,3189f52d-4429-4cd1-95d3-a9034fe1bbdc,AUTHORIZATION,,false +19765,3189f52d-4429-4cd1-95d3-a9034fe1bbdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19766,3189f52d-4429-4cd1-95d3-a9034fe1bbdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19767,3189f52d-4429-4cd1-95d3-a9034fe1bbdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19768,9b414916-53f8-4109-ab22-e38d5514436c,LIST_ACCOUNTS,xs2aListAccounts,true -19769,9b414916-53f8-4109-ab22-e38d5514436c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19769,9b414916-53f8-4109-ab22-e38d5514436c,LIST_TRANSACTIONS,xs2aListTransactions,true 19770,9b414916-53f8-4109-ab22-e38d5514436c,AUTHORIZATION,,true 19771,9b414916-53f8-4109-ab22-e38d5514436c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19772,9b414916-53f8-4109-ab22-e38d5514436c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19773,9b414916-53f8-4109-ab22-e38d5514436c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19774,42395220-5190-491a-b7d8-5671f675852a,LIST_ACCOUNTS,hbciListAccounts,false -19775,42395220-5190-491a-b7d8-5671f675852a,LIST_TRANSACTIONS,hbciListTransactions,false -19776,42395220-5190-491a-b7d8-5671f675852a,AUTHORIZATION,,false -19777,42395220-5190-491a-b7d8-5671f675852a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19778,42395220-5190-491a-b7d8-5671f675852a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19779,42395220-5190-491a-b7d8-5671f675852a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19774,39412115-749a-49b0-b825-73a97b6a76b7,LIST_ACCOUNTS,hbciListAccounts,false +19775,39412115-749a-49b0-b825-73a97b6a76b7,LIST_TRANSACTIONS,hbciListTransactions,false +19776,39412115-749a-49b0-b825-73a97b6a76b7,AUTHORIZATION,,false +19777,39412115-749a-49b0-b825-73a97b6a76b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19778,39412115-749a-49b0-b825-73a97b6a76b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19779,39412115-749a-49b0-b825-73a97b6a76b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19780,1ca7baba-f798-4354-a972-65a2daedb143,LIST_ACCOUNTS,xs2aListAccounts,true -19781,1ca7baba-f798-4354-a972-65a2daedb143,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19781,1ca7baba-f798-4354-a972-65a2daedb143,LIST_TRANSACTIONS,xs2aListTransactions,true 19782,1ca7baba-f798-4354-a972-65a2daedb143,AUTHORIZATION,,true 19783,1ca7baba-f798-4354-a972-65a2daedb143,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19784,1ca7baba-f798-4354-a972-65a2daedb143,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19785,1ca7baba-f798-4354-a972-65a2daedb143,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19786,c6a9f692-d848-49b4-8b30-ed76810ff8f0,LIST_ACCOUNTS,hbciListAccounts,false -19787,c6a9f692-d848-49b4-8b30-ed76810ff8f0,LIST_TRANSACTIONS,hbciListTransactions,false -19788,c6a9f692-d848-49b4-8b30-ed76810ff8f0,AUTHORIZATION,,false -19789,c6a9f692-d848-49b4-8b30-ed76810ff8f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19790,c6a9f692-d848-49b4-8b30-ed76810ff8f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19791,c6a9f692-d848-49b4-8b30-ed76810ff8f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19786,9ea40ea0-5679-4873-9eea-2caa2c2ee99f,LIST_ACCOUNTS,hbciListAccounts,false +19787,9ea40ea0-5679-4873-9eea-2caa2c2ee99f,LIST_TRANSACTIONS,hbciListTransactions,false +19788,9ea40ea0-5679-4873-9eea-2caa2c2ee99f,AUTHORIZATION,,false +19789,9ea40ea0-5679-4873-9eea-2caa2c2ee99f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19790,9ea40ea0-5679-4873-9eea-2caa2c2ee99f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19791,9ea40ea0-5679-4873-9eea-2caa2c2ee99f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19792,b759ea57-5843-4f9c-9c2f-d2e8cd50bb45,LIST_ACCOUNTS,xs2aListAccounts,true -19793,b759ea57-5843-4f9c-9c2f-d2e8cd50bb45,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19793,b759ea57-5843-4f9c-9c2f-d2e8cd50bb45,LIST_TRANSACTIONS,xs2aListTransactions,true 19794,b759ea57-5843-4f9c-9c2f-d2e8cd50bb45,AUTHORIZATION,,true 19795,b759ea57-5843-4f9c-9c2f-d2e8cd50bb45,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19796,b759ea57-5843-4f9c-9c2f-d2e8cd50bb45,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19797,b759ea57-5843-4f9c-9c2f-d2e8cd50bb45,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19798,d7a27399-fde5-40f9-80e7-8112d4f9e638,LIST_ACCOUNTS,hbciListAccounts,false -19799,d7a27399-fde5-40f9-80e7-8112d4f9e638,LIST_TRANSACTIONS,hbciListTransactions,false -19800,d7a27399-fde5-40f9-80e7-8112d4f9e638,AUTHORIZATION,,false -19801,d7a27399-fde5-40f9-80e7-8112d4f9e638,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19802,d7a27399-fde5-40f9-80e7-8112d4f9e638,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19803,d7a27399-fde5-40f9-80e7-8112d4f9e638,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19798,7b1e9154-1d6c-4749-acfc-db29d0348b61,LIST_ACCOUNTS,hbciListAccounts,false +19799,7b1e9154-1d6c-4749-acfc-db29d0348b61,LIST_TRANSACTIONS,hbciListTransactions,false +19800,7b1e9154-1d6c-4749-acfc-db29d0348b61,AUTHORIZATION,,false +19801,7b1e9154-1d6c-4749-acfc-db29d0348b61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19802,7b1e9154-1d6c-4749-acfc-db29d0348b61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19803,7b1e9154-1d6c-4749-acfc-db29d0348b61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19804,a4302905-6cdf-47d1-aee7-ee91e6962352,LIST_ACCOUNTS,xs2aListAccounts,true -19805,a4302905-6cdf-47d1-aee7-ee91e6962352,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19805,a4302905-6cdf-47d1-aee7-ee91e6962352,LIST_TRANSACTIONS,xs2aListTransactions,true 19806,a4302905-6cdf-47d1-aee7-ee91e6962352,AUTHORIZATION,,true 19807,a4302905-6cdf-47d1-aee7-ee91e6962352,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19808,a4302905-6cdf-47d1-aee7-ee91e6962352,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19809,a4302905-6cdf-47d1-aee7-ee91e6962352,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19810,c5384dcd-a2e6-4830-957d-3d121f819481,LIST_ACCOUNTS,hbciListAccounts,false -19811,c5384dcd-a2e6-4830-957d-3d121f819481,LIST_TRANSACTIONS,hbciListTransactions,false -19812,c5384dcd-a2e6-4830-957d-3d121f819481,AUTHORIZATION,,false -19813,c5384dcd-a2e6-4830-957d-3d121f819481,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19814,c5384dcd-a2e6-4830-957d-3d121f819481,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19815,c5384dcd-a2e6-4830-957d-3d121f819481,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19810,14ab9a5e-d623-46f1-8ebd-df9c4c24cd4b,LIST_ACCOUNTS,hbciListAccounts,false +19811,14ab9a5e-d623-46f1-8ebd-df9c4c24cd4b,LIST_TRANSACTIONS,hbciListTransactions,false +19812,14ab9a5e-d623-46f1-8ebd-df9c4c24cd4b,AUTHORIZATION,,false +19813,14ab9a5e-d623-46f1-8ebd-df9c4c24cd4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19814,14ab9a5e-d623-46f1-8ebd-df9c4c24cd4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19815,14ab9a5e-d623-46f1-8ebd-df9c4c24cd4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19816,0ca7098a-2c11-44cf-bd8c-b2280b5cae46,LIST_ACCOUNTS,xs2aListAccounts,true -19817,0ca7098a-2c11-44cf-bd8c-b2280b5cae46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19817,0ca7098a-2c11-44cf-bd8c-b2280b5cae46,LIST_TRANSACTIONS,xs2aListTransactions,true 19818,0ca7098a-2c11-44cf-bd8c-b2280b5cae46,AUTHORIZATION,,true 19819,0ca7098a-2c11-44cf-bd8c-b2280b5cae46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19820,0ca7098a-2c11-44cf-bd8c-b2280b5cae46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19821,0ca7098a-2c11-44cf-bd8c-b2280b5cae46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19822,cb845cb3-30fa-4299-b792-accd82b82ac4,LIST_ACCOUNTS,hbciListAccounts,false -19823,cb845cb3-30fa-4299-b792-accd82b82ac4,LIST_TRANSACTIONS,hbciListTransactions,false -19824,cb845cb3-30fa-4299-b792-accd82b82ac4,AUTHORIZATION,,false -19825,cb845cb3-30fa-4299-b792-accd82b82ac4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19826,cb845cb3-30fa-4299-b792-accd82b82ac4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19827,cb845cb3-30fa-4299-b792-accd82b82ac4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19822,9bf27070-cbf4-416d-9d3a-8869640a9134,LIST_ACCOUNTS,hbciListAccounts,false +19823,9bf27070-cbf4-416d-9d3a-8869640a9134,LIST_TRANSACTIONS,hbciListTransactions,false +19824,9bf27070-cbf4-416d-9d3a-8869640a9134,AUTHORIZATION,,false +19825,9bf27070-cbf4-416d-9d3a-8869640a9134,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19826,9bf27070-cbf4-416d-9d3a-8869640a9134,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19827,9bf27070-cbf4-416d-9d3a-8869640a9134,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19828,fd52faa0-9397-4aff-94a3-ee5b7c65f082,LIST_ACCOUNTS,xs2aListAccounts,true -19829,fd52faa0-9397-4aff-94a3-ee5b7c65f082,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19829,fd52faa0-9397-4aff-94a3-ee5b7c65f082,LIST_TRANSACTIONS,xs2aListTransactions,true 19830,fd52faa0-9397-4aff-94a3-ee5b7c65f082,AUTHORIZATION,,true 19831,fd52faa0-9397-4aff-94a3-ee5b7c65f082,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19832,fd52faa0-9397-4aff-94a3-ee5b7c65f082,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19833,fd52faa0-9397-4aff-94a3-ee5b7c65f082,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19834,7dc630c7-5385-42b2-a7b6-a45a8a2235d9,LIST_ACCOUNTS,hbciListAccounts,false -19835,7dc630c7-5385-42b2-a7b6-a45a8a2235d9,LIST_TRANSACTIONS,hbciListTransactions,false -19836,7dc630c7-5385-42b2-a7b6-a45a8a2235d9,AUTHORIZATION,,false -19837,7dc630c7-5385-42b2-a7b6-a45a8a2235d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19838,7dc630c7-5385-42b2-a7b6-a45a8a2235d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19839,7dc630c7-5385-42b2-a7b6-a45a8a2235d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19834,e6bb858b-9f86-48d3-a86b-041f957bc6f7,LIST_ACCOUNTS,hbciListAccounts,false +19835,e6bb858b-9f86-48d3-a86b-041f957bc6f7,LIST_TRANSACTIONS,hbciListTransactions,false +19836,e6bb858b-9f86-48d3-a86b-041f957bc6f7,AUTHORIZATION,,false +19837,e6bb858b-9f86-48d3-a86b-041f957bc6f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19838,e6bb858b-9f86-48d3-a86b-041f957bc6f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19839,e6bb858b-9f86-48d3-a86b-041f957bc6f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19840,94c18e19-74f2-406e-87c0-6c422f4068d4,LIST_ACCOUNTS,xs2aListAccounts,true -19841,94c18e19-74f2-406e-87c0-6c422f4068d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19841,94c18e19-74f2-406e-87c0-6c422f4068d4,LIST_TRANSACTIONS,xs2aListTransactions,true 19842,94c18e19-74f2-406e-87c0-6c422f4068d4,AUTHORIZATION,,true 19843,94c18e19-74f2-406e-87c0-6c422f4068d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19844,94c18e19-74f2-406e-87c0-6c422f4068d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19845,94c18e19-74f2-406e-87c0-6c422f4068d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19846,38512d54-c71c-4a5c-8ec1-64b484ae8437,LIST_ACCOUNTS,hbciListAccounts,false -19847,38512d54-c71c-4a5c-8ec1-64b484ae8437,LIST_TRANSACTIONS,hbciListTransactions,false -19848,38512d54-c71c-4a5c-8ec1-64b484ae8437,AUTHORIZATION,,false -19849,38512d54-c71c-4a5c-8ec1-64b484ae8437,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19850,38512d54-c71c-4a5c-8ec1-64b484ae8437,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19851,38512d54-c71c-4a5c-8ec1-64b484ae8437,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19846,4f29e99f-9b11-4665-b28c-c1888013ae0d,LIST_ACCOUNTS,hbciListAccounts,false +19847,4f29e99f-9b11-4665-b28c-c1888013ae0d,LIST_TRANSACTIONS,hbciListTransactions,false +19848,4f29e99f-9b11-4665-b28c-c1888013ae0d,AUTHORIZATION,,false +19849,4f29e99f-9b11-4665-b28c-c1888013ae0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19850,4f29e99f-9b11-4665-b28c-c1888013ae0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19851,4f29e99f-9b11-4665-b28c-c1888013ae0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19852,0ac89848-22e5-4984-97fa-5d59245f5035,LIST_ACCOUNTS,xs2aListAccounts,true -19853,0ac89848-22e5-4984-97fa-5d59245f5035,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19853,0ac89848-22e5-4984-97fa-5d59245f5035,LIST_TRANSACTIONS,xs2aListTransactions,true 19854,0ac89848-22e5-4984-97fa-5d59245f5035,AUTHORIZATION,,true 19855,0ac89848-22e5-4984-97fa-5d59245f5035,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19856,0ac89848-22e5-4984-97fa-5d59245f5035,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19857,0ac89848-22e5-4984-97fa-5d59245f5035,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19858,1e2ee9b8-d1e5-4229-815c-757555333284,LIST_ACCOUNTS,hbciListAccounts,false -19859,1e2ee9b8-d1e5-4229-815c-757555333284,LIST_TRANSACTIONS,hbciListTransactions,false -19860,1e2ee9b8-d1e5-4229-815c-757555333284,AUTHORIZATION,,false -19861,1e2ee9b8-d1e5-4229-815c-757555333284,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19862,1e2ee9b8-d1e5-4229-815c-757555333284,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19863,1e2ee9b8-d1e5-4229-815c-757555333284,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19858,7bfbc652-028e-442e-aaac-14bb5e9641fd,LIST_ACCOUNTS,hbciListAccounts,false +19859,7bfbc652-028e-442e-aaac-14bb5e9641fd,LIST_TRANSACTIONS,hbciListTransactions,false +19860,7bfbc652-028e-442e-aaac-14bb5e9641fd,AUTHORIZATION,,false +19861,7bfbc652-028e-442e-aaac-14bb5e9641fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19862,7bfbc652-028e-442e-aaac-14bb5e9641fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19863,7bfbc652-028e-442e-aaac-14bb5e9641fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19864,a3a303b4-a4ea-4e16-a92a-ae2822e4a9df,LIST_ACCOUNTS,xs2aListAccounts,true -19865,a3a303b4-a4ea-4e16-a92a-ae2822e4a9df,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19865,a3a303b4-a4ea-4e16-a92a-ae2822e4a9df,LIST_TRANSACTIONS,xs2aListTransactions,true 19866,a3a303b4-a4ea-4e16-a92a-ae2822e4a9df,AUTHORIZATION,,true 19867,a3a303b4-a4ea-4e16-a92a-ae2822e4a9df,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19868,a3a303b4-a4ea-4e16-a92a-ae2822e4a9df,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19869,a3a303b4-a4ea-4e16-a92a-ae2822e4a9df,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19870,17c266df-1ee6-41df-96e1-e821acebc87f,LIST_ACCOUNTS,hbciListAccounts,false -19871,17c266df-1ee6-41df-96e1-e821acebc87f,LIST_TRANSACTIONS,hbciListTransactions,false -19872,17c266df-1ee6-41df-96e1-e821acebc87f,AUTHORIZATION,,false -19873,17c266df-1ee6-41df-96e1-e821acebc87f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19874,17c266df-1ee6-41df-96e1-e821acebc87f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19875,17c266df-1ee6-41df-96e1-e821acebc87f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19870,8db8459f-98b4-4d4a-8e61-63cb0b0c9230,LIST_ACCOUNTS,hbciListAccounts,false +19871,8db8459f-98b4-4d4a-8e61-63cb0b0c9230,LIST_TRANSACTIONS,hbciListTransactions,false +19872,8db8459f-98b4-4d4a-8e61-63cb0b0c9230,AUTHORIZATION,,false +19873,8db8459f-98b4-4d4a-8e61-63cb0b0c9230,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19874,8db8459f-98b4-4d4a-8e61-63cb0b0c9230,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19875,8db8459f-98b4-4d4a-8e61-63cb0b0c9230,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19876,1987a4c3-1a4c-4445-9544-0a997a322f57,LIST_ACCOUNTS,xs2aListAccounts,true -19877,1987a4c3-1a4c-4445-9544-0a997a322f57,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19877,1987a4c3-1a4c-4445-9544-0a997a322f57,LIST_TRANSACTIONS,xs2aListTransactions,true 19878,1987a4c3-1a4c-4445-9544-0a997a322f57,AUTHORIZATION,,true 19879,1987a4c3-1a4c-4445-9544-0a997a322f57,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19880,1987a4c3-1a4c-4445-9544-0a997a322f57,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19881,1987a4c3-1a4c-4445-9544-0a997a322f57,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19882,f97cd2eb-1377-4eed-bba3-f4700f0bcc6f,LIST_ACCOUNTS,hbciListAccounts,false -19883,f97cd2eb-1377-4eed-bba3-f4700f0bcc6f,LIST_TRANSACTIONS,hbciListTransactions,false -19884,f97cd2eb-1377-4eed-bba3-f4700f0bcc6f,AUTHORIZATION,,false -19885,f97cd2eb-1377-4eed-bba3-f4700f0bcc6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19886,f97cd2eb-1377-4eed-bba3-f4700f0bcc6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19887,f97cd2eb-1377-4eed-bba3-f4700f0bcc6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19882,026a8c66-a4bf-41d6-83a4-d24cdefdbb50,LIST_ACCOUNTS,hbciListAccounts,false +19883,026a8c66-a4bf-41d6-83a4-d24cdefdbb50,LIST_TRANSACTIONS,hbciListTransactions,false +19884,026a8c66-a4bf-41d6-83a4-d24cdefdbb50,AUTHORIZATION,,false +19885,026a8c66-a4bf-41d6-83a4-d24cdefdbb50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19886,026a8c66-a4bf-41d6-83a4-d24cdefdbb50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19887,026a8c66-a4bf-41d6-83a4-d24cdefdbb50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19888,fcdc71d4-d19b-42ea-88be-c8bfaa5b8dfb,LIST_ACCOUNTS,xs2aListAccounts,true -19889,fcdc71d4-d19b-42ea-88be-c8bfaa5b8dfb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19889,fcdc71d4-d19b-42ea-88be-c8bfaa5b8dfb,LIST_TRANSACTIONS,xs2aListTransactions,true 19890,fcdc71d4-d19b-42ea-88be-c8bfaa5b8dfb,AUTHORIZATION,,true 19891,fcdc71d4-d19b-42ea-88be-c8bfaa5b8dfb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19892,fcdc71d4-d19b-42ea-88be-c8bfaa5b8dfb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19893,fcdc71d4-d19b-42ea-88be-c8bfaa5b8dfb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19894,027149b8-ba6f-4f0c-8141-e64620fe9643,LIST_ACCOUNTS,hbciListAccounts,false -19895,027149b8-ba6f-4f0c-8141-e64620fe9643,LIST_TRANSACTIONS,hbciListTransactions,false -19896,027149b8-ba6f-4f0c-8141-e64620fe9643,AUTHORIZATION,,false -19897,027149b8-ba6f-4f0c-8141-e64620fe9643,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19898,027149b8-ba6f-4f0c-8141-e64620fe9643,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19899,027149b8-ba6f-4f0c-8141-e64620fe9643,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19894,f8b942c8-2ed1-4fc2-a71c-f3d2b041b432,LIST_ACCOUNTS,hbciListAccounts,false +19895,f8b942c8-2ed1-4fc2-a71c-f3d2b041b432,LIST_TRANSACTIONS,hbciListTransactions,false +19896,f8b942c8-2ed1-4fc2-a71c-f3d2b041b432,AUTHORIZATION,,false +19897,f8b942c8-2ed1-4fc2-a71c-f3d2b041b432,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19898,f8b942c8-2ed1-4fc2-a71c-f3d2b041b432,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19899,f8b942c8-2ed1-4fc2-a71c-f3d2b041b432,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19900,f90c00c1-fe27-4b80-9110-aef10f6871b7,LIST_ACCOUNTS,xs2aListAccounts,true -19901,f90c00c1-fe27-4b80-9110-aef10f6871b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19901,f90c00c1-fe27-4b80-9110-aef10f6871b7,LIST_TRANSACTIONS,xs2aListTransactions,true 19902,f90c00c1-fe27-4b80-9110-aef10f6871b7,AUTHORIZATION,,true 19903,f90c00c1-fe27-4b80-9110-aef10f6871b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19904,f90c00c1-fe27-4b80-9110-aef10f6871b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19905,f90c00c1-fe27-4b80-9110-aef10f6871b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19906,de214103-879d-4c82-9925-9770447ef951,LIST_ACCOUNTS,hbciListAccounts,false -19907,de214103-879d-4c82-9925-9770447ef951,LIST_TRANSACTIONS,hbciListTransactions,false -19908,de214103-879d-4c82-9925-9770447ef951,AUTHORIZATION,,false -19909,de214103-879d-4c82-9925-9770447ef951,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19910,de214103-879d-4c82-9925-9770447ef951,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19911,de214103-879d-4c82-9925-9770447ef951,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19906,18a6b42e-4557-4284-a124-cb0814b824f3,LIST_ACCOUNTS,hbciListAccounts,false +19907,18a6b42e-4557-4284-a124-cb0814b824f3,LIST_TRANSACTIONS,hbciListTransactions,false +19908,18a6b42e-4557-4284-a124-cb0814b824f3,AUTHORIZATION,,false +19909,18a6b42e-4557-4284-a124-cb0814b824f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19910,18a6b42e-4557-4284-a124-cb0814b824f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19911,18a6b42e-4557-4284-a124-cb0814b824f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19912,65cc4d6d-2694-4e35-8a1c-9dca7e6322ce,LIST_ACCOUNTS,xs2aListAccounts,true -19913,65cc4d6d-2694-4e35-8a1c-9dca7e6322ce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19913,65cc4d6d-2694-4e35-8a1c-9dca7e6322ce,LIST_TRANSACTIONS,xs2aListTransactions,true 19914,65cc4d6d-2694-4e35-8a1c-9dca7e6322ce,AUTHORIZATION,,true 19915,65cc4d6d-2694-4e35-8a1c-9dca7e6322ce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19916,65cc4d6d-2694-4e35-8a1c-9dca7e6322ce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19917,65cc4d6d-2694-4e35-8a1c-9dca7e6322ce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19918,48b684b2-c6ef-4686-8182-3f04106751d0,LIST_ACCOUNTS,hbciListAccounts,false -19919,48b684b2-c6ef-4686-8182-3f04106751d0,LIST_TRANSACTIONS,hbciListTransactions,false -19920,48b684b2-c6ef-4686-8182-3f04106751d0,AUTHORIZATION,,false -19921,48b684b2-c6ef-4686-8182-3f04106751d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19922,48b684b2-c6ef-4686-8182-3f04106751d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19923,48b684b2-c6ef-4686-8182-3f04106751d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19918,3b623cfd-35a7-4497-ac74-35a0d3a2710b,LIST_ACCOUNTS,hbciListAccounts,false +19919,3b623cfd-35a7-4497-ac74-35a0d3a2710b,LIST_TRANSACTIONS,hbciListTransactions,false +19920,3b623cfd-35a7-4497-ac74-35a0d3a2710b,AUTHORIZATION,,false +19921,3b623cfd-35a7-4497-ac74-35a0d3a2710b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19922,3b623cfd-35a7-4497-ac74-35a0d3a2710b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19923,3b623cfd-35a7-4497-ac74-35a0d3a2710b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19924,967abf74-899c-402f-a487-ca334a74f352,LIST_ACCOUNTS,xs2aListAccounts,true -19925,967abf74-899c-402f-a487-ca334a74f352,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19925,967abf74-899c-402f-a487-ca334a74f352,LIST_TRANSACTIONS,xs2aListTransactions,true 19926,967abf74-899c-402f-a487-ca334a74f352,AUTHORIZATION,,true 19927,967abf74-899c-402f-a487-ca334a74f352,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19928,967abf74-899c-402f-a487-ca334a74f352,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19929,967abf74-899c-402f-a487-ca334a74f352,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19930,579a8bfe-9d4a-41fb-a14d-299f3b649edd,LIST_ACCOUNTS,hbciListAccounts,false -19931,579a8bfe-9d4a-41fb-a14d-299f3b649edd,LIST_TRANSACTIONS,hbciListTransactions,false -19932,579a8bfe-9d4a-41fb-a14d-299f3b649edd,AUTHORIZATION,,false -19933,579a8bfe-9d4a-41fb-a14d-299f3b649edd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19934,579a8bfe-9d4a-41fb-a14d-299f3b649edd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19935,579a8bfe-9d4a-41fb-a14d-299f3b649edd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19930,2e90f6b8-e631-48f1-889d-b339c449f8c9,LIST_ACCOUNTS,hbciListAccounts,false +19931,2e90f6b8-e631-48f1-889d-b339c449f8c9,LIST_TRANSACTIONS,hbciListTransactions,false +19932,2e90f6b8-e631-48f1-889d-b339c449f8c9,AUTHORIZATION,,false +19933,2e90f6b8-e631-48f1-889d-b339c449f8c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19934,2e90f6b8-e631-48f1-889d-b339c449f8c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19935,2e90f6b8-e631-48f1-889d-b339c449f8c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19936,dd673b0b-d197-47aa-8bd4-848360330ae5,LIST_ACCOUNTS,xs2aListAccounts,true -19937,dd673b0b-d197-47aa-8bd4-848360330ae5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19937,dd673b0b-d197-47aa-8bd4-848360330ae5,LIST_TRANSACTIONS,xs2aListTransactions,true 19938,dd673b0b-d197-47aa-8bd4-848360330ae5,AUTHORIZATION,,true 19939,dd673b0b-d197-47aa-8bd4-848360330ae5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19940,dd673b0b-d197-47aa-8bd4-848360330ae5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19941,dd673b0b-d197-47aa-8bd4-848360330ae5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19942,ff27330f-9f19-4df2-823b-3a4170831a03,LIST_ACCOUNTS,hbciListAccounts,false -19943,ff27330f-9f19-4df2-823b-3a4170831a03,LIST_TRANSACTIONS,hbciListTransactions,false -19944,ff27330f-9f19-4df2-823b-3a4170831a03,AUTHORIZATION,,false -19945,ff27330f-9f19-4df2-823b-3a4170831a03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19946,ff27330f-9f19-4df2-823b-3a4170831a03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19947,ff27330f-9f19-4df2-823b-3a4170831a03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19942,f9b9f864-2d21-4f84-bedf-ad9cd8b5e18b,LIST_ACCOUNTS,hbciListAccounts,false +19943,f9b9f864-2d21-4f84-bedf-ad9cd8b5e18b,LIST_TRANSACTIONS,hbciListTransactions,false +19944,f9b9f864-2d21-4f84-bedf-ad9cd8b5e18b,AUTHORIZATION,,false +19945,f9b9f864-2d21-4f84-bedf-ad9cd8b5e18b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19946,f9b9f864-2d21-4f84-bedf-ad9cd8b5e18b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19947,f9b9f864-2d21-4f84-bedf-ad9cd8b5e18b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19948,e7187249-bd2b-4a0b-a60c-27a0a6105e0d,LIST_ACCOUNTS,xs2aListAccounts,true -19949,e7187249-bd2b-4a0b-a60c-27a0a6105e0d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19949,e7187249-bd2b-4a0b-a60c-27a0a6105e0d,LIST_TRANSACTIONS,xs2aListTransactions,true 19950,e7187249-bd2b-4a0b-a60c-27a0a6105e0d,AUTHORIZATION,,true 19951,e7187249-bd2b-4a0b-a60c-27a0a6105e0d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19952,e7187249-bd2b-4a0b-a60c-27a0a6105e0d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19953,e7187249-bd2b-4a0b-a60c-27a0a6105e0d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19954,e6cf0daa-7736-4acf-8778-3ae6d25ed04e,LIST_ACCOUNTS,hbciListAccounts,false -19955,e6cf0daa-7736-4acf-8778-3ae6d25ed04e,LIST_TRANSACTIONS,hbciListTransactions,false -19956,e6cf0daa-7736-4acf-8778-3ae6d25ed04e,AUTHORIZATION,,false -19957,e6cf0daa-7736-4acf-8778-3ae6d25ed04e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19958,e6cf0daa-7736-4acf-8778-3ae6d25ed04e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19959,e6cf0daa-7736-4acf-8778-3ae6d25ed04e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19954,3bc5a0d0-f7ad-42f4-a971-2c0fff64fd77,LIST_ACCOUNTS,hbciListAccounts,false +19955,3bc5a0d0-f7ad-42f4-a971-2c0fff64fd77,LIST_TRANSACTIONS,hbciListTransactions,false +19956,3bc5a0d0-f7ad-42f4-a971-2c0fff64fd77,AUTHORIZATION,,false +19957,3bc5a0d0-f7ad-42f4-a971-2c0fff64fd77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19958,3bc5a0d0-f7ad-42f4-a971-2c0fff64fd77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19959,3bc5a0d0-f7ad-42f4-a971-2c0fff64fd77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19960,68565408-a492-40f4-9550-92f7429dfcc3,LIST_ACCOUNTS,xs2aListAccounts,true -19961,68565408-a492-40f4-9550-92f7429dfcc3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19961,68565408-a492-40f4-9550-92f7429dfcc3,LIST_TRANSACTIONS,xs2aListTransactions,true 19962,68565408-a492-40f4-9550-92f7429dfcc3,AUTHORIZATION,,true 19963,68565408-a492-40f4-9550-92f7429dfcc3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19964,68565408-a492-40f4-9550-92f7429dfcc3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19965,68565408-a492-40f4-9550-92f7429dfcc3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19966,488b49d1-9e50-47f7-a263-ff9e1068b1f7,LIST_ACCOUNTS,hbciListAccounts,false -19967,488b49d1-9e50-47f7-a263-ff9e1068b1f7,LIST_TRANSACTIONS,hbciListTransactions,false -19968,488b49d1-9e50-47f7-a263-ff9e1068b1f7,AUTHORIZATION,,false -19969,488b49d1-9e50-47f7-a263-ff9e1068b1f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19970,488b49d1-9e50-47f7-a263-ff9e1068b1f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19971,488b49d1-9e50-47f7-a263-ff9e1068b1f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19966,c230b60d-8461-44ba-b7ee-b400a8ff7a5b,LIST_ACCOUNTS,hbciListAccounts,false +19967,c230b60d-8461-44ba-b7ee-b400a8ff7a5b,LIST_TRANSACTIONS,hbciListTransactions,false +19968,c230b60d-8461-44ba-b7ee-b400a8ff7a5b,AUTHORIZATION,,false +19969,c230b60d-8461-44ba-b7ee-b400a8ff7a5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19970,c230b60d-8461-44ba-b7ee-b400a8ff7a5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19971,c230b60d-8461-44ba-b7ee-b400a8ff7a5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19972,6d92bda9-211b-4c59-b10a-35a0533e7f6c,LIST_ACCOUNTS,xs2aListAccounts,true -19973,6d92bda9-211b-4c59-b10a-35a0533e7f6c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19973,6d92bda9-211b-4c59-b10a-35a0533e7f6c,LIST_TRANSACTIONS,xs2aListTransactions,true 19974,6d92bda9-211b-4c59-b10a-35a0533e7f6c,AUTHORIZATION,,true 19975,6d92bda9-211b-4c59-b10a-35a0533e7f6c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19976,6d92bda9-211b-4c59-b10a-35a0533e7f6c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19977,6d92bda9-211b-4c59-b10a-35a0533e7f6c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19978,2644fe09-69ff-4b2a-9c6f-777fe745f4ca,LIST_ACCOUNTS,hbciListAccounts,false -19979,2644fe09-69ff-4b2a-9c6f-777fe745f4ca,LIST_TRANSACTIONS,hbciListTransactions,false -19980,2644fe09-69ff-4b2a-9c6f-777fe745f4ca,AUTHORIZATION,,false -19981,2644fe09-69ff-4b2a-9c6f-777fe745f4ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19982,2644fe09-69ff-4b2a-9c6f-777fe745f4ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19983,2644fe09-69ff-4b2a-9c6f-777fe745f4ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19978,0c9dca53-3348-4491-80af-9d5448943da8,LIST_ACCOUNTS,hbciListAccounts,false +19979,0c9dca53-3348-4491-80af-9d5448943da8,LIST_TRANSACTIONS,hbciListTransactions,false +19980,0c9dca53-3348-4491-80af-9d5448943da8,AUTHORIZATION,,false +19981,0c9dca53-3348-4491-80af-9d5448943da8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19982,0c9dca53-3348-4491-80af-9d5448943da8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19983,0c9dca53-3348-4491-80af-9d5448943da8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19984,77ae6328-9df1-4428-99f5-61f6a0ac439f,LIST_ACCOUNTS,xs2aListAccounts,true -19985,77ae6328-9df1-4428-99f5-61f6a0ac439f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19985,77ae6328-9df1-4428-99f5-61f6a0ac439f,LIST_TRANSACTIONS,xs2aListTransactions,true 19986,77ae6328-9df1-4428-99f5-61f6a0ac439f,AUTHORIZATION,,true 19987,77ae6328-9df1-4428-99f5-61f6a0ac439f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 19988,77ae6328-9df1-4428-99f5-61f6a0ac439f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 19989,77ae6328-9df1-4428-99f5-61f6a0ac439f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -19990,39a78c68-5c6c-4d58-b53e-e9d5913d3911,LIST_ACCOUNTS,hbciListAccounts,false -19991,39a78c68-5c6c-4d58-b53e-e9d5913d3911,LIST_TRANSACTIONS,hbciListTransactions,false -19992,39a78c68-5c6c-4d58-b53e-e9d5913d3911,AUTHORIZATION,,false -19993,39a78c68-5c6c-4d58-b53e-e9d5913d3911,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -19994,39a78c68-5c6c-4d58-b53e-e9d5913d3911,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -19995,39a78c68-5c6c-4d58-b53e-e9d5913d3911,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +19990,91f134b2-8c59-46cc-83c8-a1ec488bae70,LIST_ACCOUNTS,hbciListAccounts,false +19991,91f134b2-8c59-46cc-83c8-a1ec488bae70,LIST_TRANSACTIONS,hbciListTransactions,false +19992,91f134b2-8c59-46cc-83c8-a1ec488bae70,AUTHORIZATION,,false +19993,91f134b2-8c59-46cc-83c8-a1ec488bae70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +19994,91f134b2-8c59-46cc-83c8-a1ec488bae70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +19995,91f134b2-8c59-46cc-83c8-a1ec488bae70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 19996,692bdf2b-babb-4358-825a-509016d320ad,LIST_ACCOUNTS,xs2aListAccounts,true -19997,692bdf2b-babb-4358-825a-509016d320ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +19997,692bdf2b-babb-4358-825a-509016d320ad,LIST_TRANSACTIONS,xs2aListTransactions,true 19998,692bdf2b-babb-4358-825a-509016d320ad,AUTHORIZATION,,true 19999,692bdf2b-babb-4358-825a-509016d320ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20000,692bdf2b-babb-4358-825a-509016d320ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20001,692bdf2b-babb-4358-825a-509016d320ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20002,3ec2adf8-0d2c-4d33-8f4c-0052b1190e9c,LIST_ACCOUNTS,hbciListAccounts,false -20003,3ec2adf8-0d2c-4d33-8f4c-0052b1190e9c,LIST_TRANSACTIONS,hbciListTransactions,false -20004,3ec2adf8-0d2c-4d33-8f4c-0052b1190e9c,AUTHORIZATION,,false -20005,3ec2adf8-0d2c-4d33-8f4c-0052b1190e9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20006,3ec2adf8-0d2c-4d33-8f4c-0052b1190e9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20007,3ec2adf8-0d2c-4d33-8f4c-0052b1190e9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20002,416b76bb-d494-4d0c-b71d-fc47e6b20cfb,LIST_ACCOUNTS,hbciListAccounts,false +20003,416b76bb-d494-4d0c-b71d-fc47e6b20cfb,LIST_TRANSACTIONS,hbciListTransactions,false +20004,416b76bb-d494-4d0c-b71d-fc47e6b20cfb,AUTHORIZATION,,false +20005,416b76bb-d494-4d0c-b71d-fc47e6b20cfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20006,416b76bb-d494-4d0c-b71d-fc47e6b20cfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20007,416b76bb-d494-4d0c-b71d-fc47e6b20cfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20008,1e6d4fac-58a2-45eb-b971-533006f5dec9,LIST_ACCOUNTS,xs2aListAccounts,true -20009,1e6d4fac-58a2-45eb-b971-533006f5dec9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20009,1e6d4fac-58a2-45eb-b971-533006f5dec9,LIST_TRANSACTIONS,xs2aListTransactions,true 20010,1e6d4fac-58a2-45eb-b971-533006f5dec9,AUTHORIZATION,,true 20011,1e6d4fac-58a2-45eb-b971-533006f5dec9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20012,1e6d4fac-58a2-45eb-b971-533006f5dec9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20013,1e6d4fac-58a2-45eb-b971-533006f5dec9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20014,94faa089-b371-4e11-9490-6efeb2035d34,LIST_ACCOUNTS,hbciListAccounts,false -20015,94faa089-b371-4e11-9490-6efeb2035d34,LIST_TRANSACTIONS,hbciListTransactions,false -20016,94faa089-b371-4e11-9490-6efeb2035d34,AUTHORIZATION,,false -20017,94faa089-b371-4e11-9490-6efeb2035d34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20018,94faa089-b371-4e11-9490-6efeb2035d34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20019,94faa089-b371-4e11-9490-6efeb2035d34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20014,5eb6d5c2-f6f5-4b36-b35e-d07d6c197dcd,LIST_ACCOUNTS,hbciListAccounts,false +20015,5eb6d5c2-f6f5-4b36-b35e-d07d6c197dcd,LIST_TRANSACTIONS,hbciListTransactions,false +20016,5eb6d5c2-f6f5-4b36-b35e-d07d6c197dcd,AUTHORIZATION,,false +20017,5eb6d5c2-f6f5-4b36-b35e-d07d6c197dcd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20018,5eb6d5c2-f6f5-4b36-b35e-d07d6c197dcd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20019,5eb6d5c2-f6f5-4b36-b35e-d07d6c197dcd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20020,77e6f28e-92f5-4980-b48b-6ca793070e51,LIST_ACCOUNTS,xs2aListAccounts,true -20021,77e6f28e-92f5-4980-b48b-6ca793070e51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20021,77e6f28e-92f5-4980-b48b-6ca793070e51,LIST_TRANSACTIONS,xs2aListTransactions,true 20022,77e6f28e-92f5-4980-b48b-6ca793070e51,AUTHORIZATION,,true 20023,77e6f28e-92f5-4980-b48b-6ca793070e51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20024,77e6f28e-92f5-4980-b48b-6ca793070e51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20025,77e6f28e-92f5-4980-b48b-6ca793070e51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20026,628d29b8-622c-4da2-8d07-1bf16e23b772,LIST_ACCOUNTS,hbciListAccounts,false -20027,628d29b8-622c-4da2-8d07-1bf16e23b772,LIST_TRANSACTIONS,hbciListTransactions,false -20028,628d29b8-622c-4da2-8d07-1bf16e23b772,AUTHORIZATION,,false -20029,628d29b8-622c-4da2-8d07-1bf16e23b772,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20030,628d29b8-622c-4da2-8d07-1bf16e23b772,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20031,628d29b8-622c-4da2-8d07-1bf16e23b772,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20026,a91f517e-3ac7-4115-94db-60323a477299,LIST_ACCOUNTS,hbciListAccounts,false +20027,a91f517e-3ac7-4115-94db-60323a477299,LIST_TRANSACTIONS,hbciListTransactions,false +20028,a91f517e-3ac7-4115-94db-60323a477299,AUTHORIZATION,,false +20029,a91f517e-3ac7-4115-94db-60323a477299,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20030,a91f517e-3ac7-4115-94db-60323a477299,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20031,a91f517e-3ac7-4115-94db-60323a477299,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20032,3ccc0eba-5819-4783-9d44-c6422d0cd9ee,LIST_ACCOUNTS,xs2aListAccounts,true -20033,3ccc0eba-5819-4783-9d44-c6422d0cd9ee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20033,3ccc0eba-5819-4783-9d44-c6422d0cd9ee,LIST_TRANSACTIONS,xs2aListTransactions,true 20034,3ccc0eba-5819-4783-9d44-c6422d0cd9ee,AUTHORIZATION,,true 20035,3ccc0eba-5819-4783-9d44-c6422d0cd9ee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20036,3ccc0eba-5819-4783-9d44-c6422d0cd9ee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20037,3ccc0eba-5819-4783-9d44-c6422d0cd9ee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20038,7501608a-7ffc-443c-9865-040e5c9b5579,LIST_ACCOUNTS,hbciListAccounts,false -20039,7501608a-7ffc-443c-9865-040e5c9b5579,LIST_TRANSACTIONS,hbciListTransactions,false -20040,7501608a-7ffc-443c-9865-040e5c9b5579,AUTHORIZATION,,false -20041,7501608a-7ffc-443c-9865-040e5c9b5579,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20042,7501608a-7ffc-443c-9865-040e5c9b5579,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20043,7501608a-7ffc-443c-9865-040e5c9b5579,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20038,c3d7497c-f091-4c51-8820-fadfddbf1a5c,LIST_ACCOUNTS,hbciListAccounts,false +20039,c3d7497c-f091-4c51-8820-fadfddbf1a5c,LIST_TRANSACTIONS,hbciListTransactions,false +20040,c3d7497c-f091-4c51-8820-fadfddbf1a5c,AUTHORIZATION,,false +20041,c3d7497c-f091-4c51-8820-fadfddbf1a5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20042,c3d7497c-f091-4c51-8820-fadfddbf1a5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20043,c3d7497c-f091-4c51-8820-fadfddbf1a5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20044,82b9855b-cbd8-4850-b8b5-04138f21f609,LIST_ACCOUNTS,xs2aListAccounts,true -20045,82b9855b-cbd8-4850-b8b5-04138f21f609,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20045,82b9855b-cbd8-4850-b8b5-04138f21f609,LIST_TRANSACTIONS,xs2aListTransactions,true 20046,82b9855b-cbd8-4850-b8b5-04138f21f609,AUTHORIZATION,,true 20047,82b9855b-cbd8-4850-b8b5-04138f21f609,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20048,82b9855b-cbd8-4850-b8b5-04138f21f609,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20049,82b9855b-cbd8-4850-b8b5-04138f21f609,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20050,d7dcd6be-2cb1-4491-9ccc-1a59b49356cc,LIST_ACCOUNTS,hbciListAccounts,false -20051,d7dcd6be-2cb1-4491-9ccc-1a59b49356cc,LIST_TRANSACTIONS,hbciListTransactions,false -20052,d7dcd6be-2cb1-4491-9ccc-1a59b49356cc,AUTHORIZATION,,false -20053,d7dcd6be-2cb1-4491-9ccc-1a59b49356cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20054,d7dcd6be-2cb1-4491-9ccc-1a59b49356cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20055,d7dcd6be-2cb1-4491-9ccc-1a59b49356cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20050,b68641d3-3280-4811-9930-a607b8a86130,LIST_ACCOUNTS,hbciListAccounts,false +20051,b68641d3-3280-4811-9930-a607b8a86130,LIST_TRANSACTIONS,hbciListTransactions,false +20052,b68641d3-3280-4811-9930-a607b8a86130,AUTHORIZATION,,false +20053,b68641d3-3280-4811-9930-a607b8a86130,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20054,b68641d3-3280-4811-9930-a607b8a86130,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20055,b68641d3-3280-4811-9930-a607b8a86130,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20056,a7f5110b-d372-4d62-80c2-29dad6cd38b6,LIST_ACCOUNTS,xs2aListAccounts,true -20057,a7f5110b-d372-4d62-80c2-29dad6cd38b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20057,a7f5110b-d372-4d62-80c2-29dad6cd38b6,LIST_TRANSACTIONS,xs2aListTransactions,true 20058,a7f5110b-d372-4d62-80c2-29dad6cd38b6,AUTHORIZATION,,true 20059,a7f5110b-d372-4d62-80c2-29dad6cd38b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20060,a7f5110b-d372-4d62-80c2-29dad6cd38b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20061,a7f5110b-d372-4d62-80c2-29dad6cd38b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20062,77e7cdfb-b9af-4a6a-b4aa-c9db1cb6282a,LIST_ACCOUNTS,hbciListAccounts,false -20063,77e7cdfb-b9af-4a6a-b4aa-c9db1cb6282a,LIST_TRANSACTIONS,hbciListTransactions,false -20064,77e7cdfb-b9af-4a6a-b4aa-c9db1cb6282a,AUTHORIZATION,,false -20065,77e7cdfb-b9af-4a6a-b4aa-c9db1cb6282a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20066,77e7cdfb-b9af-4a6a-b4aa-c9db1cb6282a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20067,77e7cdfb-b9af-4a6a-b4aa-c9db1cb6282a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20062,563ae285-5e78-4f71-940b-56949931f79c,LIST_ACCOUNTS,hbciListAccounts,false +20063,563ae285-5e78-4f71-940b-56949931f79c,LIST_TRANSACTIONS,hbciListTransactions,false +20064,563ae285-5e78-4f71-940b-56949931f79c,AUTHORIZATION,,false +20065,563ae285-5e78-4f71-940b-56949931f79c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20066,563ae285-5e78-4f71-940b-56949931f79c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20067,563ae285-5e78-4f71-940b-56949931f79c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20068,e17d988a-87d5-4858-8f5b-dd1b809e8acc,LIST_ACCOUNTS,xs2aListAccounts,true -20069,e17d988a-87d5-4858-8f5b-dd1b809e8acc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20069,e17d988a-87d5-4858-8f5b-dd1b809e8acc,LIST_TRANSACTIONS,xs2aListTransactions,true 20070,e17d988a-87d5-4858-8f5b-dd1b809e8acc,AUTHORIZATION,,true 20071,e17d988a-87d5-4858-8f5b-dd1b809e8acc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20072,e17d988a-87d5-4858-8f5b-dd1b809e8acc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20073,e17d988a-87d5-4858-8f5b-dd1b809e8acc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20074,1c4daa44-3f99-4dba-b09c-82c51c0c0539,LIST_ACCOUNTS,hbciListAccounts,false -20075,1c4daa44-3f99-4dba-b09c-82c51c0c0539,LIST_TRANSACTIONS,hbciListTransactions,false -20076,1c4daa44-3f99-4dba-b09c-82c51c0c0539,AUTHORIZATION,,false -20077,1c4daa44-3f99-4dba-b09c-82c51c0c0539,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20078,1c4daa44-3f99-4dba-b09c-82c51c0c0539,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20079,1c4daa44-3f99-4dba-b09c-82c51c0c0539,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20074,f0d0f28e-7762-442e-9fea-da69c78b7dd8,LIST_ACCOUNTS,hbciListAccounts,false +20075,f0d0f28e-7762-442e-9fea-da69c78b7dd8,LIST_TRANSACTIONS,hbciListTransactions,false +20076,f0d0f28e-7762-442e-9fea-da69c78b7dd8,AUTHORIZATION,,false +20077,f0d0f28e-7762-442e-9fea-da69c78b7dd8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20078,f0d0f28e-7762-442e-9fea-da69c78b7dd8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20079,f0d0f28e-7762-442e-9fea-da69c78b7dd8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20080,50cd303a-1f79-44d0-8e91-2738f0b5804b,LIST_ACCOUNTS,xs2aListAccounts,true -20081,50cd303a-1f79-44d0-8e91-2738f0b5804b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20081,50cd303a-1f79-44d0-8e91-2738f0b5804b,LIST_TRANSACTIONS,xs2aListTransactions,true 20082,50cd303a-1f79-44d0-8e91-2738f0b5804b,AUTHORIZATION,,true 20083,50cd303a-1f79-44d0-8e91-2738f0b5804b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20084,50cd303a-1f79-44d0-8e91-2738f0b5804b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20085,50cd303a-1f79-44d0-8e91-2738f0b5804b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20086,c0881000-c573-4904-a897-8331ba4f67bb,LIST_ACCOUNTS,hbciListAccounts,false -20087,c0881000-c573-4904-a897-8331ba4f67bb,LIST_TRANSACTIONS,hbciListTransactions,false -20088,c0881000-c573-4904-a897-8331ba4f67bb,AUTHORIZATION,,false -20089,c0881000-c573-4904-a897-8331ba4f67bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20090,c0881000-c573-4904-a897-8331ba4f67bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20091,c0881000-c573-4904-a897-8331ba4f67bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20086,377435cf-42a5-4bb2-8516-82a8cc9d3069,LIST_ACCOUNTS,hbciListAccounts,false +20087,377435cf-42a5-4bb2-8516-82a8cc9d3069,LIST_TRANSACTIONS,hbciListTransactions,false +20088,377435cf-42a5-4bb2-8516-82a8cc9d3069,AUTHORIZATION,,false +20089,377435cf-42a5-4bb2-8516-82a8cc9d3069,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20090,377435cf-42a5-4bb2-8516-82a8cc9d3069,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20091,377435cf-42a5-4bb2-8516-82a8cc9d3069,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20092,6f1f9e3c-80be-4508-9bea-3258ae832f95,LIST_ACCOUNTS,xs2aListAccounts,true -20093,6f1f9e3c-80be-4508-9bea-3258ae832f95,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20093,6f1f9e3c-80be-4508-9bea-3258ae832f95,LIST_TRANSACTIONS,xs2aListTransactions,true 20094,6f1f9e3c-80be-4508-9bea-3258ae832f95,AUTHORIZATION,,true 20095,6f1f9e3c-80be-4508-9bea-3258ae832f95,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20096,6f1f9e3c-80be-4508-9bea-3258ae832f95,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20097,6f1f9e3c-80be-4508-9bea-3258ae832f95,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20098,27208452-7d2d-42c8-aee7-24d9040a7bbc,LIST_ACCOUNTS,hbciListAccounts,false -20099,27208452-7d2d-42c8-aee7-24d9040a7bbc,LIST_TRANSACTIONS,hbciListTransactions,false -20100,27208452-7d2d-42c8-aee7-24d9040a7bbc,AUTHORIZATION,,false -20101,27208452-7d2d-42c8-aee7-24d9040a7bbc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20102,27208452-7d2d-42c8-aee7-24d9040a7bbc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20103,27208452-7d2d-42c8-aee7-24d9040a7bbc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20098,8550a782-8eb6-4337-ac38-6a38cd7a392e,LIST_ACCOUNTS,hbciListAccounts,false +20099,8550a782-8eb6-4337-ac38-6a38cd7a392e,LIST_TRANSACTIONS,hbciListTransactions,false +20100,8550a782-8eb6-4337-ac38-6a38cd7a392e,AUTHORIZATION,,false +20101,8550a782-8eb6-4337-ac38-6a38cd7a392e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20102,8550a782-8eb6-4337-ac38-6a38cd7a392e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20103,8550a782-8eb6-4337-ac38-6a38cd7a392e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20104,c498fc79-58ec-4816-bb9b-296d85c3914f,LIST_ACCOUNTS,xs2aListAccounts,true -20105,c498fc79-58ec-4816-bb9b-296d85c3914f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20105,c498fc79-58ec-4816-bb9b-296d85c3914f,LIST_TRANSACTIONS,xs2aListTransactions,true 20106,c498fc79-58ec-4816-bb9b-296d85c3914f,AUTHORIZATION,,true 20107,c498fc79-58ec-4816-bb9b-296d85c3914f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20108,c498fc79-58ec-4816-bb9b-296d85c3914f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20109,c498fc79-58ec-4816-bb9b-296d85c3914f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20110,18c99954-721b-4721-a058-e836a7eaf005,LIST_ACCOUNTS,hbciListAccounts,false -20111,18c99954-721b-4721-a058-e836a7eaf005,LIST_TRANSACTIONS,hbciListTransactions,false -20112,18c99954-721b-4721-a058-e836a7eaf005,AUTHORIZATION,,false -20113,18c99954-721b-4721-a058-e836a7eaf005,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20114,18c99954-721b-4721-a058-e836a7eaf005,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20115,18c99954-721b-4721-a058-e836a7eaf005,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20110,a5a40ab9-4c65-474d-8339-dba629a2b7a1,LIST_ACCOUNTS,hbciListAccounts,false +20111,a5a40ab9-4c65-474d-8339-dba629a2b7a1,LIST_TRANSACTIONS,hbciListTransactions,false +20112,a5a40ab9-4c65-474d-8339-dba629a2b7a1,AUTHORIZATION,,false +20113,a5a40ab9-4c65-474d-8339-dba629a2b7a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20114,a5a40ab9-4c65-474d-8339-dba629a2b7a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20115,a5a40ab9-4c65-474d-8339-dba629a2b7a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20116,a01ff830-0c83-4900-8ca3-7760da06ee3e,LIST_ACCOUNTS,xs2aListAccounts,true -20117,a01ff830-0c83-4900-8ca3-7760da06ee3e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20117,a01ff830-0c83-4900-8ca3-7760da06ee3e,LIST_TRANSACTIONS,xs2aListTransactions,true 20118,a01ff830-0c83-4900-8ca3-7760da06ee3e,AUTHORIZATION,,true 20119,a01ff830-0c83-4900-8ca3-7760da06ee3e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20120,a01ff830-0c83-4900-8ca3-7760da06ee3e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20121,a01ff830-0c83-4900-8ca3-7760da06ee3e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20122,71406473-9c97-495e-ad33-45a0662c46fa,LIST_ACCOUNTS,hbciListAccounts,false -20123,71406473-9c97-495e-ad33-45a0662c46fa,LIST_TRANSACTIONS,hbciListTransactions,false -20124,71406473-9c97-495e-ad33-45a0662c46fa,AUTHORIZATION,,false -20125,71406473-9c97-495e-ad33-45a0662c46fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20126,71406473-9c97-495e-ad33-45a0662c46fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20127,71406473-9c97-495e-ad33-45a0662c46fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20122,e366a79e-4a53-448a-87a1-c5b955baf14b,LIST_ACCOUNTS,hbciListAccounts,false +20123,e366a79e-4a53-448a-87a1-c5b955baf14b,LIST_TRANSACTIONS,hbciListTransactions,false +20124,e366a79e-4a53-448a-87a1-c5b955baf14b,AUTHORIZATION,,false +20125,e366a79e-4a53-448a-87a1-c5b955baf14b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20126,e366a79e-4a53-448a-87a1-c5b955baf14b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20127,e366a79e-4a53-448a-87a1-c5b955baf14b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20128,b37c5523-09f0-4a2a-87e3-03bc5cc6b81b,LIST_ACCOUNTS,xs2aListAccounts,true -20129,b37c5523-09f0-4a2a-87e3-03bc5cc6b81b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20129,b37c5523-09f0-4a2a-87e3-03bc5cc6b81b,LIST_TRANSACTIONS,xs2aListTransactions,true 20130,b37c5523-09f0-4a2a-87e3-03bc5cc6b81b,AUTHORIZATION,,true 20131,b37c5523-09f0-4a2a-87e3-03bc5cc6b81b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20132,b37c5523-09f0-4a2a-87e3-03bc5cc6b81b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20133,b37c5523-09f0-4a2a-87e3-03bc5cc6b81b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20134,7c0a69a3-23b4-4652-9fa6-61aa38d17174,LIST_ACCOUNTS,hbciListAccounts,false -20135,7c0a69a3-23b4-4652-9fa6-61aa38d17174,LIST_TRANSACTIONS,hbciListTransactions,false -20136,7c0a69a3-23b4-4652-9fa6-61aa38d17174,AUTHORIZATION,,false -20137,7c0a69a3-23b4-4652-9fa6-61aa38d17174,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20138,7c0a69a3-23b4-4652-9fa6-61aa38d17174,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20139,7c0a69a3-23b4-4652-9fa6-61aa38d17174,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20134,aecb95b1-9b3a-4f18-996d-6a868437e601,LIST_ACCOUNTS,hbciListAccounts,false +20135,aecb95b1-9b3a-4f18-996d-6a868437e601,LIST_TRANSACTIONS,hbciListTransactions,false +20136,aecb95b1-9b3a-4f18-996d-6a868437e601,AUTHORIZATION,,false +20137,aecb95b1-9b3a-4f18-996d-6a868437e601,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20138,aecb95b1-9b3a-4f18-996d-6a868437e601,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20139,aecb95b1-9b3a-4f18-996d-6a868437e601,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20140,94f5ffc2-da93-4269-b84d-b914d18b350e,LIST_ACCOUNTS,xs2aListAccounts,true -20141,94f5ffc2-da93-4269-b84d-b914d18b350e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20141,94f5ffc2-da93-4269-b84d-b914d18b350e,LIST_TRANSACTIONS,xs2aListTransactions,true 20142,94f5ffc2-da93-4269-b84d-b914d18b350e,AUTHORIZATION,,true 20143,94f5ffc2-da93-4269-b84d-b914d18b350e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20144,94f5ffc2-da93-4269-b84d-b914d18b350e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20145,94f5ffc2-da93-4269-b84d-b914d18b350e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20146,550ce5b5-27f2-4a06-86ab-f14098ba5ea4,LIST_ACCOUNTS,hbciListAccounts,false -20147,550ce5b5-27f2-4a06-86ab-f14098ba5ea4,LIST_TRANSACTIONS,hbciListTransactions,false -20148,550ce5b5-27f2-4a06-86ab-f14098ba5ea4,AUTHORIZATION,,false -20149,550ce5b5-27f2-4a06-86ab-f14098ba5ea4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20150,550ce5b5-27f2-4a06-86ab-f14098ba5ea4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20151,550ce5b5-27f2-4a06-86ab-f14098ba5ea4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20146,477a028e-96ba-44c9-991d-20a538eabf13,LIST_ACCOUNTS,hbciListAccounts,false +20147,477a028e-96ba-44c9-991d-20a538eabf13,LIST_TRANSACTIONS,hbciListTransactions,false +20148,477a028e-96ba-44c9-991d-20a538eabf13,AUTHORIZATION,,false +20149,477a028e-96ba-44c9-991d-20a538eabf13,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20150,477a028e-96ba-44c9-991d-20a538eabf13,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20151,477a028e-96ba-44c9-991d-20a538eabf13,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20152,b36617ce-f51b-43a8-ab1b-796982bf09fc,LIST_ACCOUNTS,xs2aListAccounts,true -20153,b36617ce-f51b-43a8-ab1b-796982bf09fc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20153,b36617ce-f51b-43a8-ab1b-796982bf09fc,LIST_TRANSACTIONS,xs2aListTransactions,true 20154,b36617ce-f51b-43a8-ab1b-796982bf09fc,AUTHORIZATION,,true 20155,b36617ce-f51b-43a8-ab1b-796982bf09fc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20156,b36617ce-f51b-43a8-ab1b-796982bf09fc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20157,b36617ce-f51b-43a8-ab1b-796982bf09fc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20158,ca7ec36a-b5b5-4f98-98f4-21694803df86,LIST_ACCOUNTS,hbciListAccounts,false -20159,ca7ec36a-b5b5-4f98-98f4-21694803df86,LIST_TRANSACTIONS,hbciListTransactions,false -20160,ca7ec36a-b5b5-4f98-98f4-21694803df86,AUTHORIZATION,,false -20161,ca7ec36a-b5b5-4f98-98f4-21694803df86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20162,ca7ec36a-b5b5-4f98-98f4-21694803df86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20163,ca7ec36a-b5b5-4f98-98f4-21694803df86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20158,fb2e7ed6-83b4-42e5-87cc-c91494fc991d,LIST_ACCOUNTS,hbciListAccounts,false +20159,fb2e7ed6-83b4-42e5-87cc-c91494fc991d,LIST_TRANSACTIONS,hbciListTransactions,false +20160,fb2e7ed6-83b4-42e5-87cc-c91494fc991d,AUTHORIZATION,,false +20161,fb2e7ed6-83b4-42e5-87cc-c91494fc991d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20162,fb2e7ed6-83b4-42e5-87cc-c91494fc991d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20163,fb2e7ed6-83b4-42e5-87cc-c91494fc991d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20164,b79510e4-214d-47a7-88fe-3cca42539e60,LIST_ACCOUNTS,xs2aListAccounts,true -20165,b79510e4-214d-47a7-88fe-3cca42539e60,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20165,b79510e4-214d-47a7-88fe-3cca42539e60,LIST_TRANSACTIONS,xs2aListTransactions,true 20166,b79510e4-214d-47a7-88fe-3cca42539e60,AUTHORIZATION,,true 20167,b79510e4-214d-47a7-88fe-3cca42539e60,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20168,b79510e4-214d-47a7-88fe-3cca42539e60,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20169,b79510e4-214d-47a7-88fe-3cca42539e60,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20170,022aef9f-0abb-425e-b496-a797b4975b4c,LIST_ACCOUNTS,hbciListAccounts,false -20171,022aef9f-0abb-425e-b496-a797b4975b4c,LIST_TRANSACTIONS,hbciListTransactions,false -20172,022aef9f-0abb-425e-b496-a797b4975b4c,AUTHORIZATION,,false -20173,022aef9f-0abb-425e-b496-a797b4975b4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20174,022aef9f-0abb-425e-b496-a797b4975b4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20175,022aef9f-0abb-425e-b496-a797b4975b4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20170,1a66c276-7b07-42e3-87a6-68a28985c9fc,LIST_ACCOUNTS,hbciListAccounts,false +20171,1a66c276-7b07-42e3-87a6-68a28985c9fc,LIST_TRANSACTIONS,hbciListTransactions,false +20172,1a66c276-7b07-42e3-87a6-68a28985c9fc,AUTHORIZATION,,false +20173,1a66c276-7b07-42e3-87a6-68a28985c9fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20174,1a66c276-7b07-42e3-87a6-68a28985c9fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20175,1a66c276-7b07-42e3-87a6-68a28985c9fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20176,998fb1ee-a75f-416c-a41c-19a41ee270be,LIST_ACCOUNTS,xs2aListAccounts,true -20177,998fb1ee-a75f-416c-a41c-19a41ee270be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20177,998fb1ee-a75f-416c-a41c-19a41ee270be,LIST_TRANSACTIONS,xs2aListTransactions,true 20178,998fb1ee-a75f-416c-a41c-19a41ee270be,AUTHORIZATION,,true 20179,998fb1ee-a75f-416c-a41c-19a41ee270be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20180,998fb1ee-a75f-416c-a41c-19a41ee270be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20181,998fb1ee-a75f-416c-a41c-19a41ee270be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20182,931a36c5-91d8-4d88-b790-8b6c8c8487fb,LIST_ACCOUNTS,hbciListAccounts,false -20183,931a36c5-91d8-4d88-b790-8b6c8c8487fb,LIST_TRANSACTIONS,hbciListTransactions,false -20184,931a36c5-91d8-4d88-b790-8b6c8c8487fb,AUTHORIZATION,,false -20185,931a36c5-91d8-4d88-b790-8b6c8c8487fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20186,931a36c5-91d8-4d88-b790-8b6c8c8487fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20187,931a36c5-91d8-4d88-b790-8b6c8c8487fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20182,b547611a-189c-4a23-9c20-ee9e7e3bc93f,LIST_ACCOUNTS,hbciListAccounts,false +20183,b547611a-189c-4a23-9c20-ee9e7e3bc93f,LIST_TRANSACTIONS,hbciListTransactions,false +20184,b547611a-189c-4a23-9c20-ee9e7e3bc93f,AUTHORIZATION,,false +20185,b547611a-189c-4a23-9c20-ee9e7e3bc93f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20186,b547611a-189c-4a23-9c20-ee9e7e3bc93f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20187,b547611a-189c-4a23-9c20-ee9e7e3bc93f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20188,f240f5f6-58d3-4214-8c63-505a2d060f6a,LIST_ACCOUNTS,xs2aListAccounts,true -20189,f240f5f6-58d3-4214-8c63-505a2d060f6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20189,f240f5f6-58d3-4214-8c63-505a2d060f6a,LIST_TRANSACTIONS,xs2aListTransactions,true 20190,f240f5f6-58d3-4214-8c63-505a2d060f6a,AUTHORIZATION,,true 20191,f240f5f6-58d3-4214-8c63-505a2d060f6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20192,f240f5f6-58d3-4214-8c63-505a2d060f6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20193,f240f5f6-58d3-4214-8c63-505a2d060f6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20194,e6fc780c-a16e-4077-a342-7d288468d6b7,LIST_ACCOUNTS,hbciListAccounts,false -20195,e6fc780c-a16e-4077-a342-7d288468d6b7,LIST_TRANSACTIONS,hbciListTransactions,false -20196,e6fc780c-a16e-4077-a342-7d288468d6b7,AUTHORIZATION,,false -20197,e6fc780c-a16e-4077-a342-7d288468d6b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20198,e6fc780c-a16e-4077-a342-7d288468d6b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20199,e6fc780c-a16e-4077-a342-7d288468d6b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20194,6e7bf2f0-1f81-4f65-a0f1-0353ad744e3c,LIST_ACCOUNTS,hbciListAccounts,false +20195,6e7bf2f0-1f81-4f65-a0f1-0353ad744e3c,LIST_TRANSACTIONS,hbciListTransactions,false +20196,6e7bf2f0-1f81-4f65-a0f1-0353ad744e3c,AUTHORIZATION,,false +20197,6e7bf2f0-1f81-4f65-a0f1-0353ad744e3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20198,6e7bf2f0-1f81-4f65-a0f1-0353ad744e3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20199,6e7bf2f0-1f81-4f65-a0f1-0353ad744e3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20200,a254bb9c-6bbe-4792-b41b-1b1edbe069b4,LIST_ACCOUNTS,xs2aListAccounts,true -20201,a254bb9c-6bbe-4792-b41b-1b1edbe069b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20201,a254bb9c-6bbe-4792-b41b-1b1edbe069b4,LIST_TRANSACTIONS,xs2aListTransactions,true 20202,a254bb9c-6bbe-4792-b41b-1b1edbe069b4,AUTHORIZATION,,true 20203,a254bb9c-6bbe-4792-b41b-1b1edbe069b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20204,a254bb9c-6bbe-4792-b41b-1b1edbe069b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20205,a254bb9c-6bbe-4792-b41b-1b1edbe069b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20206,75606f08-b3b8-4acb-b3b1-16e506900163,LIST_ACCOUNTS,hbciListAccounts,false -20207,75606f08-b3b8-4acb-b3b1-16e506900163,LIST_TRANSACTIONS,hbciListTransactions,false -20208,75606f08-b3b8-4acb-b3b1-16e506900163,AUTHORIZATION,,false -20209,75606f08-b3b8-4acb-b3b1-16e506900163,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20210,75606f08-b3b8-4acb-b3b1-16e506900163,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20211,75606f08-b3b8-4acb-b3b1-16e506900163,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20206,0a3c64d8-341c-4214-a0fa-93f609c7d7ee,LIST_ACCOUNTS,hbciListAccounts,false +20207,0a3c64d8-341c-4214-a0fa-93f609c7d7ee,LIST_TRANSACTIONS,hbciListTransactions,false +20208,0a3c64d8-341c-4214-a0fa-93f609c7d7ee,AUTHORIZATION,,false +20209,0a3c64d8-341c-4214-a0fa-93f609c7d7ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20210,0a3c64d8-341c-4214-a0fa-93f609c7d7ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20211,0a3c64d8-341c-4214-a0fa-93f609c7d7ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20212,3c928805-d397-415d-8662-1367c8491388,LIST_ACCOUNTS,xs2aListAccounts,true -20213,3c928805-d397-415d-8662-1367c8491388,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20213,3c928805-d397-415d-8662-1367c8491388,LIST_TRANSACTIONS,xs2aListTransactions,true 20214,3c928805-d397-415d-8662-1367c8491388,AUTHORIZATION,,true 20215,3c928805-d397-415d-8662-1367c8491388,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20216,3c928805-d397-415d-8662-1367c8491388,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20217,3c928805-d397-415d-8662-1367c8491388,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20218,a227633b-79eb-4969-83b1-0313a73a1bdd,LIST_ACCOUNTS,hbciListAccounts,false -20219,a227633b-79eb-4969-83b1-0313a73a1bdd,LIST_TRANSACTIONS,hbciListTransactions,false -20220,a227633b-79eb-4969-83b1-0313a73a1bdd,AUTHORIZATION,,false -20221,a227633b-79eb-4969-83b1-0313a73a1bdd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20222,a227633b-79eb-4969-83b1-0313a73a1bdd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20223,a227633b-79eb-4969-83b1-0313a73a1bdd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20218,0f7b4bd3-5249-4bf6-9bc5-620b4c601019,LIST_ACCOUNTS,hbciListAccounts,false +20219,0f7b4bd3-5249-4bf6-9bc5-620b4c601019,LIST_TRANSACTIONS,hbciListTransactions,false +20220,0f7b4bd3-5249-4bf6-9bc5-620b4c601019,AUTHORIZATION,,false +20221,0f7b4bd3-5249-4bf6-9bc5-620b4c601019,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20222,0f7b4bd3-5249-4bf6-9bc5-620b4c601019,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20223,0f7b4bd3-5249-4bf6-9bc5-620b4c601019,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20224,41cb647b-7a2f-461f-8547-ca2e1ef13a14,LIST_ACCOUNTS,xs2aListAccounts,true -20225,41cb647b-7a2f-461f-8547-ca2e1ef13a14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20225,41cb647b-7a2f-461f-8547-ca2e1ef13a14,LIST_TRANSACTIONS,xs2aListTransactions,true 20226,41cb647b-7a2f-461f-8547-ca2e1ef13a14,AUTHORIZATION,,true 20227,41cb647b-7a2f-461f-8547-ca2e1ef13a14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20228,41cb647b-7a2f-461f-8547-ca2e1ef13a14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20229,41cb647b-7a2f-461f-8547-ca2e1ef13a14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20230,ea806a0f-d5ee-4b8c-8d43-1d7b3f6049f6,LIST_ACCOUNTS,hbciListAccounts,false -20231,ea806a0f-d5ee-4b8c-8d43-1d7b3f6049f6,LIST_TRANSACTIONS,hbciListTransactions,false -20232,ea806a0f-d5ee-4b8c-8d43-1d7b3f6049f6,AUTHORIZATION,,false -20233,ea806a0f-d5ee-4b8c-8d43-1d7b3f6049f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20234,ea806a0f-d5ee-4b8c-8d43-1d7b3f6049f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20235,ea806a0f-d5ee-4b8c-8d43-1d7b3f6049f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20230,bd99647d-f72f-411e-8049-61e2c1578f51,LIST_ACCOUNTS,hbciListAccounts,false +20231,bd99647d-f72f-411e-8049-61e2c1578f51,LIST_TRANSACTIONS,hbciListTransactions,false +20232,bd99647d-f72f-411e-8049-61e2c1578f51,AUTHORIZATION,,false +20233,bd99647d-f72f-411e-8049-61e2c1578f51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20234,bd99647d-f72f-411e-8049-61e2c1578f51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20235,bd99647d-f72f-411e-8049-61e2c1578f51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20236,f0e82998-1859-4e65-b333-902601951dd0,LIST_ACCOUNTS,xs2aListAccounts,true -20237,f0e82998-1859-4e65-b333-902601951dd0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20237,f0e82998-1859-4e65-b333-902601951dd0,LIST_TRANSACTIONS,xs2aListTransactions,true 20238,f0e82998-1859-4e65-b333-902601951dd0,AUTHORIZATION,,true 20239,f0e82998-1859-4e65-b333-902601951dd0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20240,f0e82998-1859-4e65-b333-902601951dd0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20241,f0e82998-1859-4e65-b333-902601951dd0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20242,13f52d35-3138-477c-a5a6-5818aa4c0b65,LIST_ACCOUNTS,hbciListAccounts,false -20243,13f52d35-3138-477c-a5a6-5818aa4c0b65,LIST_TRANSACTIONS,hbciListTransactions,false -20244,13f52d35-3138-477c-a5a6-5818aa4c0b65,AUTHORIZATION,,false -20245,13f52d35-3138-477c-a5a6-5818aa4c0b65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20246,13f52d35-3138-477c-a5a6-5818aa4c0b65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20247,13f52d35-3138-477c-a5a6-5818aa4c0b65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20242,de18ca29-247c-4bd3-babb-d88f52d892fb,LIST_ACCOUNTS,hbciListAccounts,false +20243,de18ca29-247c-4bd3-babb-d88f52d892fb,LIST_TRANSACTIONS,hbciListTransactions,false +20244,de18ca29-247c-4bd3-babb-d88f52d892fb,AUTHORIZATION,,false +20245,de18ca29-247c-4bd3-babb-d88f52d892fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20246,de18ca29-247c-4bd3-babb-d88f52d892fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20247,de18ca29-247c-4bd3-babb-d88f52d892fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20248,5f4414a1-f4c3-4d66-97cb-0088c3f53621,LIST_ACCOUNTS,xs2aListAccounts,true -20249,5f4414a1-f4c3-4d66-97cb-0088c3f53621,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20249,5f4414a1-f4c3-4d66-97cb-0088c3f53621,LIST_TRANSACTIONS,xs2aListTransactions,true 20250,5f4414a1-f4c3-4d66-97cb-0088c3f53621,AUTHORIZATION,,true 20251,5f4414a1-f4c3-4d66-97cb-0088c3f53621,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20252,5f4414a1-f4c3-4d66-97cb-0088c3f53621,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20253,5f4414a1-f4c3-4d66-97cb-0088c3f53621,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20254,9bac6b42-4405-4bd4-b9ac-cd701f0ffafd,LIST_ACCOUNTS,hbciListAccounts,false -20255,9bac6b42-4405-4bd4-b9ac-cd701f0ffafd,LIST_TRANSACTIONS,hbciListTransactions,false -20256,9bac6b42-4405-4bd4-b9ac-cd701f0ffafd,AUTHORIZATION,,false -20257,9bac6b42-4405-4bd4-b9ac-cd701f0ffafd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20258,9bac6b42-4405-4bd4-b9ac-cd701f0ffafd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20259,9bac6b42-4405-4bd4-b9ac-cd701f0ffafd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20254,c532a4c4-426e-4c2e-8b6c-d0ca27a1b3a5,LIST_ACCOUNTS,hbciListAccounts,false +20255,c532a4c4-426e-4c2e-8b6c-d0ca27a1b3a5,LIST_TRANSACTIONS,hbciListTransactions,false +20256,c532a4c4-426e-4c2e-8b6c-d0ca27a1b3a5,AUTHORIZATION,,false +20257,c532a4c4-426e-4c2e-8b6c-d0ca27a1b3a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20258,c532a4c4-426e-4c2e-8b6c-d0ca27a1b3a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20259,c532a4c4-426e-4c2e-8b6c-d0ca27a1b3a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20260,5c7bf938-a82f-4d01-9fcf-90cc8d723d6e,LIST_ACCOUNTS,xs2aListAccounts,true -20261,5c7bf938-a82f-4d01-9fcf-90cc8d723d6e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20261,5c7bf938-a82f-4d01-9fcf-90cc8d723d6e,LIST_TRANSACTIONS,xs2aListTransactions,true 20262,5c7bf938-a82f-4d01-9fcf-90cc8d723d6e,AUTHORIZATION,,true 20263,5c7bf938-a82f-4d01-9fcf-90cc8d723d6e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20264,5c7bf938-a82f-4d01-9fcf-90cc8d723d6e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20265,5c7bf938-a82f-4d01-9fcf-90cc8d723d6e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20266,6ecddd62-1088-4281-83f9-5ac8fe88704e,LIST_ACCOUNTS,hbciListAccounts,false -20267,6ecddd62-1088-4281-83f9-5ac8fe88704e,LIST_TRANSACTIONS,hbciListTransactions,false -20268,6ecddd62-1088-4281-83f9-5ac8fe88704e,AUTHORIZATION,,false -20269,6ecddd62-1088-4281-83f9-5ac8fe88704e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20270,6ecddd62-1088-4281-83f9-5ac8fe88704e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20271,6ecddd62-1088-4281-83f9-5ac8fe88704e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20266,bd177f45-a16b-4d0c-83a4-3877c93bcfa9,LIST_ACCOUNTS,hbciListAccounts,false +20267,bd177f45-a16b-4d0c-83a4-3877c93bcfa9,LIST_TRANSACTIONS,hbciListTransactions,false +20268,bd177f45-a16b-4d0c-83a4-3877c93bcfa9,AUTHORIZATION,,false +20269,bd177f45-a16b-4d0c-83a4-3877c93bcfa9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20270,bd177f45-a16b-4d0c-83a4-3877c93bcfa9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20271,bd177f45-a16b-4d0c-83a4-3877c93bcfa9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20272,0db713b6-2875-4d27-b902-a6670d3711d5,LIST_ACCOUNTS,xs2aListAccounts,true -20273,0db713b6-2875-4d27-b902-a6670d3711d5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20273,0db713b6-2875-4d27-b902-a6670d3711d5,LIST_TRANSACTIONS,xs2aListTransactions,true 20274,0db713b6-2875-4d27-b902-a6670d3711d5,AUTHORIZATION,,true 20275,0db713b6-2875-4d27-b902-a6670d3711d5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20276,0db713b6-2875-4d27-b902-a6670d3711d5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20277,0db713b6-2875-4d27-b902-a6670d3711d5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20278,3a643f56-2905-49e4-8f29-215a7b76a6ef,LIST_ACCOUNTS,hbciListAccounts,false -20279,3a643f56-2905-49e4-8f29-215a7b76a6ef,LIST_TRANSACTIONS,hbciListTransactions,false -20280,3a643f56-2905-49e4-8f29-215a7b76a6ef,AUTHORIZATION,,false -20281,3a643f56-2905-49e4-8f29-215a7b76a6ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20282,3a643f56-2905-49e4-8f29-215a7b76a6ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20283,3a643f56-2905-49e4-8f29-215a7b76a6ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20278,06f91480-fe6c-4d94-a2c9-f6c1c270c206,LIST_ACCOUNTS,hbciListAccounts,false +20279,06f91480-fe6c-4d94-a2c9-f6c1c270c206,LIST_TRANSACTIONS,hbciListTransactions,false +20280,06f91480-fe6c-4d94-a2c9-f6c1c270c206,AUTHORIZATION,,false +20281,06f91480-fe6c-4d94-a2c9-f6c1c270c206,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20282,06f91480-fe6c-4d94-a2c9-f6c1c270c206,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20283,06f91480-fe6c-4d94-a2c9-f6c1c270c206,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20284,8c71e104-2cc3-4495-b99e-baa8b8893082,LIST_ACCOUNTS,xs2aListAccounts,true -20285,8c71e104-2cc3-4495-b99e-baa8b8893082,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20285,8c71e104-2cc3-4495-b99e-baa8b8893082,LIST_TRANSACTIONS,xs2aListTransactions,true 20286,8c71e104-2cc3-4495-b99e-baa8b8893082,AUTHORIZATION,,true 20287,8c71e104-2cc3-4495-b99e-baa8b8893082,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20288,8c71e104-2cc3-4495-b99e-baa8b8893082,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20289,8c71e104-2cc3-4495-b99e-baa8b8893082,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20290,bb631081-d561-47ff-92be-0c3876f42fa8,LIST_ACCOUNTS,hbciListAccounts,false -20291,bb631081-d561-47ff-92be-0c3876f42fa8,LIST_TRANSACTIONS,hbciListTransactions,false -20292,bb631081-d561-47ff-92be-0c3876f42fa8,AUTHORIZATION,,false -20293,bb631081-d561-47ff-92be-0c3876f42fa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20294,bb631081-d561-47ff-92be-0c3876f42fa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20295,bb631081-d561-47ff-92be-0c3876f42fa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20290,3cee0dcc-61db-4493-a5fc-17da37ef9a5f,LIST_ACCOUNTS,hbciListAccounts,false +20291,3cee0dcc-61db-4493-a5fc-17da37ef9a5f,LIST_TRANSACTIONS,hbciListTransactions,false +20292,3cee0dcc-61db-4493-a5fc-17da37ef9a5f,AUTHORIZATION,,false +20293,3cee0dcc-61db-4493-a5fc-17da37ef9a5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20294,3cee0dcc-61db-4493-a5fc-17da37ef9a5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20295,3cee0dcc-61db-4493-a5fc-17da37ef9a5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20296,dd5072d1-e0c1-4481-98d5-c9d724b338a5,LIST_ACCOUNTS,xs2aListAccounts,true -20297,dd5072d1-e0c1-4481-98d5-c9d724b338a5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20297,dd5072d1-e0c1-4481-98d5-c9d724b338a5,LIST_TRANSACTIONS,xs2aListTransactions,true 20298,dd5072d1-e0c1-4481-98d5-c9d724b338a5,AUTHORIZATION,,true 20299,dd5072d1-e0c1-4481-98d5-c9d724b338a5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20300,dd5072d1-e0c1-4481-98d5-c9d724b338a5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20301,dd5072d1-e0c1-4481-98d5-c9d724b338a5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20302,92c61034-09c8-4f3b-a8ac-e0c8b079e34d,LIST_ACCOUNTS,hbciListAccounts,false -20303,92c61034-09c8-4f3b-a8ac-e0c8b079e34d,LIST_TRANSACTIONS,hbciListTransactions,false -20304,92c61034-09c8-4f3b-a8ac-e0c8b079e34d,AUTHORIZATION,,false -20305,92c61034-09c8-4f3b-a8ac-e0c8b079e34d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20306,92c61034-09c8-4f3b-a8ac-e0c8b079e34d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20307,92c61034-09c8-4f3b-a8ac-e0c8b079e34d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20302,a4d3cde3-6728-408b-ac6a-4e3de3ac4d9c,LIST_ACCOUNTS,hbciListAccounts,false +20303,a4d3cde3-6728-408b-ac6a-4e3de3ac4d9c,LIST_TRANSACTIONS,hbciListTransactions,false +20304,a4d3cde3-6728-408b-ac6a-4e3de3ac4d9c,AUTHORIZATION,,false +20305,a4d3cde3-6728-408b-ac6a-4e3de3ac4d9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20306,a4d3cde3-6728-408b-ac6a-4e3de3ac4d9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20307,a4d3cde3-6728-408b-ac6a-4e3de3ac4d9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20308,a8ceb05d-3b49-44fb-bdb1-65b1b6e42cf3,LIST_ACCOUNTS,xs2aListAccounts,true -20309,a8ceb05d-3b49-44fb-bdb1-65b1b6e42cf3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20309,a8ceb05d-3b49-44fb-bdb1-65b1b6e42cf3,LIST_TRANSACTIONS,xs2aListTransactions,true 20310,a8ceb05d-3b49-44fb-bdb1-65b1b6e42cf3,AUTHORIZATION,,true 20311,a8ceb05d-3b49-44fb-bdb1-65b1b6e42cf3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20312,a8ceb05d-3b49-44fb-bdb1-65b1b6e42cf3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20313,a8ceb05d-3b49-44fb-bdb1-65b1b6e42cf3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20314,dc70cad9-0284-421d-87fc-24c6316b6395,LIST_ACCOUNTS,hbciListAccounts,false -20315,dc70cad9-0284-421d-87fc-24c6316b6395,LIST_TRANSACTIONS,hbciListTransactions,false -20316,dc70cad9-0284-421d-87fc-24c6316b6395,AUTHORIZATION,,false -20317,dc70cad9-0284-421d-87fc-24c6316b6395,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20318,dc70cad9-0284-421d-87fc-24c6316b6395,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20319,dc70cad9-0284-421d-87fc-24c6316b6395,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20314,ef7223b5-7a57-4052-a865-153a3defc86b,LIST_ACCOUNTS,hbciListAccounts,false +20315,ef7223b5-7a57-4052-a865-153a3defc86b,LIST_TRANSACTIONS,hbciListTransactions,false +20316,ef7223b5-7a57-4052-a865-153a3defc86b,AUTHORIZATION,,false +20317,ef7223b5-7a57-4052-a865-153a3defc86b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20318,ef7223b5-7a57-4052-a865-153a3defc86b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20319,ef7223b5-7a57-4052-a865-153a3defc86b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20320,eab3ceab-1da8-4123-922a-05a32519968c,LIST_ACCOUNTS,xs2aListAccounts,true -20321,eab3ceab-1da8-4123-922a-05a32519968c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20321,eab3ceab-1da8-4123-922a-05a32519968c,LIST_TRANSACTIONS,xs2aListTransactions,true 20322,eab3ceab-1da8-4123-922a-05a32519968c,AUTHORIZATION,,true 20323,eab3ceab-1da8-4123-922a-05a32519968c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20324,eab3ceab-1da8-4123-922a-05a32519968c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20325,eab3ceab-1da8-4123-922a-05a32519968c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20326,febb850a-6db6-4a3a-b562-2ffedf0763c0,LIST_ACCOUNTS,hbciListAccounts,false -20327,febb850a-6db6-4a3a-b562-2ffedf0763c0,LIST_TRANSACTIONS,hbciListTransactions,false -20328,febb850a-6db6-4a3a-b562-2ffedf0763c0,AUTHORIZATION,,false -20329,febb850a-6db6-4a3a-b562-2ffedf0763c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20330,febb850a-6db6-4a3a-b562-2ffedf0763c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20331,febb850a-6db6-4a3a-b562-2ffedf0763c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20326,784536f8-acc9-4b85-902a-f6c41aa022af,LIST_ACCOUNTS,hbciListAccounts,false +20327,784536f8-acc9-4b85-902a-f6c41aa022af,LIST_TRANSACTIONS,hbciListTransactions,false +20328,784536f8-acc9-4b85-902a-f6c41aa022af,AUTHORIZATION,,false +20329,784536f8-acc9-4b85-902a-f6c41aa022af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20330,784536f8-acc9-4b85-902a-f6c41aa022af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20331,784536f8-acc9-4b85-902a-f6c41aa022af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20332,3267286d-5706-4028-b8c3-e8b16dd308b9,LIST_ACCOUNTS,xs2aListAccounts,true -20333,3267286d-5706-4028-b8c3-e8b16dd308b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20333,3267286d-5706-4028-b8c3-e8b16dd308b9,LIST_TRANSACTIONS,xs2aListTransactions,true 20334,3267286d-5706-4028-b8c3-e8b16dd308b9,AUTHORIZATION,,true 20335,3267286d-5706-4028-b8c3-e8b16dd308b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20336,3267286d-5706-4028-b8c3-e8b16dd308b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20337,3267286d-5706-4028-b8c3-e8b16dd308b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20338,eb35eb93-f960-4982-87e9-930e1856ce53,LIST_ACCOUNTS,hbciListAccounts,false -20339,eb35eb93-f960-4982-87e9-930e1856ce53,LIST_TRANSACTIONS,hbciListTransactions,false -20340,eb35eb93-f960-4982-87e9-930e1856ce53,AUTHORIZATION,,false -20341,eb35eb93-f960-4982-87e9-930e1856ce53,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20342,eb35eb93-f960-4982-87e9-930e1856ce53,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20343,eb35eb93-f960-4982-87e9-930e1856ce53,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20338,99bbe22f-b1d3-43fe-b943-2ab3e77f0006,LIST_ACCOUNTS,hbciListAccounts,false +20339,99bbe22f-b1d3-43fe-b943-2ab3e77f0006,LIST_TRANSACTIONS,hbciListTransactions,false +20340,99bbe22f-b1d3-43fe-b943-2ab3e77f0006,AUTHORIZATION,,false +20341,99bbe22f-b1d3-43fe-b943-2ab3e77f0006,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20342,99bbe22f-b1d3-43fe-b943-2ab3e77f0006,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20343,99bbe22f-b1d3-43fe-b943-2ab3e77f0006,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20344,62d6a2c8-d4f0-4de7-b42c-38ca255f4521,LIST_ACCOUNTS,xs2aListAccounts,true -20345,62d6a2c8-d4f0-4de7-b42c-38ca255f4521,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20345,62d6a2c8-d4f0-4de7-b42c-38ca255f4521,LIST_TRANSACTIONS,xs2aListTransactions,true 20346,62d6a2c8-d4f0-4de7-b42c-38ca255f4521,AUTHORIZATION,,true 20347,62d6a2c8-d4f0-4de7-b42c-38ca255f4521,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20348,62d6a2c8-d4f0-4de7-b42c-38ca255f4521,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20349,62d6a2c8-d4f0-4de7-b42c-38ca255f4521,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20350,a68b0b4a-f063-46a5-a0e9-9f81998ea9dc,LIST_ACCOUNTS,hbciListAccounts,false -20351,a68b0b4a-f063-46a5-a0e9-9f81998ea9dc,LIST_TRANSACTIONS,hbciListTransactions,false -20352,a68b0b4a-f063-46a5-a0e9-9f81998ea9dc,AUTHORIZATION,,false -20353,a68b0b4a-f063-46a5-a0e9-9f81998ea9dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20354,a68b0b4a-f063-46a5-a0e9-9f81998ea9dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20355,a68b0b4a-f063-46a5-a0e9-9f81998ea9dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20350,85be954b-7b92-4994-bf78-ef00be0d39fa,LIST_ACCOUNTS,hbciListAccounts,false +20351,85be954b-7b92-4994-bf78-ef00be0d39fa,LIST_TRANSACTIONS,hbciListTransactions,false +20352,85be954b-7b92-4994-bf78-ef00be0d39fa,AUTHORIZATION,,false +20353,85be954b-7b92-4994-bf78-ef00be0d39fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20354,85be954b-7b92-4994-bf78-ef00be0d39fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20355,85be954b-7b92-4994-bf78-ef00be0d39fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20356,55177359-fc5c-4be7-9f09-38258bdac2e2,LIST_ACCOUNTS,xs2aListAccounts,true -20357,55177359-fc5c-4be7-9f09-38258bdac2e2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20357,55177359-fc5c-4be7-9f09-38258bdac2e2,LIST_TRANSACTIONS,xs2aListTransactions,true 20358,55177359-fc5c-4be7-9f09-38258bdac2e2,AUTHORIZATION,,true 20359,55177359-fc5c-4be7-9f09-38258bdac2e2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20360,55177359-fc5c-4be7-9f09-38258bdac2e2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20361,55177359-fc5c-4be7-9f09-38258bdac2e2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20362,7a2f848d-02a4-4389-9acd-d0bfc721a31d,LIST_ACCOUNTS,hbciListAccounts,false -20363,7a2f848d-02a4-4389-9acd-d0bfc721a31d,LIST_TRANSACTIONS,hbciListTransactions,false -20364,7a2f848d-02a4-4389-9acd-d0bfc721a31d,AUTHORIZATION,,false -20365,7a2f848d-02a4-4389-9acd-d0bfc721a31d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20366,7a2f848d-02a4-4389-9acd-d0bfc721a31d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20367,7a2f848d-02a4-4389-9acd-d0bfc721a31d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20362,a5c7544e-dd09-4c10-b2de-586c965bf3ac,LIST_ACCOUNTS,hbciListAccounts,false +20363,a5c7544e-dd09-4c10-b2de-586c965bf3ac,LIST_TRANSACTIONS,hbciListTransactions,false +20364,a5c7544e-dd09-4c10-b2de-586c965bf3ac,AUTHORIZATION,,false +20365,a5c7544e-dd09-4c10-b2de-586c965bf3ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20366,a5c7544e-dd09-4c10-b2de-586c965bf3ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20367,a5c7544e-dd09-4c10-b2de-586c965bf3ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20368,dc186a8a-f0c5-43c9-9125-601fed36342f,LIST_ACCOUNTS,xs2aListAccounts,true -20369,dc186a8a-f0c5-43c9-9125-601fed36342f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20369,dc186a8a-f0c5-43c9-9125-601fed36342f,LIST_TRANSACTIONS,xs2aListTransactions,true 20370,dc186a8a-f0c5-43c9-9125-601fed36342f,AUTHORIZATION,,true 20371,dc186a8a-f0c5-43c9-9125-601fed36342f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20372,dc186a8a-f0c5-43c9-9125-601fed36342f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20373,dc186a8a-f0c5-43c9-9125-601fed36342f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20374,f4896fd8-c375-4489-a576-deeb6f63c24c,LIST_ACCOUNTS,hbciListAccounts,false -20375,f4896fd8-c375-4489-a576-deeb6f63c24c,LIST_TRANSACTIONS,hbciListTransactions,false -20376,f4896fd8-c375-4489-a576-deeb6f63c24c,AUTHORIZATION,,false -20377,f4896fd8-c375-4489-a576-deeb6f63c24c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20378,f4896fd8-c375-4489-a576-deeb6f63c24c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20379,f4896fd8-c375-4489-a576-deeb6f63c24c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20374,f41cf7dd-2b27-4a6f-a44d-3b6689ae57cb,LIST_ACCOUNTS,hbciListAccounts,false +20375,f41cf7dd-2b27-4a6f-a44d-3b6689ae57cb,LIST_TRANSACTIONS,hbciListTransactions,false +20376,f41cf7dd-2b27-4a6f-a44d-3b6689ae57cb,AUTHORIZATION,,false +20377,f41cf7dd-2b27-4a6f-a44d-3b6689ae57cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20378,f41cf7dd-2b27-4a6f-a44d-3b6689ae57cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20379,f41cf7dd-2b27-4a6f-a44d-3b6689ae57cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20380,0bffb0ca-a6e7-426b-ae1d-1a0eb939d752,LIST_ACCOUNTS,xs2aListAccounts,true -20381,0bffb0ca-a6e7-426b-ae1d-1a0eb939d752,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20381,0bffb0ca-a6e7-426b-ae1d-1a0eb939d752,LIST_TRANSACTIONS,xs2aListTransactions,true 20382,0bffb0ca-a6e7-426b-ae1d-1a0eb939d752,AUTHORIZATION,,true 20383,0bffb0ca-a6e7-426b-ae1d-1a0eb939d752,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20384,0bffb0ca-a6e7-426b-ae1d-1a0eb939d752,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20385,0bffb0ca-a6e7-426b-ae1d-1a0eb939d752,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20386,3df1da04-2a9e-4ba1-b098-bdc65c8afecc,LIST_ACCOUNTS,hbciListAccounts,false -20387,3df1da04-2a9e-4ba1-b098-bdc65c8afecc,LIST_TRANSACTIONS,hbciListTransactions,false -20388,3df1da04-2a9e-4ba1-b098-bdc65c8afecc,AUTHORIZATION,,false -20389,3df1da04-2a9e-4ba1-b098-bdc65c8afecc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20390,3df1da04-2a9e-4ba1-b098-bdc65c8afecc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20391,3df1da04-2a9e-4ba1-b098-bdc65c8afecc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20386,f6ef81f6-2ea8-49dd-9376-cfb6a2e9f02e,LIST_ACCOUNTS,hbciListAccounts,false +20387,f6ef81f6-2ea8-49dd-9376-cfb6a2e9f02e,LIST_TRANSACTIONS,hbciListTransactions,false +20388,f6ef81f6-2ea8-49dd-9376-cfb6a2e9f02e,AUTHORIZATION,,false +20389,f6ef81f6-2ea8-49dd-9376-cfb6a2e9f02e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20390,f6ef81f6-2ea8-49dd-9376-cfb6a2e9f02e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20391,f6ef81f6-2ea8-49dd-9376-cfb6a2e9f02e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20392,b58a697f-0595-4ea0-817a-0029dd00996d,LIST_ACCOUNTS,xs2aListAccounts,true -20393,b58a697f-0595-4ea0-817a-0029dd00996d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20393,b58a697f-0595-4ea0-817a-0029dd00996d,LIST_TRANSACTIONS,xs2aListTransactions,true 20394,b58a697f-0595-4ea0-817a-0029dd00996d,AUTHORIZATION,,true 20395,b58a697f-0595-4ea0-817a-0029dd00996d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20396,b58a697f-0595-4ea0-817a-0029dd00996d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20397,b58a697f-0595-4ea0-817a-0029dd00996d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20398,95540a70-2092-43ca-92c8-b8f9be5f33cd,LIST_ACCOUNTS,hbciListAccounts,false -20399,95540a70-2092-43ca-92c8-b8f9be5f33cd,LIST_TRANSACTIONS,hbciListTransactions,false -20400,95540a70-2092-43ca-92c8-b8f9be5f33cd,AUTHORIZATION,,false -20401,95540a70-2092-43ca-92c8-b8f9be5f33cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20402,95540a70-2092-43ca-92c8-b8f9be5f33cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20403,95540a70-2092-43ca-92c8-b8f9be5f33cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20398,5ee60a37-8fd8-462f-87a5-1007b1ea7deb,LIST_ACCOUNTS,hbciListAccounts,false +20399,5ee60a37-8fd8-462f-87a5-1007b1ea7deb,LIST_TRANSACTIONS,hbciListTransactions,false +20400,5ee60a37-8fd8-462f-87a5-1007b1ea7deb,AUTHORIZATION,,false +20401,5ee60a37-8fd8-462f-87a5-1007b1ea7deb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20402,5ee60a37-8fd8-462f-87a5-1007b1ea7deb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20403,5ee60a37-8fd8-462f-87a5-1007b1ea7deb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20404,e8e498cf-b469-4322-80de-3d4c6accda5c,LIST_ACCOUNTS,xs2aListAccounts,true -20405,e8e498cf-b469-4322-80de-3d4c6accda5c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20405,e8e498cf-b469-4322-80de-3d4c6accda5c,LIST_TRANSACTIONS,xs2aListTransactions,true 20406,e8e498cf-b469-4322-80de-3d4c6accda5c,AUTHORIZATION,,true 20407,e8e498cf-b469-4322-80de-3d4c6accda5c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20408,e8e498cf-b469-4322-80de-3d4c6accda5c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20409,e8e498cf-b469-4322-80de-3d4c6accda5c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20410,ec198640-caa6-4068-b4ae-92d54e4a530a,LIST_ACCOUNTS,hbciListAccounts,false -20411,ec198640-caa6-4068-b4ae-92d54e4a530a,LIST_TRANSACTIONS,hbciListTransactions,false -20412,ec198640-caa6-4068-b4ae-92d54e4a530a,AUTHORIZATION,,false -20413,ec198640-caa6-4068-b4ae-92d54e4a530a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20414,ec198640-caa6-4068-b4ae-92d54e4a530a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20415,ec198640-caa6-4068-b4ae-92d54e4a530a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20410,696367ea-5fff-40ff-ab42-11cd8c040a1c,LIST_ACCOUNTS,hbciListAccounts,false +20411,696367ea-5fff-40ff-ab42-11cd8c040a1c,LIST_TRANSACTIONS,hbciListTransactions,false +20412,696367ea-5fff-40ff-ab42-11cd8c040a1c,AUTHORIZATION,,false +20413,696367ea-5fff-40ff-ab42-11cd8c040a1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20414,696367ea-5fff-40ff-ab42-11cd8c040a1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20415,696367ea-5fff-40ff-ab42-11cd8c040a1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20416,5dff6dcf-5a29-48cb-932c-712a2fe8773f,LIST_ACCOUNTS,xs2aListAccounts,true -20417,5dff6dcf-5a29-48cb-932c-712a2fe8773f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20417,5dff6dcf-5a29-48cb-932c-712a2fe8773f,LIST_TRANSACTIONS,xs2aListTransactions,true 20418,5dff6dcf-5a29-48cb-932c-712a2fe8773f,AUTHORIZATION,,true 20419,5dff6dcf-5a29-48cb-932c-712a2fe8773f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20420,5dff6dcf-5a29-48cb-932c-712a2fe8773f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20421,5dff6dcf-5a29-48cb-932c-712a2fe8773f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20422,7bc70129-7501-438d-8011-7bc86c14b6ce,LIST_ACCOUNTS,hbciListAccounts,false -20423,7bc70129-7501-438d-8011-7bc86c14b6ce,LIST_TRANSACTIONS,hbciListTransactions,false -20424,7bc70129-7501-438d-8011-7bc86c14b6ce,AUTHORIZATION,,false -20425,7bc70129-7501-438d-8011-7bc86c14b6ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20426,7bc70129-7501-438d-8011-7bc86c14b6ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20427,7bc70129-7501-438d-8011-7bc86c14b6ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20422,902df41b-d6d3-4f3a-a965-515cf762e43a,LIST_ACCOUNTS,hbciListAccounts,false +20423,902df41b-d6d3-4f3a-a965-515cf762e43a,LIST_TRANSACTIONS,hbciListTransactions,false +20424,902df41b-d6d3-4f3a-a965-515cf762e43a,AUTHORIZATION,,false +20425,902df41b-d6d3-4f3a-a965-515cf762e43a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20426,902df41b-d6d3-4f3a-a965-515cf762e43a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20427,902df41b-d6d3-4f3a-a965-515cf762e43a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20428,f591d8e2-4c45-4d94-bdc8-0d5759676f50,LIST_ACCOUNTS,xs2aListAccounts,true -20429,f591d8e2-4c45-4d94-bdc8-0d5759676f50,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20429,f591d8e2-4c45-4d94-bdc8-0d5759676f50,LIST_TRANSACTIONS,xs2aListTransactions,true 20430,f591d8e2-4c45-4d94-bdc8-0d5759676f50,AUTHORIZATION,,true 20431,f591d8e2-4c45-4d94-bdc8-0d5759676f50,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20432,f591d8e2-4c45-4d94-bdc8-0d5759676f50,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20433,f591d8e2-4c45-4d94-bdc8-0d5759676f50,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20434,e45a30bf-cb81-4c0c-a235-528a5160fee9,LIST_ACCOUNTS,hbciListAccounts,false -20435,e45a30bf-cb81-4c0c-a235-528a5160fee9,LIST_TRANSACTIONS,hbciListTransactions,false -20436,e45a30bf-cb81-4c0c-a235-528a5160fee9,AUTHORIZATION,,false -20437,e45a30bf-cb81-4c0c-a235-528a5160fee9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20438,e45a30bf-cb81-4c0c-a235-528a5160fee9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20439,e45a30bf-cb81-4c0c-a235-528a5160fee9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20434,293ba389-9f39-4406-8902-ecc4d59cef8a,LIST_ACCOUNTS,hbciListAccounts,false +20435,293ba389-9f39-4406-8902-ecc4d59cef8a,LIST_TRANSACTIONS,hbciListTransactions,false +20436,293ba389-9f39-4406-8902-ecc4d59cef8a,AUTHORIZATION,,false +20437,293ba389-9f39-4406-8902-ecc4d59cef8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20438,293ba389-9f39-4406-8902-ecc4d59cef8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20439,293ba389-9f39-4406-8902-ecc4d59cef8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20440,429f90e7-68c7-46c7-b389-0b1047da0805,LIST_ACCOUNTS,xs2aListAccounts,true -20441,429f90e7-68c7-46c7-b389-0b1047da0805,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20441,429f90e7-68c7-46c7-b389-0b1047da0805,LIST_TRANSACTIONS,xs2aListTransactions,true 20442,429f90e7-68c7-46c7-b389-0b1047da0805,AUTHORIZATION,,true 20443,429f90e7-68c7-46c7-b389-0b1047da0805,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20444,429f90e7-68c7-46c7-b389-0b1047da0805,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20445,429f90e7-68c7-46c7-b389-0b1047da0805,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20446,25afbe7e-c170-4cfe-9eb9-9bb20983ca09,LIST_ACCOUNTS,hbciListAccounts,false -20447,25afbe7e-c170-4cfe-9eb9-9bb20983ca09,LIST_TRANSACTIONS,hbciListTransactions,false -20448,25afbe7e-c170-4cfe-9eb9-9bb20983ca09,AUTHORIZATION,,false -20449,25afbe7e-c170-4cfe-9eb9-9bb20983ca09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20450,25afbe7e-c170-4cfe-9eb9-9bb20983ca09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20451,25afbe7e-c170-4cfe-9eb9-9bb20983ca09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20446,8fcacc84-4add-4f04-9bfa-450672aeb1d6,LIST_ACCOUNTS,hbciListAccounts,false +20447,8fcacc84-4add-4f04-9bfa-450672aeb1d6,LIST_TRANSACTIONS,hbciListTransactions,false +20448,8fcacc84-4add-4f04-9bfa-450672aeb1d6,AUTHORIZATION,,false +20449,8fcacc84-4add-4f04-9bfa-450672aeb1d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20450,8fcacc84-4add-4f04-9bfa-450672aeb1d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20451,8fcacc84-4add-4f04-9bfa-450672aeb1d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20452,36fa1663-2546-4f8b-9357-27ba92118b9e,LIST_ACCOUNTS,xs2aListAccounts,true -20453,36fa1663-2546-4f8b-9357-27ba92118b9e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20453,36fa1663-2546-4f8b-9357-27ba92118b9e,LIST_TRANSACTIONS,xs2aListTransactions,true 20454,36fa1663-2546-4f8b-9357-27ba92118b9e,AUTHORIZATION,,true 20455,36fa1663-2546-4f8b-9357-27ba92118b9e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20456,36fa1663-2546-4f8b-9357-27ba92118b9e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20457,36fa1663-2546-4f8b-9357-27ba92118b9e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20458,799e2c84-fe59-4147-aac2-ad4fb3e3f4cd,LIST_ACCOUNTS,hbciListAccounts,false -20459,799e2c84-fe59-4147-aac2-ad4fb3e3f4cd,LIST_TRANSACTIONS,hbciListTransactions,false -20460,799e2c84-fe59-4147-aac2-ad4fb3e3f4cd,AUTHORIZATION,,false -20461,799e2c84-fe59-4147-aac2-ad4fb3e3f4cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20462,799e2c84-fe59-4147-aac2-ad4fb3e3f4cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20463,799e2c84-fe59-4147-aac2-ad4fb3e3f4cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20458,16e79258-aeb1-4c07-8585-1e6b29d629ac,LIST_ACCOUNTS,hbciListAccounts,false +20459,16e79258-aeb1-4c07-8585-1e6b29d629ac,LIST_TRANSACTIONS,hbciListTransactions,false +20460,16e79258-aeb1-4c07-8585-1e6b29d629ac,AUTHORIZATION,,false +20461,16e79258-aeb1-4c07-8585-1e6b29d629ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20462,16e79258-aeb1-4c07-8585-1e6b29d629ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20463,16e79258-aeb1-4c07-8585-1e6b29d629ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20464,3e212881-bec5-4ae7-850f-537c2251dcb8,LIST_ACCOUNTS,xs2aListAccounts,true -20465,3e212881-bec5-4ae7-850f-537c2251dcb8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20465,3e212881-bec5-4ae7-850f-537c2251dcb8,LIST_TRANSACTIONS,xs2aListTransactions,true 20466,3e212881-bec5-4ae7-850f-537c2251dcb8,AUTHORIZATION,,true 20467,3e212881-bec5-4ae7-850f-537c2251dcb8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20468,3e212881-bec5-4ae7-850f-537c2251dcb8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20469,3e212881-bec5-4ae7-850f-537c2251dcb8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20470,c7a81b08-b469-4ddb-bbc8-524f763f68f3,LIST_ACCOUNTS,hbciListAccounts,false -20471,c7a81b08-b469-4ddb-bbc8-524f763f68f3,LIST_TRANSACTIONS,hbciListTransactions,false -20472,c7a81b08-b469-4ddb-bbc8-524f763f68f3,AUTHORIZATION,,false -20473,c7a81b08-b469-4ddb-bbc8-524f763f68f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20474,c7a81b08-b469-4ddb-bbc8-524f763f68f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20475,c7a81b08-b469-4ddb-bbc8-524f763f68f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20470,ad11564e-b413-40fb-a753-c8ea60e5cf38,LIST_ACCOUNTS,hbciListAccounts,false +20471,ad11564e-b413-40fb-a753-c8ea60e5cf38,LIST_TRANSACTIONS,hbciListTransactions,false +20472,ad11564e-b413-40fb-a753-c8ea60e5cf38,AUTHORIZATION,,false +20473,ad11564e-b413-40fb-a753-c8ea60e5cf38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20474,ad11564e-b413-40fb-a753-c8ea60e5cf38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20475,ad11564e-b413-40fb-a753-c8ea60e5cf38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20476,80ec32b9-9686-4c6e-a8fa-fdc0712d48cc,LIST_ACCOUNTS,xs2aListAccounts,true -20477,80ec32b9-9686-4c6e-a8fa-fdc0712d48cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20477,80ec32b9-9686-4c6e-a8fa-fdc0712d48cc,LIST_TRANSACTIONS,xs2aListTransactions,true 20478,80ec32b9-9686-4c6e-a8fa-fdc0712d48cc,AUTHORIZATION,,true 20479,80ec32b9-9686-4c6e-a8fa-fdc0712d48cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20480,80ec32b9-9686-4c6e-a8fa-fdc0712d48cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20481,80ec32b9-9686-4c6e-a8fa-fdc0712d48cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20482,be58fa64-c5a8-411e-9529-08c343cac6ab,LIST_ACCOUNTS,hbciListAccounts,false -20483,be58fa64-c5a8-411e-9529-08c343cac6ab,LIST_TRANSACTIONS,hbciListTransactions,false -20484,be58fa64-c5a8-411e-9529-08c343cac6ab,AUTHORIZATION,,false -20485,be58fa64-c5a8-411e-9529-08c343cac6ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20486,be58fa64-c5a8-411e-9529-08c343cac6ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20487,be58fa64-c5a8-411e-9529-08c343cac6ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20482,aec33d2d-5d75-4324-b526-3f0555db8f16,LIST_ACCOUNTS,hbciListAccounts,false +20483,aec33d2d-5d75-4324-b526-3f0555db8f16,LIST_TRANSACTIONS,hbciListTransactions,false +20484,aec33d2d-5d75-4324-b526-3f0555db8f16,AUTHORIZATION,,false +20485,aec33d2d-5d75-4324-b526-3f0555db8f16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20486,aec33d2d-5d75-4324-b526-3f0555db8f16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20487,aec33d2d-5d75-4324-b526-3f0555db8f16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20488,df06e1d9-757c-406e-93a9-0c6c074126ed,LIST_ACCOUNTS,xs2aListAccounts,true -20489,df06e1d9-757c-406e-93a9-0c6c074126ed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20489,df06e1d9-757c-406e-93a9-0c6c074126ed,LIST_TRANSACTIONS,xs2aListTransactions,true 20490,df06e1d9-757c-406e-93a9-0c6c074126ed,AUTHORIZATION,,true 20491,df06e1d9-757c-406e-93a9-0c6c074126ed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20492,df06e1d9-757c-406e-93a9-0c6c074126ed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20493,df06e1d9-757c-406e-93a9-0c6c074126ed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20494,a6f6c100-be7d-42af-ab4b-d620bae466c2,LIST_ACCOUNTS,hbciListAccounts,false -20495,a6f6c100-be7d-42af-ab4b-d620bae466c2,LIST_TRANSACTIONS,hbciListTransactions,false -20496,a6f6c100-be7d-42af-ab4b-d620bae466c2,AUTHORIZATION,,false -20497,a6f6c100-be7d-42af-ab4b-d620bae466c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20498,a6f6c100-be7d-42af-ab4b-d620bae466c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20499,a6f6c100-be7d-42af-ab4b-d620bae466c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20494,a73e1277-765c-48b6-8334-6a4b8d34585d,LIST_ACCOUNTS,hbciListAccounts,false +20495,a73e1277-765c-48b6-8334-6a4b8d34585d,LIST_TRANSACTIONS,hbciListTransactions,false +20496,a73e1277-765c-48b6-8334-6a4b8d34585d,AUTHORIZATION,,false +20497,a73e1277-765c-48b6-8334-6a4b8d34585d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20498,a73e1277-765c-48b6-8334-6a4b8d34585d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20499,a73e1277-765c-48b6-8334-6a4b8d34585d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20500,709a4a23-c8ca-4f8b-9c56-0f30b72509d4,LIST_ACCOUNTS,xs2aListAccounts,true -20501,709a4a23-c8ca-4f8b-9c56-0f30b72509d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20501,709a4a23-c8ca-4f8b-9c56-0f30b72509d4,LIST_TRANSACTIONS,xs2aListTransactions,true 20502,709a4a23-c8ca-4f8b-9c56-0f30b72509d4,AUTHORIZATION,,true 20503,709a4a23-c8ca-4f8b-9c56-0f30b72509d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20504,709a4a23-c8ca-4f8b-9c56-0f30b72509d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20505,709a4a23-c8ca-4f8b-9c56-0f30b72509d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20506,9ff7a91c-b9e5-49b5-a54c-61787d0120f5,LIST_ACCOUNTS,hbciListAccounts,false -20507,9ff7a91c-b9e5-49b5-a54c-61787d0120f5,LIST_TRANSACTIONS,hbciListTransactions,false -20508,9ff7a91c-b9e5-49b5-a54c-61787d0120f5,AUTHORIZATION,,false -20509,9ff7a91c-b9e5-49b5-a54c-61787d0120f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20510,9ff7a91c-b9e5-49b5-a54c-61787d0120f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20511,9ff7a91c-b9e5-49b5-a54c-61787d0120f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20506,61701308-a0cc-4e9e-a29b-bb848f903a34,LIST_ACCOUNTS,hbciListAccounts,false +20507,61701308-a0cc-4e9e-a29b-bb848f903a34,LIST_TRANSACTIONS,hbciListTransactions,false +20508,61701308-a0cc-4e9e-a29b-bb848f903a34,AUTHORIZATION,,false +20509,61701308-a0cc-4e9e-a29b-bb848f903a34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20510,61701308-a0cc-4e9e-a29b-bb848f903a34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20511,61701308-a0cc-4e9e-a29b-bb848f903a34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20512,2c7dd310-c8c0-4bd5-95a4-6ccc43f05bbe,LIST_ACCOUNTS,xs2aListAccounts,true -20513,2c7dd310-c8c0-4bd5-95a4-6ccc43f05bbe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20513,2c7dd310-c8c0-4bd5-95a4-6ccc43f05bbe,LIST_TRANSACTIONS,xs2aListTransactions,true 20514,2c7dd310-c8c0-4bd5-95a4-6ccc43f05bbe,AUTHORIZATION,,true 20515,2c7dd310-c8c0-4bd5-95a4-6ccc43f05bbe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20516,2c7dd310-c8c0-4bd5-95a4-6ccc43f05bbe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20517,2c7dd310-c8c0-4bd5-95a4-6ccc43f05bbe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20518,ef8b30c6-5e50-4996-9623-119c410b8ffe,LIST_ACCOUNTS,hbciListAccounts,false -20519,ef8b30c6-5e50-4996-9623-119c410b8ffe,LIST_TRANSACTIONS,hbciListTransactions,false -20520,ef8b30c6-5e50-4996-9623-119c410b8ffe,AUTHORIZATION,,false -20521,ef8b30c6-5e50-4996-9623-119c410b8ffe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20522,ef8b30c6-5e50-4996-9623-119c410b8ffe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20523,ef8b30c6-5e50-4996-9623-119c410b8ffe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20518,d4521876-a1cc-49c2-99db-243a8fbe200c,LIST_ACCOUNTS,hbciListAccounts,false +20519,d4521876-a1cc-49c2-99db-243a8fbe200c,LIST_TRANSACTIONS,hbciListTransactions,false +20520,d4521876-a1cc-49c2-99db-243a8fbe200c,AUTHORIZATION,,false +20521,d4521876-a1cc-49c2-99db-243a8fbe200c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20522,d4521876-a1cc-49c2-99db-243a8fbe200c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20523,d4521876-a1cc-49c2-99db-243a8fbe200c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20524,f0918161-33b3-486d-af94-bc74be85cc56,LIST_ACCOUNTS,xs2aListAccounts,true -20525,f0918161-33b3-486d-af94-bc74be85cc56,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20525,f0918161-33b3-486d-af94-bc74be85cc56,LIST_TRANSACTIONS,xs2aListTransactions,true 20526,f0918161-33b3-486d-af94-bc74be85cc56,AUTHORIZATION,,true 20527,f0918161-33b3-486d-af94-bc74be85cc56,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20528,f0918161-33b3-486d-af94-bc74be85cc56,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20529,f0918161-33b3-486d-af94-bc74be85cc56,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20530,ef13b879-0fae-4844-8431-12da0d0d9eb3,LIST_ACCOUNTS,hbciListAccounts,false -20531,ef13b879-0fae-4844-8431-12da0d0d9eb3,LIST_TRANSACTIONS,hbciListTransactions,false -20532,ef13b879-0fae-4844-8431-12da0d0d9eb3,AUTHORIZATION,,false -20533,ef13b879-0fae-4844-8431-12da0d0d9eb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20534,ef13b879-0fae-4844-8431-12da0d0d9eb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20535,ef13b879-0fae-4844-8431-12da0d0d9eb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20530,911817ff-caae-473d-aa4b-18f3f58fec09,LIST_ACCOUNTS,hbciListAccounts,false +20531,911817ff-caae-473d-aa4b-18f3f58fec09,LIST_TRANSACTIONS,hbciListTransactions,false +20532,911817ff-caae-473d-aa4b-18f3f58fec09,AUTHORIZATION,,false +20533,911817ff-caae-473d-aa4b-18f3f58fec09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20534,911817ff-caae-473d-aa4b-18f3f58fec09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20535,911817ff-caae-473d-aa4b-18f3f58fec09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20536,92985f51-9c23-4ee9-8801-98c7345292aa,LIST_ACCOUNTS,xs2aListAccounts,true -20537,92985f51-9c23-4ee9-8801-98c7345292aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20537,92985f51-9c23-4ee9-8801-98c7345292aa,LIST_TRANSACTIONS,xs2aListTransactions,true 20538,92985f51-9c23-4ee9-8801-98c7345292aa,AUTHORIZATION,,true 20539,92985f51-9c23-4ee9-8801-98c7345292aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20540,92985f51-9c23-4ee9-8801-98c7345292aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20541,92985f51-9c23-4ee9-8801-98c7345292aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20542,d540e8a2-17b7-4316-af7e-86b61ef4579d,LIST_ACCOUNTS,hbciListAccounts,false -20543,d540e8a2-17b7-4316-af7e-86b61ef4579d,LIST_TRANSACTIONS,hbciListTransactions,false -20544,d540e8a2-17b7-4316-af7e-86b61ef4579d,AUTHORIZATION,,false -20545,d540e8a2-17b7-4316-af7e-86b61ef4579d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20546,d540e8a2-17b7-4316-af7e-86b61ef4579d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20547,d540e8a2-17b7-4316-af7e-86b61ef4579d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20542,7ead1137-a76d-4880-ad8e-cc4523a20807,LIST_ACCOUNTS,hbciListAccounts,false +20543,7ead1137-a76d-4880-ad8e-cc4523a20807,LIST_TRANSACTIONS,hbciListTransactions,false +20544,7ead1137-a76d-4880-ad8e-cc4523a20807,AUTHORIZATION,,false +20545,7ead1137-a76d-4880-ad8e-cc4523a20807,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20546,7ead1137-a76d-4880-ad8e-cc4523a20807,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20547,7ead1137-a76d-4880-ad8e-cc4523a20807,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20548,1cbb53b5-2c5a-4e87-8224-082882c8b213,LIST_ACCOUNTS,xs2aListAccounts,true -20549,1cbb53b5-2c5a-4e87-8224-082882c8b213,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20549,1cbb53b5-2c5a-4e87-8224-082882c8b213,LIST_TRANSACTIONS,xs2aListTransactions,true 20550,1cbb53b5-2c5a-4e87-8224-082882c8b213,AUTHORIZATION,,true 20551,1cbb53b5-2c5a-4e87-8224-082882c8b213,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20552,1cbb53b5-2c5a-4e87-8224-082882c8b213,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20553,1cbb53b5-2c5a-4e87-8224-082882c8b213,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20554,f75fb3a0-ffb8-4d14-b03c-6183adb25e8d,LIST_ACCOUNTS,hbciListAccounts,false -20555,f75fb3a0-ffb8-4d14-b03c-6183adb25e8d,LIST_TRANSACTIONS,hbciListTransactions,false -20556,f75fb3a0-ffb8-4d14-b03c-6183adb25e8d,AUTHORIZATION,,false -20557,f75fb3a0-ffb8-4d14-b03c-6183adb25e8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20558,f75fb3a0-ffb8-4d14-b03c-6183adb25e8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20559,f75fb3a0-ffb8-4d14-b03c-6183adb25e8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20554,4e751ddc-789e-4a31-8d92-3cf8cf5e5028,LIST_ACCOUNTS,hbciListAccounts,false +20555,4e751ddc-789e-4a31-8d92-3cf8cf5e5028,LIST_TRANSACTIONS,hbciListTransactions,false +20556,4e751ddc-789e-4a31-8d92-3cf8cf5e5028,AUTHORIZATION,,false +20557,4e751ddc-789e-4a31-8d92-3cf8cf5e5028,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20558,4e751ddc-789e-4a31-8d92-3cf8cf5e5028,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20559,4e751ddc-789e-4a31-8d92-3cf8cf5e5028,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20560,dffd5c4a-155d-4413-ae26-675aed69f25e,LIST_ACCOUNTS,xs2aListAccounts,true -20561,dffd5c4a-155d-4413-ae26-675aed69f25e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20561,dffd5c4a-155d-4413-ae26-675aed69f25e,LIST_TRANSACTIONS,xs2aListTransactions,true 20562,dffd5c4a-155d-4413-ae26-675aed69f25e,AUTHORIZATION,,true 20563,dffd5c4a-155d-4413-ae26-675aed69f25e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20564,dffd5c4a-155d-4413-ae26-675aed69f25e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20565,dffd5c4a-155d-4413-ae26-675aed69f25e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20566,04a24084-d41f-4b3a-b5c6-403a21cbd6fe,LIST_ACCOUNTS,hbciListAccounts,false -20567,04a24084-d41f-4b3a-b5c6-403a21cbd6fe,LIST_TRANSACTIONS,hbciListTransactions,false -20568,04a24084-d41f-4b3a-b5c6-403a21cbd6fe,AUTHORIZATION,,false -20569,04a24084-d41f-4b3a-b5c6-403a21cbd6fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20570,04a24084-d41f-4b3a-b5c6-403a21cbd6fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20571,04a24084-d41f-4b3a-b5c6-403a21cbd6fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20566,26b2891e-5fb9-4510-b05f-239eb9bd143a,LIST_ACCOUNTS,hbciListAccounts,false +20567,26b2891e-5fb9-4510-b05f-239eb9bd143a,LIST_TRANSACTIONS,hbciListTransactions,false +20568,26b2891e-5fb9-4510-b05f-239eb9bd143a,AUTHORIZATION,,false +20569,26b2891e-5fb9-4510-b05f-239eb9bd143a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20570,26b2891e-5fb9-4510-b05f-239eb9bd143a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20571,26b2891e-5fb9-4510-b05f-239eb9bd143a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20572,7ac80c24-e875-4825-bc57-b9fad3b587a1,LIST_ACCOUNTS,xs2aListAccounts,true -20573,7ac80c24-e875-4825-bc57-b9fad3b587a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20573,7ac80c24-e875-4825-bc57-b9fad3b587a1,LIST_TRANSACTIONS,xs2aListTransactions,true 20574,7ac80c24-e875-4825-bc57-b9fad3b587a1,AUTHORIZATION,,true 20575,7ac80c24-e875-4825-bc57-b9fad3b587a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20576,7ac80c24-e875-4825-bc57-b9fad3b587a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20577,7ac80c24-e875-4825-bc57-b9fad3b587a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20578,d85d4bde-da4c-4582-9008-f4489d35ce8e,LIST_ACCOUNTS,hbciListAccounts,false -20579,d85d4bde-da4c-4582-9008-f4489d35ce8e,LIST_TRANSACTIONS,hbciListTransactions,false -20580,d85d4bde-da4c-4582-9008-f4489d35ce8e,AUTHORIZATION,,false -20581,d85d4bde-da4c-4582-9008-f4489d35ce8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20582,d85d4bde-da4c-4582-9008-f4489d35ce8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20583,d85d4bde-da4c-4582-9008-f4489d35ce8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20578,93dac8e0-4a75-4b37-ae22-aa6737d4149c,LIST_ACCOUNTS,hbciListAccounts,false +20579,93dac8e0-4a75-4b37-ae22-aa6737d4149c,LIST_TRANSACTIONS,hbciListTransactions,false +20580,93dac8e0-4a75-4b37-ae22-aa6737d4149c,AUTHORIZATION,,false +20581,93dac8e0-4a75-4b37-ae22-aa6737d4149c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20582,93dac8e0-4a75-4b37-ae22-aa6737d4149c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20583,93dac8e0-4a75-4b37-ae22-aa6737d4149c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20584,375388fd-6faa-49f3-99af-7ff2d5968a86,LIST_ACCOUNTS,xs2aListAccounts,true -20585,375388fd-6faa-49f3-99af-7ff2d5968a86,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20585,375388fd-6faa-49f3-99af-7ff2d5968a86,LIST_TRANSACTIONS,xs2aListTransactions,true 20586,375388fd-6faa-49f3-99af-7ff2d5968a86,AUTHORIZATION,,true 20587,375388fd-6faa-49f3-99af-7ff2d5968a86,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20588,375388fd-6faa-49f3-99af-7ff2d5968a86,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20589,375388fd-6faa-49f3-99af-7ff2d5968a86,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20590,0706c7ff-834c-4e44-81e6-5c491b041065,LIST_ACCOUNTS,hbciListAccounts,false -20591,0706c7ff-834c-4e44-81e6-5c491b041065,LIST_TRANSACTIONS,hbciListTransactions,false -20592,0706c7ff-834c-4e44-81e6-5c491b041065,AUTHORIZATION,,false -20593,0706c7ff-834c-4e44-81e6-5c491b041065,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20594,0706c7ff-834c-4e44-81e6-5c491b041065,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20595,0706c7ff-834c-4e44-81e6-5c491b041065,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20590,9d6cd254-7ee1-44a9-b60a-4dccef658ea8,LIST_ACCOUNTS,hbciListAccounts,false +20591,9d6cd254-7ee1-44a9-b60a-4dccef658ea8,LIST_TRANSACTIONS,hbciListTransactions,false +20592,9d6cd254-7ee1-44a9-b60a-4dccef658ea8,AUTHORIZATION,,false +20593,9d6cd254-7ee1-44a9-b60a-4dccef658ea8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20594,9d6cd254-7ee1-44a9-b60a-4dccef658ea8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20595,9d6cd254-7ee1-44a9-b60a-4dccef658ea8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20596,429c00cb-02de-452d-a4d7-4a74b007c1fe,LIST_ACCOUNTS,xs2aListAccounts,true -20597,429c00cb-02de-452d-a4d7-4a74b007c1fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20597,429c00cb-02de-452d-a4d7-4a74b007c1fe,LIST_TRANSACTIONS,xs2aListTransactions,true 20598,429c00cb-02de-452d-a4d7-4a74b007c1fe,AUTHORIZATION,,true 20599,429c00cb-02de-452d-a4d7-4a74b007c1fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20600,429c00cb-02de-452d-a4d7-4a74b007c1fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20601,429c00cb-02de-452d-a4d7-4a74b007c1fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20602,f2c0d472-6d8a-4d0d-a28d-fb2bc4795c5a,LIST_ACCOUNTS,hbciListAccounts,false -20603,f2c0d472-6d8a-4d0d-a28d-fb2bc4795c5a,LIST_TRANSACTIONS,hbciListTransactions,false -20604,f2c0d472-6d8a-4d0d-a28d-fb2bc4795c5a,AUTHORIZATION,,false -20605,f2c0d472-6d8a-4d0d-a28d-fb2bc4795c5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20606,f2c0d472-6d8a-4d0d-a28d-fb2bc4795c5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20607,f2c0d472-6d8a-4d0d-a28d-fb2bc4795c5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20602,8e3012bb-0454-4492-9a32-07bed7ead139,LIST_ACCOUNTS,hbciListAccounts,false +20603,8e3012bb-0454-4492-9a32-07bed7ead139,LIST_TRANSACTIONS,hbciListTransactions,false +20604,8e3012bb-0454-4492-9a32-07bed7ead139,AUTHORIZATION,,false +20605,8e3012bb-0454-4492-9a32-07bed7ead139,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20606,8e3012bb-0454-4492-9a32-07bed7ead139,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20607,8e3012bb-0454-4492-9a32-07bed7ead139,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20608,81fc089d-a1c0-4786-8b39-e675698cac53,LIST_ACCOUNTS,xs2aListAccounts,true -20609,81fc089d-a1c0-4786-8b39-e675698cac53,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20609,81fc089d-a1c0-4786-8b39-e675698cac53,LIST_TRANSACTIONS,xs2aListTransactions,true 20610,81fc089d-a1c0-4786-8b39-e675698cac53,AUTHORIZATION,,true 20611,81fc089d-a1c0-4786-8b39-e675698cac53,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20612,81fc089d-a1c0-4786-8b39-e675698cac53,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20613,81fc089d-a1c0-4786-8b39-e675698cac53,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20614,f1330a6a-e8b5-4029-9792-00b7f09d4d22,LIST_ACCOUNTS,hbciListAccounts,false -20615,f1330a6a-e8b5-4029-9792-00b7f09d4d22,LIST_TRANSACTIONS,hbciListTransactions,false -20616,f1330a6a-e8b5-4029-9792-00b7f09d4d22,AUTHORIZATION,,false -20617,f1330a6a-e8b5-4029-9792-00b7f09d4d22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20618,f1330a6a-e8b5-4029-9792-00b7f09d4d22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20619,f1330a6a-e8b5-4029-9792-00b7f09d4d22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20614,99c5be65-9f3f-4220-8aee-10c4d39f3a73,LIST_ACCOUNTS,hbciListAccounts,false +20615,99c5be65-9f3f-4220-8aee-10c4d39f3a73,LIST_TRANSACTIONS,hbciListTransactions,false +20616,99c5be65-9f3f-4220-8aee-10c4d39f3a73,AUTHORIZATION,,false +20617,99c5be65-9f3f-4220-8aee-10c4d39f3a73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20618,99c5be65-9f3f-4220-8aee-10c4d39f3a73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20619,99c5be65-9f3f-4220-8aee-10c4d39f3a73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20620,69ea6df3-0ca2-456d-af69-9c29d8f8d501,LIST_ACCOUNTS,xs2aListAccounts,true -20621,69ea6df3-0ca2-456d-af69-9c29d8f8d501,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20621,69ea6df3-0ca2-456d-af69-9c29d8f8d501,LIST_TRANSACTIONS,xs2aListTransactions,true 20622,69ea6df3-0ca2-456d-af69-9c29d8f8d501,AUTHORIZATION,,true 20623,69ea6df3-0ca2-456d-af69-9c29d8f8d501,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20624,69ea6df3-0ca2-456d-af69-9c29d8f8d501,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20625,69ea6df3-0ca2-456d-af69-9c29d8f8d501,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20626,49f04c61-2ce4-4dce-9069-caa84feda5c7,LIST_ACCOUNTS,hbciListAccounts,false -20627,49f04c61-2ce4-4dce-9069-caa84feda5c7,LIST_TRANSACTIONS,hbciListTransactions,false -20628,49f04c61-2ce4-4dce-9069-caa84feda5c7,AUTHORIZATION,,false -20629,49f04c61-2ce4-4dce-9069-caa84feda5c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20630,49f04c61-2ce4-4dce-9069-caa84feda5c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20631,49f04c61-2ce4-4dce-9069-caa84feda5c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20626,cf389f50-26fd-414e-947d-deca7700205d,LIST_ACCOUNTS,hbciListAccounts,false +20627,cf389f50-26fd-414e-947d-deca7700205d,LIST_TRANSACTIONS,hbciListTransactions,false +20628,cf389f50-26fd-414e-947d-deca7700205d,AUTHORIZATION,,false +20629,cf389f50-26fd-414e-947d-deca7700205d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20630,cf389f50-26fd-414e-947d-deca7700205d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20631,cf389f50-26fd-414e-947d-deca7700205d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20632,e2e512e3-8067-431a-a3c6-9e9ff17741f4,LIST_ACCOUNTS,xs2aListAccounts,true -20633,e2e512e3-8067-431a-a3c6-9e9ff17741f4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20633,e2e512e3-8067-431a-a3c6-9e9ff17741f4,LIST_TRANSACTIONS,xs2aListTransactions,true 20634,e2e512e3-8067-431a-a3c6-9e9ff17741f4,AUTHORIZATION,,true 20635,e2e512e3-8067-431a-a3c6-9e9ff17741f4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20636,e2e512e3-8067-431a-a3c6-9e9ff17741f4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20637,e2e512e3-8067-431a-a3c6-9e9ff17741f4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20638,7039660d-462c-4d97-a488-365062de6c61,LIST_ACCOUNTS,hbciListAccounts,false -20639,7039660d-462c-4d97-a488-365062de6c61,LIST_TRANSACTIONS,hbciListTransactions,false -20640,7039660d-462c-4d97-a488-365062de6c61,AUTHORIZATION,,false -20641,7039660d-462c-4d97-a488-365062de6c61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20642,7039660d-462c-4d97-a488-365062de6c61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20643,7039660d-462c-4d97-a488-365062de6c61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20638,e5976759-323f-43ef-b164-bca35c3cffa8,LIST_ACCOUNTS,hbciListAccounts,false +20639,e5976759-323f-43ef-b164-bca35c3cffa8,LIST_TRANSACTIONS,hbciListTransactions,false +20640,e5976759-323f-43ef-b164-bca35c3cffa8,AUTHORIZATION,,false +20641,e5976759-323f-43ef-b164-bca35c3cffa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20642,e5976759-323f-43ef-b164-bca35c3cffa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20643,e5976759-323f-43ef-b164-bca35c3cffa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20644,9fd2838d-7c1c-4e88-8ced-f7421cf56c40,LIST_ACCOUNTS,xs2aListAccounts,true -20645,9fd2838d-7c1c-4e88-8ced-f7421cf56c40,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20645,9fd2838d-7c1c-4e88-8ced-f7421cf56c40,LIST_TRANSACTIONS,xs2aListTransactions,true 20646,9fd2838d-7c1c-4e88-8ced-f7421cf56c40,AUTHORIZATION,,true 20647,9fd2838d-7c1c-4e88-8ced-f7421cf56c40,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20648,9fd2838d-7c1c-4e88-8ced-f7421cf56c40,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20649,9fd2838d-7c1c-4e88-8ced-f7421cf56c40,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20650,21c01ae4-4fcb-4a5c-9222-80694868b537,LIST_ACCOUNTS,hbciListAccounts,false -20651,21c01ae4-4fcb-4a5c-9222-80694868b537,LIST_TRANSACTIONS,hbciListTransactions,false -20652,21c01ae4-4fcb-4a5c-9222-80694868b537,AUTHORIZATION,,false -20653,21c01ae4-4fcb-4a5c-9222-80694868b537,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20654,21c01ae4-4fcb-4a5c-9222-80694868b537,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20655,21c01ae4-4fcb-4a5c-9222-80694868b537,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20650,5814f5d6-1d70-476a-93d3-3a5ca3bf6549,LIST_ACCOUNTS,hbciListAccounts,false +20651,5814f5d6-1d70-476a-93d3-3a5ca3bf6549,LIST_TRANSACTIONS,hbciListTransactions,false +20652,5814f5d6-1d70-476a-93d3-3a5ca3bf6549,AUTHORIZATION,,false +20653,5814f5d6-1d70-476a-93d3-3a5ca3bf6549,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20654,5814f5d6-1d70-476a-93d3-3a5ca3bf6549,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20655,5814f5d6-1d70-476a-93d3-3a5ca3bf6549,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20656,4aec7b3e-f0a8-4ac2-9e06-c86cc236afe7,LIST_ACCOUNTS,xs2aListAccounts,true -20657,4aec7b3e-f0a8-4ac2-9e06-c86cc236afe7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20657,4aec7b3e-f0a8-4ac2-9e06-c86cc236afe7,LIST_TRANSACTIONS,xs2aListTransactions,true 20658,4aec7b3e-f0a8-4ac2-9e06-c86cc236afe7,AUTHORIZATION,,true 20659,4aec7b3e-f0a8-4ac2-9e06-c86cc236afe7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20660,4aec7b3e-f0a8-4ac2-9e06-c86cc236afe7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20661,4aec7b3e-f0a8-4ac2-9e06-c86cc236afe7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20662,f942ea33-60d0-4e2c-8d82-b3c0fdd060c4,LIST_ACCOUNTS,hbciListAccounts,false -20663,f942ea33-60d0-4e2c-8d82-b3c0fdd060c4,LIST_TRANSACTIONS,hbciListTransactions,false -20664,f942ea33-60d0-4e2c-8d82-b3c0fdd060c4,AUTHORIZATION,,false -20665,f942ea33-60d0-4e2c-8d82-b3c0fdd060c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20666,f942ea33-60d0-4e2c-8d82-b3c0fdd060c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20667,f942ea33-60d0-4e2c-8d82-b3c0fdd060c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20662,f32b61c3-e1a6-464f-acde-5cee4c2f2186,LIST_ACCOUNTS,hbciListAccounts,false +20663,f32b61c3-e1a6-464f-acde-5cee4c2f2186,LIST_TRANSACTIONS,hbciListTransactions,false +20664,f32b61c3-e1a6-464f-acde-5cee4c2f2186,AUTHORIZATION,,false +20665,f32b61c3-e1a6-464f-acde-5cee4c2f2186,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20666,f32b61c3-e1a6-464f-acde-5cee4c2f2186,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20667,f32b61c3-e1a6-464f-acde-5cee4c2f2186,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20668,5f988905-f34a-4ee2-a68a-d94dcf4aacda,LIST_ACCOUNTS,xs2aListAccounts,true -20669,5f988905-f34a-4ee2-a68a-d94dcf4aacda,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20669,5f988905-f34a-4ee2-a68a-d94dcf4aacda,LIST_TRANSACTIONS,xs2aListTransactions,true 20670,5f988905-f34a-4ee2-a68a-d94dcf4aacda,AUTHORIZATION,,true 20671,5f988905-f34a-4ee2-a68a-d94dcf4aacda,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20672,5f988905-f34a-4ee2-a68a-d94dcf4aacda,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20673,5f988905-f34a-4ee2-a68a-d94dcf4aacda,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20674,262c0329-413d-4b6d-a3e3-7eb58843df6d,LIST_ACCOUNTS,hbciListAccounts,false -20675,262c0329-413d-4b6d-a3e3-7eb58843df6d,LIST_TRANSACTIONS,hbciListTransactions,false -20676,262c0329-413d-4b6d-a3e3-7eb58843df6d,AUTHORIZATION,,false -20677,262c0329-413d-4b6d-a3e3-7eb58843df6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20678,262c0329-413d-4b6d-a3e3-7eb58843df6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20679,262c0329-413d-4b6d-a3e3-7eb58843df6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20674,1df8e081-0a13-416c-a84f-3b63577bd99d,LIST_ACCOUNTS,hbciListAccounts,false +20675,1df8e081-0a13-416c-a84f-3b63577bd99d,LIST_TRANSACTIONS,hbciListTransactions,false +20676,1df8e081-0a13-416c-a84f-3b63577bd99d,AUTHORIZATION,,false +20677,1df8e081-0a13-416c-a84f-3b63577bd99d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20678,1df8e081-0a13-416c-a84f-3b63577bd99d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20679,1df8e081-0a13-416c-a84f-3b63577bd99d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20680,4d24bbf1-f394-4a49-94c4-4bac0627bbae,LIST_ACCOUNTS,xs2aListAccounts,true -20681,4d24bbf1-f394-4a49-94c4-4bac0627bbae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20681,4d24bbf1-f394-4a49-94c4-4bac0627bbae,LIST_TRANSACTIONS,xs2aListTransactions,true 20682,4d24bbf1-f394-4a49-94c4-4bac0627bbae,AUTHORIZATION,,true 20683,4d24bbf1-f394-4a49-94c4-4bac0627bbae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20684,4d24bbf1-f394-4a49-94c4-4bac0627bbae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20685,4d24bbf1-f394-4a49-94c4-4bac0627bbae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20686,4d227cf2-e016-451e-ab91-9fc9db0e2b76,LIST_ACCOUNTS,hbciListAccounts,false -20687,4d227cf2-e016-451e-ab91-9fc9db0e2b76,LIST_TRANSACTIONS,hbciListTransactions,false -20688,4d227cf2-e016-451e-ab91-9fc9db0e2b76,AUTHORIZATION,,false -20689,4d227cf2-e016-451e-ab91-9fc9db0e2b76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20690,4d227cf2-e016-451e-ab91-9fc9db0e2b76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20691,4d227cf2-e016-451e-ab91-9fc9db0e2b76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20686,6a8c47e0-e1a4-4383-8b78-c2bd60080d24,LIST_ACCOUNTS,hbciListAccounts,false +20687,6a8c47e0-e1a4-4383-8b78-c2bd60080d24,LIST_TRANSACTIONS,hbciListTransactions,false +20688,6a8c47e0-e1a4-4383-8b78-c2bd60080d24,AUTHORIZATION,,false +20689,6a8c47e0-e1a4-4383-8b78-c2bd60080d24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20690,6a8c47e0-e1a4-4383-8b78-c2bd60080d24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20691,6a8c47e0-e1a4-4383-8b78-c2bd60080d24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20692,97e2eca8-5386-4161-91ce-61459a55cff7,LIST_ACCOUNTS,xs2aListAccounts,true -20693,97e2eca8-5386-4161-91ce-61459a55cff7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20693,97e2eca8-5386-4161-91ce-61459a55cff7,LIST_TRANSACTIONS,xs2aListTransactions,true 20694,97e2eca8-5386-4161-91ce-61459a55cff7,AUTHORIZATION,,true 20695,97e2eca8-5386-4161-91ce-61459a55cff7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20696,97e2eca8-5386-4161-91ce-61459a55cff7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20697,97e2eca8-5386-4161-91ce-61459a55cff7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20698,5084b876-5de8-43f9-9156-c91762a636df,LIST_ACCOUNTS,hbciListAccounts,false -20699,5084b876-5de8-43f9-9156-c91762a636df,LIST_TRANSACTIONS,hbciListTransactions,false -20700,5084b876-5de8-43f9-9156-c91762a636df,AUTHORIZATION,,false -20701,5084b876-5de8-43f9-9156-c91762a636df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20702,5084b876-5de8-43f9-9156-c91762a636df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20703,5084b876-5de8-43f9-9156-c91762a636df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20698,2963aa5d-7467-4da7-917b-42500201880d,LIST_ACCOUNTS,hbciListAccounts,false +20699,2963aa5d-7467-4da7-917b-42500201880d,LIST_TRANSACTIONS,hbciListTransactions,false +20700,2963aa5d-7467-4da7-917b-42500201880d,AUTHORIZATION,,false +20701,2963aa5d-7467-4da7-917b-42500201880d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20702,2963aa5d-7467-4da7-917b-42500201880d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20703,2963aa5d-7467-4da7-917b-42500201880d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20704,37944a58-65ca-4231-83d3-9245997b5b0f,LIST_ACCOUNTS,xs2aListAccounts,true -20705,37944a58-65ca-4231-83d3-9245997b5b0f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20705,37944a58-65ca-4231-83d3-9245997b5b0f,LIST_TRANSACTIONS,xs2aListTransactions,true 20706,37944a58-65ca-4231-83d3-9245997b5b0f,AUTHORIZATION,,true 20707,37944a58-65ca-4231-83d3-9245997b5b0f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20708,37944a58-65ca-4231-83d3-9245997b5b0f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20709,37944a58-65ca-4231-83d3-9245997b5b0f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20710,1de4aca3-cafd-402c-8316-edc22bd72fd9,LIST_ACCOUNTS,hbciListAccounts,false -20711,1de4aca3-cafd-402c-8316-edc22bd72fd9,LIST_TRANSACTIONS,hbciListTransactions,false -20712,1de4aca3-cafd-402c-8316-edc22bd72fd9,AUTHORIZATION,,false -20713,1de4aca3-cafd-402c-8316-edc22bd72fd9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20714,1de4aca3-cafd-402c-8316-edc22bd72fd9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20715,1de4aca3-cafd-402c-8316-edc22bd72fd9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20710,dc922469-2b4c-440c-8560-3be77af38a80,LIST_ACCOUNTS,hbciListAccounts,false +20711,dc922469-2b4c-440c-8560-3be77af38a80,LIST_TRANSACTIONS,hbciListTransactions,false +20712,dc922469-2b4c-440c-8560-3be77af38a80,AUTHORIZATION,,false +20713,dc922469-2b4c-440c-8560-3be77af38a80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20714,dc922469-2b4c-440c-8560-3be77af38a80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20715,dc922469-2b4c-440c-8560-3be77af38a80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20716,ef5ac0d4-87e5-4789-ad74-7c31284387c6,LIST_ACCOUNTS,xs2aListAccounts,true -20717,ef5ac0d4-87e5-4789-ad74-7c31284387c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20717,ef5ac0d4-87e5-4789-ad74-7c31284387c6,LIST_TRANSACTIONS,xs2aListTransactions,true 20718,ef5ac0d4-87e5-4789-ad74-7c31284387c6,AUTHORIZATION,,true 20719,ef5ac0d4-87e5-4789-ad74-7c31284387c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20720,ef5ac0d4-87e5-4789-ad74-7c31284387c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20721,ef5ac0d4-87e5-4789-ad74-7c31284387c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20722,6af0f8f7-d32a-42a1-9861-adc3b5432bd2,LIST_ACCOUNTS,hbciListAccounts,false -20723,6af0f8f7-d32a-42a1-9861-adc3b5432bd2,LIST_TRANSACTIONS,hbciListTransactions,false -20724,6af0f8f7-d32a-42a1-9861-adc3b5432bd2,AUTHORIZATION,,false -20725,6af0f8f7-d32a-42a1-9861-adc3b5432bd2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20726,6af0f8f7-d32a-42a1-9861-adc3b5432bd2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20727,6af0f8f7-d32a-42a1-9861-adc3b5432bd2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20722,0a34862e-4105-4747-a3f5-cbc42cfd1dfb,LIST_ACCOUNTS,hbciListAccounts,false +20723,0a34862e-4105-4747-a3f5-cbc42cfd1dfb,LIST_TRANSACTIONS,hbciListTransactions,false +20724,0a34862e-4105-4747-a3f5-cbc42cfd1dfb,AUTHORIZATION,,false +20725,0a34862e-4105-4747-a3f5-cbc42cfd1dfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20726,0a34862e-4105-4747-a3f5-cbc42cfd1dfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20727,0a34862e-4105-4747-a3f5-cbc42cfd1dfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20728,8f441d24-cd9b-4987-8609-d23fda38de7a,LIST_ACCOUNTS,xs2aListAccounts,true -20729,8f441d24-cd9b-4987-8609-d23fda38de7a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20729,8f441d24-cd9b-4987-8609-d23fda38de7a,LIST_TRANSACTIONS,xs2aListTransactions,true 20730,8f441d24-cd9b-4987-8609-d23fda38de7a,AUTHORIZATION,,true 20731,8f441d24-cd9b-4987-8609-d23fda38de7a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20732,8f441d24-cd9b-4987-8609-d23fda38de7a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20733,8f441d24-cd9b-4987-8609-d23fda38de7a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20734,6284e18c-e0de-4472-98c0-bda919cb7200,LIST_ACCOUNTS,hbciListAccounts,false -20735,6284e18c-e0de-4472-98c0-bda919cb7200,LIST_TRANSACTIONS,hbciListTransactions,false -20736,6284e18c-e0de-4472-98c0-bda919cb7200,AUTHORIZATION,,false -20737,6284e18c-e0de-4472-98c0-bda919cb7200,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20738,6284e18c-e0de-4472-98c0-bda919cb7200,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20739,6284e18c-e0de-4472-98c0-bda919cb7200,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20734,7dd7cb19-4ef8-4469-b575-b06989ae44f0,LIST_ACCOUNTS,hbciListAccounts,false +20735,7dd7cb19-4ef8-4469-b575-b06989ae44f0,LIST_TRANSACTIONS,hbciListTransactions,false +20736,7dd7cb19-4ef8-4469-b575-b06989ae44f0,AUTHORIZATION,,false +20737,7dd7cb19-4ef8-4469-b575-b06989ae44f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20738,7dd7cb19-4ef8-4469-b575-b06989ae44f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20739,7dd7cb19-4ef8-4469-b575-b06989ae44f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20740,14d4e518-bba6-48ef-ad7d-aef5edf76974,LIST_ACCOUNTS,xs2aListAccounts,true -20741,14d4e518-bba6-48ef-ad7d-aef5edf76974,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20741,14d4e518-bba6-48ef-ad7d-aef5edf76974,LIST_TRANSACTIONS,xs2aListTransactions,true 20742,14d4e518-bba6-48ef-ad7d-aef5edf76974,AUTHORIZATION,,true 20743,14d4e518-bba6-48ef-ad7d-aef5edf76974,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20744,14d4e518-bba6-48ef-ad7d-aef5edf76974,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20745,14d4e518-bba6-48ef-ad7d-aef5edf76974,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20746,c4f84c77-5c04-4c72-9906-98837a779874,LIST_ACCOUNTS,hbciListAccounts,false -20747,c4f84c77-5c04-4c72-9906-98837a779874,LIST_TRANSACTIONS,hbciListTransactions,false -20748,c4f84c77-5c04-4c72-9906-98837a779874,AUTHORIZATION,,false -20749,c4f84c77-5c04-4c72-9906-98837a779874,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20750,c4f84c77-5c04-4c72-9906-98837a779874,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20751,c4f84c77-5c04-4c72-9906-98837a779874,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20746,1ce50f53-c0c6-41ab-9c87-b4fb1c97afc5,LIST_ACCOUNTS,hbciListAccounts,false +20747,1ce50f53-c0c6-41ab-9c87-b4fb1c97afc5,LIST_TRANSACTIONS,hbciListTransactions,false +20748,1ce50f53-c0c6-41ab-9c87-b4fb1c97afc5,AUTHORIZATION,,false +20749,1ce50f53-c0c6-41ab-9c87-b4fb1c97afc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20750,1ce50f53-c0c6-41ab-9c87-b4fb1c97afc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20751,1ce50f53-c0c6-41ab-9c87-b4fb1c97afc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20752,c8102cfc-f080-4781-bf66-dff087e48617,LIST_ACCOUNTS,xs2aListAccounts,true -20753,c8102cfc-f080-4781-bf66-dff087e48617,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20753,c8102cfc-f080-4781-bf66-dff087e48617,LIST_TRANSACTIONS,xs2aListTransactions,true 20754,c8102cfc-f080-4781-bf66-dff087e48617,AUTHORIZATION,,true 20755,c8102cfc-f080-4781-bf66-dff087e48617,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20756,c8102cfc-f080-4781-bf66-dff087e48617,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20757,c8102cfc-f080-4781-bf66-dff087e48617,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20758,e496905c-9da7-4b8d-8b19-b381e85e42f6,LIST_ACCOUNTS,hbciListAccounts,false -20759,e496905c-9da7-4b8d-8b19-b381e85e42f6,LIST_TRANSACTIONS,hbciListTransactions,false -20760,e496905c-9da7-4b8d-8b19-b381e85e42f6,AUTHORIZATION,,false -20761,e496905c-9da7-4b8d-8b19-b381e85e42f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20762,e496905c-9da7-4b8d-8b19-b381e85e42f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20763,e496905c-9da7-4b8d-8b19-b381e85e42f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20758,ce315370-8c78-4141-b093-81db9921deac,LIST_ACCOUNTS,hbciListAccounts,false +20759,ce315370-8c78-4141-b093-81db9921deac,LIST_TRANSACTIONS,hbciListTransactions,false +20760,ce315370-8c78-4141-b093-81db9921deac,AUTHORIZATION,,false +20761,ce315370-8c78-4141-b093-81db9921deac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20762,ce315370-8c78-4141-b093-81db9921deac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20763,ce315370-8c78-4141-b093-81db9921deac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20764,35097b50-323a-47ab-80fb-c09aa327fa9c,LIST_ACCOUNTS,xs2aListAccounts,true -20765,35097b50-323a-47ab-80fb-c09aa327fa9c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20765,35097b50-323a-47ab-80fb-c09aa327fa9c,LIST_TRANSACTIONS,xs2aListTransactions,true 20766,35097b50-323a-47ab-80fb-c09aa327fa9c,AUTHORIZATION,,true 20767,35097b50-323a-47ab-80fb-c09aa327fa9c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20768,35097b50-323a-47ab-80fb-c09aa327fa9c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20769,35097b50-323a-47ab-80fb-c09aa327fa9c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20770,0b20ba45-0719-4f0c-98d0-16d762e70cc3,LIST_ACCOUNTS,hbciListAccounts,false -20771,0b20ba45-0719-4f0c-98d0-16d762e70cc3,LIST_TRANSACTIONS,hbciListTransactions,false -20772,0b20ba45-0719-4f0c-98d0-16d762e70cc3,AUTHORIZATION,,false -20773,0b20ba45-0719-4f0c-98d0-16d762e70cc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20774,0b20ba45-0719-4f0c-98d0-16d762e70cc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20775,0b20ba45-0719-4f0c-98d0-16d762e70cc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20770,25a0b35b-2e2d-40af-a744-4f285a791b7e,LIST_ACCOUNTS,hbciListAccounts,false +20771,25a0b35b-2e2d-40af-a744-4f285a791b7e,LIST_TRANSACTIONS,hbciListTransactions,false +20772,25a0b35b-2e2d-40af-a744-4f285a791b7e,AUTHORIZATION,,false +20773,25a0b35b-2e2d-40af-a744-4f285a791b7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20774,25a0b35b-2e2d-40af-a744-4f285a791b7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20775,25a0b35b-2e2d-40af-a744-4f285a791b7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20776,8e425e04-53e1-4de5-b85d-a4a14f63949e,LIST_ACCOUNTS,xs2aListAccounts,true -20777,8e425e04-53e1-4de5-b85d-a4a14f63949e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20777,8e425e04-53e1-4de5-b85d-a4a14f63949e,LIST_TRANSACTIONS,xs2aListTransactions,true 20778,8e425e04-53e1-4de5-b85d-a4a14f63949e,AUTHORIZATION,,true 20779,8e425e04-53e1-4de5-b85d-a4a14f63949e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20780,8e425e04-53e1-4de5-b85d-a4a14f63949e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20781,8e425e04-53e1-4de5-b85d-a4a14f63949e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20782,d05cfa12-23cc-4667-b78f-7ee1b1194346,LIST_ACCOUNTS,hbciListAccounts,false -20783,d05cfa12-23cc-4667-b78f-7ee1b1194346,LIST_TRANSACTIONS,hbciListTransactions,false -20784,d05cfa12-23cc-4667-b78f-7ee1b1194346,AUTHORIZATION,,false -20785,d05cfa12-23cc-4667-b78f-7ee1b1194346,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20786,d05cfa12-23cc-4667-b78f-7ee1b1194346,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20787,d05cfa12-23cc-4667-b78f-7ee1b1194346,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20782,5b6a5cb1-a30c-4a7e-b8c3-43465870c1d5,LIST_ACCOUNTS,hbciListAccounts,false +20783,5b6a5cb1-a30c-4a7e-b8c3-43465870c1d5,LIST_TRANSACTIONS,hbciListTransactions,false +20784,5b6a5cb1-a30c-4a7e-b8c3-43465870c1d5,AUTHORIZATION,,false +20785,5b6a5cb1-a30c-4a7e-b8c3-43465870c1d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20786,5b6a5cb1-a30c-4a7e-b8c3-43465870c1d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20787,5b6a5cb1-a30c-4a7e-b8c3-43465870c1d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20788,f4008852-5640-4c6a-a2bd-759f496bbc60,LIST_ACCOUNTS,xs2aListAccounts,true -20789,f4008852-5640-4c6a-a2bd-759f496bbc60,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20789,f4008852-5640-4c6a-a2bd-759f496bbc60,LIST_TRANSACTIONS,xs2aListTransactions,true 20790,f4008852-5640-4c6a-a2bd-759f496bbc60,AUTHORIZATION,,true 20791,f4008852-5640-4c6a-a2bd-759f496bbc60,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20792,f4008852-5640-4c6a-a2bd-759f496bbc60,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20793,f4008852-5640-4c6a-a2bd-759f496bbc60,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20794,87180fca-0082-4c0d-9e22-3c96e1e851e7,LIST_ACCOUNTS,hbciListAccounts,false -20795,87180fca-0082-4c0d-9e22-3c96e1e851e7,LIST_TRANSACTIONS,hbciListTransactions,false -20796,87180fca-0082-4c0d-9e22-3c96e1e851e7,AUTHORIZATION,,false -20797,87180fca-0082-4c0d-9e22-3c96e1e851e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20798,87180fca-0082-4c0d-9e22-3c96e1e851e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20799,87180fca-0082-4c0d-9e22-3c96e1e851e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20794,eb0f626f-3334-4f06-86a5-3fd059d6dfc3,LIST_ACCOUNTS,hbciListAccounts,false +20795,eb0f626f-3334-4f06-86a5-3fd059d6dfc3,LIST_TRANSACTIONS,hbciListTransactions,false +20796,eb0f626f-3334-4f06-86a5-3fd059d6dfc3,AUTHORIZATION,,false +20797,eb0f626f-3334-4f06-86a5-3fd059d6dfc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20798,eb0f626f-3334-4f06-86a5-3fd059d6dfc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20799,eb0f626f-3334-4f06-86a5-3fd059d6dfc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20800,23625800-513a-4da7-9307-b433b7c145ab,LIST_ACCOUNTS,xs2aListAccounts,true -20801,23625800-513a-4da7-9307-b433b7c145ab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20801,23625800-513a-4da7-9307-b433b7c145ab,LIST_TRANSACTIONS,xs2aListTransactions,true 20802,23625800-513a-4da7-9307-b433b7c145ab,AUTHORIZATION,,true 20803,23625800-513a-4da7-9307-b433b7c145ab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20804,23625800-513a-4da7-9307-b433b7c145ab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20805,23625800-513a-4da7-9307-b433b7c145ab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20806,3e279d19-5fa2-4199-8f32-d33a94621f95,LIST_ACCOUNTS,hbciListAccounts,false -20807,3e279d19-5fa2-4199-8f32-d33a94621f95,LIST_TRANSACTIONS,hbciListTransactions,false -20808,3e279d19-5fa2-4199-8f32-d33a94621f95,AUTHORIZATION,,false -20809,3e279d19-5fa2-4199-8f32-d33a94621f95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20810,3e279d19-5fa2-4199-8f32-d33a94621f95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20811,3e279d19-5fa2-4199-8f32-d33a94621f95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20806,ce003831-a9f8-48db-a3d5-104cbcb45444,LIST_ACCOUNTS,hbciListAccounts,false +20807,ce003831-a9f8-48db-a3d5-104cbcb45444,LIST_TRANSACTIONS,hbciListTransactions,false +20808,ce003831-a9f8-48db-a3d5-104cbcb45444,AUTHORIZATION,,false +20809,ce003831-a9f8-48db-a3d5-104cbcb45444,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20810,ce003831-a9f8-48db-a3d5-104cbcb45444,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20811,ce003831-a9f8-48db-a3d5-104cbcb45444,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20812,7607b0f9-1a99-40b7-a177-5222178f6a14,LIST_ACCOUNTS,xs2aListAccounts,true -20813,7607b0f9-1a99-40b7-a177-5222178f6a14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20813,7607b0f9-1a99-40b7-a177-5222178f6a14,LIST_TRANSACTIONS,xs2aListTransactions,true 20814,7607b0f9-1a99-40b7-a177-5222178f6a14,AUTHORIZATION,,true 20815,7607b0f9-1a99-40b7-a177-5222178f6a14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20816,7607b0f9-1a99-40b7-a177-5222178f6a14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20817,7607b0f9-1a99-40b7-a177-5222178f6a14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20818,fadba679-a64d-49df-a2d5-bccd78e4b621,LIST_ACCOUNTS,hbciListAccounts,false -20819,fadba679-a64d-49df-a2d5-bccd78e4b621,LIST_TRANSACTIONS,hbciListTransactions,false -20820,fadba679-a64d-49df-a2d5-bccd78e4b621,AUTHORIZATION,,false -20821,fadba679-a64d-49df-a2d5-bccd78e4b621,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20822,fadba679-a64d-49df-a2d5-bccd78e4b621,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20823,fadba679-a64d-49df-a2d5-bccd78e4b621,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20818,1fb1a689-1359-4792-bbaa-da5b77410ed0,LIST_ACCOUNTS,hbciListAccounts,false +20819,1fb1a689-1359-4792-bbaa-da5b77410ed0,LIST_TRANSACTIONS,hbciListTransactions,false +20820,1fb1a689-1359-4792-bbaa-da5b77410ed0,AUTHORIZATION,,false +20821,1fb1a689-1359-4792-bbaa-da5b77410ed0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20822,1fb1a689-1359-4792-bbaa-da5b77410ed0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20823,1fb1a689-1359-4792-bbaa-da5b77410ed0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20824,1a017b6c-af62-4a60-8583-80d58cde8e22,LIST_ACCOUNTS,xs2aListAccounts,true -20825,1a017b6c-af62-4a60-8583-80d58cde8e22,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20825,1a017b6c-af62-4a60-8583-80d58cde8e22,LIST_TRANSACTIONS,xs2aListTransactions,true 20826,1a017b6c-af62-4a60-8583-80d58cde8e22,AUTHORIZATION,,true 20827,1a017b6c-af62-4a60-8583-80d58cde8e22,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20828,1a017b6c-af62-4a60-8583-80d58cde8e22,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20829,1a017b6c-af62-4a60-8583-80d58cde8e22,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20830,6af69266-f133-4eec-b9a3-2ca3148762cb,LIST_ACCOUNTS,hbciListAccounts,false -20831,6af69266-f133-4eec-b9a3-2ca3148762cb,LIST_TRANSACTIONS,hbciListTransactions,false -20832,6af69266-f133-4eec-b9a3-2ca3148762cb,AUTHORIZATION,,false -20833,6af69266-f133-4eec-b9a3-2ca3148762cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20834,6af69266-f133-4eec-b9a3-2ca3148762cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20835,6af69266-f133-4eec-b9a3-2ca3148762cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20830,878b1cc1-8c12-4a91-a4de-f0a195d5339f,LIST_ACCOUNTS,hbciListAccounts,false +20831,878b1cc1-8c12-4a91-a4de-f0a195d5339f,LIST_TRANSACTIONS,hbciListTransactions,false +20832,878b1cc1-8c12-4a91-a4de-f0a195d5339f,AUTHORIZATION,,false +20833,878b1cc1-8c12-4a91-a4de-f0a195d5339f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20834,878b1cc1-8c12-4a91-a4de-f0a195d5339f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20835,878b1cc1-8c12-4a91-a4de-f0a195d5339f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20836,e7c3f6b4-dea6-476d-9a88-59e4c91df2a6,LIST_ACCOUNTS,xs2aListAccounts,true -20837,e7c3f6b4-dea6-476d-9a88-59e4c91df2a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20837,e7c3f6b4-dea6-476d-9a88-59e4c91df2a6,LIST_TRANSACTIONS,xs2aListTransactions,true 20838,e7c3f6b4-dea6-476d-9a88-59e4c91df2a6,AUTHORIZATION,,true 20839,e7c3f6b4-dea6-476d-9a88-59e4c91df2a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20840,e7c3f6b4-dea6-476d-9a88-59e4c91df2a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20841,e7c3f6b4-dea6-476d-9a88-59e4c91df2a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20842,41c676de-b2b7-4f1e-a27f-ad6a85dcbc30,LIST_ACCOUNTS,hbciListAccounts,false -20843,41c676de-b2b7-4f1e-a27f-ad6a85dcbc30,LIST_TRANSACTIONS,hbciListTransactions,false -20844,41c676de-b2b7-4f1e-a27f-ad6a85dcbc30,AUTHORIZATION,,false -20845,41c676de-b2b7-4f1e-a27f-ad6a85dcbc30,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20846,41c676de-b2b7-4f1e-a27f-ad6a85dcbc30,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20847,41c676de-b2b7-4f1e-a27f-ad6a85dcbc30,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20842,661a6f9d-64df-43d0-afb9-61d54f989260,LIST_ACCOUNTS,hbciListAccounts,false +20843,661a6f9d-64df-43d0-afb9-61d54f989260,LIST_TRANSACTIONS,hbciListTransactions,false +20844,661a6f9d-64df-43d0-afb9-61d54f989260,AUTHORIZATION,,false +20845,661a6f9d-64df-43d0-afb9-61d54f989260,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20846,661a6f9d-64df-43d0-afb9-61d54f989260,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20847,661a6f9d-64df-43d0-afb9-61d54f989260,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20848,b74d53b2-9d0d-4e56-970e-ea1cf2c517a7,LIST_ACCOUNTS,xs2aListAccounts,true -20849,b74d53b2-9d0d-4e56-970e-ea1cf2c517a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20849,b74d53b2-9d0d-4e56-970e-ea1cf2c517a7,LIST_TRANSACTIONS,xs2aListTransactions,true 20850,b74d53b2-9d0d-4e56-970e-ea1cf2c517a7,AUTHORIZATION,,true 20851,b74d53b2-9d0d-4e56-970e-ea1cf2c517a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20852,b74d53b2-9d0d-4e56-970e-ea1cf2c517a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20853,b74d53b2-9d0d-4e56-970e-ea1cf2c517a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20854,54437b09-ca43-41c3-95bd-e35db524a31a,LIST_ACCOUNTS,hbciListAccounts,false -20855,54437b09-ca43-41c3-95bd-e35db524a31a,LIST_TRANSACTIONS,hbciListTransactions,false -20856,54437b09-ca43-41c3-95bd-e35db524a31a,AUTHORIZATION,,false -20857,54437b09-ca43-41c3-95bd-e35db524a31a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20858,54437b09-ca43-41c3-95bd-e35db524a31a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20859,54437b09-ca43-41c3-95bd-e35db524a31a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20854,df8bbcf1-a811-4ec3-9500-b70b23bd1abc,LIST_ACCOUNTS,hbciListAccounts,false +20855,df8bbcf1-a811-4ec3-9500-b70b23bd1abc,LIST_TRANSACTIONS,hbciListTransactions,false +20856,df8bbcf1-a811-4ec3-9500-b70b23bd1abc,AUTHORIZATION,,false +20857,df8bbcf1-a811-4ec3-9500-b70b23bd1abc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20858,df8bbcf1-a811-4ec3-9500-b70b23bd1abc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20859,df8bbcf1-a811-4ec3-9500-b70b23bd1abc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20860,034ddc68-5db0-42f4-bf38-c71c9f01fbdd,LIST_ACCOUNTS,xs2aListAccounts,true -20861,034ddc68-5db0-42f4-bf38-c71c9f01fbdd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20861,034ddc68-5db0-42f4-bf38-c71c9f01fbdd,LIST_TRANSACTIONS,xs2aListTransactions,true 20862,034ddc68-5db0-42f4-bf38-c71c9f01fbdd,AUTHORIZATION,,true 20863,034ddc68-5db0-42f4-bf38-c71c9f01fbdd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20864,034ddc68-5db0-42f4-bf38-c71c9f01fbdd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20865,034ddc68-5db0-42f4-bf38-c71c9f01fbdd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20866,7d61b89f-efdc-4330-8593-270d890f57d9,LIST_ACCOUNTS,hbciListAccounts,false -20867,7d61b89f-efdc-4330-8593-270d890f57d9,LIST_TRANSACTIONS,hbciListTransactions,false -20868,7d61b89f-efdc-4330-8593-270d890f57d9,AUTHORIZATION,,false -20869,7d61b89f-efdc-4330-8593-270d890f57d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20870,7d61b89f-efdc-4330-8593-270d890f57d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20871,7d61b89f-efdc-4330-8593-270d890f57d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20866,62632e56-9580-4a6f-bcb8-788e8262c187,LIST_ACCOUNTS,hbciListAccounts,false +20867,62632e56-9580-4a6f-bcb8-788e8262c187,LIST_TRANSACTIONS,hbciListTransactions,false +20868,62632e56-9580-4a6f-bcb8-788e8262c187,AUTHORIZATION,,false +20869,62632e56-9580-4a6f-bcb8-788e8262c187,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20870,62632e56-9580-4a6f-bcb8-788e8262c187,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20871,62632e56-9580-4a6f-bcb8-788e8262c187,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20872,5f24ca52-2bbd-4f76-8957-1debe66470f4,LIST_ACCOUNTS,xs2aListAccounts,true -20873,5f24ca52-2bbd-4f76-8957-1debe66470f4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20873,5f24ca52-2bbd-4f76-8957-1debe66470f4,LIST_TRANSACTIONS,xs2aListTransactions,true 20874,5f24ca52-2bbd-4f76-8957-1debe66470f4,AUTHORIZATION,,true 20875,5f24ca52-2bbd-4f76-8957-1debe66470f4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20876,5f24ca52-2bbd-4f76-8957-1debe66470f4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20877,5f24ca52-2bbd-4f76-8957-1debe66470f4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20878,71e271ad-fdae-470d-aeb8-09841374252b,LIST_ACCOUNTS,hbciListAccounts,false -20879,71e271ad-fdae-470d-aeb8-09841374252b,LIST_TRANSACTIONS,hbciListTransactions,false -20880,71e271ad-fdae-470d-aeb8-09841374252b,AUTHORIZATION,,false -20881,71e271ad-fdae-470d-aeb8-09841374252b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20882,71e271ad-fdae-470d-aeb8-09841374252b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20883,71e271ad-fdae-470d-aeb8-09841374252b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20878,98fb1cbd-db2f-422a-a0e9-0d912ebbbcf3,LIST_ACCOUNTS,hbciListAccounts,false +20879,98fb1cbd-db2f-422a-a0e9-0d912ebbbcf3,LIST_TRANSACTIONS,hbciListTransactions,false +20880,98fb1cbd-db2f-422a-a0e9-0d912ebbbcf3,AUTHORIZATION,,false +20881,98fb1cbd-db2f-422a-a0e9-0d912ebbbcf3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20882,98fb1cbd-db2f-422a-a0e9-0d912ebbbcf3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20883,98fb1cbd-db2f-422a-a0e9-0d912ebbbcf3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20884,92e450e6-e1ef-4822-bc89-4a96a2e9bdd9,LIST_ACCOUNTS,xs2aListAccounts,true -20885,92e450e6-e1ef-4822-bc89-4a96a2e9bdd9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20885,92e450e6-e1ef-4822-bc89-4a96a2e9bdd9,LIST_TRANSACTIONS,xs2aListTransactions,true 20886,92e450e6-e1ef-4822-bc89-4a96a2e9bdd9,AUTHORIZATION,,true 20887,92e450e6-e1ef-4822-bc89-4a96a2e9bdd9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20888,92e450e6-e1ef-4822-bc89-4a96a2e9bdd9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20889,92e450e6-e1ef-4822-bc89-4a96a2e9bdd9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20890,4e793d5f-e888-4b7d-8071-1cf1e01d1e1c,LIST_ACCOUNTS,hbciListAccounts,false -20891,4e793d5f-e888-4b7d-8071-1cf1e01d1e1c,LIST_TRANSACTIONS,hbciListTransactions,false -20892,4e793d5f-e888-4b7d-8071-1cf1e01d1e1c,AUTHORIZATION,,false -20893,4e793d5f-e888-4b7d-8071-1cf1e01d1e1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20894,4e793d5f-e888-4b7d-8071-1cf1e01d1e1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20895,4e793d5f-e888-4b7d-8071-1cf1e01d1e1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20890,7139c80a-403b-4cba-8b7e-02db2f5b960a,LIST_ACCOUNTS,hbciListAccounts,false +20891,7139c80a-403b-4cba-8b7e-02db2f5b960a,LIST_TRANSACTIONS,hbciListTransactions,false +20892,7139c80a-403b-4cba-8b7e-02db2f5b960a,AUTHORIZATION,,false +20893,7139c80a-403b-4cba-8b7e-02db2f5b960a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20894,7139c80a-403b-4cba-8b7e-02db2f5b960a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20895,7139c80a-403b-4cba-8b7e-02db2f5b960a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20896,36ced8f8-28b8-4190-bdfd-085f36f368b1,LIST_ACCOUNTS,xs2aListAccounts,true -20897,36ced8f8-28b8-4190-bdfd-085f36f368b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20897,36ced8f8-28b8-4190-bdfd-085f36f368b1,LIST_TRANSACTIONS,xs2aListTransactions,true 20898,36ced8f8-28b8-4190-bdfd-085f36f368b1,AUTHORIZATION,,true 20899,36ced8f8-28b8-4190-bdfd-085f36f368b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20900,36ced8f8-28b8-4190-bdfd-085f36f368b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20901,36ced8f8-28b8-4190-bdfd-085f36f368b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20902,6bc9fc54-ffda-4c83-9be1-5bb7b3dc19e1,LIST_ACCOUNTS,hbciListAccounts,false -20903,6bc9fc54-ffda-4c83-9be1-5bb7b3dc19e1,LIST_TRANSACTIONS,hbciListTransactions,false -20904,6bc9fc54-ffda-4c83-9be1-5bb7b3dc19e1,AUTHORIZATION,,false -20905,6bc9fc54-ffda-4c83-9be1-5bb7b3dc19e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20906,6bc9fc54-ffda-4c83-9be1-5bb7b3dc19e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20907,6bc9fc54-ffda-4c83-9be1-5bb7b3dc19e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20902,f2d3d6e3-4769-4bf5-93cd-0629725acb29,LIST_ACCOUNTS,hbciListAccounts,false +20903,f2d3d6e3-4769-4bf5-93cd-0629725acb29,LIST_TRANSACTIONS,hbciListTransactions,false +20904,f2d3d6e3-4769-4bf5-93cd-0629725acb29,AUTHORIZATION,,false +20905,f2d3d6e3-4769-4bf5-93cd-0629725acb29,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20906,f2d3d6e3-4769-4bf5-93cd-0629725acb29,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20907,f2d3d6e3-4769-4bf5-93cd-0629725acb29,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20908,b7bda724-5b81-4c20-b31f-35c2c596051b,LIST_ACCOUNTS,xs2aListAccounts,true -20909,b7bda724-5b81-4c20-b31f-35c2c596051b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20909,b7bda724-5b81-4c20-b31f-35c2c596051b,LIST_TRANSACTIONS,xs2aListTransactions,true 20910,b7bda724-5b81-4c20-b31f-35c2c596051b,AUTHORIZATION,,true 20911,b7bda724-5b81-4c20-b31f-35c2c596051b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20912,b7bda724-5b81-4c20-b31f-35c2c596051b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20913,b7bda724-5b81-4c20-b31f-35c2c596051b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20914,e975cd4d-8539-4424-8887-cb635837fc55,LIST_ACCOUNTS,hbciListAccounts,false -20915,e975cd4d-8539-4424-8887-cb635837fc55,LIST_TRANSACTIONS,hbciListTransactions,false -20916,e975cd4d-8539-4424-8887-cb635837fc55,AUTHORIZATION,,false -20917,e975cd4d-8539-4424-8887-cb635837fc55,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20918,e975cd4d-8539-4424-8887-cb635837fc55,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20919,e975cd4d-8539-4424-8887-cb635837fc55,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20914,46e438cc-fac4-4e28-ad04-8ddc17a7810f,LIST_ACCOUNTS,hbciListAccounts,false +20915,46e438cc-fac4-4e28-ad04-8ddc17a7810f,LIST_TRANSACTIONS,hbciListTransactions,false +20916,46e438cc-fac4-4e28-ad04-8ddc17a7810f,AUTHORIZATION,,false +20917,46e438cc-fac4-4e28-ad04-8ddc17a7810f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20918,46e438cc-fac4-4e28-ad04-8ddc17a7810f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20919,46e438cc-fac4-4e28-ad04-8ddc17a7810f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20920,654a9028-9313-478f-8fe1-ea84080a0913,LIST_ACCOUNTS,xs2aListAccounts,true -20921,654a9028-9313-478f-8fe1-ea84080a0913,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20921,654a9028-9313-478f-8fe1-ea84080a0913,LIST_TRANSACTIONS,xs2aListTransactions,true 20922,654a9028-9313-478f-8fe1-ea84080a0913,AUTHORIZATION,,true 20923,654a9028-9313-478f-8fe1-ea84080a0913,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20924,654a9028-9313-478f-8fe1-ea84080a0913,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20925,654a9028-9313-478f-8fe1-ea84080a0913,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20926,e908304f-85a7-433e-900d-a4c32b4d4918,LIST_ACCOUNTS,hbciListAccounts,false -20927,e908304f-85a7-433e-900d-a4c32b4d4918,LIST_TRANSACTIONS,hbciListTransactions,false -20928,e908304f-85a7-433e-900d-a4c32b4d4918,AUTHORIZATION,,false -20929,e908304f-85a7-433e-900d-a4c32b4d4918,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20930,e908304f-85a7-433e-900d-a4c32b4d4918,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20931,e908304f-85a7-433e-900d-a4c32b4d4918,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20926,e27f0879-c9e0-407c-98bd-fd7914190197,LIST_ACCOUNTS,hbciListAccounts,false +20927,e27f0879-c9e0-407c-98bd-fd7914190197,LIST_TRANSACTIONS,hbciListTransactions,false +20928,e27f0879-c9e0-407c-98bd-fd7914190197,AUTHORIZATION,,false +20929,e27f0879-c9e0-407c-98bd-fd7914190197,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20930,e27f0879-c9e0-407c-98bd-fd7914190197,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20931,e27f0879-c9e0-407c-98bd-fd7914190197,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20932,63b9e610-a960-4db1-be56-aba811de3903,LIST_ACCOUNTS,xs2aListAccounts,true -20933,63b9e610-a960-4db1-be56-aba811de3903,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20933,63b9e610-a960-4db1-be56-aba811de3903,LIST_TRANSACTIONS,xs2aListTransactions,true 20934,63b9e610-a960-4db1-be56-aba811de3903,AUTHORIZATION,,true 20935,63b9e610-a960-4db1-be56-aba811de3903,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20936,63b9e610-a960-4db1-be56-aba811de3903,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20937,63b9e610-a960-4db1-be56-aba811de3903,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20938,a2a08a75-313a-4d16-aae7-99daab7a855e,LIST_ACCOUNTS,hbciListAccounts,false -20939,a2a08a75-313a-4d16-aae7-99daab7a855e,LIST_TRANSACTIONS,hbciListTransactions,false -20940,a2a08a75-313a-4d16-aae7-99daab7a855e,AUTHORIZATION,,false -20941,a2a08a75-313a-4d16-aae7-99daab7a855e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20942,a2a08a75-313a-4d16-aae7-99daab7a855e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20943,a2a08a75-313a-4d16-aae7-99daab7a855e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20938,70b20c29-b7c8-4d03-aff7-9602a6350c43,LIST_ACCOUNTS,hbciListAccounts,false +20939,70b20c29-b7c8-4d03-aff7-9602a6350c43,LIST_TRANSACTIONS,hbciListTransactions,false +20940,70b20c29-b7c8-4d03-aff7-9602a6350c43,AUTHORIZATION,,false +20941,70b20c29-b7c8-4d03-aff7-9602a6350c43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20942,70b20c29-b7c8-4d03-aff7-9602a6350c43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20943,70b20c29-b7c8-4d03-aff7-9602a6350c43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20944,8b43e449-0ddf-42b3-9bf2-7a91429383ab,LIST_ACCOUNTS,xs2aListAccounts,true -20945,8b43e449-0ddf-42b3-9bf2-7a91429383ab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20945,8b43e449-0ddf-42b3-9bf2-7a91429383ab,LIST_TRANSACTIONS,xs2aListTransactions,true 20946,8b43e449-0ddf-42b3-9bf2-7a91429383ab,AUTHORIZATION,,true 20947,8b43e449-0ddf-42b3-9bf2-7a91429383ab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20948,8b43e449-0ddf-42b3-9bf2-7a91429383ab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20949,8b43e449-0ddf-42b3-9bf2-7a91429383ab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20950,a33fc3da-701a-4fc3-ad0f-7ed6fbcfec74,LIST_ACCOUNTS,hbciListAccounts,false -20951,a33fc3da-701a-4fc3-ad0f-7ed6fbcfec74,LIST_TRANSACTIONS,hbciListTransactions,false -20952,a33fc3da-701a-4fc3-ad0f-7ed6fbcfec74,AUTHORIZATION,,false -20953,a33fc3da-701a-4fc3-ad0f-7ed6fbcfec74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20954,a33fc3da-701a-4fc3-ad0f-7ed6fbcfec74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20955,a33fc3da-701a-4fc3-ad0f-7ed6fbcfec74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20950,9e9f9a1b-1cf8-473e-bfef-91b3abe416ad,LIST_ACCOUNTS,hbciListAccounts,false +20951,9e9f9a1b-1cf8-473e-bfef-91b3abe416ad,LIST_TRANSACTIONS,hbciListTransactions,false +20952,9e9f9a1b-1cf8-473e-bfef-91b3abe416ad,AUTHORIZATION,,false +20953,9e9f9a1b-1cf8-473e-bfef-91b3abe416ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20954,9e9f9a1b-1cf8-473e-bfef-91b3abe416ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20955,9e9f9a1b-1cf8-473e-bfef-91b3abe416ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20956,4886d389-a096-419f-b852-1084d63408df,LIST_ACCOUNTS,xs2aListAccounts,true -20957,4886d389-a096-419f-b852-1084d63408df,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20957,4886d389-a096-419f-b852-1084d63408df,LIST_TRANSACTIONS,xs2aListTransactions,true 20958,4886d389-a096-419f-b852-1084d63408df,AUTHORIZATION,,true 20959,4886d389-a096-419f-b852-1084d63408df,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20960,4886d389-a096-419f-b852-1084d63408df,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20961,4886d389-a096-419f-b852-1084d63408df,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20962,6d33a58d-2afd-43aa-84ee-41ed075f4ed1,LIST_ACCOUNTS,hbciListAccounts,false -20963,6d33a58d-2afd-43aa-84ee-41ed075f4ed1,LIST_TRANSACTIONS,hbciListTransactions,false -20964,6d33a58d-2afd-43aa-84ee-41ed075f4ed1,AUTHORIZATION,,false -20965,6d33a58d-2afd-43aa-84ee-41ed075f4ed1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20966,6d33a58d-2afd-43aa-84ee-41ed075f4ed1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20967,6d33a58d-2afd-43aa-84ee-41ed075f4ed1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20962,b26f84ce-639f-4be2-aaf6-badfa9fb0d6e,LIST_ACCOUNTS,hbciListAccounts,false +20963,b26f84ce-639f-4be2-aaf6-badfa9fb0d6e,LIST_TRANSACTIONS,hbciListTransactions,false +20964,b26f84ce-639f-4be2-aaf6-badfa9fb0d6e,AUTHORIZATION,,false +20965,b26f84ce-639f-4be2-aaf6-badfa9fb0d6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20966,b26f84ce-639f-4be2-aaf6-badfa9fb0d6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20967,b26f84ce-639f-4be2-aaf6-badfa9fb0d6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20968,df9d8b56-c92d-406a-a699-669fa4249909,LIST_ACCOUNTS,xs2aListAccounts,true -20969,df9d8b56-c92d-406a-a699-669fa4249909,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20969,df9d8b56-c92d-406a-a699-669fa4249909,LIST_TRANSACTIONS,xs2aListTransactions,true 20970,df9d8b56-c92d-406a-a699-669fa4249909,AUTHORIZATION,,true 20971,df9d8b56-c92d-406a-a699-669fa4249909,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20972,df9d8b56-c92d-406a-a699-669fa4249909,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20973,df9d8b56-c92d-406a-a699-669fa4249909,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20974,6f90cc63-290d-4807-ae1e-3016ab38fc28,LIST_ACCOUNTS,hbciListAccounts,false -20975,6f90cc63-290d-4807-ae1e-3016ab38fc28,LIST_TRANSACTIONS,hbciListTransactions,false -20976,6f90cc63-290d-4807-ae1e-3016ab38fc28,AUTHORIZATION,,false -20977,6f90cc63-290d-4807-ae1e-3016ab38fc28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20978,6f90cc63-290d-4807-ae1e-3016ab38fc28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20979,6f90cc63-290d-4807-ae1e-3016ab38fc28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20974,68ed0cfa-9ecc-47f8-a742-62d6eeb27d9f,LIST_ACCOUNTS,hbciListAccounts,false +20975,68ed0cfa-9ecc-47f8-a742-62d6eeb27d9f,LIST_TRANSACTIONS,hbciListTransactions,false +20976,68ed0cfa-9ecc-47f8-a742-62d6eeb27d9f,AUTHORIZATION,,false +20977,68ed0cfa-9ecc-47f8-a742-62d6eeb27d9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20978,68ed0cfa-9ecc-47f8-a742-62d6eeb27d9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20979,68ed0cfa-9ecc-47f8-a742-62d6eeb27d9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20980,224ec6c5-6a66-4686-9a93-30f909312740,LIST_ACCOUNTS,xs2aListAccounts,true -20981,224ec6c5-6a66-4686-9a93-30f909312740,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20981,224ec6c5-6a66-4686-9a93-30f909312740,LIST_TRANSACTIONS,xs2aListTransactions,true 20982,224ec6c5-6a66-4686-9a93-30f909312740,AUTHORIZATION,,true 20983,224ec6c5-6a66-4686-9a93-30f909312740,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20984,224ec6c5-6a66-4686-9a93-30f909312740,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20985,224ec6c5-6a66-4686-9a93-30f909312740,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20986,e8af5305-1112-40b7-ba1d-51d705aeab17,LIST_ACCOUNTS,hbciListAccounts,false -20987,e8af5305-1112-40b7-ba1d-51d705aeab17,LIST_TRANSACTIONS,hbciListTransactions,false -20988,e8af5305-1112-40b7-ba1d-51d705aeab17,AUTHORIZATION,,false -20989,e8af5305-1112-40b7-ba1d-51d705aeab17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -20990,e8af5305-1112-40b7-ba1d-51d705aeab17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -20991,e8af5305-1112-40b7-ba1d-51d705aeab17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20986,d5dfc2c6-0c03-454c-8b74-8f119a4bfcc9,LIST_ACCOUNTS,hbciListAccounts,false +20987,d5dfc2c6-0c03-454c-8b74-8f119a4bfcc9,LIST_TRANSACTIONS,hbciListTransactions,false +20988,d5dfc2c6-0c03-454c-8b74-8f119a4bfcc9,AUTHORIZATION,,false +20989,d5dfc2c6-0c03-454c-8b74-8f119a4bfcc9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +20990,d5dfc2c6-0c03-454c-8b74-8f119a4bfcc9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +20991,d5dfc2c6-0c03-454c-8b74-8f119a4bfcc9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 20992,2bfef4ee-4680-4fcf-a28e-b1ee2d0edc3f,LIST_ACCOUNTS,xs2aListAccounts,true -20993,2bfef4ee-4680-4fcf-a28e-b1ee2d0edc3f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +20993,2bfef4ee-4680-4fcf-a28e-b1ee2d0edc3f,LIST_TRANSACTIONS,xs2aListTransactions,true 20994,2bfef4ee-4680-4fcf-a28e-b1ee2d0edc3f,AUTHORIZATION,,true 20995,2bfef4ee-4680-4fcf-a28e-b1ee2d0edc3f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 20996,2bfef4ee-4680-4fcf-a28e-b1ee2d0edc3f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 20997,2bfef4ee-4680-4fcf-a28e-b1ee2d0edc3f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -20998,5af62044-df7c-4405-acc6-f5bcbabe18a6,LIST_ACCOUNTS,hbciListAccounts,false -20999,5af62044-df7c-4405-acc6-f5bcbabe18a6,LIST_TRANSACTIONS,hbciListTransactions,false -21000,5af62044-df7c-4405-acc6-f5bcbabe18a6,AUTHORIZATION,,false -21001,5af62044-df7c-4405-acc6-f5bcbabe18a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21002,5af62044-df7c-4405-acc6-f5bcbabe18a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21003,5af62044-df7c-4405-acc6-f5bcbabe18a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +20998,5163fe69-32ff-4c9c-a500-df4b910509ac,LIST_ACCOUNTS,hbciListAccounts,false +20999,5163fe69-32ff-4c9c-a500-df4b910509ac,LIST_TRANSACTIONS,hbciListTransactions,false +21000,5163fe69-32ff-4c9c-a500-df4b910509ac,AUTHORIZATION,,false +21001,5163fe69-32ff-4c9c-a500-df4b910509ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21002,5163fe69-32ff-4c9c-a500-df4b910509ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21003,5163fe69-32ff-4c9c-a500-df4b910509ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21004,fb84bc75-f7c4-4a0e-a874-aaff9d9e3cf9,LIST_ACCOUNTS,xs2aListAccounts,true -21005,fb84bc75-f7c4-4a0e-a874-aaff9d9e3cf9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21005,fb84bc75-f7c4-4a0e-a874-aaff9d9e3cf9,LIST_TRANSACTIONS,xs2aListTransactions,true 21006,fb84bc75-f7c4-4a0e-a874-aaff9d9e3cf9,AUTHORIZATION,,true 21007,fb84bc75-f7c4-4a0e-a874-aaff9d9e3cf9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21008,fb84bc75-f7c4-4a0e-a874-aaff9d9e3cf9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21009,fb84bc75-f7c4-4a0e-a874-aaff9d9e3cf9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21010,89e34459-3312-4e60-8b52-5a6aa2f21d8e,LIST_ACCOUNTS,hbciListAccounts,false -21011,89e34459-3312-4e60-8b52-5a6aa2f21d8e,LIST_TRANSACTIONS,hbciListTransactions,false -21012,89e34459-3312-4e60-8b52-5a6aa2f21d8e,AUTHORIZATION,,false -21013,89e34459-3312-4e60-8b52-5a6aa2f21d8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21014,89e34459-3312-4e60-8b52-5a6aa2f21d8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21015,89e34459-3312-4e60-8b52-5a6aa2f21d8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21010,b60fdaeb-cf13-47e8-b846-f90ecf368ced,LIST_ACCOUNTS,hbciListAccounts,false +21011,b60fdaeb-cf13-47e8-b846-f90ecf368ced,LIST_TRANSACTIONS,hbciListTransactions,false +21012,b60fdaeb-cf13-47e8-b846-f90ecf368ced,AUTHORIZATION,,false +21013,b60fdaeb-cf13-47e8-b846-f90ecf368ced,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21014,b60fdaeb-cf13-47e8-b846-f90ecf368ced,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21015,b60fdaeb-cf13-47e8-b846-f90ecf368ced,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21016,8cfee2f4-d143-4fa1-a03b-65ca65738270,LIST_ACCOUNTS,xs2aListAccounts,true -21017,8cfee2f4-d143-4fa1-a03b-65ca65738270,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21017,8cfee2f4-d143-4fa1-a03b-65ca65738270,LIST_TRANSACTIONS,xs2aListTransactions,true 21018,8cfee2f4-d143-4fa1-a03b-65ca65738270,AUTHORIZATION,,true 21019,8cfee2f4-d143-4fa1-a03b-65ca65738270,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21020,8cfee2f4-d143-4fa1-a03b-65ca65738270,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21021,8cfee2f4-d143-4fa1-a03b-65ca65738270,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21022,fffcb3f8-fd61-46ac-861f-36290e9023b6,LIST_ACCOUNTS,hbciListAccounts,false -21023,fffcb3f8-fd61-46ac-861f-36290e9023b6,LIST_TRANSACTIONS,hbciListTransactions,false -21024,fffcb3f8-fd61-46ac-861f-36290e9023b6,AUTHORIZATION,,false -21025,fffcb3f8-fd61-46ac-861f-36290e9023b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21026,fffcb3f8-fd61-46ac-861f-36290e9023b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21027,fffcb3f8-fd61-46ac-861f-36290e9023b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21022,f9393d9a-8fd0-42f8-b9cb-d4015d8c8f8f,LIST_ACCOUNTS,hbciListAccounts,false +21023,f9393d9a-8fd0-42f8-b9cb-d4015d8c8f8f,LIST_TRANSACTIONS,hbciListTransactions,false +21024,f9393d9a-8fd0-42f8-b9cb-d4015d8c8f8f,AUTHORIZATION,,false +21025,f9393d9a-8fd0-42f8-b9cb-d4015d8c8f8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21026,f9393d9a-8fd0-42f8-b9cb-d4015d8c8f8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21027,f9393d9a-8fd0-42f8-b9cb-d4015d8c8f8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21028,6f9cf5e0-c2f9-4b25-b87b-8009aec6805d,LIST_ACCOUNTS,xs2aListAccounts,true -21029,6f9cf5e0-c2f9-4b25-b87b-8009aec6805d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21029,6f9cf5e0-c2f9-4b25-b87b-8009aec6805d,LIST_TRANSACTIONS,xs2aListTransactions,true 21030,6f9cf5e0-c2f9-4b25-b87b-8009aec6805d,AUTHORIZATION,,true 21031,6f9cf5e0-c2f9-4b25-b87b-8009aec6805d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21032,6f9cf5e0-c2f9-4b25-b87b-8009aec6805d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21033,6f9cf5e0-c2f9-4b25-b87b-8009aec6805d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21034,3748f2f3-80fb-4629-b676-426fbcaa112e,LIST_ACCOUNTS,hbciListAccounts,false -21035,3748f2f3-80fb-4629-b676-426fbcaa112e,LIST_TRANSACTIONS,hbciListTransactions,false -21036,3748f2f3-80fb-4629-b676-426fbcaa112e,AUTHORIZATION,,false -21037,3748f2f3-80fb-4629-b676-426fbcaa112e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21038,3748f2f3-80fb-4629-b676-426fbcaa112e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21039,3748f2f3-80fb-4629-b676-426fbcaa112e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21034,aa774d00-1414-4dd6-aace-9d05b92809b5,LIST_ACCOUNTS,hbciListAccounts,false +21035,aa774d00-1414-4dd6-aace-9d05b92809b5,LIST_TRANSACTIONS,hbciListTransactions,false +21036,aa774d00-1414-4dd6-aace-9d05b92809b5,AUTHORIZATION,,false +21037,aa774d00-1414-4dd6-aace-9d05b92809b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21038,aa774d00-1414-4dd6-aace-9d05b92809b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21039,aa774d00-1414-4dd6-aace-9d05b92809b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21040,f282d792-d96e-4029-bd49-64dcfc5fde35,LIST_ACCOUNTS,xs2aListAccounts,true -21041,f282d792-d96e-4029-bd49-64dcfc5fde35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21041,f282d792-d96e-4029-bd49-64dcfc5fde35,LIST_TRANSACTIONS,xs2aListTransactions,true 21042,f282d792-d96e-4029-bd49-64dcfc5fde35,AUTHORIZATION,,true 21043,f282d792-d96e-4029-bd49-64dcfc5fde35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21044,f282d792-d96e-4029-bd49-64dcfc5fde35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21045,f282d792-d96e-4029-bd49-64dcfc5fde35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21046,d648bbdc-462c-4902-aed5-277cfc0886a7,LIST_ACCOUNTS,hbciListAccounts,false -21047,d648bbdc-462c-4902-aed5-277cfc0886a7,LIST_TRANSACTIONS,hbciListTransactions,false -21048,d648bbdc-462c-4902-aed5-277cfc0886a7,AUTHORIZATION,,false -21049,d648bbdc-462c-4902-aed5-277cfc0886a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21050,d648bbdc-462c-4902-aed5-277cfc0886a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21051,d648bbdc-462c-4902-aed5-277cfc0886a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21046,7b41bedd-2085-41ff-820d-8f24dcd932da,LIST_ACCOUNTS,hbciListAccounts,false +21047,7b41bedd-2085-41ff-820d-8f24dcd932da,LIST_TRANSACTIONS,hbciListTransactions,false +21048,7b41bedd-2085-41ff-820d-8f24dcd932da,AUTHORIZATION,,false +21049,7b41bedd-2085-41ff-820d-8f24dcd932da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21050,7b41bedd-2085-41ff-820d-8f24dcd932da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21051,7b41bedd-2085-41ff-820d-8f24dcd932da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21052,18226562-b164-4a7a-b5a3-47af8be85fe9,LIST_ACCOUNTS,xs2aListAccounts,true -21053,18226562-b164-4a7a-b5a3-47af8be85fe9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21053,18226562-b164-4a7a-b5a3-47af8be85fe9,LIST_TRANSACTIONS,xs2aListTransactions,true 21054,18226562-b164-4a7a-b5a3-47af8be85fe9,AUTHORIZATION,,true 21055,18226562-b164-4a7a-b5a3-47af8be85fe9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21056,18226562-b164-4a7a-b5a3-47af8be85fe9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21057,18226562-b164-4a7a-b5a3-47af8be85fe9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21058,839deb8c-a93d-4404-8e3e-c99353db92a8,LIST_ACCOUNTS,hbciListAccounts,false -21059,839deb8c-a93d-4404-8e3e-c99353db92a8,LIST_TRANSACTIONS,hbciListTransactions,false -21060,839deb8c-a93d-4404-8e3e-c99353db92a8,AUTHORIZATION,,false -21061,839deb8c-a93d-4404-8e3e-c99353db92a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21062,839deb8c-a93d-4404-8e3e-c99353db92a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21063,839deb8c-a93d-4404-8e3e-c99353db92a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21058,4f80d194-ed33-4b42-9a75-876b9e82a519,LIST_ACCOUNTS,hbciListAccounts,false +21059,4f80d194-ed33-4b42-9a75-876b9e82a519,LIST_TRANSACTIONS,hbciListTransactions,false +21060,4f80d194-ed33-4b42-9a75-876b9e82a519,AUTHORIZATION,,false +21061,4f80d194-ed33-4b42-9a75-876b9e82a519,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21062,4f80d194-ed33-4b42-9a75-876b9e82a519,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21063,4f80d194-ed33-4b42-9a75-876b9e82a519,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21064,22cf7171-4d2f-46cd-845e-1b43d677208a,LIST_ACCOUNTS,xs2aListAccounts,true -21065,22cf7171-4d2f-46cd-845e-1b43d677208a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21065,22cf7171-4d2f-46cd-845e-1b43d677208a,LIST_TRANSACTIONS,xs2aListTransactions,true 21066,22cf7171-4d2f-46cd-845e-1b43d677208a,AUTHORIZATION,,true 21067,22cf7171-4d2f-46cd-845e-1b43d677208a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21068,22cf7171-4d2f-46cd-845e-1b43d677208a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21069,22cf7171-4d2f-46cd-845e-1b43d677208a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21070,2d55cc97-2ca1-432f-b391-71df960163fa,LIST_ACCOUNTS,hbciListAccounts,false -21071,2d55cc97-2ca1-432f-b391-71df960163fa,LIST_TRANSACTIONS,hbciListTransactions,false -21072,2d55cc97-2ca1-432f-b391-71df960163fa,AUTHORIZATION,,false -21073,2d55cc97-2ca1-432f-b391-71df960163fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21074,2d55cc97-2ca1-432f-b391-71df960163fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21075,2d55cc97-2ca1-432f-b391-71df960163fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21070,a253175e-b0d1-4488-bc60-e31a7a9a9dbe,LIST_ACCOUNTS,hbciListAccounts,false +21071,a253175e-b0d1-4488-bc60-e31a7a9a9dbe,LIST_TRANSACTIONS,hbciListTransactions,false +21072,a253175e-b0d1-4488-bc60-e31a7a9a9dbe,AUTHORIZATION,,false +21073,a253175e-b0d1-4488-bc60-e31a7a9a9dbe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21074,a253175e-b0d1-4488-bc60-e31a7a9a9dbe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21075,a253175e-b0d1-4488-bc60-e31a7a9a9dbe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21076,8d0e4731-1a57-450d-8954-e4ab8dc20eeb,LIST_ACCOUNTS,xs2aListAccounts,true -21077,8d0e4731-1a57-450d-8954-e4ab8dc20eeb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21077,8d0e4731-1a57-450d-8954-e4ab8dc20eeb,LIST_TRANSACTIONS,xs2aListTransactions,true 21078,8d0e4731-1a57-450d-8954-e4ab8dc20eeb,AUTHORIZATION,,true 21079,8d0e4731-1a57-450d-8954-e4ab8dc20eeb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21080,8d0e4731-1a57-450d-8954-e4ab8dc20eeb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21081,8d0e4731-1a57-450d-8954-e4ab8dc20eeb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21082,0d81edb9-87e7-4d61-a01a-59c2bfc074d1,LIST_ACCOUNTS,hbciListAccounts,false -21083,0d81edb9-87e7-4d61-a01a-59c2bfc074d1,LIST_TRANSACTIONS,hbciListTransactions,false -21084,0d81edb9-87e7-4d61-a01a-59c2bfc074d1,AUTHORIZATION,,false -21085,0d81edb9-87e7-4d61-a01a-59c2bfc074d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21086,0d81edb9-87e7-4d61-a01a-59c2bfc074d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21087,0d81edb9-87e7-4d61-a01a-59c2bfc074d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21082,4260c124-21d5-456c-8eb3-f8cbb5c1fdf7,LIST_ACCOUNTS,hbciListAccounts,false +21083,4260c124-21d5-456c-8eb3-f8cbb5c1fdf7,LIST_TRANSACTIONS,hbciListTransactions,false +21084,4260c124-21d5-456c-8eb3-f8cbb5c1fdf7,AUTHORIZATION,,false +21085,4260c124-21d5-456c-8eb3-f8cbb5c1fdf7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21086,4260c124-21d5-456c-8eb3-f8cbb5c1fdf7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21087,4260c124-21d5-456c-8eb3-f8cbb5c1fdf7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21088,a9dd5dbb-c8bd-47df-be03-05cdb93a0eae,LIST_ACCOUNTS,xs2aListAccounts,true -21089,a9dd5dbb-c8bd-47df-be03-05cdb93a0eae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21089,a9dd5dbb-c8bd-47df-be03-05cdb93a0eae,LIST_TRANSACTIONS,xs2aListTransactions,true 21090,a9dd5dbb-c8bd-47df-be03-05cdb93a0eae,AUTHORIZATION,,true 21091,a9dd5dbb-c8bd-47df-be03-05cdb93a0eae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21092,a9dd5dbb-c8bd-47df-be03-05cdb93a0eae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21093,a9dd5dbb-c8bd-47df-be03-05cdb93a0eae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21094,04c19bce-d1c3-4d8b-ba83-2fa22bd3ce27,LIST_ACCOUNTS,hbciListAccounts,false -21095,04c19bce-d1c3-4d8b-ba83-2fa22bd3ce27,LIST_TRANSACTIONS,hbciListTransactions,false -21096,04c19bce-d1c3-4d8b-ba83-2fa22bd3ce27,AUTHORIZATION,,false -21097,04c19bce-d1c3-4d8b-ba83-2fa22bd3ce27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21098,04c19bce-d1c3-4d8b-ba83-2fa22bd3ce27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21099,04c19bce-d1c3-4d8b-ba83-2fa22bd3ce27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21094,a75fc0bf-ded8-493f-8e7e-bdb6c33e4884,LIST_ACCOUNTS,hbciListAccounts,false +21095,a75fc0bf-ded8-493f-8e7e-bdb6c33e4884,LIST_TRANSACTIONS,hbciListTransactions,false +21096,a75fc0bf-ded8-493f-8e7e-bdb6c33e4884,AUTHORIZATION,,false +21097,a75fc0bf-ded8-493f-8e7e-bdb6c33e4884,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21098,a75fc0bf-ded8-493f-8e7e-bdb6c33e4884,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21099,a75fc0bf-ded8-493f-8e7e-bdb6c33e4884,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21100,27dda125-0c4b-428a-9c18-6751428e27d7,LIST_ACCOUNTS,xs2aListAccounts,true -21101,27dda125-0c4b-428a-9c18-6751428e27d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21101,27dda125-0c4b-428a-9c18-6751428e27d7,LIST_TRANSACTIONS,xs2aListTransactions,true 21102,27dda125-0c4b-428a-9c18-6751428e27d7,AUTHORIZATION,,true 21103,27dda125-0c4b-428a-9c18-6751428e27d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21104,27dda125-0c4b-428a-9c18-6751428e27d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21105,27dda125-0c4b-428a-9c18-6751428e27d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21106,75d74efd-fc81-481b-b776-5c0530e04f0a,LIST_ACCOUNTS,hbciListAccounts,false -21107,75d74efd-fc81-481b-b776-5c0530e04f0a,LIST_TRANSACTIONS,hbciListTransactions,false -21108,75d74efd-fc81-481b-b776-5c0530e04f0a,AUTHORIZATION,,false -21109,75d74efd-fc81-481b-b776-5c0530e04f0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21110,75d74efd-fc81-481b-b776-5c0530e04f0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21111,75d74efd-fc81-481b-b776-5c0530e04f0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21106,8e691285-18b0-45e3-b256-4f263016b08a,LIST_ACCOUNTS,hbciListAccounts,false +21107,8e691285-18b0-45e3-b256-4f263016b08a,LIST_TRANSACTIONS,hbciListTransactions,false +21108,8e691285-18b0-45e3-b256-4f263016b08a,AUTHORIZATION,,false +21109,8e691285-18b0-45e3-b256-4f263016b08a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21110,8e691285-18b0-45e3-b256-4f263016b08a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21111,8e691285-18b0-45e3-b256-4f263016b08a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21112,5c82a5f0-2d2c-4bf8-951a-e9bc8aa70e33,LIST_ACCOUNTS,xs2aListAccounts,true -21113,5c82a5f0-2d2c-4bf8-951a-e9bc8aa70e33,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21113,5c82a5f0-2d2c-4bf8-951a-e9bc8aa70e33,LIST_TRANSACTIONS,xs2aListTransactions,true 21114,5c82a5f0-2d2c-4bf8-951a-e9bc8aa70e33,AUTHORIZATION,,true 21115,5c82a5f0-2d2c-4bf8-951a-e9bc8aa70e33,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21116,5c82a5f0-2d2c-4bf8-951a-e9bc8aa70e33,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21117,5c82a5f0-2d2c-4bf8-951a-e9bc8aa70e33,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21118,5c0b7498-0515-4af4-b934-136100e01d45,LIST_ACCOUNTS,hbciListAccounts,false -21119,5c0b7498-0515-4af4-b934-136100e01d45,LIST_TRANSACTIONS,hbciListTransactions,false -21120,5c0b7498-0515-4af4-b934-136100e01d45,AUTHORIZATION,,false -21121,5c0b7498-0515-4af4-b934-136100e01d45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21122,5c0b7498-0515-4af4-b934-136100e01d45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21123,5c0b7498-0515-4af4-b934-136100e01d45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21118,f752c251-1c10-41f4-8b4e-2f66d3a7225b,LIST_ACCOUNTS,hbciListAccounts,false +21119,f752c251-1c10-41f4-8b4e-2f66d3a7225b,LIST_TRANSACTIONS,hbciListTransactions,false +21120,f752c251-1c10-41f4-8b4e-2f66d3a7225b,AUTHORIZATION,,false +21121,f752c251-1c10-41f4-8b4e-2f66d3a7225b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21122,f752c251-1c10-41f4-8b4e-2f66d3a7225b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21123,f752c251-1c10-41f4-8b4e-2f66d3a7225b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21124,defcb459-4c28-49bf-81eb-b2c039fcf4e7,LIST_ACCOUNTS,xs2aListAccounts,true -21125,defcb459-4c28-49bf-81eb-b2c039fcf4e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21125,defcb459-4c28-49bf-81eb-b2c039fcf4e7,LIST_TRANSACTIONS,xs2aListTransactions,true 21126,defcb459-4c28-49bf-81eb-b2c039fcf4e7,AUTHORIZATION,,true 21127,defcb459-4c28-49bf-81eb-b2c039fcf4e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21128,defcb459-4c28-49bf-81eb-b2c039fcf4e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21129,defcb459-4c28-49bf-81eb-b2c039fcf4e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21130,2d2e78d1-baf5-4e3f-be6e-dfef1099a54c,LIST_ACCOUNTS,hbciListAccounts,false -21131,2d2e78d1-baf5-4e3f-be6e-dfef1099a54c,LIST_TRANSACTIONS,hbciListTransactions,false -21132,2d2e78d1-baf5-4e3f-be6e-dfef1099a54c,AUTHORIZATION,,false -21133,2d2e78d1-baf5-4e3f-be6e-dfef1099a54c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21134,2d2e78d1-baf5-4e3f-be6e-dfef1099a54c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21135,2d2e78d1-baf5-4e3f-be6e-dfef1099a54c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21130,4a91f16e-a5e5-4047-98dc-87496c34d792,LIST_ACCOUNTS,hbciListAccounts,false +21131,4a91f16e-a5e5-4047-98dc-87496c34d792,LIST_TRANSACTIONS,hbciListTransactions,false +21132,4a91f16e-a5e5-4047-98dc-87496c34d792,AUTHORIZATION,,false +21133,4a91f16e-a5e5-4047-98dc-87496c34d792,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21134,4a91f16e-a5e5-4047-98dc-87496c34d792,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21135,4a91f16e-a5e5-4047-98dc-87496c34d792,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21136,58639c3a-5299-4d7b-809b-fd56c7fa9257,LIST_ACCOUNTS,xs2aListAccounts,true -21137,58639c3a-5299-4d7b-809b-fd56c7fa9257,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21137,58639c3a-5299-4d7b-809b-fd56c7fa9257,LIST_TRANSACTIONS,xs2aListTransactions,true 21138,58639c3a-5299-4d7b-809b-fd56c7fa9257,AUTHORIZATION,,true 21139,58639c3a-5299-4d7b-809b-fd56c7fa9257,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21140,58639c3a-5299-4d7b-809b-fd56c7fa9257,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21141,58639c3a-5299-4d7b-809b-fd56c7fa9257,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21142,a35e9502-8ae4-4b9a-bdf0-b70bd4f9a0f1,LIST_ACCOUNTS,hbciListAccounts,false -21143,a35e9502-8ae4-4b9a-bdf0-b70bd4f9a0f1,LIST_TRANSACTIONS,hbciListTransactions,false -21144,a35e9502-8ae4-4b9a-bdf0-b70bd4f9a0f1,AUTHORIZATION,,false -21145,a35e9502-8ae4-4b9a-bdf0-b70bd4f9a0f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21146,a35e9502-8ae4-4b9a-bdf0-b70bd4f9a0f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21147,a35e9502-8ae4-4b9a-bdf0-b70bd4f9a0f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21142,0f39d523-cc27-45d8-b4ff-6a8e09700192,LIST_ACCOUNTS,hbciListAccounts,false +21143,0f39d523-cc27-45d8-b4ff-6a8e09700192,LIST_TRANSACTIONS,hbciListTransactions,false +21144,0f39d523-cc27-45d8-b4ff-6a8e09700192,AUTHORIZATION,,false +21145,0f39d523-cc27-45d8-b4ff-6a8e09700192,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21146,0f39d523-cc27-45d8-b4ff-6a8e09700192,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21147,0f39d523-cc27-45d8-b4ff-6a8e09700192,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21148,bc70fc95-6479-4256-960f-fd6f3637e26c,LIST_ACCOUNTS,xs2aListAccounts,true -21149,bc70fc95-6479-4256-960f-fd6f3637e26c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21149,bc70fc95-6479-4256-960f-fd6f3637e26c,LIST_TRANSACTIONS,xs2aListTransactions,true 21150,bc70fc95-6479-4256-960f-fd6f3637e26c,AUTHORIZATION,,true 21151,bc70fc95-6479-4256-960f-fd6f3637e26c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21152,bc70fc95-6479-4256-960f-fd6f3637e26c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21153,bc70fc95-6479-4256-960f-fd6f3637e26c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21154,712ff879-5c8f-4672-81eb-392a884f1286,LIST_ACCOUNTS,hbciListAccounts,false -21155,712ff879-5c8f-4672-81eb-392a884f1286,LIST_TRANSACTIONS,hbciListTransactions,false -21156,712ff879-5c8f-4672-81eb-392a884f1286,AUTHORIZATION,,false -21157,712ff879-5c8f-4672-81eb-392a884f1286,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21158,712ff879-5c8f-4672-81eb-392a884f1286,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21159,712ff879-5c8f-4672-81eb-392a884f1286,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21154,c6b5ddac-6848-48fd-ba8e-f9eb9ace7998,LIST_ACCOUNTS,hbciListAccounts,false +21155,c6b5ddac-6848-48fd-ba8e-f9eb9ace7998,LIST_TRANSACTIONS,hbciListTransactions,false +21156,c6b5ddac-6848-48fd-ba8e-f9eb9ace7998,AUTHORIZATION,,false +21157,c6b5ddac-6848-48fd-ba8e-f9eb9ace7998,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21158,c6b5ddac-6848-48fd-ba8e-f9eb9ace7998,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21159,c6b5ddac-6848-48fd-ba8e-f9eb9ace7998,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21160,4cd2eb11-01d3-4b50-ade3-96bfe7670e02,LIST_ACCOUNTS,xs2aListAccounts,true -21161,4cd2eb11-01d3-4b50-ade3-96bfe7670e02,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21161,4cd2eb11-01d3-4b50-ade3-96bfe7670e02,LIST_TRANSACTIONS,xs2aListTransactions,true 21162,4cd2eb11-01d3-4b50-ade3-96bfe7670e02,AUTHORIZATION,,true 21163,4cd2eb11-01d3-4b50-ade3-96bfe7670e02,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21164,4cd2eb11-01d3-4b50-ade3-96bfe7670e02,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21165,4cd2eb11-01d3-4b50-ade3-96bfe7670e02,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21166,7c803c2a-65c8-4d3d-a8b4-b66539a3c7a1,LIST_ACCOUNTS,hbciListAccounts,false -21167,7c803c2a-65c8-4d3d-a8b4-b66539a3c7a1,LIST_TRANSACTIONS,hbciListTransactions,false -21168,7c803c2a-65c8-4d3d-a8b4-b66539a3c7a1,AUTHORIZATION,,false -21169,7c803c2a-65c8-4d3d-a8b4-b66539a3c7a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21170,7c803c2a-65c8-4d3d-a8b4-b66539a3c7a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21171,7c803c2a-65c8-4d3d-a8b4-b66539a3c7a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21166,8826b23c-28be-401c-a9f7-73d12dfc8107,LIST_ACCOUNTS,hbciListAccounts,false +21167,8826b23c-28be-401c-a9f7-73d12dfc8107,LIST_TRANSACTIONS,hbciListTransactions,false +21168,8826b23c-28be-401c-a9f7-73d12dfc8107,AUTHORIZATION,,false +21169,8826b23c-28be-401c-a9f7-73d12dfc8107,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21170,8826b23c-28be-401c-a9f7-73d12dfc8107,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21171,8826b23c-28be-401c-a9f7-73d12dfc8107,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21172,10918844-3c6d-4e50-9a9b-b34d7ded1ab6,LIST_ACCOUNTS,xs2aListAccounts,true -21173,10918844-3c6d-4e50-9a9b-b34d7ded1ab6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21173,10918844-3c6d-4e50-9a9b-b34d7ded1ab6,LIST_TRANSACTIONS,xs2aListTransactions,true 21174,10918844-3c6d-4e50-9a9b-b34d7ded1ab6,AUTHORIZATION,,true 21175,10918844-3c6d-4e50-9a9b-b34d7ded1ab6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21176,10918844-3c6d-4e50-9a9b-b34d7ded1ab6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21177,10918844-3c6d-4e50-9a9b-b34d7ded1ab6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21178,e6ab2099-92c7-4269-a572-f678e7e32aaa,LIST_ACCOUNTS,hbciListAccounts,false -21179,e6ab2099-92c7-4269-a572-f678e7e32aaa,LIST_TRANSACTIONS,hbciListTransactions,false -21180,e6ab2099-92c7-4269-a572-f678e7e32aaa,AUTHORIZATION,,false -21181,e6ab2099-92c7-4269-a572-f678e7e32aaa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21182,e6ab2099-92c7-4269-a572-f678e7e32aaa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21183,e6ab2099-92c7-4269-a572-f678e7e32aaa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21178,f953ab65-ed30-41ac-be64-3eae33094597,LIST_ACCOUNTS,hbciListAccounts,false +21179,f953ab65-ed30-41ac-be64-3eae33094597,LIST_TRANSACTIONS,hbciListTransactions,false +21180,f953ab65-ed30-41ac-be64-3eae33094597,AUTHORIZATION,,false +21181,f953ab65-ed30-41ac-be64-3eae33094597,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21182,f953ab65-ed30-41ac-be64-3eae33094597,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21183,f953ab65-ed30-41ac-be64-3eae33094597,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21184,2d31554b-c68a-407b-a988-32fea94354b5,LIST_ACCOUNTS,xs2aListAccounts,true -21185,2d31554b-c68a-407b-a988-32fea94354b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21185,2d31554b-c68a-407b-a988-32fea94354b5,LIST_TRANSACTIONS,xs2aListTransactions,true 21186,2d31554b-c68a-407b-a988-32fea94354b5,AUTHORIZATION,,true 21187,2d31554b-c68a-407b-a988-32fea94354b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21188,2d31554b-c68a-407b-a988-32fea94354b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21189,2d31554b-c68a-407b-a988-32fea94354b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21190,7f3499ee-e9f0-4e10-b97f-bfb28e894217,LIST_ACCOUNTS,hbciListAccounts,false -21191,7f3499ee-e9f0-4e10-b97f-bfb28e894217,LIST_TRANSACTIONS,hbciListTransactions,false -21192,7f3499ee-e9f0-4e10-b97f-bfb28e894217,AUTHORIZATION,,false -21193,7f3499ee-e9f0-4e10-b97f-bfb28e894217,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21194,7f3499ee-e9f0-4e10-b97f-bfb28e894217,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21195,7f3499ee-e9f0-4e10-b97f-bfb28e894217,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21190,0d19fb86-8ed6-4081-bdbe-16b0ccd2c79a,LIST_ACCOUNTS,hbciListAccounts,false +21191,0d19fb86-8ed6-4081-bdbe-16b0ccd2c79a,LIST_TRANSACTIONS,hbciListTransactions,false +21192,0d19fb86-8ed6-4081-bdbe-16b0ccd2c79a,AUTHORIZATION,,false +21193,0d19fb86-8ed6-4081-bdbe-16b0ccd2c79a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21194,0d19fb86-8ed6-4081-bdbe-16b0ccd2c79a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21195,0d19fb86-8ed6-4081-bdbe-16b0ccd2c79a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21196,2e699e27-2fc6-4a45-b87e-913a32df6b1a,LIST_ACCOUNTS,xs2aListAccounts,true -21197,2e699e27-2fc6-4a45-b87e-913a32df6b1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21197,2e699e27-2fc6-4a45-b87e-913a32df6b1a,LIST_TRANSACTIONS,xs2aListTransactions,true 21198,2e699e27-2fc6-4a45-b87e-913a32df6b1a,AUTHORIZATION,,true 21199,2e699e27-2fc6-4a45-b87e-913a32df6b1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21200,2e699e27-2fc6-4a45-b87e-913a32df6b1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21201,2e699e27-2fc6-4a45-b87e-913a32df6b1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21202,22538af5-774a-48a5-ab56-51cd4fc08a45,LIST_ACCOUNTS,hbciListAccounts,false -21203,22538af5-774a-48a5-ab56-51cd4fc08a45,LIST_TRANSACTIONS,hbciListTransactions,false -21204,22538af5-774a-48a5-ab56-51cd4fc08a45,AUTHORIZATION,,false -21205,22538af5-774a-48a5-ab56-51cd4fc08a45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21206,22538af5-774a-48a5-ab56-51cd4fc08a45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21207,22538af5-774a-48a5-ab56-51cd4fc08a45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21202,a1ccd7b4-ea87-4fa6-aba0-9c756c1bbff5,LIST_ACCOUNTS,hbciListAccounts,false +21203,a1ccd7b4-ea87-4fa6-aba0-9c756c1bbff5,LIST_TRANSACTIONS,hbciListTransactions,false +21204,a1ccd7b4-ea87-4fa6-aba0-9c756c1bbff5,AUTHORIZATION,,false +21205,a1ccd7b4-ea87-4fa6-aba0-9c756c1bbff5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21206,a1ccd7b4-ea87-4fa6-aba0-9c756c1bbff5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21207,a1ccd7b4-ea87-4fa6-aba0-9c756c1bbff5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21208,1f718b4a-fefd-47a1-91c6-9803f4b3b908,LIST_ACCOUNTS,xs2aListAccounts,true -21209,1f718b4a-fefd-47a1-91c6-9803f4b3b908,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21209,1f718b4a-fefd-47a1-91c6-9803f4b3b908,LIST_TRANSACTIONS,xs2aListTransactions,true 21210,1f718b4a-fefd-47a1-91c6-9803f4b3b908,AUTHORIZATION,,true 21211,1f718b4a-fefd-47a1-91c6-9803f4b3b908,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21212,1f718b4a-fefd-47a1-91c6-9803f4b3b908,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21213,1f718b4a-fefd-47a1-91c6-9803f4b3b908,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21214,38149cff-c103-42f9-b8f0-f2801e7d3d96,LIST_ACCOUNTS,hbciListAccounts,false -21215,38149cff-c103-42f9-b8f0-f2801e7d3d96,LIST_TRANSACTIONS,hbciListTransactions,false -21216,38149cff-c103-42f9-b8f0-f2801e7d3d96,AUTHORIZATION,,false -21217,38149cff-c103-42f9-b8f0-f2801e7d3d96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21218,38149cff-c103-42f9-b8f0-f2801e7d3d96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21219,38149cff-c103-42f9-b8f0-f2801e7d3d96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21214,d5942102-4a69-4029-8105-1896418a2167,LIST_ACCOUNTS,hbciListAccounts,false +21215,d5942102-4a69-4029-8105-1896418a2167,LIST_TRANSACTIONS,hbciListTransactions,false +21216,d5942102-4a69-4029-8105-1896418a2167,AUTHORIZATION,,false +21217,d5942102-4a69-4029-8105-1896418a2167,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21218,d5942102-4a69-4029-8105-1896418a2167,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21219,d5942102-4a69-4029-8105-1896418a2167,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21220,0a1e4d58-1df0-4af8-9fa6-914489b7bc73,LIST_ACCOUNTS,xs2aListAccounts,true -21221,0a1e4d58-1df0-4af8-9fa6-914489b7bc73,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21221,0a1e4d58-1df0-4af8-9fa6-914489b7bc73,LIST_TRANSACTIONS,xs2aListTransactions,true 21222,0a1e4d58-1df0-4af8-9fa6-914489b7bc73,AUTHORIZATION,,true 21223,0a1e4d58-1df0-4af8-9fa6-914489b7bc73,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21224,0a1e4d58-1df0-4af8-9fa6-914489b7bc73,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21225,0a1e4d58-1df0-4af8-9fa6-914489b7bc73,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21226,7ffe443a-b136-415f-a619-6acf6e31242b,LIST_ACCOUNTS,hbciListAccounts,false -21227,7ffe443a-b136-415f-a619-6acf6e31242b,LIST_TRANSACTIONS,hbciListTransactions,false -21228,7ffe443a-b136-415f-a619-6acf6e31242b,AUTHORIZATION,,false -21229,7ffe443a-b136-415f-a619-6acf6e31242b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21230,7ffe443a-b136-415f-a619-6acf6e31242b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21231,7ffe443a-b136-415f-a619-6acf6e31242b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21226,c496c931-c017-4dba-bc8a-185aafd12bcf,LIST_ACCOUNTS,hbciListAccounts,false +21227,c496c931-c017-4dba-bc8a-185aafd12bcf,LIST_TRANSACTIONS,hbciListTransactions,false +21228,c496c931-c017-4dba-bc8a-185aafd12bcf,AUTHORIZATION,,false +21229,c496c931-c017-4dba-bc8a-185aafd12bcf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21230,c496c931-c017-4dba-bc8a-185aafd12bcf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21231,c496c931-c017-4dba-bc8a-185aafd12bcf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21232,01baf839-b8b6-4124-8459-3215af903a5a,LIST_ACCOUNTS,xs2aListAccounts,true -21233,01baf839-b8b6-4124-8459-3215af903a5a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21233,01baf839-b8b6-4124-8459-3215af903a5a,LIST_TRANSACTIONS,xs2aListTransactions,true 21234,01baf839-b8b6-4124-8459-3215af903a5a,AUTHORIZATION,,true 21235,01baf839-b8b6-4124-8459-3215af903a5a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21236,01baf839-b8b6-4124-8459-3215af903a5a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21237,01baf839-b8b6-4124-8459-3215af903a5a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21238,97c351c8-13b2-4bdf-8db1-e864296257fd,LIST_ACCOUNTS,hbciListAccounts,false -21239,97c351c8-13b2-4bdf-8db1-e864296257fd,LIST_TRANSACTIONS,hbciListTransactions,false -21240,97c351c8-13b2-4bdf-8db1-e864296257fd,AUTHORIZATION,,false -21241,97c351c8-13b2-4bdf-8db1-e864296257fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21242,97c351c8-13b2-4bdf-8db1-e864296257fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21243,97c351c8-13b2-4bdf-8db1-e864296257fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21238,add05a4c-0ce3-4e89-8535-a9babeabf0d3,LIST_ACCOUNTS,hbciListAccounts,false +21239,add05a4c-0ce3-4e89-8535-a9babeabf0d3,LIST_TRANSACTIONS,hbciListTransactions,false +21240,add05a4c-0ce3-4e89-8535-a9babeabf0d3,AUTHORIZATION,,false +21241,add05a4c-0ce3-4e89-8535-a9babeabf0d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21242,add05a4c-0ce3-4e89-8535-a9babeabf0d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21243,add05a4c-0ce3-4e89-8535-a9babeabf0d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21244,3592ae6d-4200-4684-aab1-45bcc76bf0af,LIST_ACCOUNTS,xs2aListAccounts,true -21245,3592ae6d-4200-4684-aab1-45bcc76bf0af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21245,3592ae6d-4200-4684-aab1-45bcc76bf0af,LIST_TRANSACTIONS,xs2aListTransactions,true 21246,3592ae6d-4200-4684-aab1-45bcc76bf0af,AUTHORIZATION,,true 21247,3592ae6d-4200-4684-aab1-45bcc76bf0af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21248,3592ae6d-4200-4684-aab1-45bcc76bf0af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21249,3592ae6d-4200-4684-aab1-45bcc76bf0af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21250,025f2163-e975-4b12-8179-3f11476aad96,LIST_ACCOUNTS,hbciListAccounts,false -21251,025f2163-e975-4b12-8179-3f11476aad96,LIST_TRANSACTIONS,hbciListTransactions,false -21252,025f2163-e975-4b12-8179-3f11476aad96,AUTHORIZATION,,false -21253,025f2163-e975-4b12-8179-3f11476aad96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21254,025f2163-e975-4b12-8179-3f11476aad96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21255,025f2163-e975-4b12-8179-3f11476aad96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21250,afa479d8-6634-46dd-869d-a738b3eea4fe,LIST_ACCOUNTS,hbciListAccounts,false +21251,afa479d8-6634-46dd-869d-a738b3eea4fe,LIST_TRANSACTIONS,hbciListTransactions,false +21252,afa479d8-6634-46dd-869d-a738b3eea4fe,AUTHORIZATION,,false +21253,afa479d8-6634-46dd-869d-a738b3eea4fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21254,afa479d8-6634-46dd-869d-a738b3eea4fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21255,afa479d8-6634-46dd-869d-a738b3eea4fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21256,de510028-9097-42c5-9ade-61d7862428d1,LIST_ACCOUNTS,xs2aListAccounts,true -21257,de510028-9097-42c5-9ade-61d7862428d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21257,de510028-9097-42c5-9ade-61d7862428d1,LIST_TRANSACTIONS,xs2aListTransactions,true 21258,de510028-9097-42c5-9ade-61d7862428d1,AUTHORIZATION,,true 21259,de510028-9097-42c5-9ade-61d7862428d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21260,de510028-9097-42c5-9ade-61d7862428d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21261,de510028-9097-42c5-9ade-61d7862428d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21262,91c63b85-d295-4aaa-be59-554b0e76e481,LIST_ACCOUNTS,hbciListAccounts,false -21263,91c63b85-d295-4aaa-be59-554b0e76e481,LIST_TRANSACTIONS,hbciListTransactions,false -21264,91c63b85-d295-4aaa-be59-554b0e76e481,AUTHORIZATION,,false -21265,91c63b85-d295-4aaa-be59-554b0e76e481,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21266,91c63b85-d295-4aaa-be59-554b0e76e481,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21267,91c63b85-d295-4aaa-be59-554b0e76e481,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21262,13b76a71-4460-4041-8741-b3675aeb80d4,LIST_ACCOUNTS,hbciListAccounts,false +21263,13b76a71-4460-4041-8741-b3675aeb80d4,LIST_TRANSACTIONS,hbciListTransactions,false +21264,13b76a71-4460-4041-8741-b3675aeb80d4,AUTHORIZATION,,false +21265,13b76a71-4460-4041-8741-b3675aeb80d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21266,13b76a71-4460-4041-8741-b3675aeb80d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21267,13b76a71-4460-4041-8741-b3675aeb80d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21268,c38b4188-b9c7-446f-9e37-36297c328726,LIST_ACCOUNTS,xs2aListAccounts,true -21269,c38b4188-b9c7-446f-9e37-36297c328726,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21269,c38b4188-b9c7-446f-9e37-36297c328726,LIST_TRANSACTIONS,xs2aListTransactions,true 21270,c38b4188-b9c7-446f-9e37-36297c328726,AUTHORIZATION,,true 21271,c38b4188-b9c7-446f-9e37-36297c328726,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21272,c38b4188-b9c7-446f-9e37-36297c328726,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21273,c38b4188-b9c7-446f-9e37-36297c328726,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21274,964fa3e5-327e-441b-bf3c-c5a4c9f2870e,LIST_ACCOUNTS,hbciListAccounts,false -21275,964fa3e5-327e-441b-bf3c-c5a4c9f2870e,LIST_TRANSACTIONS,hbciListTransactions,false -21276,964fa3e5-327e-441b-bf3c-c5a4c9f2870e,AUTHORIZATION,,false -21277,964fa3e5-327e-441b-bf3c-c5a4c9f2870e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21278,964fa3e5-327e-441b-bf3c-c5a4c9f2870e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21279,964fa3e5-327e-441b-bf3c-c5a4c9f2870e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21274,5c3c8b5f-0632-4f4d-82c6-331cca601bae,LIST_ACCOUNTS,hbciListAccounts,false +21275,5c3c8b5f-0632-4f4d-82c6-331cca601bae,LIST_TRANSACTIONS,hbciListTransactions,false +21276,5c3c8b5f-0632-4f4d-82c6-331cca601bae,AUTHORIZATION,,false +21277,5c3c8b5f-0632-4f4d-82c6-331cca601bae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21278,5c3c8b5f-0632-4f4d-82c6-331cca601bae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21279,5c3c8b5f-0632-4f4d-82c6-331cca601bae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21280,b04c4a87-3a0d-4e33-be05-2a543f30cd0c,LIST_ACCOUNTS,xs2aListAccounts,true -21281,b04c4a87-3a0d-4e33-be05-2a543f30cd0c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21281,b04c4a87-3a0d-4e33-be05-2a543f30cd0c,LIST_TRANSACTIONS,xs2aListTransactions,true 21282,b04c4a87-3a0d-4e33-be05-2a543f30cd0c,AUTHORIZATION,,true 21283,b04c4a87-3a0d-4e33-be05-2a543f30cd0c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21284,b04c4a87-3a0d-4e33-be05-2a543f30cd0c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21285,b04c4a87-3a0d-4e33-be05-2a543f30cd0c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21286,5689dc32-4f33-4fea-bfa3-df8e07320272,LIST_ACCOUNTS,hbciListAccounts,false -21287,5689dc32-4f33-4fea-bfa3-df8e07320272,LIST_TRANSACTIONS,hbciListTransactions,false -21288,5689dc32-4f33-4fea-bfa3-df8e07320272,AUTHORIZATION,,false -21289,5689dc32-4f33-4fea-bfa3-df8e07320272,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21290,5689dc32-4f33-4fea-bfa3-df8e07320272,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21291,5689dc32-4f33-4fea-bfa3-df8e07320272,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21286,c6b63990-c5a1-4744-9784-5754b0f388c2,LIST_ACCOUNTS,hbciListAccounts,false +21287,c6b63990-c5a1-4744-9784-5754b0f388c2,LIST_TRANSACTIONS,hbciListTransactions,false +21288,c6b63990-c5a1-4744-9784-5754b0f388c2,AUTHORIZATION,,false +21289,c6b63990-c5a1-4744-9784-5754b0f388c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21290,c6b63990-c5a1-4744-9784-5754b0f388c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21291,c6b63990-c5a1-4744-9784-5754b0f388c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21292,88beec35-a100-4690-bcce-adc2956ef34d,LIST_ACCOUNTS,xs2aListAccounts,true -21293,88beec35-a100-4690-bcce-adc2956ef34d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21293,88beec35-a100-4690-bcce-adc2956ef34d,LIST_TRANSACTIONS,xs2aListTransactions,true 21294,88beec35-a100-4690-bcce-adc2956ef34d,AUTHORIZATION,,true 21295,88beec35-a100-4690-bcce-adc2956ef34d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21296,88beec35-a100-4690-bcce-adc2956ef34d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21297,88beec35-a100-4690-bcce-adc2956ef34d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21298,0c6a2e88-d12b-4bcd-b6de-6a5ed7b36457,LIST_ACCOUNTS,hbciListAccounts,false -21299,0c6a2e88-d12b-4bcd-b6de-6a5ed7b36457,LIST_TRANSACTIONS,hbciListTransactions,false -21300,0c6a2e88-d12b-4bcd-b6de-6a5ed7b36457,AUTHORIZATION,,false -21301,0c6a2e88-d12b-4bcd-b6de-6a5ed7b36457,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21302,0c6a2e88-d12b-4bcd-b6de-6a5ed7b36457,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21303,0c6a2e88-d12b-4bcd-b6de-6a5ed7b36457,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21298,5447f468-af83-4a35-80cf-3740c5822290,LIST_ACCOUNTS,hbciListAccounts,false +21299,5447f468-af83-4a35-80cf-3740c5822290,LIST_TRANSACTIONS,hbciListTransactions,false +21300,5447f468-af83-4a35-80cf-3740c5822290,AUTHORIZATION,,false +21301,5447f468-af83-4a35-80cf-3740c5822290,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21302,5447f468-af83-4a35-80cf-3740c5822290,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21303,5447f468-af83-4a35-80cf-3740c5822290,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21304,8ed126d9-84db-4008-ba4f-f54e1043d667,LIST_ACCOUNTS,xs2aListAccounts,true -21305,8ed126d9-84db-4008-ba4f-f54e1043d667,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21305,8ed126d9-84db-4008-ba4f-f54e1043d667,LIST_TRANSACTIONS,xs2aListTransactions,true 21306,8ed126d9-84db-4008-ba4f-f54e1043d667,AUTHORIZATION,,true 21307,8ed126d9-84db-4008-ba4f-f54e1043d667,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21308,8ed126d9-84db-4008-ba4f-f54e1043d667,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21309,8ed126d9-84db-4008-ba4f-f54e1043d667,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21310,1d8d6a1d-ffc7-4c82-b061-9a06ff813845,LIST_ACCOUNTS,hbciListAccounts,false -21311,1d8d6a1d-ffc7-4c82-b061-9a06ff813845,LIST_TRANSACTIONS,hbciListTransactions,false -21312,1d8d6a1d-ffc7-4c82-b061-9a06ff813845,AUTHORIZATION,,false -21313,1d8d6a1d-ffc7-4c82-b061-9a06ff813845,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21314,1d8d6a1d-ffc7-4c82-b061-9a06ff813845,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21315,1d8d6a1d-ffc7-4c82-b061-9a06ff813845,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21310,10943f6d-b27b-456c-ba09-15a1407f7276,LIST_ACCOUNTS,hbciListAccounts,false +21311,10943f6d-b27b-456c-ba09-15a1407f7276,LIST_TRANSACTIONS,hbciListTransactions,false +21312,10943f6d-b27b-456c-ba09-15a1407f7276,AUTHORIZATION,,false +21313,10943f6d-b27b-456c-ba09-15a1407f7276,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21314,10943f6d-b27b-456c-ba09-15a1407f7276,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21315,10943f6d-b27b-456c-ba09-15a1407f7276,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21316,47323122-6fb9-4ce7-a780-dcb789225cdf,LIST_ACCOUNTS,xs2aListAccounts,true -21317,47323122-6fb9-4ce7-a780-dcb789225cdf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21317,47323122-6fb9-4ce7-a780-dcb789225cdf,LIST_TRANSACTIONS,xs2aListTransactions,true 21318,47323122-6fb9-4ce7-a780-dcb789225cdf,AUTHORIZATION,,true 21319,47323122-6fb9-4ce7-a780-dcb789225cdf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21320,47323122-6fb9-4ce7-a780-dcb789225cdf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21321,47323122-6fb9-4ce7-a780-dcb789225cdf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21322,3ed41b65-f2bf-44bc-8b41-92a6fd49f88c,LIST_ACCOUNTS,hbciListAccounts,false -21323,3ed41b65-f2bf-44bc-8b41-92a6fd49f88c,LIST_TRANSACTIONS,hbciListTransactions,false -21324,3ed41b65-f2bf-44bc-8b41-92a6fd49f88c,AUTHORIZATION,,false -21325,3ed41b65-f2bf-44bc-8b41-92a6fd49f88c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21326,3ed41b65-f2bf-44bc-8b41-92a6fd49f88c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21327,3ed41b65-f2bf-44bc-8b41-92a6fd49f88c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21322,c32cc44c-78b4-4300-a5d8-48cf7725ef0f,LIST_ACCOUNTS,hbciListAccounts,false +21323,c32cc44c-78b4-4300-a5d8-48cf7725ef0f,LIST_TRANSACTIONS,hbciListTransactions,false +21324,c32cc44c-78b4-4300-a5d8-48cf7725ef0f,AUTHORIZATION,,false +21325,c32cc44c-78b4-4300-a5d8-48cf7725ef0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21326,c32cc44c-78b4-4300-a5d8-48cf7725ef0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21327,c32cc44c-78b4-4300-a5d8-48cf7725ef0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21328,4c10b9ad-cb65-46e5-8c37-54f9882cbbc9,LIST_ACCOUNTS,xs2aListAccounts,true -21329,4c10b9ad-cb65-46e5-8c37-54f9882cbbc9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21329,4c10b9ad-cb65-46e5-8c37-54f9882cbbc9,LIST_TRANSACTIONS,xs2aListTransactions,true 21330,4c10b9ad-cb65-46e5-8c37-54f9882cbbc9,AUTHORIZATION,,true 21331,4c10b9ad-cb65-46e5-8c37-54f9882cbbc9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21332,4c10b9ad-cb65-46e5-8c37-54f9882cbbc9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21333,4c10b9ad-cb65-46e5-8c37-54f9882cbbc9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21334,46dbda93-5dff-4705-9458-d8b374b460f4,LIST_ACCOUNTS,hbciListAccounts,false -21335,46dbda93-5dff-4705-9458-d8b374b460f4,LIST_TRANSACTIONS,hbciListTransactions,false -21336,46dbda93-5dff-4705-9458-d8b374b460f4,AUTHORIZATION,,false -21337,46dbda93-5dff-4705-9458-d8b374b460f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21338,46dbda93-5dff-4705-9458-d8b374b460f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21339,46dbda93-5dff-4705-9458-d8b374b460f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21334,36eb12bf-fee8-4059-b4b9-1643217a6316,LIST_ACCOUNTS,hbciListAccounts,false +21335,36eb12bf-fee8-4059-b4b9-1643217a6316,LIST_TRANSACTIONS,hbciListTransactions,false +21336,36eb12bf-fee8-4059-b4b9-1643217a6316,AUTHORIZATION,,false +21337,36eb12bf-fee8-4059-b4b9-1643217a6316,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21338,36eb12bf-fee8-4059-b4b9-1643217a6316,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21339,36eb12bf-fee8-4059-b4b9-1643217a6316,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21340,5eacb79b-17a7-47db-97d0-99eaa5af106f,LIST_ACCOUNTS,xs2aListAccounts,true -21341,5eacb79b-17a7-47db-97d0-99eaa5af106f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21341,5eacb79b-17a7-47db-97d0-99eaa5af106f,LIST_TRANSACTIONS,xs2aListTransactions,true 21342,5eacb79b-17a7-47db-97d0-99eaa5af106f,AUTHORIZATION,,true 21343,5eacb79b-17a7-47db-97d0-99eaa5af106f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21344,5eacb79b-17a7-47db-97d0-99eaa5af106f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21345,5eacb79b-17a7-47db-97d0-99eaa5af106f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21346,a1dbbadc-f451-4b87-8b55-1f5d3309d71e,LIST_ACCOUNTS,hbciListAccounts,false -21347,a1dbbadc-f451-4b87-8b55-1f5d3309d71e,LIST_TRANSACTIONS,hbciListTransactions,false -21348,a1dbbadc-f451-4b87-8b55-1f5d3309d71e,AUTHORIZATION,,false -21349,a1dbbadc-f451-4b87-8b55-1f5d3309d71e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21350,a1dbbadc-f451-4b87-8b55-1f5d3309d71e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21351,a1dbbadc-f451-4b87-8b55-1f5d3309d71e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21346,afa3e525-7d93-42f1-944f-dffe61ed8290,LIST_ACCOUNTS,hbciListAccounts,false +21347,afa3e525-7d93-42f1-944f-dffe61ed8290,LIST_TRANSACTIONS,hbciListTransactions,false +21348,afa3e525-7d93-42f1-944f-dffe61ed8290,AUTHORIZATION,,false +21349,afa3e525-7d93-42f1-944f-dffe61ed8290,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21350,afa3e525-7d93-42f1-944f-dffe61ed8290,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21351,afa3e525-7d93-42f1-944f-dffe61ed8290,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21352,92414437-9045-4e8e-bba5-26a41051c28a,LIST_ACCOUNTS,xs2aListAccounts,true -21353,92414437-9045-4e8e-bba5-26a41051c28a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21353,92414437-9045-4e8e-bba5-26a41051c28a,LIST_TRANSACTIONS,xs2aListTransactions,true 21354,92414437-9045-4e8e-bba5-26a41051c28a,AUTHORIZATION,,true 21355,92414437-9045-4e8e-bba5-26a41051c28a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21356,92414437-9045-4e8e-bba5-26a41051c28a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21357,92414437-9045-4e8e-bba5-26a41051c28a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21358,f91c9d50-af32-4654-8997-f5e733014c0e,LIST_ACCOUNTS,hbciListAccounts,false -21359,f91c9d50-af32-4654-8997-f5e733014c0e,LIST_TRANSACTIONS,hbciListTransactions,false -21360,f91c9d50-af32-4654-8997-f5e733014c0e,AUTHORIZATION,,false -21361,f91c9d50-af32-4654-8997-f5e733014c0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21362,f91c9d50-af32-4654-8997-f5e733014c0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21363,f91c9d50-af32-4654-8997-f5e733014c0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21358,c076705c-8fad-452e-aa17-c8baaa4de9d7,LIST_ACCOUNTS,hbciListAccounts,false +21359,c076705c-8fad-452e-aa17-c8baaa4de9d7,LIST_TRANSACTIONS,hbciListTransactions,false +21360,c076705c-8fad-452e-aa17-c8baaa4de9d7,AUTHORIZATION,,false +21361,c076705c-8fad-452e-aa17-c8baaa4de9d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21362,c076705c-8fad-452e-aa17-c8baaa4de9d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21363,c076705c-8fad-452e-aa17-c8baaa4de9d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21364,3c1ca17b-507d-44e3-ac1f-dde3128ef504,LIST_ACCOUNTS,xs2aListAccounts,true -21365,3c1ca17b-507d-44e3-ac1f-dde3128ef504,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21365,3c1ca17b-507d-44e3-ac1f-dde3128ef504,LIST_TRANSACTIONS,xs2aListTransactions,true 21366,3c1ca17b-507d-44e3-ac1f-dde3128ef504,AUTHORIZATION,,true 21367,3c1ca17b-507d-44e3-ac1f-dde3128ef504,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21368,3c1ca17b-507d-44e3-ac1f-dde3128ef504,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21369,3c1ca17b-507d-44e3-ac1f-dde3128ef504,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21370,37cc903c-ea3b-4992-8a69-300c2ab77789,LIST_ACCOUNTS,hbciListAccounts,false -21371,37cc903c-ea3b-4992-8a69-300c2ab77789,LIST_TRANSACTIONS,hbciListTransactions,false -21372,37cc903c-ea3b-4992-8a69-300c2ab77789,AUTHORIZATION,,false -21373,37cc903c-ea3b-4992-8a69-300c2ab77789,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21374,37cc903c-ea3b-4992-8a69-300c2ab77789,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21375,37cc903c-ea3b-4992-8a69-300c2ab77789,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21370,4c4ae252-f6e7-47ec-8dd4-6f81e67c6ac2,LIST_ACCOUNTS,hbciListAccounts,false +21371,4c4ae252-f6e7-47ec-8dd4-6f81e67c6ac2,LIST_TRANSACTIONS,hbciListTransactions,false +21372,4c4ae252-f6e7-47ec-8dd4-6f81e67c6ac2,AUTHORIZATION,,false +21373,4c4ae252-f6e7-47ec-8dd4-6f81e67c6ac2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21374,4c4ae252-f6e7-47ec-8dd4-6f81e67c6ac2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21375,4c4ae252-f6e7-47ec-8dd4-6f81e67c6ac2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21376,5581524e-9f50-4a83-9023-2501fc22c813,LIST_ACCOUNTS,xs2aListAccounts,true -21377,5581524e-9f50-4a83-9023-2501fc22c813,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21377,5581524e-9f50-4a83-9023-2501fc22c813,LIST_TRANSACTIONS,xs2aListTransactions,true 21378,5581524e-9f50-4a83-9023-2501fc22c813,AUTHORIZATION,,true 21379,5581524e-9f50-4a83-9023-2501fc22c813,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21380,5581524e-9f50-4a83-9023-2501fc22c813,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21381,5581524e-9f50-4a83-9023-2501fc22c813,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21382,02a8b3ec-c7c4-422a-8e9d-c47603711326,LIST_ACCOUNTS,hbciListAccounts,false -21383,02a8b3ec-c7c4-422a-8e9d-c47603711326,LIST_TRANSACTIONS,hbciListTransactions,false -21384,02a8b3ec-c7c4-422a-8e9d-c47603711326,AUTHORIZATION,,false -21385,02a8b3ec-c7c4-422a-8e9d-c47603711326,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21386,02a8b3ec-c7c4-422a-8e9d-c47603711326,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21387,02a8b3ec-c7c4-422a-8e9d-c47603711326,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21382,f218a8c0-59b6-45ed-af10-7cb784fcc493,LIST_ACCOUNTS,hbciListAccounts,false +21383,f218a8c0-59b6-45ed-af10-7cb784fcc493,LIST_TRANSACTIONS,hbciListTransactions,false +21384,f218a8c0-59b6-45ed-af10-7cb784fcc493,AUTHORIZATION,,false +21385,f218a8c0-59b6-45ed-af10-7cb784fcc493,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21386,f218a8c0-59b6-45ed-af10-7cb784fcc493,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21387,f218a8c0-59b6-45ed-af10-7cb784fcc493,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21388,89677b5a-f59c-4913-865f-361ea4feb36c,LIST_ACCOUNTS,xs2aListAccounts,true -21389,89677b5a-f59c-4913-865f-361ea4feb36c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21389,89677b5a-f59c-4913-865f-361ea4feb36c,LIST_TRANSACTIONS,xs2aListTransactions,true 21390,89677b5a-f59c-4913-865f-361ea4feb36c,AUTHORIZATION,,true 21391,89677b5a-f59c-4913-865f-361ea4feb36c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21392,89677b5a-f59c-4913-865f-361ea4feb36c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21393,89677b5a-f59c-4913-865f-361ea4feb36c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21394,8d1b5479-785a-4d9c-9a71-08b66c998995,LIST_ACCOUNTS,hbciListAccounts,false -21395,8d1b5479-785a-4d9c-9a71-08b66c998995,LIST_TRANSACTIONS,hbciListTransactions,false -21396,8d1b5479-785a-4d9c-9a71-08b66c998995,AUTHORIZATION,,false -21397,8d1b5479-785a-4d9c-9a71-08b66c998995,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21398,8d1b5479-785a-4d9c-9a71-08b66c998995,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21399,8d1b5479-785a-4d9c-9a71-08b66c998995,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21394,5ca391de-eef5-4a13-a242-58cf24d63941,LIST_ACCOUNTS,hbciListAccounts,false +21395,5ca391de-eef5-4a13-a242-58cf24d63941,LIST_TRANSACTIONS,hbciListTransactions,false +21396,5ca391de-eef5-4a13-a242-58cf24d63941,AUTHORIZATION,,false +21397,5ca391de-eef5-4a13-a242-58cf24d63941,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21398,5ca391de-eef5-4a13-a242-58cf24d63941,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21399,5ca391de-eef5-4a13-a242-58cf24d63941,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21400,7cc3d0ad-f794-4b2a-93c8-da3af8231ae1,LIST_ACCOUNTS,xs2aListAccounts,true -21401,7cc3d0ad-f794-4b2a-93c8-da3af8231ae1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21401,7cc3d0ad-f794-4b2a-93c8-da3af8231ae1,LIST_TRANSACTIONS,xs2aListTransactions,true 21402,7cc3d0ad-f794-4b2a-93c8-da3af8231ae1,AUTHORIZATION,,true 21403,7cc3d0ad-f794-4b2a-93c8-da3af8231ae1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21404,7cc3d0ad-f794-4b2a-93c8-da3af8231ae1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21405,7cc3d0ad-f794-4b2a-93c8-da3af8231ae1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21406,249d5ae3-cbd2-4d41-86c6-70143c299fea,LIST_ACCOUNTS,hbciListAccounts,false -21407,249d5ae3-cbd2-4d41-86c6-70143c299fea,LIST_TRANSACTIONS,hbciListTransactions,false -21408,249d5ae3-cbd2-4d41-86c6-70143c299fea,AUTHORIZATION,,false -21409,249d5ae3-cbd2-4d41-86c6-70143c299fea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21410,249d5ae3-cbd2-4d41-86c6-70143c299fea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21411,249d5ae3-cbd2-4d41-86c6-70143c299fea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21406,b73a8f17-07b8-4c7a-8c41-c009fc75eab7,LIST_ACCOUNTS,hbciListAccounts,false +21407,b73a8f17-07b8-4c7a-8c41-c009fc75eab7,LIST_TRANSACTIONS,hbciListTransactions,false +21408,b73a8f17-07b8-4c7a-8c41-c009fc75eab7,AUTHORIZATION,,false +21409,b73a8f17-07b8-4c7a-8c41-c009fc75eab7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21410,b73a8f17-07b8-4c7a-8c41-c009fc75eab7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21411,b73a8f17-07b8-4c7a-8c41-c009fc75eab7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21412,528e651d-9e15-4452-8ffd-619152e66615,LIST_ACCOUNTS,xs2aListAccounts,true -21413,528e651d-9e15-4452-8ffd-619152e66615,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21413,528e651d-9e15-4452-8ffd-619152e66615,LIST_TRANSACTIONS,xs2aListTransactions,true 21414,528e651d-9e15-4452-8ffd-619152e66615,AUTHORIZATION,,true 21415,528e651d-9e15-4452-8ffd-619152e66615,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21416,528e651d-9e15-4452-8ffd-619152e66615,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21417,528e651d-9e15-4452-8ffd-619152e66615,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21418,2ff7e3f9-2263-499a-9398-b464ff5ac798,LIST_ACCOUNTS,hbciListAccounts,false -21419,2ff7e3f9-2263-499a-9398-b464ff5ac798,LIST_TRANSACTIONS,hbciListTransactions,false -21420,2ff7e3f9-2263-499a-9398-b464ff5ac798,AUTHORIZATION,,false -21421,2ff7e3f9-2263-499a-9398-b464ff5ac798,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21422,2ff7e3f9-2263-499a-9398-b464ff5ac798,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21423,2ff7e3f9-2263-499a-9398-b464ff5ac798,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21418,a204f43a-4547-4dab-be27-8b7e73add019,LIST_ACCOUNTS,hbciListAccounts,false +21419,a204f43a-4547-4dab-be27-8b7e73add019,LIST_TRANSACTIONS,hbciListTransactions,false +21420,a204f43a-4547-4dab-be27-8b7e73add019,AUTHORIZATION,,false +21421,a204f43a-4547-4dab-be27-8b7e73add019,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21422,a204f43a-4547-4dab-be27-8b7e73add019,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21423,a204f43a-4547-4dab-be27-8b7e73add019,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21424,b4c696bc-8a95-4255-b327-542c66b31cb8,LIST_ACCOUNTS,xs2aListAccounts,true -21425,b4c696bc-8a95-4255-b327-542c66b31cb8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21425,b4c696bc-8a95-4255-b327-542c66b31cb8,LIST_TRANSACTIONS,xs2aListTransactions,true 21426,b4c696bc-8a95-4255-b327-542c66b31cb8,AUTHORIZATION,,true 21427,b4c696bc-8a95-4255-b327-542c66b31cb8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21428,b4c696bc-8a95-4255-b327-542c66b31cb8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21429,b4c696bc-8a95-4255-b327-542c66b31cb8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21430,39717826-51a5-4805-b46e-6b4387614d09,LIST_ACCOUNTS,hbciListAccounts,false -21431,39717826-51a5-4805-b46e-6b4387614d09,LIST_TRANSACTIONS,hbciListTransactions,false -21432,39717826-51a5-4805-b46e-6b4387614d09,AUTHORIZATION,,false -21433,39717826-51a5-4805-b46e-6b4387614d09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21434,39717826-51a5-4805-b46e-6b4387614d09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21435,39717826-51a5-4805-b46e-6b4387614d09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21430,fc85ddf4-2de3-42c4-9735-ce05e4a8f28d,LIST_ACCOUNTS,hbciListAccounts,false +21431,fc85ddf4-2de3-42c4-9735-ce05e4a8f28d,LIST_TRANSACTIONS,hbciListTransactions,false +21432,fc85ddf4-2de3-42c4-9735-ce05e4a8f28d,AUTHORIZATION,,false +21433,fc85ddf4-2de3-42c4-9735-ce05e4a8f28d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21434,fc85ddf4-2de3-42c4-9735-ce05e4a8f28d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21435,fc85ddf4-2de3-42c4-9735-ce05e4a8f28d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21436,21938afc-aa73-4175-b66b-531a004db1ec,LIST_ACCOUNTS,xs2aListAccounts,true -21437,21938afc-aa73-4175-b66b-531a004db1ec,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21437,21938afc-aa73-4175-b66b-531a004db1ec,LIST_TRANSACTIONS,xs2aListTransactions,true 21438,21938afc-aa73-4175-b66b-531a004db1ec,AUTHORIZATION,,true 21439,21938afc-aa73-4175-b66b-531a004db1ec,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21440,21938afc-aa73-4175-b66b-531a004db1ec,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21441,21938afc-aa73-4175-b66b-531a004db1ec,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21442,cbeedff4-4e37-4b4b-8d1f-06965483b001,LIST_ACCOUNTS,hbciListAccounts,false -21443,cbeedff4-4e37-4b4b-8d1f-06965483b001,LIST_TRANSACTIONS,hbciListTransactions,false -21444,cbeedff4-4e37-4b4b-8d1f-06965483b001,AUTHORIZATION,,false -21445,cbeedff4-4e37-4b4b-8d1f-06965483b001,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21446,cbeedff4-4e37-4b4b-8d1f-06965483b001,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21447,cbeedff4-4e37-4b4b-8d1f-06965483b001,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21442,d4e68cfa-9476-4025-bda5-64f535d4e5cc,LIST_ACCOUNTS,hbciListAccounts,false +21443,d4e68cfa-9476-4025-bda5-64f535d4e5cc,LIST_TRANSACTIONS,hbciListTransactions,false +21444,d4e68cfa-9476-4025-bda5-64f535d4e5cc,AUTHORIZATION,,false +21445,d4e68cfa-9476-4025-bda5-64f535d4e5cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21446,d4e68cfa-9476-4025-bda5-64f535d4e5cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21447,d4e68cfa-9476-4025-bda5-64f535d4e5cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21448,01775ffd-0da3-41b8-89c3-b4e900a03275,LIST_ACCOUNTS,xs2aListAccounts,true -21449,01775ffd-0da3-41b8-89c3-b4e900a03275,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21449,01775ffd-0da3-41b8-89c3-b4e900a03275,LIST_TRANSACTIONS,xs2aListTransactions,true 21450,01775ffd-0da3-41b8-89c3-b4e900a03275,AUTHORIZATION,,true 21451,01775ffd-0da3-41b8-89c3-b4e900a03275,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21452,01775ffd-0da3-41b8-89c3-b4e900a03275,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21453,01775ffd-0da3-41b8-89c3-b4e900a03275,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21454,39b87570-bd6c-434c-9526-36844ccee919,LIST_ACCOUNTS,hbciListAccounts,false -21455,39b87570-bd6c-434c-9526-36844ccee919,LIST_TRANSACTIONS,hbciListTransactions,false -21456,39b87570-bd6c-434c-9526-36844ccee919,AUTHORIZATION,,false -21457,39b87570-bd6c-434c-9526-36844ccee919,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21458,39b87570-bd6c-434c-9526-36844ccee919,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21459,39b87570-bd6c-434c-9526-36844ccee919,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21454,830e500a-6a88-4a87-bda7-7e3d2f5cbdaa,LIST_ACCOUNTS,hbciListAccounts,false +21455,830e500a-6a88-4a87-bda7-7e3d2f5cbdaa,LIST_TRANSACTIONS,hbciListTransactions,false +21456,830e500a-6a88-4a87-bda7-7e3d2f5cbdaa,AUTHORIZATION,,false +21457,830e500a-6a88-4a87-bda7-7e3d2f5cbdaa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21458,830e500a-6a88-4a87-bda7-7e3d2f5cbdaa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21459,830e500a-6a88-4a87-bda7-7e3d2f5cbdaa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21460,3b0d7198-8b53-49e0-a22e-60f49a4278cc,LIST_ACCOUNTS,xs2aListAccounts,true -21461,3b0d7198-8b53-49e0-a22e-60f49a4278cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21461,3b0d7198-8b53-49e0-a22e-60f49a4278cc,LIST_TRANSACTIONS,xs2aListTransactions,true 21462,3b0d7198-8b53-49e0-a22e-60f49a4278cc,AUTHORIZATION,,true 21463,3b0d7198-8b53-49e0-a22e-60f49a4278cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21464,3b0d7198-8b53-49e0-a22e-60f49a4278cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21465,3b0d7198-8b53-49e0-a22e-60f49a4278cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21466,a62834bc-164c-4901-85d3-5ace57cc65d0,LIST_ACCOUNTS,hbciListAccounts,false -21467,a62834bc-164c-4901-85d3-5ace57cc65d0,LIST_TRANSACTIONS,hbciListTransactions,false -21468,a62834bc-164c-4901-85d3-5ace57cc65d0,AUTHORIZATION,,false -21469,a62834bc-164c-4901-85d3-5ace57cc65d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21470,a62834bc-164c-4901-85d3-5ace57cc65d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21471,a62834bc-164c-4901-85d3-5ace57cc65d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21466,3af22761-e72b-4690-9e35-19ac238b14c0,LIST_ACCOUNTS,hbciListAccounts,false +21467,3af22761-e72b-4690-9e35-19ac238b14c0,LIST_TRANSACTIONS,hbciListTransactions,false +21468,3af22761-e72b-4690-9e35-19ac238b14c0,AUTHORIZATION,,false +21469,3af22761-e72b-4690-9e35-19ac238b14c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21470,3af22761-e72b-4690-9e35-19ac238b14c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21471,3af22761-e72b-4690-9e35-19ac238b14c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21472,3890065c-da26-472f-b62d-ba4240734027,LIST_ACCOUNTS,xs2aListAccounts,true -21473,3890065c-da26-472f-b62d-ba4240734027,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21473,3890065c-da26-472f-b62d-ba4240734027,LIST_TRANSACTIONS,xs2aListTransactions,true 21474,3890065c-da26-472f-b62d-ba4240734027,AUTHORIZATION,,true 21475,3890065c-da26-472f-b62d-ba4240734027,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21476,3890065c-da26-472f-b62d-ba4240734027,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21477,3890065c-da26-472f-b62d-ba4240734027,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21478,c7462cb3-6d90-42e1-8aae-f9c8a09db938,LIST_ACCOUNTS,hbciListAccounts,false -21479,c7462cb3-6d90-42e1-8aae-f9c8a09db938,LIST_TRANSACTIONS,hbciListTransactions,false -21480,c7462cb3-6d90-42e1-8aae-f9c8a09db938,AUTHORIZATION,,false -21481,c7462cb3-6d90-42e1-8aae-f9c8a09db938,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21482,c7462cb3-6d90-42e1-8aae-f9c8a09db938,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21483,c7462cb3-6d90-42e1-8aae-f9c8a09db938,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21478,3d85e73f-464a-4622-9129-b62dc9e2521b,LIST_ACCOUNTS,hbciListAccounts,false +21479,3d85e73f-464a-4622-9129-b62dc9e2521b,LIST_TRANSACTIONS,hbciListTransactions,false +21480,3d85e73f-464a-4622-9129-b62dc9e2521b,AUTHORIZATION,,false +21481,3d85e73f-464a-4622-9129-b62dc9e2521b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21482,3d85e73f-464a-4622-9129-b62dc9e2521b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21483,3d85e73f-464a-4622-9129-b62dc9e2521b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21484,a96c6442-f4fc-416a-8e37-edd2dd5d9c1d,LIST_ACCOUNTS,xs2aListAccounts,true -21485,a96c6442-f4fc-416a-8e37-edd2dd5d9c1d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21485,a96c6442-f4fc-416a-8e37-edd2dd5d9c1d,LIST_TRANSACTIONS,xs2aListTransactions,true 21486,a96c6442-f4fc-416a-8e37-edd2dd5d9c1d,AUTHORIZATION,,true 21487,a96c6442-f4fc-416a-8e37-edd2dd5d9c1d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21488,a96c6442-f4fc-416a-8e37-edd2dd5d9c1d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21489,a96c6442-f4fc-416a-8e37-edd2dd5d9c1d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21490,45f0bf7a-7868-45aa-8b59-51c64315d08d,LIST_ACCOUNTS,hbciListAccounts,false -21491,45f0bf7a-7868-45aa-8b59-51c64315d08d,LIST_TRANSACTIONS,hbciListTransactions,false -21492,45f0bf7a-7868-45aa-8b59-51c64315d08d,AUTHORIZATION,,false -21493,45f0bf7a-7868-45aa-8b59-51c64315d08d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21494,45f0bf7a-7868-45aa-8b59-51c64315d08d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21495,45f0bf7a-7868-45aa-8b59-51c64315d08d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21490,12563de0-917c-4ee1-bbf4-13549eb4c71e,LIST_ACCOUNTS,hbciListAccounts,false +21491,12563de0-917c-4ee1-bbf4-13549eb4c71e,LIST_TRANSACTIONS,hbciListTransactions,false +21492,12563de0-917c-4ee1-bbf4-13549eb4c71e,AUTHORIZATION,,false +21493,12563de0-917c-4ee1-bbf4-13549eb4c71e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21494,12563de0-917c-4ee1-bbf4-13549eb4c71e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21495,12563de0-917c-4ee1-bbf4-13549eb4c71e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21496,c1c9365b-59ed-4e86-bbdf-bd3279aea736,LIST_ACCOUNTS,xs2aListAccounts,true -21497,c1c9365b-59ed-4e86-bbdf-bd3279aea736,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21497,c1c9365b-59ed-4e86-bbdf-bd3279aea736,LIST_TRANSACTIONS,xs2aListTransactions,true 21498,c1c9365b-59ed-4e86-bbdf-bd3279aea736,AUTHORIZATION,,true 21499,c1c9365b-59ed-4e86-bbdf-bd3279aea736,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21500,c1c9365b-59ed-4e86-bbdf-bd3279aea736,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21501,c1c9365b-59ed-4e86-bbdf-bd3279aea736,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21502,6646d8da-9c5b-4367-8446-ba6241b1ddfe,LIST_ACCOUNTS,hbciListAccounts,false -21503,6646d8da-9c5b-4367-8446-ba6241b1ddfe,LIST_TRANSACTIONS,hbciListTransactions,false -21504,6646d8da-9c5b-4367-8446-ba6241b1ddfe,AUTHORIZATION,,false -21505,6646d8da-9c5b-4367-8446-ba6241b1ddfe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21506,6646d8da-9c5b-4367-8446-ba6241b1ddfe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21507,6646d8da-9c5b-4367-8446-ba6241b1ddfe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21502,1c531d77-47a0-4e20-acb9-b275de873881,LIST_ACCOUNTS,hbciListAccounts,false +21503,1c531d77-47a0-4e20-acb9-b275de873881,LIST_TRANSACTIONS,hbciListTransactions,false +21504,1c531d77-47a0-4e20-acb9-b275de873881,AUTHORIZATION,,false +21505,1c531d77-47a0-4e20-acb9-b275de873881,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21506,1c531d77-47a0-4e20-acb9-b275de873881,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21507,1c531d77-47a0-4e20-acb9-b275de873881,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21508,20935fe6-0339-4716-9d1e-729cc9152f08,LIST_ACCOUNTS,xs2aListAccounts,true -21509,20935fe6-0339-4716-9d1e-729cc9152f08,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21509,20935fe6-0339-4716-9d1e-729cc9152f08,LIST_TRANSACTIONS,xs2aListTransactions,true 21510,20935fe6-0339-4716-9d1e-729cc9152f08,AUTHORIZATION,,true 21511,20935fe6-0339-4716-9d1e-729cc9152f08,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21512,20935fe6-0339-4716-9d1e-729cc9152f08,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21513,20935fe6-0339-4716-9d1e-729cc9152f08,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21514,c3db20ab-c878-45d0-b381-50a1f053d837,LIST_ACCOUNTS,hbciListAccounts,false -21515,c3db20ab-c878-45d0-b381-50a1f053d837,LIST_TRANSACTIONS,hbciListTransactions,false -21516,c3db20ab-c878-45d0-b381-50a1f053d837,AUTHORIZATION,,false -21517,c3db20ab-c878-45d0-b381-50a1f053d837,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21518,c3db20ab-c878-45d0-b381-50a1f053d837,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21519,c3db20ab-c878-45d0-b381-50a1f053d837,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21514,f297b206-e956-4e1d-a9ed-2148fbedc80e,LIST_ACCOUNTS,hbciListAccounts,false +21515,f297b206-e956-4e1d-a9ed-2148fbedc80e,LIST_TRANSACTIONS,hbciListTransactions,false +21516,f297b206-e956-4e1d-a9ed-2148fbedc80e,AUTHORIZATION,,false +21517,f297b206-e956-4e1d-a9ed-2148fbedc80e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21518,f297b206-e956-4e1d-a9ed-2148fbedc80e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21519,f297b206-e956-4e1d-a9ed-2148fbedc80e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21520,aaea3369-2638-49d7-aca9-68f10ffc3e8a,LIST_ACCOUNTS,xs2aListAccounts,true -21521,aaea3369-2638-49d7-aca9-68f10ffc3e8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21521,aaea3369-2638-49d7-aca9-68f10ffc3e8a,LIST_TRANSACTIONS,xs2aListTransactions,true 21522,aaea3369-2638-49d7-aca9-68f10ffc3e8a,AUTHORIZATION,,true 21523,aaea3369-2638-49d7-aca9-68f10ffc3e8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21524,aaea3369-2638-49d7-aca9-68f10ffc3e8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21525,aaea3369-2638-49d7-aca9-68f10ffc3e8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21526,d1efc49f-2f39-42e7-9d4d-3157c78f0256,LIST_ACCOUNTS,hbciListAccounts,false -21527,d1efc49f-2f39-42e7-9d4d-3157c78f0256,LIST_TRANSACTIONS,hbciListTransactions,false -21528,d1efc49f-2f39-42e7-9d4d-3157c78f0256,AUTHORIZATION,,false -21529,d1efc49f-2f39-42e7-9d4d-3157c78f0256,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21530,d1efc49f-2f39-42e7-9d4d-3157c78f0256,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21531,d1efc49f-2f39-42e7-9d4d-3157c78f0256,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21526,6eb25ff5-9b1e-488c-8c6a-4de1cb44fdc4,LIST_ACCOUNTS,hbciListAccounts,false +21527,6eb25ff5-9b1e-488c-8c6a-4de1cb44fdc4,LIST_TRANSACTIONS,hbciListTransactions,false +21528,6eb25ff5-9b1e-488c-8c6a-4de1cb44fdc4,AUTHORIZATION,,false +21529,6eb25ff5-9b1e-488c-8c6a-4de1cb44fdc4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21530,6eb25ff5-9b1e-488c-8c6a-4de1cb44fdc4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21531,6eb25ff5-9b1e-488c-8c6a-4de1cb44fdc4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21532,f8ccd689-a3ff-4b91-b17f-cbb7f6328d98,LIST_ACCOUNTS,xs2aListAccounts,true -21533,f8ccd689-a3ff-4b91-b17f-cbb7f6328d98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21533,f8ccd689-a3ff-4b91-b17f-cbb7f6328d98,LIST_TRANSACTIONS,xs2aListTransactions,true 21534,f8ccd689-a3ff-4b91-b17f-cbb7f6328d98,AUTHORIZATION,,true 21535,f8ccd689-a3ff-4b91-b17f-cbb7f6328d98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21536,f8ccd689-a3ff-4b91-b17f-cbb7f6328d98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21537,f8ccd689-a3ff-4b91-b17f-cbb7f6328d98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21538,fe467cc7-b7c2-48c1-a66d-133df64ce9e3,LIST_ACCOUNTS,hbciListAccounts,false -21539,fe467cc7-b7c2-48c1-a66d-133df64ce9e3,LIST_TRANSACTIONS,hbciListTransactions,false -21540,fe467cc7-b7c2-48c1-a66d-133df64ce9e3,AUTHORIZATION,,false -21541,fe467cc7-b7c2-48c1-a66d-133df64ce9e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21542,fe467cc7-b7c2-48c1-a66d-133df64ce9e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21543,fe467cc7-b7c2-48c1-a66d-133df64ce9e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21538,8f18c00c-6b21-4cbb-b8a2-fb7ca7d86143,LIST_ACCOUNTS,hbciListAccounts,false +21539,8f18c00c-6b21-4cbb-b8a2-fb7ca7d86143,LIST_TRANSACTIONS,hbciListTransactions,false +21540,8f18c00c-6b21-4cbb-b8a2-fb7ca7d86143,AUTHORIZATION,,false +21541,8f18c00c-6b21-4cbb-b8a2-fb7ca7d86143,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21542,8f18c00c-6b21-4cbb-b8a2-fb7ca7d86143,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21543,8f18c00c-6b21-4cbb-b8a2-fb7ca7d86143,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21544,48b34c7c-68b6-4768-a50f-2d28a0b4c111,LIST_ACCOUNTS,xs2aListAccounts,true -21545,48b34c7c-68b6-4768-a50f-2d28a0b4c111,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21545,48b34c7c-68b6-4768-a50f-2d28a0b4c111,LIST_TRANSACTIONS,xs2aListTransactions,true 21546,48b34c7c-68b6-4768-a50f-2d28a0b4c111,AUTHORIZATION,,true 21547,48b34c7c-68b6-4768-a50f-2d28a0b4c111,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21548,48b34c7c-68b6-4768-a50f-2d28a0b4c111,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21549,48b34c7c-68b6-4768-a50f-2d28a0b4c111,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21550,a3ee67af-84dc-4df3-bed6-da4b8e84e02d,LIST_ACCOUNTS,hbciListAccounts,false -21551,a3ee67af-84dc-4df3-bed6-da4b8e84e02d,LIST_TRANSACTIONS,hbciListTransactions,false -21552,a3ee67af-84dc-4df3-bed6-da4b8e84e02d,AUTHORIZATION,,false -21553,a3ee67af-84dc-4df3-bed6-da4b8e84e02d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21554,a3ee67af-84dc-4df3-bed6-da4b8e84e02d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21555,a3ee67af-84dc-4df3-bed6-da4b8e84e02d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21550,4a7f5ff4-9c05-47da-8ce9-8a36f274c5c4,LIST_ACCOUNTS,hbciListAccounts,false +21551,4a7f5ff4-9c05-47da-8ce9-8a36f274c5c4,LIST_TRANSACTIONS,hbciListTransactions,false +21552,4a7f5ff4-9c05-47da-8ce9-8a36f274c5c4,AUTHORIZATION,,false +21553,4a7f5ff4-9c05-47da-8ce9-8a36f274c5c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21554,4a7f5ff4-9c05-47da-8ce9-8a36f274c5c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21555,4a7f5ff4-9c05-47da-8ce9-8a36f274c5c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21556,e998e23b-f609-45d2-9967-1d01e99ade14,LIST_ACCOUNTS,xs2aListAccounts,true -21557,e998e23b-f609-45d2-9967-1d01e99ade14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21557,e998e23b-f609-45d2-9967-1d01e99ade14,LIST_TRANSACTIONS,xs2aListTransactions,true 21558,e998e23b-f609-45d2-9967-1d01e99ade14,AUTHORIZATION,,true 21559,e998e23b-f609-45d2-9967-1d01e99ade14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21560,e998e23b-f609-45d2-9967-1d01e99ade14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21561,e998e23b-f609-45d2-9967-1d01e99ade14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21562,00e4772c-d1be-4fe2-959e-a503cd8db4c4,LIST_ACCOUNTS,hbciListAccounts,false -21563,00e4772c-d1be-4fe2-959e-a503cd8db4c4,LIST_TRANSACTIONS,hbciListTransactions,false -21564,00e4772c-d1be-4fe2-959e-a503cd8db4c4,AUTHORIZATION,,false -21565,00e4772c-d1be-4fe2-959e-a503cd8db4c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21566,00e4772c-d1be-4fe2-959e-a503cd8db4c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21567,00e4772c-d1be-4fe2-959e-a503cd8db4c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21562,ca953bee-c8a8-4b92-8cfc-4c6c953d5e50,LIST_ACCOUNTS,hbciListAccounts,false +21563,ca953bee-c8a8-4b92-8cfc-4c6c953d5e50,LIST_TRANSACTIONS,hbciListTransactions,false +21564,ca953bee-c8a8-4b92-8cfc-4c6c953d5e50,AUTHORIZATION,,false +21565,ca953bee-c8a8-4b92-8cfc-4c6c953d5e50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21566,ca953bee-c8a8-4b92-8cfc-4c6c953d5e50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21567,ca953bee-c8a8-4b92-8cfc-4c6c953d5e50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21568,4af25706-e3c6-4b9f-b839-b36d40903695,LIST_ACCOUNTS,xs2aListAccounts,true -21569,4af25706-e3c6-4b9f-b839-b36d40903695,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21569,4af25706-e3c6-4b9f-b839-b36d40903695,LIST_TRANSACTIONS,xs2aListTransactions,true 21570,4af25706-e3c6-4b9f-b839-b36d40903695,AUTHORIZATION,,true 21571,4af25706-e3c6-4b9f-b839-b36d40903695,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21572,4af25706-e3c6-4b9f-b839-b36d40903695,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21573,4af25706-e3c6-4b9f-b839-b36d40903695,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21574,bafb91bd-ef2c-4bae-9b25-d5ecd846615e,LIST_ACCOUNTS,hbciListAccounts,false -21575,bafb91bd-ef2c-4bae-9b25-d5ecd846615e,LIST_TRANSACTIONS,hbciListTransactions,false -21576,bafb91bd-ef2c-4bae-9b25-d5ecd846615e,AUTHORIZATION,,false -21577,bafb91bd-ef2c-4bae-9b25-d5ecd846615e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21578,bafb91bd-ef2c-4bae-9b25-d5ecd846615e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21579,bafb91bd-ef2c-4bae-9b25-d5ecd846615e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21574,ced84963-7480-44f0-9fe0-d8d3fe2f4771,LIST_ACCOUNTS,hbciListAccounts,false +21575,ced84963-7480-44f0-9fe0-d8d3fe2f4771,LIST_TRANSACTIONS,hbciListTransactions,false +21576,ced84963-7480-44f0-9fe0-d8d3fe2f4771,AUTHORIZATION,,false +21577,ced84963-7480-44f0-9fe0-d8d3fe2f4771,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21578,ced84963-7480-44f0-9fe0-d8d3fe2f4771,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21579,ced84963-7480-44f0-9fe0-d8d3fe2f4771,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21580,a14f3077-03c7-48ee-9daf-3530554481fb,LIST_ACCOUNTS,xs2aListAccounts,true -21581,a14f3077-03c7-48ee-9daf-3530554481fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21581,a14f3077-03c7-48ee-9daf-3530554481fb,LIST_TRANSACTIONS,xs2aListTransactions,true 21582,a14f3077-03c7-48ee-9daf-3530554481fb,AUTHORIZATION,,true 21583,a14f3077-03c7-48ee-9daf-3530554481fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21584,a14f3077-03c7-48ee-9daf-3530554481fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21585,a14f3077-03c7-48ee-9daf-3530554481fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21586,ad326335-0ec0-42e4-a014-58beee40672c,LIST_ACCOUNTS,hbciListAccounts,false -21587,ad326335-0ec0-42e4-a014-58beee40672c,LIST_TRANSACTIONS,hbciListTransactions,false -21588,ad326335-0ec0-42e4-a014-58beee40672c,AUTHORIZATION,,false -21589,ad326335-0ec0-42e4-a014-58beee40672c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21590,ad326335-0ec0-42e4-a014-58beee40672c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21591,ad326335-0ec0-42e4-a014-58beee40672c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21586,a12cf61e-42d4-489c-b57a-887403e47355,LIST_ACCOUNTS,hbciListAccounts,false +21587,a12cf61e-42d4-489c-b57a-887403e47355,LIST_TRANSACTIONS,hbciListTransactions,false +21588,a12cf61e-42d4-489c-b57a-887403e47355,AUTHORIZATION,,false +21589,a12cf61e-42d4-489c-b57a-887403e47355,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21590,a12cf61e-42d4-489c-b57a-887403e47355,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21591,a12cf61e-42d4-489c-b57a-887403e47355,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21592,af10f531-83a9-446c-afd6-3ea74d3823c7,LIST_ACCOUNTS,xs2aListAccounts,true -21593,af10f531-83a9-446c-afd6-3ea74d3823c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21593,af10f531-83a9-446c-afd6-3ea74d3823c7,LIST_TRANSACTIONS,xs2aListTransactions,true 21594,af10f531-83a9-446c-afd6-3ea74d3823c7,AUTHORIZATION,,true 21595,af10f531-83a9-446c-afd6-3ea74d3823c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21596,af10f531-83a9-446c-afd6-3ea74d3823c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21597,af10f531-83a9-446c-afd6-3ea74d3823c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21598,bd560a74-5f67-49b5-ba07-88a1b24fc26b,LIST_ACCOUNTS,hbciListAccounts,false -21599,bd560a74-5f67-49b5-ba07-88a1b24fc26b,LIST_TRANSACTIONS,hbciListTransactions,false -21600,bd560a74-5f67-49b5-ba07-88a1b24fc26b,AUTHORIZATION,,false -21601,bd560a74-5f67-49b5-ba07-88a1b24fc26b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21602,bd560a74-5f67-49b5-ba07-88a1b24fc26b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21603,bd560a74-5f67-49b5-ba07-88a1b24fc26b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21598,905fd50d-179a-432c-87e2-09747d829762,LIST_ACCOUNTS,hbciListAccounts,false +21599,905fd50d-179a-432c-87e2-09747d829762,LIST_TRANSACTIONS,hbciListTransactions,false +21600,905fd50d-179a-432c-87e2-09747d829762,AUTHORIZATION,,false +21601,905fd50d-179a-432c-87e2-09747d829762,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21602,905fd50d-179a-432c-87e2-09747d829762,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21603,905fd50d-179a-432c-87e2-09747d829762,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21604,b297b503-8c46-4d33-9a0a-3f092bb76eb7,LIST_ACCOUNTS,xs2aListAccounts,true -21605,b297b503-8c46-4d33-9a0a-3f092bb76eb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21605,b297b503-8c46-4d33-9a0a-3f092bb76eb7,LIST_TRANSACTIONS,xs2aListTransactions,true 21606,b297b503-8c46-4d33-9a0a-3f092bb76eb7,AUTHORIZATION,,true 21607,b297b503-8c46-4d33-9a0a-3f092bb76eb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21608,b297b503-8c46-4d33-9a0a-3f092bb76eb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21609,b297b503-8c46-4d33-9a0a-3f092bb76eb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21610,2ce6f404-cd84-4b89-b027-f732f534d7ef,LIST_ACCOUNTS,hbciListAccounts,false -21611,2ce6f404-cd84-4b89-b027-f732f534d7ef,LIST_TRANSACTIONS,hbciListTransactions,false -21612,2ce6f404-cd84-4b89-b027-f732f534d7ef,AUTHORIZATION,,false -21613,2ce6f404-cd84-4b89-b027-f732f534d7ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21614,2ce6f404-cd84-4b89-b027-f732f534d7ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21615,2ce6f404-cd84-4b89-b027-f732f534d7ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21610,22139f51-a0f4-44fc-bd33-469a66da50ba,LIST_ACCOUNTS,hbciListAccounts,false +21611,22139f51-a0f4-44fc-bd33-469a66da50ba,LIST_TRANSACTIONS,hbciListTransactions,false +21612,22139f51-a0f4-44fc-bd33-469a66da50ba,AUTHORIZATION,,false +21613,22139f51-a0f4-44fc-bd33-469a66da50ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21614,22139f51-a0f4-44fc-bd33-469a66da50ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21615,22139f51-a0f4-44fc-bd33-469a66da50ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21616,bfa1075c-214c-4c1b-aa52-ce4f0560e67b,LIST_ACCOUNTS,xs2aListAccounts,true -21617,bfa1075c-214c-4c1b-aa52-ce4f0560e67b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21617,bfa1075c-214c-4c1b-aa52-ce4f0560e67b,LIST_TRANSACTIONS,xs2aListTransactions,true 21618,bfa1075c-214c-4c1b-aa52-ce4f0560e67b,AUTHORIZATION,,true 21619,bfa1075c-214c-4c1b-aa52-ce4f0560e67b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21620,bfa1075c-214c-4c1b-aa52-ce4f0560e67b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21621,bfa1075c-214c-4c1b-aa52-ce4f0560e67b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21622,6832815a-fc61-4067-828e-b3dea46622e5,LIST_ACCOUNTS,hbciListAccounts,false -21623,6832815a-fc61-4067-828e-b3dea46622e5,LIST_TRANSACTIONS,hbciListTransactions,false -21624,6832815a-fc61-4067-828e-b3dea46622e5,AUTHORIZATION,,false -21625,6832815a-fc61-4067-828e-b3dea46622e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21626,6832815a-fc61-4067-828e-b3dea46622e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21627,6832815a-fc61-4067-828e-b3dea46622e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21622,e8437de1-ad39-4c7c-a8d1-224a8a7fa629,LIST_ACCOUNTS,hbciListAccounts,false +21623,e8437de1-ad39-4c7c-a8d1-224a8a7fa629,LIST_TRANSACTIONS,hbciListTransactions,false +21624,e8437de1-ad39-4c7c-a8d1-224a8a7fa629,AUTHORIZATION,,false +21625,e8437de1-ad39-4c7c-a8d1-224a8a7fa629,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21626,e8437de1-ad39-4c7c-a8d1-224a8a7fa629,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21627,e8437de1-ad39-4c7c-a8d1-224a8a7fa629,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21628,96367620-11e6-40d4-8a55-4e5e311d36df,LIST_ACCOUNTS,xs2aListAccounts,true -21629,96367620-11e6-40d4-8a55-4e5e311d36df,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21629,96367620-11e6-40d4-8a55-4e5e311d36df,LIST_TRANSACTIONS,xs2aListTransactions,true 21630,96367620-11e6-40d4-8a55-4e5e311d36df,AUTHORIZATION,,true 21631,96367620-11e6-40d4-8a55-4e5e311d36df,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21632,96367620-11e6-40d4-8a55-4e5e311d36df,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21633,96367620-11e6-40d4-8a55-4e5e311d36df,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21634,b1bd67ac-3d1f-4480-8f87-aa7ce8f8080d,LIST_ACCOUNTS,hbciListAccounts,false -21635,b1bd67ac-3d1f-4480-8f87-aa7ce8f8080d,LIST_TRANSACTIONS,hbciListTransactions,false -21636,b1bd67ac-3d1f-4480-8f87-aa7ce8f8080d,AUTHORIZATION,,false -21637,b1bd67ac-3d1f-4480-8f87-aa7ce8f8080d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21638,b1bd67ac-3d1f-4480-8f87-aa7ce8f8080d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21639,b1bd67ac-3d1f-4480-8f87-aa7ce8f8080d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21634,471752d5-bdfc-450d-afb4-c13d8fd69f64,LIST_ACCOUNTS,hbciListAccounts,false +21635,471752d5-bdfc-450d-afb4-c13d8fd69f64,LIST_TRANSACTIONS,hbciListTransactions,false +21636,471752d5-bdfc-450d-afb4-c13d8fd69f64,AUTHORIZATION,,false +21637,471752d5-bdfc-450d-afb4-c13d8fd69f64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21638,471752d5-bdfc-450d-afb4-c13d8fd69f64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21639,471752d5-bdfc-450d-afb4-c13d8fd69f64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21640,de4bbd2a-d110-4c94-a020-26358ea96dea,LIST_ACCOUNTS,xs2aListAccounts,true -21641,de4bbd2a-d110-4c94-a020-26358ea96dea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21641,de4bbd2a-d110-4c94-a020-26358ea96dea,LIST_TRANSACTIONS,xs2aListTransactions,true 21642,de4bbd2a-d110-4c94-a020-26358ea96dea,AUTHORIZATION,,true 21643,de4bbd2a-d110-4c94-a020-26358ea96dea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21644,de4bbd2a-d110-4c94-a020-26358ea96dea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21645,de4bbd2a-d110-4c94-a020-26358ea96dea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21646,b2d7d44d-6dba-40d9-8399-d5fd7bfb87b5,LIST_ACCOUNTS,hbciListAccounts,false -21647,b2d7d44d-6dba-40d9-8399-d5fd7bfb87b5,LIST_TRANSACTIONS,hbciListTransactions,false -21648,b2d7d44d-6dba-40d9-8399-d5fd7bfb87b5,AUTHORIZATION,,false -21649,b2d7d44d-6dba-40d9-8399-d5fd7bfb87b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21650,b2d7d44d-6dba-40d9-8399-d5fd7bfb87b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21651,b2d7d44d-6dba-40d9-8399-d5fd7bfb87b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21646,414a90bf-6e62-4b02-958c-81c6d994c720,LIST_ACCOUNTS,hbciListAccounts,false +21647,414a90bf-6e62-4b02-958c-81c6d994c720,LIST_TRANSACTIONS,hbciListTransactions,false +21648,414a90bf-6e62-4b02-958c-81c6d994c720,AUTHORIZATION,,false +21649,414a90bf-6e62-4b02-958c-81c6d994c720,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21650,414a90bf-6e62-4b02-958c-81c6d994c720,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21651,414a90bf-6e62-4b02-958c-81c6d994c720,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21652,51a373fc-059a-4539-8494-eae0215d4315,LIST_ACCOUNTS,xs2aListAccounts,true -21653,51a373fc-059a-4539-8494-eae0215d4315,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21653,51a373fc-059a-4539-8494-eae0215d4315,LIST_TRANSACTIONS,xs2aListTransactions,true 21654,51a373fc-059a-4539-8494-eae0215d4315,AUTHORIZATION,,true 21655,51a373fc-059a-4539-8494-eae0215d4315,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21656,51a373fc-059a-4539-8494-eae0215d4315,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21657,51a373fc-059a-4539-8494-eae0215d4315,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21658,3b15e48e-4a6b-4d32-a285-1c3f72f2f615,LIST_ACCOUNTS,hbciListAccounts,false -21659,3b15e48e-4a6b-4d32-a285-1c3f72f2f615,LIST_TRANSACTIONS,hbciListTransactions,false -21660,3b15e48e-4a6b-4d32-a285-1c3f72f2f615,AUTHORIZATION,,false -21661,3b15e48e-4a6b-4d32-a285-1c3f72f2f615,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21662,3b15e48e-4a6b-4d32-a285-1c3f72f2f615,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21663,3b15e48e-4a6b-4d32-a285-1c3f72f2f615,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21658,63cbcb77-41fb-4d52-b417-2f0090ee9565,LIST_ACCOUNTS,hbciListAccounts,false +21659,63cbcb77-41fb-4d52-b417-2f0090ee9565,LIST_TRANSACTIONS,hbciListTransactions,false +21660,63cbcb77-41fb-4d52-b417-2f0090ee9565,AUTHORIZATION,,false +21661,63cbcb77-41fb-4d52-b417-2f0090ee9565,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21662,63cbcb77-41fb-4d52-b417-2f0090ee9565,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21663,63cbcb77-41fb-4d52-b417-2f0090ee9565,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21664,28b862ea-749f-4771-a12d-26977328b755,LIST_ACCOUNTS,xs2aListAccounts,true -21665,28b862ea-749f-4771-a12d-26977328b755,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21665,28b862ea-749f-4771-a12d-26977328b755,LIST_TRANSACTIONS,xs2aListTransactions,true 21666,28b862ea-749f-4771-a12d-26977328b755,AUTHORIZATION,,true 21667,28b862ea-749f-4771-a12d-26977328b755,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21668,28b862ea-749f-4771-a12d-26977328b755,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21669,28b862ea-749f-4771-a12d-26977328b755,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21670,98456274-7382-48dd-8f2f-301bf4a06727,LIST_ACCOUNTS,hbciListAccounts,false -21671,98456274-7382-48dd-8f2f-301bf4a06727,LIST_TRANSACTIONS,hbciListTransactions,false -21672,98456274-7382-48dd-8f2f-301bf4a06727,AUTHORIZATION,,false -21673,98456274-7382-48dd-8f2f-301bf4a06727,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21674,98456274-7382-48dd-8f2f-301bf4a06727,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21675,98456274-7382-48dd-8f2f-301bf4a06727,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21670,34f4fed4-bef0-4c01-9cb4-b2a0d10c2b4a,LIST_ACCOUNTS,hbciListAccounts,false +21671,34f4fed4-bef0-4c01-9cb4-b2a0d10c2b4a,LIST_TRANSACTIONS,hbciListTransactions,false +21672,34f4fed4-bef0-4c01-9cb4-b2a0d10c2b4a,AUTHORIZATION,,false +21673,34f4fed4-bef0-4c01-9cb4-b2a0d10c2b4a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21674,34f4fed4-bef0-4c01-9cb4-b2a0d10c2b4a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21675,34f4fed4-bef0-4c01-9cb4-b2a0d10c2b4a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21676,1de7fe16-e20e-4533-a42c-d91b182d1edc,LIST_ACCOUNTS,xs2aListAccounts,true -21677,1de7fe16-e20e-4533-a42c-d91b182d1edc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21677,1de7fe16-e20e-4533-a42c-d91b182d1edc,LIST_TRANSACTIONS,xs2aListTransactions,true 21678,1de7fe16-e20e-4533-a42c-d91b182d1edc,AUTHORIZATION,,true 21679,1de7fe16-e20e-4533-a42c-d91b182d1edc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21680,1de7fe16-e20e-4533-a42c-d91b182d1edc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21681,1de7fe16-e20e-4533-a42c-d91b182d1edc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21682,c2129bf2-5abb-4f15-8f22-fde882e6396b,LIST_ACCOUNTS,hbciListAccounts,false -21683,c2129bf2-5abb-4f15-8f22-fde882e6396b,LIST_TRANSACTIONS,hbciListTransactions,false -21684,c2129bf2-5abb-4f15-8f22-fde882e6396b,AUTHORIZATION,,false -21685,c2129bf2-5abb-4f15-8f22-fde882e6396b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21686,c2129bf2-5abb-4f15-8f22-fde882e6396b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21687,c2129bf2-5abb-4f15-8f22-fde882e6396b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21682,f9ed2ad1-6e85-46f3-84d4-80fe10718665,LIST_ACCOUNTS,hbciListAccounts,false +21683,f9ed2ad1-6e85-46f3-84d4-80fe10718665,LIST_TRANSACTIONS,hbciListTransactions,false +21684,f9ed2ad1-6e85-46f3-84d4-80fe10718665,AUTHORIZATION,,false +21685,f9ed2ad1-6e85-46f3-84d4-80fe10718665,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21686,f9ed2ad1-6e85-46f3-84d4-80fe10718665,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21687,f9ed2ad1-6e85-46f3-84d4-80fe10718665,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21688,bc7181fa-8b93-4ad4-bb12-8795a848783b,LIST_ACCOUNTS,xs2aListAccounts,true -21689,bc7181fa-8b93-4ad4-bb12-8795a848783b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21689,bc7181fa-8b93-4ad4-bb12-8795a848783b,LIST_TRANSACTIONS,xs2aListTransactions,true 21690,bc7181fa-8b93-4ad4-bb12-8795a848783b,AUTHORIZATION,,true 21691,bc7181fa-8b93-4ad4-bb12-8795a848783b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21692,bc7181fa-8b93-4ad4-bb12-8795a848783b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21693,bc7181fa-8b93-4ad4-bb12-8795a848783b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21694,f914b19d-b9d9-4e72-987e-e1cc3b715a49,LIST_ACCOUNTS,hbciListAccounts,false -21695,f914b19d-b9d9-4e72-987e-e1cc3b715a49,LIST_TRANSACTIONS,hbciListTransactions,false -21696,f914b19d-b9d9-4e72-987e-e1cc3b715a49,AUTHORIZATION,,false -21697,f914b19d-b9d9-4e72-987e-e1cc3b715a49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21698,f914b19d-b9d9-4e72-987e-e1cc3b715a49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21699,f914b19d-b9d9-4e72-987e-e1cc3b715a49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21694,0806f31c-051c-4245-97af-ee12be6f4cba,LIST_ACCOUNTS,hbciListAccounts,false +21695,0806f31c-051c-4245-97af-ee12be6f4cba,LIST_TRANSACTIONS,hbciListTransactions,false +21696,0806f31c-051c-4245-97af-ee12be6f4cba,AUTHORIZATION,,false +21697,0806f31c-051c-4245-97af-ee12be6f4cba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21698,0806f31c-051c-4245-97af-ee12be6f4cba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21699,0806f31c-051c-4245-97af-ee12be6f4cba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21700,aa54e425-d544-4780-b812-da7651372524,LIST_ACCOUNTS,xs2aListAccounts,true -21701,aa54e425-d544-4780-b812-da7651372524,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21701,aa54e425-d544-4780-b812-da7651372524,LIST_TRANSACTIONS,xs2aListTransactions,true 21702,aa54e425-d544-4780-b812-da7651372524,AUTHORIZATION,,true 21703,aa54e425-d544-4780-b812-da7651372524,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21704,aa54e425-d544-4780-b812-da7651372524,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21705,aa54e425-d544-4780-b812-da7651372524,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21706,f0997ad3-1243-42d6-b458-9aa689b4515e,LIST_ACCOUNTS,hbciListAccounts,false -21707,f0997ad3-1243-42d6-b458-9aa689b4515e,LIST_TRANSACTIONS,hbciListTransactions,false -21708,f0997ad3-1243-42d6-b458-9aa689b4515e,AUTHORIZATION,,false -21709,f0997ad3-1243-42d6-b458-9aa689b4515e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21710,f0997ad3-1243-42d6-b458-9aa689b4515e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21711,f0997ad3-1243-42d6-b458-9aa689b4515e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21706,15902ec1-a046-4b3e-9b16-7be70b11954c,LIST_ACCOUNTS,hbciListAccounts,false +21707,15902ec1-a046-4b3e-9b16-7be70b11954c,LIST_TRANSACTIONS,hbciListTransactions,false +21708,15902ec1-a046-4b3e-9b16-7be70b11954c,AUTHORIZATION,,false +21709,15902ec1-a046-4b3e-9b16-7be70b11954c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21710,15902ec1-a046-4b3e-9b16-7be70b11954c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21711,15902ec1-a046-4b3e-9b16-7be70b11954c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21712,91edee70-192c-4fa3-b2d0-5516170c9199,LIST_ACCOUNTS,xs2aListAccounts,true -21713,91edee70-192c-4fa3-b2d0-5516170c9199,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21713,91edee70-192c-4fa3-b2d0-5516170c9199,LIST_TRANSACTIONS,xs2aListTransactions,true 21714,91edee70-192c-4fa3-b2d0-5516170c9199,AUTHORIZATION,,true 21715,91edee70-192c-4fa3-b2d0-5516170c9199,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21716,91edee70-192c-4fa3-b2d0-5516170c9199,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21717,91edee70-192c-4fa3-b2d0-5516170c9199,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21718,6a8d16e5-06d0-45aa-8e5b-2e066498df80,LIST_ACCOUNTS,hbciListAccounts,false -21719,6a8d16e5-06d0-45aa-8e5b-2e066498df80,LIST_TRANSACTIONS,hbciListTransactions,false -21720,6a8d16e5-06d0-45aa-8e5b-2e066498df80,AUTHORIZATION,,false -21721,6a8d16e5-06d0-45aa-8e5b-2e066498df80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21722,6a8d16e5-06d0-45aa-8e5b-2e066498df80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21723,6a8d16e5-06d0-45aa-8e5b-2e066498df80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21718,2261d3fa-24a0-4c72-a53f-af8edcf79c62,LIST_ACCOUNTS,hbciListAccounts,false +21719,2261d3fa-24a0-4c72-a53f-af8edcf79c62,LIST_TRANSACTIONS,hbciListTransactions,false +21720,2261d3fa-24a0-4c72-a53f-af8edcf79c62,AUTHORIZATION,,false +21721,2261d3fa-24a0-4c72-a53f-af8edcf79c62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21722,2261d3fa-24a0-4c72-a53f-af8edcf79c62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21723,2261d3fa-24a0-4c72-a53f-af8edcf79c62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21724,743357d8-e661-4746-8dfd-e7713d979ea0,LIST_ACCOUNTS,xs2aListAccounts,true -21725,743357d8-e661-4746-8dfd-e7713d979ea0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21725,743357d8-e661-4746-8dfd-e7713d979ea0,LIST_TRANSACTIONS,xs2aListTransactions,true 21726,743357d8-e661-4746-8dfd-e7713d979ea0,AUTHORIZATION,,true 21727,743357d8-e661-4746-8dfd-e7713d979ea0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21728,743357d8-e661-4746-8dfd-e7713d979ea0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21729,743357d8-e661-4746-8dfd-e7713d979ea0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21730,6ecbcdd1-87c9-448c-b48f-75479803c90b,LIST_ACCOUNTS,hbciListAccounts,false -21731,6ecbcdd1-87c9-448c-b48f-75479803c90b,LIST_TRANSACTIONS,hbciListTransactions,false -21732,6ecbcdd1-87c9-448c-b48f-75479803c90b,AUTHORIZATION,,false -21733,6ecbcdd1-87c9-448c-b48f-75479803c90b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21734,6ecbcdd1-87c9-448c-b48f-75479803c90b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21735,6ecbcdd1-87c9-448c-b48f-75479803c90b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21730,1326049c-d10c-4d24-a326-f510176de7d2,LIST_ACCOUNTS,hbciListAccounts,false +21731,1326049c-d10c-4d24-a326-f510176de7d2,LIST_TRANSACTIONS,hbciListTransactions,false +21732,1326049c-d10c-4d24-a326-f510176de7d2,AUTHORIZATION,,false +21733,1326049c-d10c-4d24-a326-f510176de7d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21734,1326049c-d10c-4d24-a326-f510176de7d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21735,1326049c-d10c-4d24-a326-f510176de7d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21736,1a6a3c0f-7eed-4f61-9c23-5c4e94fe37e6,LIST_ACCOUNTS,xs2aListAccounts,true -21737,1a6a3c0f-7eed-4f61-9c23-5c4e94fe37e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21737,1a6a3c0f-7eed-4f61-9c23-5c4e94fe37e6,LIST_TRANSACTIONS,xs2aListTransactions,true 21738,1a6a3c0f-7eed-4f61-9c23-5c4e94fe37e6,AUTHORIZATION,,true 21739,1a6a3c0f-7eed-4f61-9c23-5c4e94fe37e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21740,1a6a3c0f-7eed-4f61-9c23-5c4e94fe37e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21741,1a6a3c0f-7eed-4f61-9c23-5c4e94fe37e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21742,e5887427-6918-479b-b7f7-95469d6bdfa5,LIST_ACCOUNTS,hbciListAccounts,false -21743,e5887427-6918-479b-b7f7-95469d6bdfa5,LIST_TRANSACTIONS,hbciListTransactions,false -21744,e5887427-6918-479b-b7f7-95469d6bdfa5,AUTHORIZATION,,false -21745,e5887427-6918-479b-b7f7-95469d6bdfa5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21746,e5887427-6918-479b-b7f7-95469d6bdfa5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21747,e5887427-6918-479b-b7f7-95469d6bdfa5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21742,dcd3e997-e64d-4f92-83e1-fe8d6fcdf1cf,LIST_ACCOUNTS,hbciListAccounts,false +21743,dcd3e997-e64d-4f92-83e1-fe8d6fcdf1cf,LIST_TRANSACTIONS,hbciListTransactions,false +21744,dcd3e997-e64d-4f92-83e1-fe8d6fcdf1cf,AUTHORIZATION,,false +21745,dcd3e997-e64d-4f92-83e1-fe8d6fcdf1cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21746,dcd3e997-e64d-4f92-83e1-fe8d6fcdf1cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21747,dcd3e997-e64d-4f92-83e1-fe8d6fcdf1cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21748,dfff2433-2bae-49b8-8927-1ac062f1fa28,LIST_ACCOUNTS,xs2aListAccounts,true -21749,dfff2433-2bae-49b8-8927-1ac062f1fa28,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21749,dfff2433-2bae-49b8-8927-1ac062f1fa28,LIST_TRANSACTIONS,xs2aListTransactions,true 21750,dfff2433-2bae-49b8-8927-1ac062f1fa28,AUTHORIZATION,,true 21751,dfff2433-2bae-49b8-8927-1ac062f1fa28,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21752,dfff2433-2bae-49b8-8927-1ac062f1fa28,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21753,dfff2433-2bae-49b8-8927-1ac062f1fa28,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21754,0868691a-5505-4a7b-90ae-d78bf9d2fe1b,LIST_ACCOUNTS,hbciListAccounts,false -21755,0868691a-5505-4a7b-90ae-d78bf9d2fe1b,LIST_TRANSACTIONS,hbciListTransactions,false -21756,0868691a-5505-4a7b-90ae-d78bf9d2fe1b,AUTHORIZATION,,false -21757,0868691a-5505-4a7b-90ae-d78bf9d2fe1b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21758,0868691a-5505-4a7b-90ae-d78bf9d2fe1b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21759,0868691a-5505-4a7b-90ae-d78bf9d2fe1b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21754,c9b3ea9e-714a-47f7-8c02-f38c4be8cd48,LIST_ACCOUNTS,hbciListAccounts,false +21755,c9b3ea9e-714a-47f7-8c02-f38c4be8cd48,LIST_TRANSACTIONS,hbciListTransactions,false +21756,c9b3ea9e-714a-47f7-8c02-f38c4be8cd48,AUTHORIZATION,,false +21757,c9b3ea9e-714a-47f7-8c02-f38c4be8cd48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21758,c9b3ea9e-714a-47f7-8c02-f38c4be8cd48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21759,c9b3ea9e-714a-47f7-8c02-f38c4be8cd48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21760,19dde384-f644-44e6-946f-5fdd39e97b56,LIST_ACCOUNTS,xs2aListAccounts,true -21761,19dde384-f644-44e6-946f-5fdd39e97b56,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21761,19dde384-f644-44e6-946f-5fdd39e97b56,LIST_TRANSACTIONS,xs2aListTransactions,true 21762,19dde384-f644-44e6-946f-5fdd39e97b56,AUTHORIZATION,,true 21763,19dde384-f644-44e6-946f-5fdd39e97b56,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21764,19dde384-f644-44e6-946f-5fdd39e97b56,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21765,19dde384-f644-44e6-946f-5fdd39e97b56,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21766,89a9e3e1-4c9d-4847-9add-b0385574aebf,LIST_ACCOUNTS,hbciListAccounts,false -21767,89a9e3e1-4c9d-4847-9add-b0385574aebf,LIST_TRANSACTIONS,hbciListTransactions,false -21768,89a9e3e1-4c9d-4847-9add-b0385574aebf,AUTHORIZATION,,false -21769,89a9e3e1-4c9d-4847-9add-b0385574aebf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21770,89a9e3e1-4c9d-4847-9add-b0385574aebf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21771,89a9e3e1-4c9d-4847-9add-b0385574aebf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21766,1be725c7-2608-4666-8cf0-7289513c71e9,LIST_ACCOUNTS,hbciListAccounts,false +21767,1be725c7-2608-4666-8cf0-7289513c71e9,LIST_TRANSACTIONS,hbciListTransactions,false +21768,1be725c7-2608-4666-8cf0-7289513c71e9,AUTHORIZATION,,false +21769,1be725c7-2608-4666-8cf0-7289513c71e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21770,1be725c7-2608-4666-8cf0-7289513c71e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21771,1be725c7-2608-4666-8cf0-7289513c71e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21772,90461758-1ca7-4c1e-ba11-18f5c628189e,LIST_ACCOUNTS,xs2aListAccounts,true -21773,90461758-1ca7-4c1e-ba11-18f5c628189e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21773,90461758-1ca7-4c1e-ba11-18f5c628189e,LIST_TRANSACTIONS,xs2aListTransactions,true 21774,90461758-1ca7-4c1e-ba11-18f5c628189e,AUTHORIZATION,,true 21775,90461758-1ca7-4c1e-ba11-18f5c628189e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21776,90461758-1ca7-4c1e-ba11-18f5c628189e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21777,90461758-1ca7-4c1e-ba11-18f5c628189e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21778,d0e2543b-4775-4bc4-ac59-dc3df0e1af2b,LIST_ACCOUNTS,hbciListAccounts,false -21779,d0e2543b-4775-4bc4-ac59-dc3df0e1af2b,LIST_TRANSACTIONS,hbciListTransactions,false -21780,d0e2543b-4775-4bc4-ac59-dc3df0e1af2b,AUTHORIZATION,,false -21781,d0e2543b-4775-4bc4-ac59-dc3df0e1af2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21782,d0e2543b-4775-4bc4-ac59-dc3df0e1af2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21783,d0e2543b-4775-4bc4-ac59-dc3df0e1af2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21778,d6a98632-64b3-4d20-bffa-e7dba9ac8262,LIST_ACCOUNTS,hbciListAccounts,false +21779,d6a98632-64b3-4d20-bffa-e7dba9ac8262,LIST_TRANSACTIONS,hbciListTransactions,false +21780,d6a98632-64b3-4d20-bffa-e7dba9ac8262,AUTHORIZATION,,false +21781,d6a98632-64b3-4d20-bffa-e7dba9ac8262,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21782,d6a98632-64b3-4d20-bffa-e7dba9ac8262,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21783,d6a98632-64b3-4d20-bffa-e7dba9ac8262,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21784,dc9f2e74-2eb1-4b15-b55c-435161d2c662,LIST_ACCOUNTS,xs2aListAccounts,true -21785,dc9f2e74-2eb1-4b15-b55c-435161d2c662,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21785,dc9f2e74-2eb1-4b15-b55c-435161d2c662,LIST_TRANSACTIONS,xs2aListTransactions,true 21786,dc9f2e74-2eb1-4b15-b55c-435161d2c662,AUTHORIZATION,,true 21787,dc9f2e74-2eb1-4b15-b55c-435161d2c662,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21788,dc9f2e74-2eb1-4b15-b55c-435161d2c662,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21789,dc9f2e74-2eb1-4b15-b55c-435161d2c662,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21790,aa29aed6-bb14-4264-a2ef-2b90ba4f2272,LIST_ACCOUNTS,hbciListAccounts,false -21791,aa29aed6-bb14-4264-a2ef-2b90ba4f2272,LIST_TRANSACTIONS,hbciListTransactions,false -21792,aa29aed6-bb14-4264-a2ef-2b90ba4f2272,AUTHORIZATION,,false -21793,aa29aed6-bb14-4264-a2ef-2b90ba4f2272,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21794,aa29aed6-bb14-4264-a2ef-2b90ba4f2272,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21795,aa29aed6-bb14-4264-a2ef-2b90ba4f2272,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21790,d835798f-1cdd-4185-b152-1633bc5986ff,LIST_ACCOUNTS,hbciListAccounts,false +21791,d835798f-1cdd-4185-b152-1633bc5986ff,LIST_TRANSACTIONS,hbciListTransactions,false +21792,d835798f-1cdd-4185-b152-1633bc5986ff,AUTHORIZATION,,false +21793,d835798f-1cdd-4185-b152-1633bc5986ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21794,d835798f-1cdd-4185-b152-1633bc5986ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21795,d835798f-1cdd-4185-b152-1633bc5986ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21796,8d0d09d5-2f9a-4e51-848b-a2c8a6767d20,LIST_ACCOUNTS,xs2aListAccounts,true -21797,8d0d09d5-2f9a-4e51-848b-a2c8a6767d20,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21797,8d0d09d5-2f9a-4e51-848b-a2c8a6767d20,LIST_TRANSACTIONS,xs2aListTransactions,true 21798,8d0d09d5-2f9a-4e51-848b-a2c8a6767d20,AUTHORIZATION,,true 21799,8d0d09d5-2f9a-4e51-848b-a2c8a6767d20,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21800,8d0d09d5-2f9a-4e51-848b-a2c8a6767d20,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21801,8d0d09d5-2f9a-4e51-848b-a2c8a6767d20,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21802,7e3715f3-2aca-4291-abd4-9b4fa6b705f8,LIST_ACCOUNTS,hbciListAccounts,false -21803,7e3715f3-2aca-4291-abd4-9b4fa6b705f8,LIST_TRANSACTIONS,hbciListTransactions,false -21804,7e3715f3-2aca-4291-abd4-9b4fa6b705f8,AUTHORIZATION,,false -21805,7e3715f3-2aca-4291-abd4-9b4fa6b705f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21806,7e3715f3-2aca-4291-abd4-9b4fa6b705f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21807,7e3715f3-2aca-4291-abd4-9b4fa6b705f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21802,d5ec3bab-e96a-4c87-ab70-9448735bef62,LIST_ACCOUNTS,hbciListAccounts,false +21803,d5ec3bab-e96a-4c87-ab70-9448735bef62,LIST_TRANSACTIONS,hbciListTransactions,false +21804,d5ec3bab-e96a-4c87-ab70-9448735bef62,AUTHORIZATION,,false +21805,d5ec3bab-e96a-4c87-ab70-9448735bef62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21806,d5ec3bab-e96a-4c87-ab70-9448735bef62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21807,d5ec3bab-e96a-4c87-ab70-9448735bef62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21808,410ebcce-b69e-4bad-8fd4-2eded91b7de5,LIST_ACCOUNTS,xs2aListAccounts,true -21809,410ebcce-b69e-4bad-8fd4-2eded91b7de5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21809,410ebcce-b69e-4bad-8fd4-2eded91b7de5,LIST_TRANSACTIONS,xs2aListTransactions,true 21810,410ebcce-b69e-4bad-8fd4-2eded91b7de5,AUTHORIZATION,,true 21811,410ebcce-b69e-4bad-8fd4-2eded91b7de5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21812,410ebcce-b69e-4bad-8fd4-2eded91b7de5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21813,410ebcce-b69e-4bad-8fd4-2eded91b7de5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21814,9face340-19d7-4319-a8b7-e9cadcc0ecfb,LIST_ACCOUNTS,hbciListAccounts,false -21815,9face340-19d7-4319-a8b7-e9cadcc0ecfb,LIST_TRANSACTIONS,hbciListTransactions,false -21816,9face340-19d7-4319-a8b7-e9cadcc0ecfb,AUTHORIZATION,,false -21817,9face340-19d7-4319-a8b7-e9cadcc0ecfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21818,9face340-19d7-4319-a8b7-e9cadcc0ecfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21819,9face340-19d7-4319-a8b7-e9cadcc0ecfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21814,71e65d3f-c54e-4dcb-987f-c6f7ba049820,LIST_ACCOUNTS,hbciListAccounts,false +21815,71e65d3f-c54e-4dcb-987f-c6f7ba049820,LIST_TRANSACTIONS,hbciListTransactions,false +21816,71e65d3f-c54e-4dcb-987f-c6f7ba049820,AUTHORIZATION,,false +21817,71e65d3f-c54e-4dcb-987f-c6f7ba049820,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21818,71e65d3f-c54e-4dcb-987f-c6f7ba049820,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21819,71e65d3f-c54e-4dcb-987f-c6f7ba049820,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21820,76e6992c-eef8-46f5-b52c-4e87d9cd8de5,LIST_ACCOUNTS,xs2aListAccounts,true -21821,76e6992c-eef8-46f5-b52c-4e87d9cd8de5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21821,76e6992c-eef8-46f5-b52c-4e87d9cd8de5,LIST_TRANSACTIONS,xs2aListTransactions,true 21822,76e6992c-eef8-46f5-b52c-4e87d9cd8de5,AUTHORIZATION,,true 21823,76e6992c-eef8-46f5-b52c-4e87d9cd8de5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21824,76e6992c-eef8-46f5-b52c-4e87d9cd8de5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21825,76e6992c-eef8-46f5-b52c-4e87d9cd8de5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21826,75743d65-68f0-4401-a335-b861a5e20172,LIST_ACCOUNTS,hbciListAccounts,false -21827,75743d65-68f0-4401-a335-b861a5e20172,LIST_TRANSACTIONS,hbciListTransactions,false -21828,75743d65-68f0-4401-a335-b861a5e20172,AUTHORIZATION,,false -21829,75743d65-68f0-4401-a335-b861a5e20172,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21830,75743d65-68f0-4401-a335-b861a5e20172,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21831,75743d65-68f0-4401-a335-b861a5e20172,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21826,61b998ee-f953-4b04-b70e-2a3a442367c1,LIST_ACCOUNTS,hbciListAccounts,false +21827,61b998ee-f953-4b04-b70e-2a3a442367c1,LIST_TRANSACTIONS,hbciListTransactions,false +21828,61b998ee-f953-4b04-b70e-2a3a442367c1,AUTHORIZATION,,false +21829,61b998ee-f953-4b04-b70e-2a3a442367c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21830,61b998ee-f953-4b04-b70e-2a3a442367c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21831,61b998ee-f953-4b04-b70e-2a3a442367c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21832,f9e040da-4265-4545-9cc8-d30f3ba0f324,LIST_ACCOUNTS,xs2aListAccounts,true -21833,f9e040da-4265-4545-9cc8-d30f3ba0f324,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21833,f9e040da-4265-4545-9cc8-d30f3ba0f324,LIST_TRANSACTIONS,xs2aListTransactions,true 21834,f9e040da-4265-4545-9cc8-d30f3ba0f324,AUTHORIZATION,,true 21835,f9e040da-4265-4545-9cc8-d30f3ba0f324,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21836,f9e040da-4265-4545-9cc8-d30f3ba0f324,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21837,f9e040da-4265-4545-9cc8-d30f3ba0f324,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21838,c8c96838-213e-4c91-8b3f-1c0ce1864ebd,LIST_ACCOUNTS,hbciListAccounts,false -21839,c8c96838-213e-4c91-8b3f-1c0ce1864ebd,LIST_TRANSACTIONS,hbciListTransactions,false -21840,c8c96838-213e-4c91-8b3f-1c0ce1864ebd,AUTHORIZATION,,false -21841,c8c96838-213e-4c91-8b3f-1c0ce1864ebd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21842,c8c96838-213e-4c91-8b3f-1c0ce1864ebd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21843,c8c96838-213e-4c91-8b3f-1c0ce1864ebd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21838,01b35f3b-5275-4786-97f3-8c02840857df,LIST_ACCOUNTS,hbciListAccounts,false +21839,01b35f3b-5275-4786-97f3-8c02840857df,LIST_TRANSACTIONS,hbciListTransactions,false +21840,01b35f3b-5275-4786-97f3-8c02840857df,AUTHORIZATION,,false +21841,01b35f3b-5275-4786-97f3-8c02840857df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21842,01b35f3b-5275-4786-97f3-8c02840857df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21843,01b35f3b-5275-4786-97f3-8c02840857df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21844,5329eebd-22a7-4f80-aed0-05eb6f09af11,LIST_ACCOUNTS,xs2aListAccounts,true -21845,5329eebd-22a7-4f80-aed0-05eb6f09af11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21845,5329eebd-22a7-4f80-aed0-05eb6f09af11,LIST_TRANSACTIONS,xs2aListTransactions,true 21846,5329eebd-22a7-4f80-aed0-05eb6f09af11,AUTHORIZATION,,true 21847,5329eebd-22a7-4f80-aed0-05eb6f09af11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21848,5329eebd-22a7-4f80-aed0-05eb6f09af11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21849,5329eebd-22a7-4f80-aed0-05eb6f09af11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21850,6044cd71-cf3d-49df-a18f-08ba185a2fc7,LIST_ACCOUNTS,hbciListAccounts,false -21851,6044cd71-cf3d-49df-a18f-08ba185a2fc7,LIST_TRANSACTIONS,hbciListTransactions,false -21852,6044cd71-cf3d-49df-a18f-08ba185a2fc7,AUTHORIZATION,,false -21853,6044cd71-cf3d-49df-a18f-08ba185a2fc7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21854,6044cd71-cf3d-49df-a18f-08ba185a2fc7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21855,6044cd71-cf3d-49df-a18f-08ba185a2fc7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21850,d237ccee-24eb-4e96-8fe7-02e6444a50f3,LIST_ACCOUNTS,hbciListAccounts,false +21851,d237ccee-24eb-4e96-8fe7-02e6444a50f3,LIST_TRANSACTIONS,hbciListTransactions,false +21852,d237ccee-24eb-4e96-8fe7-02e6444a50f3,AUTHORIZATION,,false +21853,d237ccee-24eb-4e96-8fe7-02e6444a50f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21854,d237ccee-24eb-4e96-8fe7-02e6444a50f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21855,d237ccee-24eb-4e96-8fe7-02e6444a50f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21856,da2ba05d-8da3-486c-9b40-a6296f3f00a3,LIST_ACCOUNTS,xs2aListAccounts,true -21857,da2ba05d-8da3-486c-9b40-a6296f3f00a3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21857,da2ba05d-8da3-486c-9b40-a6296f3f00a3,LIST_TRANSACTIONS,xs2aListTransactions,true 21858,da2ba05d-8da3-486c-9b40-a6296f3f00a3,AUTHORIZATION,,true 21859,da2ba05d-8da3-486c-9b40-a6296f3f00a3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21860,da2ba05d-8da3-486c-9b40-a6296f3f00a3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21861,da2ba05d-8da3-486c-9b40-a6296f3f00a3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21862,35d1c0a8-4970-402e-aa63-930bee125e25,LIST_ACCOUNTS,hbciListAccounts,false -21863,35d1c0a8-4970-402e-aa63-930bee125e25,LIST_TRANSACTIONS,hbciListTransactions,false -21864,35d1c0a8-4970-402e-aa63-930bee125e25,AUTHORIZATION,,false -21865,35d1c0a8-4970-402e-aa63-930bee125e25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21866,35d1c0a8-4970-402e-aa63-930bee125e25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21867,35d1c0a8-4970-402e-aa63-930bee125e25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21862,728821ad-b282-436e-ab26-5b4eef2524e2,LIST_ACCOUNTS,hbciListAccounts,false +21863,728821ad-b282-436e-ab26-5b4eef2524e2,LIST_TRANSACTIONS,hbciListTransactions,false +21864,728821ad-b282-436e-ab26-5b4eef2524e2,AUTHORIZATION,,false +21865,728821ad-b282-436e-ab26-5b4eef2524e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21866,728821ad-b282-436e-ab26-5b4eef2524e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21867,728821ad-b282-436e-ab26-5b4eef2524e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21868,d3e9a918-3492-4bc1-a3d7-72e1d50b1719,LIST_ACCOUNTS,xs2aListAccounts,true -21869,d3e9a918-3492-4bc1-a3d7-72e1d50b1719,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21869,d3e9a918-3492-4bc1-a3d7-72e1d50b1719,LIST_TRANSACTIONS,xs2aListTransactions,true 21870,d3e9a918-3492-4bc1-a3d7-72e1d50b1719,AUTHORIZATION,,true 21871,d3e9a918-3492-4bc1-a3d7-72e1d50b1719,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21872,d3e9a918-3492-4bc1-a3d7-72e1d50b1719,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21873,d3e9a918-3492-4bc1-a3d7-72e1d50b1719,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21874,0e396a88-3e2a-4e67-be18-e40c32cd6cbf,LIST_ACCOUNTS,hbciListAccounts,false -21875,0e396a88-3e2a-4e67-be18-e40c32cd6cbf,LIST_TRANSACTIONS,hbciListTransactions,false -21876,0e396a88-3e2a-4e67-be18-e40c32cd6cbf,AUTHORIZATION,,false -21877,0e396a88-3e2a-4e67-be18-e40c32cd6cbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21878,0e396a88-3e2a-4e67-be18-e40c32cd6cbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21879,0e396a88-3e2a-4e67-be18-e40c32cd6cbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21874,d8cc9fc9-da82-4979-bb9a-37ff5adb1d23,LIST_ACCOUNTS,hbciListAccounts,false +21875,d8cc9fc9-da82-4979-bb9a-37ff5adb1d23,LIST_TRANSACTIONS,hbciListTransactions,false +21876,d8cc9fc9-da82-4979-bb9a-37ff5adb1d23,AUTHORIZATION,,false +21877,d8cc9fc9-da82-4979-bb9a-37ff5adb1d23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21878,d8cc9fc9-da82-4979-bb9a-37ff5adb1d23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21879,d8cc9fc9-da82-4979-bb9a-37ff5adb1d23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21880,dc64e6df-6dea-45ff-9a51-f0ea6f944603,LIST_ACCOUNTS,xs2aListAccounts,true -21881,dc64e6df-6dea-45ff-9a51-f0ea6f944603,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21881,dc64e6df-6dea-45ff-9a51-f0ea6f944603,LIST_TRANSACTIONS,xs2aListTransactions,true 21882,dc64e6df-6dea-45ff-9a51-f0ea6f944603,AUTHORIZATION,,true 21883,dc64e6df-6dea-45ff-9a51-f0ea6f944603,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21884,dc64e6df-6dea-45ff-9a51-f0ea6f944603,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21885,dc64e6df-6dea-45ff-9a51-f0ea6f944603,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21886,65795882-00ad-4b30-99b7-61d107764edb,LIST_ACCOUNTS,hbciListAccounts,false -21887,65795882-00ad-4b30-99b7-61d107764edb,LIST_TRANSACTIONS,hbciListTransactions,false -21888,65795882-00ad-4b30-99b7-61d107764edb,AUTHORIZATION,,false -21889,65795882-00ad-4b30-99b7-61d107764edb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21890,65795882-00ad-4b30-99b7-61d107764edb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21891,65795882-00ad-4b30-99b7-61d107764edb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21886,b1903dc5-d0ba-4d4a-a36f-7b8295b95c91,LIST_ACCOUNTS,hbciListAccounts,false +21887,b1903dc5-d0ba-4d4a-a36f-7b8295b95c91,LIST_TRANSACTIONS,hbciListTransactions,false +21888,b1903dc5-d0ba-4d4a-a36f-7b8295b95c91,AUTHORIZATION,,false +21889,b1903dc5-d0ba-4d4a-a36f-7b8295b95c91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21890,b1903dc5-d0ba-4d4a-a36f-7b8295b95c91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21891,b1903dc5-d0ba-4d4a-a36f-7b8295b95c91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21892,c104a61b-918c-431e-8189-1171137adf05,LIST_ACCOUNTS,xs2aListAccounts,true -21893,c104a61b-918c-431e-8189-1171137adf05,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21893,c104a61b-918c-431e-8189-1171137adf05,LIST_TRANSACTIONS,xs2aListTransactions,true 21894,c104a61b-918c-431e-8189-1171137adf05,AUTHORIZATION,,true 21895,c104a61b-918c-431e-8189-1171137adf05,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21896,c104a61b-918c-431e-8189-1171137adf05,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21897,c104a61b-918c-431e-8189-1171137adf05,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21898,e8576fcb-6fde-4079-b93e-8da82ab09746,LIST_ACCOUNTS,hbciListAccounts,false -21899,e8576fcb-6fde-4079-b93e-8da82ab09746,LIST_TRANSACTIONS,hbciListTransactions,false -21900,e8576fcb-6fde-4079-b93e-8da82ab09746,AUTHORIZATION,,false -21901,e8576fcb-6fde-4079-b93e-8da82ab09746,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21902,e8576fcb-6fde-4079-b93e-8da82ab09746,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21903,e8576fcb-6fde-4079-b93e-8da82ab09746,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21898,87ba2794-8224-45c4-bd0d-c5c49b764e44,LIST_ACCOUNTS,hbciListAccounts,false +21899,87ba2794-8224-45c4-bd0d-c5c49b764e44,LIST_TRANSACTIONS,hbciListTransactions,false +21900,87ba2794-8224-45c4-bd0d-c5c49b764e44,AUTHORIZATION,,false +21901,87ba2794-8224-45c4-bd0d-c5c49b764e44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21902,87ba2794-8224-45c4-bd0d-c5c49b764e44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21903,87ba2794-8224-45c4-bd0d-c5c49b764e44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21904,70445808-46a8-4784-9e34-66d871a7fdde,LIST_ACCOUNTS,xs2aListAccounts,true -21905,70445808-46a8-4784-9e34-66d871a7fdde,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21905,70445808-46a8-4784-9e34-66d871a7fdde,LIST_TRANSACTIONS,xs2aListTransactions,true 21906,70445808-46a8-4784-9e34-66d871a7fdde,AUTHORIZATION,,true 21907,70445808-46a8-4784-9e34-66d871a7fdde,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21908,70445808-46a8-4784-9e34-66d871a7fdde,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21909,70445808-46a8-4784-9e34-66d871a7fdde,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21910,a3c79081-f63d-4f24-a5e4-d72aa3f2b08b,LIST_ACCOUNTS,hbciListAccounts,false -21911,a3c79081-f63d-4f24-a5e4-d72aa3f2b08b,LIST_TRANSACTIONS,hbciListTransactions,false -21912,a3c79081-f63d-4f24-a5e4-d72aa3f2b08b,AUTHORIZATION,,false -21913,a3c79081-f63d-4f24-a5e4-d72aa3f2b08b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21914,a3c79081-f63d-4f24-a5e4-d72aa3f2b08b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21915,a3c79081-f63d-4f24-a5e4-d72aa3f2b08b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21910,5f76cb9f-f0a2-4c3d-9b08-2504ab0b9cdb,LIST_ACCOUNTS,hbciListAccounts,false +21911,5f76cb9f-f0a2-4c3d-9b08-2504ab0b9cdb,LIST_TRANSACTIONS,hbciListTransactions,false +21912,5f76cb9f-f0a2-4c3d-9b08-2504ab0b9cdb,AUTHORIZATION,,false +21913,5f76cb9f-f0a2-4c3d-9b08-2504ab0b9cdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21914,5f76cb9f-f0a2-4c3d-9b08-2504ab0b9cdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21915,5f76cb9f-f0a2-4c3d-9b08-2504ab0b9cdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21916,eaab8fad-127b-43a1-9f56-bb3ef87e832c,LIST_ACCOUNTS,xs2aListAccounts,true -21917,eaab8fad-127b-43a1-9f56-bb3ef87e832c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21917,eaab8fad-127b-43a1-9f56-bb3ef87e832c,LIST_TRANSACTIONS,xs2aListTransactions,true 21918,eaab8fad-127b-43a1-9f56-bb3ef87e832c,AUTHORIZATION,,true 21919,eaab8fad-127b-43a1-9f56-bb3ef87e832c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21920,eaab8fad-127b-43a1-9f56-bb3ef87e832c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21921,eaab8fad-127b-43a1-9f56-bb3ef87e832c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21922,747a1a2b-6ccc-4cec-b23b-62ae853df545,LIST_ACCOUNTS,hbciListAccounts,false -21923,747a1a2b-6ccc-4cec-b23b-62ae853df545,LIST_TRANSACTIONS,hbciListTransactions,false -21924,747a1a2b-6ccc-4cec-b23b-62ae853df545,AUTHORIZATION,,false -21925,747a1a2b-6ccc-4cec-b23b-62ae853df545,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21926,747a1a2b-6ccc-4cec-b23b-62ae853df545,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21927,747a1a2b-6ccc-4cec-b23b-62ae853df545,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21922,eb04801f-42cb-4369-ab15-e90d14684cad,LIST_ACCOUNTS,hbciListAccounts,false +21923,eb04801f-42cb-4369-ab15-e90d14684cad,LIST_TRANSACTIONS,hbciListTransactions,false +21924,eb04801f-42cb-4369-ab15-e90d14684cad,AUTHORIZATION,,false +21925,eb04801f-42cb-4369-ab15-e90d14684cad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21926,eb04801f-42cb-4369-ab15-e90d14684cad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21927,eb04801f-42cb-4369-ab15-e90d14684cad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21928,f6cae9f9-c13b-4bbf-ac4e-79f8a14b03b6,LIST_ACCOUNTS,xs2aListAccounts,true -21929,f6cae9f9-c13b-4bbf-ac4e-79f8a14b03b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21929,f6cae9f9-c13b-4bbf-ac4e-79f8a14b03b6,LIST_TRANSACTIONS,xs2aListTransactions,true 21930,f6cae9f9-c13b-4bbf-ac4e-79f8a14b03b6,AUTHORIZATION,,true 21931,f6cae9f9-c13b-4bbf-ac4e-79f8a14b03b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21932,f6cae9f9-c13b-4bbf-ac4e-79f8a14b03b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21933,f6cae9f9-c13b-4bbf-ac4e-79f8a14b03b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21934,c0cdf40d-3111-4f6c-85d8-aa43072618ba,LIST_ACCOUNTS,hbciListAccounts,false -21935,c0cdf40d-3111-4f6c-85d8-aa43072618ba,LIST_TRANSACTIONS,hbciListTransactions,false -21936,c0cdf40d-3111-4f6c-85d8-aa43072618ba,AUTHORIZATION,,false -21937,c0cdf40d-3111-4f6c-85d8-aa43072618ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21938,c0cdf40d-3111-4f6c-85d8-aa43072618ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21939,c0cdf40d-3111-4f6c-85d8-aa43072618ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21934,c8d7ea4d-a15a-4f84-82a2-4632533a916d,LIST_ACCOUNTS,hbciListAccounts,false +21935,c8d7ea4d-a15a-4f84-82a2-4632533a916d,LIST_TRANSACTIONS,hbciListTransactions,false +21936,c8d7ea4d-a15a-4f84-82a2-4632533a916d,AUTHORIZATION,,false +21937,c8d7ea4d-a15a-4f84-82a2-4632533a916d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21938,c8d7ea4d-a15a-4f84-82a2-4632533a916d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21939,c8d7ea4d-a15a-4f84-82a2-4632533a916d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21940,2fd96366-6f00-4b2b-90dd-fa8ea5faf3e2,LIST_ACCOUNTS,xs2aListAccounts,true -21941,2fd96366-6f00-4b2b-90dd-fa8ea5faf3e2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21941,2fd96366-6f00-4b2b-90dd-fa8ea5faf3e2,LIST_TRANSACTIONS,xs2aListTransactions,true 21942,2fd96366-6f00-4b2b-90dd-fa8ea5faf3e2,AUTHORIZATION,,true 21943,2fd96366-6f00-4b2b-90dd-fa8ea5faf3e2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21944,2fd96366-6f00-4b2b-90dd-fa8ea5faf3e2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21945,2fd96366-6f00-4b2b-90dd-fa8ea5faf3e2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21946,10c75e1f-2595-43b2-b1e9-8188ef525e24,LIST_ACCOUNTS,hbciListAccounts,false -21947,10c75e1f-2595-43b2-b1e9-8188ef525e24,LIST_TRANSACTIONS,hbciListTransactions,false -21948,10c75e1f-2595-43b2-b1e9-8188ef525e24,AUTHORIZATION,,false -21949,10c75e1f-2595-43b2-b1e9-8188ef525e24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21950,10c75e1f-2595-43b2-b1e9-8188ef525e24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21951,10c75e1f-2595-43b2-b1e9-8188ef525e24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21946,48d5cfe4-e517-4a6c-ae94-7fe7bb304409,LIST_ACCOUNTS,hbciListAccounts,false +21947,48d5cfe4-e517-4a6c-ae94-7fe7bb304409,LIST_TRANSACTIONS,hbciListTransactions,false +21948,48d5cfe4-e517-4a6c-ae94-7fe7bb304409,AUTHORIZATION,,false +21949,48d5cfe4-e517-4a6c-ae94-7fe7bb304409,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21950,48d5cfe4-e517-4a6c-ae94-7fe7bb304409,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21951,48d5cfe4-e517-4a6c-ae94-7fe7bb304409,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21952,fb816c98-9c8e-401a-8e02-664416326e9a,LIST_ACCOUNTS,xs2aListAccounts,true -21953,fb816c98-9c8e-401a-8e02-664416326e9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21953,fb816c98-9c8e-401a-8e02-664416326e9a,LIST_TRANSACTIONS,xs2aListTransactions,true 21954,fb816c98-9c8e-401a-8e02-664416326e9a,AUTHORIZATION,,true 21955,fb816c98-9c8e-401a-8e02-664416326e9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21956,fb816c98-9c8e-401a-8e02-664416326e9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21957,fb816c98-9c8e-401a-8e02-664416326e9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21958,9deb4d53-6fda-4196-a3c2-d9d8d8eb1845,LIST_ACCOUNTS,hbciListAccounts,false -21959,9deb4d53-6fda-4196-a3c2-d9d8d8eb1845,LIST_TRANSACTIONS,hbciListTransactions,false -21960,9deb4d53-6fda-4196-a3c2-d9d8d8eb1845,AUTHORIZATION,,false -21961,9deb4d53-6fda-4196-a3c2-d9d8d8eb1845,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21962,9deb4d53-6fda-4196-a3c2-d9d8d8eb1845,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21963,9deb4d53-6fda-4196-a3c2-d9d8d8eb1845,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21958,071487f8-8d0d-4331-a7eb-5d3c92334f25,LIST_ACCOUNTS,hbciListAccounts,false +21959,071487f8-8d0d-4331-a7eb-5d3c92334f25,LIST_TRANSACTIONS,hbciListTransactions,false +21960,071487f8-8d0d-4331-a7eb-5d3c92334f25,AUTHORIZATION,,false +21961,071487f8-8d0d-4331-a7eb-5d3c92334f25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21962,071487f8-8d0d-4331-a7eb-5d3c92334f25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21963,071487f8-8d0d-4331-a7eb-5d3c92334f25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21964,e76c5fcd-1a62-4619-9c8c-71ac7e532965,LIST_ACCOUNTS,xs2aListAccounts,true -21965,e76c5fcd-1a62-4619-9c8c-71ac7e532965,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21965,e76c5fcd-1a62-4619-9c8c-71ac7e532965,LIST_TRANSACTIONS,xs2aListTransactions,true 21966,e76c5fcd-1a62-4619-9c8c-71ac7e532965,AUTHORIZATION,,true 21967,e76c5fcd-1a62-4619-9c8c-71ac7e532965,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21968,e76c5fcd-1a62-4619-9c8c-71ac7e532965,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21969,e76c5fcd-1a62-4619-9c8c-71ac7e532965,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21970,f378b3b7-56d7-4c77-bc7f-8d46865007c5,LIST_ACCOUNTS,hbciListAccounts,false -21971,f378b3b7-56d7-4c77-bc7f-8d46865007c5,LIST_TRANSACTIONS,hbciListTransactions,false -21972,f378b3b7-56d7-4c77-bc7f-8d46865007c5,AUTHORIZATION,,false -21973,f378b3b7-56d7-4c77-bc7f-8d46865007c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21974,f378b3b7-56d7-4c77-bc7f-8d46865007c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21975,f378b3b7-56d7-4c77-bc7f-8d46865007c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21970,6d5df9a7-8164-411d-8ce2-7175fc679c85,LIST_ACCOUNTS,hbciListAccounts,false +21971,6d5df9a7-8164-411d-8ce2-7175fc679c85,LIST_TRANSACTIONS,hbciListTransactions,false +21972,6d5df9a7-8164-411d-8ce2-7175fc679c85,AUTHORIZATION,,false +21973,6d5df9a7-8164-411d-8ce2-7175fc679c85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21974,6d5df9a7-8164-411d-8ce2-7175fc679c85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21975,6d5df9a7-8164-411d-8ce2-7175fc679c85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21976,98bc7054-e74c-44c0-905f-05179352e6c8,LIST_ACCOUNTS,xs2aListAccounts,true -21977,98bc7054-e74c-44c0-905f-05179352e6c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21977,98bc7054-e74c-44c0-905f-05179352e6c8,LIST_TRANSACTIONS,xs2aListTransactions,true 21978,98bc7054-e74c-44c0-905f-05179352e6c8,AUTHORIZATION,,true 21979,98bc7054-e74c-44c0-905f-05179352e6c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21980,98bc7054-e74c-44c0-905f-05179352e6c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21981,98bc7054-e74c-44c0-905f-05179352e6c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21982,01693557-b21d-4f57-97f5-9d63a149c029,LIST_ACCOUNTS,hbciListAccounts,false -21983,01693557-b21d-4f57-97f5-9d63a149c029,LIST_TRANSACTIONS,hbciListTransactions,false -21984,01693557-b21d-4f57-97f5-9d63a149c029,AUTHORIZATION,,false -21985,01693557-b21d-4f57-97f5-9d63a149c029,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21986,01693557-b21d-4f57-97f5-9d63a149c029,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21987,01693557-b21d-4f57-97f5-9d63a149c029,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21982,4eb1538f-1db5-483e-a4eb-8e717c0ab4d3,LIST_ACCOUNTS,hbciListAccounts,false +21983,4eb1538f-1db5-483e-a4eb-8e717c0ab4d3,LIST_TRANSACTIONS,hbciListTransactions,false +21984,4eb1538f-1db5-483e-a4eb-8e717c0ab4d3,AUTHORIZATION,,false +21985,4eb1538f-1db5-483e-a4eb-8e717c0ab4d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21986,4eb1538f-1db5-483e-a4eb-8e717c0ab4d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21987,4eb1538f-1db5-483e-a4eb-8e717c0ab4d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 21988,d0730cc4-e1d6-49bd-9d34-1270118ca0fb,LIST_ACCOUNTS,xs2aListAccounts,true -21989,d0730cc4-e1d6-49bd-9d34-1270118ca0fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +21989,d0730cc4-e1d6-49bd-9d34-1270118ca0fb,LIST_TRANSACTIONS,xs2aListTransactions,true 21990,d0730cc4-e1d6-49bd-9d34-1270118ca0fb,AUTHORIZATION,,true 21991,d0730cc4-e1d6-49bd-9d34-1270118ca0fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 21992,d0730cc4-e1d6-49bd-9d34-1270118ca0fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 21993,d0730cc4-e1d6-49bd-9d34-1270118ca0fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -21994,af020ca8-0a44-46cc-8207-80eed5534b78,LIST_ACCOUNTS,hbciListAccounts,false -21995,af020ca8-0a44-46cc-8207-80eed5534b78,LIST_TRANSACTIONS,hbciListTransactions,false -21996,af020ca8-0a44-46cc-8207-80eed5534b78,AUTHORIZATION,,false -21997,af020ca8-0a44-46cc-8207-80eed5534b78,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -21998,af020ca8-0a44-46cc-8207-80eed5534b78,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -21999,af020ca8-0a44-46cc-8207-80eed5534b78,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +21994,ab32bc2d-8fe6-4e5e-a4d7-3f1f3bbcb521,LIST_ACCOUNTS,hbciListAccounts,false +21995,ab32bc2d-8fe6-4e5e-a4d7-3f1f3bbcb521,LIST_TRANSACTIONS,hbciListTransactions,false +21996,ab32bc2d-8fe6-4e5e-a4d7-3f1f3bbcb521,AUTHORIZATION,,false +21997,ab32bc2d-8fe6-4e5e-a4d7-3f1f3bbcb521,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +21998,ab32bc2d-8fe6-4e5e-a4d7-3f1f3bbcb521,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +21999,ab32bc2d-8fe6-4e5e-a4d7-3f1f3bbcb521,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22000,4fc624b0-fbf6-43a1-a756-a3cc6ef0570c,LIST_ACCOUNTS,xs2aListAccounts,true -22001,4fc624b0-fbf6-43a1-a756-a3cc6ef0570c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22001,4fc624b0-fbf6-43a1-a756-a3cc6ef0570c,LIST_TRANSACTIONS,xs2aListTransactions,true 22002,4fc624b0-fbf6-43a1-a756-a3cc6ef0570c,AUTHORIZATION,,true 22003,4fc624b0-fbf6-43a1-a756-a3cc6ef0570c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22004,4fc624b0-fbf6-43a1-a756-a3cc6ef0570c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22005,4fc624b0-fbf6-43a1-a756-a3cc6ef0570c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22006,566cb290-1321-4e29-8cb9-4d1213fdd108,LIST_ACCOUNTS,hbciListAccounts,false -22007,566cb290-1321-4e29-8cb9-4d1213fdd108,LIST_TRANSACTIONS,hbciListTransactions,false -22008,566cb290-1321-4e29-8cb9-4d1213fdd108,AUTHORIZATION,,false -22009,566cb290-1321-4e29-8cb9-4d1213fdd108,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22010,566cb290-1321-4e29-8cb9-4d1213fdd108,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22011,566cb290-1321-4e29-8cb9-4d1213fdd108,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22006,6a5ad38b-548c-4ef8-b16f-85750c00cb01,LIST_ACCOUNTS,hbciListAccounts,false +22007,6a5ad38b-548c-4ef8-b16f-85750c00cb01,LIST_TRANSACTIONS,hbciListTransactions,false +22008,6a5ad38b-548c-4ef8-b16f-85750c00cb01,AUTHORIZATION,,false +22009,6a5ad38b-548c-4ef8-b16f-85750c00cb01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22010,6a5ad38b-548c-4ef8-b16f-85750c00cb01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22011,6a5ad38b-548c-4ef8-b16f-85750c00cb01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22012,0953a40a-fa8f-4fbd-a4ba-15f49eba9681,LIST_ACCOUNTS,xs2aListAccounts,true -22013,0953a40a-fa8f-4fbd-a4ba-15f49eba9681,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22013,0953a40a-fa8f-4fbd-a4ba-15f49eba9681,LIST_TRANSACTIONS,xs2aListTransactions,true 22014,0953a40a-fa8f-4fbd-a4ba-15f49eba9681,AUTHORIZATION,,true 22015,0953a40a-fa8f-4fbd-a4ba-15f49eba9681,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22016,0953a40a-fa8f-4fbd-a4ba-15f49eba9681,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22017,0953a40a-fa8f-4fbd-a4ba-15f49eba9681,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22018,cc1148c5-3bf7-4646-8310-fd7a879ae9c4,LIST_ACCOUNTS,hbciListAccounts,false -22019,cc1148c5-3bf7-4646-8310-fd7a879ae9c4,LIST_TRANSACTIONS,hbciListTransactions,false -22020,cc1148c5-3bf7-4646-8310-fd7a879ae9c4,AUTHORIZATION,,false -22021,cc1148c5-3bf7-4646-8310-fd7a879ae9c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22022,cc1148c5-3bf7-4646-8310-fd7a879ae9c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22023,cc1148c5-3bf7-4646-8310-fd7a879ae9c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22018,acee3656-35d7-4a15-aac1-e21c77942913,LIST_ACCOUNTS,hbciListAccounts,false +22019,acee3656-35d7-4a15-aac1-e21c77942913,LIST_TRANSACTIONS,hbciListTransactions,false +22020,acee3656-35d7-4a15-aac1-e21c77942913,AUTHORIZATION,,false +22021,acee3656-35d7-4a15-aac1-e21c77942913,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22022,acee3656-35d7-4a15-aac1-e21c77942913,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22023,acee3656-35d7-4a15-aac1-e21c77942913,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22024,46e309fa-bb3c-43fa-a885-a3a97e71e89b,LIST_ACCOUNTS,xs2aListAccounts,true -22025,46e309fa-bb3c-43fa-a885-a3a97e71e89b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22025,46e309fa-bb3c-43fa-a885-a3a97e71e89b,LIST_TRANSACTIONS,xs2aListTransactions,true 22026,46e309fa-bb3c-43fa-a885-a3a97e71e89b,AUTHORIZATION,,true 22027,46e309fa-bb3c-43fa-a885-a3a97e71e89b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22028,46e309fa-bb3c-43fa-a885-a3a97e71e89b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22029,46e309fa-bb3c-43fa-a885-a3a97e71e89b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22030,4601819f-dc74-4eb6-9dac-03b05e99dcdc,LIST_ACCOUNTS,hbciListAccounts,false -22031,4601819f-dc74-4eb6-9dac-03b05e99dcdc,LIST_TRANSACTIONS,hbciListTransactions,false -22032,4601819f-dc74-4eb6-9dac-03b05e99dcdc,AUTHORIZATION,,false -22033,4601819f-dc74-4eb6-9dac-03b05e99dcdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22034,4601819f-dc74-4eb6-9dac-03b05e99dcdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22035,4601819f-dc74-4eb6-9dac-03b05e99dcdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22030,b7adee15-b0e1-4676-a462-3d40ddcd1913,LIST_ACCOUNTS,hbciListAccounts,false +22031,b7adee15-b0e1-4676-a462-3d40ddcd1913,LIST_TRANSACTIONS,hbciListTransactions,false +22032,b7adee15-b0e1-4676-a462-3d40ddcd1913,AUTHORIZATION,,false +22033,b7adee15-b0e1-4676-a462-3d40ddcd1913,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22034,b7adee15-b0e1-4676-a462-3d40ddcd1913,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22035,b7adee15-b0e1-4676-a462-3d40ddcd1913,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22036,5c550cdd-ee48-46ae-a0ea-bf52376e9dc5,LIST_ACCOUNTS,xs2aListAccounts,true -22037,5c550cdd-ee48-46ae-a0ea-bf52376e9dc5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22037,5c550cdd-ee48-46ae-a0ea-bf52376e9dc5,LIST_TRANSACTIONS,xs2aListTransactions,true 22038,5c550cdd-ee48-46ae-a0ea-bf52376e9dc5,AUTHORIZATION,,true 22039,5c550cdd-ee48-46ae-a0ea-bf52376e9dc5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22040,5c550cdd-ee48-46ae-a0ea-bf52376e9dc5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22041,5c550cdd-ee48-46ae-a0ea-bf52376e9dc5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22042,bf507592-eb84-4715-9c8d-2d5b605eabf5,LIST_ACCOUNTS,hbciListAccounts,false -22043,bf507592-eb84-4715-9c8d-2d5b605eabf5,LIST_TRANSACTIONS,hbciListTransactions,false -22044,bf507592-eb84-4715-9c8d-2d5b605eabf5,AUTHORIZATION,,false -22045,bf507592-eb84-4715-9c8d-2d5b605eabf5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22046,bf507592-eb84-4715-9c8d-2d5b605eabf5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22047,bf507592-eb84-4715-9c8d-2d5b605eabf5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22042,af5e32af-9c4a-478d-93a3-8c4f9b0dadeb,LIST_ACCOUNTS,hbciListAccounts,false +22043,af5e32af-9c4a-478d-93a3-8c4f9b0dadeb,LIST_TRANSACTIONS,hbciListTransactions,false +22044,af5e32af-9c4a-478d-93a3-8c4f9b0dadeb,AUTHORIZATION,,false +22045,af5e32af-9c4a-478d-93a3-8c4f9b0dadeb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22046,af5e32af-9c4a-478d-93a3-8c4f9b0dadeb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22047,af5e32af-9c4a-478d-93a3-8c4f9b0dadeb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22048,02eeb602-bb05-4974-a1ed-aca20e9efe07,LIST_ACCOUNTS,xs2aListAccounts,true -22049,02eeb602-bb05-4974-a1ed-aca20e9efe07,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22049,02eeb602-bb05-4974-a1ed-aca20e9efe07,LIST_TRANSACTIONS,xs2aListTransactions,true 22050,02eeb602-bb05-4974-a1ed-aca20e9efe07,AUTHORIZATION,,true 22051,02eeb602-bb05-4974-a1ed-aca20e9efe07,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22052,02eeb602-bb05-4974-a1ed-aca20e9efe07,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22053,02eeb602-bb05-4974-a1ed-aca20e9efe07,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22054,17618f23-9d75-4eda-9b80-c7d4e8ccb068,LIST_ACCOUNTS,hbciListAccounts,false -22055,17618f23-9d75-4eda-9b80-c7d4e8ccb068,LIST_TRANSACTIONS,hbciListTransactions,false -22056,17618f23-9d75-4eda-9b80-c7d4e8ccb068,AUTHORIZATION,,false -22057,17618f23-9d75-4eda-9b80-c7d4e8ccb068,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22058,17618f23-9d75-4eda-9b80-c7d4e8ccb068,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22059,17618f23-9d75-4eda-9b80-c7d4e8ccb068,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22054,41c81eac-28e2-4988-80a2-5ac0856cfc8b,LIST_ACCOUNTS,hbciListAccounts,false +22055,41c81eac-28e2-4988-80a2-5ac0856cfc8b,LIST_TRANSACTIONS,hbciListTransactions,false +22056,41c81eac-28e2-4988-80a2-5ac0856cfc8b,AUTHORIZATION,,false +22057,41c81eac-28e2-4988-80a2-5ac0856cfc8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22058,41c81eac-28e2-4988-80a2-5ac0856cfc8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22059,41c81eac-28e2-4988-80a2-5ac0856cfc8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22060,59c758bd-ec2c-497b-a715-580b1156f145,LIST_ACCOUNTS,xs2aListAccounts,true -22061,59c758bd-ec2c-497b-a715-580b1156f145,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22061,59c758bd-ec2c-497b-a715-580b1156f145,LIST_TRANSACTIONS,xs2aListTransactions,true 22062,59c758bd-ec2c-497b-a715-580b1156f145,AUTHORIZATION,,true 22063,59c758bd-ec2c-497b-a715-580b1156f145,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22064,59c758bd-ec2c-497b-a715-580b1156f145,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22065,59c758bd-ec2c-497b-a715-580b1156f145,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22066,aacb075e-71a4-43cf-a665-baa0d686c3a7,LIST_ACCOUNTS,hbciListAccounts,false -22067,aacb075e-71a4-43cf-a665-baa0d686c3a7,LIST_TRANSACTIONS,hbciListTransactions,false -22068,aacb075e-71a4-43cf-a665-baa0d686c3a7,AUTHORIZATION,,false -22069,aacb075e-71a4-43cf-a665-baa0d686c3a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22070,aacb075e-71a4-43cf-a665-baa0d686c3a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22071,aacb075e-71a4-43cf-a665-baa0d686c3a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22066,8c12f56f-f1cd-4687-9443-0c6dc0a9f735,LIST_ACCOUNTS,hbciListAccounts,false +22067,8c12f56f-f1cd-4687-9443-0c6dc0a9f735,LIST_TRANSACTIONS,hbciListTransactions,false +22068,8c12f56f-f1cd-4687-9443-0c6dc0a9f735,AUTHORIZATION,,false +22069,8c12f56f-f1cd-4687-9443-0c6dc0a9f735,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22070,8c12f56f-f1cd-4687-9443-0c6dc0a9f735,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22071,8c12f56f-f1cd-4687-9443-0c6dc0a9f735,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22072,e2a985fe-b7ef-453d-bc04-67c5c5e14440,LIST_ACCOUNTS,xs2aListAccounts,true -22073,e2a985fe-b7ef-453d-bc04-67c5c5e14440,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22073,e2a985fe-b7ef-453d-bc04-67c5c5e14440,LIST_TRANSACTIONS,xs2aListTransactions,true 22074,e2a985fe-b7ef-453d-bc04-67c5c5e14440,AUTHORIZATION,,true 22075,e2a985fe-b7ef-453d-bc04-67c5c5e14440,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22076,e2a985fe-b7ef-453d-bc04-67c5c5e14440,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22077,e2a985fe-b7ef-453d-bc04-67c5c5e14440,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22078,03e0dc08-2011-4981-99bb-ff0b6d3f53a1,LIST_ACCOUNTS,hbciListAccounts,false -22079,03e0dc08-2011-4981-99bb-ff0b6d3f53a1,LIST_TRANSACTIONS,hbciListTransactions,false -22080,03e0dc08-2011-4981-99bb-ff0b6d3f53a1,AUTHORIZATION,,false -22081,03e0dc08-2011-4981-99bb-ff0b6d3f53a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22082,03e0dc08-2011-4981-99bb-ff0b6d3f53a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22083,03e0dc08-2011-4981-99bb-ff0b6d3f53a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22078,27c2a8ca-38c0-4e4c-9528-ecf3d914b82f,LIST_ACCOUNTS,hbciListAccounts,false +22079,27c2a8ca-38c0-4e4c-9528-ecf3d914b82f,LIST_TRANSACTIONS,hbciListTransactions,false +22080,27c2a8ca-38c0-4e4c-9528-ecf3d914b82f,AUTHORIZATION,,false +22081,27c2a8ca-38c0-4e4c-9528-ecf3d914b82f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22082,27c2a8ca-38c0-4e4c-9528-ecf3d914b82f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22083,27c2a8ca-38c0-4e4c-9528-ecf3d914b82f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22084,68edae71-33b1-4e97-bb2d-2509f632fedc,LIST_ACCOUNTS,xs2aListAccounts,true -22085,68edae71-33b1-4e97-bb2d-2509f632fedc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22085,68edae71-33b1-4e97-bb2d-2509f632fedc,LIST_TRANSACTIONS,xs2aListTransactions,true 22086,68edae71-33b1-4e97-bb2d-2509f632fedc,AUTHORIZATION,,true 22087,68edae71-33b1-4e97-bb2d-2509f632fedc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22088,68edae71-33b1-4e97-bb2d-2509f632fedc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22089,68edae71-33b1-4e97-bb2d-2509f632fedc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22090,106fcbaf-67e5-4952-bbb8-db291fd5582b,LIST_ACCOUNTS,hbciListAccounts,false -22091,106fcbaf-67e5-4952-bbb8-db291fd5582b,LIST_TRANSACTIONS,hbciListTransactions,false -22092,106fcbaf-67e5-4952-bbb8-db291fd5582b,AUTHORIZATION,,false -22093,106fcbaf-67e5-4952-bbb8-db291fd5582b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22094,106fcbaf-67e5-4952-bbb8-db291fd5582b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22095,106fcbaf-67e5-4952-bbb8-db291fd5582b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22090,76d5b653-6c65-4df1-aaa6-08442928a35f,LIST_ACCOUNTS,hbciListAccounts,false +22091,76d5b653-6c65-4df1-aaa6-08442928a35f,LIST_TRANSACTIONS,hbciListTransactions,false +22092,76d5b653-6c65-4df1-aaa6-08442928a35f,AUTHORIZATION,,false +22093,76d5b653-6c65-4df1-aaa6-08442928a35f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22094,76d5b653-6c65-4df1-aaa6-08442928a35f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22095,76d5b653-6c65-4df1-aaa6-08442928a35f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22096,99390acb-3f5e-4a86-ac67-7681d0ab9a59,LIST_ACCOUNTS,xs2aListAccounts,true -22097,99390acb-3f5e-4a86-ac67-7681d0ab9a59,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22097,99390acb-3f5e-4a86-ac67-7681d0ab9a59,LIST_TRANSACTIONS,xs2aListTransactions,true 22098,99390acb-3f5e-4a86-ac67-7681d0ab9a59,AUTHORIZATION,,true 22099,99390acb-3f5e-4a86-ac67-7681d0ab9a59,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22100,99390acb-3f5e-4a86-ac67-7681d0ab9a59,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22101,99390acb-3f5e-4a86-ac67-7681d0ab9a59,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22102,ae401fc9-9182-403d-82b0-bac3a2ddbd16,LIST_ACCOUNTS,hbciListAccounts,false -22103,ae401fc9-9182-403d-82b0-bac3a2ddbd16,LIST_TRANSACTIONS,hbciListTransactions,false -22104,ae401fc9-9182-403d-82b0-bac3a2ddbd16,AUTHORIZATION,,false -22105,ae401fc9-9182-403d-82b0-bac3a2ddbd16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22106,ae401fc9-9182-403d-82b0-bac3a2ddbd16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22107,ae401fc9-9182-403d-82b0-bac3a2ddbd16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22102,0f2a19c5-5a43-434c-ae54-e6f03cb1bbca,LIST_ACCOUNTS,hbciListAccounts,false +22103,0f2a19c5-5a43-434c-ae54-e6f03cb1bbca,LIST_TRANSACTIONS,hbciListTransactions,false +22104,0f2a19c5-5a43-434c-ae54-e6f03cb1bbca,AUTHORIZATION,,false +22105,0f2a19c5-5a43-434c-ae54-e6f03cb1bbca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22106,0f2a19c5-5a43-434c-ae54-e6f03cb1bbca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22107,0f2a19c5-5a43-434c-ae54-e6f03cb1bbca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22108,3b8d5015-5e64-4056-8008-85554a9510cb,LIST_ACCOUNTS,xs2aListAccounts,true -22109,3b8d5015-5e64-4056-8008-85554a9510cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22109,3b8d5015-5e64-4056-8008-85554a9510cb,LIST_TRANSACTIONS,xs2aListTransactions,true 22110,3b8d5015-5e64-4056-8008-85554a9510cb,AUTHORIZATION,,true 22111,3b8d5015-5e64-4056-8008-85554a9510cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22112,3b8d5015-5e64-4056-8008-85554a9510cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22113,3b8d5015-5e64-4056-8008-85554a9510cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22114,1ce3c56f-4125-4d43-97b6-871609e5fa89,LIST_ACCOUNTS,hbciListAccounts,false -22115,1ce3c56f-4125-4d43-97b6-871609e5fa89,LIST_TRANSACTIONS,hbciListTransactions,false -22116,1ce3c56f-4125-4d43-97b6-871609e5fa89,AUTHORIZATION,,false -22117,1ce3c56f-4125-4d43-97b6-871609e5fa89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22118,1ce3c56f-4125-4d43-97b6-871609e5fa89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22119,1ce3c56f-4125-4d43-97b6-871609e5fa89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22114,b393c03d-b11b-4b8a-a201-465bef099a3d,LIST_ACCOUNTS,hbciListAccounts,false +22115,b393c03d-b11b-4b8a-a201-465bef099a3d,LIST_TRANSACTIONS,hbciListTransactions,false +22116,b393c03d-b11b-4b8a-a201-465bef099a3d,AUTHORIZATION,,false +22117,b393c03d-b11b-4b8a-a201-465bef099a3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22118,b393c03d-b11b-4b8a-a201-465bef099a3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22119,b393c03d-b11b-4b8a-a201-465bef099a3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22120,4cd91d74-2f37-4e45-8bcd-e51dd1d284c7,LIST_ACCOUNTS,xs2aListAccounts,true -22121,4cd91d74-2f37-4e45-8bcd-e51dd1d284c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22121,4cd91d74-2f37-4e45-8bcd-e51dd1d284c7,LIST_TRANSACTIONS,xs2aListTransactions,true 22122,4cd91d74-2f37-4e45-8bcd-e51dd1d284c7,AUTHORIZATION,,true 22123,4cd91d74-2f37-4e45-8bcd-e51dd1d284c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22124,4cd91d74-2f37-4e45-8bcd-e51dd1d284c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22125,4cd91d74-2f37-4e45-8bcd-e51dd1d284c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22126,73af02b4-832e-429e-b462-1d03bb828cb9,LIST_ACCOUNTS,hbciListAccounts,false -22127,73af02b4-832e-429e-b462-1d03bb828cb9,LIST_TRANSACTIONS,hbciListTransactions,false -22128,73af02b4-832e-429e-b462-1d03bb828cb9,AUTHORIZATION,,false -22129,73af02b4-832e-429e-b462-1d03bb828cb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22130,73af02b4-832e-429e-b462-1d03bb828cb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22131,73af02b4-832e-429e-b462-1d03bb828cb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22126,25a2b766-7ace-4761-97cd-1e1c51f17c46,LIST_ACCOUNTS,hbciListAccounts,false +22127,25a2b766-7ace-4761-97cd-1e1c51f17c46,LIST_TRANSACTIONS,hbciListTransactions,false +22128,25a2b766-7ace-4761-97cd-1e1c51f17c46,AUTHORIZATION,,false +22129,25a2b766-7ace-4761-97cd-1e1c51f17c46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22130,25a2b766-7ace-4761-97cd-1e1c51f17c46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22131,25a2b766-7ace-4761-97cd-1e1c51f17c46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22132,ab470217-141b-4ec1-9b4b-baae85791445,LIST_ACCOUNTS,xs2aListAccounts,true -22133,ab470217-141b-4ec1-9b4b-baae85791445,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22133,ab470217-141b-4ec1-9b4b-baae85791445,LIST_TRANSACTIONS,xs2aListTransactions,true 22134,ab470217-141b-4ec1-9b4b-baae85791445,AUTHORIZATION,,true 22135,ab470217-141b-4ec1-9b4b-baae85791445,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22136,ab470217-141b-4ec1-9b4b-baae85791445,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22137,ab470217-141b-4ec1-9b4b-baae85791445,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22138,15d18d60-506c-4190-a72c-9884376be4ac,LIST_ACCOUNTS,hbciListAccounts,false -22139,15d18d60-506c-4190-a72c-9884376be4ac,LIST_TRANSACTIONS,hbciListTransactions,false -22140,15d18d60-506c-4190-a72c-9884376be4ac,AUTHORIZATION,,false -22141,15d18d60-506c-4190-a72c-9884376be4ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22142,15d18d60-506c-4190-a72c-9884376be4ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22143,15d18d60-506c-4190-a72c-9884376be4ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22138,51f87ddc-0f0d-4a05-a329-ee34996ff72a,LIST_ACCOUNTS,hbciListAccounts,false +22139,51f87ddc-0f0d-4a05-a329-ee34996ff72a,LIST_TRANSACTIONS,hbciListTransactions,false +22140,51f87ddc-0f0d-4a05-a329-ee34996ff72a,AUTHORIZATION,,false +22141,51f87ddc-0f0d-4a05-a329-ee34996ff72a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22142,51f87ddc-0f0d-4a05-a329-ee34996ff72a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22143,51f87ddc-0f0d-4a05-a329-ee34996ff72a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22144,abce26bc-56d7-439c-989f-9e2bbd2b99c4,LIST_ACCOUNTS,xs2aListAccounts,true -22145,abce26bc-56d7-439c-989f-9e2bbd2b99c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22145,abce26bc-56d7-439c-989f-9e2bbd2b99c4,LIST_TRANSACTIONS,xs2aListTransactions,true 22146,abce26bc-56d7-439c-989f-9e2bbd2b99c4,AUTHORIZATION,,true 22147,abce26bc-56d7-439c-989f-9e2bbd2b99c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22148,abce26bc-56d7-439c-989f-9e2bbd2b99c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22149,abce26bc-56d7-439c-989f-9e2bbd2b99c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22150,ee804775-a6a2-4f68-b1c0-ea2ac16cab3b,LIST_ACCOUNTS,hbciListAccounts,false -22151,ee804775-a6a2-4f68-b1c0-ea2ac16cab3b,LIST_TRANSACTIONS,hbciListTransactions,false -22152,ee804775-a6a2-4f68-b1c0-ea2ac16cab3b,AUTHORIZATION,,false -22153,ee804775-a6a2-4f68-b1c0-ea2ac16cab3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22154,ee804775-a6a2-4f68-b1c0-ea2ac16cab3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22155,ee804775-a6a2-4f68-b1c0-ea2ac16cab3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22150,364efa00-5b1a-418f-84fa-a8f95672583b,LIST_ACCOUNTS,hbciListAccounts,false +22151,364efa00-5b1a-418f-84fa-a8f95672583b,LIST_TRANSACTIONS,hbciListTransactions,false +22152,364efa00-5b1a-418f-84fa-a8f95672583b,AUTHORIZATION,,false +22153,364efa00-5b1a-418f-84fa-a8f95672583b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22154,364efa00-5b1a-418f-84fa-a8f95672583b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22155,364efa00-5b1a-418f-84fa-a8f95672583b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22156,381677fd-4e7a-4c49-829a-351085b2f9c7,LIST_ACCOUNTS,xs2aListAccounts,true -22157,381677fd-4e7a-4c49-829a-351085b2f9c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22157,381677fd-4e7a-4c49-829a-351085b2f9c7,LIST_TRANSACTIONS,xs2aListTransactions,true 22158,381677fd-4e7a-4c49-829a-351085b2f9c7,AUTHORIZATION,,true 22159,381677fd-4e7a-4c49-829a-351085b2f9c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22160,381677fd-4e7a-4c49-829a-351085b2f9c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22161,381677fd-4e7a-4c49-829a-351085b2f9c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22162,372e9312-19d8-4514-95db-98b73ae150b1,LIST_ACCOUNTS,hbciListAccounts,false -22163,372e9312-19d8-4514-95db-98b73ae150b1,LIST_TRANSACTIONS,hbciListTransactions,false -22164,372e9312-19d8-4514-95db-98b73ae150b1,AUTHORIZATION,,false -22165,372e9312-19d8-4514-95db-98b73ae150b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22166,372e9312-19d8-4514-95db-98b73ae150b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22167,372e9312-19d8-4514-95db-98b73ae150b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22162,193a02d1-f6b4-48e6-b0de-977766463ce5,LIST_ACCOUNTS,hbciListAccounts,false +22163,193a02d1-f6b4-48e6-b0de-977766463ce5,LIST_TRANSACTIONS,hbciListTransactions,false +22164,193a02d1-f6b4-48e6-b0de-977766463ce5,AUTHORIZATION,,false +22165,193a02d1-f6b4-48e6-b0de-977766463ce5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22166,193a02d1-f6b4-48e6-b0de-977766463ce5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22167,193a02d1-f6b4-48e6-b0de-977766463ce5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22168,3e4b6665-1094-4314-8eef-e89f558cff0c,LIST_ACCOUNTS,xs2aListAccounts,true -22169,3e4b6665-1094-4314-8eef-e89f558cff0c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22169,3e4b6665-1094-4314-8eef-e89f558cff0c,LIST_TRANSACTIONS,xs2aListTransactions,true 22170,3e4b6665-1094-4314-8eef-e89f558cff0c,AUTHORIZATION,,true 22171,3e4b6665-1094-4314-8eef-e89f558cff0c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22172,3e4b6665-1094-4314-8eef-e89f558cff0c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22173,3e4b6665-1094-4314-8eef-e89f558cff0c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22174,7c8e8ebf-cbd5-44a4-b997-70c8a2171874,LIST_ACCOUNTS,hbciListAccounts,false -22175,7c8e8ebf-cbd5-44a4-b997-70c8a2171874,LIST_TRANSACTIONS,hbciListTransactions,false -22176,7c8e8ebf-cbd5-44a4-b997-70c8a2171874,AUTHORIZATION,,false -22177,7c8e8ebf-cbd5-44a4-b997-70c8a2171874,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22178,7c8e8ebf-cbd5-44a4-b997-70c8a2171874,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22179,7c8e8ebf-cbd5-44a4-b997-70c8a2171874,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22174,0d8b8c1b-0c0c-4f65-9f7f-c7a68c7b8eb3,LIST_ACCOUNTS,hbciListAccounts,false +22175,0d8b8c1b-0c0c-4f65-9f7f-c7a68c7b8eb3,LIST_TRANSACTIONS,hbciListTransactions,false +22176,0d8b8c1b-0c0c-4f65-9f7f-c7a68c7b8eb3,AUTHORIZATION,,false +22177,0d8b8c1b-0c0c-4f65-9f7f-c7a68c7b8eb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22178,0d8b8c1b-0c0c-4f65-9f7f-c7a68c7b8eb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22179,0d8b8c1b-0c0c-4f65-9f7f-c7a68c7b8eb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22180,2dcf79fd-85ad-493f-b630-c8ae958d3881,LIST_ACCOUNTS,xs2aListAccounts,true -22181,2dcf79fd-85ad-493f-b630-c8ae958d3881,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22181,2dcf79fd-85ad-493f-b630-c8ae958d3881,LIST_TRANSACTIONS,xs2aListTransactions,true 22182,2dcf79fd-85ad-493f-b630-c8ae958d3881,AUTHORIZATION,,true 22183,2dcf79fd-85ad-493f-b630-c8ae958d3881,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22184,2dcf79fd-85ad-493f-b630-c8ae958d3881,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22185,2dcf79fd-85ad-493f-b630-c8ae958d3881,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22186,a18454b9-6e8a-4e71-8631-903a4b6a9aa9,LIST_ACCOUNTS,hbciListAccounts,false -22187,a18454b9-6e8a-4e71-8631-903a4b6a9aa9,LIST_TRANSACTIONS,hbciListTransactions,false -22188,a18454b9-6e8a-4e71-8631-903a4b6a9aa9,AUTHORIZATION,,false -22189,a18454b9-6e8a-4e71-8631-903a4b6a9aa9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22190,a18454b9-6e8a-4e71-8631-903a4b6a9aa9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22191,a18454b9-6e8a-4e71-8631-903a4b6a9aa9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22186,dc0c1940-5968-45c0-b77f-7f13d6527e6a,LIST_ACCOUNTS,hbciListAccounts,false +22187,dc0c1940-5968-45c0-b77f-7f13d6527e6a,LIST_TRANSACTIONS,hbciListTransactions,false +22188,dc0c1940-5968-45c0-b77f-7f13d6527e6a,AUTHORIZATION,,false +22189,dc0c1940-5968-45c0-b77f-7f13d6527e6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22190,dc0c1940-5968-45c0-b77f-7f13d6527e6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22191,dc0c1940-5968-45c0-b77f-7f13d6527e6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22192,e232701f-ee35-4ecb-aec4-b5a0011c854f,LIST_ACCOUNTS,xs2aListAccounts,true -22193,e232701f-ee35-4ecb-aec4-b5a0011c854f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22193,e232701f-ee35-4ecb-aec4-b5a0011c854f,LIST_TRANSACTIONS,xs2aListTransactions,true 22194,e232701f-ee35-4ecb-aec4-b5a0011c854f,AUTHORIZATION,,true 22195,e232701f-ee35-4ecb-aec4-b5a0011c854f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22196,e232701f-ee35-4ecb-aec4-b5a0011c854f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22197,e232701f-ee35-4ecb-aec4-b5a0011c854f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22198,04c69bb8-a199-4be9-aeff-8f190104e8fa,LIST_ACCOUNTS,hbciListAccounts,false -22199,04c69bb8-a199-4be9-aeff-8f190104e8fa,LIST_TRANSACTIONS,hbciListTransactions,false -22200,04c69bb8-a199-4be9-aeff-8f190104e8fa,AUTHORIZATION,,false -22201,04c69bb8-a199-4be9-aeff-8f190104e8fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22202,04c69bb8-a199-4be9-aeff-8f190104e8fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22203,04c69bb8-a199-4be9-aeff-8f190104e8fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22198,d97caaeb-b21e-4dbe-8f1f-74024210022b,LIST_ACCOUNTS,hbciListAccounts,false +22199,d97caaeb-b21e-4dbe-8f1f-74024210022b,LIST_TRANSACTIONS,hbciListTransactions,false +22200,d97caaeb-b21e-4dbe-8f1f-74024210022b,AUTHORIZATION,,false +22201,d97caaeb-b21e-4dbe-8f1f-74024210022b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22202,d97caaeb-b21e-4dbe-8f1f-74024210022b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22203,d97caaeb-b21e-4dbe-8f1f-74024210022b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22204,2937113d-2de3-4ff2-9119-463784ce898f,LIST_ACCOUNTS,xs2aListAccounts,true -22205,2937113d-2de3-4ff2-9119-463784ce898f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22205,2937113d-2de3-4ff2-9119-463784ce898f,LIST_TRANSACTIONS,xs2aListTransactions,true 22206,2937113d-2de3-4ff2-9119-463784ce898f,AUTHORIZATION,,true 22207,2937113d-2de3-4ff2-9119-463784ce898f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22208,2937113d-2de3-4ff2-9119-463784ce898f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22209,2937113d-2de3-4ff2-9119-463784ce898f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22210,7f4ca38b-4998-4517-8053-1c507945f8e5,LIST_ACCOUNTS,hbciListAccounts,false -22211,7f4ca38b-4998-4517-8053-1c507945f8e5,LIST_TRANSACTIONS,hbciListTransactions,false -22212,7f4ca38b-4998-4517-8053-1c507945f8e5,AUTHORIZATION,,false -22213,7f4ca38b-4998-4517-8053-1c507945f8e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22214,7f4ca38b-4998-4517-8053-1c507945f8e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22215,7f4ca38b-4998-4517-8053-1c507945f8e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22210,bf122411-7936-4e79-b1a6-74103d91e0ca,LIST_ACCOUNTS,hbciListAccounts,false +22211,bf122411-7936-4e79-b1a6-74103d91e0ca,LIST_TRANSACTIONS,hbciListTransactions,false +22212,bf122411-7936-4e79-b1a6-74103d91e0ca,AUTHORIZATION,,false +22213,bf122411-7936-4e79-b1a6-74103d91e0ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22214,bf122411-7936-4e79-b1a6-74103d91e0ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22215,bf122411-7936-4e79-b1a6-74103d91e0ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22216,6c94b542-08f1-440a-b382-493e541afedd,LIST_ACCOUNTS,xs2aListAccounts,true -22217,6c94b542-08f1-440a-b382-493e541afedd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22217,6c94b542-08f1-440a-b382-493e541afedd,LIST_TRANSACTIONS,xs2aListTransactions,true 22218,6c94b542-08f1-440a-b382-493e541afedd,AUTHORIZATION,,true 22219,6c94b542-08f1-440a-b382-493e541afedd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22220,6c94b542-08f1-440a-b382-493e541afedd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22221,6c94b542-08f1-440a-b382-493e541afedd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22222,04c1c870-31e6-4074-acd1-c83d57166cd4,LIST_ACCOUNTS,hbciListAccounts,false -22223,04c1c870-31e6-4074-acd1-c83d57166cd4,LIST_TRANSACTIONS,hbciListTransactions,false -22224,04c1c870-31e6-4074-acd1-c83d57166cd4,AUTHORIZATION,,false -22225,04c1c870-31e6-4074-acd1-c83d57166cd4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22226,04c1c870-31e6-4074-acd1-c83d57166cd4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22227,04c1c870-31e6-4074-acd1-c83d57166cd4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22222,84325e68-105c-48e9-aa75-554b8a0c67cc,LIST_ACCOUNTS,hbciListAccounts,false +22223,84325e68-105c-48e9-aa75-554b8a0c67cc,LIST_TRANSACTIONS,hbciListTransactions,false +22224,84325e68-105c-48e9-aa75-554b8a0c67cc,AUTHORIZATION,,false +22225,84325e68-105c-48e9-aa75-554b8a0c67cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22226,84325e68-105c-48e9-aa75-554b8a0c67cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22227,84325e68-105c-48e9-aa75-554b8a0c67cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22228,ac24529f-84d8-4185-9ad1-4447e546cd0e,LIST_ACCOUNTS,xs2aListAccounts,true -22229,ac24529f-84d8-4185-9ad1-4447e546cd0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22229,ac24529f-84d8-4185-9ad1-4447e546cd0e,LIST_TRANSACTIONS,xs2aListTransactions,true 22230,ac24529f-84d8-4185-9ad1-4447e546cd0e,AUTHORIZATION,,true 22231,ac24529f-84d8-4185-9ad1-4447e546cd0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22232,ac24529f-84d8-4185-9ad1-4447e546cd0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22233,ac24529f-84d8-4185-9ad1-4447e546cd0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22234,f50fa9ee-c575-43d5-808e-b1b80132ba4b,LIST_ACCOUNTS,hbciListAccounts,false -22235,f50fa9ee-c575-43d5-808e-b1b80132ba4b,LIST_TRANSACTIONS,hbciListTransactions,false -22236,f50fa9ee-c575-43d5-808e-b1b80132ba4b,AUTHORIZATION,,false -22237,f50fa9ee-c575-43d5-808e-b1b80132ba4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22238,f50fa9ee-c575-43d5-808e-b1b80132ba4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22239,f50fa9ee-c575-43d5-808e-b1b80132ba4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22234,74ce7449-5a0f-4e32-8ce2-a4d267e04e61,LIST_ACCOUNTS,hbciListAccounts,false +22235,74ce7449-5a0f-4e32-8ce2-a4d267e04e61,LIST_TRANSACTIONS,hbciListTransactions,false +22236,74ce7449-5a0f-4e32-8ce2-a4d267e04e61,AUTHORIZATION,,false +22237,74ce7449-5a0f-4e32-8ce2-a4d267e04e61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22238,74ce7449-5a0f-4e32-8ce2-a4d267e04e61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22239,74ce7449-5a0f-4e32-8ce2-a4d267e04e61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22240,4fca96dc-50e2-4845-97d5-9643b96bf1dc,LIST_ACCOUNTS,xs2aListAccounts,true -22241,4fca96dc-50e2-4845-97d5-9643b96bf1dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22241,4fca96dc-50e2-4845-97d5-9643b96bf1dc,LIST_TRANSACTIONS,xs2aListTransactions,true 22242,4fca96dc-50e2-4845-97d5-9643b96bf1dc,AUTHORIZATION,,true 22243,4fca96dc-50e2-4845-97d5-9643b96bf1dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22244,4fca96dc-50e2-4845-97d5-9643b96bf1dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22245,4fca96dc-50e2-4845-97d5-9643b96bf1dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22246,25aa8716-db8f-4a86-8033-9472051f04b1,LIST_ACCOUNTS,hbciListAccounts,false -22247,25aa8716-db8f-4a86-8033-9472051f04b1,LIST_TRANSACTIONS,hbciListTransactions,false -22248,25aa8716-db8f-4a86-8033-9472051f04b1,AUTHORIZATION,,false -22249,25aa8716-db8f-4a86-8033-9472051f04b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22250,25aa8716-db8f-4a86-8033-9472051f04b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22251,25aa8716-db8f-4a86-8033-9472051f04b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22246,42b5226f-4aa9-4a66-88e9-c5b73c5684f9,LIST_ACCOUNTS,hbciListAccounts,false +22247,42b5226f-4aa9-4a66-88e9-c5b73c5684f9,LIST_TRANSACTIONS,hbciListTransactions,false +22248,42b5226f-4aa9-4a66-88e9-c5b73c5684f9,AUTHORIZATION,,false +22249,42b5226f-4aa9-4a66-88e9-c5b73c5684f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22250,42b5226f-4aa9-4a66-88e9-c5b73c5684f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22251,42b5226f-4aa9-4a66-88e9-c5b73c5684f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22252,b398b550-873f-42f2-9380-538b4c2835e9,LIST_ACCOUNTS,xs2aListAccounts,true -22253,b398b550-873f-42f2-9380-538b4c2835e9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22253,b398b550-873f-42f2-9380-538b4c2835e9,LIST_TRANSACTIONS,xs2aListTransactions,true 22254,b398b550-873f-42f2-9380-538b4c2835e9,AUTHORIZATION,,true 22255,b398b550-873f-42f2-9380-538b4c2835e9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22256,b398b550-873f-42f2-9380-538b4c2835e9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22257,b398b550-873f-42f2-9380-538b4c2835e9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22258,9fa59720-e2f9-4464-916c-61ca834388cd,LIST_ACCOUNTS,hbciListAccounts,false -22259,9fa59720-e2f9-4464-916c-61ca834388cd,LIST_TRANSACTIONS,hbciListTransactions,false -22260,9fa59720-e2f9-4464-916c-61ca834388cd,AUTHORIZATION,,false -22261,9fa59720-e2f9-4464-916c-61ca834388cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22262,9fa59720-e2f9-4464-916c-61ca834388cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22263,9fa59720-e2f9-4464-916c-61ca834388cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22258,207620b5-cc6c-4f3a-9240-e754deffd202,LIST_ACCOUNTS,hbciListAccounts,false +22259,207620b5-cc6c-4f3a-9240-e754deffd202,LIST_TRANSACTIONS,hbciListTransactions,false +22260,207620b5-cc6c-4f3a-9240-e754deffd202,AUTHORIZATION,,false +22261,207620b5-cc6c-4f3a-9240-e754deffd202,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22262,207620b5-cc6c-4f3a-9240-e754deffd202,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22263,207620b5-cc6c-4f3a-9240-e754deffd202,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22264,1e25e2db-dcbe-448c-97a2-91c09bfc1ebd,LIST_ACCOUNTS,xs2aListAccounts,true -22265,1e25e2db-dcbe-448c-97a2-91c09bfc1ebd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22265,1e25e2db-dcbe-448c-97a2-91c09bfc1ebd,LIST_TRANSACTIONS,xs2aListTransactions,true 22266,1e25e2db-dcbe-448c-97a2-91c09bfc1ebd,AUTHORIZATION,,true 22267,1e25e2db-dcbe-448c-97a2-91c09bfc1ebd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22268,1e25e2db-dcbe-448c-97a2-91c09bfc1ebd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22269,1e25e2db-dcbe-448c-97a2-91c09bfc1ebd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22270,5bba1215-1748-4097-8f3d-e04073fcd51d,LIST_ACCOUNTS,hbciListAccounts,false -22271,5bba1215-1748-4097-8f3d-e04073fcd51d,LIST_TRANSACTIONS,hbciListTransactions,false -22272,5bba1215-1748-4097-8f3d-e04073fcd51d,AUTHORIZATION,,false -22273,5bba1215-1748-4097-8f3d-e04073fcd51d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22274,5bba1215-1748-4097-8f3d-e04073fcd51d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22275,5bba1215-1748-4097-8f3d-e04073fcd51d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22270,7d353aea-3f63-4040-9567-0194d2534688,LIST_ACCOUNTS,hbciListAccounts,false +22271,7d353aea-3f63-4040-9567-0194d2534688,LIST_TRANSACTIONS,hbciListTransactions,false +22272,7d353aea-3f63-4040-9567-0194d2534688,AUTHORIZATION,,false +22273,7d353aea-3f63-4040-9567-0194d2534688,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22274,7d353aea-3f63-4040-9567-0194d2534688,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22275,7d353aea-3f63-4040-9567-0194d2534688,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22276,d255cafa-b7da-4d78-8ccc-07e64a56a40c,LIST_ACCOUNTS,xs2aListAccounts,true -22277,d255cafa-b7da-4d78-8ccc-07e64a56a40c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22277,d255cafa-b7da-4d78-8ccc-07e64a56a40c,LIST_TRANSACTIONS,xs2aListTransactions,true 22278,d255cafa-b7da-4d78-8ccc-07e64a56a40c,AUTHORIZATION,,true 22279,d255cafa-b7da-4d78-8ccc-07e64a56a40c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22280,d255cafa-b7da-4d78-8ccc-07e64a56a40c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22281,d255cafa-b7da-4d78-8ccc-07e64a56a40c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22282,ee1a9f75-0a39-454a-a0c9-55f87814adb9,LIST_ACCOUNTS,hbciListAccounts,false -22283,ee1a9f75-0a39-454a-a0c9-55f87814adb9,LIST_TRANSACTIONS,hbciListTransactions,false -22284,ee1a9f75-0a39-454a-a0c9-55f87814adb9,AUTHORIZATION,,false -22285,ee1a9f75-0a39-454a-a0c9-55f87814adb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22286,ee1a9f75-0a39-454a-a0c9-55f87814adb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22287,ee1a9f75-0a39-454a-a0c9-55f87814adb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22282,f40074ce-c9f6-437a-8e83-dbcce0e3373f,LIST_ACCOUNTS,hbciListAccounts,false +22283,f40074ce-c9f6-437a-8e83-dbcce0e3373f,LIST_TRANSACTIONS,hbciListTransactions,false +22284,f40074ce-c9f6-437a-8e83-dbcce0e3373f,AUTHORIZATION,,false +22285,f40074ce-c9f6-437a-8e83-dbcce0e3373f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22286,f40074ce-c9f6-437a-8e83-dbcce0e3373f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22287,f40074ce-c9f6-437a-8e83-dbcce0e3373f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22288,798c0e37-8f70-4e18-8fac-b921fb4afa61,LIST_ACCOUNTS,xs2aListAccounts,true -22289,798c0e37-8f70-4e18-8fac-b921fb4afa61,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22289,798c0e37-8f70-4e18-8fac-b921fb4afa61,LIST_TRANSACTIONS,xs2aListTransactions,true 22290,798c0e37-8f70-4e18-8fac-b921fb4afa61,AUTHORIZATION,,true 22291,798c0e37-8f70-4e18-8fac-b921fb4afa61,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22292,798c0e37-8f70-4e18-8fac-b921fb4afa61,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22293,798c0e37-8f70-4e18-8fac-b921fb4afa61,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22294,c1277afd-365a-4245-8adf-b0a2ed7f2981,LIST_ACCOUNTS,hbciListAccounts,false -22295,c1277afd-365a-4245-8adf-b0a2ed7f2981,LIST_TRANSACTIONS,hbciListTransactions,false -22296,c1277afd-365a-4245-8adf-b0a2ed7f2981,AUTHORIZATION,,false -22297,c1277afd-365a-4245-8adf-b0a2ed7f2981,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22298,c1277afd-365a-4245-8adf-b0a2ed7f2981,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22299,c1277afd-365a-4245-8adf-b0a2ed7f2981,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22294,3e361417-ff41-4c70-a194-b5058a5f4b0b,LIST_ACCOUNTS,hbciListAccounts,false +22295,3e361417-ff41-4c70-a194-b5058a5f4b0b,LIST_TRANSACTIONS,hbciListTransactions,false +22296,3e361417-ff41-4c70-a194-b5058a5f4b0b,AUTHORIZATION,,false +22297,3e361417-ff41-4c70-a194-b5058a5f4b0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22298,3e361417-ff41-4c70-a194-b5058a5f4b0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22299,3e361417-ff41-4c70-a194-b5058a5f4b0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22300,14487e6b-494a-490a-b77e-11501b2da0d2,LIST_ACCOUNTS,xs2aListAccounts,true -22301,14487e6b-494a-490a-b77e-11501b2da0d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22301,14487e6b-494a-490a-b77e-11501b2da0d2,LIST_TRANSACTIONS,xs2aListTransactions,true 22302,14487e6b-494a-490a-b77e-11501b2da0d2,AUTHORIZATION,,true 22303,14487e6b-494a-490a-b77e-11501b2da0d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22304,14487e6b-494a-490a-b77e-11501b2da0d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22305,14487e6b-494a-490a-b77e-11501b2da0d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22306,2435cb73-527f-4bcd-8e10-fc8c52074f0d,LIST_ACCOUNTS,hbciListAccounts,false -22307,2435cb73-527f-4bcd-8e10-fc8c52074f0d,LIST_TRANSACTIONS,hbciListTransactions,false -22308,2435cb73-527f-4bcd-8e10-fc8c52074f0d,AUTHORIZATION,,false -22309,2435cb73-527f-4bcd-8e10-fc8c52074f0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22310,2435cb73-527f-4bcd-8e10-fc8c52074f0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22311,2435cb73-527f-4bcd-8e10-fc8c52074f0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22306,8d62931e-23ae-4264-8e00-a335b4d43c11,LIST_ACCOUNTS,hbciListAccounts,false +22307,8d62931e-23ae-4264-8e00-a335b4d43c11,LIST_TRANSACTIONS,hbciListTransactions,false +22308,8d62931e-23ae-4264-8e00-a335b4d43c11,AUTHORIZATION,,false +22309,8d62931e-23ae-4264-8e00-a335b4d43c11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22310,8d62931e-23ae-4264-8e00-a335b4d43c11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22311,8d62931e-23ae-4264-8e00-a335b4d43c11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22312,df59caa7-c905-4265-9eb8-51518d833774,LIST_ACCOUNTS,xs2aListAccounts,true -22313,df59caa7-c905-4265-9eb8-51518d833774,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22313,df59caa7-c905-4265-9eb8-51518d833774,LIST_TRANSACTIONS,xs2aListTransactions,true 22314,df59caa7-c905-4265-9eb8-51518d833774,AUTHORIZATION,,true 22315,df59caa7-c905-4265-9eb8-51518d833774,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22316,df59caa7-c905-4265-9eb8-51518d833774,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22317,df59caa7-c905-4265-9eb8-51518d833774,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22318,2645afbb-941c-40b6-95cd-e663c8023d3b,LIST_ACCOUNTS,hbciListAccounts,false -22319,2645afbb-941c-40b6-95cd-e663c8023d3b,LIST_TRANSACTIONS,hbciListTransactions,false -22320,2645afbb-941c-40b6-95cd-e663c8023d3b,AUTHORIZATION,,false -22321,2645afbb-941c-40b6-95cd-e663c8023d3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22322,2645afbb-941c-40b6-95cd-e663c8023d3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22323,2645afbb-941c-40b6-95cd-e663c8023d3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22318,345e3d05-3a2f-4543-a004-087e3eda8908,LIST_ACCOUNTS,hbciListAccounts,false +22319,345e3d05-3a2f-4543-a004-087e3eda8908,LIST_TRANSACTIONS,hbciListTransactions,false +22320,345e3d05-3a2f-4543-a004-087e3eda8908,AUTHORIZATION,,false +22321,345e3d05-3a2f-4543-a004-087e3eda8908,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22322,345e3d05-3a2f-4543-a004-087e3eda8908,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22323,345e3d05-3a2f-4543-a004-087e3eda8908,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22324,debe23ea-3dcf-4f0b-80ef-61b6f4b28e0c,LIST_ACCOUNTS,xs2aListAccounts,true -22325,debe23ea-3dcf-4f0b-80ef-61b6f4b28e0c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22325,debe23ea-3dcf-4f0b-80ef-61b6f4b28e0c,LIST_TRANSACTIONS,xs2aListTransactions,true 22326,debe23ea-3dcf-4f0b-80ef-61b6f4b28e0c,AUTHORIZATION,,true 22327,debe23ea-3dcf-4f0b-80ef-61b6f4b28e0c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22328,debe23ea-3dcf-4f0b-80ef-61b6f4b28e0c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22329,debe23ea-3dcf-4f0b-80ef-61b6f4b28e0c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22330,adc56314-65ad-4e24-9da0-5cf480988158,LIST_ACCOUNTS,hbciListAccounts,false -22331,adc56314-65ad-4e24-9da0-5cf480988158,LIST_TRANSACTIONS,hbciListTransactions,false -22332,adc56314-65ad-4e24-9da0-5cf480988158,AUTHORIZATION,,false -22333,adc56314-65ad-4e24-9da0-5cf480988158,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22334,adc56314-65ad-4e24-9da0-5cf480988158,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22335,adc56314-65ad-4e24-9da0-5cf480988158,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22330,4f89fcfc-2859-428a-b2d2-47a74a279a60,LIST_ACCOUNTS,hbciListAccounts,false +22331,4f89fcfc-2859-428a-b2d2-47a74a279a60,LIST_TRANSACTIONS,hbciListTransactions,false +22332,4f89fcfc-2859-428a-b2d2-47a74a279a60,AUTHORIZATION,,false +22333,4f89fcfc-2859-428a-b2d2-47a74a279a60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22334,4f89fcfc-2859-428a-b2d2-47a74a279a60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22335,4f89fcfc-2859-428a-b2d2-47a74a279a60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22336,be8514a2-4a50-4903-b8c9-c1b1355ff93d,LIST_ACCOUNTS,xs2aListAccounts,true -22337,be8514a2-4a50-4903-b8c9-c1b1355ff93d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22337,be8514a2-4a50-4903-b8c9-c1b1355ff93d,LIST_TRANSACTIONS,xs2aListTransactions,true 22338,be8514a2-4a50-4903-b8c9-c1b1355ff93d,AUTHORIZATION,,true 22339,be8514a2-4a50-4903-b8c9-c1b1355ff93d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22340,be8514a2-4a50-4903-b8c9-c1b1355ff93d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22341,be8514a2-4a50-4903-b8c9-c1b1355ff93d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22342,ad419db3-0ea2-42cb-85c4-29fa7a54bc4a,LIST_ACCOUNTS,hbciListAccounts,false -22343,ad419db3-0ea2-42cb-85c4-29fa7a54bc4a,LIST_TRANSACTIONS,hbciListTransactions,false -22344,ad419db3-0ea2-42cb-85c4-29fa7a54bc4a,AUTHORIZATION,,false -22345,ad419db3-0ea2-42cb-85c4-29fa7a54bc4a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22346,ad419db3-0ea2-42cb-85c4-29fa7a54bc4a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22347,ad419db3-0ea2-42cb-85c4-29fa7a54bc4a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22342,f1bde299-a5c9-4f3d-a3e1-82b2d0715434,LIST_ACCOUNTS,hbciListAccounts,false +22343,f1bde299-a5c9-4f3d-a3e1-82b2d0715434,LIST_TRANSACTIONS,hbciListTransactions,false +22344,f1bde299-a5c9-4f3d-a3e1-82b2d0715434,AUTHORIZATION,,false +22345,f1bde299-a5c9-4f3d-a3e1-82b2d0715434,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22346,f1bde299-a5c9-4f3d-a3e1-82b2d0715434,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22347,f1bde299-a5c9-4f3d-a3e1-82b2d0715434,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22348,9599f4cd-e412-46e7-8214-d3b8e273a708,LIST_ACCOUNTS,xs2aListAccounts,true -22349,9599f4cd-e412-46e7-8214-d3b8e273a708,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22349,9599f4cd-e412-46e7-8214-d3b8e273a708,LIST_TRANSACTIONS,xs2aListTransactions,true 22350,9599f4cd-e412-46e7-8214-d3b8e273a708,AUTHORIZATION,,true 22351,9599f4cd-e412-46e7-8214-d3b8e273a708,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22352,9599f4cd-e412-46e7-8214-d3b8e273a708,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22353,9599f4cd-e412-46e7-8214-d3b8e273a708,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22354,d66da24d-10cd-4932-b145-222411dd5016,LIST_ACCOUNTS,hbciListAccounts,false -22355,d66da24d-10cd-4932-b145-222411dd5016,LIST_TRANSACTIONS,hbciListTransactions,false -22356,d66da24d-10cd-4932-b145-222411dd5016,AUTHORIZATION,,false -22357,d66da24d-10cd-4932-b145-222411dd5016,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22358,d66da24d-10cd-4932-b145-222411dd5016,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22359,d66da24d-10cd-4932-b145-222411dd5016,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22354,941c0d99-a3e8-4dd5-a302-94885fc0aaeb,LIST_ACCOUNTS,hbciListAccounts,false +22355,941c0d99-a3e8-4dd5-a302-94885fc0aaeb,LIST_TRANSACTIONS,hbciListTransactions,false +22356,941c0d99-a3e8-4dd5-a302-94885fc0aaeb,AUTHORIZATION,,false +22357,941c0d99-a3e8-4dd5-a302-94885fc0aaeb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22358,941c0d99-a3e8-4dd5-a302-94885fc0aaeb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22359,941c0d99-a3e8-4dd5-a302-94885fc0aaeb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22360,57d0340f-af0c-4a12-a2cf-db3f6a002b08,LIST_ACCOUNTS,xs2aListAccounts,true -22361,57d0340f-af0c-4a12-a2cf-db3f6a002b08,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22361,57d0340f-af0c-4a12-a2cf-db3f6a002b08,LIST_TRANSACTIONS,xs2aListTransactions,true 22362,57d0340f-af0c-4a12-a2cf-db3f6a002b08,AUTHORIZATION,,true 22363,57d0340f-af0c-4a12-a2cf-db3f6a002b08,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22364,57d0340f-af0c-4a12-a2cf-db3f6a002b08,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22365,57d0340f-af0c-4a12-a2cf-db3f6a002b08,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22366,421fa78a-78f7-42ed-9085-24d5a707aa19,LIST_ACCOUNTS,hbciListAccounts,false -22367,421fa78a-78f7-42ed-9085-24d5a707aa19,LIST_TRANSACTIONS,hbciListTransactions,false -22368,421fa78a-78f7-42ed-9085-24d5a707aa19,AUTHORIZATION,,false -22369,421fa78a-78f7-42ed-9085-24d5a707aa19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22370,421fa78a-78f7-42ed-9085-24d5a707aa19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22371,421fa78a-78f7-42ed-9085-24d5a707aa19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22366,40e5930b-8437-4624-a68e-3a0593ce07e1,LIST_ACCOUNTS,hbciListAccounts,false +22367,40e5930b-8437-4624-a68e-3a0593ce07e1,LIST_TRANSACTIONS,hbciListTransactions,false +22368,40e5930b-8437-4624-a68e-3a0593ce07e1,AUTHORIZATION,,false +22369,40e5930b-8437-4624-a68e-3a0593ce07e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22370,40e5930b-8437-4624-a68e-3a0593ce07e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22371,40e5930b-8437-4624-a68e-3a0593ce07e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22372,d973c48c-7087-4e23-ae8e-57baf2cbc45b,LIST_ACCOUNTS,xs2aListAccounts,true -22373,d973c48c-7087-4e23-ae8e-57baf2cbc45b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22373,d973c48c-7087-4e23-ae8e-57baf2cbc45b,LIST_TRANSACTIONS,xs2aListTransactions,true 22374,d973c48c-7087-4e23-ae8e-57baf2cbc45b,AUTHORIZATION,,true 22375,d973c48c-7087-4e23-ae8e-57baf2cbc45b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22376,d973c48c-7087-4e23-ae8e-57baf2cbc45b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22377,d973c48c-7087-4e23-ae8e-57baf2cbc45b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22378,645c690b-f5a5-4e63-bd83-dcdf91f446e9,LIST_ACCOUNTS,hbciListAccounts,false -22379,645c690b-f5a5-4e63-bd83-dcdf91f446e9,LIST_TRANSACTIONS,hbciListTransactions,false -22380,645c690b-f5a5-4e63-bd83-dcdf91f446e9,AUTHORIZATION,,false -22381,645c690b-f5a5-4e63-bd83-dcdf91f446e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22382,645c690b-f5a5-4e63-bd83-dcdf91f446e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22383,645c690b-f5a5-4e63-bd83-dcdf91f446e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22378,217a3cd8-68f3-4dfe-b36f-fa1caca0ee9b,LIST_ACCOUNTS,hbciListAccounts,false +22379,217a3cd8-68f3-4dfe-b36f-fa1caca0ee9b,LIST_TRANSACTIONS,hbciListTransactions,false +22380,217a3cd8-68f3-4dfe-b36f-fa1caca0ee9b,AUTHORIZATION,,false +22381,217a3cd8-68f3-4dfe-b36f-fa1caca0ee9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22382,217a3cd8-68f3-4dfe-b36f-fa1caca0ee9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22383,217a3cd8-68f3-4dfe-b36f-fa1caca0ee9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22384,135abef6-ca4b-484b-bb1d-1f115aa4bee8,LIST_ACCOUNTS,xs2aListAccounts,true -22385,135abef6-ca4b-484b-bb1d-1f115aa4bee8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22385,135abef6-ca4b-484b-bb1d-1f115aa4bee8,LIST_TRANSACTIONS,xs2aListTransactions,true 22386,135abef6-ca4b-484b-bb1d-1f115aa4bee8,AUTHORIZATION,,true 22387,135abef6-ca4b-484b-bb1d-1f115aa4bee8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22388,135abef6-ca4b-484b-bb1d-1f115aa4bee8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22389,135abef6-ca4b-484b-bb1d-1f115aa4bee8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22390,1782a134-e433-448e-8d93-64e24cd54e02,LIST_ACCOUNTS,hbciListAccounts,false -22391,1782a134-e433-448e-8d93-64e24cd54e02,LIST_TRANSACTIONS,hbciListTransactions,false -22392,1782a134-e433-448e-8d93-64e24cd54e02,AUTHORIZATION,,false -22393,1782a134-e433-448e-8d93-64e24cd54e02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22394,1782a134-e433-448e-8d93-64e24cd54e02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22395,1782a134-e433-448e-8d93-64e24cd54e02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22390,cad6d8bf-ff5e-42f8-bfac-41c9fb3199d5,LIST_ACCOUNTS,hbciListAccounts,false +22391,cad6d8bf-ff5e-42f8-bfac-41c9fb3199d5,LIST_TRANSACTIONS,hbciListTransactions,false +22392,cad6d8bf-ff5e-42f8-bfac-41c9fb3199d5,AUTHORIZATION,,false +22393,cad6d8bf-ff5e-42f8-bfac-41c9fb3199d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22394,cad6d8bf-ff5e-42f8-bfac-41c9fb3199d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22395,cad6d8bf-ff5e-42f8-bfac-41c9fb3199d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22396,e82dbb45-c3db-4e94-9947-8690ab671327,LIST_ACCOUNTS,xs2aListAccounts,true -22397,e82dbb45-c3db-4e94-9947-8690ab671327,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22397,e82dbb45-c3db-4e94-9947-8690ab671327,LIST_TRANSACTIONS,xs2aListTransactions,true 22398,e82dbb45-c3db-4e94-9947-8690ab671327,AUTHORIZATION,,true 22399,e82dbb45-c3db-4e94-9947-8690ab671327,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22400,e82dbb45-c3db-4e94-9947-8690ab671327,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22401,e82dbb45-c3db-4e94-9947-8690ab671327,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22402,c320c17c-b447-4f0b-a962-50e81598ded2,LIST_ACCOUNTS,hbciListAccounts,false -22403,c320c17c-b447-4f0b-a962-50e81598ded2,LIST_TRANSACTIONS,hbciListTransactions,false -22404,c320c17c-b447-4f0b-a962-50e81598ded2,AUTHORIZATION,,false -22405,c320c17c-b447-4f0b-a962-50e81598ded2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22406,c320c17c-b447-4f0b-a962-50e81598ded2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22407,c320c17c-b447-4f0b-a962-50e81598ded2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22402,6b95d7d0-745b-43c7-8156-6e1d1c3b2ea6,LIST_ACCOUNTS,hbciListAccounts,false +22403,6b95d7d0-745b-43c7-8156-6e1d1c3b2ea6,LIST_TRANSACTIONS,hbciListTransactions,false +22404,6b95d7d0-745b-43c7-8156-6e1d1c3b2ea6,AUTHORIZATION,,false +22405,6b95d7d0-745b-43c7-8156-6e1d1c3b2ea6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22406,6b95d7d0-745b-43c7-8156-6e1d1c3b2ea6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22407,6b95d7d0-745b-43c7-8156-6e1d1c3b2ea6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22408,62f44534-853b-4e8b-bb51-c4f0f8d7778b,LIST_ACCOUNTS,xs2aListAccounts,true -22409,62f44534-853b-4e8b-bb51-c4f0f8d7778b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22409,62f44534-853b-4e8b-bb51-c4f0f8d7778b,LIST_TRANSACTIONS,xs2aListTransactions,true 22410,62f44534-853b-4e8b-bb51-c4f0f8d7778b,AUTHORIZATION,,true 22411,62f44534-853b-4e8b-bb51-c4f0f8d7778b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22412,62f44534-853b-4e8b-bb51-c4f0f8d7778b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22413,62f44534-853b-4e8b-bb51-c4f0f8d7778b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22414,e0447fd0-dd5d-44ac-b238-02026051a00b,LIST_ACCOUNTS,hbciListAccounts,false -22415,e0447fd0-dd5d-44ac-b238-02026051a00b,LIST_TRANSACTIONS,hbciListTransactions,false -22416,e0447fd0-dd5d-44ac-b238-02026051a00b,AUTHORIZATION,,false -22417,e0447fd0-dd5d-44ac-b238-02026051a00b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22418,e0447fd0-dd5d-44ac-b238-02026051a00b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22419,e0447fd0-dd5d-44ac-b238-02026051a00b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22414,c3b8d878-c76f-476c-b437-36f950217015,LIST_ACCOUNTS,hbciListAccounts,false +22415,c3b8d878-c76f-476c-b437-36f950217015,LIST_TRANSACTIONS,hbciListTransactions,false +22416,c3b8d878-c76f-476c-b437-36f950217015,AUTHORIZATION,,false +22417,c3b8d878-c76f-476c-b437-36f950217015,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22418,c3b8d878-c76f-476c-b437-36f950217015,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22419,c3b8d878-c76f-476c-b437-36f950217015,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22420,c513d829-cb04-41a9-b13f-f38d2a7c5304,LIST_ACCOUNTS,xs2aListAccounts,true -22421,c513d829-cb04-41a9-b13f-f38d2a7c5304,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22421,c513d829-cb04-41a9-b13f-f38d2a7c5304,LIST_TRANSACTIONS,xs2aListTransactions,true 22422,c513d829-cb04-41a9-b13f-f38d2a7c5304,AUTHORIZATION,,true 22423,c513d829-cb04-41a9-b13f-f38d2a7c5304,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22424,c513d829-cb04-41a9-b13f-f38d2a7c5304,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22425,c513d829-cb04-41a9-b13f-f38d2a7c5304,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22426,2da29fa9-06be-4761-9e68-06fc3e7339b9,LIST_ACCOUNTS,hbciListAccounts,false -22427,2da29fa9-06be-4761-9e68-06fc3e7339b9,LIST_TRANSACTIONS,hbciListTransactions,false -22428,2da29fa9-06be-4761-9e68-06fc3e7339b9,AUTHORIZATION,,false -22429,2da29fa9-06be-4761-9e68-06fc3e7339b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22430,2da29fa9-06be-4761-9e68-06fc3e7339b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22431,2da29fa9-06be-4761-9e68-06fc3e7339b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22426,78847205-4c46-4a23-b7be-4a3139fa0350,LIST_ACCOUNTS,hbciListAccounts,false +22427,78847205-4c46-4a23-b7be-4a3139fa0350,LIST_TRANSACTIONS,hbciListTransactions,false +22428,78847205-4c46-4a23-b7be-4a3139fa0350,AUTHORIZATION,,false +22429,78847205-4c46-4a23-b7be-4a3139fa0350,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22430,78847205-4c46-4a23-b7be-4a3139fa0350,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22431,78847205-4c46-4a23-b7be-4a3139fa0350,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22432,6308c8b5-f051-4e64-aa64-98d435538924,LIST_ACCOUNTS,xs2aListAccounts,true -22433,6308c8b5-f051-4e64-aa64-98d435538924,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22433,6308c8b5-f051-4e64-aa64-98d435538924,LIST_TRANSACTIONS,xs2aListTransactions,true 22434,6308c8b5-f051-4e64-aa64-98d435538924,AUTHORIZATION,,true 22435,6308c8b5-f051-4e64-aa64-98d435538924,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22436,6308c8b5-f051-4e64-aa64-98d435538924,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22437,6308c8b5-f051-4e64-aa64-98d435538924,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22438,33108e4f-bbd9-444a-874d-619e952828ef,LIST_ACCOUNTS,hbciListAccounts,false -22439,33108e4f-bbd9-444a-874d-619e952828ef,LIST_TRANSACTIONS,hbciListTransactions,false -22440,33108e4f-bbd9-444a-874d-619e952828ef,AUTHORIZATION,,false -22441,33108e4f-bbd9-444a-874d-619e952828ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22442,33108e4f-bbd9-444a-874d-619e952828ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22443,33108e4f-bbd9-444a-874d-619e952828ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22438,b283b67f-5f23-4b97-9273-ec6a7d590360,LIST_ACCOUNTS,hbciListAccounts,false +22439,b283b67f-5f23-4b97-9273-ec6a7d590360,LIST_TRANSACTIONS,hbciListTransactions,false +22440,b283b67f-5f23-4b97-9273-ec6a7d590360,AUTHORIZATION,,false +22441,b283b67f-5f23-4b97-9273-ec6a7d590360,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22442,b283b67f-5f23-4b97-9273-ec6a7d590360,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22443,b283b67f-5f23-4b97-9273-ec6a7d590360,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22444,569a7454-5117-4f9c-aae2-f5316dabbc93,LIST_ACCOUNTS,xs2aListAccounts,true -22445,569a7454-5117-4f9c-aae2-f5316dabbc93,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22445,569a7454-5117-4f9c-aae2-f5316dabbc93,LIST_TRANSACTIONS,xs2aListTransactions,true 22446,569a7454-5117-4f9c-aae2-f5316dabbc93,AUTHORIZATION,,true 22447,569a7454-5117-4f9c-aae2-f5316dabbc93,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22448,569a7454-5117-4f9c-aae2-f5316dabbc93,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22449,569a7454-5117-4f9c-aae2-f5316dabbc93,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22450,c25c8f53-b92c-4493-8e39-34d07bb0122a,LIST_ACCOUNTS,hbciListAccounts,false -22451,c25c8f53-b92c-4493-8e39-34d07bb0122a,LIST_TRANSACTIONS,hbciListTransactions,false -22452,c25c8f53-b92c-4493-8e39-34d07bb0122a,AUTHORIZATION,,false -22453,c25c8f53-b92c-4493-8e39-34d07bb0122a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22454,c25c8f53-b92c-4493-8e39-34d07bb0122a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22455,c25c8f53-b92c-4493-8e39-34d07bb0122a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22450,00cbad9e-ae59-4aa6-bf53-0bc9e86f77c5,LIST_ACCOUNTS,hbciListAccounts,false +22451,00cbad9e-ae59-4aa6-bf53-0bc9e86f77c5,LIST_TRANSACTIONS,hbciListTransactions,false +22452,00cbad9e-ae59-4aa6-bf53-0bc9e86f77c5,AUTHORIZATION,,false +22453,00cbad9e-ae59-4aa6-bf53-0bc9e86f77c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22454,00cbad9e-ae59-4aa6-bf53-0bc9e86f77c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22455,00cbad9e-ae59-4aa6-bf53-0bc9e86f77c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22456,49948342-21a7-4ada-aaf5-2a05266c3e45,LIST_ACCOUNTS,xs2aListAccounts,true -22457,49948342-21a7-4ada-aaf5-2a05266c3e45,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22457,49948342-21a7-4ada-aaf5-2a05266c3e45,LIST_TRANSACTIONS,xs2aListTransactions,true 22458,49948342-21a7-4ada-aaf5-2a05266c3e45,AUTHORIZATION,,true 22459,49948342-21a7-4ada-aaf5-2a05266c3e45,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22460,49948342-21a7-4ada-aaf5-2a05266c3e45,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22461,49948342-21a7-4ada-aaf5-2a05266c3e45,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22462,12ddd8ac-8428-46ff-a3d7-e19a2325c10e,LIST_ACCOUNTS,hbciListAccounts,false -22463,12ddd8ac-8428-46ff-a3d7-e19a2325c10e,LIST_TRANSACTIONS,hbciListTransactions,false -22464,12ddd8ac-8428-46ff-a3d7-e19a2325c10e,AUTHORIZATION,,false -22465,12ddd8ac-8428-46ff-a3d7-e19a2325c10e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22466,12ddd8ac-8428-46ff-a3d7-e19a2325c10e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22467,12ddd8ac-8428-46ff-a3d7-e19a2325c10e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22462,70eb142c-0580-49cb-b050-e2a35cdd15f1,LIST_ACCOUNTS,hbciListAccounts,false +22463,70eb142c-0580-49cb-b050-e2a35cdd15f1,LIST_TRANSACTIONS,hbciListTransactions,false +22464,70eb142c-0580-49cb-b050-e2a35cdd15f1,AUTHORIZATION,,false +22465,70eb142c-0580-49cb-b050-e2a35cdd15f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22466,70eb142c-0580-49cb-b050-e2a35cdd15f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22467,70eb142c-0580-49cb-b050-e2a35cdd15f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22468,9a56e396-0f9a-4258-a207-d285478079ba,LIST_ACCOUNTS,xs2aListAccounts,true -22469,9a56e396-0f9a-4258-a207-d285478079ba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22469,9a56e396-0f9a-4258-a207-d285478079ba,LIST_TRANSACTIONS,xs2aListTransactions,true 22470,9a56e396-0f9a-4258-a207-d285478079ba,AUTHORIZATION,,true 22471,9a56e396-0f9a-4258-a207-d285478079ba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22472,9a56e396-0f9a-4258-a207-d285478079ba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22473,9a56e396-0f9a-4258-a207-d285478079ba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22474,6bf2ba89-db42-4323-880d-6cbd6828f1b0,LIST_ACCOUNTS,hbciListAccounts,false -22475,6bf2ba89-db42-4323-880d-6cbd6828f1b0,LIST_TRANSACTIONS,hbciListTransactions,false -22476,6bf2ba89-db42-4323-880d-6cbd6828f1b0,AUTHORIZATION,,false -22477,6bf2ba89-db42-4323-880d-6cbd6828f1b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22478,6bf2ba89-db42-4323-880d-6cbd6828f1b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22479,6bf2ba89-db42-4323-880d-6cbd6828f1b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22474,07835008-5d7a-40bb-9550-ae0405f25a5b,LIST_ACCOUNTS,hbciListAccounts,false +22475,07835008-5d7a-40bb-9550-ae0405f25a5b,LIST_TRANSACTIONS,hbciListTransactions,false +22476,07835008-5d7a-40bb-9550-ae0405f25a5b,AUTHORIZATION,,false +22477,07835008-5d7a-40bb-9550-ae0405f25a5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22478,07835008-5d7a-40bb-9550-ae0405f25a5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22479,07835008-5d7a-40bb-9550-ae0405f25a5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22480,d76065d3-d4dc-460c-862b-9be86c6d579f,LIST_ACCOUNTS,xs2aListAccounts,true -22481,d76065d3-d4dc-460c-862b-9be86c6d579f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22481,d76065d3-d4dc-460c-862b-9be86c6d579f,LIST_TRANSACTIONS,xs2aListTransactions,true 22482,d76065d3-d4dc-460c-862b-9be86c6d579f,AUTHORIZATION,,true 22483,d76065d3-d4dc-460c-862b-9be86c6d579f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22484,d76065d3-d4dc-460c-862b-9be86c6d579f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22485,d76065d3-d4dc-460c-862b-9be86c6d579f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22486,c4ec1154-9e4c-4ea1-989f-1344bcc6ed8c,LIST_ACCOUNTS,hbciListAccounts,false -22487,c4ec1154-9e4c-4ea1-989f-1344bcc6ed8c,LIST_TRANSACTIONS,hbciListTransactions,false -22488,c4ec1154-9e4c-4ea1-989f-1344bcc6ed8c,AUTHORIZATION,,false -22489,c4ec1154-9e4c-4ea1-989f-1344bcc6ed8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22490,c4ec1154-9e4c-4ea1-989f-1344bcc6ed8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22491,c4ec1154-9e4c-4ea1-989f-1344bcc6ed8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22486,7e7f1718-145f-472f-aa8a-1fe02b167cfc,LIST_ACCOUNTS,hbciListAccounts,false +22487,7e7f1718-145f-472f-aa8a-1fe02b167cfc,LIST_TRANSACTIONS,hbciListTransactions,false +22488,7e7f1718-145f-472f-aa8a-1fe02b167cfc,AUTHORIZATION,,false +22489,7e7f1718-145f-472f-aa8a-1fe02b167cfc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22490,7e7f1718-145f-472f-aa8a-1fe02b167cfc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22491,7e7f1718-145f-472f-aa8a-1fe02b167cfc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22492,4a24ddfa-285e-4a6e-b0c2-46424f704bad,LIST_ACCOUNTS,xs2aListAccounts,true -22493,4a24ddfa-285e-4a6e-b0c2-46424f704bad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22493,4a24ddfa-285e-4a6e-b0c2-46424f704bad,LIST_TRANSACTIONS,xs2aListTransactions,true 22494,4a24ddfa-285e-4a6e-b0c2-46424f704bad,AUTHORIZATION,,true 22495,4a24ddfa-285e-4a6e-b0c2-46424f704bad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22496,4a24ddfa-285e-4a6e-b0c2-46424f704bad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22497,4a24ddfa-285e-4a6e-b0c2-46424f704bad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22498,b7d0f815-b72b-4e48-a8ad-15e7239e1ed7,LIST_ACCOUNTS,hbciListAccounts,false -22499,b7d0f815-b72b-4e48-a8ad-15e7239e1ed7,LIST_TRANSACTIONS,hbciListTransactions,false -22500,b7d0f815-b72b-4e48-a8ad-15e7239e1ed7,AUTHORIZATION,,false -22501,b7d0f815-b72b-4e48-a8ad-15e7239e1ed7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22502,b7d0f815-b72b-4e48-a8ad-15e7239e1ed7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22503,b7d0f815-b72b-4e48-a8ad-15e7239e1ed7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22498,716a4517-e97b-4bab-9069-ee2a94c86a66,LIST_ACCOUNTS,hbciListAccounts,false +22499,716a4517-e97b-4bab-9069-ee2a94c86a66,LIST_TRANSACTIONS,hbciListTransactions,false +22500,716a4517-e97b-4bab-9069-ee2a94c86a66,AUTHORIZATION,,false +22501,716a4517-e97b-4bab-9069-ee2a94c86a66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22502,716a4517-e97b-4bab-9069-ee2a94c86a66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22503,716a4517-e97b-4bab-9069-ee2a94c86a66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22504,fe7b04f3-17ab-470c-b560-97c2ba53a10a,LIST_ACCOUNTS,xs2aListAccounts,true -22505,fe7b04f3-17ab-470c-b560-97c2ba53a10a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22505,fe7b04f3-17ab-470c-b560-97c2ba53a10a,LIST_TRANSACTIONS,xs2aListTransactions,true 22506,fe7b04f3-17ab-470c-b560-97c2ba53a10a,AUTHORIZATION,,true 22507,fe7b04f3-17ab-470c-b560-97c2ba53a10a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22508,fe7b04f3-17ab-470c-b560-97c2ba53a10a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22509,fe7b04f3-17ab-470c-b560-97c2ba53a10a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22510,14c96dca-2c0e-49db-82e9-bae4bb19719c,LIST_ACCOUNTS,hbciListAccounts,false -22511,14c96dca-2c0e-49db-82e9-bae4bb19719c,LIST_TRANSACTIONS,hbciListTransactions,false -22512,14c96dca-2c0e-49db-82e9-bae4bb19719c,AUTHORIZATION,,false -22513,14c96dca-2c0e-49db-82e9-bae4bb19719c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22514,14c96dca-2c0e-49db-82e9-bae4bb19719c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22515,14c96dca-2c0e-49db-82e9-bae4bb19719c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22510,90272a4e-c08b-4c26-8d61-7c969665b59e,LIST_ACCOUNTS,hbciListAccounts,false +22511,90272a4e-c08b-4c26-8d61-7c969665b59e,LIST_TRANSACTIONS,hbciListTransactions,false +22512,90272a4e-c08b-4c26-8d61-7c969665b59e,AUTHORIZATION,,false +22513,90272a4e-c08b-4c26-8d61-7c969665b59e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22514,90272a4e-c08b-4c26-8d61-7c969665b59e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22515,90272a4e-c08b-4c26-8d61-7c969665b59e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22516,600da84f-8fc7-4d9a-924a-1d96146f48f5,LIST_ACCOUNTS,xs2aListAccounts,true -22517,600da84f-8fc7-4d9a-924a-1d96146f48f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22517,600da84f-8fc7-4d9a-924a-1d96146f48f5,LIST_TRANSACTIONS,xs2aListTransactions,true 22518,600da84f-8fc7-4d9a-924a-1d96146f48f5,AUTHORIZATION,,true 22519,600da84f-8fc7-4d9a-924a-1d96146f48f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22520,600da84f-8fc7-4d9a-924a-1d96146f48f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22521,600da84f-8fc7-4d9a-924a-1d96146f48f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22522,3778a122-0e9a-4fc4-b36c-5e0ddc8da668,LIST_ACCOUNTS,hbciListAccounts,false -22523,3778a122-0e9a-4fc4-b36c-5e0ddc8da668,LIST_TRANSACTIONS,hbciListTransactions,false -22524,3778a122-0e9a-4fc4-b36c-5e0ddc8da668,AUTHORIZATION,,false -22525,3778a122-0e9a-4fc4-b36c-5e0ddc8da668,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22526,3778a122-0e9a-4fc4-b36c-5e0ddc8da668,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22527,3778a122-0e9a-4fc4-b36c-5e0ddc8da668,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22522,58f127f3-b161-459d-bcc6-ae4c638150a7,LIST_ACCOUNTS,hbciListAccounts,false +22523,58f127f3-b161-459d-bcc6-ae4c638150a7,LIST_TRANSACTIONS,hbciListTransactions,false +22524,58f127f3-b161-459d-bcc6-ae4c638150a7,AUTHORIZATION,,false +22525,58f127f3-b161-459d-bcc6-ae4c638150a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22526,58f127f3-b161-459d-bcc6-ae4c638150a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22527,58f127f3-b161-459d-bcc6-ae4c638150a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22528,79a0a269-1daa-4468-9682-b608b3a4c135,LIST_ACCOUNTS,xs2aListAccounts,true -22529,79a0a269-1daa-4468-9682-b608b3a4c135,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22529,79a0a269-1daa-4468-9682-b608b3a4c135,LIST_TRANSACTIONS,xs2aListTransactions,true 22530,79a0a269-1daa-4468-9682-b608b3a4c135,AUTHORIZATION,,true 22531,79a0a269-1daa-4468-9682-b608b3a4c135,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22532,79a0a269-1daa-4468-9682-b608b3a4c135,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22533,79a0a269-1daa-4468-9682-b608b3a4c135,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22534,5f64fb6d-249f-4363-b61e-e7178b6ed523,LIST_ACCOUNTS,hbciListAccounts,false -22535,5f64fb6d-249f-4363-b61e-e7178b6ed523,LIST_TRANSACTIONS,hbciListTransactions,false -22536,5f64fb6d-249f-4363-b61e-e7178b6ed523,AUTHORIZATION,,false -22537,5f64fb6d-249f-4363-b61e-e7178b6ed523,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22538,5f64fb6d-249f-4363-b61e-e7178b6ed523,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22539,5f64fb6d-249f-4363-b61e-e7178b6ed523,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22534,d236b0b5-f3c3-4aa4-a9f9-d985c3aa1779,LIST_ACCOUNTS,hbciListAccounts,false +22535,d236b0b5-f3c3-4aa4-a9f9-d985c3aa1779,LIST_TRANSACTIONS,hbciListTransactions,false +22536,d236b0b5-f3c3-4aa4-a9f9-d985c3aa1779,AUTHORIZATION,,false +22537,d236b0b5-f3c3-4aa4-a9f9-d985c3aa1779,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22538,d236b0b5-f3c3-4aa4-a9f9-d985c3aa1779,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22539,d236b0b5-f3c3-4aa4-a9f9-d985c3aa1779,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22540,09909329-38bf-402e-b382-ac50d9513c98,LIST_ACCOUNTS,xs2aListAccounts,true -22541,09909329-38bf-402e-b382-ac50d9513c98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22541,09909329-38bf-402e-b382-ac50d9513c98,LIST_TRANSACTIONS,xs2aListTransactions,true 22542,09909329-38bf-402e-b382-ac50d9513c98,AUTHORIZATION,,true 22543,09909329-38bf-402e-b382-ac50d9513c98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22544,09909329-38bf-402e-b382-ac50d9513c98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22545,09909329-38bf-402e-b382-ac50d9513c98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22546,98cb5fa5-072b-44e0-ae4d-b1ae3366feb4,LIST_ACCOUNTS,hbciListAccounts,false -22547,98cb5fa5-072b-44e0-ae4d-b1ae3366feb4,LIST_TRANSACTIONS,hbciListTransactions,false -22548,98cb5fa5-072b-44e0-ae4d-b1ae3366feb4,AUTHORIZATION,,false -22549,98cb5fa5-072b-44e0-ae4d-b1ae3366feb4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22550,98cb5fa5-072b-44e0-ae4d-b1ae3366feb4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22551,98cb5fa5-072b-44e0-ae4d-b1ae3366feb4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22546,a4ab1856-d76b-4ca8-8d2f-41867e73d3a0,LIST_ACCOUNTS,hbciListAccounts,false +22547,a4ab1856-d76b-4ca8-8d2f-41867e73d3a0,LIST_TRANSACTIONS,hbciListTransactions,false +22548,a4ab1856-d76b-4ca8-8d2f-41867e73d3a0,AUTHORIZATION,,false +22549,a4ab1856-d76b-4ca8-8d2f-41867e73d3a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22550,a4ab1856-d76b-4ca8-8d2f-41867e73d3a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22551,a4ab1856-d76b-4ca8-8d2f-41867e73d3a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22552,86e97222-8572-4753-af17-e5af24690ba4,LIST_ACCOUNTS,xs2aListAccounts,true -22553,86e97222-8572-4753-af17-e5af24690ba4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22553,86e97222-8572-4753-af17-e5af24690ba4,LIST_TRANSACTIONS,xs2aListTransactions,true 22554,86e97222-8572-4753-af17-e5af24690ba4,AUTHORIZATION,,true 22555,86e97222-8572-4753-af17-e5af24690ba4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22556,86e97222-8572-4753-af17-e5af24690ba4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22557,86e97222-8572-4753-af17-e5af24690ba4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22558,ba46ea47-b54a-4a16-a21f-4cf6e6ab915b,LIST_ACCOUNTS,hbciListAccounts,false -22559,ba46ea47-b54a-4a16-a21f-4cf6e6ab915b,LIST_TRANSACTIONS,hbciListTransactions,false -22560,ba46ea47-b54a-4a16-a21f-4cf6e6ab915b,AUTHORIZATION,,false -22561,ba46ea47-b54a-4a16-a21f-4cf6e6ab915b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22562,ba46ea47-b54a-4a16-a21f-4cf6e6ab915b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22563,ba46ea47-b54a-4a16-a21f-4cf6e6ab915b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22558,c541cd80-7c82-4458-81f0-07c8e8ad96b3,LIST_ACCOUNTS,hbciListAccounts,false +22559,c541cd80-7c82-4458-81f0-07c8e8ad96b3,LIST_TRANSACTIONS,hbciListTransactions,false +22560,c541cd80-7c82-4458-81f0-07c8e8ad96b3,AUTHORIZATION,,false +22561,c541cd80-7c82-4458-81f0-07c8e8ad96b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22562,c541cd80-7c82-4458-81f0-07c8e8ad96b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22563,c541cd80-7c82-4458-81f0-07c8e8ad96b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22564,bb2f95e1-54b0-4d3d-bd8e-458b75984501,LIST_ACCOUNTS,xs2aListAccounts,true -22565,bb2f95e1-54b0-4d3d-bd8e-458b75984501,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22565,bb2f95e1-54b0-4d3d-bd8e-458b75984501,LIST_TRANSACTIONS,xs2aListTransactions,true 22566,bb2f95e1-54b0-4d3d-bd8e-458b75984501,AUTHORIZATION,,true 22567,bb2f95e1-54b0-4d3d-bd8e-458b75984501,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22568,bb2f95e1-54b0-4d3d-bd8e-458b75984501,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22569,bb2f95e1-54b0-4d3d-bd8e-458b75984501,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22570,5fa530e3-fe72-4945-8bf4-1a8aa34b76b6,LIST_ACCOUNTS,hbciListAccounts,false -22571,5fa530e3-fe72-4945-8bf4-1a8aa34b76b6,LIST_TRANSACTIONS,hbciListTransactions,false -22572,5fa530e3-fe72-4945-8bf4-1a8aa34b76b6,AUTHORIZATION,,false -22573,5fa530e3-fe72-4945-8bf4-1a8aa34b76b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22574,5fa530e3-fe72-4945-8bf4-1a8aa34b76b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22575,5fa530e3-fe72-4945-8bf4-1a8aa34b76b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22570,88940784-1290-4c7b-87ba-0d0f0bd8e2dc,LIST_ACCOUNTS,hbciListAccounts,false +22571,88940784-1290-4c7b-87ba-0d0f0bd8e2dc,LIST_TRANSACTIONS,hbciListTransactions,false +22572,88940784-1290-4c7b-87ba-0d0f0bd8e2dc,AUTHORIZATION,,false +22573,88940784-1290-4c7b-87ba-0d0f0bd8e2dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22574,88940784-1290-4c7b-87ba-0d0f0bd8e2dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22575,88940784-1290-4c7b-87ba-0d0f0bd8e2dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22576,5f9448e5-05e2-4c62-86e6-0fbbf7226feb,LIST_ACCOUNTS,xs2aListAccounts,true -22577,5f9448e5-05e2-4c62-86e6-0fbbf7226feb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22577,5f9448e5-05e2-4c62-86e6-0fbbf7226feb,LIST_TRANSACTIONS,xs2aListTransactions,true 22578,5f9448e5-05e2-4c62-86e6-0fbbf7226feb,AUTHORIZATION,,true 22579,5f9448e5-05e2-4c62-86e6-0fbbf7226feb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22580,5f9448e5-05e2-4c62-86e6-0fbbf7226feb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22581,5f9448e5-05e2-4c62-86e6-0fbbf7226feb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22582,ecc5bccb-9327-46a6-a45a-40228dbe85ad,LIST_ACCOUNTS,hbciListAccounts,false -22583,ecc5bccb-9327-46a6-a45a-40228dbe85ad,LIST_TRANSACTIONS,hbciListTransactions,false -22584,ecc5bccb-9327-46a6-a45a-40228dbe85ad,AUTHORIZATION,,false -22585,ecc5bccb-9327-46a6-a45a-40228dbe85ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22586,ecc5bccb-9327-46a6-a45a-40228dbe85ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22587,ecc5bccb-9327-46a6-a45a-40228dbe85ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22582,9db3f230-b54e-47bb-bd34-aa4dd54b43e7,LIST_ACCOUNTS,hbciListAccounts,false +22583,9db3f230-b54e-47bb-bd34-aa4dd54b43e7,LIST_TRANSACTIONS,hbciListTransactions,false +22584,9db3f230-b54e-47bb-bd34-aa4dd54b43e7,AUTHORIZATION,,false +22585,9db3f230-b54e-47bb-bd34-aa4dd54b43e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22586,9db3f230-b54e-47bb-bd34-aa4dd54b43e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22587,9db3f230-b54e-47bb-bd34-aa4dd54b43e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22588,61979683-e235-4d6d-8875-c501d4df7b62,LIST_ACCOUNTS,xs2aListAccounts,true -22589,61979683-e235-4d6d-8875-c501d4df7b62,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22589,61979683-e235-4d6d-8875-c501d4df7b62,LIST_TRANSACTIONS,xs2aListTransactions,true 22590,61979683-e235-4d6d-8875-c501d4df7b62,AUTHORIZATION,,true 22591,61979683-e235-4d6d-8875-c501d4df7b62,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22592,61979683-e235-4d6d-8875-c501d4df7b62,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22593,61979683-e235-4d6d-8875-c501d4df7b62,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22594,f684e131-f1d8-4ff7-bdb3-867d79b865ed,LIST_ACCOUNTS,hbciListAccounts,false -22595,f684e131-f1d8-4ff7-bdb3-867d79b865ed,LIST_TRANSACTIONS,hbciListTransactions,false -22596,f684e131-f1d8-4ff7-bdb3-867d79b865ed,AUTHORIZATION,,false -22597,f684e131-f1d8-4ff7-bdb3-867d79b865ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22598,f684e131-f1d8-4ff7-bdb3-867d79b865ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22599,f684e131-f1d8-4ff7-bdb3-867d79b865ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22594,14a0bceb-8b30-4949-9982-f09a64ce5b31,LIST_ACCOUNTS,hbciListAccounts,false +22595,14a0bceb-8b30-4949-9982-f09a64ce5b31,LIST_TRANSACTIONS,hbciListTransactions,false +22596,14a0bceb-8b30-4949-9982-f09a64ce5b31,AUTHORIZATION,,false +22597,14a0bceb-8b30-4949-9982-f09a64ce5b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22598,14a0bceb-8b30-4949-9982-f09a64ce5b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22599,14a0bceb-8b30-4949-9982-f09a64ce5b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22600,bec29652-d2f2-4a45-ab96-dee12f065c45,LIST_ACCOUNTS,xs2aListAccounts,true -22601,bec29652-d2f2-4a45-ab96-dee12f065c45,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22601,bec29652-d2f2-4a45-ab96-dee12f065c45,LIST_TRANSACTIONS,xs2aListTransactions,true 22602,bec29652-d2f2-4a45-ab96-dee12f065c45,AUTHORIZATION,,true 22603,bec29652-d2f2-4a45-ab96-dee12f065c45,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22604,bec29652-d2f2-4a45-ab96-dee12f065c45,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22605,bec29652-d2f2-4a45-ab96-dee12f065c45,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22606,fc5eb5ae-c54d-4daa-91b2-d82602a1634b,LIST_ACCOUNTS,hbciListAccounts,false -22607,fc5eb5ae-c54d-4daa-91b2-d82602a1634b,LIST_TRANSACTIONS,hbciListTransactions,false -22608,fc5eb5ae-c54d-4daa-91b2-d82602a1634b,AUTHORIZATION,,false -22609,fc5eb5ae-c54d-4daa-91b2-d82602a1634b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22610,fc5eb5ae-c54d-4daa-91b2-d82602a1634b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22611,fc5eb5ae-c54d-4daa-91b2-d82602a1634b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22606,c343148a-2580-4a37-804f-a7432d730d48,LIST_ACCOUNTS,hbciListAccounts,false +22607,c343148a-2580-4a37-804f-a7432d730d48,LIST_TRANSACTIONS,hbciListTransactions,false +22608,c343148a-2580-4a37-804f-a7432d730d48,AUTHORIZATION,,false +22609,c343148a-2580-4a37-804f-a7432d730d48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22610,c343148a-2580-4a37-804f-a7432d730d48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22611,c343148a-2580-4a37-804f-a7432d730d48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22612,5b9e0efc-0349-48ac-bcf2-80a9efade265,LIST_ACCOUNTS,xs2aListAccounts,true -22613,5b9e0efc-0349-48ac-bcf2-80a9efade265,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22613,5b9e0efc-0349-48ac-bcf2-80a9efade265,LIST_TRANSACTIONS,xs2aListTransactions,true 22614,5b9e0efc-0349-48ac-bcf2-80a9efade265,AUTHORIZATION,,true 22615,5b9e0efc-0349-48ac-bcf2-80a9efade265,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22616,5b9e0efc-0349-48ac-bcf2-80a9efade265,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22617,5b9e0efc-0349-48ac-bcf2-80a9efade265,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22618,4b0a6056-1011-44dc-a49c-ede034993b8a,LIST_ACCOUNTS,hbciListAccounts,false -22619,4b0a6056-1011-44dc-a49c-ede034993b8a,LIST_TRANSACTIONS,hbciListTransactions,false -22620,4b0a6056-1011-44dc-a49c-ede034993b8a,AUTHORIZATION,,false -22621,4b0a6056-1011-44dc-a49c-ede034993b8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22622,4b0a6056-1011-44dc-a49c-ede034993b8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22623,4b0a6056-1011-44dc-a49c-ede034993b8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22618,61fa6906-5a95-4c6c-9408-4a5474ea66f6,LIST_ACCOUNTS,hbciListAccounts,false +22619,61fa6906-5a95-4c6c-9408-4a5474ea66f6,LIST_TRANSACTIONS,hbciListTransactions,false +22620,61fa6906-5a95-4c6c-9408-4a5474ea66f6,AUTHORIZATION,,false +22621,61fa6906-5a95-4c6c-9408-4a5474ea66f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22622,61fa6906-5a95-4c6c-9408-4a5474ea66f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22623,61fa6906-5a95-4c6c-9408-4a5474ea66f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22624,82268f61-a197-4167-ad54-a12b28e9820e,LIST_ACCOUNTS,xs2aListAccounts,true -22625,82268f61-a197-4167-ad54-a12b28e9820e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22625,82268f61-a197-4167-ad54-a12b28e9820e,LIST_TRANSACTIONS,xs2aListTransactions,true 22626,82268f61-a197-4167-ad54-a12b28e9820e,AUTHORIZATION,,true 22627,82268f61-a197-4167-ad54-a12b28e9820e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22628,82268f61-a197-4167-ad54-a12b28e9820e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22629,82268f61-a197-4167-ad54-a12b28e9820e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22630,32e21492-e515-46fc-b69a-fadcaf1e7d5c,LIST_ACCOUNTS,hbciListAccounts,false -22631,32e21492-e515-46fc-b69a-fadcaf1e7d5c,LIST_TRANSACTIONS,hbciListTransactions,false -22632,32e21492-e515-46fc-b69a-fadcaf1e7d5c,AUTHORIZATION,,false -22633,32e21492-e515-46fc-b69a-fadcaf1e7d5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22634,32e21492-e515-46fc-b69a-fadcaf1e7d5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22635,32e21492-e515-46fc-b69a-fadcaf1e7d5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22630,41c0251d-90ab-4df7-82cf-433b77ab364d,LIST_ACCOUNTS,hbciListAccounts,false +22631,41c0251d-90ab-4df7-82cf-433b77ab364d,LIST_TRANSACTIONS,hbciListTransactions,false +22632,41c0251d-90ab-4df7-82cf-433b77ab364d,AUTHORIZATION,,false +22633,41c0251d-90ab-4df7-82cf-433b77ab364d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22634,41c0251d-90ab-4df7-82cf-433b77ab364d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22635,41c0251d-90ab-4df7-82cf-433b77ab364d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22636,6e832832-640a-4d5d-acd7-98531f18089b,LIST_ACCOUNTS,xs2aListAccounts,true -22637,6e832832-640a-4d5d-acd7-98531f18089b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22637,6e832832-640a-4d5d-acd7-98531f18089b,LIST_TRANSACTIONS,xs2aListTransactions,true 22638,6e832832-640a-4d5d-acd7-98531f18089b,AUTHORIZATION,,true 22639,6e832832-640a-4d5d-acd7-98531f18089b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22640,6e832832-640a-4d5d-acd7-98531f18089b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22641,6e832832-640a-4d5d-acd7-98531f18089b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22642,c1604540-10ab-42ba-99da-502d89218d2f,LIST_ACCOUNTS,hbciListAccounts,false -22643,c1604540-10ab-42ba-99da-502d89218d2f,LIST_TRANSACTIONS,hbciListTransactions,false -22644,c1604540-10ab-42ba-99da-502d89218d2f,AUTHORIZATION,,false -22645,c1604540-10ab-42ba-99da-502d89218d2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22646,c1604540-10ab-42ba-99da-502d89218d2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22647,c1604540-10ab-42ba-99da-502d89218d2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22642,b3b587e0-50b7-44b4-b137-ceb9bc156861,LIST_ACCOUNTS,hbciListAccounts,false +22643,b3b587e0-50b7-44b4-b137-ceb9bc156861,LIST_TRANSACTIONS,hbciListTransactions,false +22644,b3b587e0-50b7-44b4-b137-ceb9bc156861,AUTHORIZATION,,false +22645,b3b587e0-50b7-44b4-b137-ceb9bc156861,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22646,b3b587e0-50b7-44b4-b137-ceb9bc156861,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22647,b3b587e0-50b7-44b4-b137-ceb9bc156861,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22648,6e178e2f-55f8-4274-9af6-b60d522c37dd,LIST_ACCOUNTS,xs2aListAccounts,true -22649,6e178e2f-55f8-4274-9af6-b60d522c37dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22649,6e178e2f-55f8-4274-9af6-b60d522c37dd,LIST_TRANSACTIONS,xs2aListTransactions,true 22650,6e178e2f-55f8-4274-9af6-b60d522c37dd,AUTHORIZATION,,true 22651,6e178e2f-55f8-4274-9af6-b60d522c37dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22652,6e178e2f-55f8-4274-9af6-b60d522c37dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22653,6e178e2f-55f8-4274-9af6-b60d522c37dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22654,66530680-311d-4689-9ddf-60d417caa9b2,LIST_ACCOUNTS,hbciListAccounts,false -22655,66530680-311d-4689-9ddf-60d417caa9b2,LIST_TRANSACTIONS,hbciListTransactions,false -22656,66530680-311d-4689-9ddf-60d417caa9b2,AUTHORIZATION,,false -22657,66530680-311d-4689-9ddf-60d417caa9b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22658,66530680-311d-4689-9ddf-60d417caa9b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22659,66530680-311d-4689-9ddf-60d417caa9b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22654,14920319-0fed-453a-9dc7-06e81ea8489b,LIST_ACCOUNTS,hbciListAccounts,false +22655,14920319-0fed-453a-9dc7-06e81ea8489b,LIST_TRANSACTIONS,hbciListTransactions,false +22656,14920319-0fed-453a-9dc7-06e81ea8489b,AUTHORIZATION,,false +22657,14920319-0fed-453a-9dc7-06e81ea8489b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22658,14920319-0fed-453a-9dc7-06e81ea8489b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22659,14920319-0fed-453a-9dc7-06e81ea8489b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22660,ceb1cb1e-dbf7-4f5f-9585-6fe25b163630,LIST_ACCOUNTS,xs2aListAccounts,true -22661,ceb1cb1e-dbf7-4f5f-9585-6fe25b163630,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22661,ceb1cb1e-dbf7-4f5f-9585-6fe25b163630,LIST_TRANSACTIONS,xs2aListTransactions,true 22662,ceb1cb1e-dbf7-4f5f-9585-6fe25b163630,AUTHORIZATION,,true 22663,ceb1cb1e-dbf7-4f5f-9585-6fe25b163630,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22664,ceb1cb1e-dbf7-4f5f-9585-6fe25b163630,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22665,ceb1cb1e-dbf7-4f5f-9585-6fe25b163630,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22666,fe15e680-4024-4b9a-8561-4877f780e6d3,LIST_ACCOUNTS,hbciListAccounts,false -22667,fe15e680-4024-4b9a-8561-4877f780e6d3,LIST_TRANSACTIONS,hbciListTransactions,false -22668,fe15e680-4024-4b9a-8561-4877f780e6d3,AUTHORIZATION,,false -22669,fe15e680-4024-4b9a-8561-4877f780e6d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22670,fe15e680-4024-4b9a-8561-4877f780e6d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22671,fe15e680-4024-4b9a-8561-4877f780e6d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22666,dac41ab1-50e2-49c3-878a-1fb666c1eb47,LIST_ACCOUNTS,hbciListAccounts,false +22667,dac41ab1-50e2-49c3-878a-1fb666c1eb47,LIST_TRANSACTIONS,hbciListTransactions,false +22668,dac41ab1-50e2-49c3-878a-1fb666c1eb47,AUTHORIZATION,,false +22669,dac41ab1-50e2-49c3-878a-1fb666c1eb47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22670,dac41ab1-50e2-49c3-878a-1fb666c1eb47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22671,dac41ab1-50e2-49c3-878a-1fb666c1eb47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22672,c9321d91-2a65-4654-ae65-f0df3c409382,LIST_ACCOUNTS,xs2aListAccounts,true -22673,c9321d91-2a65-4654-ae65-f0df3c409382,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22673,c9321d91-2a65-4654-ae65-f0df3c409382,LIST_TRANSACTIONS,xs2aListTransactions,true 22674,c9321d91-2a65-4654-ae65-f0df3c409382,AUTHORIZATION,,true 22675,c9321d91-2a65-4654-ae65-f0df3c409382,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22676,c9321d91-2a65-4654-ae65-f0df3c409382,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22677,c9321d91-2a65-4654-ae65-f0df3c409382,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22678,4c5fbb0c-619c-4f97-99ea-5eadb37e4a7c,LIST_ACCOUNTS,hbciListAccounts,false -22679,4c5fbb0c-619c-4f97-99ea-5eadb37e4a7c,LIST_TRANSACTIONS,hbciListTransactions,false -22680,4c5fbb0c-619c-4f97-99ea-5eadb37e4a7c,AUTHORIZATION,,false -22681,4c5fbb0c-619c-4f97-99ea-5eadb37e4a7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22682,4c5fbb0c-619c-4f97-99ea-5eadb37e4a7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22683,4c5fbb0c-619c-4f97-99ea-5eadb37e4a7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22678,9f52a87f-1586-4ef8-aa8f-89d2fcea25fb,LIST_ACCOUNTS,hbciListAccounts,false +22679,9f52a87f-1586-4ef8-aa8f-89d2fcea25fb,LIST_TRANSACTIONS,hbciListTransactions,false +22680,9f52a87f-1586-4ef8-aa8f-89d2fcea25fb,AUTHORIZATION,,false +22681,9f52a87f-1586-4ef8-aa8f-89d2fcea25fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22682,9f52a87f-1586-4ef8-aa8f-89d2fcea25fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22683,9f52a87f-1586-4ef8-aa8f-89d2fcea25fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22684,1862a8df-df66-4d28-9b5a-b35efa490a9d,LIST_ACCOUNTS,xs2aListAccounts,true -22685,1862a8df-df66-4d28-9b5a-b35efa490a9d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22685,1862a8df-df66-4d28-9b5a-b35efa490a9d,LIST_TRANSACTIONS,xs2aListTransactions,true 22686,1862a8df-df66-4d28-9b5a-b35efa490a9d,AUTHORIZATION,,true 22687,1862a8df-df66-4d28-9b5a-b35efa490a9d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22688,1862a8df-df66-4d28-9b5a-b35efa490a9d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22689,1862a8df-df66-4d28-9b5a-b35efa490a9d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22690,924c57c7-8d0c-4487-873d-c949cb8a6231,LIST_ACCOUNTS,hbciListAccounts,false -22691,924c57c7-8d0c-4487-873d-c949cb8a6231,LIST_TRANSACTIONS,hbciListTransactions,false -22692,924c57c7-8d0c-4487-873d-c949cb8a6231,AUTHORIZATION,,false -22693,924c57c7-8d0c-4487-873d-c949cb8a6231,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22694,924c57c7-8d0c-4487-873d-c949cb8a6231,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22695,924c57c7-8d0c-4487-873d-c949cb8a6231,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22690,83be4d9b-c6e5-4a06-a896-4bd4e7cbf376,LIST_ACCOUNTS,hbciListAccounts,false +22691,83be4d9b-c6e5-4a06-a896-4bd4e7cbf376,LIST_TRANSACTIONS,hbciListTransactions,false +22692,83be4d9b-c6e5-4a06-a896-4bd4e7cbf376,AUTHORIZATION,,false +22693,83be4d9b-c6e5-4a06-a896-4bd4e7cbf376,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22694,83be4d9b-c6e5-4a06-a896-4bd4e7cbf376,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22695,83be4d9b-c6e5-4a06-a896-4bd4e7cbf376,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22696,3bc2473b-9cdf-443c-b4ef-b4db849ebc3d,LIST_ACCOUNTS,xs2aListAccounts,true -22697,3bc2473b-9cdf-443c-b4ef-b4db849ebc3d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22697,3bc2473b-9cdf-443c-b4ef-b4db849ebc3d,LIST_TRANSACTIONS,xs2aListTransactions,true 22698,3bc2473b-9cdf-443c-b4ef-b4db849ebc3d,AUTHORIZATION,,true 22699,3bc2473b-9cdf-443c-b4ef-b4db849ebc3d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22700,3bc2473b-9cdf-443c-b4ef-b4db849ebc3d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22701,3bc2473b-9cdf-443c-b4ef-b4db849ebc3d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22702,f90df2e0-512e-4bfa-a316-8bd3b061e46e,LIST_ACCOUNTS,hbciListAccounts,false -22703,f90df2e0-512e-4bfa-a316-8bd3b061e46e,LIST_TRANSACTIONS,hbciListTransactions,false -22704,f90df2e0-512e-4bfa-a316-8bd3b061e46e,AUTHORIZATION,,false -22705,f90df2e0-512e-4bfa-a316-8bd3b061e46e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22706,f90df2e0-512e-4bfa-a316-8bd3b061e46e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22707,f90df2e0-512e-4bfa-a316-8bd3b061e46e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22702,83ff2930-373a-4292-a60b-a9851b0012f4,LIST_ACCOUNTS,hbciListAccounts,false +22703,83ff2930-373a-4292-a60b-a9851b0012f4,LIST_TRANSACTIONS,hbciListTransactions,false +22704,83ff2930-373a-4292-a60b-a9851b0012f4,AUTHORIZATION,,false +22705,83ff2930-373a-4292-a60b-a9851b0012f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22706,83ff2930-373a-4292-a60b-a9851b0012f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22707,83ff2930-373a-4292-a60b-a9851b0012f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22708,b395c2f1-824e-4c6d-be79-282b7359bb2d,LIST_ACCOUNTS,xs2aListAccounts,true -22709,b395c2f1-824e-4c6d-be79-282b7359bb2d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22709,b395c2f1-824e-4c6d-be79-282b7359bb2d,LIST_TRANSACTIONS,xs2aListTransactions,true 22710,b395c2f1-824e-4c6d-be79-282b7359bb2d,AUTHORIZATION,,true 22711,b395c2f1-824e-4c6d-be79-282b7359bb2d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22712,b395c2f1-824e-4c6d-be79-282b7359bb2d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22713,b395c2f1-824e-4c6d-be79-282b7359bb2d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22714,2cbe05f8-81a5-4e8f-abb7-3d3117d2e0c9,LIST_ACCOUNTS,hbciListAccounts,false -22715,2cbe05f8-81a5-4e8f-abb7-3d3117d2e0c9,LIST_TRANSACTIONS,hbciListTransactions,false -22716,2cbe05f8-81a5-4e8f-abb7-3d3117d2e0c9,AUTHORIZATION,,false -22717,2cbe05f8-81a5-4e8f-abb7-3d3117d2e0c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22718,2cbe05f8-81a5-4e8f-abb7-3d3117d2e0c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22719,2cbe05f8-81a5-4e8f-abb7-3d3117d2e0c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22714,9fad28b4-f4e9-4d3b-8eee-d5dac04acb22,LIST_ACCOUNTS,hbciListAccounts,false +22715,9fad28b4-f4e9-4d3b-8eee-d5dac04acb22,LIST_TRANSACTIONS,hbciListTransactions,false +22716,9fad28b4-f4e9-4d3b-8eee-d5dac04acb22,AUTHORIZATION,,false +22717,9fad28b4-f4e9-4d3b-8eee-d5dac04acb22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22718,9fad28b4-f4e9-4d3b-8eee-d5dac04acb22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22719,9fad28b4-f4e9-4d3b-8eee-d5dac04acb22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22720,f8f6233f-3738-45b9-9305-5a4aa14603d7,LIST_ACCOUNTS,xs2aListAccounts,true -22721,f8f6233f-3738-45b9-9305-5a4aa14603d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22721,f8f6233f-3738-45b9-9305-5a4aa14603d7,LIST_TRANSACTIONS,xs2aListTransactions,true 22722,f8f6233f-3738-45b9-9305-5a4aa14603d7,AUTHORIZATION,,true 22723,f8f6233f-3738-45b9-9305-5a4aa14603d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22724,f8f6233f-3738-45b9-9305-5a4aa14603d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22725,f8f6233f-3738-45b9-9305-5a4aa14603d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22726,8e07214d-18a7-4f67-96dc-0bc990ecda98,LIST_ACCOUNTS,hbciListAccounts,false -22727,8e07214d-18a7-4f67-96dc-0bc990ecda98,LIST_TRANSACTIONS,hbciListTransactions,false -22728,8e07214d-18a7-4f67-96dc-0bc990ecda98,AUTHORIZATION,,false -22729,8e07214d-18a7-4f67-96dc-0bc990ecda98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22730,8e07214d-18a7-4f67-96dc-0bc990ecda98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22731,8e07214d-18a7-4f67-96dc-0bc990ecda98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22726,dcba8910-a86c-42de-b7ab-d155689ca1b7,LIST_ACCOUNTS,hbciListAccounts,false +22727,dcba8910-a86c-42de-b7ab-d155689ca1b7,LIST_TRANSACTIONS,hbciListTransactions,false +22728,dcba8910-a86c-42de-b7ab-d155689ca1b7,AUTHORIZATION,,false +22729,dcba8910-a86c-42de-b7ab-d155689ca1b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22730,dcba8910-a86c-42de-b7ab-d155689ca1b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22731,dcba8910-a86c-42de-b7ab-d155689ca1b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22732,0744dac4-9db6-4b83-915b-8a1523bb8b90,LIST_ACCOUNTS,xs2aListAccounts,true -22733,0744dac4-9db6-4b83-915b-8a1523bb8b90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22733,0744dac4-9db6-4b83-915b-8a1523bb8b90,LIST_TRANSACTIONS,xs2aListTransactions,true 22734,0744dac4-9db6-4b83-915b-8a1523bb8b90,AUTHORIZATION,,true 22735,0744dac4-9db6-4b83-915b-8a1523bb8b90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22736,0744dac4-9db6-4b83-915b-8a1523bb8b90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22737,0744dac4-9db6-4b83-915b-8a1523bb8b90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22738,25c74df4-caed-4f2c-b591-1d264fda9901,LIST_ACCOUNTS,hbciListAccounts,false -22739,25c74df4-caed-4f2c-b591-1d264fda9901,LIST_TRANSACTIONS,hbciListTransactions,false -22740,25c74df4-caed-4f2c-b591-1d264fda9901,AUTHORIZATION,,false -22741,25c74df4-caed-4f2c-b591-1d264fda9901,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22742,25c74df4-caed-4f2c-b591-1d264fda9901,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22743,25c74df4-caed-4f2c-b591-1d264fda9901,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22738,b60b8d60-f4b1-4526-a0e3-5cfcf45e3a87,LIST_ACCOUNTS,hbciListAccounts,false +22739,b60b8d60-f4b1-4526-a0e3-5cfcf45e3a87,LIST_TRANSACTIONS,hbciListTransactions,false +22740,b60b8d60-f4b1-4526-a0e3-5cfcf45e3a87,AUTHORIZATION,,false +22741,b60b8d60-f4b1-4526-a0e3-5cfcf45e3a87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22742,b60b8d60-f4b1-4526-a0e3-5cfcf45e3a87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22743,b60b8d60-f4b1-4526-a0e3-5cfcf45e3a87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22744,08ccba18-752b-4306-802b-69acc2341321,LIST_ACCOUNTS,xs2aListAccounts,true -22745,08ccba18-752b-4306-802b-69acc2341321,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22745,08ccba18-752b-4306-802b-69acc2341321,LIST_TRANSACTIONS,xs2aListTransactions,true 22746,08ccba18-752b-4306-802b-69acc2341321,AUTHORIZATION,,true 22747,08ccba18-752b-4306-802b-69acc2341321,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22748,08ccba18-752b-4306-802b-69acc2341321,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22749,08ccba18-752b-4306-802b-69acc2341321,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22750,d322f03f-c9ea-4aea-a531-1ce4d187f7b0,LIST_ACCOUNTS,hbciListAccounts,false -22751,d322f03f-c9ea-4aea-a531-1ce4d187f7b0,LIST_TRANSACTIONS,hbciListTransactions,false -22752,d322f03f-c9ea-4aea-a531-1ce4d187f7b0,AUTHORIZATION,,false -22753,d322f03f-c9ea-4aea-a531-1ce4d187f7b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22754,d322f03f-c9ea-4aea-a531-1ce4d187f7b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22755,d322f03f-c9ea-4aea-a531-1ce4d187f7b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22750,1f1abb08-1a56-462e-a1cd-bdaa4a27d4fe,LIST_ACCOUNTS,hbciListAccounts,false +22751,1f1abb08-1a56-462e-a1cd-bdaa4a27d4fe,LIST_TRANSACTIONS,hbciListTransactions,false +22752,1f1abb08-1a56-462e-a1cd-bdaa4a27d4fe,AUTHORIZATION,,false +22753,1f1abb08-1a56-462e-a1cd-bdaa4a27d4fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22754,1f1abb08-1a56-462e-a1cd-bdaa4a27d4fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22755,1f1abb08-1a56-462e-a1cd-bdaa4a27d4fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22756,b7bc53e5-1755-414e-a0af-83ad7aedb2e3,LIST_ACCOUNTS,xs2aListAccounts,true -22757,b7bc53e5-1755-414e-a0af-83ad7aedb2e3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22757,b7bc53e5-1755-414e-a0af-83ad7aedb2e3,LIST_TRANSACTIONS,xs2aListTransactions,true 22758,b7bc53e5-1755-414e-a0af-83ad7aedb2e3,AUTHORIZATION,,true 22759,b7bc53e5-1755-414e-a0af-83ad7aedb2e3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22760,b7bc53e5-1755-414e-a0af-83ad7aedb2e3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22761,b7bc53e5-1755-414e-a0af-83ad7aedb2e3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22762,aa77b87e-5079-4358-ac08-a236a7599dcb,LIST_ACCOUNTS,hbciListAccounts,false -22763,aa77b87e-5079-4358-ac08-a236a7599dcb,LIST_TRANSACTIONS,hbciListTransactions,false -22764,aa77b87e-5079-4358-ac08-a236a7599dcb,AUTHORIZATION,,false -22765,aa77b87e-5079-4358-ac08-a236a7599dcb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22766,aa77b87e-5079-4358-ac08-a236a7599dcb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22767,aa77b87e-5079-4358-ac08-a236a7599dcb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22762,e90af125-091a-4016-ba0f-3c7545db9b07,LIST_ACCOUNTS,hbciListAccounts,false +22763,e90af125-091a-4016-ba0f-3c7545db9b07,LIST_TRANSACTIONS,hbciListTransactions,false +22764,e90af125-091a-4016-ba0f-3c7545db9b07,AUTHORIZATION,,false +22765,e90af125-091a-4016-ba0f-3c7545db9b07,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22766,e90af125-091a-4016-ba0f-3c7545db9b07,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22767,e90af125-091a-4016-ba0f-3c7545db9b07,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22768,28fcb5b0-a283-4055-b876-8fe96d81e47b,LIST_ACCOUNTS,xs2aListAccounts,true -22769,28fcb5b0-a283-4055-b876-8fe96d81e47b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22769,28fcb5b0-a283-4055-b876-8fe96d81e47b,LIST_TRANSACTIONS,xs2aListTransactions,true 22770,28fcb5b0-a283-4055-b876-8fe96d81e47b,AUTHORIZATION,,true 22771,28fcb5b0-a283-4055-b876-8fe96d81e47b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22772,28fcb5b0-a283-4055-b876-8fe96d81e47b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22773,28fcb5b0-a283-4055-b876-8fe96d81e47b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22774,ece461a2-2361-41f3-bc97-410d93272b7e,LIST_ACCOUNTS,hbciListAccounts,false -22775,ece461a2-2361-41f3-bc97-410d93272b7e,LIST_TRANSACTIONS,hbciListTransactions,false -22776,ece461a2-2361-41f3-bc97-410d93272b7e,AUTHORIZATION,,false -22777,ece461a2-2361-41f3-bc97-410d93272b7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22778,ece461a2-2361-41f3-bc97-410d93272b7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22779,ece461a2-2361-41f3-bc97-410d93272b7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22774,b6884b6f-1565-4449-96dc-f5a0741c79b0,LIST_ACCOUNTS,hbciListAccounts,false +22775,b6884b6f-1565-4449-96dc-f5a0741c79b0,LIST_TRANSACTIONS,hbciListTransactions,false +22776,b6884b6f-1565-4449-96dc-f5a0741c79b0,AUTHORIZATION,,false +22777,b6884b6f-1565-4449-96dc-f5a0741c79b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22778,b6884b6f-1565-4449-96dc-f5a0741c79b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22779,b6884b6f-1565-4449-96dc-f5a0741c79b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22780,1826782b-0b36-429d-82f1-0aea8763d873,LIST_ACCOUNTS,xs2aListAccounts,true -22781,1826782b-0b36-429d-82f1-0aea8763d873,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22781,1826782b-0b36-429d-82f1-0aea8763d873,LIST_TRANSACTIONS,xs2aListTransactions,true 22782,1826782b-0b36-429d-82f1-0aea8763d873,AUTHORIZATION,,true 22783,1826782b-0b36-429d-82f1-0aea8763d873,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22784,1826782b-0b36-429d-82f1-0aea8763d873,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22785,1826782b-0b36-429d-82f1-0aea8763d873,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22786,aee89a3d-0c5b-450e-b534-58c793f53672,LIST_ACCOUNTS,hbciListAccounts,false -22787,aee89a3d-0c5b-450e-b534-58c793f53672,LIST_TRANSACTIONS,hbciListTransactions,false -22788,aee89a3d-0c5b-450e-b534-58c793f53672,AUTHORIZATION,,false -22789,aee89a3d-0c5b-450e-b534-58c793f53672,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22790,aee89a3d-0c5b-450e-b534-58c793f53672,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22791,aee89a3d-0c5b-450e-b534-58c793f53672,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22786,ba401d00-5d4a-49f8-8268-d52e01ca2a5b,LIST_ACCOUNTS,hbciListAccounts,false +22787,ba401d00-5d4a-49f8-8268-d52e01ca2a5b,LIST_TRANSACTIONS,hbciListTransactions,false +22788,ba401d00-5d4a-49f8-8268-d52e01ca2a5b,AUTHORIZATION,,false +22789,ba401d00-5d4a-49f8-8268-d52e01ca2a5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22790,ba401d00-5d4a-49f8-8268-d52e01ca2a5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22791,ba401d00-5d4a-49f8-8268-d52e01ca2a5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22792,28b9abd4-04dd-49b8-aa3e-e2854fb46fa5,LIST_ACCOUNTS,xs2aListAccounts,true -22793,28b9abd4-04dd-49b8-aa3e-e2854fb46fa5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22793,28b9abd4-04dd-49b8-aa3e-e2854fb46fa5,LIST_TRANSACTIONS,xs2aListTransactions,true 22794,28b9abd4-04dd-49b8-aa3e-e2854fb46fa5,AUTHORIZATION,,true 22795,28b9abd4-04dd-49b8-aa3e-e2854fb46fa5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22796,28b9abd4-04dd-49b8-aa3e-e2854fb46fa5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22797,28b9abd4-04dd-49b8-aa3e-e2854fb46fa5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22798,cb6f3059-29e2-4bea-baca-181fbbca6891,LIST_ACCOUNTS,hbciListAccounts,false -22799,cb6f3059-29e2-4bea-baca-181fbbca6891,LIST_TRANSACTIONS,hbciListTransactions,false -22800,cb6f3059-29e2-4bea-baca-181fbbca6891,AUTHORIZATION,,false -22801,cb6f3059-29e2-4bea-baca-181fbbca6891,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22802,cb6f3059-29e2-4bea-baca-181fbbca6891,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22803,cb6f3059-29e2-4bea-baca-181fbbca6891,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22798,399f4a46-c463-4eb6-bef5-55fac7e993db,LIST_ACCOUNTS,hbciListAccounts,false +22799,399f4a46-c463-4eb6-bef5-55fac7e993db,LIST_TRANSACTIONS,hbciListTransactions,false +22800,399f4a46-c463-4eb6-bef5-55fac7e993db,AUTHORIZATION,,false +22801,399f4a46-c463-4eb6-bef5-55fac7e993db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22802,399f4a46-c463-4eb6-bef5-55fac7e993db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22803,399f4a46-c463-4eb6-bef5-55fac7e993db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22804,85cdac03-6058-48df-be0a-3202ba16d081,LIST_ACCOUNTS,xs2aListAccounts,true -22805,85cdac03-6058-48df-be0a-3202ba16d081,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22805,85cdac03-6058-48df-be0a-3202ba16d081,LIST_TRANSACTIONS,xs2aListTransactions,true 22806,85cdac03-6058-48df-be0a-3202ba16d081,AUTHORIZATION,,true 22807,85cdac03-6058-48df-be0a-3202ba16d081,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22808,85cdac03-6058-48df-be0a-3202ba16d081,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22809,85cdac03-6058-48df-be0a-3202ba16d081,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22810,6fd90246-9516-472e-9788-e8895ec1a350,LIST_ACCOUNTS,hbciListAccounts,false -22811,6fd90246-9516-472e-9788-e8895ec1a350,LIST_TRANSACTIONS,hbciListTransactions,false -22812,6fd90246-9516-472e-9788-e8895ec1a350,AUTHORIZATION,,false -22813,6fd90246-9516-472e-9788-e8895ec1a350,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22814,6fd90246-9516-472e-9788-e8895ec1a350,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22815,6fd90246-9516-472e-9788-e8895ec1a350,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22810,d09c3a05-de85-453e-8e4f-ee2d6ee5cb4a,LIST_ACCOUNTS,hbciListAccounts,false +22811,d09c3a05-de85-453e-8e4f-ee2d6ee5cb4a,LIST_TRANSACTIONS,hbciListTransactions,false +22812,d09c3a05-de85-453e-8e4f-ee2d6ee5cb4a,AUTHORIZATION,,false +22813,d09c3a05-de85-453e-8e4f-ee2d6ee5cb4a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22814,d09c3a05-de85-453e-8e4f-ee2d6ee5cb4a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22815,d09c3a05-de85-453e-8e4f-ee2d6ee5cb4a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22816,386eb63b-47a3-4e80-97a9-81f071e4b2c8,LIST_ACCOUNTS,xs2aListAccounts,true -22817,386eb63b-47a3-4e80-97a9-81f071e4b2c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22817,386eb63b-47a3-4e80-97a9-81f071e4b2c8,LIST_TRANSACTIONS,xs2aListTransactions,true 22818,386eb63b-47a3-4e80-97a9-81f071e4b2c8,AUTHORIZATION,,true 22819,386eb63b-47a3-4e80-97a9-81f071e4b2c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22820,386eb63b-47a3-4e80-97a9-81f071e4b2c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22821,386eb63b-47a3-4e80-97a9-81f071e4b2c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22822,c96e4b6c-18c5-4deb-abe9-29639e8968f3,LIST_ACCOUNTS,hbciListAccounts,false -22823,c96e4b6c-18c5-4deb-abe9-29639e8968f3,LIST_TRANSACTIONS,hbciListTransactions,false -22824,c96e4b6c-18c5-4deb-abe9-29639e8968f3,AUTHORIZATION,,false -22825,c96e4b6c-18c5-4deb-abe9-29639e8968f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22826,c96e4b6c-18c5-4deb-abe9-29639e8968f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22827,c96e4b6c-18c5-4deb-abe9-29639e8968f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22822,8d0da4f1-1ca6-42bb-9f23-e0e5cddccabf,LIST_ACCOUNTS,hbciListAccounts,false +22823,8d0da4f1-1ca6-42bb-9f23-e0e5cddccabf,LIST_TRANSACTIONS,hbciListTransactions,false +22824,8d0da4f1-1ca6-42bb-9f23-e0e5cddccabf,AUTHORIZATION,,false +22825,8d0da4f1-1ca6-42bb-9f23-e0e5cddccabf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22826,8d0da4f1-1ca6-42bb-9f23-e0e5cddccabf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22827,8d0da4f1-1ca6-42bb-9f23-e0e5cddccabf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22828,a3d06f44-4310-42cd-8eff-656e7a921583,LIST_ACCOUNTS,xs2aListAccounts,true -22829,a3d06f44-4310-42cd-8eff-656e7a921583,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22829,a3d06f44-4310-42cd-8eff-656e7a921583,LIST_TRANSACTIONS,xs2aListTransactions,true 22830,a3d06f44-4310-42cd-8eff-656e7a921583,AUTHORIZATION,,true 22831,a3d06f44-4310-42cd-8eff-656e7a921583,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22832,a3d06f44-4310-42cd-8eff-656e7a921583,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22833,a3d06f44-4310-42cd-8eff-656e7a921583,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22834,e49164c8-f14f-498d-8e4a-bd4683e323bc,LIST_ACCOUNTS,hbciListAccounts,false -22835,e49164c8-f14f-498d-8e4a-bd4683e323bc,LIST_TRANSACTIONS,hbciListTransactions,false -22836,e49164c8-f14f-498d-8e4a-bd4683e323bc,AUTHORIZATION,,false -22837,e49164c8-f14f-498d-8e4a-bd4683e323bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22838,e49164c8-f14f-498d-8e4a-bd4683e323bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22839,e49164c8-f14f-498d-8e4a-bd4683e323bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22834,66e52e8e-d713-4a43-8b7a-317539fefa3c,LIST_ACCOUNTS,hbciListAccounts,false +22835,66e52e8e-d713-4a43-8b7a-317539fefa3c,LIST_TRANSACTIONS,hbciListTransactions,false +22836,66e52e8e-d713-4a43-8b7a-317539fefa3c,AUTHORIZATION,,false +22837,66e52e8e-d713-4a43-8b7a-317539fefa3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22838,66e52e8e-d713-4a43-8b7a-317539fefa3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22839,66e52e8e-d713-4a43-8b7a-317539fefa3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22840,df55cc21-b0f5-41ab-9873-a98cf3b8b028,LIST_ACCOUNTS,xs2aListAccounts,true -22841,df55cc21-b0f5-41ab-9873-a98cf3b8b028,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22841,df55cc21-b0f5-41ab-9873-a98cf3b8b028,LIST_TRANSACTIONS,xs2aListTransactions,true 22842,df55cc21-b0f5-41ab-9873-a98cf3b8b028,AUTHORIZATION,,true 22843,df55cc21-b0f5-41ab-9873-a98cf3b8b028,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22844,df55cc21-b0f5-41ab-9873-a98cf3b8b028,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22845,df55cc21-b0f5-41ab-9873-a98cf3b8b028,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22846,a96310d7-e1ef-450f-9773-23200b6235f9,LIST_ACCOUNTS,hbciListAccounts,false -22847,a96310d7-e1ef-450f-9773-23200b6235f9,LIST_TRANSACTIONS,hbciListTransactions,false -22848,a96310d7-e1ef-450f-9773-23200b6235f9,AUTHORIZATION,,false -22849,a96310d7-e1ef-450f-9773-23200b6235f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22850,a96310d7-e1ef-450f-9773-23200b6235f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22851,a96310d7-e1ef-450f-9773-23200b6235f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22846,d1dfc90b-ae17-408e-9f3a-f88b0b7d2681,LIST_ACCOUNTS,hbciListAccounts,false +22847,d1dfc90b-ae17-408e-9f3a-f88b0b7d2681,LIST_TRANSACTIONS,hbciListTransactions,false +22848,d1dfc90b-ae17-408e-9f3a-f88b0b7d2681,AUTHORIZATION,,false +22849,d1dfc90b-ae17-408e-9f3a-f88b0b7d2681,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22850,d1dfc90b-ae17-408e-9f3a-f88b0b7d2681,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22851,d1dfc90b-ae17-408e-9f3a-f88b0b7d2681,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22852,ed624d6c-9bb3-41ec-9149-58a4d635cdc4,LIST_ACCOUNTS,xs2aListAccounts,true -22853,ed624d6c-9bb3-41ec-9149-58a4d635cdc4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22853,ed624d6c-9bb3-41ec-9149-58a4d635cdc4,LIST_TRANSACTIONS,xs2aListTransactions,true 22854,ed624d6c-9bb3-41ec-9149-58a4d635cdc4,AUTHORIZATION,,true 22855,ed624d6c-9bb3-41ec-9149-58a4d635cdc4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22856,ed624d6c-9bb3-41ec-9149-58a4d635cdc4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22857,ed624d6c-9bb3-41ec-9149-58a4d635cdc4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22858,2b78e184-996a-45c3-84cb-476712504f0d,LIST_ACCOUNTS,hbciListAccounts,false -22859,2b78e184-996a-45c3-84cb-476712504f0d,LIST_TRANSACTIONS,hbciListTransactions,false -22860,2b78e184-996a-45c3-84cb-476712504f0d,AUTHORIZATION,,false -22861,2b78e184-996a-45c3-84cb-476712504f0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22862,2b78e184-996a-45c3-84cb-476712504f0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22863,2b78e184-996a-45c3-84cb-476712504f0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22858,3d15826c-2d74-459c-bc6b-385ce3358288,LIST_ACCOUNTS,hbciListAccounts,false +22859,3d15826c-2d74-459c-bc6b-385ce3358288,LIST_TRANSACTIONS,hbciListTransactions,false +22860,3d15826c-2d74-459c-bc6b-385ce3358288,AUTHORIZATION,,false +22861,3d15826c-2d74-459c-bc6b-385ce3358288,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22862,3d15826c-2d74-459c-bc6b-385ce3358288,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22863,3d15826c-2d74-459c-bc6b-385ce3358288,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22864,10cae5c3-4219-47f1-b648-2b9254090a6a,LIST_ACCOUNTS,xs2aListAccounts,true -22865,10cae5c3-4219-47f1-b648-2b9254090a6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22865,10cae5c3-4219-47f1-b648-2b9254090a6a,LIST_TRANSACTIONS,xs2aListTransactions,true 22866,10cae5c3-4219-47f1-b648-2b9254090a6a,AUTHORIZATION,,true 22867,10cae5c3-4219-47f1-b648-2b9254090a6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22868,10cae5c3-4219-47f1-b648-2b9254090a6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22869,10cae5c3-4219-47f1-b648-2b9254090a6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22870,d729a012-6d15-4aee-863f-bf9c7eb7ab6d,LIST_ACCOUNTS,hbciListAccounts,false -22871,d729a012-6d15-4aee-863f-bf9c7eb7ab6d,LIST_TRANSACTIONS,hbciListTransactions,false -22872,d729a012-6d15-4aee-863f-bf9c7eb7ab6d,AUTHORIZATION,,false -22873,d729a012-6d15-4aee-863f-bf9c7eb7ab6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22874,d729a012-6d15-4aee-863f-bf9c7eb7ab6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22875,d729a012-6d15-4aee-863f-bf9c7eb7ab6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22870,d5dc28a8-39a4-4d3a-b6cc-d82b1224306c,LIST_ACCOUNTS,hbciListAccounts,false +22871,d5dc28a8-39a4-4d3a-b6cc-d82b1224306c,LIST_TRANSACTIONS,hbciListTransactions,false +22872,d5dc28a8-39a4-4d3a-b6cc-d82b1224306c,AUTHORIZATION,,false +22873,d5dc28a8-39a4-4d3a-b6cc-d82b1224306c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22874,d5dc28a8-39a4-4d3a-b6cc-d82b1224306c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22875,d5dc28a8-39a4-4d3a-b6cc-d82b1224306c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22876,2fbb362b-5d64-4181-a6fe-c94c10c00950,LIST_ACCOUNTS,xs2aListAccounts,true -22877,2fbb362b-5d64-4181-a6fe-c94c10c00950,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22877,2fbb362b-5d64-4181-a6fe-c94c10c00950,LIST_TRANSACTIONS,xs2aListTransactions,true 22878,2fbb362b-5d64-4181-a6fe-c94c10c00950,AUTHORIZATION,,true 22879,2fbb362b-5d64-4181-a6fe-c94c10c00950,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22880,2fbb362b-5d64-4181-a6fe-c94c10c00950,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22881,2fbb362b-5d64-4181-a6fe-c94c10c00950,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22882,3213c925-8f02-4b59-8f04-87740e6eec94,LIST_ACCOUNTS,hbciListAccounts,false -22883,3213c925-8f02-4b59-8f04-87740e6eec94,LIST_TRANSACTIONS,hbciListTransactions,false -22884,3213c925-8f02-4b59-8f04-87740e6eec94,AUTHORIZATION,,false -22885,3213c925-8f02-4b59-8f04-87740e6eec94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22886,3213c925-8f02-4b59-8f04-87740e6eec94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22887,3213c925-8f02-4b59-8f04-87740e6eec94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22882,720077ba-81bb-406b-9fa9-8d609ce5c129,LIST_ACCOUNTS,hbciListAccounts,false +22883,720077ba-81bb-406b-9fa9-8d609ce5c129,LIST_TRANSACTIONS,hbciListTransactions,false +22884,720077ba-81bb-406b-9fa9-8d609ce5c129,AUTHORIZATION,,false +22885,720077ba-81bb-406b-9fa9-8d609ce5c129,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22886,720077ba-81bb-406b-9fa9-8d609ce5c129,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22887,720077ba-81bb-406b-9fa9-8d609ce5c129,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22888,2fd9eccd-3246-4780-a1e4-b7deae2511a9,LIST_ACCOUNTS,xs2aListAccounts,true -22889,2fd9eccd-3246-4780-a1e4-b7deae2511a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22889,2fd9eccd-3246-4780-a1e4-b7deae2511a9,LIST_TRANSACTIONS,xs2aListTransactions,true 22890,2fd9eccd-3246-4780-a1e4-b7deae2511a9,AUTHORIZATION,,true 22891,2fd9eccd-3246-4780-a1e4-b7deae2511a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22892,2fd9eccd-3246-4780-a1e4-b7deae2511a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22893,2fd9eccd-3246-4780-a1e4-b7deae2511a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22894,861e4b01-8ec9-4c29-a537-86f86f1601c3,LIST_ACCOUNTS,hbciListAccounts,false -22895,861e4b01-8ec9-4c29-a537-86f86f1601c3,LIST_TRANSACTIONS,hbciListTransactions,false -22896,861e4b01-8ec9-4c29-a537-86f86f1601c3,AUTHORIZATION,,false -22897,861e4b01-8ec9-4c29-a537-86f86f1601c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22898,861e4b01-8ec9-4c29-a537-86f86f1601c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22899,861e4b01-8ec9-4c29-a537-86f86f1601c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22894,fd04813a-f011-4260-847d-ee989ee11999,LIST_ACCOUNTS,hbciListAccounts,false +22895,fd04813a-f011-4260-847d-ee989ee11999,LIST_TRANSACTIONS,hbciListTransactions,false +22896,fd04813a-f011-4260-847d-ee989ee11999,AUTHORIZATION,,false +22897,fd04813a-f011-4260-847d-ee989ee11999,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22898,fd04813a-f011-4260-847d-ee989ee11999,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22899,fd04813a-f011-4260-847d-ee989ee11999,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22900,c43b7882-0bde-435f-b054-f1d0c523ec83,LIST_ACCOUNTS,xs2aListAccounts,true -22901,c43b7882-0bde-435f-b054-f1d0c523ec83,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22901,c43b7882-0bde-435f-b054-f1d0c523ec83,LIST_TRANSACTIONS,xs2aListTransactions,true 22902,c43b7882-0bde-435f-b054-f1d0c523ec83,AUTHORIZATION,,true 22903,c43b7882-0bde-435f-b054-f1d0c523ec83,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22904,c43b7882-0bde-435f-b054-f1d0c523ec83,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22905,c43b7882-0bde-435f-b054-f1d0c523ec83,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22906,699ed246-d8ba-48a9-a8f1-224e472f0f2a,LIST_ACCOUNTS,hbciListAccounts,false -22907,699ed246-d8ba-48a9-a8f1-224e472f0f2a,LIST_TRANSACTIONS,hbciListTransactions,false -22908,699ed246-d8ba-48a9-a8f1-224e472f0f2a,AUTHORIZATION,,false -22909,699ed246-d8ba-48a9-a8f1-224e472f0f2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22910,699ed246-d8ba-48a9-a8f1-224e472f0f2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22911,699ed246-d8ba-48a9-a8f1-224e472f0f2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22906,96f774eb-4505-49b6-a22c-8cda2bbf1736,LIST_ACCOUNTS,hbciListAccounts,false +22907,96f774eb-4505-49b6-a22c-8cda2bbf1736,LIST_TRANSACTIONS,hbciListTransactions,false +22908,96f774eb-4505-49b6-a22c-8cda2bbf1736,AUTHORIZATION,,false +22909,96f774eb-4505-49b6-a22c-8cda2bbf1736,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22910,96f774eb-4505-49b6-a22c-8cda2bbf1736,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22911,96f774eb-4505-49b6-a22c-8cda2bbf1736,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22912,75f39892-781e-4f9e-81be-2a643ddb9cca,LIST_ACCOUNTS,xs2aListAccounts,true -22913,75f39892-781e-4f9e-81be-2a643ddb9cca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22913,75f39892-781e-4f9e-81be-2a643ddb9cca,LIST_TRANSACTIONS,xs2aListTransactions,true 22914,75f39892-781e-4f9e-81be-2a643ddb9cca,AUTHORIZATION,,true 22915,75f39892-781e-4f9e-81be-2a643ddb9cca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22916,75f39892-781e-4f9e-81be-2a643ddb9cca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22917,75f39892-781e-4f9e-81be-2a643ddb9cca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22918,a1123ff8-2304-4d28-a9c6-0ca5ea61b1dd,LIST_ACCOUNTS,hbciListAccounts,false -22919,a1123ff8-2304-4d28-a9c6-0ca5ea61b1dd,LIST_TRANSACTIONS,hbciListTransactions,false -22920,a1123ff8-2304-4d28-a9c6-0ca5ea61b1dd,AUTHORIZATION,,false -22921,a1123ff8-2304-4d28-a9c6-0ca5ea61b1dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22922,a1123ff8-2304-4d28-a9c6-0ca5ea61b1dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22923,a1123ff8-2304-4d28-a9c6-0ca5ea61b1dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22918,7b5e657c-99d6-4353-96d9-9eead8004b23,LIST_ACCOUNTS,hbciListAccounts,false +22919,7b5e657c-99d6-4353-96d9-9eead8004b23,LIST_TRANSACTIONS,hbciListTransactions,false +22920,7b5e657c-99d6-4353-96d9-9eead8004b23,AUTHORIZATION,,false +22921,7b5e657c-99d6-4353-96d9-9eead8004b23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22922,7b5e657c-99d6-4353-96d9-9eead8004b23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22923,7b5e657c-99d6-4353-96d9-9eead8004b23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22924,4ecc19ad-89dd-4359-860b-4100afe44f86,LIST_ACCOUNTS,xs2aListAccounts,true -22925,4ecc19ad-89dd-4359-860b-4100afe44f86,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22925,4ecc19ad-89dd-4359-860b-4100afe44f86,LIST_TRANSACTIONS,xs2aListTransactions,true 22926,4ecc19ad-89dd-4359-860b-4100afe44f86,AUTHORIZATION,,true 22927,4ecc19ad-89dd-4359-860b-4100afe44f86,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22928,4ecc19ad-89dd-4359-860b-4100afe44f86,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22929,4ecc19ad-89dd-4359-860b-4100afe44f86,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22930,1a27da42-f326-426e-bca7-2a814dead916,LIST_ACCOUNTS,hbciListAccounts,false -22931,1a27da42-f326-426e-bca7-2a814dead916,LIST_TRANSACTIONS,hbciListTransactions,false -22932,1a27da42-f326-426e-bca7-2a814dead916,AUTHORIZATION,,false -22933,1a27da42-f326-426e-bca7-2a814dead916,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22934,1a27da42-f326-426e-bca7-2a814dead916,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22935,1a27da42-f326-426e-bca7-2a814dead916,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22930,714430e9-4147-432d-adae-a0d22e34a6bd,LIST_ACCOUNTS,hbciListAccounts,false +22931,714430e9-4147-432d-adae-a0d22e34a6bd,LIST_TRANSACTIONS,hbciListTransactions,false +22932,714430e9-4147-432d-adae-a0d22e34a6bd,AUTHORIZATION,,false +22933,714430e9-4147-432d-adae-a0d22e34a6bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22934,714430e9-4147-432d-adae-a0d22e34a6bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22935,714430e9-4147-432d-adae-a0d22e34a6bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22936,ca10d4c5-c153-4cde-8fb0-03fc592e1484,LIST_ACCOUNTS,xs2aListAccounts,true -22937,ca10d4c5-c153-4cde-8fb0-03fc592e1484,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22937,ca10d4c5-c153-4cde-8fb0-03fc592e1484,LIST_TRANSACTIONS,xs2aListTransactions,true 22938,ca10d4c5-c153-4cde-8fb0-03fc592e1484,AUTHORIZATION,,true 22939,ca10d4c5-c153-4cde-8fb0-03fc592e1484,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22940,ca10d4c5-c153-4cde-8fb0-03fc592e1484,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22941,ca10d4c5-c153-4cde-8fb0-03fc592e1484,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22942,f27bf216-30ed-4aed-918f-88a46f2c97f5,LIST_ACCOUNTS,hbciListAccounts,false -22943,f27bf216-30ed-4aed-918f-88a46f2c97f5,LIST_TRANSACTIONS,hbciListTransactions,false -22944,f27bf216-30ed-4aed-918f-88a46f2c97f5,AUTHORIZATION,,false -22945,f27bf216-30ed-4aed-918f-88a46f2c97f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22946,f27bf216-30ed-4aed-918f-88a46f2c97f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22947,f27bf216-30ed-4aed-918f-88a46f2c97f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22942,466a661d-637c-47a2-b51c-3cc30932550b,LIST_ACCOUNTS,hbciListAccounts,false +22943,466a661d-637c-47a2-b51c-3cc30932550b,LIST_TRANSACTIONS,hbciListTransactions,false +22944,466a661d-637c-47a2-b51c-3cc30932550b,AUTHORIZATION,,false +22945,466a661d-637c-47a2-b51c-3cc30932550b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22946,466a661d-637c-47a2-b51c-3cc30932550b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22947,466a661d-637c-47a2-b51c-3cc30932550b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22948,33a62c1b-c2f6-4747-ad49-3b7b224d2f11,LIST_ACCOUNTS,xs2aListAccounts,true -22949,33a62c1b-c2f6-4747-ad49-3b7b224d2f11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22949,33a62c1b-c2f6-4747-ad49-3b7b224d2f11,LIST_TRANSACTIONS,xs2aListTransactions,true 22950,33a62c1b-c2f6-4747-ad49-3b7b224d2f11,AUTHORIZATION,,true 22951,33a62c1b-c2f6-4747-ad49-3b7b224d2f11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22952,33a62c1b-c2f6-4747-ad49-3b7b224d2f11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22953,33a62c1b-c2f6-4747-ad49-3b7b224d2f11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22954,c735e835-95b0-4c87-80d4-db3707ed06f0,LIST_ACCOUNTS,hbciListAccounts,false -22955,c735e835-95b0-4c87-80d4-db3707ed06f0,LIST_TRANSACTIONS,hbciListTransactions,false -22956,c735e835-95b0-4c87-80d4-db3707ed06f0,AUTHORIZATION,,false -22957,c735e835-95b0-4c87-80d4-db3707ed06f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22958,c735e835-95b0-4c87-80d4-db3707ed06f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22959,c735e835-95b0-4c87-80d4-db3707ed06f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22954,f896aeef-b522-4ac4-aad3-98e9f2e61b0e,LIST_ACCOUNTS,hbciListAccounts,false +22955,f896aeef-b522-4ac4-aad3-98e9f2e61b0e,LIST_TRANSACTIONS,hbciListTransactions,false +22956,f896aeef-b522-4ac4-aad3-98e9f2e61b0e,AUTHORIZATION,,false +22957,f896aeef-b522-4ac4-aad3-98e9f2e61b0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22958,f896aeef-b522-4ac4-aad3-98e9f2e61b0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22959,f896aeef-b522-4ac4-aad3-98e9f2e61b0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22960,4f3dbd90-4aa0-4d16-b87b-401d5d306f35,LIST_ACCOUNTS,xs2aListAccounts,true -22961,4f3dbd90-4aa0-4d16-b87b-401d5d306f35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22961,4f3dbd90-4aa0-4d16-b87b-401d5d306f35,LIST_TRANSACTIONS,xs2aListTransactions,true 22962,4f3dbd90-4aa0-4d16-b87b-401d5d306f35,AUTHORIZATION,,true 22963,4f3dbd90-4aa0-4d16-b87b-401d5d306f35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22964,4f3dbd90-4aa0-4d16-b87b-401d5d306f35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22965,4f3dbd90-4aa0-4d16-b87b-401d5d306f35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22966,72e8e150-915c-44a9-9e46-a37e4f26e702,LIST_ACCOUNTS,hbciListAccounts,false -22967,72e8e150-915c-44a9-9e46-a37e4f26e702,LIST_TRANSACTIONS,hbciListTransactions,false -22968,72e8e150-915c-44a9-9e46-a37e4f26e702,AUTHORIZATION,,false -22969,72e8e150-915c-44a9-9e46-a37e4f26e702,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22970,72e8e150-915c-44a9-9e46-a37e4f26e702,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22971,72e8e150-915c-44a9-9e46-a37e4f26e702,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22966,4f22afa2-5467-4e64-aa3e-6ddd69bdcea9,LIST_ACCOUNTS,hbciListAccounts,false +22967,4f22afa2-5467-4e64-aa3e-6ddd69bdcea9,LIST_TRANSACTIONS,hbciListTransactions,false +22968,4f22afa2-5467-4e64-aa3e-6ddd69bdcea9,AUTHORIZATION,,false +22969,4f22afa2-5467-4e64-aa3e-6ddd69bdcea9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22970,4f22afa2-5467-4e64-aa3e-6ddd69bdcea9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22971,4f22afa2-5467-4e64-aa3e-6ddd69bdcea9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22972,0bac56b5-6508-4991-9b38-07d78df1e657,LIST_ACCOUNTS,xs2aListAccounts,true -22973,0bac56b5-6508-4991-9b38-07d78df1e657,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22973,0bac56b5-6508-4991-9b38-07d78df1e657,LIST_TRANSACTIONS,xs2aListTransactions,true 22974,0bac56b5-6508-4991-9b38-07d78df1e657,AUTHORIZATION,,true 22975,0bac56b5-6508-4991-9b38-07d78df1e657,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22976,0bac56b5-6508-4991-9b38-07d78df1e657,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22977,0bac56b5-6508-4991-9b38-07d78df1e657,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22978,bd5e20e6-5b62-4b85-ba09-95c4daa2c7bc,LIST_ACCOUNTS,hbciListAccounts,false -22979,bd5e20e6-5b62-4b85-ba09-95c4daa2c7bc,LIST_TRANSACTIONS,hbciListTransactions,false -22980,bd5e20e6-5b62-4b85-ba09-95c4daa2c7bc,AUTHORIZATION,,false -22981,bd5e20e6-5b62-4b85-ba09-95c4daa2c7bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22982,bd5e20e6-5b62-4b85-ba09-95c4daa2c7bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22983,bd5e20e6-5b62-4b85-ba09-95c4daa2c7bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22978,628eeb14-e94d-4314-a4b8-e0925c153418,LIST_ACCOUNTS,hbciListAccounts,false +22979,628eeb14-e94d-4314-a4b8-e0925c153418,LIST_TRANSACTIONS,hbciListTransactions,false +22980,628eeb14-e94d-4314-a4b8-e0925c153418,AUTHORIZATION,,false +22981,628eeb14-e94d-4314-a4b8-e0925c153418,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22982,628eeb14-e94d-4314-a4b8-e0925c153418,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22983,628eeb14-e94d-4314-a4b8-e0925c153418,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22984,618ded5b-a99f-4310-aeb5-319278522043,LIST_ACCOUNTS,xs2aListAccounts,true -22985,618ded5b-a99f-4310-aeb5-319278522043,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22985,618ded5b-a99f-4310-aeb5-319278522043,LIST_TRANSACTIONS,xs2aListTransactions,true 22986,618ded5b-a99f-4310-aeb5-319278522043,AUTHORIZATION,,true 22987,618ded5b-a99f-4310-aeb5-319278522043,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 22988,618ded5b-a99f-4310-aeb5-319278522043,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 22989,618ded5b-a99f-4310-aeb5-319278522043,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -22990,660a12c9-fc74-461b-ab89-f0fe64120b74,LIST_ACCOUNTS,hbciListAccounts,false -22991,660a12c9-fc74-461b-ab89-f0fe64120b74,LIST_TRANSACTIONS,hbciListTransactions,false -22992,660a12c9-fc74-461b-ab89-f0fe64120b74,AUTHORIZATION,,false -22993,660a12c9-fc74-461b-ab89-f0fe64120b74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -22994,660a12c9-fc74-461b-ab89-f0fe64120b74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -22995,660a12c9-fc74-461b-ab89-f0fe64120b74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +22990,653c241b-f8f7-4ac8-839c-236981fde2d5,LIST_ACCOUNTS,hbciListAccounts,false +22991,653c241b-f8f7-4ac8-839c-236981fde2d5,LIST_TRANSACTIONS,hbciListTransactions,false +22992,653c241b-f8f7-4ac8-839c-236981fde2d5,AUTHORIZATION,,false +22993,653c241b-f8f7-4ac8-839c-236981fde2d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +22994,653c241b-f8f7-4ac8-839c-236981fde2d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +22995,653c241b-f8f7-4ac8-839c-236981fde2d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 22996,435f0467-f3e3-4b14-b2bb-b3d94ede0f62,LIST_ACCOUNTS,xs2aListAccounts,true -22997,435f0467-f3e3-4b14-b2bb-b3d94ede0f62,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +22997,435f0467-f3e3-4b14-b2bb-b3d94ede0f62,LIST_TRANSACTIONS,xs2aListTransactions,true 22998,435f0467-f3e3-4b14-b2bb-b3d94ede0f62,AUTHORIZATION,,true 22999,435f0467-f3e3-4b14-b2bb-b3d94ede0f62,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23000,435f0467-f3e3-4b14-b2bb-b3d94ede0f62,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23001,435f0467-f3e3-4b14-b2bb-b3d94ede0f62,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23002,c30db235-a11c-40bd-9ca2-77627aa70363,LIST_ACCOUNTS,hbciListAccounts,false -23003,c30db235-a11c-40bd-9ca2-77627aa70363,LIST_TRANSACTIONS,hbciListTransactions,false -23004,c30db235-a11c-40bd-9ca2-77627aa70363,AUTHORIZATION,,false -23005,c30db235-a11c-40bd-9ca2-77627aa70363,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23006,c30db235-a11c-40bd-9ca2-77627aa70363,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23007,c30db235-a11c-40bd-9ca2-77627aa70363,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23002,90c9ed13-42eb-41f4-b09b-dd81d93acc17,LIST_ACCOUNTS,hbciListAccounts,false +23003,90c9ed13-42eb-41f4-b09b-dd81d93acc17,LIST_TRANSACTIONS,hbciListTransactions,false +23004,90c9ed13-42eb-41f4-b09b-dd81d93acc17,AUTHORIZATION,,false +23005,90c9ed13-42eb-41f4-b09b-dd81d93acc17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23006,90c9ed13-42eb-41f4-b09b-dd81d93acc17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23007,90c9ed13-42eb-41f4-b09b-dd81d93acc17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23008,097fbdcb-a9f7-4581-b776-12b856fb21c2,LIST_ACCOUNTS,xs2aListAccounts,true -23009,097fbdcb-a9f7-4581-b776-12b856fb21c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23009,097fbdcb-a9f7-4581-b776-12b856fb21c2,LIST_TRANSACTIONS,xs2aListTransactions,true 23010,097fbdcb-a9f7-4581-b776-12b856fb21c2,AUTHORIZATION,,true 23011,097fbdcb-a9f7-4581-b776-12b856fb21c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23012,097fbdcb-a9f7-4581-b776-12b856fb21c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23013,097fbdcb-a9f7-4581-b776-12b856fb21c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23014,01bd215b-e12c-4420-b8ee-1a38b0fbd644,LIST_ACCOUNTS,hbciListAccounts,false -23015,01bd215b-e12c-4420-b8ee-1a38b0fbd644,LIST_TRANSACTIONS,hbciListTransactions,false -23016,01bd215b-e12c-4420-b8ee-1a38b0fbd644,AUTHORIZATION,,false -23017,01bd215b-e12c-4420-b8ee-1a38b0fbd644,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23018,01bd215b-e12c-4420-b8ee-1a38b0fbd644,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23019,01bd215b-e12c-4420-b8ee-1a38b0fbd644,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23014,58fd5eed-4087-44fe-9ed4-331bb9f0eec6,LIST_ACCOUNTS,hbciListAccounts,false +23015,58fd5eed-4087-44fe-9ed4-331bb9f0eec6,LIST_TRANSACTIONS,hbciListTransactions,false +23016,58fd5eed-4087-44fe-9ed4-331bb9f0eec6,AUTHORIZATION,,false +23017,58fd5eed-4087-44fe-9ed4-331bb9f0eec6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23018,58fd5eed-4087-44fe-9ed4-331bb9f0eec6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23019,58fd5eed-4087-44fe-9ed4-331bb9f0eec6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23020,9b3cb19a-7c7e-4c65-ab23-0e59873bcb97,LIST_ACCOUNTS,xs2aListAccounts,true -23021,9b3cb19a-7c7e-4c65-ab23-0e59873bcb97,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23021,9b3cb19a-7c7e-4c65-ab23-0e59873bcb97,LIST_TRANSACTIONS,xs2aListTransactions,true 23022,9b3cb19a-7c7e-4c65-ab23-0e59873bcb97,AUTHORIZATION,,true 23023,9b3cb19a-7c7e-4c65-ab23-0e59873bcb97,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23024,9b3cb19a-7c7e-4c65-ab23-0e59873bcb97,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23025,9b3cb19a-7c7e-4c65-ab23-0e59873bcb97,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23026,b9250a70-186e-4e1e-97af-6a87f220e28b,LIST_ACCOUNTS,hbciListAccounts,false -23027,b9250a70-186e-4e1e-97af-6a87f220e28b,LIST_TRANSACTIONS,hbciListTransactions,false -23028,b9250a70-186e-4e1e-97af-6a87f220e28b,AUTHORIZATION,,false -23029,b9250a70-186e-4e1e-97af-6a87f220e28b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23030,b9250a70-186e-4e1e-97af-6a87f220e28b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23031,b9250a70-186e-4e1e-97af-6a87f220e28b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23026,f81b3364-83a6-4f3a-b9b6-8e9840ae7e50,LIST_ACCOUNTS,hbciListAccounts,false +23027,f81b3364-83a6-4f3a-b9b6-8e9840ae7e50,LIST_TRANSACTIONS,hbciListTransactions,false +23028,f81b3364-83a6-4f3a-b9b6-8e9840ae7e50,AUTHORIZATION,,false +23029,f81b3364-83a6-4f3a-b9b6-8e9840ae7e50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23030,f81b3364-83a6-4f3a-b9b6-8e9840ae7e50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23031,f81b3364-83a6-4f3a-b9b6-8e9840ae7e50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23032,e508cb11-ebb0-4225-9abb-4450e63238fd,LIST_ACCOUNTS,xs2aListAccounts,true -23033,e508cb11-ebb0-4225-9abb-4450e63238fd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23033,e508cb11-ebb0-4225-9abb-4450e63238fd,LIST_TRANSACTIONS,xs2aListTransactions,true 23034,e508cb11-ebb0-4225-9abb-4450e63238fd,AUTHORIZATION,,true 23035,e508cb11-ebb0-4225-9abb-4450e63238fd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23036,e508cb11-ebb0-4225-9abb-4450e63238fd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23037,e508cb11-ebb0-4225-9abb-4450e63238fd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23038,a7737cf8-7813-48c9-8d8e-e49500a6fb01,LIST_ACCOUNTS,hbciListAccounts,false -23039,a7737cf8-7813-48c9-8d8e-e49500a6fb01,LIST_TRANSACTIONS,hbciListTransactions,false -23040,a7737cf8-7813-48c9-8d8e-e49500a6fb01,AUTHORIZATION,,false -23041,a7737cf8-7813-48c9-8d8e-e49500a6fb01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23042,a7737cf8-7813-48c9-8d8e-e49500a6fb01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23043,a7737cf8-7813-48c9-8d8e-e49500a6fb01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23038,9214ac7a-61f6-412a-9985-29931da632a6,LIST_ACCOUNTS,hbciListAccounts,false +23039,9214ac7a-61f6-412a-9985-29931da632a6,LIST_TRANSACTIONS,hbciListTransactions,false +23040,9214ac7a-61f6-412a-9985-29931da632a6,AUTHORIZATION,,false +23041,9214ac7a-61f6-412a-9985-29931da632a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23042,9214ac7a-61f6-412a-9985-29931da632a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23043,9214ac7a-61f6-412a-9985-29931da632a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23044,ab5ecf45-d8e3-4c33-9772-7657803647f5,LIST_ACCOUNTS,xs2aListAccounts,true -23045,ab5ecf45-d8e3-4c33-9772-7657803647f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23045,ab5ecf45-d8e3-4c33-9772-7657803647f5,LIST_TRANSACTIONS,xs2aListTransactions,true 23046,ab5ecf45-d8e3-4c33-9772-7657803647f5,AUTHORIZATION,,true 23047,ab5ecf45-d8e3-4c33-9772-7657803647f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23048,ab5ecf45-d8e3-4c33-9772-7657803647f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23049,ab5ecf45-d8e3-4c33-9772-7657803647f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23050,8aa0d3e7-76a6-48ec-8f3b-41daa83b5d94,LIST_ACCOUNTS,hbciListAccounts,false -23051,8aa0d3e7-76a6-48ec-8f3b-41daa83b5d94,LIST_TRANSACTIONS,hbciListTransactions,false -23052,8aa0d3e7-76a6-48ec-8f3b-41daa83b5d94,AUTHORIZATION,,false -23053,8aa0d3e7-76a6-48ec-8f3b-41daa83b5d94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23054,8aa0d3e7-76a6-48ec-8f3b-41daa83b5d94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23055,8aa0d3e7-76a6-48ec-8f3b-41daa83b5d94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23050,28c281aa-a11b-4f5d-b124-80392a2f0cce,LIST_ACCOUNTS,hbciListAccounts,false +23051,28c281aa-a11b-4f5d-b124-80392a2f0cce,LIST_TRANSACTIONS,hbciListTransactions,false +23052,28c281aa-a11b-4f5d-b124-80392a2f0cce,AUTHORIZATION,,false +23053,28c281aa-a11b-4f5d-b124-80392a2f0cce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23054,28c281aa-a11b-4f5d-b124-80392a2f0cce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23055,28c281aa-a11b-4f5d-b124-80392a2f0cce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23056,304ee8b1-10fe-4236-a48c-2a1763ad1c54,LIST_ACCOUNTS,xs2aListAccounts,true -23057,304ee8b1-10fe-4236-a48c-2a1763ad1c54,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23057,304ee8b1-10fe-4236-a48c-2a1763ad1c54,LIST_TRANSACTIONS,xs2aListTransactions,true 23058,304ee8b1-10fe-4236-a48c-2a1763ad1c54,AUTHORIZATION,,true 23059,304ee8b1-10fe-4236-a48c-2a1763ad1c54,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23060,304ee8b1-10fe-4236-a48c-2a1763ad1c54,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23061,304ee8b1-10fe-4236-a48c-2a1763ad1c54,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23062,0d609c84-e372-48b0-8119-1f856d53929e,LIST_ACCOUNTS,hbciListAccounts,false -23063,0d609c84-e372-48b0-8119-1f856d53929e,LIST_TRANSACTIONS,hbciListTransactions,false -23064,0d609c84-e372-48b0-8119-1f856d53929e,AUTHORIZATION,,false -23065,0d609c84-e372-48b0-8119-1f856d53929e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23066,0d609c84-e372-48b0-8119-1f856d53929e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23067,0d609c84-e372-48b0-8119-1f856d53929e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23062,0dee0a65-97c2-402f-b6e1-8a82903cb1e5,LIST_ACCOUNTS,hbciListAccounts,false +23063,0dee0a65-97c2-402f-b6e1-8a82903cb1e5,LIST_TRANSACTIONS,hbciListTransactions,false +23064,0dee0a65-97c2-402f-b6e1-8a82903cb1e5,AUTHORIZATION,,false +23065,0dee0a65-97c2-402f-b6e1-8a82903cb1e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23066,0dee0a65-97c2-402f-b6e1-8a82903cb1e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23067,0dee0a65-97c2-402f-b6e1-8a82903cb1e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23068,3731499a-e396-4a06-b2d5-b338cd4043b7,LIST_ACCOUNTS,xs2aListAccounts,true -23069,3731499a-e396-4a06-b2d5-b338cd4043b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23069,3731499a-e396-4a06-b2d5-b338cd4043b7,LIST_TRANSACTIONS,xs2aListTransactions,true 23070,3731499a-e396-4a06-b2d5-b338cd4043b7,AUTHORIZATION,,true 23071,3731499a-e396-4a06-b2d5-b338cd4043b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23072,3731499a-e396-4a06-b2d5-b338cd4043b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23073,3731499a-e396-4a06-b2d5-b338cd4043b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23074,186373b6-f498-49af-a9b1-ef2421a07f88,LIST_ACCOUNTS,hbciListAccounts,false -23075,186373b6-f498-49af-a9b1-ef2421a07f88,LIST_TRANSACTIONS,hbciListTransactions,false -23076,186373b6-f498-49af-a9b1-ef2421a07f88,AUTHORIZATION,,false -23077,186373b6-f498-49af-a9b1-ef2421a07f88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23078,186373b6-f498-49af-a9b1-ef2421a07f88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23079,186373b6-f498-49af-a9b1-ef2421a07f88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23074,551a702a-a039-463c-a43d-fc8f775e4fe2,LIST_ACCOUNTS,hbciListAccounts,false +23075,551a702a-a039-463c-a43d-fc8f775e4fe2,LIST_TRANSACTIONS,hbciListTransactions,false +23076,551a702a-a039-463c-a43d-fc8f775e4fe2,AUTHORIZATION,,false +23077,551a702a-a039-463c-a43d-fc8f775e4fe2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23078,551a702a-a039-463c-a43d-fc8f775e4fe2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23079,551a702a-a039-463c-a43d-fc8f775e4fe2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23080,5f18b803-a929-4a0f-a076-28bf5d563690,LIST_ACCOUNTS,xs2aListAccounts,true -23081,5f18b803-a929-4a0f-a076-28bf5d563690,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23081,5f18b803-a929-4a0f-a076-28bf5d563690,LIST_TRANSACTIONS,xs2aListTransactions,true 23082,5f18b803-a929-4a0f-a076-28bf5d563690,AUTHORIZATION,,true 23083,5f18b803-a929-4a0f-a076-28bf5d563690,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23084,5f18b803-a929-4a0f-a076-28bf5d563690,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23085,5f18b803-a929-4a0f-a076-28bf5d563690,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23086,6fc461e4-f99e-4070-89a1-cc4942bc16b0,LIST_ACCOUNTS,hbciListAccounts,false -23087,6fc461e4-f99e-4070-89a1-cc4942bc16b0,LIST_TRANSACTIONS,hbciListTransactions,false -23088,6fc461e4-f99e-4070-89a1-cc4942bc16b0,AUTHORIZATION,,false -23089,6fc461e4-f99e-4070-89a1-cc4942bc16b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23090,6fc461e4-f99e-4070-89a1-cc4942bc16b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23091,6fc461e4-f99e-4070-89a1-cc4942bc16b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23086,198ae150-a12b-443e-a1ff-ad65394f3b4e,LIST_ACCOUNTS,hbciListAccounts,false +23087,198ae150-a12b-443e-a1ff-ad65394f3b4e,LIST_TRANSACTIONS,hbciListTransactions,false +23088,198ae150-a12b-443e-a1ff-ad65394f3b4e,AUTHORIZATION,,false +23089,198ae150-a12b-443e-a1ff-ad65394f3b4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23090,198ae150-a12b-443e-a1ff-ad65394f3b4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23091,198ae150-a12b-443e-a1ff-ad65394f3b4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23092,981a8dcf-fdab-4fa5-98b9-50de570ba7a3,LIST_ACCOUNTS,xs2aListAccounts,true -23093,981a8dcf-fdab-4fa5-98b9-50de570ba7a3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23093,981a8dcf-fdab-4fa5-98b9-50de570ba7a3,LIST_TRANSACTIONS,xs2aListTransactions,true 23094,981a8dcf-fdab-4fa5-98b9-50de570ba7a3,AUTHORIZATION,,true 23095,981a8dcf-fdab-4fa5-98b9-50de570ba7a3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23096,981a8dcf-fdab-4fa5-98b9-50de570ba7a3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23097,981a8dcf-fdab-4fa5-98b9-50de570ba7a3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23098,8b652366-fc63-4ec2-aa84-a4fa5a61138c,LIST_ACCOUNTS,hbciListAccounts,false -23099,8b652366-fc63-4ec2-aa84-a4fa5a61138c,LIST_TRANSACTIONS,hbciListTransactions,false -23100,8b652366-fc63-4ec2-aa84-a4fa5a61138c,AUTHORIZATION,,false -23101,8b652366-fc63-4ec2-aa84-a4fa5a61138c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23102,8b652366-fc63-4ec2-aa84-a4fa5a61138c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23103,8b652366-fc63-4ec2-aa84-a4fa5a61138c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23098,bc78768a-29a3-41ee-b0d6-bc4389e8683e,LIST_ACCOUNTS,hbciListAccounts,false +23099,bc78768a-29a3-41ee-b0d6-bc4389e8683e,LIST_TRANSACTIONS,hbciListTransactions,false +23100,bc78768a-29a3-41ee-b0d6-bc4389e8683e,AUTHORIZATION,,false +23101,bc78768a-29a3-41ee-b0d6-bc4389e8683e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23102,bc78768a-29a3-41ee-b0d6-bc4389e8683e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23103,bc78768a-29a3-41ee-b0d6-bc4389e8683e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23104,25f9d790-116d-43e3-96a7-70b6aadf9178,LIST_ACCOUNTS,xs2aListAccounts,true -23105,25f9d790-116d-43e3-96a7-70b6aadf9178,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23105,25f9d790-116d-43e3-96a7-70b6aadf9178,LIST_TRANSACTIONS,xs2aListTransactions,true 23106,25f9d790-116d-43e3-96a7-70b6aadf9178,AUTHORIZATION,,true 23107,25f9d790-116d-43e3-96a7-70b6aadf9178,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23108,25f9d790-116d-43e3-96a7-70b6aadf9178,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23109,25f9d790-116d-43e3-96a7-70b6aadf9178,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23110,f0fc797c-fb6b-4f08-bc5e-cdcce3d92253,LIST_ACCOUNTS,hbciListAccounts,false -23111,f0fc797c-fb6b-4f08-bc5e-cdcce3d92253,LIST_TRANSACTIONS,hbciListTransactions,false -23112,f0fc797c-fb6b-4f08-bc5e-cdcce3d92253,AUTHORIZATION,,false -23113,f0fc797c-fb6b-4f08-bc5e-cdcce3d92253,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23114,f0fc797c-fb6b-4f08-bc5e-cdcce3d92253,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23115,f0fc797c-fb6b-4f08-bc5e-cdcce3d92253,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23110,2cb6e00a-7cb7-4421-90e4-607a439f1adb,LIST_ACCOUNTS,hbciListAccounts,false +23111,2cb6e00a-7cb7-4421-90e4-607a439f1adb,LIST_TRANSACTIONS,hbciListTransactions,false +23112,2cb6e00a-7cb7-4421-90e4-607a439f1adb,AUTHORIZATION,,false +23113,2cb6e00a-7cb7-4421-90e4-607a439f1adb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23114,2cb6e00a-7cb7-4421-90e4-607a439f1adb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23115,2cb6e00a-7cb7-4421-90e4-607a439f1adb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23116,6748a3b7-90c0-4996-8f5e-85106b5bb54a,LIST_ACCOUNTS,xs2aListAccounts,true -23117,6748a3b7-90c0-4996-8f5e-85106b5bb54a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23117,6748a3b7-90c0-4996-8f5e-85106b5bb54a,LIST_TRANSACTIONS,xs2aListTransactions,true 23118,6748a3b7-90c0-4996-8f5e-85106b5bb54a,AUTHORIZATION,,true 23119,6748a3b7-90c0-4996-8f5e-85106b5bb54a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23120,6748a3b7-90c0-4996-8f5e-85106b5bb54a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23121,6748a3b7-90c0-4996-8f5e-85106b5bb54a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23122,3f5584bd-0b81-4e23-a9e6-2099441b850e,LIST_ACCOUNTS,hbciListAccounts,false -23123,3f5584bd-0b81-4e23-a9e6-2099441b850e,LIST_TRANSACTIONS,hbciListTransactions,false -23124,3f5584bd-0b81-4e23-a9e6-2099441b850e,AUTHORIZATION,,false -23125,3f5584bd-0b81-4e23-a9e6-2099441b850e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23126,3f5584bd-0b81-4e23-a9e6-2099441b850e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23127,3f5584bd-0b81-4e23-a9e6-2099441b850e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23122,332968df-71f2-4853-ae20-220159b2db40,LIST_ACCOUNTS,hbciListAccounts,false +23123,332968df-71f2-4853-ae20-220159b2db40,LIST_TRANSACTIONS,hbciListTransactions,false +23124,332968df-71f2-4853-ae20-220159b2db40,AUTHORIZATION,,false +23125,332968df-71f2-4853-ae20-220159b2db40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23126,332968df-71f2-4853-ae20-220159b2db40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23127,332968df-71f2-4853-ae20-220159b2db40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23128,d78c3a8b-730c-454b-81e9-17364300afa0,LIST_ACCOUNTS,xs2aListAccounts,true -23129,d78c3a8b-730c-454b-81e9-17364300afa0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23129,d78c3a8b-730c-454b-81e9-17364300afa0,LIST_TRANSACTIONS,xs2aListTransactions,true 23130,d78c3a8b-730c-454b-81e9-17364300afa0,AUTHORIZATION,,true 23131,d78c3a8b-730c-454b-81e9-17364300afa0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23132,d78c3a8b-730c-454b-81e9-17364300afa0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23133,d78c3a8b-730c-454b-81e9-17364300afa0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23134,aadde62d-d6e7-43d9-a1fd-e81b1e102ce1,LIST_ACCOUNTS,hbciListAccounts,false -23135,aadde62d-d6e7-43d9-a1fd-e81b1e102ce1,LIST_TRANSACTIONS,hbciListTransactions,false -23136,aadde62d-d6e7-43d9-a1fd-e81b1e102ce1,AUTHORIZATION,,false -23137,aadde62d-d6e7-43d9-a1fd-e81b1e102ce1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23138,aadde62d-d6e7-43d9-a1fd-e81b1e102ce1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23139,aadde62d-d6e7-43d9-a1fd-e81b1e102ce1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23134,40170d1e-a2cb-41a8-b1fb-2efae905ab75,LIST_ACCOUNTS,hbciListAccounts,false +23135,40170d1e-a2cb-41a8-b1fb-2efae905ab75,LIST_TRANSACTIONS,hbciListTransactions,false +23136,40170d1e-a2cb-41a8-b1fb-2efae905ab75,AUTHORIZATION,,false +23137,40170d1e-a2cb-41a8-b1fb-2efae905ab75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23138,40170d1e-a2cb-41a8-b1fb-2efae905ab75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23139,40170d1e-a2cb-41a8-b1fb-2efae905ab75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23140,7379c6d4-4dc9-4bd7-8803-5eb311c52c27,LIST_ACCOUNTS,xs2aListAccounts,true -23141,7379c6d4-4dc9-4bd7-8803-5eb311c52c27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23141,7379c6d4-4dc9-4bd7-8803-5eb311c52c27,LIST_TRANSACTIONS,xs2aListTransactions,true 23142,7379c6d4-4dc9-4bd7-8803-5eb311c52c27,AUTHORIZATION,,true 23143,7379c6d4-4dc9-4bd7-8803-5eb311c52c27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23144,7379c6d4-4dc9-4bd7-8803-5eb311c52c27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23145,7379c6d4-4dc9-4bd7-8803-5eb311c52c27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23146,9b85af20-ea08-4d4a-a934-fb700c819207,LIST_ACCOUNTS,hbciListAccounts,false -23147,9b85af20-ea08-4d4a-a934-fb700c819207,LIST_TRANSACTIONS,hbciListTransactions,false -23148,9b85af20-ea08-4d4a-a934-fb700c819207,AUTHORIZATION,,false -23149,9b85af20-ea08-4d4a-a934-fb700c819207,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23150,9b85af20-ea08-4d4a-a934-fb700c819207,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23151,9b85af20-ea08-4d4a-a934-fb700c819207,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23146,5747ba93-b942-43ec-b6b5-c8cbc366155b,LIST_ACCOUNTS,hbciListAccounts,false +23147,5747ba93-b942-43ec-b6b5-c8cbc366155b,LIST_TRANSACTIONS,hbciListTransactions,false +23148,5747ba93-b942-43ec-b6b5-c8cbc366155b,AUTHORIZATION,,false +23149,5747ba93-b942-43ec-b6b5-c8cbc366155b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23150,5747ba93-b942-43ec-b6b5-c8cbc366155b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23151,5747ba93-b942-43ec-b6b5-c8cbc366155b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23152,80481e9b-2eea-485a-b0d2-f8462697c480,LIST_ACCOUNTS,xs2aListAccounts,true -23153,80481e9b-2eea-485a-b0d2-f8462697c480,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23153,80481e9b-2eea-485a-b0d2-f8462697c480,LIST_TRANSACTIONS,xs2aListTransactions,true 23154,80481e9b-2eea-485a-b0d2-f8462697c480,AUTHORIZATION,,true 23155,80481e9b-2eea-485a-b0d2-f8462697c480,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23156,80481e9b-2eea-485a-b0d2-f8462697c480,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23157,80481e9b-2eea-485a-b0d2-f8462697c480,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23158,480125e6-690a-401f-96e5-8381149e1645,LIST_ACCOUNTS,hbciListAccounts,false -23159,480125e6-690a-401f-96e5-8381149e1645,LIST_TRANSACTIONS,hbciListTransactions,false -23160,480125e6-690a-401f-96e5-8381149e1645,AUTHORIZATION,,false -23161,480125e6-690a-401f-96e5-8381149e1645,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23162,480125e6-690a-401f-96e5-8381149e1645,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23163,480125e6-690a-401f-96e5-8381149e1645,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23158,04c33bb6-b54e-4db0-9a3a-57b8ef9935d4,LIST_ACCOUNTS,hbciListAccounts,false +23159,04c33bb6-b54e-4db0-9a3a-57b8ef9935d4,LIST_TRANSACTIONS,hbciListTransactions,false +23160,04c33bb6-b54e-4db0-9a3a-57b8ef9935d4,AUTHORIZATION,,false +23161,04c33bb6-b54e-4db0-9a3a-57b8ef9935d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23162,04c33bb6-b54e-4db0-9a3a-57b8ef9935d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23163,04c33bb6-b54e-4db0-9a3a-57b8ef9935d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23164,5624a736-6cfb-43aa-baa3-c9117fa3f89d,LIST_ACCOUNTS,xs2aListAccounts,true -23165,5624a736-6cfb-43aa-baa3-c9117fa3f89d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23165,5624a736-6cfb-43aa-baa3-c9117fa3f89d,LIST_TRANSACTIONS,xs2aListTransactions,true 23166,5624a736-6cfb-43aa-baa3-c9117fa3f89d,AUTHORIZATION,,true 23167,5624a736-6cfb-43aa-baa3-c9117fa3f89d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23168,5624a736-6cfb-43aa-baa3-c9117fa3f89d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23169,5624a736-6cfb-43aa-baa3-c9117fa3f89d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23170,4b56cfcb-e16e-43b7-9b15-871cf5bd322a,LIST_ACCOUNTS,hbciListAccounts,false -23171,4b56cfcb-e16e-43b7-9b15-871cf5bd322a,LIST_TRANSACTIONS,hbciListTransactions,false -23172,4b56cfcb-e16e-43b7-9b15-871cf5bd322a,AUTHORIZATION,,false -23173,4b56cfcb-e16e-43b7-9b15-871cf5bd322a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23174,4b56cfcb-e16e-43b7-9b15-871cf5bd322a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23175,4b56cfcb-e16e-43b7-9b15-871cf5bd322a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23170,fbadefd5-768f-4fb1-9239-f18c0537b862,LIST_ACCOUNTS,hbciListAccounts,false +23171,fbadefd5-768f-4fb1-9239-f18c0537b862,LIST_TRANSACTIONS,hbciListTransactions,false +23172,fbadefd5-768f-4fb1-9239-f18c0537b862,AUTHORIZATION,,false +23173,fbadefd5-768f-4fb1-9239-f18c0537b862,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23174,fbadefd5-768f-4fb1-9239-f18c0537b862,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23175,fbadefd5-768f-4fb1-9239-f18c0537b862,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23176,9c703df3-b764-432f-ba3c-677d8ad126cf,LIST_ACCOUNTS,xs2aListAccounts,true -23177,9c703df3-b764-432f-ba3c-677d8ad126cf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23177,9c703df3-b764-432f-ba3c-677d8ad126cf,LIST_TRANSACTIONS,xs2aListTransactions,true 23178,9c703df3-b764-432f-ba3c-677d8ad126cf,AUTHORIZATION,,true 23179,9c703df3-b764-432f-ba3c-677d8ad126cf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23180,9c703df3-b764-432f-ba3c-677d8ad126cf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23181,9c703df3-b764-432f-ba3c-677d8ad126cf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23182,209fde6a-0405-4dbb-b8ab-a9a15d9690c0,LIST_ACCOUNTS,hbciListAccounts,false -23183,209fde6a-0405-4dbb-b8ab-a9a15d9690c0,LIST_TRANSACTIONS,hbciListTransactions,false -23184,209fde6a-0405-4dbb-b8ab-a9a15d9690c0,AUTHORIZATION,,false -23185,209fde6a-0405-4dbb-b8ab-a9a15d9690c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23186,209fde6a-0405-4dbb-b8ab-a9a15d9690c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23187,209fde6a-0405-4dbb-b8ab-a9a15d9690c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23182,c42c76e1-dec9-4093-adb9-56584d57adef,LIST_ACCOUNTS,hbciListAccounts,false +23183,c42c76e1-dec9-4093-adb9-56584d57adef,LIST_TRANSACTIONS,hbciListTransactions,false +23184,c42c76e1-dec9-4093-adb9-56584d57adef,AUTHORIZATION,,false +23185,c42c76e1-dec9-4093-adb9-56584d57adef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23186,c42c76e1-dec9-4093-adb9-56584d57adef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23187,c42c76e1-dec9-4093-adb9-56584d57adef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23188,617e587e-3764-4e3e-ad6f-66e5ed0d94e5,LIST_ACCOUNTS,xs2aListAccounts,true -23189,617e587e-3764-4e3e-ad6f-66e5ed0d94e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23189,617e587e-3764-4e3e-ad6f-66e5ed0d94e5,LIST_TRANSACTIONS,xs2aListTransactions,true 23190,617e587e-3764-4e3e-ad6f-66e5ed0d94e5,AUTHORIZATION,,true 23191,617e587e-3764-4e3e-ad6f-66e5ed0d94e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23192,617e587e-3764-4e3e-ad6f-66e5ed0d94e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23193,617e587e-3764-4e3e-ad6f-66e5ed0d94e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23194,e9040794-ab20-428c-a2ef-1a0bbd0cfae0,LIST_ACCOUNTS,hbciListAccounts,false -23195,e9040794-ab20-428c-a2ef-1a0bbd0cfae0,LIST_TRANSACTIONS,hbciListTransactions,false -23196,e9040794-ab20-428c-a2ef-1a0bbd0cfae0,AUTHORIZATION,,false -23197,e9040794-ab20-428c-a2ef-1a0bbd0cfae0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23198,e9040794-ab20-428c-a2ef-1a0bbd0cfae0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23199,e9040794-ab20-428c-a2ef-1a0bbd0cfae0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23194,d27ccd0a-5295-4f4b-b04e-22acbf92a368,LIST_ACCOUNTS,hbciListAccounts,false +23195,d27ccd0a-5295-4f4b-b04e-22acbf92a368,LIST_TRANSACTIONS,hbciListTransactions,false +23196,d27ccd0a-5295-4f4b-b04e-22acbf92a368,AUTHORIZATION,,false +23197,d27ccd0a-5295-4f4b-b04e-22acbf92a368,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23198,d27ccd0a-5295-4f4b-b04e-22acbf92a368,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23199,d27ccd0a-5295-4f4b-b04e-22acbf92a368,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23200,685d1aa7-fc85-42e8-9129-bd395cc652b6,LIST_ACCOUNTS,xs2aListAccounts,true -23201,685d1aa7-fc85-42e8-9129-bd395cc652b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23201,685d1aa7-fc85-42e8-9129-bd395cc652b6,LIST_TRANSACTIONS,xs2aListTransactions,true 23202,685d1aa7-fc85-42e8-9129-bd395cc652b6,AUTHORIZATION,,true 23203,685d1aa7-fc85-42e8-9129-bd395cc652b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23204,685d1aa7-fc85-42e8-9129-bd395cc652b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23205,685d1aa7-fc85-42e8-9129-bd395cc652b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23206,cd1c619a-7888-444f-ad3c-b155ed4d2e1f,LIST_ACCOUNTS,hbciListAccounts,false -23207,cd1c619a-7888-444f-ad3c-b155ed4d2e1f,LIST_TRANSACTIONS,hbciListTransactions,false -23208,cd1c619a-7888-444f-ad3c-b155ed4d2e1f,AUTHORIZATION,,false -23209,cd1c619a-7888-444f-ad3c-b155ed4d2e1f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23210,cd1c619a-7888-444f-ad3c-b155ed4d2e1f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23211,cd1c619a-7888-444f-ad3c-b155ed4d2e1f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23206,d9f672ef-5710-44f0-b2ae-e786c5b85232,LIST_ACCOUNTS,hbciListAccounts,false +23207,d9f672ef-5710-44f0-b2ae-e786c5b85232,LIST_TRANSACTIONS,hbciListTransactions,false +23208,d9f672ef-5710-44f0-b2ae-e786c5b85232,AUTHORIZATION,,false +23209,d9f672ef-5710-44f0-b2ae-e786c5b85232,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23210,d9f672ef-5710-44f0-b2ae-e786c5b85232,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23211,d9f672ef-5710-44f0-b2ae-e786c5b85232,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23212,4684d46f-4b66-4897-8230-d425c31408c2,LIST_ACCOUNTS,xs2aListAccounts,true -23213,4684d46f-4b66-4897-8230-d425c31408c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23213,4684d46f-4b66-4897-8230-d425c31408c2,LIST_TRANSACTIONS,xs2aListTransactions,true 23214,4684d46f-4b66-4897-8230-d425c31408c2,AUTHORIZATION,,true 23215,4684d46f-4b66-4897-8230-d425c31408c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23216,4684d46f-4b66-4897-8230-d425c31408c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23217,4684d46f-4b66-4897-8230-d425c31408c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23218,5f1c00ec-217d-4adb-b4bb-26620036bc85,LIST_ACCOUNTS,hbciListAccounts,false -23219,5f1c00ec-217d-4adb-b4bb-26620036bc85,LIST_TRANSACTIONS,hbciListTransactions,false -23220,5f1c00ec-217d-4adb-b4bb-26620036bc85,AUTHORIZATION,,false -23221,5f1c00ec-217d-4adb-b4bb-26620036bc85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23222,5f1c00ec-217d-4adb-b4bb-26620036bc85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23223,5f1c00ec-217d-4adb-b4bb-26620036bc85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23218,f02a1b4f-f7ad-4791-8b59-15f4047998f3,LIST_ACCOUNTS,hbciListAccounts,false +23219,f02a1b4f-f7ad-4791-8b59-15f4047998f3,LIST_TRANSACTIONS,hbciListTransactions,false +23220,f02a1b4f-f7ad-4791-8b59-15f4047998f3,AUTHORIZATION,,false +23221,f02a1b4f-f7ad-4791-8b59-15f4047998f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23222,f02a1b4f-f7ad-4791-8b59-15f4047998f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23223,f02a1b4f-f7ad-4791-8b59-15f4047998f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23224,622112c5-d093-4313-a21b-6de7bc124187,LIST_ACCOUNTS,xs2aListAccounts,true -23225,622112c5-d093-4313-a21b-6de7bc124187,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23225,622112c5-d093-4313-a21b-6de7bc124187,LIST_TRANSACTIONS,xs2aListTransactions,true 23226,622112c5-d093-4313-a21b-6de7bc124187,AUTHORIZATION,,true 23227,622112c5-d093-4313-a21b-6de7bc124187,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23228,622112c5-d093-4313-a21b-6de7bc124187,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23229,622112c5-d093-4313-a21b-6de7bc124187,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23230,2cc5e9b6-56ad-4653-9148-5a938b240667,LIST_ACCOUNTS,hbciListAccounts,false -23231,2cc5e9b6-56ad-4653-9148-5a938b240667,LIST_TRANSACTIONS,hbciListTransactions,false -23232,2cc5e9b6-56ad-4653-9148-5a938b240667,AUTHORIZATION,,false -23233,2cc5e9b6-56ad-4653-9148-5a938b240667,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23234,2cc5e9b6-56ad-4653-9148-5a938b240667,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23235,2cc5e9b6-56ad-4653-9148-5a938b240667,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23230,0f073cd0-1085-4268-8719-8fdfd58bae2b,LIST_ACCOUNTS,hbciListAccounts,false +23231,0f073cd0-1085-4268-8719-8fdfd58bae2b,LIST_TRANSACTIONS,hbciListTransactions,false +23232,0f073cd0-1085-4268-8719-8fdfd58bae2b,AUTHORIZATION,,false +23233,0f073cd0-1085-4268-8719-8fdfd58bae2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23234,0f073cd0-1085-4268-8719-8fdfd58bae2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23235,0f073cd0-1085-4268-8719-8fdfd58bae2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23236,7fa0b6a1-0565-460d-b326-8047898dcb58,LIST_ACCOUNTS,xs2aListAccounts,true -23237,7fa0b6a1-0565-460d-b326-8047898dcb58,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23237,7fa0b6a1-0565-460d-b326-8047898dcb58,LIST_TRANSACTIONS,xs2aListTransactions,true 23238,7fa0b6a1-0565-460d-b326-8047898dcb58,AUTHORIZATION,,true 23239,7fa0b6a1-0565-460d-b326-8047898dcb58,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23240,7fa0b6a1-0565-460d-b326-8047898dcb58,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23241,7fa0b6a1-0565-460d-b326-8047898dcb58,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23242,51e48adc-793c-4cde-8eb6-6976e9548e89,LIST_ACCOUNTS,hbciListAccounts,false -23243,51e48adc-793c-4cde-8eb6-6976e9548e89,LIST_TRANSACTIONS,hbciListTransactions,false -23244,51e48adc-793c-4cde-8eb6-6976e9548e89,AUTHORIZATION,,false -23245,51e48adc-793c-4cde-8eb6-6976e9548e89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23246,51e48adc-793c-4cde-8eb6-6976e9548e89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23247,51e48adc-793c-4cde-8eb6-6976e9548e89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23242,0af58fc6-fbd1-47c4-873c-9d2b82df5531,LIST_ACCOUNTS,hbciListAccounts,false +23243,0af58fc6-fbd1-47c4-873c-9d2b82df5531,LIST_TRANSACTIONS,hbciListTransactions,false +23244,0af58fc6-fbd1-47c4-873c-9d2b82df5531,AUTHORIZATION,,false +23245,0af58fc6-fbd1-47c4-873c-9d2b82df5531,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23246,0af58fc6-fbd1-47c4-873c-9d2b82df5531,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23247,0af58fc6-fbd1-47c4-873c-9d2b82df5531,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23248,5393ede5-1743-47d1-aeac-dc9bf8814f67,LIST_ACCOUNTS,xs2aListAccounts,true -23249,5393ede5-1743-47d1-aeac-dc9bf8814f67,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23249,5393ede5-1743-47d1-aeac-dc9bf8814f67,LIST_TRANSACTIONS,xs2aListTransactions,true 23250,5393ede5-1743-47d1-aeac-dc9bf8814f67,AUTHORIZATION,,true 23251,5393ede5-1743-47d1-aeac-dc9bf8814f67,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23252,5393ede5-1743-47d1-aeac-dc9bf8814f67,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23253,5393ede5-1743-47d1-aeac-dc9bf8814f67,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23254,53d3aaa9-8624-4ce6-990c-436a3f62cafd,LIST_ACCOUNTS,hbciListAccounts,false -23255,53d3aaa9-8624-4ce6-990c-436a3f62cafd,LIST_TRANSACTIONS,hbciListTransactions,false -23256,53d3aaa9-8624-4ce6-990c-436a3f62cafd,AUTHORIZATION,,false -23257,53d3aaa9-8624-4ce6-990c-436a3f62cafd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23258,53d3aaa9-8624-4ce6-990c-436a3f62cafd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23259,53d3aaa9-8624-4ce6-990c-436a3f62cafd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23254,336a6c6c-b13b-4ceb-ad3c-0941bc5eb95e,LIST_ACCOUNTS,hbciListAccounts,false +23255,336a6c6c-b13b-4ceb-ad3c-0941bc5eb95e,LIST_TRANSACTIONS,hbciListTransactions,false +23256,336a6c6c-b13b-4ceb-ad3c-0941bc5eb95e,AUTHORIZATION,,false +23257,336a6c6c-b13b-4ceb-ad3c-0941bc5eb95e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23258,336a6c6c-b13b-4ceb-ad3c-0941bc5eb95e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23259,336a6c6c-b13b-4ceb-ad3c-0941bc5eb95e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23260,6da291a0-2c38-4fb7-a90a-d9614c996db6,LIST_ACCOUNTS,xs2aListAccounts,true -23261,6da291a0-2c38-4fb7-a90a-d9614c996db6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23261,6da291a0-2c38-4fb7-a90a-d9614c996db6,LIST_TRANSACTIONS,xs2aListTransactions,true 23262,6da291a0-2c38-4fb7-a90a-d9614c996db6,AUTHORIZATION,,true 23263,6da291a0-2c38-4fb7-a90a-d9614c996db6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23264,6da291a0-2c38-4fb7-a90a-d9614c996db6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23265,6da291a0-2c38-4fb7-a90a-d9614c996db6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23266,7a7a4454-cfa0-449d-96d7-343865b29185,LIST_ACCOUNTS,hbciListAccounts,false -23267,7a7a4454-cfa0-449d-96d7-343865b29185,LIST_TRANSACTIONS,hbciListTransactions,false -23268,7a7a4454-cfa0-449d-96d7-343865b29185,AUTHORIZATION,,false -23269,7a7a4454-cfa0-449d-96d7-343865b29185,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23270,7a7a4454-cfa0-449d-96d7-343865b29185,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23271,7a7a4454-cfa0-449d-96d7-343865b29185,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23266,53fb051a-ebb2-4b35-8083-d8eb20f859c2,LIST_ACCOUNTS,hbciListAccounts,false +23267,53fb051a-ebb2-4b35-8083-d8eb20f859c2,LIST_TRANSACTIONS,hbciListTransactions,false +23268,53fb051a-ebb2-4b35-8083-d8eb20f859c2,AUTHORIZATION,,false +23269,53fb051a-ebb2-4b35-8083-d8eb20f859c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23270,53fb051a-ebb2-4b35-8083-d8eb20f859c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23271,53fb051a-ebb2-4b35-8083-d8eb20f859c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23272,80aa9e95-e6d0-4f44-9065-acc99ef50ff6,LIST_ACCOUNTS,xs2aListAccounts,true -23273,80aa9e95-e6d0-4f44-9065-acc99ef50ff6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23273,80aa9e95-e6d0-4f44-9065-acc99ef50ff6,LIST_TRANSACTIONS,xs2aListTransactions,true 23274,80aa9e95-e6d0-4f44-9065-acc99ef50ff6,AUTHORIZATION,,true 23275,80aa9e95-e6d0-4f44-9065-acc99ef50ff6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23276,80aa9e95-e6d0-4f44-9065-acc99ef50ff6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23277,80aa9e95-e6d0-4f44-9065-acc99ef50ff6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23278,23508e16-0350-436c-9fd8-fdd9cbd981b5,LIST_ACCOUNTS,hbciListAccounts,false -23279,23508e16-0350-436c-9fd8-fdd9cbd981b5,LIST_TRANSACTIONS,hbciListTransactions,false -23280,23508e16-0350-436c-9fd8-fdd9cbd981b5,AUTHORIZATION,,false -23281,23508e16-0350-436c-9fd8-fdd9cbd981b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23282,23508e16-0350-436c-9fd8-fdd9cbd981b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23283,23508e16-0350-436c-9fd8-fdd9cbd981b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23278,e1054a8e-34a6-4c08-a818-09474be2df54,LIST_ACCOUNTS,hbciListAccounts,false +23279,e1054a8e-34a6-4c08-a818-09474be2df54,LIST_TRANSACTIONS,hbciListTransactions,false +23280,e1054a8e-34a6-4c08-a818-09474be2df54,AUTHORIZATION,,false +23281,e1054a8e-34a6-4c08-a818-09474be2df54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23282,e1054a8e-34a6-4c08-a818-09474be2df54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23283,e1054a8e-34a6-4c08-a818-09474be2df54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23284,fcdf6279-852a-4e72-8b7b-d99e6380232b,LIST_ACCOUNTS,xs2aListAccounts,true -23285,fcdf6279-852a-4e72-8b7b-d99e6380232b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23285,fcdf6279-852a-4e72-8b7b-d99e6380232b,LIST_TRANSACTIONS,xs2aListTransactions,true 23286,fcdf6279-852a-4e72-8b7b-d99e6380232b,AUTHORIZATION,,true 23287,fcdf6279-852a-4e72-8b7b-d99e6380232b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23288,fcdf6279-852a-4e72-8b7b-d99e6380232b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23289,fcdf6279-852a-4e72-8b7b-d99e6380232b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23290,b860fb0e-6008-49ba-842a-b5a8aba40f08,LIST_ACCOUNTS,hbciListAccounts,false -23291,b860fb0e-6008-49ba-842a-b5a8aba40f08,LIST_TRANSACTIONS,hbciListTransactions,false -23292,b860fb0e-6008-49ba-842a-b5a8aba40f08,AUTHORIZATION,,false -23293,b860fb0e-6008-49ba-842a-b5a8aba40f08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23294,b860fb0e-6008-49ba-842a-b5a8aba40f08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23295,b860fb0e-6008-49ba-842a-b5a8aba40f08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23290,ea2474f2-8310-476a-af41-6e2c97909fbb,LIST_ACCOUNTS,hbciListAccounts,false +23291,ea2474f2-8310-476a-af41-6e2c97909fbb,LIST_TRANSACTIONS,hbciListTransactions,false +23292,ea2474f2-8310-476a-af41-6e2c97909fbb,AUTHORIZATION,,false +23293,ea2474f2-8310-476a-af41-6e2c97909fbb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23294,ea2474f2-8310-476a-af41-6e2c97909fbb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23295,ea2474f2-8310-476a-af41-6e2c97909fbb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23296,ad42e497-4bbe-475f-8c2c-736175f78a47,LIST_ACCOUNTS,xs2aListAccounts,true -23297,ad42e497-4bbe-475f-8c2c-736175f78a47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23297,ad42e497-4bbe-475f-8c2c-736175f78a47,LIST_TRANSACTIONS,xs2aListTransactions,true 23298,ad42e497-4bbe-475f-8c2c-736175f78a47,AUTHORIZATION,,true 23299,ad42e497-4bbe-475f-8c2c-736175f78a47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23300,ad42e497-4bbe-475f-8c2c-736175f78a47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23301,ad42e497-4bbe-475f-8c2c-736175f78a47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23302,1f65e5ff-ec00-484a-9537-788d26b2121c,LIST_ACCOUNTS,hbciListAccounts,false -23303,1f65e5ff-ec00-484a-9537-788d26b2121c,LIST_TRANSACTIONS,hbciListTransactions,false -23304,1f65e5ff-ec00-484a-9537-788d26b2121c,AUTHORIZATION,,false -23305,1f65e5ff-ec00-484a-9537-788d26b2121c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23306,1f65e5ff-ec00-484a-9537-788d26b2121c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23307,1f65e5ff-ec00-484a-9537-788d26b2121c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23302,bca417e2-03df-4cdb-b24f-561eef3b53dc,LIST_ACCOUNTS,hbciListAccounts,false +23303,bca417e2-03df-4cdb-b24f-561eef3b53dc,LIST_TRANSACTIONS,hbciListTransactions,false +23304,bca417e2-03df-4cdb-b24f-561eef3b53dc,AUTHORIZATION,,false +23305,bca417e2-03df-4cdb-b24f-561eef3b53dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23306,bca417e2-03df-4cdb-b24f-561eef3b53dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23307,bca417e2-03df-4cdb-b24f-561eef3b53dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23308,1b2422b2-a539-4776-8299-7a7128c74c78,LIST_ACCOUNTS,xs2aListAccounts,true -23309,1b2422b2-a539-4776-8299-7a7128c74c78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23309,1b2422b2-a539-4776-8299-7a7128c74c78,LIST_TRANSACTIONS,xs2aListTransactions,true 23310,1b2422b2-a539-4776-8299-7a7128c74c78,AUTHORIZATION,,true 23311,1b2422b2-a539-4776-8299-7a7128c74c78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23312,1b2422b2-a539-4776-8299-7a7128c74c78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23313,1b2422b2-a539-4776-8299-7a7128c74c78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23314,225b54e9-f69e-4a95-be3a-65b6e6348306,LIST_ACCOUNTS,hbciListAccounts,false -23315,225b54e9-f69e-4a95-be3a-65b6e6348306,LIST_TRANSACTIONS,hbciListTransactions,false -23316,225b54e9-f69e-4a95-be3a-65b6e6348306,AUTHORIZATION,,false -23317,225b54e9-f69e-4a95-be3a-65b6e6348306,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23318,225b54e9-f69e-4a95-be3a-65b6e6348306,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23319,225b54e9-f69e-4a95-be3a-65b6e6348306,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23314,054aaaff-dee3-47e3-a368-8ef8a5c18808,LIST_ACCOUNTS,hbciListAccounts,false +23315,054aaaff-dee3-47e3-a368-8ef8a5c18808,LIST_TRANSACTIONS,hbciListTransactions,false +23316,054aaaff-dee3-47e3-a368-8ef8a5c18808,AUTHORIZATION,,false +23317,054aaaff-dee3-47e3-a368-8ef8a5c18808,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23318,054aaaff-dee3-47e3-a368-8ef8a5c18808,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23319,054aaaff-dee3-47e3-a368-8ef8a5c18808,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23320,1a791e7a-0b98-463c-9da6-44bd1151bb63,LIST_ACCOUNTS,xs2aListAccounts,true -23321,1a791e7a-0b98-463c-9da6-44bd1151bb63,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23321,1a791e7a-0b98-463c-9da6-44bd1151bb63,LIST_TRANSACTIONS,xs2aListTransactions,true 23322,1a791e7a-0b98-463c-9da6-44bd1151bb63,AUTHORIZATION,,true 23323,1a791e7a-0b98-463c-9da6-44bd1151bb63,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23324,1a791e7a-0b98-463c-9da6-44bd1151bb63,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23325,1a791e7a-0b98-463c-9da6-44bd1151bb63,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23326,5104f309-dd6d-4ceb-86f7-d6fa40527e68,LIST_ACCOUNTS,hbciListAccounts,false -23327,5104f309-dd6d-4ceb-86f7-d6fa40527e68,LIST_TRANSACTIONS,hbciListTransactions,false -23328,5104f309-dd6d-4ceb-86f7-d6fa40527e68,AUTHORIZATION,,false -23329,5104f309-dd6d-4ceb-86f7-d6fa40527e68,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23330,5104f309-dd6d-4ceb-86f7-d6fa40527e68,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23331,5104f309-dd6d-4ceb-86f7-d6fa40527e68,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23326,707468f6-ba6f-4b78-84b1-6ff59934b86c,LIST_ACCOUNTS,hbciListAccounts,false +23327,707468f6-ba6f-4b78-84b1-6ff59934b86c,LIST_TRANSACTIONS,hbciListTransactions,false +23328,707468f6-ba6f-4b78-84b1-6ff59934b86c,AUTHORIZATION,,false +23329,707468f6-ba6f-4b78-84b1-6ff59934b86c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23330,707468f6-ba6f-4b78-84b1-6ff59934b86c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23331,707468f6-ba6f-4b78-84b1-6ff59934b86c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23332,6a7dbedf-a439-45c0-8fd6-9931da3ae51b,LIST_ACCOUNTS,xs2aListAccounts,true -23333,6a7dbedf-a439-45c0-8fd6-9931da3ae51b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23333,6a7dbedf-a439-45c0-8fd6-9931da3ae51b,LIST_TRANSACTIONS,xs2aListTransactions,true 23334,6a7dbedf-a439-45c0-8fd6-9931da3ae51b,AUTHORIZATION,,true 23335,6a7dbedf-a439-45c0-8fd6-9931da3ae51b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23336,6a7dbedf-a439-45c0-8fd6-9931da3ae51b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23337,6a7dbedf-a439-45c0-8fd6-9931da3ae51b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23338,276ecc32-484b-4417-91c7-c86774026cd7,LIST_ACCOUNTS,hbciListAccounts,false -23339,276ecc32-484b-4417-91c7-c86774026cd7,LIST_TRANSACTIONS,hbciListTransactions,false -23340,276ecc32-484b-4417-91c7-c86774026cd7,AUTHORIZATION,,false -23341,276ecc32-484b-4417-91c7-c86774026cd7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23342,276ecc32-484b-4417-91c7-c86774026cd7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23343,276ecc32-484b-4417-91c7-c86774026cd7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23338,e3e3e9e9-436b-4d13-835f-5759f1db8e50,LIST_ACCOUNTS,hbciListAccounts,false +23339,e3e3e9e9-436b-4d13-835f-5759f1db8e50,LIST_TRANSACTIONS,hbciListTransactions,false +23340,e3e3e9e9-436b-4d13-835f-5759f1db8e50,AUTHORIZATION,,false +23341,e3e3e9e9-436b-4d13-835f-5759f1db8e50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23342,e3e3e9e9-436b-4d13-835f-5759f1db8e50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23343,e3e3e9e9-436b-4d13-835f-5759f1db8e50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23344,db02a38b-70d2-44c5-9e9d-14ed53504115,LIST_ACCOUNTS,xs2aListAccounts,true -23345,db02a38b-70d2-44c5-9e9d-14ed53504115,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23345,db02a38b-70d2-44c5-9e9d-14ed53504115,LIST_TRANSACTIONS,xs2aListTransactions,true 23346,db02a38b-70d2-44c5-9e9d-14ed53504115,AUTHORIZATION,,true 23347,db02a38b-70d2-44c5-9e9d-14ed53504115,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23348,db02a38b-70d2-44c5-9e9d-14ed53504115,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23349,db02a38b-70d2-44c5-9e9d-14ed53504115,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23350,721fb5f4-1502-4560-8f60-8eef1be0a2a4,LIST_ACCOUNTS,hbciListAccounts,false -23351,721fb5f4-1502-4560-8f60-8eef1be0a2a4,LIST_TRANSACTIONS,hbciListTransactions,false -23352,721fb5f4-1502-4560-8f60-8eef1be0a2a4,AUTHORIZATION,,false -23353,721fb5f4-1502-4560-8f60-8eef1be0a2a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23354,721fb5f4-1502-4560-8f60-8eef1be0a2a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23355,721fb5f4-1502-4560-8f60-8eef1be0a2a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23350,71103fa6-3cfc-4d1f-8708-eb8511c79e72,LIST_ACCOUNTS,hbciListAccounts,false +23351,71103fa6-3cfc-4d1f-8708-eb8511c79e72,LIST_TRANSACTIONS,hbciListTransactions,false +23352,71103fa6-3cfc-4d1f-8708-eb8511c79e72,AUTHORIZATION,,false +23353,71103fa6-3cfc-4d1f-8708-eb8511c79e72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23354,71103fa6-3cfc-4d1f-8708-eb8511c79e72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23355,71103fa6-3cfc-4d1f-8708-eb8511c79e72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23356,23c5e9ba-14a6-4f57-a6d3-a45db9a1148f,LIST_ACCOUNTS,xs2aListAccounts,true -23357,23c5e9ba-14a6-4f57-a6d3-a45db9a1148f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23357,23c5e9ba-14a6-4f57-a6d3-a45db9a1148f,LIST_TRANSACTIONS,xs2aListTransactions,true 23358,23c5e9ba-14a6-4f57-a6d3-a45db9a1148f,AUTHORIZATION,,true 23359,23c5e9ba-14a6-4f57-a6d3-a45db9a1148f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23360,23c5e9ba-14a6-4f57-a6d3-a45db9a1148f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23361,23c5e9ba-14a6-4f57-a6d3-a45db9a1148f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23362,9d76e490-1a0f-4481-a216-74e64f158c4d,LIST_ACCOUNTS,hbciListAccounts,false -23363,9d76e490-1a0f-4481-a216-74e64f158c4d,LIST_TRANSACTIONS,hbciListTransactions,false -23364,9d76e490-1a0f-4481-a216-74e64f158c4d,AUTHORIZATION,,false -23365,9d76e490-1a0f-4481-a216-74e64f158c4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23366,9d76e490-1a0f-4481-a216-74e64f158c4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23367,9d76e490-1a0f-4481-a216-74e64f158c4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23362,635bebd3-f2d2-4ba4-918e-5a10729cabe0,LIST_ACCOUNTS,hbciListAccounts,false +23363,635bebd3-f2d2-4ba4-918e-5a10729cabe0,LIST_TRANSACTIONS,hbciListTransactions,false +23364,635bebd3-f2d2-4ba4-918e-5a10729cabe0,AUTHORIZATION,,false +23365,635bebd3-f2d2-4ba4-918e-5a10729cabe0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23366,635bebd3-f2d2-4ba4-918e-5a10729cabe0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23367,635bebd3-f2d2-4ba4-918e-5a10729cabe0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23368,e5c0d4b2-82a6-4a90-a91e-d37d731f9e2d,LIST_ACCOUNTS,xs2aListAccounts,true -23369,e5c0d4b2-82a6-4a90-a91e-d37d731f9e2d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23369,e5c0d4b2-82a6-4a90-a91e-d37d731f9e2d,LIST_TRANSACTIONS,xs2aListTransactions,true 23370,e5c0d4b2-82a6-4a90-a91e-d37d731f9e2d,AUTHORIZATION,,true 23371,e5c0d4b2-82a6-4a90-a91e-d37d731f9e2d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23372,e5c0d4b2-82a6-4a90-a91e-d37d731f9e2d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23373,e5c0d4b2-82a6-4a90-a91e-d37d731f9e2d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23374,b9274bd0-dab6-4516-96d4-6bbebc4371d0,LIST_ACCOUNTS,hbciListAccounts,false -23375,b9274bd0-dab6-4516-96d4-6bbebc4371d0,LIST_TRANSACTIONS,hbciListTransactions,false -23376,b9274bd0-dab6-4516-96d4-6bbebc4371d0,AUTHORIZATION,,false -23377,b9274bd0-dab6-4516-96d4-6bbebc4371d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23378,b9274bd0-dab6-4516-96d4-6bbebc4371d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23379,b9274bd0-dab6-4516-96d4-6bbebc4371d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23374,738d925e-72d6-4d31-a77d-1c4364441c71,LIST_ACCOUNTS,hbciListAccounts,false +23375,738d925e-72d6-4d31-a77d-1c4364441c71,LIST_TRANSACTIONS,hbciListTransactions,false +23376,738d925e-72d6-4d31-a77d-1c4364441c71,AUTHORIZATION,,false +23377,738d925e-72d6-4d31-a77d-1c4364441c71,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23378,738d925e-72d6-4d31-a77d-1c4364441c71,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23379,738d925e-72d6-4d31-a77d-1c4364441c71,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23380,20a5a142-2797-4c3b-ab40-d313b4ca7c77,LIST_ACCOUNTS,xs2aListAccounts,true -23381,20a5a142-2797-4c3b-ab40-d313b4ca7c77,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23381,20a5a142-2797-4c3b-ab40-d313b4ca7c77,LIST_TRANSACTIONS,xs2aListTransactions,true 23382,20a5a142-2797-4c3b-ab40-d313b4ca7c77,AUTHORIZATION,,true 23383,20a5a142-2797-4c3b-ab40-d313b4ca7c77,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23384,20a5a142-2797-4c3b-ab40-d313b4ca7c77,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23385,20a5a142-2797-4c3b-ab40-d313b4ca7c77,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23386,ea9e8cab-90a7-415f-9783-3c682416a339,LIST_ACCOUNTS,hbciListAccounts,false -23387,ea9e8cab-90a7-415f-9783-3c682416a339,LIST_TRANSACTIONS,hbciListTransactions,false -23388,ea9e8cab-90a7-415f-9783-3c682416a339,AUTHORIZATION,,false -23389,ea9e8cab-90a7-415f-9783-3c682416a339,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23390,ea9e8cab-90a7-415f-9783-3c682416a339,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23391,ea9e8cab-90a7-415f-9783-3c682416a339,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23386,0e5dd97e-09c8-4412-94d9-3bbbdad3ddec,LIST_ACCOUNTS,hbciListAccounts,false +23387,0e5dd97e-09c8-4412-94d9-3bbbdad3ddec,LIST_TRANSACTIONS,hbciListTransactions,false +23388,0e5dd97e-09c8-4412-94d9-3bbbdad3ddec,AUTHORIZATION,,false +23389,0e5dd97e-09c8-4412-94d9-3bbbdad3ddec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23390,0e5dd97e-09c8-4412-94d9-3bbbdad3ddec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23391,0e5dd97e-09c8-4412-94d9-3bbbdad3ddec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23392,12d559d4-be16-44f2-94d4-c46b94de6a30,LIST_ACCOUNTS,xs2aListAccounts,true -23393,12d559d4-be16-44f2-94d4-c46b94de6a30,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23393,12d559d4-be16-44f2-94d4-c46b94de6a30,LIST_TRANSACTIONS,xs2aListTransactions,true 23394,12d559d4-be16-44f2-94d4-c46b94de6a30,AUTHORIZATION,,true 23395,12d559d4-be16-44f2-94d4-c46b94de6a30,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23396,12d559d4-be16-44f2-94d4-c46b94de6a30,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23397,12d559d4-be16-44f2-94d4-c46b94de6a30,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23398,f0496265-4f47-4ada-91a2-0deb09464cf2,LIST_ACCOUNTS,hbciListAccounts,false -23399,f0496265-4f47-4ada-91a2-0deb09464cf2,LIST_TRANSACTIONS,hbciListTransactions,false -23400,f0496265-4f47-4ada-91a2-0deb09464cf2,AUTHORIZATION,,false -23401,f0496265-4f47-4ada-91a2-0deb09464cf2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23402,f0496265-4f47-4ada-91a2-0deb09464cf2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23403,f0496265-4f47-4ada-91a2-0deb09464cf2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23398,cf8f8edf-3791-4388-a1ca-21dac47daff2,LIST_ACCOUNTS,hbciListAccounts,false +23399,cf8f8edf-3791-4388-a1ca-21dac47daff2,LIST_TRANSACTIONS,hbciListTransactions,false +23400,cf8f8edf-3791-4388-a1ca-21dac47daff2,AUTHORIZATION,,false +23401,cf8f8edf-3791-4388-a1ca-21dac47daff2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23402,cf8f8edf-3791-4388-a1ca-21dac47daff2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23403,cf8f8edf-3791-4388-a1ca-21dac47daff2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23404,7448917d-467b-4480-bc0d-6d3accd0fc38,LIST_ACCOUNTS,xs2aListAccounts,true -23405,7448917d-467b-4480-bc0d-6d3accd0fc38,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23405,7448917d-467b-4480-bc0d-6d3accd0fc38,LIST_TRANSACTIONS,xs2aListTransactions,true 23406,7448917d-467b-4480-bc0d-6d3accd0fc38,AUTHORIZATION,,true 23407,7448917d-467b-4480-bc0d-6d3accd0fc38,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23408,7448917d-467b-4480-bc0d-6d3accd0fc38,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23409,7448917d-467b-4480-bc0d-6d3accd0fc38,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23410,d77a8011-645b-43d1-a777-7e9c68ac9e72,LIST_ACCOUNTS,hbciListAccounts,false -23411,d77a8011-645b-43d1-a777-7e9c68ac9e72,LIST_TRANSACTIONS,hbciListTransactions,false -23412,d77a8011-645b-43d1-a777-7e9c68ac9e72,AUTHORIZATION,,false -23413,d77a8011-645b-43d1-a777-7e9c68ac9e72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23414,d77a8011-645b-43d1-a777-7e9c68ac9e72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23415,d77a8011-645b-43d1-a777-7e9c68ac9e72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23410,8e94cc65-f11f-477c-95c5-b0475472d65a,LIST_ACCOUNTS,hbciListAccounts,false +23411,8e94cc65-f11f-477c-95c5-b0475472d65a,LIST_TRANSACTIONS,hbciListTransactions,false +23412,8e94cc65-f11f-477c-95c5-b0475472d65a,AUTHORIZATION,,false +23413,8e94cc65-f11f-477c-95c5-b0475472d65a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23414,8e94cc65-f11f-477c-95c5-b0475472d65a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23415,8e94cc65-f11f-477c-95c5-b0475472d65a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23416,40d4dc80-a9e3-4597-b9b4-0ae1d69f49a7,LIST_ACCOUNTS,xs2aListAccounts,true -23417,40d4dc80-a9e3-4597-b9b4-0ae1d69f49a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23417,40d4dc80-a9e3-4597-b9b4-0ae1d69f49a7,LIST_TRANSACTIONS,xs2aListTransactions,true 23418,40d4dc80-a9e3-4597-b9b4-0ae1d69f49a7,AUTHORIZATION,,true 23419,40d4dc80-a9e3-4597-b9b4-0ae1d69f49a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23420,40d4dc80-a9e3-4597-b9b4-0ae1d69f49a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23421,40d4dc80-a9e3-4597-b9b4-0ae1d69f49a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23422,13cb15a9-7823-456e-859c-f0477891caa3,LIST_ACCOUNTS,hbciListAccounts,false -23423,13cb15a9-7823-456e-859c-f0477891caa3,LIST_TRANSACTIONS,hbciListTransactions,false -23424,13cb15a9-7823-456e-859c-f0477891caa3,AUTHORIZATION,,false -23425,13cb15a9-7823-456e-859c-f0477891caa3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23426,13cb15a9-7823-456e-859c-f0477891caa3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23427,13cb15a9-7823-456e-859c-f0477891caa3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23422,dfe59f40-9fd3-4402-bd3b-312177e0dde0,LIST_ACCOUNTS,hbciListAccounts,false +23423,dfe59f40-9fd3-4402-bd3b-312177e0dde0,LIST_TRANSACTIONS,hbciListTransactions,false +23424,dfe59f40-9fd3-4402-bd3b-312177e0dde0,AUTHORIZATION,,false +23425,dfe59f40-9fd3-4402-bd3b-312177e0dde0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23426,dfe59f40-9fd3-4402-bd3b-312177e0dde0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23427,dfe59f40-9fd3-4402-bd3b-312177e0dde0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23428,5de6b0d5-a7bb-4e97-aafa-bf3a33ec9bbd,LIST_ACCOUNTS,xs2aListAccounts,true -23429,5de6b0d5-a7bb-4e97-aafa-bf3a33ec9bbd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23429,5de6b0d5-a7bb-4e97-aafa-bf3a33ec9bbd,LIST_TRANSACTIONS,xs2aListTransactions,true 23430,5de6b0d5-a7bb-4e97-aafa-bf3a33ec9bbd,AUTHORIZATION,,true 23431,5de6b0d5-a7bb-4e97-aafa-bf3a33ec9bbd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23432,5de6b0d5-a7bb-4e97-aafa-bf3a33ec9bbd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23433,5de6b0d5-a7bb-4e97-aafa-bf3a33ec9bbd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23434,8a3670fe-cd3a-4109-a7be-f266f9b5be2b,LIST_ACCOUNTS,hbciListAccounts,false -23435,8a3670fe-cd3a-4109-a7be-f266f9b5be2b,LIST_TRANSACTIONS,hbciListTransactions,false -23436,8a3670fe-cd3a-4109-a7be-f266f9b5be2b,AUTHORIZATION,,false -23437,8a3670fe-cd3a-4109-a7be-f266f9b5be2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23438,8a3670fe-cd3a-4109-a7be-f266f9b5be2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23439,8a3670fe-cd3a-4109-a7be-f266f9b5be2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23434,58d26695-ae5b-483c-b68c-80fba4c3e03e,LIST_ACCOUNTS,hbciListAccounts,false +23435,58d26695-ae5b-483c-b68c-80fba4c3e03e,LIST_TRANSACTIONS,hbciListTransactions,false +23436,58d26695-ae5b-483c-b68c-80fba4c3e03e,AUTHORIZATION,,false +23437,58d26695-ae5b-483c-b68c-80fba4c3e03e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23438,58d26695-ae5b-483c-b68c-80fba4c3e03e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23439,58d26695-ae5b-483c-b68c-80fba4c3e03e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23440,4220ab0e-69ee-422a-b8dc-b31a25331d9f,LIST_ACCOUNTS,xs2aListAccounts,true -23441,4220ab0e-69ee-422a-b8dc-b31a25331d9f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23441,4220ab0e-69ee-422a-b8dc-b31a25331d9f,LIST_TRANSACTIONS,xs2aListTransactions,true 23442,4220ab0e-69ee-422a-b8dc-b31a25331d9f,AUTHORIZATION,,true 23443,4220ab0e-69ee-422a-b8dc-b31a25331d9f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23444,4220ab0e-69ee-422a-b8dc-b31a25331d9f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23445,4220ab0e-69ee-422a-b8dc-b31a25331d9f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23446,af96fb81-1d6d-4292-8cd0-857ae98d2d7a,LIST_ACCOUNTS,hbciListAccounts,false -23447,af96fb81-1d6d-4292-8cd0-857ae98d2d7a,LIST_TRANSACTIONS,hbciListTransactions,false -23448,af96fb81-1d6d-4292-8cd0-857ae98d2d7a,AUTHORIZATION,,false -23449,af96fb81-1d6d-4292-8cd0-857ae98d2d7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23450,af96fb81-1d6d-4292-8cd0-857ae98d2d7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23451,af96fb81-1d6d-4292-8cd0-857ae98d2d7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23446,3cd207cb-e7f5-4c22-9649-178f36ba9ece,LIST_ACCOUNTS,hbciListAccounts,false +23447,3cd207cb-e7f5-4c22-9649-178f36ba9ece,LIST_TRANSACTIONS,hbciListTransactions,false +23448,3cd207cb-e7f5-4c22-9649-178f36ba9ece,AUTHORIZATION,,false +23449,3cd207cb-e7f5-4c22-9649-178f36ba9ece,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23450,3cd207cb-e7f5-4c22-9649-178f36ba9ece,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23451,3cd207cb-e7f5-4c22-9649-178f36ba9ece,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23452,db7d9cd6-c007-4195-9ab2-3194553e95e8,LIST_ACCOUNTS,xs2aListAccounts,true -23453,db7d9cd6-c007-4195-9ab2-3194553e95e8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23453,db7d9cd6-c007-4195-9ab2-3194553e95e8,LIST_TRANSACTIONS,xs2aListTransactions,true 23454,db7d9cd6-c007-4195-9ab2-3194553e95e8,AUTHORIZATION,,true 23455,db7d9cd6-c007-4195-9ab2-3194553e95e8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23456,db7d9cd6-c007-4195-9ab2-3194553e95e8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23457,db7d9cd6-c007-4195-9ab2-3194553e95e8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23458,04581c0b-2381-4949-8882-19be5c09896b,LIST_ACCOUNTS,hbciListAccounts,false -23459,04581c0b-2381-4949-8882-19be5c09896b,LIST_TRANSACTIONS,hbciListTransactions,false -23460,04581c0b-2381-4949-8882-19be5c09896b,AUTHORIZATION,,false -23461,04581c0b-2381-4949-8882-19be5c09896b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23462,04581c0b-2381-4949-8882-19be5c09896b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23463,04581c0b-2381-4949-8882-19be5c09896b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23458,de0ff2c6-bfa8-4ad9-a43c-4180597c52d3,LIST_ACCOUNTS,hbciListAccounts,false +23459,de0ff2c6-bfa8-4ad9-a43c-4180597c52d3,LIST_TRANSACTIONS,hbciListTransactions,false +23460,de0ff2c6-bfa8-4ad9-a43c-4180597c52d3,AUTHORIZATION,,false +23461,de0ff2c6-bfa8-4ad9-a43c-4180597c52d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23462,de0ff2c6-bfa8-4ad9-a43c-4180597c52d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23463,de0ff2c6-bfa8-4ad9-a43c-4180597c52d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23464,17f39a88-248f-4e76-b3c0-afcad6b96e47,LIST_ACCOUNTS,xs2aListAccounts,true -23465,17f39a88-248f-4e76-b3c0-afcad6b96e47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23465,17f39a88-248f-4e76-b3c0-afcad6b96e47,LIST_TRANSACTIONS,xs2aListTransactions,true 23466,17f39a88-248f-4e76-b3c0-afcad6b96e47,AUTHORIZATION,,true 23467,17f39a88-248f-4e76-b3c0-afcad6b96e47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23468,17f39a88-248f-4e76-b3c0-afcad6b96e47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23469,17f39a88-248f-4e76-b3c0-afcad6b96e47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23470,d5376cb7-cc7a-497a-a71f-d31d24d07e70,LIST_ACCOUNTS,hbciListAccounts,false -23471,d5376cb7-cc7a-497a-a71f-d31d24d07e70,LIST_TRANSACTIONS,hbciListTransactions,false -23472,d5376cb7-cc7a-497a-a71f-d31d24d07e70,AUTHORIZATION,,false -23473,d5376cb7-cc7a-497a-a71f-d31d24d07e70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23474,d5376cb7-cc7a-497a-a71f-d31d24d07e70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23475,d5376cb7-cc7a-497a-a71f-d31d24d07e70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23470,db6a3229-1533-4697-b415-26880ddd7be8,LIST_ACCOUNTS,hbciListAccounts,false +23471,db6a3229-1533-4697-b415-26880ddd7be8,LIST_TRANSACTIONS,hbciListTransactions,false +23472,db6a3229-1533-4697-b415-26880ddd7be8,AUTHORIZATION,,false +23473,db6a3229-1533-4697-b415-26880ddd7be8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23474,db6a3229-1533-4697-b415-26880ddd7be8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23475,db6a3229-1533-4697-b415-26880ddd7be8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23476,032982b7-cb22-465f-89ac-a8578bb64ee0,LIST_ACCOUNTS,xs2aListAccounts,true -23477,032982b7-cb22-465f-89ac-a8578bb64ee0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23477,032982b7-cb22-465f-89ac-a8578bb64ee0,LIST_TRANSACTIONS,xs2aListTransactions,true 23478,032982b7-cb22-465f-89ac-a8578bb64ee0,AUTHORIZATION,,true 23479,032982b7-cb22-465f-89ac-a8578bb64ee0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23480,032982b7-cb22-465f-89ac-a8578bb64ee0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23481,032982b7-cb22-465f-89ac-a8578bb64ee0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23482,44197611-88a5-4ce4-aa6e-deccaf2ac407,LIST_ACCOUNTS,hbciListAccounts,false -23483,44197611-88a5-4ce4-aa6e-deccaf2ac407,LIST_TRANSACTIONS,hbciListTransactions,false -23484,44197611-88a5-4ce4-aa6e-deccaf2ac407,AUTHORIZATION,,false -23485,44197611-88a5-4ce4-aa6e-deccaf2ac407,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23486,44197611-88a5-4ce4-aa6e-deccaf2ac407,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23487,44197611-88a5-4ce4-aa6e-deccaf2ac407,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23482,20f1090e-ba90-4a28-adfc-f34c890a5999,LIST_ACCOUNTS,hbciListAccounts,false +23483,20f1090e-ba90-4a28-adfc-f34c890a5999,LIST_TRANSACTIONS,hbciListTransactions,false +23484,20f1090e-ba90-4a28-adfc-f34c890a5999,AUTHORIZATION,,false +23485,20f1090e-ba90-4a28-adfc-f34c890a5999,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23486,20f1090e-ba90-4a28-adfc-f34c890a5999,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23487,20f1090e-ba90-4a28-adfc-f34c890a5999,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23488,fe4ac693-6898-48c8-b1ef-c7546447ea0b,LIST_ACCOUNTS,xs2aListAccounts,true -23489,fe4ac693-6898-48c8-b1ef-c7546447ea0b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23489,fe4ac693-6898-48c8-b1ef-c7546447ea0b,LIST_TRANSACTIONS,xs2aListTransactions,true 23490,fe4ac693-6898-48c8-b1ef-c7546447ea0b,AUTHORIZATION,,true 23491,fe4ac693-6898-48c8-b1ef-c7546447ea0b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23492,fe4ac693-6898-48c8-b1ef-c7546447ea0b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23493,fe4ac693-6898-48c8-b1ef-c7546447ea0b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23494,9eefefc0-9cdc-4bb3-839b-8bbe4ef77fa2,LIST_ACCOUNTS,hbciListAccounts,false -23495,9eefefc0-9cdc-4bb3-839b-8bbe4ef77fa2,LIST_TRANSACTIONS,hbciListTransactions,false -23496,9eefefc0-9cdc-4bb3-839b-8bbe4ef77fa2,AUTHORIZATION,,false -23497,9eefefc0-9cdc-4bb3-839b-8bbe4ef77fa2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23498,9eefefc0-9cdc-4bb3-839b-8bbe4ef77fa2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23499,9eefefc0-9cdc-4bb3-839b-8bbe4ef77fa2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23494,20bf0d9d-8b57-4a1c-8879-f8df44f45e43,LIST_ACCOUNTS,hbciListAccounts,false +23495,20bf0d9d-8b57-4a1c-8879-f8df44f45e43,LIST_TRANSACTIONS,hbciListTransactions,false +23496,20bf0d9d-8b57-4a1c-8879-f8df44f45e43,AUTHORIZATION,,false +23497,20bf0d9d-8b57-4a1c-8879-f8df44f45e43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23498,20bf0d9d-8b57-4a1c-8879-f8df44f45e43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23499,20bf0d9d-8b57-4a1c-8879-f8df44f45e43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23500,c057ee79-d52b-4220-bac9-46aabeb89970,LIST_ACCOUNTS,xs2aListAccounts,true -23501,c057ee79-d52b-4220-bac9-46aabeb89970,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23501,c057ee79-d52b-4220-bac9-46aabeb89970,LIST_TRANSACTIONS,xs2aListTransactions,true 23502,c057ee79-d52b-4220-bac9-46aabeb89970,AUTHORIZATION,,true 23503,c057ee79-d52b-4220-bac9-46aabeb89970,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23504,c057ee79-d52b-4220-bac9-46aabeb89970,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23505,c057ee79-d52b-4220-bac9-46aabeb89970,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23506,ae0c8b8d-0b5d-4b25-b6a2-93809254a421,LIST_ACCOUNTS,hbciListAccounts,false -23507,ae0c8b8d-0b5d-4b25-b6a2-93809254a421,LIST_TRANSACTIONS,hbciListTransactions,false -23508,ae0c8b8d-0b5d-4b25-b6a2-93809254a421,AUTHORIZATION,,false -23509,ae0c8b8d-0b5d-4b25-b6a2-93809254a421,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23510,ae0c8b8d-0b5d-4b25-b6a2-93809254a421,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23511,ae0c8b8d-0b5d-4b25-b6a2-93809254a421,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23506,4803b356-3586-4e34-afb3-90e375e7359b,LIST_ACCOUNTS,hbciListAccounts,false +23507,4803b356-3586-4e34-afb3-90e375e7359b,LIST_TRANSACTIONS,hbciListTransactions,false +23508,4803b356-3586-4e34-afb3-90e375e7359b,AUTHORIZATION,,false +23509,4803b356-3586-4e34-afb3-90e375e7359b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23510,4803b356-3586-4e34-afb3-90e375e7359b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23511,4803b356-3586-4e34-afb3-90e375e7359b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23512,49225fba-f5fb-4259-8341-11d881c374f1,LIST_ACCOUNTS,xs2aListAccounts,true -23513,49225fba-f5fb-4259-8341-11d881c374f1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23513,49225fba-f5fb-4259-8341-11d881c374f1,LIST_TRANSACTIONS,xs2aListTransactions,true 23514,49225fba-f5fb-4259-8341-11d881c374f1,AUTHORIZATION,,true 23515,49225fba-f5fb-4259-8341-11d881c374f1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23516,49225fba-f5fb-4259-8341-11d881c374f1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23517,49225fba-f5fb-4259-8341-11d881c374f1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23518,042c3444-9d2f-426b-bb65-a614947d8ce8,LIST_ACCOUNTS,hbciListAccounts,false -23519,042c3444-9d2f-426b-bb65-a614947d8ce8,LIST_TRANSACTIONS,hbciListTransactions,false -23520,042c3444-9d2f-426b-bb65-a614947d8ce8,AUTHORIZATION,,false -23521,042c3444-9d2f-426b-bb65-a614947d8ce8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23522,042c3444-9d2f-426b-bb65-a614947d8ce8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23523,042c3444-9d2f-426b-bb65-a614947d8ce8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23518,0f366618-551e-46a1-b190-c7eda14699c0,LIST_ACCOUNTS,hbciListAccounts,false +23519,0f366618-551e-46a1-b190-c7eda14699c0,LIST_TRANSACTIONS,hbciListTransactions,false +23520,0f366618-551e-46a1-b190-c7eda14699c0,AUTHORIZATION,,false +23521,0f366618-551e-46a1-b190-c7eda14699c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23522,0f366618-551e-46a1-b190-c7eda14699c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23523,0f366618-551e-46a1-b190-c7eda14699c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23524,2c1754a7-eb43-4aae-9fff-bf496059b908,LIST_ACCOUNTS,xs2aListAccounts,true -23525,2c1754a7-eb43-4aae-9fff-bf496059b908,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23525,2c1754a7-eb43-4aae-9fff-bf496059b908,LIST_TRANSACTIONS,xs2aListTransactions,true 23526,2c1754a7-eb43-4aae-9fff-bf496059b908,AUTHORIZATION,,true 23527,2c1754a7-eb43-4aae-9fff-bf496059b908,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23528,2c1754a7-eb43-4aae-9fff-bf496059b908,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23529,2c1754a7-eb43-4aae-9fff-bf496059b908,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23530,4b08aecc-8ac7-4f8c-afe6-740b39bb9d0f,LIST_ACCOUNTS,hbciListAccounts,false -23531,4b08aecc-8ac7-4f8c-afe6-740b39bb9d0f,LIST_TRANSACTIONS,hbciListTransactions,false -23532,4b08aecc-8ac7-4f8c-afe6-740b39bb9d0f,AUTHORIZATION,,false -23533,4b08aecc-8ac7-4f8c-afe6-740b39bb9d0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23534,4b08aecc-8ac7-4f8c-afe6-740b39bb9d0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23535,4b08aecc-8ac7-4f8c-afe6-740b39bb9d0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23530,90b419e2-6aab-4ab9-ae24-0f97fb5dab53,LIST_ACCOUNTS,hbciListAccounts,false +23531,90b419e2-6aab-4ab9-ae24-0f97fb5dab53,LIST_TRANSACTIONS,hbciListTransactions,false +23532,90b419e2-6aab-4ab9-ae24-0f97fb5dab53,AUTHORIZATION,,false +23533,90b419e2-6aab-4ab9-ae24-0f97fb5dab53,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23534,90b419e2-6aab-4ab9-ae24-0f97fb5dab53,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23535,90b419e2-6aab-4ab9-ae24-0f97fb5dab53,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23536,342ce834-f5bc-4e68-b6d0-545f3628a0a2,LIST_ACCOUNTS,xs2aListAccounts,true -23537,342ce834-f5bc-4e68-b6d0-545f3628a0a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23537,342ce834-f5bc-4e68-b6d0-545f3628a0a2,LIST_TRANSACTIONS,xs2aListTransactions,true 23538,342ce834-f5bc-4e68-b6d0-545f3628a0a2,AUTHORIZATION,,true 23539,342ce834-f5bc-4e68-b6d0-545f3628a0a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23540,342ce834-f5bc-4e68-b6d0-545f3628a0a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23541,342ce834-f5bc-4e68-b6d0-545f3628a0a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23542,5d6c649b-64e8-4b20-a17d-0bbd986d219e,LIST_ACCOUNTS,hbciListAccounts,false -23543,5d6c649b-64e8-4b20-a17d-0bbd986d219e,LIST_TRANSACTIONS,hbciListTransactions,false -23544,5d6c649b-64e8-4b20-a17d-0bbd986d219e,AUTHORIZATION,,false -23545,5d6c649b-64e8-4b20-a17d-0bbd986d219e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23546,5d6c649b-64e8-4b20-a17d-0bbd986d219e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23547,5d6c649b-64e8-4b20-a17d-0bbd986d219e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23542,5ce08eb0-7535-455a-88cb-2b5e9e95abfa,LIST_ACCOUNTS,hbciListAccounts,false +23543,5ce08eb0-7535-455a-88cb-2b5e9e95abfa,LIST_TRANSACTIONS,hbciListTransactions,false +23544,5ce08eb0-7535-455a-88cb-2b5e9e95abfa,AUTHORIZATION,,false +23545,5ce08eb0-7535-455a-88cb-2b5e9e95abfa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23546,5ce08eb0-7535-455a-88cb-2b5e9e95abfa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23547,5ce08eb0-7535-455a-88cb-2b5e9e95abfa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23548,c629c6e3-0c5d-4d7b-b5a5-53fd0c8703c4,LIST_ACCOUNTS,xs2aListAccounts,true -23549,c629c6e3-0c5d-4d7b-b5a5-53fd0c8703c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23549,c629c6e3-0c5d-4d7b-b5a5-53fd0c8703c4,LIST_TRANSACTIONS,xs2aListTransactions,true 23550,c629c6e3-0c5d-4d7b-b5a5-53fd0c8703c4,AUTHORIZATION,,true 23551,c629c6e3-0c5d-4d7b-b5a5-53fd0c8703c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23552,c629c6e3-0c5d-4d7b-b5a5-53fd0c8703c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23553,c629c6e3-0c5d-4d7b-b5a5-53fd0c8703c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23554,17025272-6c6f-4527-8c5b-a0e574696efd,LIST_ACCOUNTS,hbciListAccounts,false -23555,17025272-6c6f-4527-8c5b-a0e574696efd,LIST_TRANSACTIONS,hbciListTransactions,false -23556,17025272-6c6f-4527-8c5b-a0e574696efd,AUTHORIZATION,,false -23557,17025272-6c6f-4527-8c5b-a0e574696efd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23558,17025272-6c6f-4527-8c5b-a0e574696efd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23559,17025272-6c6f-4527-8c5b-a0e574696efd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23554,d9f4a10a-a32f-4d07-97cf-acc52caa0a7f,LIST_ACCOUNTS,hbciListAccounts,false +23555,d9f4a10a-a32f-4d07-97cf-acc52caa0a7f,LIST_TRANSACTIONS,hbciListTransactions,false +23556,d9f4a10a-a32f-4d07-97cf-acc52caa0a7f,AUTHORIZATION,,false +23557,d9f4a10a-a32f-4d07-97cf-acc52caa0a7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23558,d9f4a10a-a32f-4d07-97cf-acc52caa0a7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23559,d9f4a10a-a32f-4d07-97cf-acc52caa0a7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23560,8f771702-7c12-41ab-9d72-e5bc53b13dc1,LIST_ACCOUNTS,xs2aListAccounts,true -23561,8f771702-7c12-41ab-9d72-e5bc53b13dc1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23561,8f771702-7c12-41ab-9d72-e5bc53b13dc1,LIST_TRANSACTIONS,xs2aListTransactions,true 23562,8f771702-7c12-41ab-9d72-e5bc53b13dc1,AUTHORIZATION,,true 23563,8f771702-7c12-41ab-9d72-e5bc53b13dc1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23564,8f771702-7c12-41ab-9d72-e5bc53b13dc1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23565,8f771702-7c12-41ab-9d72-e5bc53b13dc1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23566,f5c2a012-6f51-4121-a09c-9641bee76bb0,LIST_ACCOUNTS,hbciListAccounts,false -23567,f5c2a012-6f51-4121-a09c-9641bee76bb0,LIST_TRANSACTIONS,hbciListTransactions,false -23568,f5c2a012-6f51-4121-a09c-9641bee76bb0,AUTHORIZATION,,false -23569,f5c2a012-6f51-4121-a09c-9641bee76bb0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23570,f5c2a012-6f51-4121-a09c-9641bee76bb0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23571,f5c2a012-6f51-4121-a09c-9641bee76bb0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23566,c7bc3ef5-c4ea-4006-bc44-1f2605e07a15,LIST_ACCOUNTS,hbciListAccounts,false +23567,c7bc3ef5-c4ea-4006-bc44-1f2605e07a15,LIST_TRANSACTIONS,hbciListTransactions,false +23568,c7bc3ef5-c4ea-4006-bc44-1f2605e07a15,AUTHORIZATION,,false +23569,c7bc3ef5-c4ea-4006-bc44-1f2605e07a15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23570,c7bc3ef5-c4ea-4006-bc44-1f2605e07a15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23571,c7bc3ef5-c4ea-4006-bc44-1f2605e07a15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23572,7c782667-2a9b-4f4f-8562-ead8aa4b2ea7,LIST_ACCOUNTS,xs2aListAccounts,true -23573,7c782667-2a9b-4f4f-8562-ead8aa4b2ea7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23573,7c782667-2a9b-4f4f-8562-ead8aa4b2ea7,LIST_TRANSACTIONS,xs2aListTransactions,true 23574,7c782667-2a9b-4f4f-8562-ead8aa4b2ea7,AUTHORIZATION,,true 23575,7c782667-2a9b-4f4f-8562-ead8aa4b2ea7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23576,7c782667-2a9b-4f4f-8562-ead8aa4b2ea7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23577,7c782667-2a9b-4f4f-8562-ead8aa4b2ea7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23578,4b8954d6-4b7f-49de-a4b6-53fefcb21c1d,LIST_ACCOUNTS,hbciListAccounts,false -23579,4b8954d6-4b7f-49de-a4b6-53fefcb21c1d,LIST_TRANSACTIONS,hbciListTransactions,false -23580,4b8954d6-4b7f-49de-a4b6-53fefcb21c1d,AUTHORIZATION,,false -23581,4b8954d6-4b7f-49de-a4b6-53fefcb21c1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23582,4b8954d6-4b7f-49de-a4b6-53fefcb21c1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23583,4b8954d6-4b7f-49de-a4b6-53fefcb21c1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23578,b25ec4bc-42aa-4f6d-a45a-66df0058ba15,LIST_ACCOUNTS,hbciListAccounts,false +23579,b25ec4bc-42aa-4f6d-a45a-66df0058ba15,LIST_TRANSACTIONS,hbciListTransactions,false +23580,b25ec4bc-42aa-4f6d-a45a-66df0058ba15,AUTHORIZATION,,false +23581,b25ec4bc-42aa-4f6d-a45a-66df0058ba15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23582,b25ec4bc-42aa-4f6d-a45a-66df0058ba15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23583,b25ec4bc-42aa-4f6d-a45a-66df0058ba15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23584,f070f1af-d1ea-48bc-b599-42991b311317,LIST_ACCOUNTS,xs2aListAccounts,true -23585,f070f1af-d1ea-48bc-b599-42991b311317,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23585,f070f1af-d1ea-48bc-b599-42991b311317,LIST_TRANSACTIONS,xs2aListTransactions,true 23586,f070f1af-d1ea-48bc-b599-42991b311317,AUTHORIZATION,,true 23587,f070f1af-d1ea-48bc-b599-42991b311317,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23588,f070f1af-d1ea-48bc-b599-42991b311317,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23589,f070f1af-d1ea-48bc-b599-42991b311317,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23590,bdba5039-436f-4748-aa30-152917090c89,LIST_ACCOUNTS,hbciListAccounts,false -23591,bdba5039-436f-4748-aa30-152917090c89,LIST_TRANSACTIONS,hbciListTransactions,false -23592,bdba5039-436f-4748-aa30-152917090c89,AUTHORIZATION,,false -23593,bdba5039-436f-4748-aa30-152917090c89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23594,bdba5039-436f-4748-aa30-152917090c89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23595,bdba5039-436f-4748-aa30-152917090c89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23590,5a9882a4-d7b8-4e0c-a573-88ee1ea39730,LIST_ACCOUNTS,hbciListAccounts,false +23591,5a9882a4-d7b8-4e0c-a573-88ee1ea39730,LIST_TRANSACTIONS,hbciListTransactions,false +23592,5a9882a4-d7b8-4e0c-a573-88ee1ea39730,AUTHORIZATION,,false +23593,5a9882a4-d7b8-4e0c-a573-88ee1ea39730,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23594,5a9882a4-d7b8-4e0c-a573-88ee1ea39730,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23595,5a9882a4-d7b8-4e0c-a573-88ee1ea39730,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23596,c6a0e3d8-8475-4cc3-903c-ed800a7ec17b,LIST_ACCOUNTS,xs2aListAccounts,true -23597,c6a0e3d8-8475-4cc3-903c-ed800a7ec17b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23597,c6a0e3d8-8475-4cc3-903c-ed800a7ec17b,LIST_TRANSACTIONS,xs2aListTransactions,true 23598,c6a0e3d8-8475-4cc3-903c-ed800a7ec17b,AUTHORIZATION,,true 23599,c6a0e3d8-8475-4cc3-903c-ed800a7ec17b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23600,c6a0e3d8-8475-4cc3-903c-ed800a7ec17b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23601,c6a0e3d8-8475-4cc3-903c-ed800a7ec17b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23602,579d9467-40c7-47d8-8b9c-a332702699b7,LIST_ACCOUNTS,hbciListAccounts,false -23603,579d9467-40c7-47d8-8b9c-a332702699b7,LIST_TRANSACTIONS,hbciListTransactions,false -23604,579d9467-40c7-47d8-8b9c-a332702699b7,AUTHORIZATION,,false -23605,579d9467-40c7-47d8-8b9c-a332702699b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23606,579d9467-40c7-47d8-8b9c-a332702699b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23607,579d9467-40c7-47d8-8b9c-a332702699b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23602,53cb832d-81a4-4ce2-818d-0d5ebe39edb3,LIST_ACCOUNTS,hbciListAccounts,false +23603,53cb832d-81a4-4ce2-818d-0d5ebe39edb3,LIST_TRANSACTIONS,hbciListTransactions,false +23604,53cb832d-81a4-4ce2-818d-0d5ebe39edb3,AUTHORIZATION,,false +23605,53cb832d-81a4-4ce2-818d-0d5ebe39edb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23606,53cb832d-81a4-4ce2-818d-0d5ebe39edb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23607,53cb832d-81a4-4ce2-818d-0d5ebe39edb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23608,b58e5528-b96b-4c45-8970-dcadc7f12397,LIST_ACCOUNTS,xs2aListAccounts,true -23609,b58e5528-b96b-4c45-8970-dcadc7f12397,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23609,b58e5528-b96b-4c45-8970-dcadc7f12397,LIST_TRANSACTIONS,xs2aListTransactions,true 23610,b58e5528-b96b-4c45-8970-dcadc7f12397,AUTHORIZATION,,true 23611,b58e5528-b96b-4c45-8970-dcadc7f12397,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23612,b58e5528-b96b-4c45-8970-dcadc7f12397,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23613,b58e5528-b96b-4c45-8970-dcadc7f12397,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23614,d9ef54d2-5b15-4823-a6a9-0d2224c3d1eb,LIST_ACCOUNTS,hbciListAccounts,false -23615,d9ef54d2-5b15-4823-a6a9-0d2224c3d1eb,LIST_TRANSACTIONS,hbciListTransactions,false -23616,d9ef54d2-5b15-4823-a6a9-0d2224c3d1eb,AUTHORIZATION,,false -23617,d9ef54d2-5b15-4823-a6a9-0d2224c3d1eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23618,d9ef54d2-5b15-4823-a6a9-0d2224c3d1eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23619,d9ef54d2-5b15-4823-a6a9-0d2224c3d1eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23614,ba8a1034-4751-4912-ba64-031aa7715309,LIST_ACCOUNTS,hbciListAccounts,false +23615,ba8a1034-4751-4912-ba64-031aa7715309,LIST_TRANSACTIONS,hbciListTransactions,false +23616,ba8a1034-4751-4912-ba64-031aa7715309,AUTHORIZATION,,false +23617,ba8a1034-4751-4912-ba64-031aa7715309,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23618,ba8a1034-4751-4912-ba64-031aa7715309,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23619,ba8a1034-4751-4912-ba64-031aa7715309,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23620,7aee4942-0483-4db2-9aeb-7ae8743cfdd5,LIST_ACCOUNTS,xs2aListAccounts,true -23621,7aee4942-0483-4db2-9aeb-7ae8743cfdd5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23621,7aee4942-0483-4db2-9aeb-7ae8743cfdd5,LIST_TRANSACTIONS,xs2aListTransactions,true 23622,7aee4942-0483-4db2-9aeb-7ae8743cfdd5,AUTHORIZATION,,true 23623,7aee4942-0483-4db2-9aeb-7ae8743cfdd5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23624,7aee4942-0483-4db2-9aeb-7ae8743cfdd5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23625,7aee4942-0483-4db2-9aeb-7ae8743cfdd5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23626,29b0d546-3e24-4119-8a80-756674f80738,LIST_ACCOUNTS,hbciListAccounts,false -23627,29b0d546-3e24-4119-8a80-756674f80738,LIST_TRANSACTIONS,hbciListTransactions,false -23628,29b0d546-3e24-4119-8a80-756674f80738,AUTHORIZATION,,false -23629,29b0d546-3e24-4119-8a80-756674f80738,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23630,29b0d546-3e24-4119-8a80-756674f80738,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23631,29b0d546-3e24-4119-8a80-756674f80738,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23626,4a611910-5109-4e1b-9186-39c03498ba17,LIST_ACCOUNTS,hbciListAccounts,false +23627,4a611910-5109-4e1b-9186-39c03498ba17,LIST_TRANSACTIONS,hbciListTransactions,false +23628,4a611910-5109-4e1b-9186-39c03498ba17,AUTHORIZATION,,false +23629,4a611910-5109-4e1b-9186-39c03498ba17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23630,4a611910-5109-4e1b-9186-39c03498ba17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23631,4a611910-5109-4e1b-9186-39c03498ba17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23632,206ed5fb-48fe-40ea-9d48-a97400e133b9,LIST_ACCOUNTS,xs2aListAccounts,true -23633,206ed5fb-48fe-40ea-9d48-a97400e133b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23633,206ed5fb-48fe-40ea-9d48-a97400e133b9,LIST_TRANSACTIONS,xs2aListTransactions,true 23634,206ed5fb-48fe-40ea-9d48-a97400e133b9,AUTHORIZATION,,true 23635,206ed5fb-48fe-40ea-9d48-a97400e133b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23636,206ed5fb-48fe-40ea-9d48-a97400e133b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23637,206ed5fb-48fe-40ea-9d48-a97400e133b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23638,dd077a52-34d8-452f-b783-4bda6fee253e,LIST_ACCOUNTS,hbciListAccounts,false -23639,dd077a52-34d8-452f-b783-4bda6fee253e,LIST_TRANSACTIONS,hbciListTransactions,false -23640,dd077a52-34d8-452f-b783-4bda6fee253e,AUTHORIZATION,,false -23641,dd077a52-34d8-452f-b783-4bda6fee253e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23642,dd077a52-34d8-452f-b783-4bda6fee253e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23643,dd077a52-34d8-452f-b783-4bda6fee253e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23638,237da713-6a23-4356-b214-2ebd2d814c5e,LIST_ACCOUNTS,hbciListAccounts,false +23639,237da713-6a23-4356-b214-2ebd2d814c5e,LIST_TRANSACTIONS,hbciListTransactions,false +23640,237da713-6a23-4356-b214-2ebd2d814c5e,AUTHORIZATION,,false +23641,237da713-6a23-4356-b214-2ebd2d814c5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23642,237da713-6a23-4356-b214-2ebd2d814c5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23643,237da713-6a23-4356-b214-2ebd2d814c5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23644,7514287a-9c91-4780-a2f6-0d8123c7e647,LIST_ACCOUNTS,xs2aListAccounts,true -23645,7514287a-9c91-4780-a2f6-0d8123c7e647,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23645,7514287a-9c91-4780-a2f6-0d8123c7e647,LIST_TRANSACTIONS,xs2aListTransactions,true 23646,7514287a-9c91-4780-a2f6-0d8123c7e647,AUTHORIZATION,,true 23647,7514287a-9c91-4780-a2f6-0d8123c7e647,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23648,7514287a-9c91-4780-a2f6-0d8123c7e647,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23649,7514287a-9c91-4780-a2f6-0d8123c7e647,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23650,fb0ebe22-b56d-429a-825a-a69368c1a8a0,LIST_ACCOUNTS,hbciListAccounts,false -23651,fb0ebe22-b56d-429a-825a-a69368c1a8a0,LIST_TRANSACTIONS,hbciListTransactions,false -23652,fb0ebe22-b56d-429a-825a-a69368c1a8a0,AUTHORIZATION,,false -23653,fb0ebe22-b56d-429a-825a-a69368c1a8a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23654,fb0ebe22-b56d-429a-825a-a69368c1a8a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23655,fb0ebe22-b56d-429a-825a-a69368c1a8a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23650,414c14ce-f14a-4c30-81bb-4a0ebca20384,LIST_ACCOUNTS,hbciListAccounts,false +23651,414c14ce-f14a-4c30-81bb-4a0ebca20384,LIST_TRANSACTIONS,hbciListTransactions,false +23652,414c14ce-f14a-4c30-81bb-4a0ebca20384,AUTHORIZATION,,false +23653,414c14ce-f14a-4c30-81bb-4a0ebca20384,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23654,414c14ce-f14a-4c30-81bb-4a0ebca20384,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23655,414c14ce-f14a-4c30-81bb-4a0ebca20384,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23656,bfdc387d-67aa-42d7-ac92-e438bdfb1921,LIST_ACCOUNTS,xs2aListAccounts,true -23657,bfdc387d-67aa-42d7-ac92-e438bdfb1921,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23657,bfdc387d-67aa-42d7-ac92-e438bdfb1921,LIST_TRANSACTIONS,xs2aListTransactions,true 23658,bfdc387d-67aa-42d7-ac92-e438bdfb1921,AUTHORIZATION,,true 23659,bfdc387d-67aa-42d7-ac92-e438bdfb1921,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23660,bfdc387d-67aa-42d7-ac92-e438bdfb1921,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23661,bfdc387d-67aa-42d7-ac92-e438bdfb1921,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23662,70ab1c42-c3e0-4a9d-8775-501b9086f848,LIST_ACCOUNTS,hbciListAccounts,false -23663,70ab1c42-c3e0-4a9d-8775-501b9086f848,LIST_TRANSACTIONS,hbciListTransactions,false -23664,70ab1c42-c3e0-4a9d-8775-501b9086f848,AUTHORIZATION,,false -23665,70ab1c42-c3e0-4a9d-8775-501b9086f848,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23666,70ab1c42-c3e0-4a9d-8775-501b9086f848,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23667,70ab1c42-c3e0-4a9d-8775-501b9086f848,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23662,480085e0-5c5d-4e91-bdc9-72ef1cf0f2cb,LIST_ACCOUNTS,hbciListAccounts,false +23663,480085e0-5c5d-4e91-bdc9-72ef1cf0f2cb,LIST_TRANSACTIONS,hbciListTransactions,false +23664,480085e0-5c5d-4e91-bdc9-72ef1cf0f2cb,AUTHORIZATION,,false +23665,480085e0-5c5d-4e91-bdc9-72ef1cf0f2cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23666,480085e0-5c5d-4e91-bdc9-72ef1cf0f2cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23667,480085e0-5c5d-4e91-bdc9-72ef1cf0f2cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23668,0e998460-e661-4218-b4ca-153e95cf957f,LIST_ACCOUNTS,xs2aListAccounts,true -23669,0e998460-e661-4218-b4ca-153e95cf957f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23669,0e998460-e661-4218-b4ca-153e95cf957f,LIST_TRANSACTIONS,xs2aListTransactions,true 23670,0e998460-e661-4218-b4ca-153e95cf957f,AUTHORIZATION,,true 23671,0e998460-e661-4218-b4ca-153e95cf957f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23672,0e998460-e661-4218-b4ca-153e95cf957f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23673,0e998460-e661-4218-b4ca-153e95cf957f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23674,aa59562e-5526-4b8b-95f8-eb8145c1dc86,LIST_ACCOUNTS,hbciListAccounts,false -23675,aa59562e-5526-4b8b-95f8-eb8145c1dc86,LIST_TRANSACTIONS,hbciListTransactions,false -23676,aa59562e-5526-4b8b-95f8-eb8145c1dc86,AUTHORIZATION,,false -23677,aa59562e-5526-4b8b-95f8-eb8145c1dc86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23678,aa59562e-5526-4b8b-95f8-eb8145c1dc86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23679,aa59562e-5526-4b8b-95f8-eb8145c1dc86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23674,4f11370b-4179-4f31-a6f1-39bc91c0e407,LIST_ACCOUNTS,hbciListAccounts,false +23675,4f11370b-4179-4f31-a6f1-39bc91c0e407,LIST_TRANSACTIONS,hbciListTransactions,false +23676,4f11370b-4179-4f31-a6f1-39bc91c0e407,AUTHORIZATION,,false +23677,4f11370b-4179-4f31-a6f1-39bc91c0e407,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23678,4f11370b-4179-4f31-a6f1-39bc91c0e407,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23679,4f11370b-4179-4f31-a6f1-39bc91c0e407,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23680,c1928069-4af0-445b-8788-906887844477,LIST_ACCOUNTS,xs2aListAccounts,true -23681,c1928069-4af0-445b-8788-906887844477,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23681,c1928069-4af0-445b-8788-906887844477,LIST_TRANSACTIONS,xs2aListTransactions,true 23682,c1928069-4af0-445b-8788-906887844477,AUTHORIZATION,,true 23683,c1928069-4af0-445b-8788-906887844477,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23684,c1928069-4af0-445b-8788-906887844477,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23685,c1928069-4af0-445b-8788-906887844477,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23686,299a08c5-3333-46ff-b56e-40591c185107,LIST_ACCOUNTS,hbciListAccounts,false -23687,299a08c5-3333-46ff-b56e-40591c185107,LIST_TRANSACTIONS,hbciListTransactions,false -23688,299a08c5-3333-46ff-b56e-40591c185107,AUTHORIZATION,,false -23689,299a08c5-3333-46ff-b56e-40591c185107,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23690,299a08c5-3333-46ff-b56e-40591c185107,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23691,299a08c5-3333-46ff-b56e-40591c185107,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23686,b505bd0a-4bd2-4623-a52c-f2a61a0c81b6,LIST_ACCOUNTS,hbciListAccounts,false +23687,b505bd0a-4bd2-4623-a52c-f2a61a0c81b6,LIST_TRANSACTIONS,hbciListTransactions,false +23688,b505bd0a-4bd2-4623-a52c-f2a61a0c81b6,AUTHORIZATION,,false +23689,b505bd0a-4bd2-4623-a52c-f2a61a0c81b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23690,b505bd0a-4bd2-4623-a52c-f2a61a0c81b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23691,b505bd0a-4bd2-4623-a52c-f2a61a0c81b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23692,bfb1582f-07a7-494b-bea1-04fad1459b3f,LIST_ACCOUNTS,xs2aListAccounts,true -23693,bfb1582f-07a7-494b-bea1-04fad1459b3f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23693,bfb1582f-07a7-494b-bea1-04fad1459b3f,LIST_TRANSACTIONS,xs2aListTransactions,true 23694,bfb1582f-07a7-494b-bea1-04fad1459b3f,AUTHORIZATION,,true 23695,bfb1582f-07a7-494b-bea1-04fad1459b3f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23696,bfb1582f-07a7-494b-bea1-04fad1459b3f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23697,bfb1582f-07a7-494b-bea1-04fad1459b3f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23698,0073d26d-a8c7-4374-bfb5-bc965c9252b6,LIST_ACCOUNTS,hbciListAccounts,false -23699,0073d26d-a8c7-4374-bfb5-bc965c9252b6,LIST_TRANSACTIONS,hbciListTransactions,false -23700,0073d26d-a8c7-4374-bfb5-bc965c9252b6,AUTHORIZATION,,false -23701,0073d26d-a8c7-4374-bfb5-bc965c9252b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23702,0073d26d-a8c7-4374-bfb5-bc965c9252b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23703,0073d26d-a8c7-4374-bfb5-bc965c9252b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23698,263919e5-635f-401b-9065-bed1b235478a,LIST_ACCOUNTS,hbciListAccounts,false +23699,263919e5-635f-401b-9065-bed1b235478a,LIST_TRANSACTIONS,hbciListTransactions,false +23700,263919e5-635f-401b-9065-bed1b235478a,AUTHORIZATION,,false +23701,263919e5-635f-401b-9065-bed1b235478a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23702,263919e5-635f-401b-9065-bed1b235478a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23703,263919e5-635f-401b-9065-bed1b235478a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23704,38389a27-70df-4324-b3b5-27dd298a8629,LIST_ACCOUNTS,xs2aListAccounts,true -23705,38389a27-70df-4324-b3b5-27dd298a8629,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23705,38389a27-70df-4324-b3b5-27dd298a8629,LIST_TRANSACTIONS,xs2aListTransactions,true 23706,38389a27-70df-4324-b3b5-27dd298a8629,AUTHORIZATION,,true 23707,38389a27-70df-4324-b3b5-27dd298a8629,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23708,38389a27-70df-4324-b3b5-27dd298a8629,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23709,38389a27-70df-4324-b3b5-27dd298a8629,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23710,3a02709d-c397-4be5-b107-9b151337334a,LIST_ACCOUNTS,hbciListAccounts,false -23711,3a02709d-c397-4be5-b107-9b151337334a,LIST_TRANSACTIONS,hbciListTransactions,false -23712,3a02709d-c397-4be5-b107-9b151337334a,AUTHORIZATION,,false -23713,3a02709d-c397-4be5-b107-9b151337334a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23714,3a02709d-c397-4be5-b107-9b151337334a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23715,3a02709d-c397-4be5-b107-9b151337334a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23710,1c5a4d63-b0d4-4ebf-9b8d-780b4600639e,LIST_ACCOUNTS,hbciListAccounts,false +23711,1c5a4d63-b0d4-4ebf-9b8d-780b4600639e,LIST_TRANSACTIONS,hbciListTransactions,false +23712,1c5a4d63-b0d4-4ebf-9b8d-780b4600639e,AUTHORIZATION,,false +23713,1c5a4d63-b0d4-4ebf-9b8d-780b4600639e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23714,1c5a4d63-b0d4-4ebf-9b8d-780b4600639e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23715,1c5a4d63-b0d4-4ebf-9b8d-780b4600639e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23716,4a2c062c-302c-43d3-8982-23eae3412516,LIST_ACCOUNTS,xs2aListAccounts,true -23717,4a2c062c-302c-43d3-8982-23eae3412516,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23717,4a2c062c-302c-43d3-8982-23eae3412516,LIST_TRANSACTIONS,xs2aListTransactions,true 23718,4a2c062c-302c-43d3-8982-23eae3412516,AUTHORIZATION,,true 23719,4a2c062c-302c-43d3-8982-23eae3412516,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23720,4a2c062c-302c-43d3-8982-23eae3412516,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23721,4a2c062c-302c-43d3-8982-23eae3412516,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23722,5ec01328-d950-4391-85b5-5a9cc00b876c,LIST_ACCOUNTS,hbciListAccounts,false -23723,5ec01328-d950-4391-85b5-5a9cc00b876c,LIST_TRANSACTIONS,hbciListTransactions,false -23724,5ec01328-d950-4391-85b5-5a9cc00b876c,AUTHORIZATION,,false -23725,5ec01328-d950-4391-85b5-5a9cc00b876c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23726,5ec01328-d950-4391-85b5-5a9cc00b876c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23727,5ec01328-d950-4391-85b5-5a9cc00b876c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23722,4f9079d3-989f-48e0-b4fb-7ada43ecc41f,LIST_ACCOUNTS,hbciListAccounts,false +23723,4f9079d3-989f-48e0-b4fb-7ada43ecc41f,LIST_TRANSACTIONS,hbciListTransactions,false +23724,4f9079d3-989f-48e0-b4fb-7ada43ecc41f,AUTHORIZATION,,false +23725,4f9079d3-989f-48e0-b4fb-7ada43ecc41f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23726,4f9079d3-989f-48e0-b4fb-7ada43ecc41f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23727,4f9079d3-989f-48e0-b4fb-7ada43ecc41f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23728,48a50185-04b5-4643-ac83-3ebb7b1c3bf4,LIST_ACCOUNTS,xs2aListAccounts,true -23729,48a50185-04b5-4643-ac83-3ebb7b1c3bf4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23729,48a50185-04b5-4643-ac83-3ebb7b1c3bf4,LIST_TRANSACTIONS,xs2aListTransactions,true 23730,48a50185-04b5-4643-ac83-3ebb7b1c3bf4,AUTHORIZATION,,true 23731,48a50185-04b5-4643-ac83-3ebb7b1c3bf4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23732,48a50185-04b5-4643-ac83-3ebb7b1c3bf4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23733,48a50185-04b5-4643-ac83-3ebb7b1c3bf4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23734,1eb68be8-a8a1-49bc-99e6-6ca1617bf084,LIST_ACCOUNTS,hbciListAccounts,false -23735,1eb68be8-a8a1-49bc-99e6-6ca1617bf084,LIST_TRANSACTIONS,hbciListTransactions,false -23736,1eb68be8-a8a1-49bc-99e6-6ca1617bf084,AUTHORIZATION,,false -23737,1eb68be8-a8a1-49bc-99e6-6ca1617bf084,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23738,1eb68be8-a8a1-49bc-99e6-6ca1617bf084,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23739,1eb68be8-a8a1-49bc-99e6-6ca1617bf084,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23734,f980e52b-5c1e-4169-b7f7-08cdde4a6ccc,LIST_ACCOUNTS,hbciListAccounts,false +23735,f980e52b-5c1e-4169-b7f7-08cdde4a6ccc,LIST_TRANSACTIONS,hbciListTransactions,false +23736,f980e52b-5c1e-4169-b7f7-08cdde4a6ccc,AUTHORIZATION,,false +23737,f980e52b-5c1e-4169-b7f7-08cdde4a6ccc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23738,f980e52b-5c1e-4169-b7f7-08cdde4a6ccc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23739,f980e52b-5c1e-4169-b7f7-08cdde4a6ccc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23740,1b9cdf24-e68b-4f65-9738-f331f246ace6,LIST_ACCOUNTS,xs2aListAccounts,true -23741,1b9cdf24-e68b-4f65-9738-f331f246ace6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23741,1b9cdf24-e68b-4f65-9738-f331f246ace6,LIST_TRANSACTIONS,xs2aListTransactions,true 23742,1b9cdf24-e68b-4f65-9738-f331f246ace6,AUTHORIZATION,,true 23743,1b9cdf24-e68b-4f65-9738-f331f246ace6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23744,1b9cdf24-e68b-4f65-9738-f331f246ace6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23745,1b9cdf24-e68b-4f65-9738-f331f246ace6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23746,f81c0534-f2eb-4549-b83c-716470b9c8e7,LIST_ACCOUNTS,hbciListAccounts,false -23747,f81c0534-f2eb-4549-b83c-716470b9c8e7,LIST_TRANSACTIONS,hbciListTransactions,false -23748,f81c0534-f2eb-4549-b83c-716470b9c8e7,AUTHORIZATION,,false -23749,f81c0534-f2eb-4549-b83c-716470b9c8e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23750,f81c0534-f2eb-4549-b83c-716470b9c8e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23751,f81c0534-f2eb-4549-b83c-716470b9c8e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23746,e491d239-83bc-45fd-a512-258fc90a62e8,LIST_ACCOUNTS,hbciListAccounts,false +23747,e491d239-83bc-45fd-a512-258fc90a62e8,LIST_TRANSACTIONS,hbciListTransactions,false +23748,e491d239-83bc-45fd-a512-258fc90a62e8,AUTHORIZATION,,false +23749,e491d239-83bc-45fd-a512-258fc90a62e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23750,e491d239-83bc-45fd-a512-258fc90a62e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23751,e491d239-83bc-45fd-a512-258fc90a62e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23752,6ee61f83-9f4c-413b-a95b-cf008574a1cd,LIST_ACCOUNTS,xs2aListAccounts,true -23753,6ee61f83-9f4c-413b-a95b-cf008574a1cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23753,6ee61f83-9f4c-413b-a95b-cf008574a1cd,LIST_TRANSACTIONS,xs2aListTransactions,true 23754,6ee61f83-9f4c-413b-a95b-cf008574a1cd,AUTHORIZATION,,true 23755,6ee61f83-9f4c-413b-a95b-cf008574a1cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23756,6ee61f83-9f4c-413b-a95b-cf008574a1cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23757,6ee61f83-9f4c-413b-a95b-cf008574a1cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23758,4561a072-dcda-4b55-96e1-f22cfdf8cda2,LIST_ACCOUNTS,hbciListAccounts,false -23759,4561a072-dcda-4b55-96e1-f22cfdf8cda2,LIST_TRANSACTIONS,hbciListTransactions,false -23760,4561a072-dcda-4b55-96e1-f22cfdf8cda2,AUTHORIZATION,,false -23761,4561a072-dcda-4b55-96e1-f22cfdf8cda2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23762,4561a072-dcda-4b55-96e1-f22cfdf8cda2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23763,4561a072-dcda-4b55-96e1-f22cfdf8cda2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23758,a809be88-dc18-4901-a873-434f6548ad98,LIST_ACCOUNTS,hbciListAccounts,false +23759,a809be88-dc18-4901-a873-434f6548ad98,LIST_TRANSACTIONS,hbciListTransactions,false +23760,a809be88-dc18-4901-a873-434f6548ad98,AUTHORIZATION,,false +23761,a809be88-dc18-4901-a873-434f6548ad98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23762,a809be88-dc18-4901-a873-434f6548ad98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23763,a809be88-dc18-4901-a873-434f6548ad98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23764,3e3d2e26-1881-4c6c-a908-27e72ed6402d,LIST_ACCOUNTS,xs2aListAccounts,true -23765,3e3d2e26-1881-4c6c-a908-27e72ed6402d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23765,3e3d2e26-1881-4c6c-a908-27e72ed6402d,LIST_TRANSACTIONS,xs2aListTransactions,true 23766,3e3d2e26-1881-4c6c-a908-27e72ed6402d,AUTHORIZATION,,true 23767,3e3d2e26-1881-4c6c-a908-27e72ed6402d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23768,3e3d2e26-1881-4c6c-a908-27e72ed6402d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23769,3e3d2e26-1881-4c6c-a908-27e72ed6402d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23770,3f364775-9cf9-4631-b15b-dd63db3dd9c8,LIST_ACCOUNTS,hbciListAccounts,false -23771,3f364775-9cf9-4631-b15b-dd63db3dd9c8,LIST_TRANSACTIONS,hbciListTransactions,false -23772,3f364775-9cf9-4631-b15b-dd63db3dd9c8,AUTHORIZATION,,false -23773,3f364775-9cf9-4631-b15b-dd63db3dd9c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23774,3f364775-9cf9-4631-b15b-dd63db3dd9c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23775,3f364775-9cf9-4631-b15b-dd63db3dd9c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23770,9fc0f54f-dbf6-4774-9508-d800e3c961cf,LIST_ACCOUNTS,hbciListAccounts,false +23771,9fc0f54f-dbf6-4774-9508-d800e3c961cf,LIST_TRANSACTIONS,hbciListTransactions,false +23772,9fc0f54f-dbf6-4774-9508-d800e3c961cf,AUTHORIZATION,,false +23773,9fc0f54f-dbf6-4774-9508-d800e3c961cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23774,9fc0f54f-dbf6-4774-9508-d800e3c961cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23775,9fc0f54f-dbf6-4774-9508-d800e3c961cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23776,2c2d1278-7709-45f6-8dad-55b413e5c45d,LIST_ACCOUNTS,xs2aListAccounts,true -23777,2c2d1278-7709-45f6-8dad-55b413e5c45d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23777,2c2d1278-7709-45f6-8dad-55b413e5c45d,LIST_TRANSACTIONS,xs2aListTransactions,true 23778,2c2d1278-7709-45f6-8dad-55b413e5c45d,AUTHORIZATION,,true 23779,2c2d1278-7709-45f6-8dad-55b413e5c45d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23780,2c2d1278-7709-45f6-8dad-55b413e5c45d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23781,2c2d1278-7709-45f6-8dad-55b413e5c45d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23782,725a5bc1-3d4b-4498-af79-0166261b8a77,LIST_ACCOUNTS,hbciListAccounts,false -23783,725a5bc1-3d4b-4498-af79-0166261b8a77,LIST_TRANSACTIONS,hbciListTransactions,false -23784,725a5bc1-3d4b-4498-af79-0166261b8a77,AUTHORIZATION,,false -23785,725a5bc1-3d4b-4498-af79-0166261b8a77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23786,725a5bc1-3d4b-4498-af79-0166261b8a77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23787,725a5bc1-3d4b-4498-af79-0166261b8a77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23782,e77f7fea-758b-4028-bc74-016ca0a8ccad,LIST_ACCOUNTS,hbciListAccounts,false +23783,e77f7fea-758b-4028-bc74-016ca0a8ccad,LIST_TRANSACTIONS,hbciListTransactions,false +23784,e77f7fea-758b-4028-bc74-016ca0a8ccad,AUTHORIZATION,,false +23785,e77f7fea-758b-4028-bc74-016ca0a8ccad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23786,e77f7fea-758b-4028-bc74-016ca0a8ccad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23787,e77f7fea-758b-4028-bc74-016ca0a8ccad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23788,a18ae84d-e773-49ed-9ce1-f817509a6cfb,LIST_ACCOUNTS,xs2aListAccounts,true -23789,a18ae84d-e773-49ed-9ce1-f817509a6cfb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23789,a18ae84d-e773-49ed-9ce1-f817509a6cfb,LIST_TRANSACTIONS,xs2aListTransactions,true 23790,a18ae84d-e773-49ed-9ce1-f817509a6cfb,AUTHORIZATION,,true 23791,a18ae84d-e773-49ed-9ce1-f817509a6cfb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23792,a18ae84d-e773-49ed-9ce1-f817509a6cfb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23793,a18ae84d-e773-49ed-9ce1-f817509a6cfb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23794,218a51db-24f9-49a0-b207-cca8967e5f2a,LIST_ACCOUNTS,hbciListAccounts,false -23795,218a51db-24f9-49a0-b207-cca8967e5f2a,LIST_TRANSACTIONS,hbciListTransactions,false -23796,218a51db-24f9-49a0-b207-cca8967e5f2a,AUTHORIZATION,,false -23797,218a51db-24f9-49a0-b207-cca8967e5f2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23798,218a51db-24f9-49a0-b207-cca8967e5f2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23799,218a51db-24f9-49a0-b207-cca8967e5f2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23794,eb73275f-1428-4363-a9a4-e533833f2e46,LIST_ACCOUNTS,hbciListAccounts,false +23795,eb73275f-1428-4363-a9a4-e533833f2e46,LIST_TRANSACTIONS,hbciListTransactions,false +23796,eb73275f-1428-4363-a9a4-e533833f2e46,AUTHORIZATION,,false +23797,eb73275f-1428-4363-a9a4-e533833f2e46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23798,eb73275f-1428-4363-a9a4-e533833f2e46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23799,eb73275f-1428-4363-a9a4-e533833f2e46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23800,841668f9-0b68-4b94-bd0b-eaf60a6a2b04,LIST_ACCOUNTS,xs2aListAccounts,true -23801,841668f9-0b68-4b94-bd0b-eaf60a6a2b04,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23801,841668f9-0b68-4b94-bd0b-eaf60a6a2b04,LIST_TRANSACTIONS,xs2aListTransactions,true 23802,841668f9-0b68-4b94-bd0b-eaf60a6a2b04,AUTHORIZATION,,true 23803,841668f9-0b68-4b94-bd0b-eaf60a6a2b04,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23804,841668f9-0b68-4b94-bd0b-eaf60a6a2b04,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23805,841668f9-0b68-4b94-bd0b-eaf60a6a2b04,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23806,8e90b4f8-4044-4a16-8732-ff4c3d0120f5,LIST_ACCOUNTS,hbciListAccounts,false -23807,8e90b4f8-4044-4a16-8732-ff4c3d0120f5,LIST_TRANSACTIONS,hbciListTransactions,false -23808,8e90b4f8-4044-4a16-8732-ff4c3d0120f5,AUTHORIZATION,,false -23809,8e90b4f8-4044-4a16-8732-ff4c3d0120f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23810,8e90b4f8-4044-4a16-8732-ff4c3d0120f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23811,8e90b4f8-4044-4a16-8732-ff4c3d0120f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23806,91106064-0383-40c3-8099-d336b6fb471a,LIST_ACCOUNTS,hbciListAccounts,false +23807,91106064-0383-40c3-8099-d336b6fb471a,LIST_TRANSACTIONS,hbciListTransactions,false +23808,91106064-0383-40c3-8099-d336b6fb471a,AUTHORIZATION,,false +23809,91106064-0383-40c3-8099-d336b6fb471a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23810,91106064-0383-40c3-8099-d336b6fb471a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23811,91106064-0383-40c3-8099-d336b6fb471a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23812,fca538a3-d950-467c-bbc2-6461a1546169,LIST_ACCOUNTS,xs2aListAccounts,true -23813,fca538a3-d950-467c-bbc2-6461a1546169,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23813,fca538a3-d950-467c-bbc2-6461a1546169,LIST_TRANSACTIONS,xs2aListTransactions,true 23814,fca538a3-d950-467c-bbc2-6461a1546169,AUTHORIZATION,,true 23815,fca538a3-d950-467c-bbc2-6461a1546169,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23816,fca538a3-d950-467c-bbc2-6461a1546169,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23817,fca538a3-d950-467c-bbc2-6461a1546169,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23818,67c941b2-e888-465b-8b34-7a8695e0649b,LIST_ACCOUNTS,hbciListAccounts,false -23819,67c941b2-e888-465b-8b34-7a8695e0649b,LIST_TRANSACTIONS,hbciListTransactions,false -23820,67c941b2-e888-465b-8b34-7a8695e0649b,AUTHORIZATION,,false -23821,67c941b2-e888-465b-8b34-7a8695e0649b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23822,67c941b2-e888-465b-8b34-7a8695e0649b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23823,67c941b2-e888-465b-8b34-7a8695e0649b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23818,82bcc399-edda-45a1-b5a2-29c4ab07c87d,LIST_ACCOUNTS,hbciListAccounts,false +23819,82bcc399-edda-45a1-b5a2-29c4ab07c87d,LIST_TRANSACTIONS,hbciListTransactions,false +23820,82bcc399-edda-45a1-b5a2-29c4ab07c87d,AUTHORIZATION,,false +23821,82bcc399-edda-45a1-b5a2-29c4ab07c87d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23822,82bcc399-edda-45a1-b5a2-29c4ab07c87d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23823,82bcc399-edda-45a1-b5a2-29c4ab07c87d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23824,aa8711ed-efa1-42a6-9515-5b01d92fe756,LIST_ACCOUNTS,xs2aListAccounts,true -23825,aa8711ed-efa1-42a6-9515-5b01d92fe756,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23825,aa8711ed-efa1-42a6-9515-5b01d92fe756,LIST_TRANSACTIONS,xs2aListTransactions,true 23826,aa8711ed-efa1-42a6-9515-5b01d92fe756,AUTHORIZATION,,true 23827,aa8711ed-efa1-42a6-9515-5b01d92fe756,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23828,aa8711ed-efa1-42a6-9515-5b01d92fe756,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23829,aa8711ed-efa1-42a6-9515-5b01d92fe756,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23830,7b722da7-f7ab-4adc-9dc7-b644975306d4,LIST_ACCOUNTS,hbciListAccounts,false -23831,7b722da7-f7ab-4adc-9dc7-b644975306d4,LIST_TRANSACTIONS,hbciListTransactions,false -23832,7b722da7-f7ab-4adc-9dc7-b644975306d4,AUTHORIZATION,,false -23833,7b722da7-f7ab-4adc-9dc7-b644975306d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23834,7b722da7-f7ab-4adc-9dc7-b644975306d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23835,7b722da7-f7ab-4adc-9dc7-b644975306d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23830,16070355-c1bc-4ed6-a4d7-359aa5641870,LIST_ACCOUNTS,hbciListAccounts,false +23831,16070355-c1bc-4ed6-a4d7-359aa5641870,LIST_TRANSACTIONS,hbciListTransactions,false +23832,16070355-c1bc-4ed6-a4d7-359aa5641870,AUTHORIZATION,,false +23833,16070355-c1bc-4ed6-a4d7-359aa5641870,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23834,16070355-c1bc-4ed6-a4d7-359aa5641870,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23835,16070355-c1bc-4ed6-a4d7-359aa5641870,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23836,7a83d966-e8bf-40dd-912c-a10daa2e02d6,LIST_ACCOUNTS,xs2aListAccounts,true -23837,7a83d966-e8bf-40dd-912c-a10daa2e02d6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23837,7a83d966-e8bf-40dd-912c-a10daa2e02d6,LIST_TRANSACTIONS,xs2aListTransactions,true 23838,7a83d966-e8bf-40dd-912c-a10daa2e02d6,AUTHORIZATION,,true 23839,7a83d966-e8bf-40dd-912c-a10daa2e02d6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23840,7a83d966-e8bf-40dd-912c-a10daa2e02d6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23841,7a83d966-e8bf-40dd-912c-a10daa2e02d6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23842,cab5fb1f-f9b6-4f53-96c1-7c3d48acce5c,LIST_ACCOUNTS,hbciListAccounts,false -23843,cab5fb1f-f9b6-4f53-96c1-7c3d48acce5c,LIST_TRANSACTIONS,hbciListTransactions,false -23844,cab5fb1f-f9b6-4f53-96c1-7c3d48acce5c,AUTHORIZATION,,false -23845,cab5fb1f-f9b6-4f53-96c1-7c3d48acce5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23846,cab5fb1f-f9b6-4f53-96c1-7c3d48acce5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23847,cab5fb1f-f9b6-4f53-96c1-7c3d48acce5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23842,52ba3988-41dc-4d05-a193-7bc14cc7a929,LIST_ACCOUNTS,hbciListAccounts,false +23843,52ba3988-41dc-4d05-a193-7bc14cc7a929,LIST_TRANSACTIONS,hbciListTransactions,false +23844,52ba3988-41dc-4d05-a193-7bc14cc7a929,AUTHORIZATION,,false +23845,52ba3988-41dc-4d05-a193-7bc14cc7a929,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23846,52ba3988-41dc-4d05-a193-7bc14cc7a929,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23847,52ba3988-41dc-4d05-a193-7bc14cc7a929,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23848,24d53d32-d7b2-4f01-95ba-a611b03eb452,LIST_ACCOUNTS,xs2aListAccounts,true -23849,24d53d32-d7b2-4f01-95ba-a611b03eb452,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23849,24d53d32-d7b2-4f01-95ba-a611b03eb452,LIST_TRANSACTIONS,xs2aListTransactions,true 23850,24d53d32-d7b2-4f01-95ba-a611b03eb452,AUTHORIZATION,,true 23851,24d53d32-d7b2-4f01-95ba-a611b03eb452,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23852,24d53d32-d7b2-4f01-95ba-a611b03eb452,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23853,24d53d32-d7b2-4f01-95ba-a611b03eb452,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23854,1c29d3ee-22f8-4c30-9a31-7f8415562f7e,LIST_ACCOUNTS,hbciListAccounts,false -23855,1c29d3ee-22f8-4c30-9a31-7f8415562f7e,LIST_TRANSACTIONS,hbciListTransactions,false -23856,1c29d3ee-22f8-4c30-9a31-7f8415562f7e,AUTHORIZATION,,false -23857,1c29d3ee-22f8-4c30-9a31-7f8415562f7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23858,1c29d3ee-22f8-4c30-9a31-7f8415562f7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23859,1c29d3ee-22f8-4c30-9a31-7f8415562f7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23854,a3e97b04-85a4-47a5-80b8-5fee59695240,LIST_ACCOUNTS,hbciListAccounts,false +23855,a3e97b04-85a4-47a5-80b8-5fee59695240,LIST_TRANSACTIONS,hbciListTransactions,false +23856,a3e97b04-85a4-47a5-80b8-5fee59695240,AUTHORIZATION,,false +23857,a3e97b04-85a4-47a5-80b8-5fee59695240,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23858,a3e97b04-85a4-47a5-80b8-5fee59695240,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23859,a3e97b04-85a4-47a5-80b8-5fee59695240,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23860,3f0476e0-315f-4681-b467-3e138560de72,LIST_ACCOUNTS,xs2aListAccounts,true -23861,3f0476e0-315f-4681-b467-3e138560de72,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23861,3f0476e0-315f-4681-b467-3e138560de72,LIST_TRANSACTIONS,xs2aListTransactions,true 23862,3f0476e0-315f-4681-b467-3e138560de72,AUTHORIZATION,,true 23863,3f0476e0-315f-4681-b467-3e138560de72,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23864,3f0476e0-315f-4681-b467-3e138560de72,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23865,3f0476e0-315f-4681-b467-3e138560de72,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23866,d77b4adb-a5bd-41f5-9f13-e750ce8d9e51,LIST_ACCOUNTS,hbciListAccounts,false -23867,d77b4adb-a5bd-41f5-9f13-e750ce8d9e51,LIST_TRANSACTIONS,hbciListTransactions,false -23868,d77b4adb-a5bd-41f5-9f13-e750ce8d9e51,AUTHORIZATION,,false -23869,d77b4adb-a5bd-41f5-9f13-e750ce8d9e51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23870,d77b4adb-a5bd-41f5-9f13-e750ce8d9e51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23871,d77b4adb-a5bd-41f5-9f13-e750ce8d9e51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23866,c9cb18d0-6107-4419-81ff-e7ca06c4d0b4,LIST_ACCOUNTS,hbciListAccounts,false +23867,c9cb18d0-6107-4419-81ff-e7ca06c4d0b4,LIST_TRANSACTIONS,hbciListTransactions,false +23868,c9cb18d0-6107-4419-81ff-e7ca06c4d0b4,AUTHORIZATION,,false +23869,c9cb18d0-6107-4419-81ff-e7ca06c4d0b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23870,c9cb18d0-6107-4419-81ff-e7ca06c4d0b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23871,c9cb18d0-6107-4419-81ff-e7ca06c4d0b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23872,1a49fe9a-5aac-4a40-86db-e887c72fd52e,LIST_ACCOUNTS,xs2aListAccounts,true -23873,1a49fe9a-5aac-4a40-86db-e887c72fd52e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23873,1a49fe9a-5aac-4a40-86db-e887c72fd52e,LIST_TRANSACTIONS,xs2aListTransactions,true 23874,1a49fe9a-5aac-4a40-86db-e887c72fd52e,AUTHORIZATION,,true 23875,1a49fe9a-5aac-4a40-86db-e887c72fd52e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23876,1a49fe9a-5aac-4a40-86db-e887c72fd52e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23877,1a49fe9a-5aac-4a40-86db-e887c72fd52e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23878,4f19c0ee-9e31-4c13-b6f9-7646480d5a2b,LIST_ACCOUNTS,hbciListAccounts,false -23879,4f19c0ee-9e31-4c13-b6f9-7646480d5a2b,LIST_TRANSACTIONS,hbciListTransactions,false -23880,4f19c0ee-9e31-4c13-b6f9-7646480d5a2b,AUTHORIZATION,,false -23881,4f19c0ee-9e31-4c13-b6f9-7646480d5a2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23882,4f19c0ee-9e31-4c13-b6f9-7646480d5a2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23883,4f19c0ee-9e31-4c13-b6f9-7646480d5a2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23878,30001e30-5862-4cf1-8998-c455a04b26f4,LIST_ACCOUNTS,hbciListAccounts,false +23879,30001e30-5862-4cf1-8998-c455a04b26f4,LIST_TRANSACTIONS,hbciListTransactions,false +23880,30001e30-5862-4cf1-8998-c455a04b26f4,AUTHORIZATION,,false +23881,30001e30-5862-4cf1-8998-c455a04b26f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23882,30001e30-5862-4cf1-8998-c455a04b26f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23883,30001e30-5862-4cf1-8998-c455a04b26f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23884,b7d95f51-d869-4b99-a493-ca3f3cdb5d51,LIST_ACCOUNTS,xs2aListAccounts,true -23885,b7d95f51-d869-4b99-a493-ca3f3cdb5d51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23885,b7d95f51-d869-4b99-a493-ca3f3cdb5d51,LIST_TRANSACTIONS,xs2aListTransactions,true 23886,b7d95f51-d869-4b99-a493-ca3f3cdb5d51,AUTHORIZATION,,true 23887,b7d95f51-d869-4b99-a493-ca3f3cdb5d51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23888,b7d95f51-d869-4b99-a493-ca3f3cdb5d51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23889,b7d95f51-d869-4b99-a493-ca3f3cdb5d51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23890,72a5b147-3c7e-4041-aab3-06b864cc2278,LIST_ACCOUNTS,hbciListAccounts,false -23891,72a5b147-3c7e-4041-aab3-06b864cc2278,LIST_TRANSACTIONS,hbciListTransactions,false -23892,72a5b147-3c7e-4041-aab3-06b864cc2278,AUTHORIZATION,,false -23893,72a5b147-3c7e-4041-aab3-06b864cc2278,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23894,72a5b147-3c7e-4041-aab3-06b864cc2278,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23895,72a5b147-3c7e-4041-aab3-06b864cc2278,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23890,61a8c2e2-7b57-4294-a69f-ce663e7a5f81,LIST_ACCOUNTS,hbciListAccounts,false +23891,61a8c2e2-7b57-4294-a69f-ce663e7a5f81,LIST_TRANSACTIONS,hbciListTransactions,false +23892,61a8c2e2-7b57-4294-a69f-ce663e7a5f81,AUTHORIZATION,,false +23893,61a8c2e2-7b57-4294-a69f-ce663e7a5f81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23894,61a8c2e2-7b57-4294-a69f-ce663e7a5f81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23895,61a8c2e2-7b57-4294-a69f-ce663e7a5f81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23896,8be040fb-873b-441d-ae36-d24b16572cfb,LIST_ACCOUNTS,xs2aListAccounts,true -23897,8be040fb-873b-441d-ae36-d24b16572cfb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23897,8be040fb-873b-441d-ae36-d24b16572cfb,LIST_TRANSACTIONS,xs2aListTransactions,true 23898,8be040fb-873b-441d-ae36-d24b16572cfb,AUTHORIZATION,,true 23899,8be040fb-873b-441d-ae36-d24b16572cfb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23900,8be040fb-873b-441d-ae36-d24b16572cfb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23901,8be040fb-873b-441d-ae36-d24b16572cfb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23902,be5bd162-3b35-404d-ac0c-180dbe8cc894,LIST_ACCOUNTS,hbciListAccounts,false -23903,be5bd162-3b35-404d-ac0c-180dbe8cc894,LIST_TRANSACTIONS,hbciListTransactions,false -23904,be5bd162-3b35-404d-ac0c-180dbe8cc894,AUTHORIZATION,,false -23905,be5bd162-3b35-404d-ac0c-180dbe8cc894,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23906,be5bd162-3b35-404d-ac0c-180dbe8cc894,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23907,be5bd162-3b35-404d-ac0c-180dbe8cc894,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23902,af159f3c-2574-4015-8d6e-92802fe97cec,LIST_ACCOUNTS,hbciListAccounts,false +23903,af159f3c-2574-4015-8d6e-92802fe97cec,LIST_TRANSACTIONS,hbciListTransactions,false +23904,af159f3c-2574-4015-8d6e-92802fe97cec,AUTHORIZATION,,false +23905,af159f3c-2574-4015-8d6e-92802fe97cec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23906,af159f3c-2574-4015-8d6e-92802fe97cec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23907,af159f3c-2574-4015-8d6e-92802fe97cec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23908,c4319864-7553-4fce-a997-5c843a955ae8,LIST_ACCOUNTS,xs2aListAccounts,true -23909,c4319864-7553-4fce-a997-5c843a955ae8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23909,c4319864-7553-4fce-a997-5c843a955ae8,LIST_TRANSACTIONS,xs2aListTransactions,true 23910,c4319864-7553-4fce-a997-5c843a955ae8,AUTHORIZATION,,true 23911,c4319864-7553-4fce-a997-5c843a955ae8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23912,c4319864-7553-4fce-a997-5c843a955ae8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23913,c4319864-7553-4fce-a997-5c843a955ae8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23914,c6b548d0-8ccb-41c0-969c-6132276b172e,LIST_ACCOUNTS,hbciListAccounts,false -23915,c6b548d0-8ccb-41c0-969c-6132276b172e,LIST_TRANSACTIONS,hbciListTransactions,false -23916,c6b548d0-8ccb-41c0-969c-6132276b172e,AUTHORIZATION,,false -23917,c6b548d0-8ccb-41c0-969c-6132276b172e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23918,c6b548d0-8ccb-41c0-969c-6132276b172e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23919,c6b548d0-8ccb-41c0-969c-6132276b172e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23914,5b17090f-610f-47a2-9521-1972490b3d60,LIST_ACCOUNTS,hbciListAccounts,false +23915,5b17090f-610f-47a2-9521-1972490b3d60,LIST_TRANSACTIONS,hbciListTransactions,false +23916,5b17090f-610f-47a2-9521-1972490b3d60,AUTHORIZATION,,false +23917,5b17090f-610f-47a2-9521-1972490b3d60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23918,5b17090f-610f-47a2-9521-1972490b3d60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23919,5b17090f-610f-47a2-9521-1972490b3d60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23920,ac7ad808-973c-4753-8a6e-04678dc62ca6,LIST_ACCOUNTS,xs2aListAccounts,true -23921,ac7ad808-973c-4753-8a6e-04678dc62ca6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23921,ac7ad808-973c-4753-8a6e-04678dc62ca6,LIST_TRANSACTIONS,xs2aListTransactions,true 23922,ac7ad808-973c-4753-8a6e-04678dc62ca6,AUTHORIZATION,,true 23923,ac7ad808-973c-4753-8a6e-04678dc62ca6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23924,ac7ad808-973c-4753-8a6e-04678dc62ca6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23925,ac7ad808-973c-4753-8a6e-04678dc62ca6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23926,e0370e9d-2c19-4da3-88ea-33c74d647dfa,LIST_ACCOUNTS,hbciListAccounts,false -23927,e0370e9d-2c19-4da3-88ea-33c74d647dfa,LIST_TRANSACTIONS,hbciListTransactions,false -23928,e0370e9d-2c19-4da3-88ea-33c74d647dfa,AUTHORIZATION,,false -23929,e0370e9d-2c19-4da3-88ea-33c74d647dfa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23930,e0370e9d-2c19-4da3-88ea-33c74d647dfa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23931,e0370e9d-2c19-4da3-88ea-33c74d647dfa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23926,cc1fb993-81af-4e5c-a397-a3917e8f2bc2,LIST_ACCOUNTS,hbciListAccounts,false +23927,cc1fb993-81af-4e5c-a397-a3917e8f2bc2,LIST_TRANSACTIONS,hbciListTransactions,false +23928,cc1fb993-81af-4e5c-a397-a3917e8f2bc2,AUTHORIZATION,,false +23929,cc1fb993-81af-4e5c-a397-a3917e8f2bc2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23930,cc1fb993-81af-4e5c-a397-a3917e8f2bc2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23931,cc1fb993-81af-4e5c-a397-a3917e8f2bc2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23932,647c616c-c0b3-4fab-ba1f-3ee0eac34445,LIST_ACCOUNTS,xs2aListAccounts,true -23933,647c616c-c0b3-4fab-ba1f-3ee0eac34445,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23933,647c616c-c0b3-4fab-ba1f-3ee0eac34445,LIST_TRANSACTIONS,xs2aListTransactions,true 23934,647c616c-c0b3-4fab-ba1f-3ee0eac34445,AUTHORIZATION,,true 23935,647c616c-c0b3-4fab-ba1f-3ee0eac34445,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23936,647c616c-c0b3-4fab-ba1f-3ee0eac34445,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23937,647c616c-c0b3-4fab-ba1f-3ee0eac34445,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23938,49f3ce89-4516-422e-8d14-5eb001df5096,LIST_ACCOUNTS,hbciListAccounts,false -23939,49f3ce89-4516-422e-8d14-5eb001df5096,LIST_TRANSACTIONS,hbciListTransactions,false -23940,49f3ce89-4516-422e-8d14-5eb001df5096,AUTHORIZATION,,false -23941,49f3ce89-4516-422e-8d14-5eb001df5096,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23942,49f3ce89-4516-422e-8d14-5eb001df5096,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23943,49f3ce89-4516-422e-8d14-5eb001df5096,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23938,58279aa8-db53-4b42-8d54-ab9e94d043c1,LIST_ACCOUNTS,hbciListAccounts,false +23939,58279aa8-db53-4b42-8d54-ab9e94d043c1,LIST_TRANSACTIONS,hbciListTransactions,false +23940,58279aa8-db53-4b42-8d54-ab9e94d043c1,AUTHORIZATION,,false +23941,58279aa8-db53-4b42-8d54-ab9e94d043c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23942,58279aa8-db53-4b42-8d54-ab9e94d043c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23943,58279aa8-db53-4b42-8d54-ab9e94d043c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23944,d1aaf153-f0bb-4a2e-86da-8e847aa04bac,LIST_ACCOUNTS,xs2aListAccounts,true -23945,d1aaf153-f0bb-4a2e-86da-8e847aa04bac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23945,d1aaf153-f0bb-4a2e-86da-8e847aa04bac,LIST_TRANSACTIONS,xs2aListTransactions,true 23946,d1aaf153-f0bb-4a2e-86da-8e847aa04bac,AUTHORIZATION,,true 23947,d1aaf153-f0bb-4a2e-86da-8e847aa04bac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23948,d1aaf153-f0bb-4a2e-86da-8e847aa04bac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23949,d1aaf153-f0bb-4a2e-86da-8e847aa04bac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23950,0cb520c4-3878-43f8-9f40-e2d643a700ce,LIST_ACCOUNTS,hbciListAccounts,false -23951,0cb520c4-3878-43f8-9f40-e2d643a700ce,LIST_TRANSACTIONS,hbciListTransactions,false -23952,0cb520c4-3878-43f8-9f40-e2d643a700ce,AUTHORIZATION,,false -23953,0cb520c4-3878-43f8-9f40-e2d643a700ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23954,0cb520c4-3878-43f8-9f40-e2d643a700ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23955,0cb520c4-3878-43f8-9f40-e2d643a700ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23950,85fd5069-3097-4654-8151-129e66ea7cc0,LIST_ACCOUNTS,hbciListAccounts,false +23951,85fd5069-3097-4654-8151-129e66ea7cc0,LIST_TRANSACTIONS,hbciListTransactions,false +23952,85fd5069-3097-4654-8151-129e66ea7cc0,AUTHORIZATION,,false +23953,85fd5069-3097-4654-8151-129e66ea7cc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23954,85fd5069-3097-4654-8151-129e66ea7cc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23955,85fd5069-3097-4654-8151-129e66ea7cc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23956,2ae39f14-5c8a-4c43-a3c4-bdf4ab34f17c,LIST_ACCOUNTS,xs2aListAccounts,true -23957,2ae39f14-5c8a-4c43-a3c4-bdf4ab34f17c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23957,2ae39f14-5c8a-4c43-a3c4-bdf4ab34f17c,LIST_TRANSACTIONS,xs2aListTransactions,true 23958,2ae39f14-5c8a-4c43-a3c4-bdf4ab34f17c,AUTHORIZATION,,true 23959,2ae39f14-5c8a-4c43-a3c4-bdf4ab34f17c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23960,2ae39f14-5c8a-4c43-a3c4-bdf4ab34f17c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23961,2ae39f14-5c8a-4c43-a3c4-bdf4ab34f17c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23962,7ad12a08-12ac-4002-83bc-f3129ccddce3,LIST_ACCOUNTS,hbciListAccounts,false -23963,7ad12a08-12ac-4002-83bc-f3129ccddce3,LIST_TRANSACTIONS,hbciListTransactions,false -23964,7ad12a08-12ac-4002-83bc-f3129ccddce3,AUTHORIZATION,,false -23965,7ad12a08-12ac-4002-83bc-f3129ccddce3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23966,7ad12a08-12ac-4002-83bc-f3129ccddce3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23967,7ad12a08-12ac-4002-83bc-f3129ccddce3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23962,04030612-4133-4af1-95f0-b895aa05a59c,LIST_ACCOUNTS,hbciListAccounts,false +23963,04030612-4133-4af1-95f0-b895aa05a59c,LIST_TRANSACTIONS,hbciListTransactions,false +23964,04030612-4133-4af1-95f0-b895aa05a59c,AUTHORIZATION,,false +23965,04030612-4133-4af1-95f0-b895aa05a59c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23966,04030612-4133-4af1-95f0-b895aa05a59c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23967,04030612-4133-4af1-95f0-b895aa05a59c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23968,a94aca91-1da6-4226-9b5a-88282e04599c,LIST_ACCOUNTS,xs2aListAccounts,true -23969,a94aca91-1da6-4226-9b5a-88282e04599c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23969,a94aca91-1da6-4226-9b5a-88282e04599c,LIST_TRANSACTIONS,xs2aListTransactions,true 23970,a94aca91-1da6-4226-9b5a-88282e04599c,AUTHORIZATION,,true 23971,a94aca91-1da6-4226-9b5a-88282e04599c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23972,a94aca91-1da6-4226-9b5a-88282e04599c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23973,a94aca91-1da6-4226-9b5a-88282e04599c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23974,9da5ee85-61e5-4c87-b7f4-95f930cb5254,LIST_ACCOUNTS,hbciListAccounts,false -23975,9da5ee85-61e5-4c87-b7f4-95f930cb5254,LIST_TRANSACTIONS,hbciListTransactions,false -23976,9da5ee85-61e5-4c87-b7f4-95f930cb5254,AUTHORIZATION,,false -23977,9da5ee85-61e5-4c87-b7f4-95f930cb5254,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23978,9da5ee85-61e5-4c87-b7f4-95f930cb5254,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23979,9da5ee85-61e5-4c87-b7f4-95f930cb5254,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23974,8c4371e4-a294-4fc1-85be-418e1336b910,LIST_ACCOUNTS,hbciListAccounts,false +23975,8c4371e4-a294-4fc1-85be-418e1336b910,LIST_TRANSACTIONS,hbciListTransactions,false +23976,8c4371e4-a294-4fc1-85be-418e1336b910,AUTHORIZATION,,false +23977,8c4371e4-a294-4fc1-85be-418e1336b910,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23978,8c4371e4-a294-4fc1-85be-418e1336b910,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23979,8c4371e4-a294-4fc1-85be-418e1336b910,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23980,f7774696-7226-4beb-a4c4-90d3dcfe1ad7,LIST_ACCOUNTS,xs2aListAccounts,true -23981,f7774696-7226-4beb-a4c4-90d3dcfe1ad7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23981,f7774696-7226-4beb-a4c4-90d3dcfe1ad7,LIST_TRANSACTIONS,xs2aListTransactions,true 23982,f7774696-7226-4beb-a4c4-90d3dcfe1ad7,AUTHORIZATION,,true 23983,f7774696-7226-4beb-a4c4-90d3dcfe1ad7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23984,f7774696-7226-4beb-a4c4-90d3dcfe1ad7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23985,f7774696-7226-4beb-a4c4-90d3dcfe1ad7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23986,b6ea4a4b-f795-4a29-9540-5dce69431f12,LIST_ACCOUNTS,hbciListAccounts,false -23987,b6ea4a4b-f795-4a29-9540-5dce69431f12,LIST_TRANSACTIONS,hbciListTransactions,false -23988,b6ea4a4b-f795-4a29-9540-5dce69431f12,AUTHORIZATION,,false -23989,b6ea4a4b-f795-4a29-9540-5dce69431f12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -23990,b6ea4a4b-f795-4a29-9540-5dce69431f12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -23991,b6ea4a4b-f795-4a29-9540-5dce69431f12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23986,cd2f072d-6991-4ff5-92ec-96898dbb7c6c,LIST_ACCOUNTS,hbciListAccounts,false +23987,cd2f072d-6991-4ff5-92ec-96898dbb7c6c,LIST_TRANSACTIONS,hbciListTransactions,false +23988,cd2f072d-6991-4ff5-92ec-96898dbb7c6c,AUTHORIZATION,,false +23989,cd2f072d-6991-4ff5-92ec-96898dbb7c6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +23990,cd2f072d-6991-4ff5-92ec-96898dbb7c6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +23991,cd2f072d-6991-4ff5-92ec-96898dbb7c6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 23992,8c882033-b830-4ff9-ba21-bde2d392bfaf,LIST_ACCOUNTS,xs2aListAccounts,true -23993,8c882033-b830-4ff9-ba21-bde2d392bfaf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +23993,8c882033-b830-4ff9-ba21-bde2d392bfaf,LIST_TRANSACTIONS,xs2aListTransactions,true 23994,8c882033-b830-4ff9-ba21-bde2d392bfaf,AUTHORIZATION,,true 23995,8c882033-b830-4ff9-ba21-bde2d392bfaf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 23996,8c882033-b830-4ff9-ba21-bde2d392bfaf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 23997,8c882033-b830-4ff9-ba21-bde2d392bfaf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -23998,44b8ae17-3e77-436e-b1ef-fef3671050d3,LIST_ACCOUNTS,hbciListAccounts,false -23999,44b8ae17-3e77-436e-b1ef-fef3671050d3,LIST_TRANSACTIONS,hbciListTransactions,false -24000,44b8ae17-3e77-436e-b1ef-fef3671050d3,AUTHORIZATION,,false -24001,44b8ae17-3e77-436e-b1ef-fef3671050d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24002,44b8ae17-3e77-436e-b1ef-fef3671050d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24003,44b8ae17-3e77-436e-b1ef-fef3671050d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +23998,e98807db-cfdf-4405-aede-98a27603acf7,LIST_ACCOUNTS,hbciListAccounts,false +23999,e98807db-cfdf-4405-aede-98a27603acf7,LIST_TRANSACTIONS,hbciListTransactions,false +24000,e98807db-cfdf-4405-aede-98a27603acf7,AUTHORIZATION,,false +24001,e98807db-cfdf-4405-aede-98a27603acf7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24002,e98807db-cfdf-4405-aede-98a27603acf7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24003,e98807db-cfdf-4405-aede-98a27603acf7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24004,976afee1-3b6d-423b-b41b-c0bfd6c6d06e,LIST_ACCOUNTS,xs2aListAccounts,true -24005,976afee1-3b6d-423b-b41b-c0bfd6c6d06e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24005,976afee1-3b6d-423b-b41b-c0bfd6c6d06e,LIST_TRANSACTIONS,xs2aListTransactions,true 24006,976afee1-3b6d-423b-b41b-c0bfd6c6d06e,AUTHORIZATION,,true 24007,976afee1-3b6d-423b-b41b-c0bfd6c6d06e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24008,976afee1-3b6d-423b-b41b-c0bfd6c6d06e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24009,976afee1-3b6d-423b-b41b-c0bfd6c6d06e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24010,21c3916f-6661-44a6-be2a-3e35626f4966,LIST_ACCOUNTS,hbciListAccounts,false -24011,21c3916f-6661-44a6-be2a-3e35626f4966,LIST_TRANSACTIONS,hbciListTransactions,false -24012,21c3916f-6661-44a6-be2a-3e35626f4966,AUTHORIZATION,,false -24013,21c3916f-6661-44a6-be2a-3e35626f4966,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24014,21c3916f-6661-44a6-be2a-3e35626f4966,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24015,21c3916f-6661-44a6-be2a-3e35626f4966,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24010,150559dc-756e-4804-8688-e299be215231,LIST_ACCOUNTS,hbciListAccounts,false +24011,150559dc-756e-4804-8688-e299be215231,LIST_TRANSACTIONS,hbciListTransactions,false +24012,150559dc-756e-4804-8688-e299be215231,AUTHORIZATION,,false +24013,150559dc-756e-4804-8688-e299be215231,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24014,150559dc-756e-4804-8688-e299be215231,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24015,150559dc-756e-4804-8688-e299be215231,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24016,1bf5aeb3-d157-4b22-ab8e-ef0b352d05ff,LIST_ACCOUNTS,xs2aListAccounts,true -24017,1bf5aeb3-d157-4b22-ab8e-ef0b352d05ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24017,1bf5aeb3-d157-4b22-ab8e-ef0b352d05ff,LIST_TRANSACTIONS,xs2aListTransactions,true 24018,1bf5aeb3-d157-4b22-ab8e-ef0b352d05ff,AUTHORIZATION,,true 24019,1bf5aeb3-d157-4b22-ab8e-ef0b352d05ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24020,1bf5aeb3-d157-4b22-ab8e-ef0b352d05ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24021,1bf5aeb3-d157-4b22-ab8e-ef0b352d05ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24022,33cc9f60-9b33-4daf-8ffa-a3aaf401b31d,LIST_ACCOUNTS,hbciListAccounts,false -24023,33cc9f60-9b33-4daf-8ffa-a3aaf401b31d,LIST_TRANSACTIONS,hbciListTransactions,false -24024,33cc9f60-9b33-4daf-8ffa-a3aaf401b31d,AUTHORIZATION,,false -24025,33cc9f60-9b33-4daf-8ffa-a3aaf401b31d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24026,33cc9f60-9b33-4daf-8ffa-a3aaf401b31d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24027,33cc9f60-9b33-4daf-8ffa-a3aaf401b31d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24022,9e742d44-39de-40da-8463-0fecee1ae37c,LIST_ACCOUNTS,hbciListAccounts,false +24023,9e742d44-39de-40da-8463-0fecee1ae37c,LIST_TRANSACTIONS,hbciListTransactions,false +24024,9e742d44-39de-40da-8463-0fecee1ae37c,AUTHORIZATION,,false +24025,9e742d44-39de-40da-8463-0fecee1ae37c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24026,9e742d44-39de-40da-8463-0fecee1ae37c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24027,9e742d44-39de-40da-8463-0fecee1ae37c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24028,972e11d1-04e3-4fed-b035-4719ae173621,LIST_ACCOUNTS,xs2aListAccounts,true -24029,972e11d1-04e3-4fed-b035-4719ae173621,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24029,972e11d1-04e3-4fed-b035-4719ae173621,LIST_TRANSACTIONS,xs2aListTransactions,true 24030,972e11d1-04e3-4fed-b035-4719ae173621,AUTHORIZATION,,true 24031,972e11d1-04e3-4fed-b035-4719ae173621,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24032,972e11d1-04e3-4fed-b035-4719ae173621,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24033,972e11d1-04e3-4fed-b035-4719ae173621,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24034,1de284f5-750a-4aaf-9030-4c75a3eac7ce,LIST_ACCOUNTS,hbciListAccounts,false -24035,1de284f5-750a-4aaf-9030-4c75a3eac7ce,LIST_TRANSACTIONS,hbciListTransactions,false -24036,1de284f5-750a-4aaf-9030-4c75a3eac7ce,AUTHORIZATION,,false -24037,1de284f5-750a-4aaf-9030-4c75a3eac7ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24038,1de284f5-750a-4aaf-9030-4c75a3eac7ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24039,1de284f5-750a-4aaf-9030-4c75a3eac7ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24034,4696c7f3-60ef-48ea-b64b-c21da0b6e2d9,LIST_ACCOUNTS,hbciListAccounts,false +24035,4696c7f3-60ef-48ea-b64b-c21da0b6e2d9,LIST_TRANSACTIONS,hbciListTransactions,false +24036,4696c7f3-60ef-48ea-b64b-c21da0b6e2d9,AUTHORIZATION,,false +24037,4696c7f3-60ef-48ea-b64b-c21da0b6e2d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24038,4696c7f3-60ef-48ea-b64b-c21da0b6e2d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24039,4696c7f3-60ef-48ea-b64b-c21da0b6e2d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24040,f89b2b19-ca98-4c1a-9795-07591eabcfcc,LIST_ACCOUNTS,xs2aListAccounts,true -24041,f89b2b19-ca98-4c1a-9795-07591eabcfcc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24041,f89b2b19-ca98-4c1a-9795-07591eabcfcc,LIST_TRANSACTIONS,xs2aListTransactions,true 24042,f89b2b19-ca98-4c1a-9795-07591eabcfcc,AUTHORIZATION,,true 24043,f89b2b19-ca98-4c1a-9795-07591eabcfcc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24044,f89b2b19-ca98-4c1a-9795-07591eabcfcc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24045,f89b2b19-ca98-4c1a-9795-07591eabcfcc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24046,2a20b3c2-d96d-4b5e-83ef-6ffbcf667f0c,LIST_ACCOUNTS,hbciListAccounts,false -24047,2a20b3c2-d96d-4b5e-83ef-6ffbcf667f0c,LIST_TRANSACTIONS,hbciListTransactions,false -24048,2a20b3c2-d96d-4b5e-83ef-6ffbcf667f0c,AUTHORIZATION,,false -24049,2a20b3c2-d96d-4b5e-83ef-6ffbcf667f0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24050,2a20b3c2-d96d-4b5e-83ef-6ffbcf667f0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24051,2a20b3c2-d96d-4b5e-83ef-6ffbcf667f0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24046,5288e9b6-3962-4ed1-8e1b-82d6a134e690,LIST_ACCOUNTS,hbciListAccounts,false +24047,5288e9b6-3962-4ed1-8e1b-82d6a134e690,LIST_TRANSACTIONS,hbciListTransactions,false +24048,5288e9b6-3962-4ed1-8e1b-82d6a134e690,AUTHORIZATION,,false +24049,5288e9b6-3962-4ed1-8e1b-82d6a134e690,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24050,5288e9b6-3962-4ed1-8e1b-82d6a134e690,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24051,5288e9b6-3962-4ed1-8e1b-82d6a134e690,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24052,9896a3d4-e8aa-4370-8e1a-0c5022fdd9d0,LIST_ACCOUNTS,xs2aListAccounts,true -24053,9896a3d4-e8aa-4370-8e1a-0c5022fdd9d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24053,9896a3d4-e8aa-4370-8e1a-0c5022fdd9d0,LIST_TRANSACTIONS,xs2aListTransactions,true 24054,9896a3d4-e8aa-4370-8e1a-0c5022fdd9d0,AUTHORIZATION,,true 24055,9896a3d4-e8aa-4370-8e1a-0c5022fdd9d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24056,9896a3d4-e8aa-4370-8e1a-0c5022fdd9d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24057,9896a3d4-e8aa-4370-8e1a-0c5022fdd9d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24058,ef3371a6-ca47-4849-bc44-fecfe8e1f1ac,LIST_ACCOUNTS,hbciListAccounts,false -24059,ef3371a6-ca47-4849-bc44-fecfe8e1f1ac,LIST_TRANSACTIONS,hbciListTransactions,false -24060,ef3371a6-ca47-4849-bc44-fecfe8e1f1ac,AUTHORIZATION,,false -24061,ef3371a6-ca47-4849-bc44-fecfe8e1f1ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24062,ef3371a6-ca47-4849-bc44-fecfe8e1f1ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24063,ef3371a6-ca47-4849-bc44-fecfe8e1f1ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24058,a217db32-06e8-4d31-8b07-b1034d93ddc6,LIST_ACCOUNTS,hbciListAccounts,false +24059,a217db32-06e8-4d31-8b07-b1034d93ddc6,LIST_TRANSACTIONS,hbciListTransactions,false +24060,a217db32-06e8-4d31-8b07-b1034d93ddc6,AUTHORIZATION,,false +24061,a217db32-06e8-4d31-8b07-b1034d93ddc6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24062,a217db32-06e8-4d31-8b07-b1034d93ddc6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24063,a217db32-06e8-4d31-8b07-b1034d93ddc6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24064,126b0ca8-2fc0-44b0-8845-cdec38736f56,LIST_ACCOUNTS,xs2aListAccounts,true -24065,126b0ca8-2fc0-44b0-8845-cdec38736f56,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24065,126b0ca8-2fc0-44b0-8845-cdec38736f56,LIST_TRANSACTIONS,xs2aListTransactions,true 24066,126b0ca8-2fc0-44b0-8845-cdec38736f56,AUTHORIZATION,,true 24067,126b0ca8-2fc0-44b0-8845-cdec38736f56,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24068,126b0ca8-2fc0-44b0-8845-cdec38736f56,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24069,126b0ca8-2fc0-44b0-8845-cdec38736f56,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24070,a38254f9-0530-4ca0-8d1e-2930223561bb,LIST_ACCOUNTS,hbciListAccounts,false -24071,a38254f9-0530-4ca0-8d1e-2930223561bb,LIST_TRANSACTIONS,hbciListTransactions,false -24072,a38254f9-0530-4ca0-8d1e-2930223561bb,AUTHORIZATION,,false -24073,a38254f9-0530-4ca0-8d1e-2930223561bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24074,a38254f9-0530-4ca0-8d1e-2930223561bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24075,a38254f9-0530-4ca0-8d1e-2930223561bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24070,da72175e-f9f7-4cb4-9762-978dc9b186a3,LIST_ACCOUNTS,hbciListAccounts,false +24071,da72175e-f9f7-4cb4-9762-978dc9b186a3,LIST_TRANSACTIONS,hbciListTransactions,false +24072,da72175e-f9f7-4cb4-9762-978dc9b186a3,AUTHORIZATION,,false +24073,da72175e-f9f7-4cb4-9762-978dc9b186a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24074,da72175e-f9f7-4cb4-9762-978dc9b186a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24075,da72175e-f9f7-4cb4-9762-978dc9b186a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24076,a73f51d7-c76b-4b21-b2ea-35df55397b3d,LIST_ACCOUNTS,xs2aListAccounts,true -24077,a73f51d7-c76b-4b21-b2ea-35df55397b3d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24077,a73f51d7-c76b-4b21-b2ea-35df55397b3d,LIST_TRANSACTIONS,xs2aListTransactions,true 24078,a73f51d7-c76b-4b21-b2ea-35df55397b3d,AUTHORIZATION,,true 24079,a73f51d7-c76b-4b21-b2ea-35df55397b3d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24080,a73f51d7-c76b-4b21-b2ea-35df55397b3d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24081,a73f51d7-c76b-4b21-b2ea-35df55397b3d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24082,5a36a2f3-32da-4d8d-a24a-f05d69847f93,LIST_ACCOUNTS,hbciListAccounts,false -24083,5a36a2f3-32da-4d8d-a24a-f05d69847f93,LIST_TRANSACTIONS,hbciListTransactions,false -24084,5a36a2f3-32da-4d8d-a24a-f05d69847f93,AUTHORIZATION,,false -24085,5a36a2f3-32da-4d8d-a24a-f05d69847f93,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24086,5a36a2f3-32da-4d8d-a24a-f05d69847f93,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24087,5a36a2f3-32da-4d8d-a24a-f05d69847f93,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24082,3b71807b-6560-45b5-9b25-8334c011a4fe,LIST_ACCOUNTS,hbciListAccounts,false +24083,3b71807b-6560-45b5-9b25-8334c011a4fe,LIST_TRANSACTIONS,hbciListTransactions,false +24084,3b71807b-6560-45b5-9b25-8334c011a4fe,AUTHORIZATION,,false +24085,3b71807b-6560-45b5-9b25-8334c011a4fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24086,3b71807b-6560-45b5-9b25-8334c011a4fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24087,3b71807b-6560-45b5-9b25-8334c011a4fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24088,5bdf5af9-4e74-4004-a5e9-7a9bb59b7418,LIST_ACCOUNTS,xs2aListAccounts,true -24089,5bdf5af9-4e74-4004-a5e9-7a9bb59b7418,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24089,5bdf5af9-4e74-4004-a5e9-7a9bb59b7418,LIST_TRANSACTIONS,xs2aListTransactions,true 24090,5bdf5af9-4e74-4004-a5e9-7a9bb59b7418,AUTHORIZATION,,true 24091,5bdf5af9-4e74-4004-a5e9-7a9bb59b7418,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24092,5bdf5af9-4e74-4004-a5e9-7a9bb59b7418,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24093,5bdf5af9-4e74-4004-a5e9-7a9bb59b7418,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24094,e2c2214b-f05e-45b2-8cfa-19fa667460f7,LIST_ACCOUNTS,hbciListAccounts,false -24095,e2c2214b-f05e-45b2-8cfa-19fa667460f7,LIST_TRANSACTIONS,hbciListTransactions,false -24096,e2c2214b-f05e-45b2-8cfa-19fa667460f7,AUTHORIZATION,,false -24097,e2c2214b-f05e-45b2-8cfa-19fa667460f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24098,e2c2214b-f05e-45b2-8cfa-19fa667460f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24099,e2c2214b-f05e-45b2-8cfa-19fa667460f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24094,aa77ecfa-fe61-43e8-8c11-a95ae37463e0,LIST_ACCOUNTS,hbciListAccounts,false +24095,aa77ecfa-fe61-43e8-8c11-a95ae37463e0,LIST_TRANSACTIONS,hbciListTransactions,false +24096,aa77ecfa-fe61-43e8-8c11-a95ae37463e0,AUTHORIZATION,,false +24097,aa77ecfa-fe61-43e8-8c11-a95ae37463e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24098,aa77ecfa-fe61-43e8-8c11-a95ae37463e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24099,aa77ecfa-fe61-43e8-8c11-a95ae37463e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24100,4dd2b8e4-ec59-4381-bbea-221dda88dbb3,LIST_ACCOUNTS,xs2aListAccounts,true -24101,4dd2b8e4-ec59-4381-bbea-221dda88dbb3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24101,4dd2b8e4-ec59-4381-bbea-221dda88dbb3,LIST_TRANSACTIONS,xs2aListTransactions,true 24102,4dd2b8e4-ec59-4381-bbea-221dda88dbb3,AUTHORIZATION,,true 24103,4dd2b8e4-ec59-4381-bbea-221dda88dbb3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24104,4dd2b8e4-ec59-4381-bbea-221dda88dbb3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24105,4dd2b8e4-ec59-4381-bbea-221dda88dbb3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24106,18715a1f-4a59-44ad-ba14-b7e1b36ca2ae,LIST_ACCOUNTS,hbciListAccounts,false -24107,18715a1f-4a59-44ad-ba14-b7e1b36ca2ae,LIST_TRANSACTIONS,hbciListTransactions,false -24108,18715a1f-4a59-44ad-ba14-b7e1b36ca2ae,AUTHORIZATION,,false -24109,18715a1f-4a59-44ad-ba14-b7e1b36ca2ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24110,18715a1f-4a59-44ad-ba14-b7e1b36ca2ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24111,18715a1f-4a59-44ad-ba14-b7e1b36ca2ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24106,a0164e1f-e371-4d0f-a8c2-0f2c4c81a0b1,LIST_ACCOUNTS,hbciListAccounts,false +24107,a0164e1f-e371-4d0f-a8c2-0f2c4c81a0b1,LIST_TRANSACTIONS,hbciListTransactions,false +24108,a0164e1f-e371-4d0f-a8c2-0f2c4c81a0b1,AUTHORIZATION,,false +24109,a0164e1f-e371-4d0f-a8c2-0f2c4c81a0b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24110,a0164e1f-e371-4d0f-a8c2-0f2c4c81a0b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24111,a0164e1f-e371-4d0f-a8c2-0f2c4c81a0b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24112,e8fb8202-dfb3-4f01-8b63-e7dc7c444f71,LIST_ACCOUNTS,xs2aListAccounts,true -24113,e8fb8202-dfb3-4f01-8b63-e7dc7c444f71,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24113,e8fb8202-dfb3-4f01-8b63-e7dc7c444f71,LIST_TRANSACTIONS,xs2aListTransactions,true 24114,e8fb8202-dfb3-4f01-8b63-e7dc7c444f71,AUTHORIZATION,,true 24115,e8fb8202-dfb3-4f01-8b63-e7dc7c444f71,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24116,e8fb8202-dfb3-4f01-8b63-e7dc7c444f71,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24117,e8fb8202-dfb3-4f01-8b63-e7dc7c444f71,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24118,eabd0387-fabf-4a7d-91ea-7aa5cfbf103a,LIST_ACCOUNTS,hbciListAccounts,false -24119,eabd0387-fabf-4a7d-91ea-7aa5cfbf103a,LIST_TRANSACTIONS,hbciListTransactions,false -24120,eabd0387-fabf-4a7d-91ea-7aa5cfbf103a,AUTHORIZATION,,false -24121,eabd0387-fabf-4a7d-91ea-7aa5cfbf103a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24122,eabd0387-fabf-4a7d-91ea-7aa5cfbf103a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24123,eabd0387-fabf-4a7d-91ea-7aa5cfbf103a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24118,5ab6250a-325f-4f23-9d18-8dc5e03aae54,LIST_ACCOUNTS,hbciListAccounts,false +24119,5ab6250a-325f-4f23-9d18-8dc5e03aae54,LIST_TRANSACTIONS,hbciListTransactions,false +24120,5ab6250a-325f-4f23-9d18-8dc5e03aae54,AUTHORIZATION,,false +24121,5ab6250a-325f-4f23-9d18-8dc5e03aae54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24122,5ab6250a-325f-4f23-9d18-8dc5e03aae54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24123,5ab6250a-325f-4f23-9d18-8dc5e03aae54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24124,a335b027-97a2-49d5-bea4-2bbf64b5dcb1,LIST_ACCOUNTS,xs2aListAccounts,true -24125,a335b027-97a2-49d5-bea4-2bbf64b5dcb1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24125,a335b027-97a2-49d5-bea4-2bbf64b5dcb1,LIST_TRANSACTIONS,xs2aListTransactions,true 24126,a335b027-97a2-49d5-bea4-2bbf64b5dcb1,AUTHORIZATION,,true 24127,a335b027-97a2-49d5-bea4-2bbf64b5dcb1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24128,a335b027-97a2-49d5-bea4-2bbf64b5dcb1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24129,a335b027-97a2-49d5-bea4-2bbf64b5dcb1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24130,7bc79420-041d-4c8e-9432-2967fa10225a,LIST_ACCOUNTS,hbciListAccounts,false -24131,7bc79420-041d-4c8e-9432-2967fa10225a,LIST_TRANSACTIONS,hbciListTransactions,false -24132,7bc79420-041d-4c8e-9432-2967fa10225a,AUTHORIZATION,,false -24133,7bc79420-041d-4c8e-9432-2967fa10225a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24134,7bc79420-041d-4c8e-9432-2967fa10225a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24135,7bc79420-041d-4c8e-9432-2967fa10225a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24130,1dc10cfb-a223-4bb2-9866-c333619efdd5,LIST_ACCOUNTS,hbciListAccounts,false +24131,1dc10cfb-a223-4bb2-9866-c333619efdd5,LIST_TRANSACTIONS,hbciListTransactions,false +24132,1dc10cfb-a223-4bb2-9866-c333619efdd5,AUTHORIZATION,,false +24133,1dc10cfb-a223-4bb2-9866-c333619efdd5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24134,1dc10cfb-a223-4bb2-9866-c333619efdd5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24135,1dc10cfb-a223-4bb2-9866-c333619efdd5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24136,55d2d932-b8eb-438c-bb26-7d9ca01136ba,LIST_ACCOUNTS,xs2aListAccounts,true -24137,55d2d932-b8eb-438c-bb26-7d9ca01136ba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24137,55d2d932-b8eb-438c-bb26-7d9ca01136ba,LIST_TRANSACTIONS,xs2aListTransactions,true 24138,55d2d932-b8eb-438c-bb26-7d9ca01136ba,AUTHORIZATION,,true 24139,55d2d932-b8eb-438c-bb26-7d9ca01136ba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24140,55d2d932-b8eb-438c-bb26-7d9ca01136ba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24141,55d2d932-b8eb-438c-bb26-7d9ca01136ba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24142,1493900b-1186-4db8-8a3c-1188da268904,LIST_ACCOUNTS,hbciListAccounts,false -24143,1493900b-1186-4db8-8a3c-1188da268904,LIST_TRANSACTIONS,hbciListTransactions,false -24144,1493900b-1186-4db8-8a3c-1188da268904,AUTHORIZATION,,false -24145,1493900b-1186-4db8-8a3c-1188da268904,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24146,1493900b-1186-4db8-8a3c-1188da268904,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24147,1493900b-1186-4db8-8a3c-1188da268904,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24142,14a85869-2851-4af1-bd36-f11f2a5ba8b7,LIST_ACCOUNTS,hbciListAccounts,false +24143,14a85869-2851-4af1-bd36-f11f2a5ba8b7,LIST_TRANSACTIONS,hbciListTransactions,false +24144,14a85869-2851-4af1-bd36-f11f2a5ba8b7,AUTHORIZATION,,false +24145,14a85869-2851-4af1-bd36-f11f2a5ba8b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24146,14a85869-2851-4af1-bd36-f11f2a5ba8b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24147,14a85869-2851-4af1-bd36-f11f2a5ba8b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24148,9cf64f16-58f0-4c55-b5ee-30892271d1a6,LIST_ACCOUNTS,xs2aListAccounts,true -24149,9cf64f16-58f0-4c55-b5ee-30892271d1a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24149,9cf64f16-58f0-4c55-b5ee-30892271d1a6,LIST_TRANSACTIONS,xs2aListTransactions,true 24150,9cf64f16-58f0-4c55-b5ee-30892271d1a6,AUTHORIZATION,,true 24151,9cf64f16-58f0-4c55-b5ee-30892271d1a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24152,9cf64f16-58f0-4c55-b5ee-30892271d1a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24153,9cf64f16-58f0-4c55-b5ee-30892271d1a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24154,06d75db2-9cb6-4aec-b79f-5728a2f0d5f0,LIST_ACCOUNTS,hbciListAccounts,false -24155,06d75db2-9cb6-4aec-b79f-5728a2f0d5f0,LIST_TRANSACTIONS,hbciListTransactions,false -24156,06d75db2-9cb6-4aec-b79f-5728a2f0d5f0,AUTHORIZATION,,false -24157,06d75db2-9cb6-4aec-b79f-5728a2f0d5f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24158,06d75db2-9cb6-4aec-b79f-5728a2f0d5f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24159,06d75db2-9cb6-4aec-b79f-5728a2f0d5f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24154,95f606d4-b502-4fb1-a7a4-eab8d665b773,LIST_ACCOUNTS,hbciListAccounts,false +24155,95f606d4-b502-4fb1-a7a4-eab8d665b773,LIST_TRANSACTIONS,hbciListTransactions,false +24156,95f606d4-b502-4fb1-a7a4-eab8d665b773,AUTHORIZATION,,false +24157,95f606d4-b502-4fb1-a7a4-eab8d665b773,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24158,95f606d4-b502-4fb1-a7a4-eab8d665b773,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24159,95f606d4-b502-4fb1-a7a4-eab8d665b773,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24160,0afe716f-8463-433e-bfd6-d4942c3b82b7,LIST_ACCOUNTS,xs2aListAccounts,true -24161,0afe716f-8463-433e-bfd6-d4942c3b82b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24161,0afe716f-8463-433e-bfd6-d4942c3b82b7,LIST_TRANSACTIONS,xs2aListTransactions,true 24162,0afe716f-8463-433e-bfd6-d4942c3b82b7,AUTHORIZATION,,true 24163,0afe716f-8463-433e-bfd6-d4942c3b82b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24164,0afe716f-8463-433e-bfd6-d4942c3b82b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24165,0afe716f-8463-433e-bfd6-d4942c3b82b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24166,39d79909-a995-4e77-9431-5e02fe782dfe,LIST_ACCOUNTS,hbciListAccounts,false -24167,39d79909-a995-4e77-9431-5e02fe782dfe,LIST_TRANSACTIONS,hbciListTransactions,false -24168,39d79909-a995-4e77-9431-5e02fe782dfe,AUTHORIZATION,,false -24169,39d79909-a995-4e77-9431-5e02fe782dfe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24170,39d79909-a995-4e77-9431-5e02fe782dfe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24171,39d79909-a995-4e77-9431-5e02fe782dfe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24166,679922c6-45e5-4a4d-9e42-23740f5c921b,LIST_ACCOUNTS,hbciListAccounts,false +24167,679922c6-45e5-4a4d-9e42-23740f5c921b,LIST_TRANSACTIONS,hbciListTransactions,false +24168,679922c6-45e5-4a4d-9e42-23740f5c921b,AUTHORIZATION,,false +24169,679922c6-45e5-4a4d-9e42-23740f5c921b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24170,679922c6-45e5-4a4d-9e42-23740f5c921b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24171,679922c6-45e5-4a4d-9e42-23740f5c921b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24172,4d1b5f63-3415-4abe-ade0-28d77feb22bb,LIST_ACCOUNTS,xs2aListAccounts,true -24173,4d1b5f63-3415-4abe-ade0-28d77feb22bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24173,4d1b5f63-3415-4abe-ade0-28d77feb22bb,LIST_TRANSACTIONS,xs2aListTransactions,true 24174,4d1b5f63-3415-4abe-ade0-28d77feb22bb,AUTHORIZATION,,true 24175,4d1b5f63-3415-4abe-ade0-28d77feb22bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24176,4d1b5f63-3415-4abe-ade0-28d77feb22bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24177,4d1b5f63-3415-4abe-ade0-28d77feb22bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24178,c82b4788-fcd9-4106-afd3-08589990e8a9,LIST_ACCOUNTS,hbciListAccounts,false -24179,c82b4788-fcd9-4106-afd3-08589990e8a9,LIST_TRANSACTIONS,hbciListTransactions,false -24180,c82b4788-fcd9-4106-afd3-08589990e8a9,AUTHORIZATION,,false -24181,c82b4788-fcd9-4106-afd3-08589990e8a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24182,c82b4788-fcd9-4106-afd3-08589990e8a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24183,c82b4788-fcd9-4106-afd3-08589990e8a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24178,57f9bcc6-9d91-4af6-8e2b-d699224a89ae,LIST_ACCOUNTS,hbciListAccounts,false +24179,57f9bcc6-9d91-4af6-8e2b-d699224a89ae,LIST_TRANSACTIONS,hbciListTransactions,false +24180,57f9bcc6-9d91-4af6-8e2b-d699224a89ae,AUTHORIZATION,,false +24181,57f9bcc6-9d91-4af6-8e2b-d699224a89ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24182,57f9bcc6-9d91-4af6-8e2b-d699224a89ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24183,57f9bcc6-9d91-4af6-8e2b-d699224a89ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24184,95f225de-9240-4e0f-93e6-7e21c5a92847,LIST_ACCOUNTS,xs2aListAccounts,true -24185,95f225de-9240-4e0f-93e6-7e21c5a92847,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24185,95f225de-9240-4e0f-93e6-7e21c5a92847,LIST_TRANSACTIONS,xs2aListTransactions,true 24186,95f225de-9240-4e0f-93e6-7e21c5a92847,AUTHORIZATION,,true 24187,95f225de-9240-4e0f-93e6-7e21c5a92847,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24188,95f225de-9240-4e0f-93e6-7e21c5a92847,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24189,95f225de-9240-4e0f-93e6-7e21c5a92847,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24190,0b93c512-296b-4eca-8124-38bc3150b65b,LIST_ACCOUNTS,hbciListAccounts,false -24191,0b93c512-296b-4eca-8124-38bc3150b65b,LIST_TRANSACTIONS,hbciListTransactions,false -24192,0b93c512-296b-4eca-8124-38bc3150b65b,AUTHORIZATION,,false -24193,0b93c512-296b-4eca-8124-38bc3150b65b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24194,0b93c512-296b-4eca-8124-38bc3150b65b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24195,0b93c512-296b-4eca-8124-38bc3150b65b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24190,e6a379b9-266c-4d6f-b1a7-fb602e1cb667,LIST_ACCOUNTS,hbciListAccounts,false +24191,e6a379b9-266c-4d6f-b1a7-fb602e1cb667,LIST_TRANSACTIONS,hbciListTransactions,false +24192,e6a379b9-266c-4d6f-b1a7-fb602e1cb667,AUTHORIZATION,,false +24193,e6a379b9-266c-4d6f-b1a7-fb602e1cb667,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24194,e6a379b9-266c-4d6f-b1a7-fb602e1cb667,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24195,e6a379b9-266c-4d6f-b1a7-fb602e1cb667,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24196,e567345a-393a-41af-ab68-e35b32596e25,LIST_ACCOUNTS,xs2aListAccounts,true -24197,e567345a-393a-41af-ab68-e35b32596e25,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24197,e567345a-393a-41af-ab68-e35b32596e25,LIST_TRANSACTIONS,xs2aListTransactions,true 24198,e567345a-393a-41af-ab68-e35b32596e25,AUTHORIZATION,,true 24199,e567345a-393a-41af-ab68-e35b32596e25,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24200,e567345a-393a-41af-ab68-e35b32596e25,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24201,e567345a-393a-41af-ab68-e35b32596e25,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24202,eb79ff47-476a-4f52-ace3-a95465ffa8a5,LIST_ACCOUNTS,hbciListAccounts,false -24203,eb79ff47-476a-4f52-ace3-a95465ffa8a5,LIST_TRANSACTIONS,hbciListTransactions,false -24204,eb79ff47-476a-4f52-ace3-a95465ffa8a5,AUTHORIZATION,,false -24205,eb79ff47-476a-4f52-ace3-a95465ffa8a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24206,eb79ff47-476a-4f52-ace3-a95465ffa8a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24207,eb79ff47-476a-4f52-ace3-a95465ffa8a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24202,7ecbfc5c-00b7-4c94-9ae3-7a0de8d5b46e,LIST_ACCOUNTS,hbciListAccounts,false +24203,7ecbfc5c-00b7-4c94-9ae3-7a0de8d5b46e,LIST_TRANSACTIONS,hbciListTransactions,false +24204,7ecbfc5c-00b7-4c94-9ae3-7a0de8d5b46e,AUTHORIZATION,,false +24205,7ecbfc5c-00b7-4c94-9ae3-7a0de8d5b46e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24206,7ecbfc5c-00b7-4c94-9ae3-7a0de8d5b46e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24207,7ecbfc5c-00b7-4c94-9ae3-7a0de8d5b46e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24208,ac8bfdf5-2478-4a0d-8171-4349429f92eb,LIST_ACCOUNTS,xs2aListAccounts,true -24209,ac8bfdf5-2478-4a0d-8171-4349429f92eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24209,ac8bfdf5-2478-4a0d-8171-4349429f92eb,LIST_TRANSACTIONS,xs2aListTransactions,true 24210,ac8bfdf5-2478-4a0d-8171-4349429f92eb,AUTHORIZATION,,true 24211,ac8bfdf5-2478-4a0d-8171-4349429f92eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24212,ac8bfdf5-2478-4a0d-8171-4349429f92eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24213,ac8bfdf5-2478-4a0d-8171-4349429f92eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24214,c887e04c-c4e6-4de7-a9b9-8587e97d4536,LIST_ACCOUNTS,hbciListAccounts,false -24215,c887e04c-c4e6-4de7-a9b9-8587e97d4536,LIST_TRANSACTIONS,hbciListTransactions,false -24216,c887e04c-c4e6-4de7-a9b9-8587e97d4536,AUTHORIZATION,,false -24217,c887e04c-c4e6-4de7-a9b9-8587e97d4536,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24218,c887e04c-c4e6-4de7-a9b9-8587e97d4536,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24219,c887e04c-c4e6-4de7-a9b9-8587e97d4536,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24214,58d48677-a437-4806-95f1-9d9196cff5b2,LIST_ACCOUNTS,hbciListAccounts,false +24215,58d48677-a437-4806-95f1-9d9196cff5b2,LIST_TRANSACTIONS,hbciListTransactions,false +24216,58d48677-a437-4806-95f1-9d9196cff5b2,AUTHORIZATION,,false +24217,58d48677-a437-4806-95f1-9d9196cff5b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24218,58d48677-a437-4806-95f1-9d9196cff5b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24219,58d48677-a437-4806-95f1-9d9196cff5b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24220,920078c5-0603-4919-85bc-ec6ef1386a7d,LIST_ACCOUNTS,xs2aListAccounts,true -24221,920078c5-0603-4919-85bc-ec6ef1386a7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24221,920078c5-0603-4919-85bc-ec6ef1386a7d,LIST_TRANSACTIONS,xs2aListTransactions,true 24222,920078c5-0603-4919-85bc-ec6ef1386a7d,AUTHORIZATION,,true 24223,920078c5-0603-4919-85bc-ec6ef1386a7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24224,920078c5-0603-4919-85bc-ec6ef1386a7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24225,920078c5-0603-4919-85bc-ec6ef1386a7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24226,94579c1e-9d5a-41a3-914e-2dc9016c5413,LIST_ACCOUNTS,hbciListAccounts,false -24227,94579c1e-9d5a-41a3-914e-2dc9016c5413,LIST_TRANSACTIONS,hbciListTransactions,false -24228,94579c1e-9d5a-41a3-914e-2dc9016c5413,AUTHORIZATION,,false -24229,94579c1e-9d5a-41a3-914e-2dc9016c5413,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24230,94579c1e-9d5a-41a3-914e-2dc9016c5413,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24231,94579c1e-9d5a-41a3-914e-2dc9016c5413,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24226,38b0cbde-b6d8-4202-a6c2-0a3ddc27f113,LIST_ACCOUNTS,hbciListAccounts,false +24227,38b0cbde-b6d8-4202-a6c2-0a3ddc27f113,LIST_TRANSACTIONS,hbciListTransactions,false +24228,38b0cbde-b6d8-4202-a6c2-0a3ddc27f113,AUTHORIZATION,,false +24229,38b0cbde-b6d8-4202-a6c2-0a3ddc27f113,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24230,38b0cbde-b6d8-4202-a6c2-0a3ddc27f113,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24231,38b0cbde-b6d8-4202-a6c2-0a3ddc27f113,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24232,f57f96fc-08c8-433d-82a3-1040988efd13,LIST_ACCOUNTS,xs2aListAccounts,true -24233,f57f96fc-08c8-433d-82a3-1040988efd13,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24233,f57f96fc-08c8-433d-82a3-1040988efd13,LIST_TRANSACTIONS,xs2aListTransactions,true 24234,f57f96fc-08c8-433d-82a3-1040988efd13,AUTHORIZATION,,true 24235,f57f96fc-08c8-433d-82a3-1040988efd13,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24236,f57f96fc-08c8-433d-82a3-1040988efd13,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24237,f57f96fc-08c8-433d-82a3-1040988efd13,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24238,d4422d0f-6285-47c3-b32c-a2fdc8f3c2ff,LIST_ACCOUNTS,hbciListAccounts,false -24239,d4422d0f-6285-47c3-b32c-a2fdc8f3c2ff,LIST_TRANSACTIONS,hbciListTransactions,false -24240,d4422d0f-6285-47c3-b32c-a2fdc8f3c2ff,AUTHORIZATION,,false -24241,d4422d0f-6285-47c3-b32c-a2fdc8f3c2ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24242,d4422d0f-6285-47c3-b32c-a2fdc8f3c2ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24243,d4422d0f-6285-47c3-b32c-a2fdc8f3c2ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24238,125a15d1-24f4-48a0-9c6e-cb9c54c1bdbe,LIST_ACCOUNTS,hbciListAccounts,false +24239,125a15d1-24f4-48a0-9c6e-cb9c54c1bdbe,LIST_TRANSACTIONS,hbciListTransactions,false +24240,125a15d1-24f4-48a0-9c6e-cb9c54c1bdbe,AUTHORIZATION,,false +24241,125a15d1-24f4-48a0-9c6e-cb9c54c1bdbe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24242,125a15d1-24f4-48a0-9c6e-cb9c54c1bdbe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24243,125a15d1-24f4-48a0-9c6e-cb9c54c1bdbe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24244,b409b4a6-7635-44f8-bf0e-70d51a3a3be2,LIST_ACCOUNTS,xs2aListAccounts,true -24245,b409b4a6-7635-44f8-bf0e-70d51a3a3be2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24245,b409b4a6-7635-44f8-bf0e-70d51a3a3be2,LIST_TRANSACTIONS,xs2aListTransactions,true 24246,b409b4a6-7635-44f8-bf0e-70d51a3a3be2,AUTHORIZATION,,true 24247,b409b4a6-7635-44f8-bf0e-70d51a3a3be2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24248,b409b4a6-7635-44f8-bf0e-70d51a3a3be2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24249,b409b4a6-7635-44f8-bf0e-70d51a3a3be2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24250,b1cab851-bd22-4bb3-ac43-24eabe50ee0a,LIST_ACCOUNTS,hbciListAccounts,false -24251,b1cab851-bd22-4bb3-ac43-24eabe50ee0a,LIST_TRANSACTIONS,hbciListTransactions,false -24252,b1cab851-bd22-4bb3-ac43-24eabe50ee0a,AUTHORIZATION,,false -24253,b1cab851-bd22-4bb3-ac43-24eabe50ee0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24254,b1cab851-bd22-4bb3-ac43-24eabe50ee0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24255,b1cab851-bd22-4bb3-ac43-24eabe50ee0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24250,67682d03-2a4d-4cd9-8ce3-e196a158ff10,LIST_ACCOUNTS,hbciListAccounts,false +24251,67682d03-2a4d-4cd9-8ce3-e196a158ff10,LIST_TRANSACTIONS,hbciListTransactions,false +24252,67682d03-2a4d-4cd9-8ce3-e196a158ff10,AUTHORIZATION,,false +24253,67682d03-2a4d-4cd9-8ce3-e196a158ff10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24254,67682d03-2a4d-4cd9-8ce3-e196a158ff10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24255,67682d03-2a4d-4cd9-8ce3-e196a158ff10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24256,0a321051-00bc-4b0c-9b67-73501ce283f5,LIST_ACCOUNTS,xs2aListAccounts,true -24257,0a321051-00bc-4b0c-9b67-73501ce283f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24257,0a321051-00bc-4b0c-9b67-73501ce283f5,LIST_TRANSACTIONS,xs2aListTransactions,true 24258,0a321051-00bc-4b0c-9b67-73501ce283f5,AUTHORIZATION,,true 24259,0a321051-00bc-4b0c-9b67-73501ce283f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24260,0a321051-00bc-4b0c-9b67-73501ce283f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24261,0a321051-00bc-4b0c-9b67-73501ce283f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24262,83217bc2-a790-44be-b1ce-a1b7e2b6acb5,LIST_ACCOUNTS,hbciListAccounts,false -24263,83217bc2-a790-44be-b1ce-a1b7e2b6acb5,LIST_TRANSACTIONS,hbciListTransactions,false -24264,83217bc2-a790-44be-b1ce-a1b7e2b6acb5,AUTHORIZATION,,false -24265,83217bc2-a790-44be-b1ce-a1b7e2b6acb5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24266,83217bc2-a790-44be-b1ce-a1b7e2b6acb5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24267,83217bc2-a790-44be-b1ce-a1b7e2b6acb5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24262,050fee00-ab25-4a9b-8164-ec34216db4d7,LIST_ACCOUNTS,hbciListAccounts,false +24263,050fee00-ab25-4a9b-8164-ec34216db4d7,LIST_TRANSACTIONS,hbciListTransactions,false +24264,050fee00-ab25-4a9b-8164-ec34216db4d7,AUTHORIZATION,,false +24265,050fee00-ab25-4a9b-8164-ec34216db4d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24266,050fee00-ab25-4a9b-8164-ec34216db4d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24267,050fee00-ab25-4a9b-8164-ec34216db4d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24268,8a134cca-7762-45fc-993c-6164ae298f58,LIST_ACCOUNTS,xs2aListAccounts,true -24269,8a134cca-7762-45fc-993c-6164ae298f58,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24269,8a134cca-7762-45fc-993c-6164ae298f58,LIST_TRANSACTIONS,xs2aListTransactions,true 24270,8a134cca-7762-45fc-993c-6164ae298f58,AUTHORIZATION,,true 24271,8a134cca-7762-45fc-993c-6164ae298f58,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24272,8a134cca-7762-45fc-993c-6164ae298f58,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24273,8a134cca-7762-45fc-993c-6164ae298f58,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24274,4e2a44b0-47d7-4a0b-9003-98048a372d8d,LIST_ACCOUNTS,hbciListAccounts,false -24275,4e2a44b0-47d7-4a0b-9003-98048a372d8d,LIST_TRANSACTIONS,hbciListTransactions,false -24276,4e2a44b0-47d7-4a0b-9003-98048a372d8d,AUTHORIZATION,,false -24277,4e2a44b0-47d7-4a0b-9003-98048a372d8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24278,4e2a44b0-47d7-4a0b-9003-98048a372d8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24279,4e2a44b0-47d7-4a0b-9003-98048a372d8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24274,fca955e8-4a02-4cb4-b9ee-b1a825707c53,LIST_ACCOUNTS,hbciListAccounts,false +24275,fca955e8-4a02-4cb4-b9ee-b1a825707c53,LIST_TRANSACTIONS,hbciListTransactions,false +24276,fca955e8-4a02-4cb4-b9ee-b1a825707c53,AUTHORIZATION,,false +24277,fca955e8-4a02-4cb4-b9ee-b1a825707c53,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24278,fca955e8-4a02-4cb4-b9ee-b1a825707c53,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24279,fca955e8-4a02-4cb4-b9ee-b1a825707c53,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24280,55ba085d-a259-4e46-b90c-7c84ca22384a,LIST_ACCOUNTS,xs2aListAccounts,true -24281,55ba085d-a259-4e46-b90c-7c84ca22384a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24281,55ba085d-a259-4e46-b90c-7c84ca22384a,LIST_TRANSACTIONS,xs2aListTransactions,true 24282,55ba085d-a259-4e46-b90c-7c84ca22384a,AUTHORIZATION,,true 24283,55ba085d-a259-4e46-b90c-7c84ca22384a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24284,55ba085d-a259-4e46-b90c-7c84ca22384a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24285,55ba085d-a259-4e46-b90c-7c84ca22384a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24286,ada1b57f-4b9d-49f1-8378-fb0224a2a715,LIST_ACCOUNTS,hbciListAccounts,false -24287,ada1b57f-4b9d-49f1-8378-fb0224a2a715,LIST_TRANSACTIONS,hbciListTransactions,false -24288,ada1b57f-4b9d-49f1-8378-fb0224a2a715,AUTHORIZATION,,false -24289,ada1b57f-4b9d-49f1-8378-fb0224a2a715,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24290,ada1b57f-4b9d-49f1-8378-fb0224a2a715,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24291,ada1b57f-4b9d-49f1-8378-fb0224a2a715,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24286,39dcb2db-54db-4d0c-956b-23d3df595fa0,LIST_ACCOUNTS,hbciListAccounts,false +24287,39dcb2db-54db-4d0c-956b-23d3df595fa0,LIST_TRANSACTIONS,hbciListTransactions,false +24288,39dcb2db-54db-4d0c-956b-23d3df595fa0,AUTHORIZATION,,false +24289,39dcb2db-54db-4d0c-956b-23d3df595fa0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24290,39dcb2db-54db-4d0c-956b-23d3df595fa0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24291,39dcb2db-54db-4d0c-956b-23d3df595fa0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24292,1a93e0e2-2b44-42c8-9675-304d9733b5cc,LIST_ACCOUNTS,xs2aListAccounts,true -24293,1a93e0e2-2b44-42c8-9675-304d9733b5cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24293,1a93e0e2-2b44-42c8-9675-304d9733b5cc,LIST_TRANSACTIONS,xs2aListTransactions,true 24294,1a93e0e2-2b44-42c8-9675-304d9733b5cc,AUTHORIZATION,,true 24295,1a93e0e2-2b44-42c8-9675-304d9733b5cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24296,1a93e0e2-2b44-42c8-9675-304d9733b5cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24297,1a93e0e2-2b44-42c8-9675-304d9733b5cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24298,53e4c5a6-5d76-4c3d-8b01-95bb9c904cca,LIST_ACCOUNTS,hbciListAccounts,false -24299,53e4c5a6-5d76-4c3d-8b01-95bb9c904cca,LIST_TRANSACTIONS,hbciListTransactions,false -24300,53e4c5a6-5d76-4c3d-8b01-95bb9c904cca,AUTHORIZATION,,false -24301,53e4c5a6-5d76-4c3d-8b01-95bb9c904cca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24302,53e4c5a6-5d76-4c3d-8b01-95bb9c904cca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24303,53e4c5a6-5d76-4c3d-8b01-95bb9c904cca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24298,12209f02-c2d0-4b38-85b4-02e7ea4e6926,LIST_ACCOUNTS,hbciListAccounts,false +24299,12209f02-c2d0-4b38-85b4-02e7ea4e6926,LIST_TRANSACTIONS,hbciListTransactions,false +24300,12209f02-c2d0-4b38-85b4-02e7ea4e6926,AUTHORIZATION,,false +24301,12209f02-c2d0-4b38-85b4-02e7ea4e6926,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24302,12209f02-c2d0-4b38-85b4-02e7ea4e6926,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24303,12209f02-c2d0-4b38-85b4-02e7ea4e6926,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24304,8c4f3804-f5a0-437d-924f-ec62c1efc9e8,LIST_ACCOUNTS,xs2aListAccounts,true -24305,8c4f3804-f5a0-437d-924f-ec62c1efc9e8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24305,8c4f3804-f5a0-437d-924f-ec62c1efc9e8,LIST_TRANSACTIONS,xs2aListTransactions,true 24306,8c4f3804-f5a0-437d-924f-ec62c1efc9e8,AUTHORIZATION,,true 24307,8c4f3804-f5a0-437d-924f-ec62c1efc9e8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24308,8c4f3804-f5a0-437d-924f-ec62c1efc9e8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24309,8c4f3804-f5a0-437d-924f-ec62c1efc9e8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24310,3925f350-0ef9-4d71-8f94-649ae98350f6,LIST_ACCOUNTS,hbciListAccounts,false -24311,3925f350-0ef9-4d71-8f94-649ae98350f6,LIST_TRANSACTIONS,hbciListTransactions,false -24312,3925f350-0ef9-4d71-8f94-649ae98350f6,AUTHORIZATION,,false -24313,3925f350-0ef9-4d71-8f94-649ae98350f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24314,3925f350-0ef9-4d71-8f94-649ae98350f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24315,3925f350-0ef9-4d71-8f94-649ae98350f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24310,17fe6a96-088f-4f4a-ae7a-658cafa537ef,LIST_ACCOUNTS,hbciListAccounts,false +24311,17fe6a96-088f-4f4a-ae7a-658cafa537ef,LIST_TRANSACTIONS,hbciListTransactions,false +24312,17fe6a96-088f-4f4a-ae7a-658cafa537ef,AUTHORIZATION,,false +24313,17fe6a96-088f-4f4a-ae7a-658cafa537ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24314,17fe6a96-088f-4f4a-ae7a-658cafa537ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24315,17fe6a96-088f-4f4a-ae7a-658cafa537ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24316,e19df0b9-f2ca-4a67-8fc7-54bb27cd9d9e,LIST_ACCOUNTS,xs2aListAccounts,true -24317,e19df0b9-f2ca-4a67-8fc7-54bb27cd9d9e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24317,e19df0b9-f2ca-4a67-8fc7-54bb27cd9d9e,LIST_TRANSACTIONS,xs2aListTransactions,true 24318,e19df0b9-f2ca-4a67-8fc7-54bb27cd9d9e,AUTHORIZATION,,true 24319,e19df0b9-f2ca-4a67-8fc7-54bb27cd9d9e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24320,e19df0b9-f2ca-4a67-8fc7-54bb27cd9d9e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24321,e19df0b9-f2ca-4a67-8fc7-54bb27cd9d9e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24322,a83a2e6e-ccff-4bc7-8fe2-324db967d319,LIST_ACCOUNTS,hbciListAccounts,false -24323,a83a2e6e-ccff-4bc7-8fe2-324db967d319,LIST_TRANSACTIONS,hbciListTransactions,false -24324,a83a2e6e-ccff-4bc7-8fe2-324db967d319,AUTHORIZATION,,false -24325,a83a2e6e-ccff-4bc7-8fe2-324db967d319,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24326,a83a2e6e-ccff-4bc7-8fe2-324db967d319,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24327,a83a2e6e-ccff-4bc7-8fe2-324db967d319,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24322,7d56ffae-7f40-4d24-809a-15d05ba248ae,LIST_ACCOUNTS,hbciListAccounts,false +24323,7d56ffae-7f40-4d24-809a-15d05ba248ae,LIST_TRANSACTIONS,hbciListTransactions,false +24324,7d56ffae-7f40-4d24-809a-15d05ba248ae,AUTHORIZATION,,false +24325,7d56ffae-7f40-4d24-809a-15d05ba248ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24326,7d56ffae-7f40-4d24-809a-15d05ba248ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24327,7d56ffae-7f40-4d24-809a-15d05ba248ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24328,330f26d9-d36b-4288-8413-805903ec42e1,LIST_ACCOUNTS,xs2aListAccounts,true -24329,330f26d9-d36b-4288-8413-805903ec42e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24329,330f26d9-d36b-4288-8413-805903ec42e1,LIST_TRANSACTIONS,xs2aListTransactions,true 24330,330f26d9-d36b-4288-8413-805903ec42e1,AUTHORIZATION,,true 24331,330f26d9-d36b-4288-8413-805903ec42e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24332,330f26d9-d36b-4288-8413-805903ec42e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24333,330f26d9-d36b-4288-8413-805903ec42e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24334,abb38f78-bec0-48ba-a4a4-49c52797fe0a,LIST_ACCOUNTS,hbciListAccounts,false -24335,abb38f78-bec0-48ba-a4a4-49c52797fe0a,LIST_TRANSACTIONS,hbciListTransactions,false -24336,abb38f78-bec0-48ba-a4a4-49c52797fe0a,AUTHORIZATION,,false -24337,abb38f78-bec0-48ba-a4a4-49c52797fe0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24338,abb38f78-bec0-48ba-a4a4-49c52797fe0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24339,abb38f78-bec0-48ba-a4a4-49c52797fe0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24334,44ade2ed-4f71-40ab-a98a-5f9424a55472,LIST_ACCOUNTS,hbciListAccounts,false +24335,44ade2ed-4f71-40ab-a98a-5f9424a55472,LIST_TRANSACTIONS,hbciListTransactions,false +24336,44ade2ed-4f71-40ab-a98a-5f9424a55472,AUTHORIZATION,,false +24337,44ade2ed-4f71-40ab-a98a-5f9424a55472,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24338,44ade2ed-4f71-40ab-a98a-5f9424a55472,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24339,44ade2ed-4f71-40ab-a98a-5f9424a55472,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24340,390514e2-045a-45ec-a0d9-e0679fa071c2,LIST_ACCOUNTS,xs2aListAccounts,true -24341,390514e2-045a-45ec-a0d9-e0679fa071c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24341,390514e2-045a-45ec-a0d9-e0679fa071c2,LIST_TRANSACTIONS,xs2aListTransactions,true 24342,390514e2-045a-45ec-a0d9-e0679fa071c2,AUTHORIZATION,,true 24343,390514e2-045a-45ec-a0d9-e0679fa071c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24344,390514e2-045a-45ec-a0d9-e0679fa071c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24345,390514e2-045a-45ec-a0d9-e0679fa071c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24346,3dcf2923-1f42-4fd5-b127-9f39ad145580,LIST_ACCOUNTS,hbciListAccounts,false -24347,3dcf2923-1f42-4fd5-b127-9f39ad145580,LIST_TRANSACTIONS,hbciListTransactions,false -24348,3dcf2923-1f42-4fd5-b127-9f39ad145580,AUTHORIZATION,,false -24349,3dcf2923-1f42-4fd5-b127-9f39ad145580,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24350,3dcf2923-1f42-4fd5-b127-9f39ad145580,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24351,3dcf2923-1f42-4fd5-b127-9f39ad145580,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24346,84bd6d28-37f0-4255-974a-29aa78417ab3,LIST_ACCOUNTS,hbciListAccounts,false +24347,84bd6d28-37f0-4255-974a-29aa78417ab3,LIST_TRANSACTIONS,hbciListTransactions,false +24348,84bd6d28-37f0-4255-974a-29aa78417ab3,AUTHORIZATION,,false +24349,84bd6d28-37f0-4255-974a-29aa78417ab3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24350,84bd6d28-37f0-4255-974a-29aa78417ab3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24351,84bd6d28-37f0-4255-974a-29aa78417ab3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24352,93564f4f-95da-4384-b55c-d910003645d9,LIST_ACCOUNTS,xs2aListAccounts,true -24353,93564f4f-95da-4384-b55c-d910003645d9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24353,93564f4f-95da-4384-b55c-d910003645d9,LIST_TRANSACTIONS,xs2aListTransactions,true 24354,93564f4f-95da-4384-b55c-d910003645d9,AUTHORIZATION,,true 24355,93564f4f-95da-4384-b55c-d910003645d9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24356,93564f4f-95da-4384-b55c-d910003645d9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24357,93564f4f-95da-4384-b55c-d910003645d9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24358,7db66748-57cc-41f1-9dfc-c9ea27e1f0ac,LIST_ACCOUNTS,hbciListAccounts,false -24359,7db66748-57cc-41f1-9dfc-c9ea27e1f0ac,LIST_TRANSACTIONS,hbciListTransactions,false -24360,7db66748-57cc-41f1-9dfc-c9ea27e1f0ac,AUTHORIZATION,,false -24361,7db66748-57cc-41f1-9dfc-c9ea27e1f0ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24362,7db66748-57cc-41f1-9dfc-c9ea27e1f0ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24363,7db66748-57cc-41f1-9dfc-c9ea27e1f0ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24358,70fafc7c-f871-46b0-9dba-235967eea4ce,LIST_ACCOUNTS,hbciListAccounts,false +24359,70fafc7c-f871-46b0-9dba-235967eea4ce,LIST_TRANSACTIONS,hbciListTransactions,false +24360,70fafc7c-f871-46b0-9dba-235967eea4ce,AUTHORIZATION,,false +24361,70fafc7c-f871-46b0-9dba-235967eea4ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24362,70fafc7c-f871-46b0-9dba-235967eea4ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24363,70fafc7c-f871-46b0-9dba-235967eea4ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24364,449f2160-aca8-41ce-9989-d3120ded4536,LIST_ACCOUNTS,xs2aListAccounts,true -24365,449f2160-aca8-41ce-9989-d3120ded4536,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24365,449f2160-aca8-41ce-9989-d3120ded4536,LIST_TRANSACTIONS,xs2aListTransactions,true 24366,449f2160-aca8-41ce-9989-d3120ded4536,AUTHORIZATION,,true 24367,449f2160-aca8-41ce-9989-d3120ded4536,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24368,449f2160-aca8-41ce-9989-d3120ded4536,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24369,449f2160-aca8-41ce-9989-d3120ded4536,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24370,57543e8a-3f84-4b51-b0b6-da610adef40e,LIST_ACCOUNTS,hbciListAccounts,false -24371,57543e8a-3f84-4b51-b0b6-da610adef40e,LIST_TRANSACTIONS,hbciListTransactions,false -24372,57543e8a-3f84-4b51-b0b6-da610adef40e,AUTHORIZATION,,false -24373,57543e8a-3f84-4b51-b0b6-da610adef40e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24374,57543e8a-3f84-4b51-b0b6-da610adef40e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24375,57543e8a-3f84-4b51-b0b6-da610adef40e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24370,1ec9b83c-412b-4d44-a4ef-249797f9a871,LIST_ACCOUNTS,hbciListAccounts,false +24371,1ec9b83c-412b-4d44-a4ef-249797f9a871,LIST_TRANSACTIONS,hbciListTransactions,false +24372,1ec9b83c-412b-4d44-a4ef-249797f9a871,AUTHORIZATION,,false +24373,1ec9b83c-412b-4d44-a4ef-249797f9a871,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24374,1ec9b83c-412b-4d44-a4ef-249797f9a871,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24375,1ec9b83c-412b-4d44-a4ef-249797f9a871,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24376,9cb6c37a-0287-42ef-a986-df18cd0fab8f,LIST_ACCOUNTS,xs2aListAccounts,true -24377,9cb6c37a-0287-42ef-a986-df18cd0fab8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24377,9cb6c37a-0287-42ef-a986-df18cd0fab8f,LIST_TRANSACTIONS,xs2aListTransactions,true 24378,9cb6c37a-0287-42ef-a986-df18cd0fab8f,AUTHORIZATION,,true 24379,9cb6c37a-0287-42ef-a986-df18cd0fab8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24380,9cb6c37a-0287-42ef-a986-df18cd0fab8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24381,9cb6c37a-0287-42ef-a986-df18cd0fab8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24382,9b560978-4cb0-4551-8912-8c80893b787c,LIST_ACCOUNTS,hbciListAccounts,false -24383,9b560978-4cb0-4551-8912-8c80893b787c,LIST_TRANSACTIONS,hbciListTransactions,false -24384,9b560978-4cb0-4551-8912-8c80893b787c,AUTHORIZATION,,false -24385,9b560978-4cb0-4551-8912-8c80893b787c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24386,9b560978-4cb0-4551-8912-8c80893b787c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24387,9b560978-4cb0-4551-8912-8c80893b787c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24382,ef2caa68-924d-4392-8994-e6741f53b25f,LIST_ACCOUNTS,hbciListAccounts,false +24383,ef2caa68-924d-4392-8994-e6741f53b25f,LIST_TRANSACTIONS,hbciListTransactions,false +24384,ef2caa68-924d-4392-8994-e6741f53b25f,AUTHORIZATION,,false +24385,ef2caa68-924d-4392-8994-e6741f53b25f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24386,ef2caa68-924d-4392-8994-e6741f53b25f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24387,ef2caa68-924d-4392-8994-e6741f53b25f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24388,38840255-ce1f-47fd-b5e4-d668187717a5,LIST_ACCOUNTS,xs2aListAccounts,true -24389,38840255-ce1f-47fd-b5e4-d668187717a5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24389,38840255-ce1f-47fd-b5e4-d668187717a5,LIST_TRANSACTIONS,xs2aListTransactions,true 24390,38840255-ce1f-47fd-b5e4-d668187717a5,AUTHORIZATION,,true 24391,38840255-ce1f-47fd-b5e4-d668187717a5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24392,38840255-ce1f-47fd-b5e4-d668187717a5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24393,38840255-ce1f-47fd-b5e4-d668187717a5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24394,8f1d5a9a-a2e9-4c6a-8d81-5d354eff3c2e,LIST_ACCOUNTS,hbciListAccounts,false -24395,8f1d5a9a-a2e9-4c6a-8d81-5d354eff3c2e,LIST_TRANSACTIONS,hbciListTransactions,false -24396,8f1d5a9a-a2e9-4c6a-8d81-5d354eff3c2e,AUTHORIZATION,,false -24397,8f1d5a9a-a2e9-4c6a-8d81-5d354eff3c2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24398,8f1d5a9a-a2e9-4c6a-8d81-5d354eff3c2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24399,8f1d5a9a-a2e9-4c6a-8d81-5d354eff3c2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24394,52734a82-ea22-4dff-9b4c-590071392b56,LIST_ACCOUNTS,hbciListAccounts,false +24395,52734a82-ea22-4dff-9b4c-590071392b56,LIST_TRANSACTIONS,hbciListTransactions,false +24396,52734a82-ea22-4dff-9b4c-590071392b56,AUTHORIZATION,,false +24397,52734a82-ea22-4dff-9b4c-590071392b56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24398,52734a82-ea22-4dff-9b4c-590071392b56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24399,52734a82-ea22-4dff-9b4c-590071392b56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24400,05a2c0ab-f6e5-4beb-935f-ea8081143e60,LIST_ACCOUNTS,xs2aListAccounts,true -24401,05a2c0ab-f6e5-4beb-935f-ea8081143e60,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24401,05a2c0ab-f6e5-4beb-935f-ea8081143e60,LIST_TRANSACTIONS,xs2aListTransactions,true 24402,05a2c0ab-f6e5-4beb-935f-ea8081143e60,AUTHORIZATION,,true 24403,05a2c0ab-f6e5-4beb-935f-ea8081143e60,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24404,05a2c0ab-f6e5-4beb-935f-ea8081143e60,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24405,05a2c0ab-f6e5-4beb-935f-ea8081143e60,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24406,5015c4e0-d8b2-4da6-90d6-481edd30c2e8,LIST_ACCOUNTS,hbciListAccounts,false -24407,5015c4e0-d8b2-4da6-90d6-481edd30c2e8,LIST_TRANSACTIONS,hbciListTransactions,false -24408,5015c4e0-d8b2-4da6-90d6-481edd30c2e8,AUTHORIZATION,,false -24409,5015c4e0-d8b2-4da6-90d6-481edd30c2e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24410,5015c4e0-d8b2-4da6-90d6-481edd30c2e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24411,5015c4e0-d8b2-4da6-90d6-481edd30c2e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24406,8786b266-5e16-40be-b248-d0a834638b1a,LIST_ACCOUNTS,hbciListAccounts,false +24407,8786b266-5e16-40be-b248-d0a834638b1a,LIST_TRANSACTIONS,hbciListTransactions,false +24408,8786b266-5e16-40be-b248-d0a834638b1a,AUTHORIZATION,,false +24409,8786b266-5e16-40be-b248-d0a834638b1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24410,8786b266-5e16-40be-b248-d0a834638b1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24411,8786b266-5e16-40be-b248-d0a834638b1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24412,220ccdd0-8e0d-40f5-8047-9685e405e9b5,LIST_ACCOUNTS,xs2aListAccounts,true -24413,220ccdd0-8e0d-40f5-8047-9685e405e9b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24413,220ccdd0-8e0d-40f5-8047-9685e405e9b5,LIST_TRANSACTIONS,xs2aListTransactions,true 24414,220ccdd0-8e0d-40f5-8047-9685e405e9b5,AUTHORIZATION,,true 24415,220ccdd0-8e0d-40f5-8047-9685e405e9b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24416,220ccdd0-8e0d-40f5-8047-9685e405e9b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24417,220ccdd0-8e0d-40f5-8047-9685e405e9b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24418,e1dac43b-8a33-439a-9f02-8fcfc1cd4464,LIST_ACCOUNTS,hbciListAccounts,false -24419,e1dac43b-8a33-439a-9f02-8fcfc1cd4464,LIST_TRANSACTIONS,hbciListTransactions,false -24420,e1dac43b-8a33-439a-9f02-8fcfc1cd4464,AUTHORIZATION,,false -24421,e1dac43b-8a33-439a-9f02-8fcfc1cd4464,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24422,e1dac43b-8a33-439a-9f02-8fcfc1cd4464,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24423,e1dac43b-8a33-439a-9f02-8fcfc1cd4464,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24418,ab872f52-7898-49de-9827-6f67a2059812,LIST_ACCOUNTS,hbciListAccounts,false +24419,ab872f52-7898-49de-9827-6f67a2059812,LIST_TRANSACTIONS,hbciListTransactions,false +24420,ab872f52-7898-49de-9827-6f67a2059812,AUTHORIZATION,,false +24421,ab872f52-7898-49de-9827-6f67a2059812,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24422,ab872f52-7898-49de-9827-6f67a2059812,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24423,ab872f52-7898-49de-9827-6f67a2059812,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24424,585c6544-8ea4-49e1-b260-ad084376f781,LIST_ACCOUNTS,xs2aListAccounts,true -24425,585c6544-8ea4-49e1-b260-ad084376f781,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24425,585c6544-8ea4-49e1-b260-ad084376f781,LIST_TRANSACTIONS,xs2aListTransactions,true 24426,585c6544-8ea4-49e1-b260-ad084376f781,AUTHORIZATION,,true 24427,585c6544-8ea4-49e1-b260-ad084376f781,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24428,585c6544-8ea4-49e1-b260-ad084376f781,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24429,585c6544-8ea4-49e1-b260-ad084376f781,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24430,2c437ce9-f410-4041-b92a-446a2553e99a,LIST_ACCOUNTS,hbciListAccounts,false -24431,2c437ce9-f410-4041-b92a-446a2553e99a,LIST_TRANSACTIONS,hbciListTransactions,false -24432,2c437ce9-f410-4041-b92a-446a2553e99a,AUTHORIZATION,,false -24433,2c437ce9-f410-4041-b92a-446a2553e99a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24434,2c437ce9-f410-4041-b92a-446a2553e99a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24435,2c437ce9-f410-4041-b92a-446a2553e99a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24430,e4961a29-2c91-4375-b66d-3892d2e3def2,LIST_ACCOUNTS,hbciListAccounts,false +24431,e4961a29-2c91-4375-b66d-3892d2e3def2,LIST_TRANSACTIONS,hbciListTransactions,false +24432,e4961a29-2c91-4375-b66d-3892d2e3def2,AUTHORIZATION,,false +24433,e4961a29-2c91-4375-b66d-3892d2e3def2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24434,e4961a29-2c91-4375-b66d-3892d2e3def2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24435,e4961a29-2c91-4375-b66d-3892d2e3def2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24436,4552f1f2-2dc2-476f-a193-402bca5bd8ba,LIST_ACCOUNTS,xs2aListAccounts,true -24437,4552f1f2-2dc2-476f-a193-402bca5bd8ba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24437,4552f1f2-2dc2-476f-a193-402bca5bd8ba,LIST_TRANSACTIONS,xs2aListTransactions,true 24438,4552f1f2-2dc2-476f-a193-402bca5bd8ba,AUTHORIZATION,,true 24439,4552f1f2-2dc2-476f-a193-402bca5bd8ba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24440,4552f1f2-2dc2-476f-a193-402bca5bd8ba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24441,4552f1f2-2dc2-476f-a193-402bca5bd8ba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24442,5ff3663b-18c5-414a-b95d-1b4bce501c10,LIST_ACCOUNTS,hbciListAccounts,false -24443,5ff3663b-18c5-414a-b95d-1b4bce501c10,LIST_TRANSACTIONS,hbciListTransactions,false -24444,5ff3663b-18c5-414a-b95d-1b4bce501c10,AUTHORIZATION,,false -24445,5ff3663b-18c5-414a-b95d-1b4bce501c10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24446,5ff3663b-18c5-414a-b95d-1b4bce501c10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24447,5ff3663b-18c5-414a-b95d-1b4bce501c10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24442,676c8bee-fdb6-40c2-9e33-322a243d216a,LIST_ACCOUNTS,hbciListAccounts,false +24443,676c8bee-fdb6-40c2-9e33-322a243d216a,LIST_TRANSACTIONS,hbciListTransactions,false +24444,676c8bee-fdb6-40c2-9e33-322a243d216a,AUTHORIZATION,,false +24445,676c8bee-fdb6-40c2-9e33-322a243d216a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24446,676c8bee-fdb6-40c2-9e33-322a243d216a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24447,676c8bee-fdb6-40c2-9e33-322a243d216a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24448,d955800d-5afe-4533-82c9-100706bd347f,LIST_ACCOUNTS,xs2aListAccounts,true -24449,d955800d-5afe-4533-82c9-100706bd347f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24449,d955800d-5afe-4533-82c9-100706bd347f,LIST_TRANSACTIONS,xs2aListTransactions,true 24450,d955800d-5afe-4533-82c9-100706bd347f,AUTHORIZATION,,true 24451,d955800d-5afe-4533-82c9-100706bd347f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24452,d955800d-5afe-4533-82c9-100706bd347f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24453,d955800d-5afe-4533-82c9-100706bd347f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24454,db346487-eeb4-4694-98eb-5210a9624a75,LIST_ACCOUNTS,hbciListAccounts,false -24455,db346487-eeb4-4694-98eb-5210a9624a75,LIST_TRANSACTIONS,hbciListTransactions,false -24456,db346487-eeb4-4694-98eb-5210a9624a75,AUTHORIZATION,,false -24457,db346487-eeb4-4694-98eb-5210a9624a75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24458,db346487-eeb4-4694-98eb-5210a9624a75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24459,db346487-eeb4-4694-98eb-5210a9624a75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24454,afe3aa1b-1b21-4779-a22f-e1e37261d5f1,LIST_ACCOUNTS,hbciListAccounts,false +24455,afe3aa1b-1b21-4779-a22f-e1e37261d5f1,LIST_TRANSACTIONS,hbciListTransactions,false +24456,afe3aa1b-1b21-4779-a22f-e1e37261d5f1,AUTHORIZATION,,false +24457,afe3aa1b-1b21-4779-a22f-e1e37261d5f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24458,afe3aa1b-1b21-4779-a22f-e1e37261d5f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24459,afe3aa1b-1b21-4779-a22f-e1e37261d5f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24460,54f554f9-9319-486b-bd88-b73f51c670b1,LIST_ACCOUNTS,xs2aListAccounts,true -24461,54f554f9-9319-486b-bd88-b73f51c670b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24461,54f554f9-9319-486b-bd88-b73f51c670b1,LIST_TRANSACTIONS,xs2aListTransactions,true 24462,54f554f9-9319-486b-bd88-b73f51c670b1,AUTHORIZATION,,true 24463,54f554f9-9319-486b-bd88-b73f51c670b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24464,54f554f9-9319-486b-bd88-b73f51c670b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24465,54f554f9-9319-486b-bd88-b73f51c670b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24466,26da5ca0-2655-4fee-a60b-497c9bcf5e15,LIST_ACCOUNTS,hbciListAccounts,false -24467,26da5ca0-2655-4fee-a60b-497c9bcf5e15,LIST_TRANSACTIONS,hbciListTransactions,false -24468,26da5ca0-2655-4fee-a60b-497c9bcf5e15,AUTHORIZATION,,false -24469,26da5ca0-2655-4fee-a60b-497c9bcf5e15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24470,26da5ca0-2655-4fee-a60b-497c9bcf5e15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24471,26da5ca0-2655-4fee-a60b-497c9bcf5e15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24466,7c1b9032-c8d6-4092-af1e-d9ba0fbeb541,LIST_ACCOUNTS,hbciListAccounts,false +24467,7c1b9032-c8d6-4092-af1e-d9ba0fbeb541,LIST_TRANSACTIONS,hbciListTransactions,false +24468,7c1b9032-c8d6-4092-af1e-d9ba0fbeb541,AUTHORIZATION,,false +24469,7c1b9032-c8d6-4092-af1e-d9ba0fbeb541,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24470,7c1b9032-c8d6-4092-af1e-d9ba0fbeb541,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24471,7c1b9032-c8d6-4092-af1e-d9ba0fbeb541,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24472,b2fc128f-1732-4ded-9c6a-0db16300bce4,LIST_ACCOUNTS,xs2aListAccounts,true -24473,b2fc128f-1732-4ded-9c6a-0db16300bce4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24473,b2fc128f-1732-4ded-9c6a-0db16300bce4,LIST_TRANSACTIONS,xs2aListTransactions,true 24474,b2fc128f-1732-4ded-9c6a-0db16300bce4,AUTHORIZATION,,true 24475,b2fc128f-1732-4ded-9c6a-0db16300bce4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24476,b2fc128f-1732-4ded-9c6a-0db16300bce4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24477,b2fc128f-1732-4ded-9c6a-0db16300bce4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24478,c03c982b-b2aa-43b1-9702-7bbaafedf5be,LIST_ACCOUNTS,hbciListAccounts,false -24479,c03c982b-b2aa-43b1-9702-7bbaafedf5be,LIST_TRANSACTIONS,hbciListTransactions,false -24480,c03c982b-b2aa-43b1-9702-7bbaafedf5be,AUTHORIZATION,,false -24481,c03c982b-b2aa-43b1-9702-7bbaafedf5be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24482,c03c982b-b2aa-43b1-9702-7bbaafedf5be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24483,c03c982b-b2aa-43b1-9702-7bbaafedf5be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24478,edb950e8-a1be-47b1-a03b-418a1ecbfb7f,LIST_ACCOUNTS,hbciListAccounts,false +24479,edb950e8-a1be-47b1-a03b-418a1ecbfb7f,LIST_TRANSACTIONS,hbciListTransactions,false +24480,edb950e8-a1be-47b1-a03b-418a1ecbfb7f,AUTHORIZATION,,false +24481,edb950e8-a1be-47b1-a03b-418a1ecbfb7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24482,edb950e8-a1be-47b1-a03b-418a1ecbfb7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24483,edb950e8-a1be-47b1-a03b-418a1ecbfb7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24484,63d3cfe0-d96e-40ff-94e2-165bfbc69ee2,LIST_ACCOUNTS,xs2aListAccounts,true -24485,63d3cfe0-d96e-40ff-94e2-165bfbc69ee2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24485,63d3cfe0-d96e-40ff-94e2-165bfbc69ee2,LIST_TRANSACTIONS,xs2aListTransactions,true 24486,63d3cfe0-d96e-40ff-94e2-165bfbc69ee2,AUTHORIZATION,,true 24487,63d3cfe0-d96e-40ff-94e2-165bfbc69ee2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24488,63d3cfe0-d96e-40ff-94e2-165bfbc69ee2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24489,63d3cfe0-d96e-40ff-94e2-165bfbc69ee2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24490,b4ce3bb5-6d90-4d42-970e-80bcde663cdb,LIST_ACCOUNTS,hbciListAccounts,false -24491,b4ce3bb5-6d90-4d42-970e-80bcde663cdb,LIST_TRANSACTIONS,hbciListTransactions,false -24492,b4ce3bb5-6d90-4d42-970e-80bcde663cdb,AUTHORIZATION,,false -24493,b4ce3bb5-6d90-4d42-970e-80bcde663cdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24494,b4ce3bb5-6d90-4d42-970e-80bcde663cdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24495,b4ce3bb5-6d90-4d42-970e-80bcde663cdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24490,ec4a4087-62b6-4f85-b895-6f8277dd188d,LIST_ACCOUNTS,hbciListAccounts,false +24491,ec4a4087-62b6-4f85-b895-6f8277dd188d,LIST_TRANSACTIONS,hbciListTransactions,false +24492,ec4a4087-62b6-4f85-b895-6f8277dd188d,AUTHORIZATION,,false +24493,ec4a4087-62b6-4f85-b895-6f8277dd188d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24494,ec4a4087-62b6-4f85-b895-6f8277dd188d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24495,ec4a4087-62b6-4f85-b895-6f8277dd188d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24496,2252af46-d64a-4289-8371-07647098e195,LIST_ACCOUNTS,xs2aListAccounts,true -24497,2252af46-d64a-4289-8371-07647098e195,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24497,2252af46-d64a-4289-8371-07647098e195,LIST_TRANSACTIONS,xs2aListTransactions,true 24498,2252af46-d64a-4289-8371-07647098e195,AUTHORIZATION,,true 24499,2252af46-d64a-4289-8371-07647098e195,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24500,2252af46-d64a-4289-8371-07647098e195,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24501,2252af46-d64a-4289-8371-07647098e195,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24502,901cadb9-6500-45d6-9f62-78844a078e09,LIST_ACCOUNTS,hbciListAccounts,false -24503,901cadb9-6500-45d6-9f62-78844a078e09,LIST_TRANSACTIONS,hbciListTransactions,false -24504,901cadb9-6500-45d6-9f62-78844a078e09,AUTHORIZATION,,false -24505,901cadb9-6500-45d6-9f62-78844a078e09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24506,901cadb9-6500-45d6-9f62-78844a078e09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24507,901cadb9-6500-45d6-9f62-78844a078e09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24502,548027ab-c859-483a-aba0-5dfc8a2ccb7f,LIST_ACCOUNTS,hbciListAccounts,false +24503,548027ab-c859-483a-aba0-5dfc8a2ccb7f,LIST_TRANSACTIONS,hbciListTransactions,false +24504,548027ab-c859-483a-aba0-5dfc8a2ccb7f,AUTHORIZATION,,false +24505,548027ab-c859-483a-aba0-5dfc8a2ccb7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24506,548027ab-c859-483a-aba0-5dfc8a2ccb7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24507,548027ab-c859-483a-aba0-5dfc8a2ccb7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24508,88d4e744-20fa-473e-b1ab-b27606826118,LIST_ACCOUNTS,xs2aListAccounts,true -24509,88d4e744-20fa-473e-b1ab-b27606826118,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24509,88d4e744-20fa-473e-b1ab-b27606826118,LIST_TRANSACTIONS,xs2aListTransactions,true 24510,88d4e744-20fa-473e-b1ab-b27606826118,AUTHORIZATION,,true 24511,88d4e744-20fa-473e-b1ab-b27606826118,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24512,88d4e744-20fa-473e-b1ab-b27606826118,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24513,88d4e744-20fa-473e-b1ab-b27606826118,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24514,590c8a65-98e1-4eaf-9471-f287cbc490a8,LIST_ACCOUNTS,hbciListAccounts,false -24515,590c8a65-98e1-4eaf-9471-f287cbc490a8,LIST_TRANSACTIONS,hbciListTransactions,false -24516,590c8a65-98e1-4eaf-9471-f287cbc490a8,AUTHORIZATION,,false -24517,590c8a65-98e1-4eaf-9471-f287cbc490a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24518,590c8a65-98e1-4eaf-9471-f287cbc490a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24519,590c8a65-98e1-4eaf-9471-f287cbc490a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24514,8ebdad3f-d3aa-4d0e-8af0-655349bcaad6,LIST_ACCOUNTS,hbciListAccounts,false +24515,8ebdad3f-d3aa-4d0e-8af0-655349bcaad6,LIST_TRANSACTIONS,hbciListTransactions,false +24516,8ebdad3f-d3aa-4d0e-8af0-655349bcaad6,AUTHORIZATION,,false +24517,8ebdad3f-d3aa-4d0e-8af0-655349bcaad6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24518,8ebdad3f-d3aa-4d0e-8af0-655349bcaad6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24519,8ebdad3f-d3aa-4d0e-8af0-655349bcaad6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24520,09e06d8f-5503-4902-8a65-6f30feab791b,LIST_ACCOUNTS,xs2aListAccounts,true -24521,09e06d8f-5503-4902-8a65-6f30feab791b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24521,09e06d8f-5503-4902-8a65-6f30feab791b,LIST_TRANSACTIONS,xs2aListTransactions,true 24522,09e06d8f-5503-4902-8a65-6f30feab791b,AUTHORIZATION,,true 24523,09e06d8f-5503-4902-8a65-6f30feab791b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24524,09e06d8f-5503-4902-8a65-6f30feab791b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24525,09e06d8f-5503-4902-8a65-6f30feab791b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24526,5e231785-e023-42f7-9cb3-4494c9d6aef6,LIST_ACCOUNTS,hbciListAccounts,false -24527,5e231785-e023-42f7-9cb3-4494c9d6aef6,LIST_TRANSACTIONS,hbciListTransactions,false -24528,5e231785-e023-42f7-9cb3-4494c9d6aef6,AUTHORIZATION,,false -24529,5e231785-e023-42f7-9cb3-4494c9d6aef6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24530,5e231785-e023-42f7-9cb3-4494c9d6aef6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24531,5e231785-e023-42f7-9cb3-4494c9d6aef6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24526,499fb163-1171-4885-816a-c7a7b95d623f,LIST_ACCOUNTS,hbciListAccounts,false +24527,499fb163-1171-4885-816a-c7a7b95d623f,LIST_TRANSACTIONS,hbciListTransactions,false +24528,499fb163-1171-4885-816a-c7a7b95d623f,AUTHORIZATION,,false +24529,499fb163-1171-4885-816a-c7a7b95d623f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24530,499fb163-1171-4885-816a-c7a7b95d623f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24531,499fb163-1171-4885-816a-c7a7b95d623f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24532,4664b115-6c79-459b-8175-6e76055bbe19,LIST_ACCOUNTS,xs2aListAccounts,true -24533,4664b115-6c79-459b-8175-6e76055bbe19,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24533,4664b115-6c79-459b-8175-6e76055bbe19,LIST_TRANSACTIONS,xs2aListTransactions,true 24534,4664b115-6c79-459b-8175-6e76055bbe19,AUTHORIZATION,,true 24535,4664b115-6c79-459b-8175-6e76055bbe19,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24536,4664b115-6c79-459b-8175-6e76055bbe19,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24537,4664b115-6c79-459b-8175-6e76055bbe19,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24538,d457739f-9f9d-4a02-8ae4-675b5c297852,LIST_ACCOUNTS,hbciListAccounts,false -24539,d457739f-9f9d-4a02-8ae4-675b5c297852,LIST_TRANSACTIONS,hbciListTransactions,false -24540,d457739f-9f9d-4a02-8ae4-675b5c297852,AUTHORIZATION,,false -24541,d457739f-9f9d-4a02-8ae4-675b5c297852,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24542,d457739f-9f9d-4a02-8ae4-675b5c297852,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24543,d457739f-9f9d-4a02-8ae4-675b5c297852,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24538,a0026882-593d-48aa-adf7-dc23bcf24cd6,LIST_ACCOUNTS,hbciListAccounts,false +24539,a0026882-593d-48aa-adf7-dc23bcf24cd6,LIST_TRANSACTIONS,hbciListTransactions,false +24540,a0026882-593d-48aa-adf7-dc23bcf24cd6,AUTHORIZATION,,false +24541,a0026882-593d-48aa-adf7-dc23bcf24cd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24542,a0026882-593d-48aa-adf7-dc23bcf24cd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24543,a0026882-593d-48aa-adf7-dc23bcf24cd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24544,531fe6cc-c071-4f81-8cda-10f6977a5a4f,LIST_ACCOUNTS,xs2aListAccounts,true -24545,531fe6cc-c071-4f81-8cda-10f6977a5a4f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24545,531fe6cc-c071-4f81-8cda-10f6977a5a4f,LIST_TRANSACTIONS,xs2aListTransactions,true 24546,531fe6cc-c071-4f81-8cda-10f6977a5a4f,AUTHORIZATION,,true 24547,531fe6cc-c071-4f81-8cda-10f6977a5a4f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24548,531fe6cc-c071-4f81-8cda-10f6977a5a4f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24549,531fe6cc-c071-4f81-8cda-10f6977a5a4f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24550,7bbe296e-047c-4db4-9398-cec7b6a324d3,LIST_ACCOUNTS,hbciListAccounts,false -24551,7bbe296e-047c-4db4-9398-cec7b6a324d3,LIST_TRANSACTIONS,hbciListTransactions,false -24552,7bbe296e-047c-4db4-9398-cec7b6a324d3,AUTHORIZATION,,false -24553,7bbe296e-047c-4db4-9398-cec7b6a324d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24554,7bbe296e-047c-4db4-9398-cec7b6a324d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24555,7bbe296e-047c-4db4-9398-cec7b6a324d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24550,bec5d360-1d44-40e3-9371-f9b3065a54ae,LIST_ACCOUNTS,hbciListAccounts,false +24551,bec5d360-1d44-40e3-9371-f9b3065a54ae,LIST_TRANSACTIONS,hbciListTransactions,false +24552,bec5d360-1d44-40e3-9371-f9b3065a54ae,AUTHORIZATION,,false +24553,bec5d360-1d44-40e3-9371-f9b3065a54ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24554,bec5d360-1d44-40e3-9371-f9b3065a54ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24555,bec5d360-1d44-40e3-9371-f9b3065a54ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24556,05d4f39c-6187-455c-bae6-d3b108c61619,LIST_ACCOUNTS,xs2aListAccounts,true -24557,05d4f39c-6187-455c-bae6-d3b108c61619,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24557,05d4f39c-6187-455c-bae6-d3b108c61619,LIST_TRANSACTIONS,xs2aListTransactions,true 24558,05d4f39c-6187-455c-bae6-d3b108c61619,AUTHORIZATION,,true 24559,05d4f39c-6187-455c-bae6-d3b108c61619,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24560,05d4f39c-6187-455c-bae6-d3b108c61619,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24561,05d4f39c-6187-455c-bae6-d3b108c61619,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24562,5eff384c-9473-4cbb-87dc-1657c93e70ab,LIST_ACCOUNTS,hbciListAccounts,false -24563,5eff384c-9473-4cbb-87dc-1657c93e70ab,LIST_TRANSACTIONS,hbciListTransactions,false -24564,5eff384c-9473-4cbb-87dc-1657c93e70ab,AUTHORIZATION,,false -24565,5eff384c-9473-4cbb-87dc-1657c93e70ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24566,5eff384c-9473-4cbb-87dc-1657c93e70ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24567,5eff384c-9473-4cbb-87dc-1657c93e70ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24562,db46e7da-0dba-4f48-8578-dea0c62343e3,LIST_ACCOUNTS,hbciListAccounts,false +24563,db46e7da-0dba-4f48-8578-dea0c62343e3,LIST_TRANSACTIONS,hbciListTransactions,false +24564,db46e7da-0dba-4f48-8578-dea0c62343e3,AUTHORIZATION,,false +24565,db46e7da-0dba-4f48-8578-dea0c62343e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24566,db46e7da-0dba-4f48-8578-dea0c62343e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24567,db46e7da-0dba-4f48-8578-dea0c62343e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24568,c440fa0f-d187-4d4b-98c7-3662a1f99f7d,LIST_ACCOUNTS,xs2aListAccounts,true -24569,c440fa0f-d187-4d4b-98c7-3662a1f99f7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24569,c440fa0f-d187-4d4b-98c7-3662a1f99f7d,LIST_TRANSACTIONS,xs2aListTransactions,true 24570,c440fa0f-d187-4d4b-98c7-3662a1f99f7d,AUTHORIZATION,,true 24571,c440fa0f-d187-4d4b-98c7-3662a1f99f7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24572,c440fa0f-d187-4d4b-98c7-3662a1f99f7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24573,c440fa0f-d187-4d4b-98c7-3662a1f99f7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24574,f30e67ec-edef-4099-a9a3-0a80fd6b6c5e,LIST_ACCOUNTS,hbciListAccounts,false -24575,f30e67ec-edef-4099-a9a3-0a80fd6b6c5e,LIST_TRANSACTIONS,hbciListTransactions,false -24576,f30e67ec-edef-4099-a9a3-0a80fd6b6c5e,AUTHORIZATION,,false -24577,f30e67ec-edef-4099-a9a3-0a80fd6b6c5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24578,f30e67ec-edef-4099-a9a3-0a80fd6b6c5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24579,f30e67ec-edef-4099-a9a3-0a80fd6b6c5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24574,ae499b83-739c-48d1-8662-b7828c411868,LIST_ACCOUNTS,hbciListAccounts,false +24575,ae499b83-739c-48d1-8662-b7828c411868,LIST_TRANSACTIONS,hbciListTransactions,false +24576,ae499b83-739c-48d1-8662-b7828c411868,AUTHORIZATION,,false +24577,ae499b83-739c-48d1-8662-b7828c411868,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24578,ae499b83-739c-48d1-8662-b7828c411868,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24579,ae499b83-739c-48d1-8662-b7828c411868,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24580,05663c5c-e2ac-447a-8dea-9588a1203697,LIST_ACCOUNTS,xs2aListAccounts,true -24581,05663c5c-e2ac-447a-8dea-9588a1203697,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24581,05663c5c-e2ac-447a-8dea-9588a1203697,LIST_TRANSACTIONS,xs2aListTransactions,true 24582,05663c5c-e2ac-447a-8dea-9588a1203697,AUTHORIZATION,,true 24583,05663c5c-e2ac-447a-8dea-9588a1203697,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24584,05663c5c-e2ac-447a-8dea-9588a1203697,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24585,05663c5c-e2ac-447a-8dea-9588a1203697,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24586,30f37c52-6200-4659-af27-97180422862f,LIST_ACCOUNTS,hbciListAccounts,false -24587,30f37c52-6200-4659-af27-97180422862f,LIST_TRANSACTIONS,hbciListTransactions,false -24588,30f37c52-6200-4659-af27-97180422862f,AUTHORIZATION,,false -24589,30f37c52-6200-4659-af27-97180422862f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24590,30f37c52-6200-4659-af27-97180422862f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24591,30f37c52-6200-4659-af27-97180422862f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24586,36a1c352-a003-49c1-a726-ed8ef39e8527,LIST_ACCOUNTS,hbciListAccounts,false +24587,36a1c352-a003-49c1-a726-ed8ef39e8527,LIST_TRANSACTIONS,hbciListTransactions,false +24588,36a1c352-a003-49c1-a726-ed8ef39e8527,AUTHORIZATION,,false +24589,36a1c352-a003-49c1-a726-ed8ef39e8527,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24590,36a1c352-a003-49c1-a726-ed8ef39e8527,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24591,36a1c352-a003-49c1-a726-ed8ef39e8527,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24592,8011d545-e65d-42a0-bcba-26558d7eafcc,LIST_ACCOUNTS,xs2aListAccounts,true -24593,8011d545-e65d-42a0-bcba-26558d7eafcc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24593,8011d545-e65d-42a0-bcba-26558d7eafcc,LIST_TRANSACTIONS,xs2aListTransactions,true 24594,8011d545-e65d-42a0-bcba-26558d7eafcc,AUTHORIZATION,,true 24595,8011d545-e65d-42a0-bcba-26558d7eafcc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24596,8011d545-e65d-42a0-bcba-26558d7eafcc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24597,8011d545-e65d-42a0-bcba-26558d7eafcc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24598,7925f1f6-8a39-4c8e-a561-c6cb90670aa7,LIST_ACCOUNTS,hbciListAccounts,false -24599,7925f1f6-8a39-4c8e-a561-c6cb90670aa7,LIST_TRANSACTIONS,hbciListTransactions,false -24600,7925f1f6-8a39-4c8e-a561-c6cb90670aa7,AUTHORIZATION,,false -24601,7925f1f6-8a39-4c8e-a561-c6cb90670aa7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24602,7925f1f6-8a39-4c8e-a561-c6cb90670aa7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24603,7925f1f6-8a39-4c8e-a561-c6cb90670aa7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24598,01461eaf-4694-46ae-a110-ff5559db1a82,LIST_ACCOUNTS,hbciListAccounts,false +24599,01461eaf-4694-46ae-a110-ff5559db1a82,LIST_TRANSACTIONS,hbciListTransactions,false +24600,01461eaf-4694-46ae-a110-ff5559db1a82,AUTHORIZATION,,false +24601,01461eaf-4694-46ae-a110-ff5559db1a82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24602,01461eaf-4694-46ae-a110-ff5559db1a82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24603,01461eaf-4694-46ae-a110-ff5559db1a82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24604,c6372ae8-27b7-4846-9dd6-03e50e9f4415,LIST_ACCOUNTS,xs2aListAccounts,true -24605,c6372ae8-27b7-4846-9dd6-03e50e9f4415,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24605,c6372ae8-27b7-4846-9dd6-03e50e9f4415,LIST_TRANSACTIONS,xs2aListTransactions,true 24606,c6372ae8-27b7-4846-9dd6-03e50e9f4415,AUTHORIZATION,,true 24607,c6372ae8-27b7-4846-9dd6-03e50e9f4415,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24608,c6372ae8-27b7-4846-9dd6-03e50e9f4415,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24609,c6372ae8-27b7-4846-9dd6-03e50e9f4415,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24610,46c62d85-0abd-4bc1-b184-6d53ef9624fd,LIST_ACCOUNTS,hbciListAccounts,false -24611,46c62d85-0abd-4bc1-b184-6d53ef9624fd,LIST_TRANSACTIONS,hbciListTransactions,false -24612,46c62d85-0abd-4bc1-b184-6d53ef9624fd,AUTHORIZATION,,false -24613,46c62d85-0abd-4bc1-b184-6d53ef9624fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24614,46c62d85-0abd-4bc1-b184-6d53ef9624fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24615,46c62d85-0abd-4bc1-b184-6d53ef9624fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24610,571c3f2c-3e1f-4821-abd1-178c2390e4da,LIST_ACCOUNTS,hbciListAccounts,false +24611,571c3f2c-3e1f-4821-abd1-178c2390e4da,LIST_TRANSACTIONS,hbciListTransactions,false +24612,571c3f2c-3e1f-4821-abd1-178c2390e4da,AUTHORIZATION,,false +24613,571c3f2c-3e1f-4821-abd1-178c2390e4da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24614,571c3f2c-3e1f-4821-abd1-178c2390e4da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24615,571c3f2c-3e1f-4821-abd1-178c2390e4da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24616,4fb927bf-9786-4920-80c7-5d1aa9b2d330,LIST_ACCOUNTS,xs2aListAccounts,true -24617,4fb927bf-9786-4920-80c7-5d1aa9b2d330,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24617,4fb927bf-9786-4920-80c7-5d1aa9b2d330,LIST_TRANSACTIONS,xs2aListTransactions,true 24618,4fb927bf-9786-4920-80c7-5d1aa9b2d330,AUTHORIZATION,,true 24619,4fb927bf-9786-4920-80c7-5d1aa9b2d330,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24620,4fb927bf-9786-4920-80c7-5d1aa9b2d330,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24621,4fb927bf-9786-4920-80c7-5d1aa9b2d330,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24622,d1400c82-ad7b-4843-b6b4-14fa0088e099,LIST_ACCOUNTS,hbciListAccounts,false -24623,d1400c82-ad7b-4843-b6b4-14fa0088e099,LIST_TRANSACTIONS,hbciListTransactions,false -24624,d1400c82-ad7b-4843-b6b4-14fa0088e099,AUTHORIZATION,,false -24625,d1400c82-ad7b-4843-b6b4-14fa0088e099,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24626,d1400c82-ad7b-4843-b6b4-14fa0088e099,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24627,d1400c82-ad7b-4843-b6b4-14fa0088e099,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24622,338f3460-d7d9-4924-86ab-16c5d812d64c,LIST_ACCOUNTS,hbciListAccounts,false +24623,338f3460-d7d9-4924-86ab-16c5d812d64c,LIST_TRANSACTIONS,hbciListTransactions,false +24624,338f3460-d7d9-4924-86ab-16c5d812d64c,AUTHORIZATION,,false +24625,338f3460-d7d9-4924-86ab-16c5d812d64c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24626,338f3460-d7d9-4924-86ab-16c5d812d64c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24627,338f3460-d7d9-4924-86ab-16c5d812d64c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24628,0e780bb8-207d-4faf-bff3-c311cde15c3b,LIST_ACCOUNTS,xs2aListAccounts,true -24629,0e780bb8-207d-4faf-bff3-c311cde15c3b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24629,0e780bb8-207d-4faf-bff3-c311cde15c3b,LIST_TRANSACTIONS,xs2aListTransactions,true 24630,0e780bb8-207d-4faf-bff3-c311cde15c3b,AUTHORIZATION,,true 24631,0e780bb8-207d-4faf-bff3-c311cde15c3b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24632,0e780bb8-207d-4faf-bff3-c311cde15c3b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24633,0e780bb8-207d-4faf-bff3-c311cde15c3b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24634,d2a0cacf-361c-467c-ab92-2111c68d4abb,LIST_ACCOUNTS,hbciListAccounts,false -24635,d2a0cacf-361c-467c-ab92-2111c68d4abb,LIST_TRANSACTIONS,hbciListTransactions,false -24636,d2a0cacf-361c-467c-ab92-2111c68d4abb,AUTHORIZATION,,false -24637,d2a0cacf-361c-467c-ab92-2111c68d4abb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24638,d2a0cacf-361c-467c-ab92-2111c68d4abb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24639,d2a0cacf-361c-467c-ab92-2111c68d4abb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24634,bb0d8cb1-89b4-48d9-9124-dd2fe9028529,LIST_ACCOUNTS,hbciListAccounts,false +24635,bb0d8cb1-89b4-48d9-9124-dd2fe9028529,LIST_TRANSACTIONS,hbciListTransactions,false +24636,bb0d8cb1-89b4-48d9-9124-dd2fe9028529,AUTHORIZATION,,false +24637,bb0d8cb1-89b4-48d9-9124-dd2fe9028529,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24638,bb0d8cb1-89b4-48d9-9124-dd2fe9028529,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24639,bb0d8cb1-89b4-48d9-9124-dd2fe9028529,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24640,75805c33-7608-4fb0-9dce-05341e5ce287,LIST_ACCOUNTS,xs2aListAccounts,true -24641,75805c33-7608-4fb0-9dce-05341e5ce287,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24641,75805c33-7608-4fb0-9dce-05341e5ce287,LIST_TRANSACTIONS,xs2aListTransactions,true 24642,75805c33-7608-4fb0-9dce-05341e5ce287,AUTHORIZATION,,true 24643,75805c33-7608-4fb0-9dce-05341e5ce287,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24644,75805c33-7608-4fb0-9dce-05341e5ce287,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24645,75805c33-7608-4fb0-9dce-05341e5ce287,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24646,7ba298f4-44da-4d0e-bc6c-0fece40d3b53,LIST_ACCOUNTS,hbciListAccounts,false -24647,7ba298f4-44da-4d0e-bc6c-0fece40d3b53,LIST_TRANSACTIONS,hbciListTransactions,false -24648,7ba298f4-44da-4d0e-bc6c-0fece40d3b53,AUTHORIZATION,,false -24649,7ba298f4-44da-4d0e-bc6c-0fece40d3b53,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24650,7ba298f4-44da-4d0e-bc6c-0fece40d3b53,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24651,7ba298f4-44da-4d0e-bc6c-0fece40d3b53,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24646,19f55505-9361-431e-8a0a-084a0c505f1c,LIST_ACCOUNTS,hbciListAccounts,false +24647,19f55505-9361-431e-8a0a-084a0c505f1c,LIST_TRANSACTIONS,hbciListTransactions,false +24648,19f55505-9361-431e-8a0a-084a0c505f1c,AUTHORIZATION,,false +24649,19f55505-9361-431e-8a0a-084a0c505f1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24650,19f55505-9361-431e-8a0a-084a0c505f1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24651,19f55505-9361-431e-8a0a-084a0c505f1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24652,c3284ee1-b0f0-44f7-a9ad-cab3800fda61,LIST_ACCOUNTS,xs2aListAccounts,true -24653,c3284ee1-b0f0-44f7-a9ad-cab3800fda61,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24653,c3284ee1-b0f0-44f7-a9ad-cab3800fda61,LIST_TRANSACTIONS,xs2aListTransactions,true 24654,c3284ee1-b0f0-44f7-a9ad-cab3800fda61,AUTHORIZATION,,true 24655,c3284ee1-b0f0-44f7-a9ad-cab3800fda61,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24656,c3284ee1-b0f0-44f7-a9ad-cab3800fda61,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24657,c3284ee1-b0f0-44f7-a9ad-cab3800fda61,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24658,77e9cba9-b49f-4bc2-bbb0-c4a50da28317,LIST_ACCOUNTS,hbciListAccounts,false -24659,77e9cba9-b49f-4bc2-bbb0-c4a50da28317,LIST_TRANSACTIONS,hbciListTransactions,false -24660,77e9cba9-b49f-4bc2-bbb0-c4a50da28317,AUTHORIZATION,,false -24661,77e9cba9-b49f-4bc2-bbb0-c4a50da28317,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24662,77e9cba9-b49f-4bc2-bbb0-c4a50da28317,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24663,77e9cba9-b49f-4bc2-bbb0-c4a50da28317,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24658,21da6962-8de2-407f-97ce-d677ae2dcff1,LIST_ACCOUNTS,hbciListAccounts,false +24659,21da6962-8de2-407f-97ce-d677ae2dcff1,LIST_TRANSACTIONS,hbciListTransactions,false +24660,21da6962-8de2-407f-97ce-d677ae2dcff1,AUTHORIZATION,,false +24661,21da6962-8de2-407f-97ce-d677ae2dcff1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24662,21da6962-8de2-407f-97ce-d677ae2dcff1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24663,21da6962-8de2-407f-97ce-d677ae2dcff1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24664,a69a654d-7f51-449f-be17-816411bb768a,LIST_ACCOUNTS,xs2aListAccounts,true -24665,a69a654d-7f51-449f-be17-816411bb768a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24665,a69a654d-7f51-449f-be17-816411bb768a,LIST_TRANSACTIONS,xs2aListTransactions,true 24666,a69a654d-7f51-449f-be17-816411bb768a,AUTHORIZATION,,true 24667,a69a654d-7f51-449f-be17-816411bb768a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24668,a69a654d-7f51-449f-be17-816411bb768a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24669,a69a654d-7f51-449f-be17-816411bb768a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24670,14a16b88-3f4d-4f9d-8cac-32fc872347ec,LIST_ACCOUNTS,hbciListAccounts,false -24671,14a16b88-3f4d-4f9d-8cac-32fc872347ec,LIST_TRANSACTIONS,hbciListTransactions,false -24672,14a16b88-3f4d-4f9d-8cac-32fc872347ec,AUTHORIZATION,,false -24673,14a16b88-3f4d-4f9d-8cac-32fc872347ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24674,14a16b88-3f4d-4f9d-8cac-32fc872347ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24675,14a16b88-3f4d-4f9d-8cac-32fc872347ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24670,6839e099-c76c-42c6-838c-171808228b93,LIST_ACCOUNTS,hbciListAccounts,false +24671,6839e099-c76c-42c6-838c-171808228b93,LIST_TRANSACTIONS,hbciListTransactions,false +24672,6839e099-c76c-42c6-838c-171808228b93,AUTHORIZATION,,false +24673,6839e099-c76c-42c6-838c-171808228b93,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24674,6839e099-c76c-42c6-838c-171808228b93,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24675,6839e099-c76c-42c6-838c-171808228b93,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24676,b6691319-5fef-4561-8392-6b9ee8d02799,LIST_ACCOUNTS,xs2aListAccounts,true -24677,b6691319-5fef-4561-8392-6b9ee8d02799,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24677,b6691319-5fef-4561-8392-6b9ee8d02799,LIST_TRANSACTIONS,xs2aListTransactions,true 24678,b6691319-5fef-4561-8392-6b9ee8d02799,AUTHORIZATION,,true 24679,b6691319-5fef-4561-8392-6b9ee8d02799,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24680,b6691319-5fef-4561-8392-6b9ee8d02799,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24681,b6691319-5fef-4561-8392-6b9ee8d02799,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24682,6d2d5517-5877-410e-a808-fb4b2d0c28d9,LIST_ACCOUNTS,hbciListAccounts,false -24683,6d2d5517-5877-410e-a808-fb4b2d0c28d9,LIST_TRANSACTIONS,hbciListTransactions,false -24684,6d2d5517-5877-410e-a808-fb4b2d0c28d9,AUTHORIZATION,,false -24685,6d2d5517-5877-410e-a808-fb4b2d0c28d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24686,6d2d5517-5877-410e-a808-fb4b2d0c28d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24687,6d2d5517-5877-410e-a808-fb4b2d0c28d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24682,b69ddf39-f77b-4cdf-8f4c-a057671e4431,LIST_ACCOUNTS,hbciListAccounts,false +24683,b69ddf39-f77b-4cdf-8f4c-a057671e4431,LIST_TRANSACTIONS,hbciListTransactions,false +24684,b69ddf39-f77b-4cdf-8f4c-a057671e4431,AUTHORIZATION,,false +24685,b69ddf39-f77b-4cdf-8f4c-a057671e4431,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24686,b69ddf39-f77b-4cdf-8f4c-a057671e4431,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24687,b69ddf39-f77b-4cdf-8f4c-a057671e4431,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24688,d4c00353-fd50-48a3-99da-acc3283e0f05,LIST_ACCOUNTS,xs2aListAccounts,true -24689,d4c00353-fd50-48a3-99da-acc3283e0f05,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24689,d4c00353-fd50-48a3-99da-acc3283e0f05,LIST_TRANSACTIONS,xs2aListTransactions,true 24690,d4c00353-fd50-48a3-99da-acc3283e0f05,AUTHORIZATION,,true 24691,d4c00353-fd50-48a3-99da-acc3283e0f05,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24692,d4c00353-fd50-48a3-99da-acc3283e0f05,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24693,d4c00353-fd50-48a3-99da-acc3283e0f05,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24694,037390f2-67f0-4c7d-a233-5288dfac8fb3,LIST_ACCOUNTS,hbciListAccounts,false -24695,037390f2-67f0-4c7d-a233-5288dfac8fb3,LIST_TRANSACTIONS,hbciListTransactions,false -24696,037390f2-67f0-4c7d-a233-5288dfac8fb3,AUTHORIZATION,,false -24697,037390f2-67f0-4c7d-a233-5288dfac8fb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24698,037390f2-67f0-4c7d-a233-5288dfac8fb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24699,037390f2-67f0-4c7d-a233-5288dfac8fb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24694,95aeaf06-ff7b-41a8-9992-22b75e159377,LIST_ACCOUNTS,hbciListAccounts,false +24695,95aeaf06-ff7b-41a8-9992-22b75e159377,LIST_TRANSACTIONS,hbciListTransactions,false +24696,95aeaf06-ff7b-41a8-9992-22b75e159377,AUTHORIZATION,,false +24697,95aeaf06-ff7b-41a8-9992-22b75e159377,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24698,95aeaf06-ff7b-41a8-9992-22b75e159377,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24699,95aeaf06-ff7b-41a8-9992-22b75e159377,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24700,6cd2955d-834e-4b24-ae44-e18ab1bdd9e1,LIST_ACCOUNTS,xs2aListAccounts,true -24701,6cd2955d-834e-4b24-ae44-e18ab1bdd9e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24701,6cd2955d-834e-4b24-ae44-e18ab1bdd9e1,LIST_TRANSACTIONS,xs2aListTransactions,true 24702,6cd2955d-834e-4b24-ae44-e18ab1bdd9e1,AUTHORIZATION,,true 24703,6cd2955d-834e-4b24-ae44-e18ab1bdd9e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24704,6cd2955d-834e-4b24-ae44-e18ab1bdd9e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24705,6cd2955d-834e-4b24-ae44-e18ab1bdd9e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24706,fba7b316-d73d-4e8d-aae3-a300ca1cbe1d,LIST_ACCOUNTS,hbciListAccounts,false -24707,fba7b316-d73d-4e8d-aae3-a300ca1cbe1d,LIST_TRANSACTIONS,hbciListTransactions,false -24708,fba7b316-d73d-4e8d-aae3-a300ca1cbe1d,AUTHORIZATION,,false -24709,fba7b316-d73d-4e8d-aae3-a300ca1cbe1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24710,fba7b316-d73d-4e8d-aae3-a300ca1cbe1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24711,fba7b316-d73d-4e8d-aae3-a300ca1cbe1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24706,b4342b5c-04ce-457b-8f90-cfb6a232c5af,LIST_ACCOUNTS,hbciListAccounts,false +24707,b4342b5c-04ce-457b-8f90-cfb6a232c5af,LIST_TRANSACTIONS,hbciListTransactions,false +24708,b4342b5c-04ce-457b-8f90-cfb6a232c5af,AUTHORIZATION,,false +24709,b4342b5c-04ce-457b-8f90-cfb6a232c5af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24710,b4342b5c-04ce-457b-8f90-cfb6a232c5af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24711,b4342b5c-04ce-457b-8f90-cfb6a232c5af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24712,04b3d8af-a919-4ad3-8696-b91383c671da,LIST_ACCOUNTS,xs2aListAccounts,true -24713,04b3d8af-a919-4ad3-8696-b91383c671da,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24713,04b3d8af-a919-4ad3-8696-b91383c671da,LIST_TRANSACTIONS,xs2aListTransactions,true 24714,04b3d8af-a919-4ad3-8696-b91383c671da,AUTHORIZATION,,true 24715,04b3d8af-a919-4ad3-8696-b91383c671da,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24716,04b3d8af-a919-4ad3-8696-b91383c671da,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24717,04b3d8af-a919-4ad3-8696-b91383c671da,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24718,5a49e78c-a91b-443c-ab59-779318270ea9,LIST_ACCOUNTS,hbciListAccounts,false -24719,5a49e78c-a91b-443c-ab59-779318270ea9,LIST_TRANSACTIONS,hbciListTransactions,false -24720,5a49e78c-a91b-443c-ab59-779318270ea9,AUTHORIZATION,,false -24721,5a49e78c-a91b-443c-ab59-779318270ea9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24722,5a49e78c-a91b-443c-ab59-779318270ea9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24723,5a49e78c-a91b-443c-ab59-779318270ea9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24718,3248d688-420e-4510-a977-db5573d6755a,LIST_ACCOUNTS,hbciListAccounts,false +24719,3248d688-420e-4510-a977-db5573d6755a,LIST_TRANSACTIONS,hbciListTransactions,false +24720,3248d688-420e-4510-a977-db5573d6755a,AUTHORIZATION,,false +24721,3248d688-420e-4510-a977-db5573d6755a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24722,3248d688-420e-4510-a977-db5573d6755a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24723,3248d688-420e-4510-a977-db5573d6755a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24724,76a265a9-2910-4105-a17c-acc046f1f8ae,LIST_ACCOUNTS,xs2aListAccounts,true -24725,76a265a9-2910-4105-a17c-acc046f1f8ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24725,76a265a9-2910-4105-a17c-acc046f1f8ae,LIST_TRANSACTIONS,xs2aListTransactions,true 24726,76a265a9-2910-4105-a17c-acc046f1f8ae,AUTHORIZATION,,true 24727,76a265a9-2910-4105-a17c-acc046f1f8ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24728,76a265a9-2910-4105-a17c-acc046f1f8ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24729,76a265a9-2910-4105-a17c-acc046f1f8ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24730,8e9be7db-60c8-4145-b5dc-e41d98418625,LIST_ACCOUNTS,hbciListAccounts,false -24731,8e9be7db-60c8-4145-b5dc-e41d98418625,LIST_TRANSACTIONS,hbciListTransactions,false -24732,8e9be7db-60c8-4145-b5dc-e41d98418625,AUTHORIZATION,,false -24733,8e9be7db-60c8-4145-b5dc-e41d98418625,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24734,8e9be7db-60c8-4145-b5dc-e41d98418625,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24735,8e9be7db-60c8-4145-b5dc-e41d98418625,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24730,bbac86d3-279d-434f-a0de-fbd3928e8166,LIST_ACCOUNTS,hbciListAccounts,false +24731,bbac86d3-279d-434f-a0de-fbd3928e8166,LIST_TRANSACTIONS,hbciListTransactions,false +24732,bbac86d3-279d-434f-a0de-fbd3928e8166,AUTHORIZATION,,false +24733,bbac86d3-279d-434f-a0de-fbd3928e8166,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24734,bbac86d3-279d-434f-a0de-fbd3928e8166,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24735,bbac86d3-279d-434f-a0de-fbd3928e8166,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24736,49ceeefc-c89b-4249-bd80-2067cc41d71b,LIST_ACCOUNTS,xs2aListAccounts,true -24737,49ceeefc-c89b-4249-bd80-2067cc41d71b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24737,49ceeefc-c89b-4249-bd80-2067cc41d71b,LIST_TRANSACTIONS,xs2aListTransactions,true 24738,49ceeefc-c89b-4249-bd80-2067cc41d71b,AUTHORIZATION,,true 24739,49ceeefc-c89b-4249-bd80-2067cc41d71b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24740,49ceeefc-c89b-4249-bd80-2067cc41d71b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24741,49ceeefc-c89b-4249-bd80-2067cc41d71b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24742,3329247a-e393-4d2c-b978-108037bc0340,LIST_ACCOUNTS,hbciListAccounts,false -24743,3329247a-e393-4d2c-b978-108037bc0340,LIST_TRANSACTIONS,hbciListTransactions,false -24744,3329247a-e393-4d2c-b978-108037bc0340,AUTHORIZATION,,false -24745,3329247a-e393-4d2c-b978-108037bc0340,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24746,3329247a-e393-4d2c-b978-108037bc0340,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24747,3329247a-e393-4d2c-b978-108037bc0340,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24742,6549c530-503a-430e-8a11-c8f9e6206dfb,LIST_ACCOUNTS,hbciListAccounts,false +24743,6549c530-503a-430e-8a11-c8f9e6206dfb,LIST_TRANSACTIONS,hbciListTransactions,false +24744,6549c530-503a-430e-8a11-c8f9e6206dfb,AUTHORIZATION,,false +24745,6549c530-503a-430e-8a11-c8f9e6206dfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24746,6549c530-503a-430e-8a11-c8f9e6206dfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24747,6549c530-503a-430e-8a11-c8f9e6206dfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24748,662588f6-6832-4af3-a25c-9675448aad40,LIST_ACCOUNTS,xs2aListAccounts,true -24749,662588f6-6832-4af3-a25c-9675448aad40,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24749,662588f6-6832-4af3-a25c-9675448aad40,LIST_TRANSACTIONS,xs2aListTransactions,true 24750,662588f6-6832-4af3-a25c-9675448aad40,AUTHORIZATION,,true 24751,662588f6-6832-4af3-a25c-9675448aad40,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24752,662588f6-6832-4af3-a25c-9675448aad40,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24753,662588f6-6832-4af3-a25c-9675448aad40,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24754,74be5061-fbab-4820-9ca1-c329bf7e6905,LIST_ACCOUNTS,hbciListAccounts,false -24755,74be5061-fbab-4820-9ca1-c329bf7e6905,LIST_TRANSACTIONS,hbciListTransactions,false -24756,74be5061-fbab-4820-9ca1-c329bf7e6905,AUTHORIZATION,,false -24757,74be5061-fbab-4820-9ca1-c329bf7e6905,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24758,74be5061-fbab-4820-9ca1-c329bf7e6905,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24759,74be5061-fbab-4820-9ca1-c329bf7e6905,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24754,682e0833-ab2f-4601-a770-427b89276c23,LIST_ACCOUNTS,hbciListAccounts,false +24755,682e0833-ab2f-4601-a770-427b89276c23,LIST_TRANSACTIONS,hbciListTransactions,false +24756,682e0833-ab2f-4601-a770-427b89276c23,AUTHORIZATION,,false +24757,682e0833-ab2f-4601-a770-427b89276c23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24758,682e0833-ab2f-4601-a770-427b89276c23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24759,682e0833-ab2f-4601-a770-427b89276c23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24760,5073148f-9279-486e-80a7-2378bf778d0a,LIST_ACCOUNTS,xs2aListAccounts,true -24761,5073148f-9279-486e-80a7-2378bf778d0a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24761,5073148f-9279-486e-80a7-2378bf778d0a,LIST_TRANSACTIONS,xs2aListTransactions,true 24762,5073148f-9279-486e-80a7-2378bf778d0a,AUTHORIZATION,,true 24763,5073148f-9279-486e-80a7-2378bf778d0a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24764,5073148f-9279-486e-80a7-2378bf778d0a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24765,5073148f-9279-486e-80a7-2378bf778d0a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24766,aa167f8e-e348-4ac6-834b-24ac58461272,LIST_ACCOUNTS,hbciListAccounts,false -24767,aa167f8e-e348-4ac6-834b-24ac58461272,LIST_TRANSACTIONS,hbciListTransactions,false -24768,aa167f8e-e348-4ac6-834b-24ac58461272,AUTHORIZATION,,false -24769,aa167f8e-e348-4ac6-834b-24ac58461272,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24770,aa167f8e-e348-4ac6-834b-24ac58461272,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24771,aa167f8e-e348-4ac6-834b-24ac58461272,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24766,ddaf4912-328a-4c96-95fb-e6c969d3ab1b,LIST_ACCOUNTS,hbciListAccounts,false +24767,ddaf4912-328a-4c96-95fb-e6c969d3ab1b,LIST_TRANSACTIONS,hbciListTransactions,false +24768,ddaf4912-328a-4c96-95fb-e6c969d3ab1b,AUTHORIZATION,,false +24769,ddaf4912-328a-4c96-95fb-e6c969d3ab1b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24770,ddaf4912-328a-4c96-95fb-e6c969d3ab1b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24771,ddaf4912-328a-4c96-95fb-e6c969d3ab1b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24772,4f421621-a8b2-4cc7-a7c6-c4cfb83b172d,LIST_ACCOUNTS,xs2aListAccounts,true -24773,4f421621-a8b2-4cc7-a7c6-c4cfb83b172d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24773,4f421621-a8b2-4cc7-a7c6-c4cfb83b172d,LIST_TRANSACTIONS,xs2aListTransactions,true 24774,4f421621-a8b2-4cc7-a7c6-c4cfb83b172d,AUTHORIZATION,,true 24775,4f421621-a8b2-4cc7-a7c6-c4cfb83b172d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24776,4f421621-a8b2-4cc7-a7c6-c4cfb83b172d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24777,4f421621-a8b2-4cc7-a7c6-c4cfb83b172d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24778,b41152f1-9aa4-4159-b18b-7efa36826d14,LIST_ACCOUNTS,hbciListAccounts,false -24779,b41152f1-9aa4-4159-b18b-7efa36826d14,LIST_TRANSACTIONS,hbciListTransactions,false -24780,b41152f1-9aa4-4159-b18b-7efa36826d14,AUTHORIZATION,,false -24781,b41152f1-9aa4-4159-b18b-7efa36826d14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24782,b41152f1-9aa4-4159-b18b-7efa36826d14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24783,b41152f1-9aa4-4159-b18b-7efa36826d14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24778,23ff848f-29e9-4154-97bb-23cadb5374cb,LIST_ACCOUNTS,hbciListAccounts,false +24779,23ff848f-29e9-4154-97bb-23cadb5374cb,LIST_TRANSACTIONS,hbciListTransactions,false +24780,23ff848f-29e9-4154-97bb-23cadb5374cb,AUTHORIZATION,,false +24781,23ff848f-29e9-4154-97bb-23cadb5374cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24782,23ff848f-29e9-4154-97bb-23cadb5374cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24783,23ff848f-29e9-4154-97bb-23cadb5374cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24784,795ca8be-741b-4345-b381-13b768cd29d2,LIST_ACCOUNTS,xs2aListAccounts,true -24785,795ca8be-741b-4345-b381-13b768cd29d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24785,795ca8be-741b-4345-b381-13b768cd29d2,LIST_TRANSACTIONS,xs2aListTransactions,true 24786,795ca8be-741b-4345-b381-13b768cd29d2,AUTHORIZATION,,true 24787,795ca8be-741b-4345-b381-13b768cd29d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24788,795ca8be-741b-4345-b381-13b768cd29d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24789,795ca8be-741b-4345-b381-13b768cd29d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24790,1f6427eb-8db1-4c7d-b6ac-539ba2e5587e,LIST_ACCOUNTS,hbciListAccounts,false -24791,1f6427eb-8db1-4c7d-b6ac-539ba2e5587e,LIST_TRANSACTIONS,hbciListTransactions,false -24792,1f6427eb-8db1-4c7d-b6ac-539ba2e5587e,AUTHORIZATION,,false -24793,1f6427eb-8db1-4c7d-b6ac-539ba2e5587e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24794,1f6427eb-8db1-4c7d-b6ac-539ba2e5587e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24795,1f6427eb-8db1-4c7d-b6ac-539ba2e5587e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24790,0a946820-56cb-4346-8945-7053aeca4631,LIST_ACCOUNTS,hbciListAccounts,false +24791,0a946820-56cb-4346-8945-7053aeca4631,LIST_TRANSACTIONS,hbciListTransactions,false +24792,0a946820-56cb-4346-8945-7053aeca4631,AUTHORIZATION,,false +24793,0a946820-56cb-4346-8945-7053aeca4631,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24794,0a946820-56cb-4346-8945-7053aeca4631,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24795,0a946820-56cb-4346-8945-7053aeca4631,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24796,ab873747-1cf4-42f7-a0d6-8334138043ce,LIST_ACCOUNTS,xs2aListAccounts,true -24797,ab873747-1cf4-42f7-a0d6-8334138043ce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24797,ab873747-1cf4-42f7-a0d6-8334138043ce,LIST_TRANSACTIONS,xs2aListTransactions,true 24798,ab873747-1cf4-42f7-a0d6-8334138043ce,AUTHORIZATION,,true 24799,ab873747-1cf4-42f7-a0d6-8334138043ce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24800,ab873747-1cf4-42f7-a0d6-8334138043ce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24801,ab873747-1cf4-42f7-a0d6-8334138043ce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24802,e3161977-256a-4206-b398-427e93ceeb45,LIST_ACCOUNTS,hbciListAccounts,false -24803,e3161977-256a-4206-b398-427e93ceeb45,LIST_TRANSACTIONS,hbciListTransactions,false -24804,e3161977-256a-4206-b398-427e93ceeb45,AUTHORIZATION,,false -24805,e3161977-256a-4206-b398-427e93ceeb45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24806,e3161977-256a-4206-b398-427e93ceeb45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24807,e3161977-256a-4206-b398-427e93ceeb45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24802,7441d626-3149-4936-a830-e26e4a13c707,LIST_ACCOUNTS,hbciListAccounts,false +24803,7441d626-3149-4936-a830-e26e4a13c707,LIST_TRANSACTIONS,hbciListTransactions,false +24804,7441d626-3149-4936-a830-e26e4a13c707,AUTHORIZATION,,false +24805,7441d626-3149-4936-a830-e26e4a13c707,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24806,7441d626-3149-4936-a830-e26e4a13c707,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24807,7441d626-3149-4936-a830-e26e4a13c707,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24808,50bb963b-7f7a-49c5-ba22-d01afae100ee,LIST_ACCOUNTS,xs2aListAccounts,true -24809,50bb963b-7f7a-49c5-ba22-d01afae100ee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24809,50bb963b-7f7a-49c5-ba22-d01afae100ee,LIST_TRANSACTIONS,xs2aListTransactions,true 24810,50bb963b-7f7a-49c5-ba22-d01afae100ee,AUTHORIZATION,,true 24811,50bb963b-7f7a-49c5-ba22-d01afae100ee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24812,50bb963b-7f7a-49c5-ba22-d01afae100ee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24813,50bb963b-7f7a-49c5-ba22-d01afae100ee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24814,1dad7f12-d993-46ae-a8c1-3fe09564bd06,LIST_ACCOUNTS,hbciListAccounts,false -24815,1dad7f12-d993-46ae-a8c1-3fe09564bd06,LIST_TRANSACTIONS,hbciListTransactions,false -24816,1dad7f12-d993-46ae-a8c1-3fe09564bd06,AUTHORIZATION,,false -24817,1dad7f12-d993-46ae-a8c1-3fe09564bd06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24818,1dad7f12-d993-46ae-a8c1-3fe09564bd06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24819,1dad7f12-d993-46ae-a8c1-3fe09564bd06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24814,43fe50f9-2373-46f1-9c3b-6cefac2e596a,LIST_ACCOUNTS,hbciListAccounts,false +24815,43fe50f9-2373-46f1-9c3b-6cefac2e596a,LIST_TRANSACTIONS,hbciListTransactions,false +24816,43fe50f9-2373-46f1-9c3b-6cefac2e596a,AUTHORIZATION,,false +24817,43fe50f9-2373-46f1-9c3b-6cefac2e596a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24818,43fe50f9-2373-46f1-9c3b-6cefac2e596a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24819,43fe50f9-2373-46f1-9c3b-6cefac2e596a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24820,42c35475-a57e-466c-b816-3b1cfa21d462,LIST_ACCOUNTS,xs2aListAccounts,true -24821,42c35475-a57e-466c-b816-3b1cfa21d462,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24821,42c35475-a57e-466c-b816-3b1cfa21d462,LIST_TRANSACTIONS,xs2aListTransactions,true 24822,42c35475-a57e-466c-b816-3b1cfa21d462,AUTHORIZATION,,true 24823,42c35475-a57e-466c-b816-3b1cfa21d462,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24824,42c35475-a57e-466c-b816-3b1cfa21d462,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24825,42c35475-a57e-466c-b816-3b1cfa21d462,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24826,48fd3671-f299-43d7-badf-34fffbb868a8,LIST_ACCOUNTS,hbciListAccounts,false -24827,48fd3671-f299-43d7-badf-34fffbb868a8,LIST_TRANSACTIONS,hbciListTransactions,false -24828,48fd3671-f299-43d7-badf-34fffbb868a8,AUTHORIZATION,,false -24829,48fd3671-f299-43d7-badf-34fffbb868a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24830,48fd3671-f299-43d7-badf-34fffbb868a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24831,48fd3671-f299-43d7-badf-34fffbb868a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24826,1b0f5b41-5e74-4563-b79f-45cbb22e5038,LIST_ACCOUNTS,hbciListAccounts,false +24827,1b0f5b41-5e74-4563-b79f-45cbb22e5038,LIST_TRANSACTIONS,hbciListTransactions,false +24828,1b0f5b41-5e74-4563-b79f-45cbb22e5038,AUTHORIZATION,,false +24829,1b0f5b41-5e74-4563-b79f-45cbb22e5038,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24830,1b0f5b41-5e74-4563-b79f-45cbb22e5038,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24831,1b0f5b41-5e74-4563-b79f-45cbb22e5038,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24832,09049291-9c45-4015-90c7-ad9f4f69116b,LIST_ACCOUNTS,xs2aListAccounts,true -24833,09049291-9c45-4015-90c7-ad9f4f69116b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24833,09049291-9c45-4015-90c7-ad9f4f69116b,LIST_TRANSACTIONS,xs2aListTransactions,true 24834,09049291-9c45-4015-90c7-ad9f4f69116b,AUTHORIZATION,,true 24835,09049291-9c45-4015-90c7-ad9f4f69116b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24836,09049291-9c45-4015-90c7-ad9f4f69116b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24837,09049291-9c45-4015-90c7-ad9f4f69116b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24838,25f7d59b-2a5a-433d-9fa6-35677aae68f2,LIST_ACCOUNTS,hbciListAccounts,false -24839,25f7d59b-2a5a-433d-9fa6-35677aae68f2,LIST_TRANSACTIONS,hbciListTransactions,false -24840,25f7d59b-2a5a-433d-9fa6-35677aae68f2,AUTHORIZATION,,false -24841,25f7d59b-2a5a-433d-9fa6-35677aae68f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24842,25f7d59b-2a5a-433d-9fa6-35677aae68f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24843,25f7d59b-2a5a-433d-9fa6-35677aae68f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24838,2f64248f-b882-4180-9f92-d307015e349c,LIST_ACCOUNTS,hbciListAccounts,false +24839,2f64248f-b882-4180-9f92-d307015e349c,LIST_TRANSACTIONS,hbciListTransactions,false +24840,2f64248f-b882-4180-9f92-d307015e349c,AUTHORIZATION,,false +24841,2f64248f-b882-4180-9f92-d307015e349c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24842,2f64248f-b882-4180-9f92-d307015e349c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24843,2f64248f-b882-4180-9f92-d307015e349c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24844,4a2fbf45-d402-4fa1-a61e-dd19653d9925,LIST_ACCOUNTS,xs2aListAccounts,true -24845,4a2fbf45-d402-4fa1-a61e-dd19653d9925,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24845,4a2fbf45-d402-4fa1-a61e-dd19653d9925,LIST_TRANSACTIONS,xs2aListTransactions,true 24846,4a2fbf45-d402-4fa1-a61e-dd19653d9925,AUTHORIZATION,,true 24847,4a2fbf45-d402-4fa1-a61e-dd19653d9925,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24848,4a2fbf45-d402-4fa1-a61e-dd19653d9925,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24849,4a2fbf45-d402-4fa1-a61e-dd19653d9925,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24850,04309b0c-993a-4072-80be-3deb9923b8f7,LIST_ACCOUNTS,hbciListAccounts,false -24851,04309b0c-993a-4072-80be-3deb9923b8f7,LIST_TRANSACTIONS,hbciListTransactions,false -24852,04309b0c-993a-4072-80be-3deb9923b8f7,AUTHORIZATION,,false -24853,04309b0c-993a-4072-80be-3deb9923b8f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24854,04309b0c-993a-4072-80be-3deb9923b8f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24855,04309b0c-993a-4072-80be-3deb9923b8f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24850,55cdded1-3dc4-4bdb-bde7-7aeba324e199,LIST_ACCOUNTS,hbciListAccounts,false +24851,55cdded1-3dc4-4bdb-bde7-7aeba324e199,LIST_TRANSACTIONS,hbciListTransactions,false +24852,55cdded1-3dc4-4bdb-bde7-7aeba324e199,AUTHORIZATION,,false +24853,55cdded1-3dc4-4bdb-bde7-7aeba324e199,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24854,55cdded1-3dc4-4bdb-bde7-7aeba324e199,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24855,55cdded1-3dc4-4bdb-bde7-7aeba324e199,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24856,9125d0e5-6426-4bfe-a37f-42f13035b4f0,LIST_ACCOUNTS,xs2aListAccounts,true -24857,9125d0e5-6426-4bfe-a37f-42f13035b4f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24857,9125d0e5-6426-4bfe-a37f-42f13035b4f0,LIST_TRANSACTIONS,xs2aListTransactions,true 24858,9125d0e5-6426-4bfe-a37f-42f13035b4f0,AUTHORIZATION,,true 24859,9125d0e5-6426-4bfe-a37f-42f13035b4f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24860,9125d0e5-6426-4bfe-a37f-42f13035b4f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24861,9125d0e5-6426-4bfe-a37f-42f13035b4f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24862,c7134d4b-ac2e-4ac9-b7dc-7a34eff40caf,LIST_ACCOUNTS,hbciListAccounts,false -24863,c7134d4b-ac2e-4ac9-b7dc-7a34eff40caf,LIST_TRANSACTIONS,hbciListTransactions,false -24864,c7134d4b-ac2e-4ac9-b7dc-7a34eff40caf,AUTHORIZATION,,false -24865,c7134d4b-ac2e-4ac9-b7dc-7a34eff40caf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24866,c7134d4b-ac2e-4ac9-b7dc-7a34eff40caf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24867,c7134d4b-ac2e-4ac9-b7dc-7a34eff40caf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24862,1f89c55f-30af-4f94-9097-9e3c0469ad2e,LIST_ACCOUNTS,hbciListAccounts,false +24863,1f89c55f-30af-4f94-9097-9e3c0469ad2e,LIST_TRANSACTIONS,hbciListTransactions,false +24864,1f89c55f-30af-4f94-9097-9e3c0469ad2e,AUTHORIZATION,,false +24865,1f89c55f-30af-4f94-9097-9e3c0469ad2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24866,1f89c55f-30af-4f94-9097-9e3c0469ad2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24867,1f89c55f-30af-4f94-9097-9e3c0469ad2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24868,294be7ce-e7ae-49a0-92d1-7dbca467b56c,LIST_ACCOUNTS,xs2aListAccounts,true -24869,294be7ce-e7ae-49a0-92d1-7dbca467b56c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24869,294be7ce-e7ae-49a0-92d1-7dbca467b56c,LIST_TRANSACTIONS,xs2aListTransactions,true 24870,294be7ce-e7ae-49a0-92d1-7dbca467b56c,AUTHORIZATION,,true 24871,294be7ce-e7ae-49a0-92d1-7dbca467b56c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24872,294be7ce-e7ae-49a0-92d1-7dbca467b56c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24873,294be7ce-e7ae-49a0-92d1-7dbca467b56c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24874,15af4076-7a5e-48f2-91cc-123a0c107a6e,LIST_ACCOUNTS,hbciListAccounts,false -24875,15af4076-7a5e-48f2-91cc-123a0c107a6e,LIST_TRANSACTIONS,hbciListTransactions,false -24876,15af4076-7a5e-48f2-91cc-123a0c107a6e,AUTHORIZATION,,false -24877,15af4076-7a5e-48f2-91cc-123a0c107a6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24878,15af4076-7a5e-48f2-91cc-123a0c107a6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24879,15af4076-7a5e-48f2-91cc-123a0c107a6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24874,329cead8-a56f-4758-9b2d-1f4a94532be5,LIST_ACCOUNTS,hbciListAccounts,false +24875,329cead8-a56f-4758-9b2d-1f4a94532be5,LIST_TRANSACTIONS,hbciListTransactions,false +24876,329cead8-a56f-4758-9b2d-1f4a94532be5,AUTHORIZATION,,false +24877,329cead8-a56f-4758-9b2d-1f4a94532be5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24878,329cead8-a56f-4758-9b2d-1f4a94532be5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24879,329cead8-a56f-4758-9b2d-1f4a94532be5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24880,72bed811-d55b-4d28-91c6-7009ddf00269,LIST_ACCOUNTS,xs2aListAccounts,true -24881,72bed811-d55b-4d28-91c6-7009ddf00269,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24881,72bed811-d55b-4d28-91c6-7009ddf00269,LIST_TRANSACTIONS,xs2aListTransactions,true 24882,72bed811-d55b-4d28-91c6-7009ddf00269,AUTHORIZATION,,true 24883,72bed811-d55b-4d28-91c6-7009ddf00269,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24884,72bed811-d55b-4d28-91c6-7009ddf00269,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24885,72bed811-d55b-4d28-91c6-7009ddf00269,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24886,74caa57c-0019-4015-81bf-872d51ae2a1f,LIST_ACCOUNTS,hbciListAccounts,false -24887,74caa57c-0019-4015-81bf-872d51ae2a1f,LIST_TRANSACTIONS,hbciListTransactions,false -24888,74caa57c-0019-4015-81bf-872d51ae2a1f,AUTHORIZATION,,false -24889,74caa57c-0019-4015-81bf-872d51ae2a1f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24890,74caa57c-0019-4015-81bf-872d51ae2a1f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24891,74caa57c-0019-4015-81bf-872d51ae2a1f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24886,6c8ba2ea-a790-465d-b09b-c06404a10e27,LIST_ACCOUNTS,hbciListAccounts,false +24887,6c8ba2ea-a790-465d-b09b-c06404a10e27,LIST_TRANSACTIONS,hbciListTransactions,false +24888,6c8ba2ea-a790-465d-b09b-c06404a10e27,AUTHORIZATION,,false +24889,6c8ba2ea-a790-465d-b09b-c06404a10e27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24890,6c8ba2ea-a790-465d-b09b-c06404a10e27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24891,6c8ba2ea-a790-465d-b09b-c06404a10e27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24892,98d3c206-72fb-4b3f-9bb2-674ec374c529,LIST_ACCOUNTS,xs2aListAccounts,true -24893,98d3c206-72fb-4b3f-9bb2-674ec374c529,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24893,98d3c206-72fb-4b3f-9bb2-674ec374c529,LIST_TRANSACTIONS,xs2aListTransactions,true 24894,98d3c206-72fb-4b3f-9bb2-674ec374c529,AUTHORIZATION,,true 24895,98d3c206-72fb-4b3f-9bb2-674ec374c529,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24896,98d3c206-72fb-4b3f-9bb2-674ec374c529,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24897,98d3c206-72fb-4b3f-9bb2-674ec374c529,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24898,fba630f5-a0fb-4092-bb54-cdbadf79b4c0,LIST_ACCOUNTS,hbciListAccounts,false -24899,fba630f5-a0fb-4092-bb54-cdbadf79b4c0,LIST_TRANSACTIONS,hbciListTransactions,false -24900,fba630f5-a0fb-4092-bb54-cdbadf79b4c0,AUTHORIZATION,,false -24901,fba630f5-a0fb-4092-bb54-cdbadf79b4c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24902,fba630f5-a0fb-4092-bb54-cdbadf79b4c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24903,fba630f5-a0fb-4092-bb54-cdbadf79b4c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24898,7806fd11-c244-4037-9e1e-9319904d84fb,LIST_ACCOUNTS,hbciListAccounts,false +24899,7806fd11-c244-4037-9e1e-9319904d84fb,LIST_TRANSACTIONS,hbciListTransactions,false +24900,7806fd11-c244-4037-9e1e-9319904d84fb,AUTHORIZATION,,false +24901,7806fd11-c244-4037-9e1e-9319904d84fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24902,7806fd11-c244-4037-9e1e-9319904d84fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24903,7806fd11-c244-4037-9e1e-9319904d84fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24904,c5b61e7a-84a4-4e35-8c88-43290142d95a,LIST_ACCOUNTS,xs2aListAccounts,true -24905,c5b61e7a-84a4-4e35-8c88-43290142d95a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24905,c5b61e7a-84a4-4e35-8c88-43290142d95a,LIST_TRANSACTIONS,xs2aListTransactions,true 24906,c5b61e7a-84a4-4e35-8c88-43290142d95a,AUTHORIZATION,,true 24907,c5b61e7a-84a4-4e35-8c88-43290142d95a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24908,c5b61e7a-84a4-4e35-8c88-43290142d95a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24909,c5b61e7a-84a4-4e35-8c88-43290142d95a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24910,6509a886-aa98-459d-b756-f30d25d7469e,LIST_ACCOUNTS,hbciListAccounts,false -24911,6509a886-aa98-459d-b756-f30d25d7469e,LIST_TRANSACTIONS,hbciListTransactions,false -24912,6509a886-aa98-459d-b756-f30d25d7469e,AUTHORIZATION,,false -24913,6509a886-aa98-459d-b756-f30d25d7469e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24914,6509a886-aa98-459d-b756-f30d25d7469e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24915,6509a886-aa98-459d-b756-f30d25d7469e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24910,e0649ca8-b210-423e-9f9e-f486941fae0f,LIST_ACCOUNTS,hbciListAccounts,false +24911,e0649ca8-b210-423e-9f9e-f486941fae0f,LIST_TRANSACTIONS,hbciListTransactions,false +24912,e0649ca8-b210-423e-9f9e-f486941fae0f,AUTHORIZATION,,false +24913,e0649ca8-b210-423e-9f9e-f486941fae0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24914,e0649ca8-b210-423e-9f9e-f486941fae0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24915,e0649ca8-b210-423e-9f9e-f486941fae0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24916,6ffd26a7-6d40-41f2-85c4-810b2ab3f18f,LIST_ACCOUNTS,xs2aListAccounts,true -24917,6ffd26a7-6d40-41f2-85c4-810b2ab3f18f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24917,6ffd26a7-6d40-41f2-85c4-810b2ab3f18f,LIST_TRANSACTIONS,xs2aListTransactions,true 24918,6ffd26a7-6d40-41f2-85c4-810b2ab3f18f,AUTHORIZATION,,true 24919,6ffd26a7-6d40-41f2-85c4-810b2ab3f18f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24920,6ffd26a7-6d40-41f2-85c4-810b2ab3f18f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24921,6ffd26a7-6d40-41f2-85c4-810b2ab3f18f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24922,ee327421-d9ef-41eb-8760-0138fdad47e3,LIST_ACCOUNTS,hbciListAccounts,false -24923,ee327421-d9ef-41eb-8760-0138fdad47e3,LIST_TRANSACTIONS,hbciListTransactions,false -24924,ee327421-d9ef-41eb-8760-0138fdad47e3,AUTHORIZATION,,false -24925,ee327421-d9ef-41eb-8760-0138fdad47e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24926,ee327421-d9ef-41eb-8760-0138fdad47e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24927,ee327421-d9ef-41eb-8760-0138fdad47e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24922,3953ddb6-03b5-4875-89bb-554468ae9a38,LIST_ACCOUNTS,hbciListAccounts,false +24923,3953ddb6-03b5-4875-89bb-554468ae9a38,LIST_TRANSACTIONS,hbciListTransactions,false +24924,3953ddb6-03b5-4875-89bb-554468ae9a38,AUTHORIZATION,,false +24925,3953ddb6-03b5-4875-89bb-554468ae9a38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24926,3953ddb6-03b5-4875-89bb-554468ae9a38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24927,3953ddb6-03b5-4875-89bb-554468ae9a38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24928,910f8724-3ebe-4325-850b-11e415eaa49b,LIST_ACCOUNTS,xs2aListAccounts,true -24929,910f8724-3ebe-4325-850b-11e415eaa49b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24929,910f8724-3ebe-4325-850b-11e415eaa49b,LIST_TRANSACTIONS,xs2aListTransactions,true 24930,910f8724-3ebe-4325-850b-11e415eaa49b,AUTHORIZATION,,true 24931,910f8724-3ebe-4325-850b-11e415eaa49b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24932,910f8724-3ebe-4325-850b-11e415eaa49b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24933,910f8724-3ebe-4325-850b-11e415eaa49b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24934,6284e1ea-3813-45a5-b37a-64c9b907ff0f,LIST_ACCOUNTS,hbciListAccounts,false -24935,6284e1ea-3813-45a5-b37a-64c9b907ff0f,LIST_TRANSACTIONS,hbciListTransactions,false -24936,6284e1ea-3813-45a5-b37a-64c9b907ff0f,AUTHORIZATION,,false -24937,6284e1ea-3813-45a5-b37a-64c9b907ff0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24938,6284e1ea-3813-45a5-b37a-64c9b907ff0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24939,6284e1ea-3813-45a5-b37a-64c9b907ff0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24934,f8a98552-4367-4780-b0a0-1e7c09bd23c4,LIST_ACCOUNTS,hbciListAccounts,false +24935,f8a98552-4367-4780-b0a0-1e7c09bd23c4,LIST_TRANSACTIONS,hbciListTransactions,false +24936,f8a98552-4367-4780-b0a0-1e7c09bd23c4,AUTHORIZATION,,false +24937,f8a98552-4367-4780-b0a0-1e7c09bd23c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24938,f8a98552-4367-4780-b0a0-1e7c09bd23c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24939,f8a98552-4367-4780-b0a0-1e7c09bd23c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24940,f654510e-9a62-4d68-bc28-c2b8e0015c2e,LIST_ACCOUNTS,xs2aListAccounts,true -24941,f654510e-9a62-4d68-bc28-c2b8e0015c2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24941,f654510e-9a62-4d68-bc28-c2b8e0015c2e,LIST_TRANSACTIONS,xs2aListTransactions,true 24942,f654510e-9a62-4d68-bc28-c2b8e0015c2e,AUTHORIZATION,,true 24943,f654510e-9a62-4d68-bc28-c2b8e0015c2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24944,f654510e-9a62-4d68-bc28-c2b8e0015c2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24945,f654510e-9a62-4d68-bc28-c2b8e0015c2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24946,8fa86efc-fcf2-4817-b192-802422256801,LIST_ACCOUNTS,hbciListAccounts,false -24947,8fa86efc-fcf2-4817-b192-802422256801,LIST_TRANSACTIONS,hbciListTransactions,false -24948,8fa86efc-fcf2-4817-b192-802422256801,AUTHORIZATION,,false -24949,8fa86efc-fcf2-4817-b192-802422256801,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24950,8fa86efc-fcf2-4817-b192-802422256801,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24951,8fa86efc-fcf2-4817-b192-802422256801,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24946,36b87757-d60f-425e-97b9-170289199c51,LIST_ACCOUNTS,hbciListAccounts,false +24947,36b87757-d60f-425e-97b9-170289199c51,LIST_TRANSACTIONS,hbciListTransactions,false +24948,36b87757-d60f-425e-97b9-170289199c51,AUTHORIZATION,,false +24949,36b87757-d60f-425e-97b9-170289199c51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24950,36b87757-d60f-425e-97b9-170289199c51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24951,36b87757-d60f-425e-97b9-170289199c51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24952,06878f04-c598-4719-927d-a4407963f535,LIST_ACCOUNTS,xs2aListAccounts,true -24953,06878f04-c598-4719-927d-a4407963f535,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24953,06878f04-c598-4719-927d-a4407963f535,LIST_TRANSACTIONS,xs2aListTransactions,true 24954,06878f04-c598-4719-927d-a4407963f535,AUTHORIZATION,,true 24955,06878f04-c598-4719-927d-a4407963f535,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24956,06878f04-c598-4719-927d-a4407963f535,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24957,06878f04-c598-4719-927d-a4407963f535,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24958,8eaa9651-37cb-44c5-b0e9-73cfd66ecec5,LIST_ACCOUNTS,hbciListAccounts,false -24959,8eaa9651-37cb-44c5-b0e9-73cfd66ecec5,LIST_TRANSACTIONS,hbciListTransactions,false -24960,8eaa9651-37cb-44c5-b0e9-73cfd66ecec5,AUTHORIZATION,,false -24961,8eaa9651-37cb-44c5-b0e9-73cfd66ecec5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24962,8eaa9651-37cb-44c5-b0e9-73cfd66ecec5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24963,8eaa9651-37cb-44c5-b0e9-73cfd66ecec5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24958,c83ac097-dd60-47e0-972a-a7623a5809aa,LIST_ACCOUNTS,hbciListAccounts,false +24959,c83ac097-dd60-47e0-972a-a7623a5809aa,LIST_TRANSACTIONS,hbciListTransactions,false +24960,c83ac097-dd60-47e0-972a-a7623a5809aa,AUTHORIZATION,,false +24961,c83ac097-dd60-47e0-972a-a7623a5809aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24962,c83ac097-dd60-47e0-972a-a7623a5809aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24963,c83ac097-dd60-47e0-972a-a7623a5809aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24964,ed0319b3-00f5-4d11-82c0-9ab4099bbd6a,LIST_ACCOUNTS,xs2aListAccounts,true -24965,ed0319b3-00f5-4d11-82c0-9ab4099bbd6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24965,ed0319b3-00f5-4d11-82c0-9ab4099bbd6a,LIST_TRANSACTIONS,xs2aListTransactions,true 24966,ed0319b3-00f5-4d11-82c0-9ab4099bbd6a,AUTHORIZATION,,true 24967,ed0319b3-00f5-4d11-82c0-9ab4099bbd6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24968,ed0319b3-00f5-4d11-82c0-9ab4099bbd6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24969,ed0319b3-00f5-4d11-82c0-9ab4099bbd6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24970,8ee0bae9-6369-4c87-878a-5fdd53eec2a3,LIST_ACCOUNTS,hbciListAccounts,false -24971,8ee0bae9-6369-4c87-878a-5fdd53eec2a3,LIST_TRANSACTIONS,hbciListTransactions,false -24972,8ee0bae9-6369-4c87-878a-5fdd53eec2a3,AUTHORIZATION,,false -24973,8ee0bae9-6369-4c87-878a-5fdd53eec2a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24974,8ee0bae9-6369-4c87-878a-5fdd53eec2a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24975,8ee0bae9-6369-4c87-878a-5fdd53eec2a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24970,08b81900-685d-41f3-bd5e-2de53287ca99,LIST_ACCOUNTS,hbciListAccounts,false +24971,08b81900-685d-41f3-bd5e-2de53287ca99,LIST_TRANSACTIONS,hbciListTransactions,false +24972,08b81900-685d-41f3-bd5e-2de53287ca99,AUTHORIZATION,,false +24973,08b81900-685d-41f3-bd5e-2de53287ca99,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24974,08b81900-685d-41f3-bd5e-2de53287ca99,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24975,08b81900-685d-41f3-bd5e-2de53287ca99,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24976,aa18ac97-1002-41b7-910d-20fef0f33337,LIST_ACCOUNTS,xs2aListAccounts,true -24977,aa18ac97-1002-41b7-910d-20fef0f33337,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24977,aa18ac97-1002-41b7-910d-20fef0f33337,LIST_TRANSACTIONS,xs2aListTransactions,true 24978,aa18ac97-1002-41b7-910d-20fef0f33337,AUTHORIZATION,,true 24979,aa18ac97-1002-41b7-910d-20fef0f33337,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24980,aa18ac97-1002-41b7-910d-20fef0f33337,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24981,aa18ac97-1002-41b7-910d-20fef0f33337,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24982,716de359-4b6a-41f1-9b84-a5977e7872e3,LIST_ACCOUNTS,hbciListAccounts,false -24983,716de359-4b6a-41f1-9b84-a5977e7872e3,LIST_TRANSACTIONS,hbciListTransactions,false -24984,716de359-4b6a-41f1-9b84-a5977e7872e3,AUTHORIZATION,,false -24985,716de359-4b6a-41f1-9b84-a5977e7872e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24986,716de359-4b6a-41f1-9b84-a5977e7872e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24987,716de359-4b6a-41f1-9b84-a5977e7872e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24982,e8943350-ebf7-41dd-af72-924a4eeabc74,LIST_ACCOUNTS,hbciListAccounts,false +24983,e8943350-ebf7-41dd-af72-924a4eeabc74,LIST_TRANSACTIONS,hbciListTransactions,false +24984,e8943350-ebf7-41dd-af72-924a4eeabc74,AUTHORIZATION,,false +24985,e8943350-ebf7-41dd-af72-924a4eeabc74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24986,e8943350-ebf7-41dd-af72-924a4eeabc74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24987,e8943350-ebf7-41dd-af72-924a4eeabc74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 24988,7b1324cd-cebc-4a1e-815f-b04ec4c188bf,LIST_ACCOUNTS,xs2aListAccounts,true -24989,7b1324cd-cebc-4a1e-815f-b04ec4c188bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +24989,7b1324cd-cebc-4a1e-815f-b04ec4c188bf,LIST_TRANSACTIONS,xs2aListTransactions,true 24990,7b1324cd-cebc-4a1e-815f-b04ec4c188bf,AUTHORIZATION,,true 24991,7b1324cd-cebc-4a1e-815f-b04ec4c188bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 24992,7b1324cd-cebc-4a1e-815f-b04ec4c188bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 24993,7b1324cd-cebc-4a1e-815f-b04ec4c188bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -24994,acb8a36f-c51d-4201-83f1-6579a2551f41,LIST_ACCOUNTS,hbciListAccounts,false -24995,acb8a36f-c51d-4201-83f1-6579a2551f41,LIST_TRANSACTIONS,hbciListTransactions,false -24996,acb8a36f-c51d-4201-83f1-6579a2551f41,AUTHORIZATION,,false -24997,acb8a36f-c51d-4201-83f1-6579a2551f41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -24998,acb8a36f-c51d-4201-83f1-6579a2551f41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -24999,acb8a36f-c51d-4201-83f1-6579a2551f41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +24994,a34781be-e9f2-415e-9ff8-c186efb4621b,LIST_ACCOUNTS,hbciListAccounts,false +24995,a34781be-e9f2-415e-9ff8-c186efb4621b,LIST_TRANSACTIONS,hbciListTransactions,false +24996,a34781be-e9f2-415e-9ff8-c186efb4621b,AUTHORIZATION,,false +24997,a34781be-e9f2-415e-9ff8-c186efb4621b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +24998,a34781be-e9f2-415e-9ff8-c186efb4621b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +24999,a34781be-e9f2-415e-9ff8-c186efb4621b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25000,ee699bb5-d2be-4ee0-a180-d6f1a1bdb19a,LIST_ACCOUNTS,xs2aListAccounts,true -25001,ee699bb5-d2be-4ee0-a180-d6f1a1bdb19a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25001,ee699bb5-d2be-4ee0-a180-d6f1a1bdb19a,LIST_TRANSACTIONS,xs2aListTransactions,true 25002,ee699bb5-d2be-4ee0-a180-d6f1a1bdb19a,AUTHORIZATION,,true 25003,ee699bb5-d2be-4ee0-a180-d6f1a1bdb19a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25004,ee699bb5-d2be-4ee0-a180-d6f1a1bdb19a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25005,ee699bb5-d2be-4ee0-a180-d6f1a1bdb19a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25006,14b0c957-e640-47e0-8a77-535f4e3dcd5b,LIST_ACCOUNTS,hbciListAccounts,false -25007,14b0c957-e640-47e0-8a77-535f4e3dcd5b,LIST_TRANSACTIONS,hbciListTransactions,false -25008,14b0c957-e640-47e0-8a77-535f4e3dcd5b,AUTHORIZATION,,false -25009,14b0c957-e640-47e0-8a77-535f4e3dcd5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25010,14b0c957-e640-47e0-8a77-535f4e3dcd5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25011,14b0c957-e640-47e0-8a77-535f4e3dcd5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25006,f77c8e85-2a8b-47f2-ab91-ea9415460791,LIST_ACCOUNTS,hbciListAccounts,false +25007,f77c8e85-2a8b-47f2-ab91-ea9415460791,LIST_TRANSACTIONS,hbciListTransactions,false +25008,f77c8e85-2a8b-47f2-ab91-ea9415460791,AUTHORIZATION,,false +25009,f77c8e85-2a8b-47f2-ab91-ea9415460791,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25010,f77c8e85-2a8b-47f2-ab91-ea9415460791,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25011,f77c8e85-2a8b-47f2-ab91-ea9415460791,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25012,3c89f23d-0c87-4b7f-b091-fafc5b2be8d2,LIST_ACCOUNTS,xs2aListAccounts,true -25013,3c89f23d-0c87-4b7f-b091-fafc5b2be8d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25013,3c89f23d-0c87-4b7f-b091-fafc5b2be8d2,LIST_TRANSACTIONS,xs2aListTransactions,true 25014,3c89f23d-0c87-4b7f-b091-fafc5b2be8d2,AUTHORIZATION,,true 25015,3c89f23d-0c87-4b7f-b091-fafc5b2be8d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25016,3c89f23d-0c87-4b7f-b091-fafc5b2be8d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25017,3c89f23d-0c87-4b7f-b091-fafc5b2be8d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25018,406b66bf-0789-4fc5-95c5-2b07d5b947cb,LIST_ACCOUNTS,hbciListAccounts,false -25019,406b66bf-0789-4fc5-95c5-2b07d5b947cb,LIST_TRANSACTIONS,hbciListTransactions,false -25020,406b66bf-0789-4fc5-95c5-2b07d5b947cb,AUTHORIZATION,,false -25021,406b66bf-0789-4fc5-95c5-2b07d5b947cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25022,406b66bf-0789-4fc5-95c5-2b07d5b947cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25023,406b66bf-0789-4fc5-95c5-2b07d5b947cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25018,a96a1978-8364-4db9-8da1-52a3234ab9bf,LIST_ACCOUNTS,hbciListAccounts,false +25019,a96a1978-8364-4db9-8da1-52a3234ab9bf,LIST_TRANSACTIONS,hbciListTransactions,false +25020,a96a1978-8364-4db9-8da1-52a3234ab9bf,AUTHORIZATION,,false +25021,a96a1978-8364-4db9-8da1-52a3234ab9bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25022,a96a1978-8364-4db9-8da1-52a3234ab9bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25023,a96a1978-8364-4db9-8da1-52a3234ab9bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25024,13e82c53-a4de-402d-8767-fea4729e1136,LIST_ACCOUNTS,xs2aListAccounts,true -25025,13e82c53-a4de-402d-8767-fea4729e1136,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25025,13e82c53-a4de-402d-8767-fea4729e1136,LIST_TRANSACTIONS,xs2aListTransactions,true 25026,13e82c53-a4de-402d-8767-fea4729e1136,AUTHORIZATION,,true 25027,13e82c53-a4de-402d-8767-fea4729e1136,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25028,13e82c53-a4de-402d-8767-fea4729e1136,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25029,13e82c53-a4de-402d-8767-fea4729e1136,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25030,29e2442e-550b-493f-b262-bf5c5d48836f,LIST_ACCOUNTS,hbciListAccounts,false -25031,29e2442e-550b-493f-b262-bf5c5d48836f,LIST_TRANSACTIONS,hbciListTransactions,false -25032,29e2442e-550b-493f-b262-bf5c5d48836f,AUTHORIZATION,,false -25033,29e2442e-550b-493f-b262-bf5c5d48836f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25034,29e2442e-550b-493f-b262-bf5c5d48836f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25035,29e2442e-550b-493f-b262-bf5c5d48836f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25030,77359045-7d32-43de-be43-0b1cc452b4f9,LIST_ACCOUNTS,hbciListAccounts,false +25031,77359045-7d32-43de-be43-0b1cc452b4f9,LIST_TRANSACTIONS,hbciListTransactions,false +25032,77359045-7d32-43de-be43-0b1cc452b4f9,AUTHORIZATION,,false +25033,77359045-7d32-43de-be43-0b1cc452b4f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25034,77359045-7d32-43de-be43-0b1cc452b4f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25035,77359045-7d32-43de-be43-0b1cc452b4f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25036,2ad2a241-5d53-45b1-906e-bca4ea4a00bf,LIST_ACCOUNTS,xs2aListAccounts,true -25037,2ad2a241-5d53-45b1-906e-bca4ea4a00bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25037,2ad2a241-5d53-45b1-906e-bca4ea4a00bf,LIST_TRANSACTIONS,xs2aListTransactions,true 25038,2ad2a241-5d53-45b1-906e-bca4ea4a00bf,AUTHORIZATION,,true 25039,2ad2a241-5d53-45b1-906e-bca4ea4a00bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25040,2ad2a241-5d53-45b1-906e-bca4ea4a00bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25041,2ad2a241-5d53-45b1-906e-bca4ea4a00bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25042,6ff79695-0c9a-40ae-9f3c-097dc81230d4,LIST_ACCOUNTS,hbciListAccounts,false -25043,6ff79695-0c9a-40ae-9f3c-097dc81230d4,LIST_TRANSACTIONS,hbciListTransactions,false -25044,6ff79695-0c9a-40ae-9f3c-097dc81230d4,AUTHORIZATION,,false -25045,6ff79695-0c9a-40ae-9f3c-097dc81230d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25046,6ff79695-0c9a-40ae-9f3c-097dc81230d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25047,6ff79695-0c9a-40ae-9f3c-097dc81230d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25042,98800e5a-fb60-4e8e-b395-1af68886f65e,LIST_ACCOUNTS,hbciListAccounts,false +25043,98800e5a-fb60-4e8e-b395-1af68886f65e,LIST_TRANSACTIONS,hbciListTransactions,false +25044,98800e5a-fb60-4e8e-b395-1af68886f65e,AUTHORIZATION,,false +25045,98800e5a-fb60-4e8e-b395-1af68886f65e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25046,98800e5a-fb60-4e8e-b395-1af68886f65e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25047,98800e5a-fb60-4e8e-b395-1af68886f65e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25048,e09553a8-a234-4204-b1d9-d2897aaa663c,LIST_ACCOUNTS,xs2aListAccounts,true -25049,e09553a8-a234-4204-b1d9-d2897aaa663c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25049,e09553a8-a234-4204-b1d9-d2897aaa663c,LIST_TRANSACTIONS,xs2aListTransactions,true 25050,e09553a8-a234-4204-b1d9-d2897aaa663c,AUTHORIZATION,,true 25051,e09553a8-a234-4204-b1d9-d2897aaa663c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25052,e09553a8-a234-4204-b1d9-d2897aaa663c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25053,e09553a8-a234-4204-b1d9-d2897aaa663c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25054,bebe7578-a68f-41c2-8f49-d1d0de9d1767,LIST_ACCOUNTS,hbciListAccounts,false -25055,bebe7578-a68f-41c2-8f49-d1d0de9d1767,LIST_TRANSACTIONS,hbciListTransactions,false -25056,bebe7578-a68f-41c2-8f49-d1d0de9d1767,AUTHORIZATION,,false -25057,bebe7578-a68f-41c2-8f49-d1d0de9d1767,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25058,bebe7578-a68f-41c2-8f49-d1d0de9d1767,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25059,bebe7578-a68f-41c2-8f49-d1d0de9d1767,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25054,0f75dfa5-b9cc-4be8-b85f-939f10be568b,LIST_ACCOUNTS,hbciListAccounts,false +25055,0f75dfa5-b9cc-4be8-b85f-939f10be568b,LIST_TRANSACTIONS,hbciListTransactions,false +25056,0f75dfa5-b9cc-4be8-b85f-939f10be568b,AUTHORIZATION,,false +25057,0f75dfa5-b9cc-4be8-b85f-939f10be568b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25058,0f75dfa5-b9cc-4be8-b85f-939f10be568b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25059,0f75dfa5-b9cc-4be8-b85f-939f10be568b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25060,6c61ef4a-9cb9-49ea-8237-0bdf60590e5a,LIST_ACCOUNTS,xs2aListAccounts,true -25061,6c61ef4a-9cb9-49ea-8237-0bdf60590e5a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25061,6c61ef4a-9cb9-49ea-8237-0bdf60590e5a,LIST_TRANSACTIONS,xs2aListTransactions,true 25062,6c61ef4a-9cb9-49ea-8237-0bdf60590e5a,AUTHORIZATION,,true 25063,6c61ef4a-9cb9-49ea-8237-0bdf60590e5a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25064,6c61ef4a-9cb9-49ea-8237-0bdf60590e5a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25065,6c61ef4a-9cb9-49ea-8237-0bdf60590e5a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25066,1f6ac2a0-fcbe-4b40-9e04-e2f3e08911c0,LIST_ACCOUNTS,hbciListAccounts,false -25067,1f6ac2a0-fcbe-4b40-9e04-e2f3e08911c0,LIST_TRANSACTIONS,hbciListTransactions,false -25068,1f6ac2a0-fcbe-4b40-9e04-e2f3e08911c0,AUTHORIZATION,,false -25069,1f6ac2a0-fcbe-4b40-9e04-e2f3e08911c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25070,1f6ac2a0-fcbe-4b40-9e04-e2f3e08911c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25071,1f6ac2a0-fcbe-4b40-9e04-e2f3e08911c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25066,02288b9b-18e5-42f4-9389-e6c4c93207c5,LIST_ACCOUNTS,hbciListAccounts,false +25067,02288b9b-18e5-42f4-9389-e6c4c93207c5,LIST_TRANSACTIONS,hbciListTransactions,false +25068,02288b9b-18e5-42f4-9389-e6c4c93207c5,AUTHORIZATION,,false +25069,02288b9b-18e5-42f4-9389-e6c4c93207c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25070,02288b9b-18e5-42f4-9389-e6c4c93207c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25071,02288b9b-18e5-42f4-9389-e6c4c93207c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25072,7e683176-8dee-4aa0-ba9c-d3b6b03138d2,LIST_ACCOUNTS,xs2aListAccounts,true -25073,7e683176-8dee-4aa0-ba9c-d3b6b03138d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25073,7e683176-8dee-4aa0-ba9c-d3b6b03138d2,LIST_TRANSACTIONS,xs2aListTransactions,true 25074,7e683176-8dee-4aa0-ba9c-d3b6b03138d2,AUTHORIZATION,,true 25075,7e683176-8dee-4aa0-ba9c-d3b6b03138d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25076,7e683176-8dee-4aa0-ba9c-d3b6b03138d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25077,7e683176-8dee-4aa0-ba9c-d3b6b03138d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25078,a720df8d-ec19-4b77-9a7c-a06ce8a05a47,LIST_ACCOUNTS,hbciListAccounts,false -25079,a720df8d-ec19-4b77-9a7c-a06ce8a05a47,LIST_TRANSACTIONS,hbciListTransactions,false -25080,a720df8d-ec19-4b77-9a7c-a06ce8a05a47,AUTHORIZATION,,false -25081,a720df8d-ec19-4b77-9a7c-a06ce8a05a47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25082,a720df8d-ec19-4b77-9a7c-a06ce8a05a47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25083,a720df8d-ec19-4b77-9a7c-a06ce8a05a47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25078,1cd7909a-276f-4578-a136-804de7cf7308,LIST_ACCOUNTS,hbciListAccounts,false +25079,1cd7909a-276f-4578-a136-804de7cf7308,LIST_TRANSACTIONS,hbciListTransactions,false +25080,1cd7909a-276f-4578-a136-804de7cf7308,AUTHORIZATION,,false +25081,1cd7909a-276f-4578-a136-804de7cf7308,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25082,1cd7909a-276f-4578-a136-804de7cf7308,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25083,1cd7909a-276f-4578-a136-804de7cf7308,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25084,082bff9f-f3d6-4ea2-9b7b-97eb91eafad9,LIST_ACCOUNTS,xs2aListAccounts,true -25085,082bff9f-f3d6-4ea2-9b7b-97eb91eafad9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25085,082bff9f-f3d6-4ea2-9b7b-97eb91eafad9,LIST_TRANSACTIONS,xs2aListTransactions,true 25086,082bff9f-f3d6-4ea2-9b7b-97eb91eafad9,AUTHORIZATION,,true 25087,082bff9f-f3d6-4ea2-9b7b-97eb91eafad9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25088,082bff9f-f3d6-4ea2-9b7b-97eb91eafad9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25089,082bff9f-f3d6-4ea2-9b7b-97eb91eafad9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25090,794ad9fd-946e-494d-b15c-37ef05862b2d,LIST_ACCOUNTS,hbciListAccounts,false -25091,794ad9fd-946e-494d-b15c-37ef05862b2d,LIST_TRANSACTIONS,hbciListTransactions,false -25092,794ad9fd-946e-494d-b15c-37ef05862b2d,AUTHORIZATION,,false -25093,794ad9fd-946e-494d-b15c-37ef05862b2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25094,794ad9fd-946e-494d-b15c-37ef05862b2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25095,794ad9fd-946e-494d-b15c-37ef05862b2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25090,646bc137-19ec-49c2-b216-b939b873b0a4,LIST_ACCOUNTS,hbciListAccounts,false +25091,646bc137-19ec-49c2-b216-b939b873b0a4,LIST_TRANSACTIONS,hbciListTransactions,false +25092,646bc137-19ec-49c2-b216-b939b873b0a4,AUTHORIZATION,,false +25093,646bc137-19ec-49c2-b216-b939b873b0a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25094,646bc137-19ec-49c2-b216-b939b873b0a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25095,646bc137-19ec-49c2-b216-b939b873b0a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25096,99ddcd8f-6dc0-4aad-8901-4c218719bb02,LIST_ACCOUNTS,xs2aListAccounts,true -25097,99ddcd8f-6dc0-4aad-8901-4c218719bb02,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25097,99ddcd8f-6dc0-4aad-8901-4c218719bb02,LIST_TRANSACTIONS,xs2aListTransactions,true 25098,99ddcd8f-6dc0-4aad-8901-4c218719bb02,AUTHORIZATION,,true 25099,99ddcd8f-6dc0-4aad-8901-4c218719bb02,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25100,99ddcd8f-6dc0-4aad-8901-4c218719bb02,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25101,99ddcd8f-6dc0-4aad-8901-4c218719bb02,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25102,060307b3-9d51-4696-800a-f1efe83e2c2f,LIST_ACCOUNTS,hbciListAccounts,false -25103,060307b3-9d51-4696-800a-f1efe83e2c2f,LIST_TRANSACTIONS,hbciListTransactions,false -25104,060307b3-9d51-4696-800a-f1efe83e2c2f,AUTHORIZATION,,false -25105,060307b3-9d51-4696-800a-f1efe83e2c2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25106,060307b3-9d51-4696-800a-f1efe83e2c2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25107,060307b3-9d51-4696-800a-f1efe83e2c2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25102,84311c92-1c8b-4d18-b499-61f15b7a8b86,LIST_ACCOUNTS,hbciListAccounts,false +25103,84311c92-1c8b-4d18-b499-61f15b7a8b86,LIST_TRANSACTIONS,hbciListTransactions,false +25104,84311c92-1c8b-4d18-b499-61f15b7a8b86,AUTHORIZATION,,false +25105,84311c92-1c8b-4d18-b499-61f15b7a8b86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25106,84311c92-1c8b-4d18-b499-61f15b7a8b86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25107,84311c92-1c8b-4d18-b499-61f15b7a8b86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25108,ab978293-d60d-4d75-a64b-26c7e07e7393,LIST_ACCOUNTS,xs2aListAccounts,true -25109,ab978293-d60d-4d75-a64b-26c7e07e7393,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25109,ab978293-d60d-4d75-a64b-26c7e07e7393,LIST_TRANSACTIONS,xs2aListTransactions,true 25110,ab978293-d60d-4d75-a64b-26c7e07e7393,AUTHORIZATION,,true 25111,ab978293-d60d-4d75-a64b-26c7e07e7393,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25112,ab978293-d60d-4d75-a64b-26c7e07e7393,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25113,ab978293-d60d-4d75-a64b-26c7e07e7393,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25114,c2bb5369-93a3-4596-95e0-790e03f8fc46,LIST_ACCOUNTS,hbciListAccounts,false -25115,c2bb5369-93a3-4596-95e0-790e03f8fc46,LIST_TRANSACTIONS,hbciListTransactions,false -25116,c2bb5369-93a3-4596-95e0-790e03f8fc46,AUTHORIZATION,,false -25117,c2bb5369-93a3-4596-95e0-790e03f8fc46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25118,c2bb5369-93a3-4596-95e0-790e03f8fc46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25119,c2bb5369-93a3-4596-95e0-790e03f8fc46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25114,f3f5df2a-94bb-47b0-a426-18f0f6c632dc,LIST_ACCOUNTS,hbciListAccounts,false +25115,f3f5df2a-94bb-47b0-a426-18f0f6c632dc,LIST_TRANSACTIONS,hbciListTransactions,false +25116,f3f5df2a-94bb-47b0-a426-18f0f6c632dc,AUTHORIZATION,,false +25117,f3f5df2a-94bb-47b0-a426-18f0f6c632dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25118,f3f5df2a-94bb-47b0-a426-18f0f6c632dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25119,f3f5df2a-94bb-47b0-a426-18f0f6c632dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25120,a6f6d6e9-aa9d-4e7f-abf2-5e45a254a7c5,LIST_ACCOUNTS,xs2aListAccounts,true -25121,a6f6d6e9-aa9d-4e7f-abf2-5e45a254a7c5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25121,a6f6d6e9-aa9d-4e7f-abf2-5e45a254a7c5,LIST_TRANSACTIONS,xs2aListTransactions,true 25122,a6f6d6e9-aa9d-4e7f-abf2-5e45a254a7c5,AUTHORIZATION,,true 25123,a6f6d6e9-aa9d-4e7f-abf2-5e45a254a7c5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25124,a6f6d6e9-aa9d-4e7f-abf2-5e45a254a7c5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25125,a6f6d6e9-aa9d-4e7f-abf2-5e45a254a7c5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25126,55493f64-cd01-4e7e-b376-297eb252e8fd,LIST_ACCOUNTS,hbciListAccounts,false -25127,55493f64-cd01-4e7e-b376-297eb252e8fd,LIST_TRANSACTIONS,hbciListTransactions,false -25128,55493f64-cd01-4e7e-b376-297eb252e8fd,AUTHORIZATION,,false -25129,55493f64-cd01-4e7e-b376-297eb252e8fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25130,55493f64-cd01-4e7e-b376-297eb252e8fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25131,55493f64-cd01-4e7e-b376-297eb252e8fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25126,07189ad2-cfe1-4d7f-a230-e039fa2899af,LIST_ACCOUNTS,hbciListAccounts,false +25127,07189ad2-cfe1-4d7f-a230-e039fa2899af,LIST_TRANSACTIONS,hbciListTransactions,false +25128,07189ad2-cfe1-4d7f-a230-e039fa2899af,AUTHORIZATION,,false +25129,07189ad2-cfe1-4d7f-a230-e039fa2899af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25130,07189ad2-cfe1-4d7f-a230-e039fa2899af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25131,07189ad2-cfe1-4d7f-a230-e039fa2899af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25132,1ee07f42-0164-404a-ac51-3f77e8b02788,LIST_ACCOUNTS,xs2aListAccounts,true -25133,1ee07f42-0164-404a-ac51-3f77e8b02788,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25133,1ee07f42-0164-404a-ac51-3f77e8b02788,LIST_TRANSACTIONS,xs2aListTransactions,true 25134,1ee07f42-0164-404a-ac51-3f77e8b02788,AUTHORIZATION,,true 25135,1ee07f42-0164-404a-ac51-3f77e8b02788,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25136,1ee07f42-0164-404a-ac51-3f77e8b02788,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25137,1ee07f42-0164-404a-ac51-3f77e8b02788,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25138,95bc37f5-4d53-43cf-9e52-5dc474f52dc7,LIST_ACCOUNTS,hbciListAccounts,false -25139,95bc37f5-4d53-43cf-9e52-5dc474f52dc7,LIST_TRANSACTIONS,hbciListTransactions,false -25140,95bc37f5-4d53-43cf-9e52-5dc474f52dc7,AUTHORIZATION,,false -25141,95bc37f5-4d53-43cf-9e52-5dc474f52dc7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25142,95bc37f5-4d53-43cf-9e52-5dc474f52dc7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25143,95bc37f5-4d53-43cf-9e52-5dc474f52dc7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25138,74816ef6-8665-486e-a926-d4d63bf2ef54,LIST_ACCOUNTS,hbciListAccounts,false +25139,74816ef6-8665-486e-a926-d4d63bf2ef54,LIST_TRANSACTIONS,hbciListTransactions,false +25140,74816ef6-8665-486e-a926-d4d63bf2ef54,AUTHORIZATION,,false +25141,74816ef6-8665-486e-a926-d4d63bf2ef54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25142,74816ef6-8665-486e-a926-d4d63bf2ef54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25143,74816ef6-8665-486e-a926-d4d63bf2ef54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25144,2d32d733-2e74-43cf-97ff-f49d332b4225,LIST_ACCOUNTS,xs2aListAccounts,true -25145,2d32d733-2e74-43cf-97ff-f49d332b4225,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25145,2d32d733-2e74-43cf-97ff-f49d332b4225,LIST_TRANSACTIONS,xs2aListTransactions,true 25146,2d32d733-2e74-43cf-97ff-f49d332b4225,AUTHORIZATION,,true 25147,2d32d733-2e74-43cf-97ff-f49d332b4225,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25148,2d32d733-2e74-43cf-97ff-f49d332b4225,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25149,2d32d733-2e74-43cf-97ff-f49d332b4225,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25150,e08edfee-9aed-4e53-9492-91e55fe1102a,LIST_ACCOUNTS,hbciListAccounts,false -25151,e08edfee-9aed-4e53-9492-91e55fe1102a,LIST_TRANSACTIONS,hbciListTransactions,false -25152,e08edfee-9aed-4e53-9492-91e55fe1102a,AUTHORIZATION,,false -25153,e08edfee-9aed-4e53-9492-91e55fe1102a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25154,e08edfee-9aed-4e53-9492-91e55fe1102a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25155,e08edfee-9aed-4e53-9492-91e55fe1102a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25150,29dde284-bdcb-4bef-9592-68cc4d231550,LIST_ACCOUNTS,hbciListAccounts,false +25151,29dde284-bdcb-4bef-9592-68cc4d231550,LIST_TRANSACTIONS,hbciListTransactions,false +25152,29dde284-bdcb-4bef-9592-68cc4d231550,AUTHORIZATION,,false +25153,29dde284-bdcb-4bef-9592-68cc4d231550,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25154,29dde284-bdcb-4bef-9592-68cc4d231550,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25155,29dde284-bdcb-4bef-9592-68cc4d231550,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25156,380005e7-f7e9-4c9f-8c32-9cad35f5fcaf,LIST_ACCOUNTS,xs2aListAccounts,true -25157,380005e7-f7e9-4c9f-8c32-9cad35f5fcaf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25157,380005e7-f7e9-4c9f-8c32-9cad35f5fcaf,LIST_TRANSACTIONS,xs2aListTransactions,true 25158,380005e7-f7e9-4c9f-8c32-9cad35f5fcaf,AUTHORIZATION,,true 25159,380005e7-f7e9-4c9f-8c32-9cad35f5fcaf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25160,380005e7-f7e9-4c9f-8c32-9cad35f5fcaf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25161,380005e7-f7e9-4c9f-8c32-9cad35f5fcaf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25162,fea8491e-d9d0-4d86-938e-463805a3f7c9,LIST_ACCOUNTS,hbciListAccounts,false -25163,fea8491e-d9d0-4d86-938e-463805a3f7c9,LIST_TRANSACTIONS,hbciListTransactions,false -25164,fea8491e-d9d0-4d86-938e-463805a3f7c9,AUTHORIZATION,,false -25165,fea8491e-d9d0-4d86-938e-463805a3f7c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25166,fea8491e-d9d0-4d86-938e-463805a3f7c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25167,fea8491e-d9d0-4d86-938e-463805a3f7c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25162,32560a23-e5c2-4cd9-a8e8-d391783aa5e6,LIST_ACCOUNTS,hbciListAccounts,false +25163,32560a23-e5c2-4cd9-a8e8-d391783aa5e6,LIST_TRANSACTIONS,hbciListTransactions,false +25164,32560a23-e5c2-4cd9-a8e8-d391783aa5e6,AUTHORIZATION,,false +25165,32560a23-e5c2-4cd9-a8e8-d391783aa5e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25166,32560a23-e5c2-4cd9-a8e8-d391783aa5e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25167,32560a23-e5c2-4cd9-a8e8-d391783aa5e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25168,a3b26af1-5bbb-4e77-a276-0bd569a7920e,LIST_ACCOUNTS,xs2aListAccounts,true -25169,a3b26af1-5bbb-4e77-a276-0bd569a7920e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25169,a3b26af1-5bbb-4e77-a276-0bd569a7920e,LIST_TRANSACTIONS,xs2aListTransactions,true 25170,a3b26af1-5bbb-4e77-a276-0bd569a7920e,AUTHORIZATION,,true 25171,a3b26af1-5bbb-4e77-a276-0bd569a7920e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25172,a3b26af1-5bbb-4e77-a276-0bd569a7920e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25173,a3b26af1-5bbb-4e77-a276-0bd569a7920e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25174,fdcabf9b-7a1b-4eab-8c89-f644423e42ca,LIST_ACCOUNTS,hbciListAccounts,false -25175,fdcabf9b-7a1b-4eab-8c89-f644423e42ca,LIST_TRANSACTIONS,hbciListTransactions,false -25176,fdcabf9b-7a1b-4eab-8c89-f644423e42ca,AUTHORIZATION,,false -25177,fdcabf9b-7a1b-4eab-8c89-f644423e42ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25178,fdcabf9b-7a1b-4eab-8c89-f644423e42ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25179,fdcabf9b-7a1b-4eab-8c89-f644423e42ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25174,bb834a9a-38e2-44f7-9ed1-ce1d8bfb15ce,LIST_ACCOUNTS,hbciListAccounts,false +25175,bb834a9a-38e2-44f7-9ed1-ce1d8bfb15ce,LIST_TRANSACTIONS,hbciListTransactions,false +25176,bb834a9a-38e2-44f7-9ed1-ce1d8bfb15ce,AUTHORIZATION,,false +25177,bb834a9a-38e2-44f7-9ed1-ce1d8bfb15ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25178,bb834a9a-38e2-44f7-9ed1-ce1d8bfb15ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25179,bb834a9a-38e2-44f7-9ed1-ce1d8bfb15ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25180,c744d53d-f331-4bfc-a4f8-40c4df07af98,LIST_ACCOUNTS,xs2aListAccounts,true -25181,c744d53d-f331-4bfc-a4f8-40c4df07af98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25181,c744d53d-f331-4bfc-a4f8-40c4df07af98,LIST_TRANSACTIONS,xs2aListTransactions,true 25182,c744d53d-f331-4bfc-a4f8-40c4df07af98,AUTHORIZATION,,true 25183,c744d53d-f331-4bfc-a4f8-40c4df07af98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25184,c744d53d-f331-4bfc-a4f8-40c4df07af98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25185,c744d53d-f331-4bfc-a4f8-40c4df07af98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25186,b3fa94c7-ec56-4ea0-b75d-7387c4ae7b4e,LIST_ACCOUNTS,hbciListAccounts,false -25187,b3fa94c7-ec56-4ea0-b75d-7387c4ae7b4e,LIST_TRANSACTIONS,hbciListTransactions,false -25188,b3fa94c7-ec56-4ea0-b75d-7387c4ae7b4e,AUTHORIZATION,,false -25189,b3fa94c7-ec56-4ea0-b75d-7387c4ae7b4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25190,b3fa94c7-ec56-4ea0-b75d-7387c4ae7b4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25191,b3fa94c7-ec56-4ea0-b75d-7387c4ae7b4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25186,8d833102-0c3c-464d-a290-d8e99c2327ab,LIST_ACCOUNTS,hbciListAccounts,false +25187,8d833102-0c3c-464d-a290-d8e99c2327ab,LIST_TRANSACTIONS,hbciListTransactions,false +25188,8d833102-0c3c-464d-a290-d8e99c2327ab,AUTHORIZATION,,false +25189,8d833102-0c3c-464d-a290-d8e99c2327ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25190,8d833102-0c3c-464d-a290-d8e99c2327ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25191,8d833102-0c3c-464d-a290-d8e99c2327ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25192,dfbe19c2-25c1-480e-9a23-c4efaf73ed9c,LIST_ACCOUNTS,xs2aListAccounts,true -25193,dfbe19c2-25c1-480e-9a23-c4efaf73ed9c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25193,dfbe19c2-25c1-480e-9a23-c4efaf73ed9c,LIST_TRANSACTIONS,xs2aListTransactions,true 25194,dfbe19c2-25c1-480e-9a23-c4efaf73ed9c,AUTHORIZATION,,true 25195,dfbe19c2-25c1-480e-9a23-c4efaf73ed9c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25196,dfbe19c2-25c1-480e-9a23-c4efaf73ed9c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25197,dfbe19c2-25c1-480e-9a23-c4efaf73ed9c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25198,08ad3e96-f9ed-4112-a77e-f91f14d67536,LIST_ACCOUNTS,hbciListAccounts,false -25199,08ad3e96-f9ed-4112-a77e-f91f14d67536,LIST_TRANSACTIONS,hbciListTransactions,false -25200,08ad3e96-f9ed-4112-a77e-f91f14d67536,AUTHORIZATION,,false -25201,08ad3e96-f9ed-4112-a77e-f91f14d67536,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25202,08ad3e96-f9ed-4112-a77e-f91f14d67536,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25203,08ad3e96-f9ed-4112-a77e-f91f14d67536,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25198,f4b25732-36a8-41f5-a445-74b24891550b,LIST_ACCOUNTS,hbciListAccounts,false +25199,f4b25732-36a8-41f5-a445-74b24891550b,LIST_TRANSACTIONS,hbciListTransactions,false +25200,f4b25732-36a8-41f5-a445-74b24891550b,AUTHORIZATION,,false +25201,f4b25732-36a8-41f5-a445-74b24891550b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25202,f4b25732-36a8-41f5-a445-74b24891550b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25203,f4b25732-36a8-41f5-a445-74b24891550b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25204,6b2e4b46-cf1d-45cc-9e38-272ef921a395,LIST_ACCOUNTS,xs2aListAccounts,true -25205,6b2e4b46-cf1d-45cc-9e38-272ef921a395,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25205,6b2e4b46-cf1d-45cc-9e38-272ef921a395,LIST_TRANSACTIONS,xs2aListTransactions,true 25206,6b2e4b46-cf1d-45cc-9e38-272ef921a395,AUTHORIZATION,,true 25207,6b2e4b46-cf1d-45cc-9e38-272ef921a395,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25208,6b2e4b46-cf1d-45cc-9e38-272ef921a395,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25209,6b2e4b46-cf1d-45cc-9e38-272ef921a395,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25210,b44f9171-ed20-4402-ae4f-885dd3f2db50,LIST_ACCOUNTS,hbciListAccounts,false -25211,b44f9171-ed20-4402-ae4f-885dd3f2db50,LIST_TRANSACTIONS,hbciListTransactions,false -25212,b44f9171-ed20-4402-ae4f-885dd3f2db50,AUTHORIZATION,,false -25213,b44f9171-ed20-4402-ae4f-885dd3f2db50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25214,b44f9171-ed20-4402-ae4f-885dd3f2db50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25215,b44f9171-ed20-4402-ae4f-885dd3f2db50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25210,7a398cd9-f232-411c-8d2e-e6b361ee9f81,LIST_ACCOUNTS,hbciListAccounts,false +25211,7a398cd9-f232-411c-8d2e-e6b361ee9f81,LIST_TRANSACTIONS,hbciListTransactions,false +25212,7a398cd9-f232-411c-8d2e-e6b361ee9f81,AUTHORIZATION,,false +25213,7a398cd9-f232-411c-8d2e-e6b361ee9f81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25214,7a398cd9-f232-411c-8d2e-e6b361ee9f81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25215,7a398cd9-f232-411c-8d2e-e6b361ee9f81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25216,f519a98c-4988-4a9f-9fa5-529a3c0dc1b6,LIST_ACCOUNTS,xs2aListAccounts,true -25217,f519a98c-4988-4a9f-9fa5-529a3c0dc1b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25217,f519a98c-4988-4a9f-9fa5-529a3c0dc1b6,LIST_TRANSACTIONS,xs2aListTransactions,true 25218,f519a98c-4988-4a9f-9fa5-529a3c0dc1b6,AUTHORIZATION,,true 25219,f519a98c-4988-4a9f-9fa5-529a3c0dc1b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25220,f519a98c-4988-4a9f-9fa5-529a3c0dc1b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25221,f519a98c-4988-4a9f-9fa5-529a3c0dc1b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25222,943ed300-72b9-4620-a3ee-d35288f4bb8b,LIST_ACCOUNTS,hbciListAccounts,false -25223,943ed300-72b9-4620-a3ee-d35288f4bb8b,LIST_TRANSACTIONS,hbciListTransactions,false -25224,943ed300-72b9-4620-a3ee-d35288f4bb8b,AUTHORIZATION,,false -25225,943ed300-72b9-4620-a3ee-d35288f4bb8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25226,943ed300-72b9-4620-a3ee-d35288f4bb8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25227,943ed300-72b9-4620-a3ee-d35288f4bb8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25222,86f4c343-1433-48eb-91cc-29830eda2a7d,LIST_ACCOUNTS,hbciListAccounts,false +25223,86f4c343-1433-48eb-91cc-29830eda2a7d,LIST_TRANSACTIONS,hbciListTransactions,false +25224,86f4c343-1433-48eb-91cc-29830eda2a7d,AUTHORIZATION,,false +25225,86f4c343-1433-48eb-91cc-29830eda2a7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25226,86f4c343-1433-48eb-91cc-29830eda2a7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25227,86f4c343-1433-48eb-91cc-29830eda2a7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25228,753d89f6-c8f0-4b58-bad9-d4804a4eb632,LIST_ACCOUNTS,xs2aListAccounts,true -25229,753d89f6-c8f0-4b58-bad9-d4804a4eb632,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25229,753d89f6-c8f0-4b58-bad9-d4804a4eb632,LIST_TRANSACTIONS,xs2aListTransactions,true 25230,753d89f6-c8f0-4b58-bad9-d4804a4eb632,AUTHORIZATION,,true 25231,753d89f6-c8f0-4b58-bad9-d4804a4eb632,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25232,753d89f6-c8f0-4b58-bad9-d4804a4eb632,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25233,753d89f6-c8f0-4b58-bad9-d4804a4eb632,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25234,3f1599f6-c0f4-44d2-bb47-66e3558cf104,LIST_ACCOUNTS,hbciListAccounts,false -25235,3f1599f6-c0f4-44d2-bb47-66e3558cf104,LIST_TRANSACTIONS,hbciListTransactions,false -25236,3f1599f6-c0f4-44d2-bb47-66e3558cf104,AUTHORIZATION,,false -25237,3f1599f6-c0f4-44d2-bb47-66e3558cf104,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25238,3f1599f6-c0f4-44d2-bb47-66e3558cf104,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25239,3f1599f6-c0f4-44d2-bb47-66e3558cf104,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25234,fea976e6-1a10-4b07-a346-cb6a03417793,LIST_ACCOUNTS,hbciListAccounts,false +25235,fea976e6-1a10-4b07-a346-cb6a03417793,LIST_TRANSACTIONS,hbciListTransactions,false +25236,fea976e6-1a10-4b07-a346-cb6a03417793,AUTHORIZATION,,false +25237,fea976e6-1a10-4b07-a346-cb6a03417793,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25238,fea976e6-1a10-4b07-a346-cb6a03417793,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25239,fea976e6-1a10-4b07-a346-cb6a03417793,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25240,1836d580-dd57-4164-9c7a-60ec3bee7b75,LIST_ACCOUNTS,xs2aListAccounts,true -25241,1836d580-dd57-4164-9c7a-60ec3bee7b75,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25241,1836d580-dd57-4164-9c7a-60ec3bee7b75,LIST_TRANSACTIONS,xs2aListTransactions,true 25242,1836d580-dd57-4164-9c7a-60ec3bee7b75,AUTHORIZATION,,true 25243,1836d580-dd57-4164-9c7a-60ec3bee7b75,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25244,1836d580-dd57-4164-9c7a-60ec3bee7b75,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25245,1836d580-dd57-4164-9c7a-60ec3bee7b75,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25246,d32ffef7-2209-4cdb-9cef-8137ce443ca3,LIST_ACCOUNTS,hbciListAccounts,false -25247,d32ffef7-2209-4cdb-9cef-8137ce443ca3,LIST_TRANSACTIONS,hbciListTransactions,false -25248,d32ffef7-2209-4cdb-9cef-8137ce443ca3,AUTHORIZATION,,false -25249,d32ffef7-2209-4cdb-9cef-8137ce443ca3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25250,d32ffef7-2209-4cdb-9cef-8137ce443ca3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25251,d32ffef7-2209-4cdb-9cef-8137ce443ca3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25246,6eee938e-89e1-4f6e-be49-7def38e24280,LIST_ACCOUNTS,hbciListAccounts,false +25247,6eee938e-89e1-4f6e-be49-7def38e24280,LIST_TRANSACTIONS,hbciListTransactions,false +25248,6eee938e-89e1-4f6e-be49-7def38e24280,AUTHORIZATION,,false +25249,6eee938e-89e1-4f6e-be49-7def38e24280,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25250,6eee938e-89e1-4f6e-be49-7def38e24280,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25251,6eee938e-89e1-4f6e-be49-7def38e24280,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25252,4f92be7d-cf17-4ca1-af7e-d34a281c44e0,LIST_ACCOUNTS,xs2aListAccounts,true -25253,4f92be7d-cf17-4ca1-af7e-d34a281c44e0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25253,4f92be7d-cf17-4ca1-af7e-d34a281c44e0,LIST_TRANSACTIONS,xs2aListTransactions,true 25254,4f92be7d-cf17-4ca1-af7e-d34a281c44e0,AUTHORIZATION,,true 25255,4f92be7d-cf17-4ca1-af7e-d34a281c44e0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25256,4f92be7d-cf17-4ca1-af7e-d34a281c44e0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25257,4f92be7d-cf17-4ca1-af7e-d34a281c44e0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25258,c4ef46fb-1d5e-403d-a72f-d3682d50b641,LIST_ACCOUNTS,hbciListAccounts,false -25259,c4ef46fb-1d5e-403d-a72f-d3682d50b641,LIST_TRANSACTIONS,hbciListTransactions,false -25260,c4ef46fb-1d5e-403d-a72f-d3682d50b641,AUTHORIZATION,,false -25261,c4ef46fb-1d5e-403d-a72f-d3682d50b641,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25262,c4ef46fb-1d5e-403d-a72f-d3682d50b641,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25263,c4ef46fb-1d5e-403d-a72f-d3682d50b641,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25258,ec6ab88d-b5a5-4ea2-b14a-4dc9473e272d,LIST_ACCOUNTS,hbciListAccounts,false +25259,ec6ab88d-b5a5-4ea2-b14a-4dc9473e272d,LIST_TRANSACTIONS,hbciListTransactions,false +25260,ec6ab88d-b5a5-4ea2-b14a-4dc9473e272d,AUTHORIZATION,,false +25261,ec6ab88d-b5a5-4ea2-b14a-4dc9473e272d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25262,ec6ab88d-b5a5-4ea2-b14a-4dc9473e272d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25263,ec6ab88d-b5a5-4ea2-b14a-4dc9473e272d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25264,4857a9b9-cec9-49e5-9f45-a91b023c1375,LIST_ACCOUNTS,xs2aListAccounts,true -25265,4857a9b9-cec9-49e5-9f45-a91b023c1375,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25265,4857a9b9-cec9-49e5-9f45-a91b023c1375,LIST_TRANSACTIONS,xs2aListTransactions,true 25266,4857a9b9-cec9-49e5-9f45-a91b023c1375,AUTHORIZATION,,true 25267,4857a9b9-cec9-49e5-9f45-a91b023c1375,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25268,4857a9b9-cec9-49e5-9f45-a91b023c1375,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25269,4857a9b9-cec9-49e5-9f45-a91b023c1375,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25270,2cc0e26c-970b-46ce-a4ae-11efcdbc5a25,LIST_ACCOUNTS,hbciListAccounts,false -25271,2cc0e26c-970b-46ce-a4ae-11efcdbc5a25,LIST_TRANSACTIONS,hbciListTransactions,false -25272,2cc0e26c-970b-46ce-a4ae-11efcdbc5a25,AUTHORIZATION,,false -25273,2cc0e26c-970b-46ce-a4ae-11efcdbc5a25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25274,2cc0e26c-970b-46ce-a4ae-11efcdbc5a25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25275,2cc0e26c-970b-46ce-a4ae-11efcdbc5a25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25270,2a70b1c1-25b6-4859-a48b-88cfcdb24c5d,LIST_ACCOUNTS,hbciListAccounts,false +25271,2a70b1c1-25b6-4859-a48b-88cfcdb24c5d,LIST_TRANSACTIONS,hbciListTransactions,false +25272,2a70b1c1-25b6-4859-a48b-88cfcdb24c5d,AUTHORIZATION,,false +25273,2a70b1c1-25b6-4859-a48b-88cfcdb24c5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25274,2a70b1c1-25b6-4859-a48b-88cfcdb24c5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25275,2a70b1c1-25b6-4859-a48b-88cfcdb24c5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25276,edb05346-c3bd-4c83-83b5-fbe895326bd9,LIST_ACCOUNTS,xs2aListAccounts,true -25277,edb05346-c3bd-4c83-83b5-fbe895326bd9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25277,edb05346-c3bd-4c83-83b5-fbe895326bd9,LIST_TRANSACTIONS,xs2aListTransactions,true 25278,edb05346-c3bd-4c83-83b5-fbe895326bd9,AUTHORIZATION,,true 25279,edb05346-c3bd-4c83-83b5-fbe895326bd9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25280,edb05346-c3bd-4c83-83b5-fbe895326bd9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25281,edb05346-c3bd-4c83-83b5-fbe895326bd9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25282,09c67b05-d114-42b8-8a16-e257033c1e34,LIST_ACCOUNTS,hbciListAccounts,false -25283,09c67b05-d114-42b8-8a16-e257033c1e34,LIST_TRANSACTIONS,hbciListTransactions,false -25284,09c67b05-d114-42b8-8a16-e257033c1e34,AUTHORIZATION,,false -25285,09c67b05-d114-42b8-8a16-e257033c1e34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25286,09c67b05-d114-42b8-8a16-e257033c1e34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25287,09c67b05-d114-42b8-8a16-e257033c1e34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25282,945d5028-4d68-4fbf-91f3-5d3ccdf0ed41,LIST_ACCOUNTS,hbciListAccounts,false +25283,945d5028-4d68-4fbf-91f3-5d3ccdf0ed41,LIST_TRANSACTIONS,hbciListTransactions,false +25284,945d5028-4d68-4fbf-91f3-5d3ccdf0ed41,AUTHORIZATION,,false +25285,945d5028-4d68-4fbf-91f3-5d3ccdf0ed41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25286,945d5028-4d68-4fbf-91f3-5d3ccdf0ed41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25287,945d5028-4d68-4fbf-91f3-5d3ccdf0ed41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25288,62bfc64b-433d-4393-add3-b4fcfb890d1c,LIST_ACCOUNTS,xs2aListAccounts,true -25289,62bfc64b-433d-4393-add3-b4fcfb890d1c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25289,62bfc64b-433d-4393-add3-b4fcfb890d1c,LIST_TRANSACTIONS,xs2aListTransactions,true 25290,62bfc64b-433d-4393-add3-b4fcfb890d1c,AUTHORIZATION,,true 25291,62bfc64b-433d-4393-add3-b4fcfb890d1c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25292,62bfc64b-433d-4393-add3-b4fcfb890d1c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25293,62bfc64b-433d-4393-add3-b4fcfb890d1c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25294,e98873ea-b8ae-4975-adf0-c11c6ca5a305,LIST_ACCOUNTS,hbciListAccounts,false -25295,e98873ea-b8ae-4975-adf0-c11c6ca5a305,LIST_TRANSACTIONS,hbciListTransactions,false -25296,e98873ea-b8ae-4975-adf0-c11c6ca5a305,AUTHORIZATION,,false -25297,e98873ea-b8ae-4975-adf0-c11c6ca5a305,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25298,e98873ea-b8ae-4975-adf0-c11c6ca5a305,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25299,e98873ea-b8ae-4975-adf0-c11c6ca5a305,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25294,e284225e-ceee-46d0-bfcc-e98a2f93c417,LIST_ACCOUNTS,hbciListAccounts,false +25295,e284225e-ceee-46d0-bfcc-e98a2f93c417,LIST_TRANSACTIONS,hbciListTransactions,false +25296,e284225e-ceee-46d0-bfcc-e98a2f93c417,AUTHORIZATION,,false +25297,e284225e-ceee-46d0-bfcc-e98a2f93c417,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25298,e284225e-ceee-46d0-bfcc-e98a2f93c417,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25299,e284225e-ceee-46d0-bfcc-e98a2f93c417,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25300,f21b957f-8838-4824-9e5e-9dd6c83ff035,LIST_ACCOUNTS,xs2aListAccounts,true -25301,f21b957f-8838-4824-9e5e-9dd6c83ff035,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25301,f21b957f-8838-4824-9e5e-9dd6c83ff035,LIST_TRANSACTIONS,xs2aListTransactions,true 25302,f21b957f-8838-4824-9e5e-9dd6c83ff035,AUTHORIZATION,,true 25303,f21b957f-8838-4824-9e5e-9dd6c83ff035,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25304,f21b957f-8838-4824-9e5e-9dd6c83ff035,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25305,f21b957f-8838-4824-9e5e-9dd6c83ff035,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25306,3972da52-6115-4b34-99f1-1450e832f803,LIST_ACCOUNTS,hbciListAccounts,false -25307,3972da52-6115-4b34-99f1-1450e832f803,LIST_TRANSACTIONS,hbciListTransactions,false -25308,3972da52-6115-4b34-99f1-1450e832f803,AUTHORIZATION,,false -25309,3972da52-6115-4b34-99f1-1450e832f803,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25310,3972da52-6115-4b34-99f1-1450e832f803,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25311,3972da52-6115-4b34-99f1-1450e832f803,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25306,7fabdaaa-4a96-48f2-acf5-d46ab94f25bc,LIST_ACCOUNTS,hbciListAccounts,false +25307,7fabdaaa-4a96-48f2-acf5-d46ab94f25bc,LIST_TRANSACTIONS,hbciListTransactions,false +25308,7fabdaaa-4a96-48f2-acf5-d46ab94f25bc,AUTHORIZATION,,false +25309,7fabdaaa-4a96-48f2-acf5-d46ab94f25bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25310,7fabdaaa-4a96-48f2-acf5-d46ab94f25bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25311,7fabdaaa-4a96-48f2-acf5-d46ab94f25bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25312,02d2a830-9f4c-42fc-b155-5f02f34370f0,LIST_ACCOUNTS,xs2aListAccounts,true -25313,02d2a830-9f4c-42fc-b155-5f02f34370f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25313,02d2a830-9f4c-42fc-b155-5f02f34370f0,LIST_TRANSACTIONS,xs2aListTransactions,true 25314,02d2a830-9f4c-42fc-b155-5f02f34370f0,AUTHORIZATION,,true 25315,02d2a830-9f4c-42fc-b155-5f02f34370f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25316,02d2a830-9f4c-42fc-b155-5f02f34370f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25317,02d2a830-9f4c-42fc-b155-5f02f34370f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25318,3fb2b529-cb84-4c0b-84d4-f96c284f9486,LIST_ACCOUNTS,hbciListAccounts,false -25319,3fb2b529-cb84-4c0b-84d4-f96c284f9486,LIST_TRANSACTIONS,hbciListTransactions,false -25320,3fb2b529-cb84-4c0b-84d4-f96c284f9486,AUTHORIZATION,,false -25321,3fb2b529-cb84-4c0b-84d4-f96c284f9486,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25322,3fb2b529-cb84-4c0b-84d4-f96c284f9486,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25323,3fb2b529-cb84-4c0b-84d4-f96c284f9486,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25318,5cb89a53-488f-453c-8d7a-3a0ede7bcb11,LIST_ACCOUNTS,hbciListAccounts,false +25319,5cb89a53-488f-453c-8d7a-3a0ede7bcb11,LIST_TRANSACTIONS,hbciListTransactions,false +25320,5cb89a53-488f-453c-8d7a-3a0ede7bcb11,AUTHORIZATION,,false +25321,5cb89a53-488f-453c-8d7a-3a0ede7bcb11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25322,5cb89a53-488f-453c-8d7a-3a0ede7bcb11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25323,5cb89a53-488f-453c-8d7a-3a0ede7bcb11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25324,944611b4-766b-401b-909b-f3902ef25504,LIST_ACCOUNTS,xs2aListAccounts,true -25325,944611b4-766b-401b-909b-f3902ef25504,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25325,944611b4-766b-401b-909b-f3902ef25504,LIST_TRANSACTIONS,xs2aListTransactions,true 25326,944611b4-766b-401b-909b-f3902ef25504,AUTHORIZATION,,true 25327,944611b4-766b-401b-909b-f3902ef25504,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25328,944611b4-766b-401b-909b-f3902ef25504,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25329,944611b4-766b-401b-909b-f3902ef25504,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25330,2c88f9f0-0054-4d20-995c-b9f46e722258,LIST_ACCOUNTS,hbciListAccounts,false -25331,2c88f9f0-0054-4d20-995c-b9f46e722258,LIST_TRANSACTIONS,hbciListTransactions,false -25332,2c88f9f0-0054-4d20-995c-b9f46e722258,AUTHORIZATION,,false -25333,2c88f9f0-0054-4d20-995c-b9f46e722258,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25334,2c88f9f0-0054-4d20-995c-b9f46e722258,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25335,2c88f9f0-0054-4d20-995c-b9f46e722258,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25330,81d7abc3-0aee-43fd-a058-46d2d03a1699,LIST_ACCOUNTS,hbciListAccounts,false +25331,81d7abc3-0aee-43fd-a058-46d2d03a1699,LIST_TRANSACTIONS,hbciListTransactions,false +25332,81d7abc3-0aee-43fd-a058-46d2d03a1699,AUTHORIZATION,,false +25333,81d7abc3-0aee-43fd-a058-46d2d03a1699,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25334,81d7abc3-0aee-43fd-a058-46d2d03a1699,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25335,81d7abc3-0aee-43fd-a058-46d2d03a1699,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25336,10e06fda-982e-4190-8f6e-987f238f205e,LIST_ACCOUNTS,xs2aListAccounts,true -25337,10e06fda-982e-4190-8f6e-987f238f205e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25337,10e06fda-982e-4190-8f6e-987f238f205e,LIST_TRANSACTIONS,xs2aListTransactions,true 25338,10e06fda-982e-4190-8f6e-987f238f205e,AUTHORIZATION,,true 25339,10e06fda-982e-4190-8f6e-987f238f205e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25340,10e06fda-982e-4190-8f6e-987f238f205e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25341,10e06fda-982e-4190-8f6e-987f238f205e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25342,4d44e0a1-c1c3-4e66-bad1-8a87d7df8618,LIST_ACCOUNTS,hbciListAccounts,false -25343,4d44e0a1-c1c3-4e66-bad1-8a87d7df8618,LIST_TRANSACTIONS,hbciListTransactions,false -25344,4d44e0a1-c1c3-4e66-bad1-8a87d7df8618,AUTHORIZATION,,false -25345,4d44e0a1-c1c3-4e66-bad1-8a87d7df8618,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25346,4d44e0a1-c1c3-4e66-bad1-8a87d7df8618,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25347,4d44e0a1-c1c3-4e66-bad1-8a87d7df8618,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25342,6d918e07-248e-43e4-b77d-d83c3740b6ab,LIST_ACCOUNTS,hbciListAccounts,false +25343,6d918e07-248e-43e4-b77d-d83c3740b6ab,LIST_TRANSACTIONS,hbciListTransactions,false +25344,6d918e07-248e-43e4-b77d-d83c3740b6ab,AUTHORIZATION,,false +25345,6d918e07-248e-43e4-b77d-d83c3740b6ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25346,6d918e07-248e-43e4-b77d-d83c3740b6ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25347,6d918e07-248e-43e4-b77d-d83c3740b6ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25348,b44c94c0-f775-4bf9-bc87-d6d81fee2566,LIST_ACCOUNTS,xs2aListAccounts,true -25349,b44c94c0-f775-4bf9-bc87-d6d81fee2566,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25349,b44c94c0-f775-4bf9-bc87-d6d81fee2566,LIST_TRANSACTIONS,xs2aListTransactions,true 25350,b44c94c0-f775-4bf9-bc87-d6d81fee2566,AUTHORIZATION,,true 25351,b44c94c0-f775-4bf9-bc87-d6d81fee2566,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25352,b44c94c0-f775-4bf9-bc87-d6d81fee2566,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25353,b44c94c0-f775-4bf9-bc87-d6d81fee2566,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25354,ed1e3c9a-4961-4e38-8b5f-9178a8560564,LIST_ACCOUNTS,hbciListAccounts,false -25355,ed1e3c9a-4961-4e38-8b5f-9178a8560564,LIST_TRANSACTIONS,hbciListTransactions,false -25356,ed1e3c9a-4961-4e38-8b5f-9178a8560564,AUTHORIZATION,,false -25357,ed1e3c9a-4961-4e38-8b5f-9178a8560564,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25358,ed1e3c9a-4961-4e38-8b5f-9178a8560564,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25359,ed1e3c9a-4961-4e38-8b5f-9178a8560564,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25354,3f692515-ca3f-4192-a8eb-db014eb80591,LIST_ACCOUNTS,hbciListAccounts,false +25355,3f692515-ca3f-4192-a8eb-db014eb80591,LIST_TRANSACTIONS,hbciListTransactions,false +25356,3f692515-ca3f-4192-a8eb-db014eb80591,AUTHORIZATION,,false +25357,3f692515-ca3f-4192-a8eb-db014eb80591,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25358,3f692515-ca3f-4192-a8eb-db014eb80591,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25359,3f692515-ca3f-4192-a8eb-db014eb80591,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25360,6f6d9d7e-308b-44e4-aacc-42dbb34cd4d3,LIST_ACCOUNTS,xs2aListAccounts,true -25361,6f6d9d7e-308b-44e4-aacc-42dbb34cd4d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25361,6f6d9d7e-308b-44e4-aacc-42dbb34cd4d3,LIST_TRANSACTIONS,xs2aListTransactions,true 25362,6f6d9d7e-308b-44e4-aacc-42dbb34cd4d3,AUTHORIZATION,,true 25363,6f6d9d7e-308b-44e4-aacc-42dbb34cd4d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25364,6f6d9d7e-308b-44e4-aacc-42dbb34cd4d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25365,6f6d9d7e-308b-44e4-aacc-42dbb34cd4d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25366,44ae0f7c-9d73-4816-a03f-2b02f4851d16,LIST_ACCOUNTS,hbciListAccounts,false -25367,44ae0f7c-9d73-4816-a03f-2b02f4851d16,LIST_TRANSACTIONS,hbciListTransactions,false -25368,44ae0f7c-9d73-4816-a03f-2b02f4851d16,AUTHORIZATION,,false -25369,44ae0f7c-9d73-4816-a03f-2b02f4851d16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25370,44ae0f7c-9d73-4816-a03f-2b02f4851d16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25371,44ae0f7c-9d73-4816-a03f-2b02f4851d16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25366,33415eb3-da53-41d7-948c-f9195c300416,LIST_ACCOUNTS,hbciListAccounts,false +25367,33415eb3-da53-41d7-948c-f9195c300416,LIST_TRANSACTIONS,hbciListTransactions,false +25368,33415eb3-da53-41d7-948c-f9195c300416,AUTHORIZATION,,false +25369,33415eb3-da53-41d7-948c-f9195c300416,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25370,33415eb3-da53-41d7-948c-f9195c300416,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25371,33415eb3-da53-41d7-948c-f9195c300416,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25372,7f202b9e-8837-40ae-b9ad-82895826f71c,LIST_ACCOUNTS,xs2aListAccounts,true -25373,7f202b9e-8837-40ae-b9ad-82895826f71c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25373,7f202b9e-8837-40ae-b9ad-82895826f71c,LIST_TRANSACTIONS,xs2aListTransactions,true 25374,7f202b9e-8837-40ae-b9ad-82895826f71c,AUTHORIZATION,,true 25375,7f202b9e-8837-40ae-b9ad-82895826f71c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25376,7f202b9e-8837-40ae-b9ad-82895826f71c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25377,7f202b9e-8837-40ae-b9ad-82895826f71c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25378,67bbbc18-a423-41fb-8095-99e301bca4c4,LIST_ACCOUNTS,hbciListAccounts,false -25379,67bbbc18-a423-41fb-8095-99e301bca4c4,LIST_TRANSACTIONS,hbciListTransactions,false -25380,67bbbc18-a423-41fb-8095-99e301bca4c4,AUTHORIZATION,,false -25381,67bbbc18-a423-41fb-8095-99e301bca4c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25382,67bbbc18-a423-41fb-8095-99e301bca4c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25383,67bbbc18-a423-41fb-8095-99e301bca4c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25378,61eabf30-6725-4b8f-bc9a-faa17c35901c,LIST_ACCOUNTS,hbciListAccounts,false +25379,61eabf30-6725-4b8f-bc9a-faa17c35901c,LIST_TRANSACTIONS,hbciListTransactions,false +25380,61eabf30-6725-4b8f-bc9a-faa17c35901c,AUTHORIZATION,,false +25381,61eabf30-6725-4b8f-bc9a-faa17c35901c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25382,61eabf30-6725-4b8f-bc9a-faa17c35901c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25383,61eabf30-6725-4b8f-bc9a-faa17c35901c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25384,41b0cd72-0a1a-49ff-98d8-7f9a32aa90de,LIST_ACCOUNTS,xs2aListAccounts,true -25385,41b0cd72-0a1a-49ff-98d8-7f9a32aa90de,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25385,41b0cd72-0a1a-49ff-98d8-7f9a32aa90de,LIST_TRANSACTIONS,xs2aListTransactions,true 25386,41b0cd72-0a1a-49ff-98d8-7f9a32aa90de,AUTHORIZATION,,true 25387,41b0cd72-0a1a-49ff-98d8-7f9a32aa90de,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25388,41b0cd72-0a1a-49ff-98d8-7f9a32aa90de,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25389,41b0cd72-0a1a-49ff-98d8-7f9a32aa90de,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25390,b67b6d6d-03ce-42f3-a6bc-a0d12bf57878,LIST_ACCOUNTS,hbciListAccounts,false -25391,b67b6d6d-03ce-42f3-a6bc-a0d12bf57878,LIST_TRANSACTIONS,hbciListTransactions,false -25392,b67b6d6d-03ce-42f3-a6bc-a0d12bf57878,AUTHORIZATION,,false -25393,b67b6d6d-03ce-42f3-a6bc-a0d12bf57878,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25394,b67b6d6d-03ce-42f3-a6bc-a0d12bf57878,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25395,b67b6d6d-03ce-42f3-a6bc-a0d12bf57878,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25390,e7f7dcba-920e-4f7e-a583-43a3b85cf93f,LIST_ACCOUNTS,hbciListAccounts,false +25391,e7f7dcba-920e-4f7e-a583-43a3b85cf93f,LIST_TRANSACTIONS,hbciListTransactions,false +25392,e7f7dcba-920e-4f7e-a583-43a3b85cf93f,AUTHORIZATION,,false +25393,e7f7dcba-920e-4f7e-a583-43a3b85cf93f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25394,e7f7dcba-920e-4f7e-a583-43a3b85cf93f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25395,e7f7dcba-920e-4f7e-a583-43a3b85cf93f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25396,fa5b5369-fd01-4e17-ba6b-979ee5642550,LIST_ACCOUNTS,xs2aListAccounts,true -25397,fa5b5369-fd01-4e17-ba6b-979ee5642550,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25397,fa5b5369-fd01-4e17-ba6b-979ee5642550,LIST_TRANSACTIONS,xs2aListTransactions,true 25398,fa5b5369-fd01-4e17-ba6b-979ee5642550,AUTHORIZATION,,true 25399,fa5b5369-fd01-4e17-ba6b-979ee5642550,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25400,fa5b5369-fd01-4e17-ba6b-979ee5642550,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25401,fa5b5369-fd01-4e17-ba6b-979ee5642550,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25402,59c31c7e-2d93-4dc3-933f-8a8b93b8788a,LIST_ACCOUNTS,hbciListAccounts,false -25403,59c31c7e-2d93-4dc3-933f-8a8b93b8788a,LIST_TRANSACTIONS,hbciListTransactions,false -25404,59c31c7e-2d93-4dc3-933f-8a8b93b8788a,AUTHORIZATION,,false -25405,59c31c7e-2d93-4dc3-933f-8a8b93b8788a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25406,59c31c7e-2d93-4dc3-933f-8a8b93b8788a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25407,59c31c7e-2d93-4dc3-933f-8a8b93b8788a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25402,72ebcea5-7b92-4d8e-a8b1-9b9c937b2ebe,LIST_ACCOUNTS,hbciListAccounts,false +25403,72ebcea5-7b92-4d8e-a8b1-9b9c937b2ebe,LIST_TRANSACTIONS,hbciListTransactions,false +25404,72ebcea5-7b92-4d8e-a8b1-9b9c937b2ebe,AUTHORIZATION,,false +25405,72ebcea5-7b92-4d8e-a8b1-9b9c937b2ebe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25406,72ebcea5-7b92-4d8e-a8b1-9b9c937b2ebe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25407,72ebcea5-7b92-4d8e-a8b1-9b9c937b2ebe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25408,8a0b54e2-5a5f-4df9-b055-d63fce5611b9,LIST_ACCOUNTS,xs2aListAccounts,true -25409,8a0b54e2-5a5f-4df9-b055-d63fce5611b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25409,8a0b54e2-5a5f-4df9-b055-d63fce5611b9,LIST_TRANSACTIONS,xs2aListTransactions,true 25410,8a0b54e2-5a5f-4df9-b055-d63fce5611b9,AUTHORIZATION,,true 25411,8a0b54e2-5a5f-4df9-b055-d63fce5611b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25412,8a0b54e2-5a5f-4df9-b055-d63fce5611b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25413,8a0b54e2-5a5f-4df9-b055-d63fce5611b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25414,b0bfc980-72e1-4c8a-8496-b54946693baf,LIST_ACCOUNTS,hbciListAccounts,false -25415,b0bfc980-72e1-4c8a-8496-b54946693baf,LIST_TRANSACTIONS,hbciListTransactions,false -25416,b0bfc980-72e1-4c8a-8496-b54946693baf,AUTHORIZATION,,false -25417,b0bfc980-72e1-4c8a-8496-b54946693baf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25418,b0bfc980-72e1-4c8a-8496-b54946693baf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25419,b0bfc980-72e1-4c8a-8496-b54946693baf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25414,17158c2f-2456-4f4d-827b-fdbb45de3408,LIST_ACCOUNTS,hbciListAccounts,false +25415,17158c2f-2456-4f4d-827b-fdbb45de3408,LIST_TRANSACTIONS,hbciListTransactions,false +25416,17158c2f-2456-4f4d-827b-fdbb45de3408,AUTHORIZATION,,false +25417,17158c2f-2456-4f4d-827b-fdbb45de3408,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25418,17158c2f-2456-4f4d-827b-fdbb45de3408,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25419,17158c2f-2456-4f4d-827b-fdbb45de3408,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25420,cb611343-9ae3-4888-8efb-9749a0779c8f,LIST_ACCOUNTS,xs2aListAccounts,true -25421,cb611343-9ae3-4888-8efb-9749a0779c8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25421,cb611343-9ae3-4888-8efb-9749a0779c8f,LIST_TRANSACTIONS,xs2aListTransactions,true 25422,cb611343-9ae3-4888-8efb-9749a0779c8f,AUTHORIZATION,,true 25423,cb611343-9ae3-4888-8efb-9749a0779c8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25424,cb611343-9ae3-4888-8efb-9749a0779c8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25425,cb611343-9ae3-4888-8efb-9749a0779c8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25426,b85764ab-1310-458f-9fdd-e66faa31d5aa,LIST_ACCOUNTS,hbciListAccounts,false -25427,b85764ab-1310-458f-9fdd-e66faa31d5aa,LIST_TRANSACTIONS,hbciListTransactions,false -25428,b85764ab-1310-458f-9fdd-e66faa31d5aa,AUTHORIZATION,,false -25429,b85764ab-1310-458f-9fdd-e66faa31d5aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25430,b85764ab-1310-458f-9fdd-e66faa31d5aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25431,b85764ab-1310-458f-9fdd-e66faa31d5aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25426,f26ab2d4-e52c-417e-b7d0-dbfca692014c,LIST_ACCOUNTS,hbciListAccounts,false +25427,f26ab2d4-e52c-417e-b7d0-dbfca692014c,LIST_TRANSACTIONS,hbciListTransactions,false +25428,f26ab2d4-e52c-417e-b7d0-dbfca692014c,AUTHORIZATION,,false +25429,f26ab2d4-e52c-417e-b7d0-dbfca692014c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25430,f26ab2d4-e52c-417e-b7d0-dbfca692014c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25431,f26ab2d4-e52c-417e-b7d0-dbfca692014c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25432,16416526-b097-4464-9366-8744d80fd117,LIST_ACCOUNTS,xs2aListAccounts,true -25433,16416526-b097-4464-9366-8744d80fd117,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25433,16416526-b097-4464-9366-8744d80fd117,LIST_TRANSACTIONS,xs2aListTransactions,true 25434,16416526-b097-4464-9366-8744d80fd117,AUTHORIZATION,,true 25435,16416526-b097-4464-9366-8744d80fd117,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25436,16416526-b097-4464-9366-8744d80fd117,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25437,16416526-b097-4464-9366-8744d80fd117,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25438,677a46d5-52db-4d99-a0ab-d01129e41679,LIST_ACCOUNTS,hbciListAccounts,false -25439,677a46d5-52db-4d99-a0ab-d01129e41679,LIST_TRANSACTIONS,hbciListTransactions,false -25440,677a46d5-52db-4d99-a0ab-d01129e41679,AUTHORIZATION,,false -25441,677a46d5-52db-4d99-a0ab-d01129e41679,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25442,677a46d5-52db-4d99-a0ab-d01129e41679,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25443,677a46d5-52db-4d99-a0ab-d01129e41679,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25438,cfe3b88e-e4ad-47ca-a3c5-fa643cbbdbed,LIST_ACCOUNTS,hbciListAccounts,false +25439,cfe3b88e-e4ad-47ca-a3c5-fa643cbbdbed,LIST_TRANSACTIONS,hbciListTransactions,false +25440,cfe3b88e-e4ad-47ca-a3c5-fa643cbbdbed,AUTHORIZATION,,false +25441,cfe3b88e-e4ad-47ca-a3c5-fa643cbbdbed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25442,cfe3b88e-e4ad-47ca-a3c5-fa643cbbdbed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25443,cfe3b88e-e4ad-47ca-a3c5-fa643cbbdbed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25444,b96b0ba6-d74d-4780-ae67-1403f2afb0db,LIST_ACCOUNTS,xs2aListAccounts,true -25445,b96b0ba6-d74d-4780-ae67-1403f2afb0db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25445,b96b0ba6-d74d-4780-ae67-1403f2afb0db,LIST_TRANSACTIONS,xs2aListTransactions,true 25446,b96b0ba6-d74d-4780-ae67-1403f2afb0db,AUTHORIZATION,,true 25447,b96b0ba6-d74d-4780-ae67-1403f2afb0db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25448,b96b0ba6-d74d-4780-ae67-1403f2afb0db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25449,b96b0ba6-d74d-4780-ae67-1403f2afb0db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25450,32a008dd-5cdb-4bd7-bc20-b3745d30738c,LIST_ACCOUNTS,hbciListAccounts,false -25451,32a008dd-5cdb-4bd7-bc20-b3745d30738c,LIST_TRANSACTIONS,hbciListTransactions,false -25452,32a008dd-5cdb-4bd7-bc20-b3745d30738c,AUTHORIZATION,,false -25453,32a008dd-5cdb-4bd7-bc20-b3745d30738c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25454,32a008dd-5cdb-4bd7-bc20-b3745d30738c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25455,32a008dd-5cdb-4bd7-bc20-b3745d30738c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25450,2d73648d-8ea0-488d-877e-b4789cf69338,LIST_ACCOUNTS,hbciListAccounts,false +25451,2d73648d-8ea0-488d-877e-b4789cf69338,LIST_TRANSACTIONS,hbciListTransactions,false +25452,2d73648d-8ea0-488d-877e-b4789cf69338,AUTHORIZATION,,false +25453,2d73648d-8ea0-488d-877e-b4789cf69338,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25454,2d73648d-8ea0-488d-877e-b4789cf69338,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25455,2d73648d-8ea0-488d-877e-b4789cf69338,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25456,a4f25267-ea48-4023-9fd1-e24d7902c5f4,LIST_ACCOUNTS,xs2aListAccounts,true -25457,a4f25267-ea48-4023-9fd1-e24d7902c5f4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25457,a4f25267-ea48-4023-9fd1-e24d7902c5f4,LIST_TRANSACTIONS,xs2aListTransactions,true 25458,a4f25267-ea48-4023-9fd1-e24d7902c5f4,AUTHORIZATION,,true 25459,a4f25267-ea48-4023-9fd1-e24d7902c5f4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25460,a4f25267-ea48-4023-9fd1-e24d7902c5f4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25461,a4f25267-ea48-4023-9fd1-e24d7902c5f4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25462,e615a0a3-92bb-446e-a862-389c9100cd7e,LIST_ACCOUNTS,hbciListAccounts,false -25463,e615a0a3-92bb-446e-a862-389c9100cd7e,LIST_TRANSACTIONS,hbciListTransactions,false -25464,e615a0a3-92bb-446e-a862-389c9100cd7e,AUTHORIZATION,,false -25465,e615a0a3-92bb-446e-a862-389c9100cd7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25466,e615a0a3-92bb-446e-a862-389c9100cd7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25467,e615a0a3-92bb-446e-a862-389c9100cd7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25462,d12bc63b-7be1-48f6-916f-472d4a7b3454,LIST_ACCOUNTS,hbciListAccounts,false +25463,d12bc63b-7be1-48f6-916f-472d4a7b3454,LIST_TRANSACTIONS,hbciListTransactions,false +25464,d12bc63b-7be1-48f6-916f-472d4a7b3454,AUTHORIZATION,,false +25465,d12bc63b-7be1-48f6-916f-472d4a7b3454,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25466,d12bc63b-7be1-48f6-916f-472d4a7b3454,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25467,d12bc63b-7be1-48f6-916f-472d4a7b3454,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25468,244d1ca6-1acf-4d57-b41b-ab2ff04a3fcf,LIST_ACCOUNTS,xs2aListAccounts,true -25469,244d1ca6-1acf-4d57-b41b-ab2ff04a3fcf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25469,244d1ca6-1acf-4d57-b41b-ab2ff04a3fcf,LIST_TRANSACTIONS,xs2aListTransactions,true 25470,244d1ca6-1acf-4d57-b41b-ab2ff04a3fcf,AUTHORIZATION,,true 25471,244d1ca6-1acf-4d57-b41b-ab2ff04a3fcf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25472,244d1ca6-1acf-4d57-b41b-ab2ff04a3fcf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25473,244d1ca6-1acf-4d57-b41b-ab2ff04a3fcf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25474,95bc6c74-e1de-4226-bb1c-9e07ac1bc1c1,LIST_ACCOUNTS,hbciListAccounts,false -25475,95bc6c74-e1de-4226-bb1c-9e07ac1bc1c1,LIST_TRANSACTIONS,hbciListTransactions,false -25476,95bc6c74-e1de-4226-bb1c-9e07ac1bc1c1,AUTHORIZATION,,false -25477,95bc6c74-e1de-4226-bb1c-9e07ac1bc1c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25478,95bc6c74-e1de-4226-bb1c-9e07ac1bc1c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25479,95bc6c74-e1de-4226-bb1c-9e07ac1bc1c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25474,b9e582b2-62da-4259-b627-f49e6e5395c3,LIST_ACCOUNTS,hbciListAccounts,false +25475,b9e582b2-62da-4259-b627-f49e6e5395c3,LIST_TRANSACTIONS,hbciListTransactions,false +25476,b9e582b2-62da-4259-b627-f49e6e5395c3,AUTHORIZATION,,false +25477,b9e582b2-62da-4259-b627-f49e6e5395c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25478,b9e582b2-62da-4259-b627-f49e6e5395c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25479,b9e582b2-62da-4259-b627-f49e6e5395c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25480,9077c64b-8263-4f53-bb25-7f0742dc58b5,LIST_ACCOUNTS,xs2aListAccounts,true -25481,9077c64b-8263-4f53-bb25-7f0742dc58b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25481,9077c64b-8263-4f53-bb25-7f0742dc58b5,LIST_TRANSACTIONS,xs2aListTransactions,true 25482,9077c64b-8263-4f53-bb25-7f0742dc58b5,AUTHORIZATION,,true 25483,9077c64b-8263-4f53-bb25-7f0742dc58b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25484,9077c64b-8263-4f53-bb25-7f0742dc58b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25485,9077c64b-8263-4f53-bb25-7f0742dc58b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25486,a5c0e503-6a97-4e5f-a540-b578da3a9064,LIST_ACCOUNTS,hbciListAccounts,false -25487,a5c0e503-6a97-4e5f-a540-b578da3a9064,LIST_TRANSACTIONS,hbciListTransactions,false -25488,a5c0e503-6a97-4e5f-a540-b578da3a9064,AUTHORIZATION,,false -25489,a5c0e503-6a97-4e5f-a540-b578da3a9064,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25490,a5c0e503-6a97-4e5f-a540-b578da3a9064,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25491,a5c0e503-6a97-4e5f-a540-b578da3a9064,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25486,2cedd87c-f5fb-428a-81c4-bae4ac2de30a,LIST_ACCOUNTS,hbciListAccounts,false +25487,2cedd87c-f5fb-428a-81c4-bae4ac2de30a,LIST_TRANSACTIONS,hbciListTransactions,false +25488,2cedd87c-f5fb-428a-81c4-bae4ac2de30a,AUTHORIZATION,,false +25489,2cedd87c-f5fb-428a-81c4-bae4ac2de30a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25490,2cedd87c-f5fb-428a-81c4-bae4ac2de30a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25491,2cedd87c-f5fb-428a-81c4-bae4ac2de30a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25492,168adb89-46b5-496c-a512-01c5cbb3280e,LIST_ACCOUNTS,xs2aListAccounts,true -25493,168adb89-46b5-496c-a512-01c5cbb3280e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25493,168adb89-46b5-496c-a512-01c5cbb3280e,LIST_TRANSACTIONS,xs2aListTransactions,true 25494,168adb89-46b5-496c-a512-01c5cbb3280e,AUTHORIZATION,,true 25495,168adb89-46b5-496c-a512-01c5cbb3280e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25496,168adb89-46b5-496c-a512-01c5cbb3280e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25497,168adb89-46b5-496c-a512-01c5cbb3280e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25498,528e0b40-51e6-4c6c-ac04-0fec704e66e3,LIST_ACCOUNTS,hbciListAccounts,false -25499,528e0b40-51e6-4c6c-ac04-0fec704e66e3,LIST_TRANSACTIONS,hbciListTransactions,false -25500,528e0b40-51e6-4c6c-ac04-0fec704e66e3,AUTHORIZATION,,false -25501,528e0b40-51e6-4c6c-ac04-0fec704e66e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25502,528e0b40-51e6-4c6c-ac04-0fec704e66e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25503,528e0b40-51e6-4c6c-ac04-0fec704e66e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25498,7ee51d55-1dec-423e-aaaa-e88894bc796c,LIST_ACCOUNTS,hbciListAccounts,false +25499,7ee51d55-1dec-423e-aaaa-e88894bc796c,LIST_TRANSACTIONS,hbciListTransactions,false +25500,7ee51d55-1dec-423e-aaaa-e88894bc796c,AUTHORIZATION,,false +25501,7ee51d55-1dec-423e-aaaa-e88894bc796c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25502,7ee51d55-1dec-423e-aaaa-e88894bc796c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25503,7ee51d55-1dec-423e-aaaa-e88894bc796c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25504,14f9352d-5905-4ca8-9e10-b32e05541365,LIST_ACCOUNTS,xs2aListAccounts,true -25505,14f9352d-5905-4ca8-9e10-b32e05541365,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25505,14f9352d-5905-4ca8-9e10-b32e05541365,LIST_TRANSACTIONS,xs2aListTransactions,true 25506,14f9352d-5905-4ca8-9e10-b32e05541365,AUTHORIZATION,,true 25507,14f9352d-5905-4ca8-9e10-b32e05541365,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25508,14f9352d-5905-4ca8-9e10-b32e05541365,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25509,14f9352d-5905-4ca8-9e10-b32e05541365,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25510,f511e09e-4e77-426d-819d-10a50a3e3ecf,LIST_ACCOUNTS,hbciListAccounts,false -25511,f511e09e-4e77-426d-819d-10a50a3e3ecf,LIST_TRANSACTIONS,hbciListTransactions,false -25512,f511e09e-4e77-426d-819d-10a50a3e3ecf,AUTHORIZATION,,false -25513,f511e09e-4e77-426d-819d-10a50a3e3ecf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25514,f511e09e-4e77-426d-819d-10a50a3e3ecf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25515,f511e09e-4e77-426d-819d-10a50a3e3ecf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25510,4ae74891-e0e3-4344-8330-c019e2575195,LIST_ACCOUNTS,hbciListAccounts,false +25511,4ae74891-e0e3-4344-8330-c019e2575195,LIST_TRANSACTIONS,hbciListTransactions,false +25512,4ae74891-e0e3-4344-8330-c019e2575195,AUTHORIZATION,,false +25513,4ae74891-e0e3-4344-8330-c019e2575195,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25514,4ae74891-e0e3-4344-8330-c019e2575195,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25515,4ae74891-e0e3-4344-8330-c019e2575195,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25516,3387ce2b-dbed-4580-81bb-5abcdc2e979b,LIST_ACCOUNTS,xs2aListAccounts,true -25517,3387ce2b-dbed-4580-81bb-5abcdc2e979b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25517,3387ce2b-dbed-4580-81bb-5abcdc2e979b,LIST_TRANSACTIONS,xs2aListTransactions,true 25518,3387ce2b-dbed-4580-81bb-5abcdc2e979b,AUTHORIZATION,,true 25519,3387ce2b-dbed-4580-81bb-5abcdc2e979b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25520,3387ce2b-dbed-4580-81bb-5abcdc2e979b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25521,3387ce2b-dbed-4580-81bb-5abcdc2e979b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25522,22c989b6-de1f-4ade-a5e9-2b787f199c54,LIST_ACCOUNTS,hbciListAccounts,false -25523,22c989b6-de1f-4ade-a5e9-2b787f199c54,LIST_TRANSACTIONS,hbciListTransactions,false -25524,22c989b6-de1f-4ade-a5e9-2b787f199c54,AUTHORIZATION,,false -25525,22c989b6-de1f-4ade-a5e9-2b787f199c54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25526,22c989b6-de1f-4ade-a5e9-2b787f199c54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25527,22c989b6-de1f-4ade-a5e9-2b787f199c54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25522,592ff5f0-0ed4-4165-853a-6e66b3cc7389,LIST_ACCOUNTS,hbciListAccounts,false +25523,592ff5f0-0ed4-4165-853a-6e66b3cc7389,LIST_TRANSACTIONS,hbciListTransactions,false +25524,592ff5f0-0ed4-4165-853a-6e66b3cc7389,AUTHORIZATION,,false +25525,592ff5f0-0ed4-4165-853a-6e66b3cc7389,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25526,592ff5f0-0ed4-4165-853a-6e66b3cc7389,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25527,592ff5f0-0ed4-4165-853a-6e66b3cc7389,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25528,d23bb906-bf96-4ac2-bc2b-d16959d435aa,LIST_ACCOUNTS,xs2aListAccounts,true -25529,d23bb906-bf96-4ac2-bc2b-d16959d435aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25529,d23bb906-bf96-4ac2-bc2b-d16959d435aa,LIST_TRANSACTIONS,xs2aListTransactions,true 25530,d23bb906-bf96-4ac2-bc2b-d16959d435aa,AUTHORIZATION,,true 25531,d23bb906-bf96-4ac2-bc2b-d16959d435aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25532,d23bb906-bf96-4ac2-bc2b-d16959d435aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25533,d23bb906-bf96-4ac2-bc2b-d16959d435aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25534,34a90ab7-79d3-4b0f-8f4d-ad8be9e50890,LIST_ACCOUNTS,hbciListAccounts,false -25535,34a90ab7-79d3-4b0f-8f4d-ad8be9e50890,LIST_TRANSACTIONS,hbciListTransactions,false -25536,34a90ab7-79d3-4b0f-8f4d-ad8be9e50890,AUTHORIZATION,,false -25537,34a90ab7-79d3-4b0f-8f4d-ad8be9e50890,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25538,34a90ab7-79d3-4b0f-8f4d-ad8be9e50890,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25539,34a90ab7-79d3-4b0f-8f4d-ad8be9e50890,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25534,01558a9e-2833-4a52-bf37-f572e8f45a2d,LIST_ACCOUNTS,hbciListAccounts,false +25535,01558a9e-2833-4a52-bf37-f572e8f45a2d,LIST_TRANSACTIONS,hbciListTransactions,false +25536,01558a9e-2833-4a52-bf37-f572e8f45a2d,AUTHORIZATION,,false +25537,01558a9e-2833-4a52-bf37-f572e8f45a2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25538,01558a9e-2833-4a52-bf37-f572e8f45a2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25539,01558a9e-2833-4a52-bf37-f572e8f45a2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25540,15a18c43-36ea-4847-b03d-a5d26366077c,LIST_ACCOUNTS,xs2aListAccounts,true -25541,15a18c43-36ea-4847-b03d-a5d26366077c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25541,15a18c43-36ea-4847-b03d-a5d26366077c,LIST_TRANSACTIONS,xs2aListTransactions,true 25542,15a18c43-36ea-4847-b03d-a5d26366077c,AUTHORIZATION,,true 25543,15a18c43-36ea-4847-b03d-a5d26366077c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25544,15a18c43-36ea-4847-b03d-a5d26366077c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25545,15a18c43-36ea-4847-b03d-a5d26366077c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25546,7bf0b7b0-2ac4-4bd0-b937-08922ae612ca,LIST_ACCOUNTS,hbciListAccounts,false -25547,7bf0b7b0-2ac4-4bd0-b937-08922ae612ca,LIST_TRANSACTIONS,hbciListTransactions,false -25548,7bf0b7b0-2ac4-4bd0-b937-08922ae612ca,AUTHORIZATION,,false -25549,7bf0b7b0-2ac4-4bd0-b937-08922ae612ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25550,7bf0b7b0-2ac4-4bd0-b937-08922ae612ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25551,7bf0b7b0-2ac4-4bd0-b937-08922ae612ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25546,83f29454-e260-4dde-90ec-13b9beb29ca4,LIST_ACCOUNTS,hbciListAccounts,false +25547,83f29454-e260-4dde-90ec-13b9beb29ca4,LIST_TRANSACTIONS,hbciListTransactions,false +25548,83f29454-e260-4dde-90ec-13b9beb29ca4,AUTHORIZATION,,false +25549,83f29454-e260-4dde-90ec-13b9beb29ca4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25550,83f29454-e260-4dde-90ec-13b9beb29ca4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25551,83f29454-e260-4dde-90ec-13b9beb29ca4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25552,5b5c916a-a772-40f9-ac2d-441b2f54d653,LIST_ACCOUNTS,xs2aListAccounts,true -25553,5b5c916a-a772-40f9-ac2d-441b2f54d653,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25553,5b5c916a-a772-40f9-ac2d-441b2f54d653,LIST_TRANSACTIONS,xs2aListTransactions,true 25554,5b5c916a-a772-40f9-ac2d-441b2f54d653,AUTHORIZATION,,true 25555,5b5c916a-a772-40f9-ac2d-441b2f54d653,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25556,5b5c916a-a772-40f9-ac2d-441b2f54d653,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25557,5b5c916a-a772-40f9-ac2d-441b2f54d653,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25558,93490ded-f454-4596-998d-39a2c7ff0044,LIST_ACCOUNTS,hbciListAccounts,false -25559,93490ded-f454-4596-998d-39a2c7ff0044,LIST_TRANSACTIONS,hbciListTransactions,false -25560,93490ded-f454-4596-998d-39a2c7ff0044,AUTHORIZATION,,false -25561,93490ded-f454-4596-998d-39a2c7ff0044,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25562,93490ded-f454-4596-998d-39a2c7ff0044,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25563,93490ded-f454-4596-998d-39a2c7ff0044,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25558,7cfc6d77-033b-4a77-a658-03956f1e636d,LIST_ACCOUNTS,hbciListAccounts,false +25559,7cfc6d77-033b-4a77-a658-03956f1e636d,LIST_TRANSACTIONS,hbciListTransactions,false +25560,7cfc6d77-033b-4a77-a658-03956f1e636d,AUTHORIZATION,,false +25561,7cfc6d77-033b-4a77-a658-03956f1e636d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25562,7cfc6d77-033b-4a77-a658-03956f1e636d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25563,7cfc6d77-033b-4a77-a658-03956f1e636d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25564,b430ec8e-b14b-4c36-b983-a0ddc31521b3,LIST_ACCOUNTS,xs2aListAccounts,true -25565,b430ec8e-b14b-4c36-b983-a0ddc31521b3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25565,b430ec8e-b14b-4c36-b983-a0ddc31521b3,LIST_TRANSACTIONS,xs2aListTransactions,true 25566,b430ec8e-b14b-4c36-b983-a0ddc31521b3,AUTHORIZATION,,true 25567,b430ec8e-b14b-4c36-b983-a0ddc31521b3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25568,b430ec8e-b14b-4c36-b983-a0ddc31521b3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25569,b430ec8e-b14b-4c36-b983-a0ddc31521b3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25570,19a808a8-7df5-498a-9ab4-bbb6f0cc1ed1,LIST_ACCOUNTS,hbciListAccounts,false -25571,19a808a8-7df5-498a-9ab4-bbb6f0cc1ed1,LIST_TRANSACTIONS,hbciListTransactions,false -25572,19a808a8-7df5-498a-9ab4-bbb6f0cc1ed1,AUTHORIZATION,,false -25573,19a808a8-7df5-498a-9ab4-bbb6f0cc1ed1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25574,19a808a8-7df5-498a-9ab4-bbb6f0cc1ed1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25575,19a808a8-7df5-498a-9ab4-bbb6f0cc1ed1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25570,0b09092e-9023-41ae-af2e-7b698ced73be,LIST_ACCOUNTS,hbciListAccounts,false +25571,0b09092e-9023-41ae-af2e-7b698ced73be,LIST_TRANSACTIONS,hbciListTransactions,false +25572,0b09092e-9023-41ae-af2e-7b698ced73be,AUTHORIZATION,,false +25573,0b09092e-9023-41ae-af2e-7b698ced73be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25574,0b09092e-9023-41ae-af2e-7b698ced73be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25575,0b09092e-9023-41ae-af2e-7b698ced73be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25576,32178e49-2c59-4f80-892e-e6b301459436,LIST_ACCOUNTS,xs2aListAccounts,true -25577,32178e49-2c59-4f80-892e-e6b301459436,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25577,32178e49-2c59-4f80-892e-e6b301459436,LIST_TRANSACTIONS,xs2aListTransactions,true 25578,32178e49-2c59-4f80-892e-e6b301459436,AUTHORIZATION,,true 25579,32178e49-2c59-4f80-892e-e6b301459436,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25580,32178e49-2c59-4f80-892e-e6b301459436,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25581,32178e49-2c59-4f80-892e-e6b301459436,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25582,d5d5a8c5-b3c6-4c13-8663-1c0a69090e92,LIST_ACCOUNTS,hbciListAccounts,false -25583,d5d5a8c5-b3c6-4c13-8663-1c0a69090e92,LIST_TRANSACTIONS,hbciListTransactions,false -25584,d5d5a8c5-b3c6-4c13-8663-1c0a69090e92,AUTHORIZATION,,false -25585,d5d5a8c5-b3c6-4c13-8663-1c0a69090e92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25586,d5d5a8c5-b3c6-4c13-8663-1c0a69090e92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25587,d5d5a8c5-b3c6-4c13-8663-1c0a69090e92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25582,1320a5db-88d3-498e-a3b3-eccbe6ae661f,LIST_ACCOUNTS,hbciListAccounts,false +25583,1320a5db-88d3-498e-a3b3-eccbe6ae661f,LIST_TRANSACTIONS,hbciListTransactions,false +25584,1320a5db-88d3-498e-a3b3-eccbe6ae661f,AUTHORIZATION,,false +25585,1320a5db-88d3-498e-a3b3-eccbe6ae661f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25586,1320a5db-88d3-498e-a3b3-eccbe6ae661f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25587,1320a5db-88d3-498e-a3b3-eccbe6ae661f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25588,8724c505-6f66-42da-beee-fa59e01ef910,LIST_ACCOUNTS,xs2aListAccounts,true -25589,8724c505-6f66-42da-beee-fa59e01ef910,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25589,8724c505-6f66-42da-beee-fa59e01ef910,LIST_TRANSACTIONS,xs2aListTransactions,true 25590,8724c505-6f66-42da-beee-fa59e01ef910,AUTHORIZATION,,true 25591,8724c505-6f66-42da-beee-fa59e01ef910,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25592,8724c505-6f66-42da-beee-fa59e01ef910,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25593,8724c505-6f66-42da-beee-fa59e01ef910,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25594,3d7e97ae-4fc7-4e44-8efa-7d75f5a3c065,LIST_ACCOUNTS,hbciListAccounts,false -25595,3d7e97ae-4fc7-4e44-8efa-7d75f5a3c065,LIST_TRANSACTIONS,hbciListTransactions,false -25596,3d7e97ae-4fc7-4e44-8efa-7d75f5a3c065,AUTHORIZATION,,false -25597,3d7e97ae-4fc7-4e44-8efa-7d75f5a3c065,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25598,3d7e97ae-4fc7-4e44-8efa-7d75f5a3c065,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25599,3d7e97ae-4fc7-4e44-8efa-7d75f5a3c065,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25594,775d6bd1-5d2a-448b-ba76-6b5917ca5b44,LIST_ACCOUNTS,hbciListAccounts,false +25595,775d6bd1-5d2a-448b-ba76-6b5917ca5b44,LIST_TRANSACTIONS,hbciListTransactions,false +25596,775d6bd1-5d2a-448b-ba76-6b5917ca5b44,AUTHORIZATION,,false +25597,775d6bd1-5d2a-448b-ba76-6b5917ca5b44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25598,775d6bd1-5d2a-448b-ba76-6b5917ca5b44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25599,775d6bd1-5d2a-448b-ba76-6b5917ca5b44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25600,0757c6c0-609e-4f78-a2b6-f5deff200233,LIST_ACCOUNTS,xs2aListAccounts,true -25601,0757c6c0-609e-4f78-a2b6-f5deff200233,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25601,0757c6c0-609e-4f78-a2b6-f5deff200233,LIST_TRANSACTIONS,xs2aListTransactions,true 25602,0757c6c0-609e-4f78-a2b6-f5deff200233,AUTHORIZATION,,true 25603,0757c6c0-609e-4f78-a2b6-f5deff200233,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25604,0757c6c0-609e-4f78-a2b6-f5deff200233,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25605,0757c6c0-609e-4f78-a2b6-f5deff200233,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25606,ac2c8398-9d7a-470e-a656-8b589487dc3c,LIST_ACCOUNTS,hbciListAccounts,false -25607,ac2c8398-9d7a-470e-a656-8b589487dc3c,LIST_TRANSACTIONS,hbciListTransactions,false -25608,ac2c8398-9d7a-470e-a656-8b589487dc3c,AUTHORIZATION,,false -25609,ac2c8398-9d7a-470e-a656-8b589487dc3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25610,ac2c8398-9d7a-470e-a656-8b589487dc3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25611,ac2c8398-9d7a-470e-a656-8b589487dc3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25606,8c564de5-21fd-48cf-8537-882c2f8b5bf5,LIST_ACCOUNTS,hbciListAccounts,false +25607,8c564de5-21fd-48cf-8537-882c2f8b5bf5,LIST_TRANSACTIONS,hbciListTransactions,false +25608,8c564de5-21fd-48cf-8537-882c2f8b5bf5,AUTHORIZATION,,false +25609,8c564de5-21fd-48cf-8537-882c2f8b5bf5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25610,8c564de5-21fd-48cf-8537-882c2f8b5bf5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25611,8c564de5-21fd-48cf-8537-882c2f8b5bf5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25612,8c604a76-6ac6-4e6a-b881-32c85e042862,LIST_ACCOUNTS,xs2aListAccounts,true -25613,8c604a76-6ac6-4e6a-b881-32c85e042862,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25613,8c604a76-6ac6-4e6a-b881-32c85e042862,LIST_TRANSACTIONS,xs2aListTransactions,true 25614,8c604a76-6ac6-4e6a-b881-32c85e042862,AUTHORIZATION,,true 25615,8c604a76-6ac6-4e6a-b881-32c85e042862,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25616,8c604a76-6ac6-4e6a-b881-32c85e042862,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25617,8c604a76-6ac6-4e6a-b881-32c85e042862,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25618,db34cbb1-e841-4fb4-9b5e-9484cb6cf649,LIST_ACCOUNTS,hbciListAccounts,false -25619,db34cbb1-e841-4fb4-9b5e-9484cb6cf649,LIST_TRANSACTIONS,hbciListTransactions,false -25620,db34cbb1-e841-4fb4-9b5e-9484cb6cf649,AUTHORIZATION,,false -25621,db34cbb1-e841-4fb4-9b5e-9484cb6cf649,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25622,db34cbb1-e841-4fb4-9b5e-9484cb6cf649,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25623,db34cbb1-e841-4fb4-9b5e-9484cb6cf649,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25618,2afbb5ce-2a50-47b3-976e-a255971ade80,LIST_ACCOUNTS,hbciListAccounts,false +25619,2afbb5ce-2a50-47b3-976e-a255971ade80,LIST_TRANSACTIONS,hbciListTransactions,false +25620,2afbb5ce-2a50-47b3-976e-a255971ade80,AUTHORIZATION,,false +25621,2afbb5ce-2a50-47b3-976e-a255971ade80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25622,2afbb5ce-2a50-47b3-976e-a255971ade80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25623,2afbb5ce-2a50-47b3-976e-a255971ade80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25624,fdfc6a0a-a804-431c-976e-67568644ac5f,LIST_ACCOUNTS,xs2aListAccounts,true -25625,fdfc6a0a-a804-431c-976e-67568644ac5f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25625,fdfc6a0a-a804-431c-976e-67568644ac5f,LIST_TRANSACTIONS,xs2aListTransactions,true 25626,fdfc6a0a-a804-431c-976e-67568644ac5f,AUTHORIZATION,,true 25627,fdfc6a0a-a804-431c-976e-67568644ac5f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25628,fdfc6a0a-a804-431c-976e-67568644ac5f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25629,fdfc6a0a-a804-431c-976e-67568644ac5f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25630,475381b5-6331-4eb3-a6cf-5bad76415255,LIST_ACCOUNTS,hbciListAccounts,false -25631,475381b5-6331-4eb3-a6cf-5bad76415255,LIST_TRANSACTIONS,hbciListTransactions,false -25632,475381b5-6331-4eb3-a6cf-5bad76415255,AUTHORIZATION,,false -25633,475381b5-6331-4eb3-a6cf-5bad76415255,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25634,475381b5-6331-4eb3-a6cf-5bad76415255,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25635,475381b5-6331-4eb3-a6cf-5bad76415255,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25630,17318f8d-cb19-4584-a624-6303bc7c702e,LIST_ACCOUNTS,hbciListAccounts,false +25631,17318f8d-cb19-4584-a624-6303bc7c702e,LIST_TRANSACTIONS,hbciListTransactions,false +25632,17318f8d-cb19-4584-a624-6303bc7c702e,AUTHORIZATION,,false +25633,17318f8d-cb19-4584-a624-6303bc7c702e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25634,17318f8d-cb19-4584-a624-6303bc7c702e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25635,17318f8d-cb19-4584-a624-6303bc7c702e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25636,1e46d204-9c62-4420-8fc2-3e7223d3474b,LIST_ACCOUNTS,xs2aListAccounts,true -25637,1e46d204-9c62-4420-8fc2-3e7223d3474b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25637,1e46d204-9c62-4420-8fc2-3e7223d3474b,LIST_TRANSACTIONS,xs2aListTransactions,true 25638,1e46d204-9c62-4420-8fc2-3e7223d3474b,AUTHORIZATION,,true 25639,1e46d204-9c62-4420-8fc2-3e7223d3474b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25640,1e46d204-9c62-4420-8fc2-3e7223d3474b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25641,1e46d204-9c62-4420-8fc2-3e7223d3474b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25642,ed676c03-54d4-4fbc-9d04-423c250190a5,LIST_ACCOUNTS,hbciListAccounts,false -25643,ed676c03-54d4-4fbc-9d04-423c250190a5,LIST_TRANSACTIONS,hbciListTransactions,false -25644,ed676c03-54d4-4fbc-9d04-423c250190a5,AUTHORIZATION,,false -25645,ed676c03-54d4-4fbc-9d04-423c250190a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25646,ed676c03-54d4-4fbc-9d04-423c250190a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25647,ed676c03-54d4-4fbc-9d04-423c250190a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25642,0f909939-ef4a-4fd9-b30f-06399a03599c,LIST_ACCOUNTS,hbciListAccounts,false +25643,0f909939-ef4a-4fd9-b30f-06399a03599c,LIST_TRANSACTIONS,hbciListTransactions,false +25644,0f909939-ef4a-4fd9-b30f-06399a03599c,AUTHORIZATION,,false +25645,0f909939-ef4a-4fd9-b30f-06399a03599c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25646,0f909939-ef4a-4fd9-b30f-06399a03599c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25647,0f909939-ef4a-4fd9-b30f-06399a03599c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25648,0afb43b7-d1aa-4e21-9d56-4dc58e634791,LIST_ACCOUNTS,xs2aListAccounts,true -25649,0afb43b7-d1aa-4e21-9d56-4dc58e634791,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25649,0afb43b7-d1aa-4e21-9d56-4dc58e634791,LIST_TRANSACTIONS,xs2aListTransactions,true 25650,0afb43b7-d1aa-4e21-9d56-4dc58e634791,AUTHORIZATION,,true 25651,0afb43b7-d1aa-4e21-9d56-4dc58e634791,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25652,0afb43b7-d1aa-4e21-9d56-4dc58e634791,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25653,0afb43b7-d1aa-4e21-9d56-4dc58e634791,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25654,032fad76-a196-4e66-8589-4eba319b1f58,LIST_ACCOUNTS,hbciListAccounts,false -25655,032fad76-a196-4e66-8589-4eba319b1f58,LIST_TRANSACTIONS,hbciListTransactions,false -25656,032fad76-a196-4e66-8589-4eba319b1f58,AUTHORIZATION,,false -25657,032fad76-a196-4e66-8589-4eba319b1f58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25658,032fad76-a196-4e66-8589-4eba319b1f58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25659,032fad76-a196-4e66-8589-4eba319b1f58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25654,9601d843-9444-42c5-b5d4-fc705cb699e2,LIST_ACCOUNTS,hbciListAccounts,false +25655,9601d843-9444-42c5-b5d4-fc705cb699e2,LIST_TRANSACTIONS,hbciListTransactions,false +25656,9601d843-9444-42c5-b5d4-fc705cb699e2,AUTHORIZATION,,false +25657,9601d843-9444-42c5-b5d4-fc705cb699e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25658,9601d843-9444-42c5-b5d4-fc705cb699e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25659,9601d843-9444-42c5-b5d4-fc705cb699e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25660,d68f69b2-87db-46e9-96c6-297921f9044c,LIST_ACCOUNTS,xs2aListAccounts,true -25661,d68f69b2-87db-46e9-96c6-297921f9044c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25661,d68f69b2-87db-46e9-96c6-297921f9044c,LIST_TRANSACTIONS,xs2aListTransactions,true 25662,d68f69b2-87db-46e9-96c6-297921f9044c,AUTHORIZATION,,true 25663,d68f69b2-87db-46e9-96c6-297921f9044c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25664,d68f69b2-87db-46e9-96c6-297921f9044c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25665,d68f69b2-87db-46e9-96c6-297921f9044c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25666,04a345c8-e53b-4ac2-b365-c63aba913620,LIST_ACCOUNTS,hbciListAccounts,false -25667,04a345c8-e53b-4ac2-b365-c63aba913620,LIST_TRANSACTIONS,hbciListTransactions,false -25668,04a345c8-e53b-4ac2-b365-c63aba913620,AUTHORIZATION,,false -25669,04a345c8-e53b-4ac2-b365-c63aba913620,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25670,04a345c8-e53b-4ac2-b365-c63aba913620,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25671,04a345c8-e53b-4ac2-b365-c63aba913620,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25666,c9689479-767b-4a3b-bee9-ec04393da84a,LIST_ACCOUNTS,hbciListAccounts,false +25667,c9689479-767b-4a3b-bee9-ec04393da84a,LIST_TRANSACTIONS,hbciListTransactions,false +25668,c9689479-767b-4a3b-bee9-ec04393da84a,AUTHORIZATION,,false +25669,c9689479-767b-4a3b-bee9-ec04393da84a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25670,c9689479-767b-4a3b-bee9-ec04393da84a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25671,c9689479-767b-4a3b-bee9-ec04393da84a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25672,f76802ed-51f3-448c-8714-bd2d6489dbf3,LIST_ACCOUNTS,xs2aListAccounts,true -25673,f76802ed-51f3-448c-8714-bd2d6489dbf3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25673,f76802ed-51f3-448c-8714-bd2d6489dbf3,LIST_TRANSACTIONS,xs2aListTransactions,true 25674,f76802ed-51f3-448c-8714-bd2d6489dbf3,AUTHORIZATION,,true 25675,f76802ed-51f3-448c-8714-bd2d6489dbf3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25676,f76802ed-51f3-448c-8714-bd2d6489dbf3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25677,f76802ed-51f3-448c-8714-bd2d6489dbf3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25678,cfb28b5e-55c8-4299-9d44-7114feca1c3b,LIST_ACCOUNTS,hbciListAccounts,false -25679,cfb28b5e-55c8-4299-9d44-7114feca1c3b,LIST_TRANSACTIONS,hbciListTransactions,false -25680,cfb28b5e-55c8-4299-9d44-7114feca1c3b,AUTHORIZATION,,false -25681,cfb28b5e-55c8-4299-9d44-7114feca1c3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25682,cfb28b5e-55c8-4299-9d44-7114feca1c3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25683,cfb28b5e-55c8-4299-9d44-7114feca1c3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25678,35f0792a-8c3b-4b81-8030-a22eef81df63,LIST_ACCOUNTS,hbciListAccounts,false +25679,35f0792a-8c3b-4b81-8030-a22eef81df63,LIST_TRANSACTIONS,hbciListTransactions,false +25680,35f0792a-8c3b-4b81-8030-a22eef81df63,AUTHORIZATION,,false +25681,35f0792a-8c3b-4b81-8030-a22eef81df63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25682,35f0792a-8c3b-4b81-8030-a22eef81df63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25683,35f0792a-8c3b-4b81-8030-a22eef81df63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25684,db2f577c-4412-4b0e-8bde-d3bb1bc83047,LIST_ACCOUNTS,xs2aListAccounts,true -25685,db2f577c-4412-4b0e-8bde-d3bb1bc83047,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25685,db2f577c-4412-4b0e-8bde-d3bb1bc83047,LIST_TRANSACTIONS,xs2aListTransactions,true 25686,db2f577c-4412-4b0e-8bde-d3bb1bc83047,AUTHORIZATION,,true 25687,db2f577c-4412-4b0e-8bde-d3bb1bc83047,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25688,db2f577c-4412-4b0e-8bde-d3bb1bc83047,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25689,db2f577c-4412-4b0e-8bde-d3bb1bc83047,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25690,259282d1-82e5-4968-a980-2c6bf53347e8,LIST_ACCOUNTS,hbciListAccounts,false -25691,259282d1-82e5-4968-a980-2c6bf53347e8,LIST_TRANSACTIONS,hbciListTransactions,false -25692,259282d1-82e5-4968-a980-2c6bf53347e8,AUTHORIZATION,,false -25693,259282d1-82e5-4968-a980-2c6bf53347e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25694,259282d1-82e5-4968-a980-2c6bf53347e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25695,259282d1-82e5-4968-a980-2c6bf53347e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25690,e8d4d3ac-d617-4778-bc5b-9a5883cdc495,LIST_ACCOUNTS,hbciListAccounts,false +25691,e8d4d3ac-d617-4778-bc5b-9a5883cdc495,LIST_TRANSACTIONS,hbciListTransactions,false +25692,e8d4d3ac-d617-4778-bc5b-9a5883cdc495,AUTHORIZATION,,false +25693,e8d4d3ac-d617-4778-bc5b-9a5883cdc495,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25694,e8d4d3ac-d617-4778-bc5b-9a5883cdc495,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25695,e8d4d3ac-d617-4778-bc5b-9a5883cdc495,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25696,54872d23-abfd-4806-9526-b85e18d91b34,LIST_ACCOUNTS,xs2aListAccounts,true -25697,54872d23-abfd-4806-9526-b85e18d91b34,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25697,54872d23-abfd-4806-9526-b85e18d91b34,LIST_TRANSACTIONS,xs2aListTransactions,true 25698,54872d23-abfd-4806-9526-b85e18d91b34,AUTHORIZATION,,true 25699,54872d23-abfd-4806-9526-b85e18d91b34,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25700,54872d23-abfd-4806-9526-b85e18d91b34,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25701,54872d23-abfd-4806-9526-b85e18d91b34,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25702,2a84ecc0-c486-423e-bf2b-dffd974b9dcb,LIST_ACCOUNTS,hbciListAccounts,false -25703,2a84ecc0-c486-423e-bf2b-dffd974b9dcb,LIST_TRANSACTIONS,hbciListTransactions,false -25704,2a84ecc0-c486-423e-bf2b-dffd974b9dcb,AUTHORIZATION,,false -25705,2a84ecc0-c486-423e-bf2b-dffd974b9dcb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25706,2a84ecc0-c486-423e-bf2b-dffd974b9dcb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25707,2a84ecc0-c486-423e-bf2b-dffd974b9dcb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25702,1a1fbe0d-f0a9-4f67-a588-7ab10ad90694,LIST_ACCOUNTS,hbciListAccounts,false +25703,1a1fbe0d-f0a9-4f67-a588-7ab10ad90694,LIST_TRANSACTIONS,hbciListTransactions,false +25704,1a1fbe0d-f0a9-4f67-a588-7ab10ad90694,AUTHORIZATION,,false +25705,1a1fbe0d-f0a9-4f67-a588-7ab10ad90694,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25706,1a1fbe0d-f0a9-4f67-a588-7ab10ad90694,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25707,1a1fbe0d-f0a9-4f67-a588-7ab10ad90694,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25708,762ca63e-84f2-42b7-a053-11208d616946,LIST_ACCOUNTS,xs2aListAccounts,true -25709,762ca63e-84f2-42b7-a053-11208d616946,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25709,762ca63e-84f2-42b7-a053-11208d616946,LIST_TRANSACTIONS,xs2aListTransactions,true 25710,762ca63e-84f2-42b7-a053-11208d616946,AUTHORIZATION,,true 25711,762ca63e-84f2-42b7-a053-11208d616946,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25712,762ca63e-84f2-42b7-a053-11208d616946,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25713,762ca63e-84f2-42b7-a053-11208d616946,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25714,95012b3d-989e-4cfd-9e65-266fefcde323,LIST_ACCOUNTS,hbciListAccounts,false -25715,95012b3d-989e-4cfd-9e65-266fefcde323,LIST_TRANSACTIONS,hbciListTransactions,false -25716,95012b3d-989e-4cfd-9e65-266fefcde323,AUTHORIZATION,,false -25717,95012b3d-989e-4cfd-9e65-266fefcde323,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25718,95012b3d-989e-4cfd-9e65-266fefcde323,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25719,95012b3d-989e-4cfd-9e65-266fefcde323,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25714,d0cec5f8-2255-4370-83f6-9fbd8552ed73,LIST_ACCOUNTS,hbciListAccounts,false +25715,d0cec5f8-2255-4370-83f6-9fbd8552ed73,LIST_TRANSACTIONS,hbciListTransactions,false +25716,d0cec5f8-2255-4370-83f6-9fbd8552ed73,AUTHORIZATION,,false +25717,d0cec5f8-2255-4370-83f6-9fbd8552ed73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25718,d0cec5f8-2255-4370-83f6-9fbd8552ed73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25719,d0cec5f8-2255-4370-83f6-9fbd8552ed73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25720,dea6d702-6bbb-4dbd-8386-5e3fc260f5e5,LIST_ACCOUNTS,xs2aListAccounts,true -25721,dea6d702-6bbb-4dbd-8386-5e3fc260f5e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25721,dea6d702-6bbb-4dbd-8386-5e3fc260f5e5,LIST_TRANSACTIONS,xs2aListTransactions,true 25722,dea6d702-6bbb-4dbd-8386-5e3fc260f5e5,AUTHORIZATION,,true 25723,dea6d702-6bbb-4dbd-8386-5e3fc260f5e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25724,dea6d702-6bbb-4dbd-8386-5e3fc260f5e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25725,dea6d702-6bbb-4dbd-8386-5e3fc260f5e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25726,66516d66-6104-4f46-9eea-cd04d368f8de,LIST_ACCOUNTS,hbciListAccounts,false -25727,66516d66-6104-4f46-9eea-cd04d368f8de,LIST_TRANSACTIONS,hbciListTransactions,false -25728,66516d66-6104-4f46-9eea-cd04d368f8de,AUTHORIZATION,,false -25729,66516d66-6104-4f46-9eea-cd04d368f8de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25730,66516d66-6104-4f46-9eea-cd04d368f8de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25731,66516d66-6104-4f46-9eea-cd04d368f8de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25726,ed53ef1b-c57d-42a3-aaae-8f203af15109,LIST_ACCOUNTS,hbciListAccounts,false +25727,ed53ef1b-c57d-42a3-aaae-8f203af15109,LIST_TRANSACTIONS,hbciListTransactions,false +25728,ed53ef1b-c57d-42a3-aaae-8f203af15109,AUTHORIZATION,,false +25729,ed53ef1b-c57d-42a3-aaae-8f203af15109,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25730,ed53ef1b-c57d-42a3-aaae-8f203af15109,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25731,ed53ef1b-c57d-42a3-aaae-8f203af15109,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25732,86056df4-0af4-4c65-abdc-fe7d99ea2e8a,LIST_ACCOUNTS,xs2aListAccounts,true -25733,86056df4-0af4-4c65-abdc-fe7d99ea2e8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25733,86056df4-0af4-4c65-abdc-fe7d99ea2e8a,LIST_TRANSACTIONS,xs2aListTransactions,true 25734,86056df4-0af4-4c65-abdc-fe7d99ea2e8a,AUTHORIZATION,,true 25735,86056df4-0af4-4c65-abdc-fe7d99ea2e8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25736,86056df4-0af4-4c65-abdc-fe7d99ea2e8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25737,86056df4-0af4-4c65-abdc-fe7d99ea2e8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25738,eb8b5425-0db6-4810-b4c5-e52ac10a1037,LIST_ACCOUNTS,hbciListAccounts,false -25739,eb8b5425-0db6-4810-b4c5-e52ac10a1037,LIST_TRANSACTIONS,hbciListTransactions,false -25740,eb8b5425-0db6-4810-b4c5-e52ac10a1037,AUTHORIZATION,,false -25741,eb8b5425-0db6-4810-b4c5-e52ac10a1037,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25742,eb8b5425-0db6-4810-b4c5-e52ac10a1037,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25743,eb8b5425-0db6-4810-b4c5-e52ac10a1037,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25738,06c45cb5-b780-4609-a42e-4f974f085e40,LIST_ACCOUNTS,hbciListAccounts,false +25739,06c45cb5-b780-4609-a42e-4f974f085e40,LIST_TRANSACTIONS,hbciListTransactions,false +25740,06c45cb5-b780-4609-a42e-4f974f085e40,AUTHORIZATION,,false +25741,06c45cb5-b780-4609-a42e-4f974f085e40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25742,06c45cb5-b780-4609-a42e-4f974f085e40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25743,06c45cb5-b780-4609-a42e-4f974f085e40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25744,3e65006d-7180-4de2-bd43-b2b8e6d4b51c,LIST_ACCOUNTS,xs2aListAccounts,true -25745,3e65006d-7180-4de2-bd43-b2b8e6d4b51c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25745,3e65006d-7180-4de2-bd43-b2b8e6d4b51c,LIST_TRANSACTIONS,xs2aListTransactions,true 25746,3e65006d-7180-4de2-bd43-b2b8e6d4b51c,AUTHORIZATION,,true 25747,3e65006d-7180-4de2-bd43-b2b8e6d4b51c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25748,3e65006d-7180-4de2-bd43-b2b8e6d4b51c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25749,3e65006d-7180-4de2-bd43-b2b8e6d4b51c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25750,3c98d9b5-6cd6-4b7f-901a-1786d2834d50,LIST_ACCOUNTS,hbciListAccounts,false -25751,3c98d9b5-6cd6-4b7f-901a-1786d2834d50,LIST_TRANSACTIONS,hbciListTransactions,false -25752,3c98d9b5-6cd6-4b7f-901a-1786d2834d50,AUTHORIZATION,,false -25753,3c98d9b5-6cd6-4b7f-901a-1786d2834d50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25754,3c98d9b5-6cd6-4b7f-901a-1786d2834d50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25755,3c98d9b5-6cd6-4b7f-901a-1786d2834d50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25750,b16b79bc-eb69-405b-b393-27e74159bb86,LIST_ACCOUNTS,hbciListAccounts,false +25751,b16b79bc-eb69-405b-b393-27e74159bb86,LIST_TRANSACTIONS,hbciListTransactions,false +25752,b16b79bc-eb69-405b-b393-27e74159bb86,AUTHORIZATION,,false +25753,b16b79bc-eb69-405b-b393-27e74159bb86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25754,b16b79bc-eb69-405b-b393-27e74159bb86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25755,b16b79bc-eb69-405b-b393-27e74159bb86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25756,380021fc-dcff-4ee0-97e5-4d45539fb075,LIST_ACCOUNTS,xs2aListAccounts,true -25757,380021fc-dcff-4ee0-97e5-4d45539fb075,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25757,380021fc-dcff-4ee0-97e5-4d45539fb075,LIST_TRANSACTIONS,xs2aListTransactions,true 25758,380021fc-dcff-4ee0-97e5-4d45539fb075,AUTHORIZATION,,true 25759,380021fc-dcff-4ee0-97e5-4d45539fb075,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25760,380021fc-dcff-4ee0-97e5-4d45539fb075,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25761,380021fc-dcff-4ee0-97e5-4d45539fb075,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25762,ce82896b-42fe-4f79-ba38-a4e71d03e209,LIST_ACCOUNTS,hbciListAccounts,false -25763,ce82896b-42fe-4f79-ba38-a4e71d03e209,LIST_TRANSACTIONS,hbciListTransactions,false -25764,ce82896b-42fe-4f79-ba38-a4e71d03e209,AUTHORIZATION,,false -25765,ce82896b-42fe-4f79-ba38-a4e71d03e209,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25766,ce82896b-42fe-4f79-ba38-a4e71d03e209,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25767,ce82896b-42fe-4f79-ba38-a4e71d03e209,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25762,7625505f-3118-4761-bcbc-5dc3219b9cd6,LIST_ACCOUNTS,hbciListAccounts,false +25763,7625505f-3118-4761-bcbc-5dc3219b9cd6,LIST_TRANSACTIONS,hbciListTransactions,false +25764,7625505f-3118-4761-bcbc-5dc3219b9cd6,AUTHORIZATION,,false +25765,7625505f-3118-4761-bcbc-5dc3219b9cd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25766,7625505f-3118-4761-bcbc-5dc3219b9cd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25767,7625505f-3118-4761-bcbc-5dc3219b9cd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25768,23ec4792-2394-4558-8248-463e7289e2a1,LIST_ACCOUNTS,xs2aListAccounts,true -25769,23ec4792-2394-4558-8248-463e7289e2a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25769,23ec4792-2394-4558-8248-463e7289e2a1,LIST_TRANSACTIONS,xs2aListTransactions,true 25770,23ec4792-2394-4558-8248-463e7289e2a1,AUTHORIZATION,,true 25771,23ec4792-2394-4558-8248-463e7289e2a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25772,23ec4792-2394-4558-8248-463e7289e2a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25773,23ec4792-2394-4558-8248-463e7289e2a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25774,07d6d2c3-9dcf-442d-80a2-137e8883fab4,LIST_ACCOUNTS,hbciListAccounts,false -25775,07d6d2c3-9dcf-442d-80a2-137e8883fab4,LIST_TRANSACTIONS,hbciListTransactions,false -25776,07d6d2c3-9dcf-442d-80a2-137e8883fab4,AUTHORIZATION,,false -25777,07d6d2c3-9dcf-442d-80a2-137e8883fab4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25778,07d6d2c3-9dcf-442d-80a2-137e8883fab4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25779,07d6d2c3-9dcf-442d-80a2-137e8883fab4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25774,7ba0ebce-f314-4b49-9667-08bdc49643c8,LIST_ACCOUNTS,hbciListAccounts,false +25775,7ba0ebce-f314-4b49-9667-08bdc49643c8,LIST_TRANSACTIONS,hbciListTransactions,false +25776,7ba0ebce-f314-4b49-9667-08bdc49643c8,AUTHORIZATION,,false +25777,7ba0ebce-f314-4b49-9667-08bdc49643c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25778,7ba0ebce-f314-4b49-9667-08bdc49643c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25779,7ba0ebce-f314-4b49-9667-08bdc49643c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25780,d780abc3-5851-4ee6-928d-bcffad6a818f,LIST_ACCOUNTS,xs2aListAccounts,true -25781,d780abc3-5851-4ee6-928d-bcffad6a818f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25781,d780abc3-5851-4ee6-928d-bcffad6a818f,LIST_TRANSACTIONS,xs2aListTransactions,true 25782,d780abc3-5851-4ee6-928d-bcffad6a818f,AUTHORIZATION,,true 25783,d780abc3-5851-4ee6-928d-bcffad6a818f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25784,d780abc3-5851-4ee6-928d-bcffad6a818f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25785,d780abc3-5851-4ee6-928d-bcffad6a818f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25786,36777829-f60b-4d29-93e7-5ece0692aa6e,LIST_ACCOUNTS,hbciListAccounts,false -25787,36777829-f60b-4d29-93e7-5ece0692aa6e,LIST_TRANSACTIONS,hbciListTransactions,false -25788,36777829-f60b-4d29-93e7-5ece0692aa6e,AUTHORIZATION,,false -25789,36777829-f60b-4d29-93e7-5ece0692aa6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25790,36777829-f60b-4d29-93e7-5ece0692aa6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25791,36777829-f60b-4d29-93e7-5ece0692aa6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25786,b2df9417-e482-41e8-abcc-9341710f4652,LIST_ACCOUNTS,hbciListAccounts,false +25787,b2df9417-e482-41e8-abcc-9341710f4652,LIST_TRANSACTIONS,hbciListTransactions,false +25788,b2df9417-e482-41e8-abcc-9341710f4652,AUTHORIZATION,,false +25789,b2df9417-e482-41e8-abcc-9341710f4652,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25790,b2df9417-e482-41e8-abcc-9341710f4652,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25791,b2df9417-e482-41e8-abcc-9341710f4652,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25792,bb979463-c2f4-4b67-ac74-f2097b5c4ddb,LIST_ACCOUNTS,xs2aListAccounts,true -25793,bb979463-c2f4-4b67-ac74-f2097b5c4ddb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25793,bb979463-c2f4-4b67-ac74-f2097b5c4ddb,LIST_TRANSACTIONS,xs2aListTransactions,true 25794,bb979463-c2f4-4b67-ac74-f2097b5c4ddb,AUTHORIZATION,,true 25795,bb979463-c2f4-4b67-ac74-f2097b5c4ddb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25796,bb979463-c2f4-4b67-ac74-f2097b5c4ddb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25797,bb979463-c2f4-4b67-ac74-f2097b5c4ddb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25798,85e37ec9-5077-4595-9570-2ea73a22953f,LIST_ACCOUNTS,hbciListAccounts,false -25799,85e37ec9-5077-4595-9570-2ea73a22953f,LIST_TRANSACTIONS,hbciListTransactions,false -25800,85e37ec9-5077-4595-9570-2ea73a22953f,AUTHORIZATION,,false -25801,85e37ec9-5077-4595-9570-2ea73a22953f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25802,85e37ec9-5077-4595-9570-2ea73a22953f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25803,85e37ec9-5077-4595-9570-2ea73a22953f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25798,ba4388e2-03a8-4e14-b921-8b7a8bfbae89,LIST_ACCOUNTS,hbciListAccounts,false +25799,ba4388e2-03a8-4e14-b921-8b7a8bfbae89,LIST_TRANSACTIONS,hbciListTransactions,false +25800,ba4388e2-03a8-4e14-b921-8b7a8bfbae89,AUTHORIZATION,,false +25801,ba4388e2-03a8-4e14-b921-8b7a8bfbae89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25802,ba4388e2-03a8-4e14-b921-8b7a8bfbae89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25803,ba4388e2-03a8-4e14-b921-8b7a8bfbae89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25804,f98817b0-e59f-48ce-a0d2-bde3dc9ed61b,LIST_ACCOUNTS,xs2aListAccounts,true -25805,f98817b0-e59f-48ce-a0d2-bde3dc9ed61b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25805,f98817b0-e59f-48ce-a0d2-bde3dc9ed61b,LIST_TRANSACTIONS,xs2aListTransactions,true 25806,f98817b0-e59f-48ce-a0d2-bde3dc9ed61b,AUTHORIZATION,,true 25807,f98817b0-e59f-48ce-a0d2-bde3dc9ed61b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25808,f98817b0-e59f-48ce-a0d2-bde3dc9ed61b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25809,f98817b0-e59f-48ce-a0d2-bde3dc9ed61b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25810,7cd9fb8b-f8f6-449b-9f07-72a64ffa368e,LIST_ACCOUNTS,hbciListAccounts,false -25811,7cd9fb8b-f8f6-449b-9f07-72a64ffa368e,LIST_TRANSACTIONS,hbciListTransactions,false -25812,7cd9fb8b-f8f6-449b-9f07-72a64ffa368e,AUTHORIZATION,,false -25813,7cd9fb8b-f8f6-449b-9f07-72a64ffa368e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25814,7cd9fb8b-f8f6-449b-9f07-72a64ffa368e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25815,7cd9fb8b-f8f6-449b-9f07-72a64ffa368e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25810,0cdec37c-9f09-4a5f-a80f-36f2a5359a8e,LIST_ACCOUNTS,hbciListAccounts,false +25811,0cdec37c-9f09-4a5f-a80f-36f2a5359a8e,LIST_TRANSACTIONS,hbciListTransactions,false +25812,0cdec37c-9f09-4a5f-a80f-36f2a5359a8e,AUTHORIZATION,,false +25813,0cdec37c-9f09-4a5f-a80f-36f2a5359a8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25814,0cdec37c-9f09-4a5f-a80f-36f2a5359a8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25815,0cdec37c-9f09-4a5f-a80f-36f2a5359a8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25816,6afbd5b7-311c-4dca-b034-d1f8d50cfd5e,LIST_ACCOUNTS,xs2aListAccounts,true -25817,6afbd5b7-311c-4dca-b034-d1f8d50cfd5e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25817,6afbd5b7-311c-4dca-b034-d1f8d50cfd5e,LIST_TRANSACTIONS,xs2aListTransactions,true 25818,6afbd5b7-311c-4dca-b034-d1f8d50cfd5e,AUTHORIZATION,,true 25819,6afbd5b7-311c-4dca-b034-d1f8d50cfd5e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25820,6afbd5b7-311c-4dca-b034-d1f8d50cfd5e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25821,6afbd5b7-311c-4dca-b034-d1f8d50cfd5e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25822,cd5b8336-8ff9-4447-85b8-2cd27b450e05,LIST_ACCOUNTS,hbciListAccounts,false -25823,cd5b8336-8ff9-4447-85b8-2cd27b450e05,LIST_TRANSACTIONS,hbciListTransactions,false -25824,cd5b8336-8ff9-4447-85b8-2cd27b450e05,AUTHORIZATION,,false -25825,cd5b8336-8ff9-4447-85b8-2cd27b450e05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25826,cd5b8336-8ff9-4447-85b8-2cd27b450e05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25827,cd5b8336-8ff9-4447-85b8-2cd27b450e05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25822,8dc26fac-afc4-451b-a1ac-e9b920783834,LIST_ACCOUNTS,hbciListAccounts,false +25823,8dc26fac-afc4-451b-a1ac-e9b920783834,LIST_TRANSACTIONS,hbciListTransactions,false +25824,8dc26fac-afc4-451b-a1ac-e9b920783834,AUTHORIZATION,,false +25825,8dc26fac-afc4-451b-a1ac-e9b920783834,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25826,8dc26fac-afc4-451b-a1ac-e9b920783834,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25827,8dc26fac-afc4-451b-a1ac-e9b920783834,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25828,0910f666-a817-4300-8999-b516a36fec1b,LIST_ACCOUNTS,xs2aListAccounts,true -25829,0910f666-a817-4300-8999-b516a36fec1b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25829,0910f666-a817-4300-8999-b516a36fec1b,LIST_TRANSACTIONS,xs2aListTransactions,true 25830,0910f666-a817-4300-8999-b516a36fec1b,AUTHORIZATION,,true 25831,0910f666-a817-4300-8999-b516a36fec1b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25832,0910f666-a817-4300-8999-b516a36fec1b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25833,0910f666-a817-4300-8999-b516a36fec1b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25834,e1fd54d4-0a00-479f-b2a9-3b0e8f150fc8,LIST_ACCOUNTS,hbciListAccounts,false -25835,e1fd54d4-0a00-479f-b2a9-3b0e8f150fc8,LIST_TRANSACTIONS,hbciListTransactions,false -25836,e1fd54d4-0a00-479f-b2a9-3b0e8f150fc8,AUTHORIZATION,,false -25837,e1fd54d4-0a00-479f-b2a9-3b0e8f150fc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25838,e1fd54d4-0a00-479f-b2a9-3b0e8f150fc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25839,e1fd54d4-0a00-479f-b2a9-3b0e8f150fc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25834,9e21a320-0a1f-411e-a5ab-286cfaa4dd66,LIST_ACCOUNTS,hbciListAccounts,false +25835,9e21a320-0a1f-411e-a5ab-286cfaa4dd66,LIST_TRANSACTIONS,hbciListTransactions,false +25836,9e21a320-0a1f-411e-a5ab-286cfaa4dd66,AUTHORIZATION,,false +25837,9e21a320-0a1f-411e-a5ab-286cfaa4dd66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25838,9e21a320-0a1f-411e-a5ab-286cfaa4dd66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25839,9e21a320-0a1f-411e-a5ab-286cfaa4dd66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25840,f17ee032-c791-4217-b416-d22f53984b77,LIST_ACCOUNTS,xs2aListAccounts,true -25841,f17ee032-c791-4217-b416-d22f53984b77,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25841,f17ee032-c791-4217-b416-d22f53984b77,LIST_TRANSACTIONS,xs2aListTransactions,true 25842,f17ee032-c791-4217-b416-d22f53984b77,AUTHORIZATION,,true 25843,f17ee032-c791-4217-b416-d22f53984b77,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25844,f17ee032-c791-4217-b416-d22f53984b77,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25845,f17ee032-c791-4217-b416-d22f53984b77,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25846,5682e50d-8c85-48b8-a2ea-b329ac3f8520,LIST_ACCOUNTS,hbciListAccounts,false -25847,5682e50d-8c85-48b8-a2ea-b329ac3f8520,LIST_TRANSACTIONS,hbciListTransactions,false -25848,5682e50d-8c85-48b8-a2ea-b329ac3f8520,AUTHORIZATION,,false -25849,5682e50d-8c85-48b8-a2ea-b329ac3f8520,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25850,5682e50d-8c85-48b8-a2ea-b329ac3f8520,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25851,5682e50d-8c85-48b8-a2ea-b329ac3f8520,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25846,c49630a6-b582-453f-8503-294afd81d0d6,LIST_ACCOUNTS,hbciListAccounts,false +25847,c49630a6-b582-453f-8503-294afd81d0d6,LIST_TRANSACTIONS,hbciListTransactions,false +25848,c49630a6-b582-453f-8503-294afd81d0d6,AUTHORIZATION,,false +25849,c49630a6-b582-453f-8503-294afd81d0d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25850,c49630a6-b582-453f-8503-294afd81d0d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25851,c49630a6-b582-453f-8503-294afd81d0d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25852,2d61fa4a-b22a-4ba3-a511-f207ce1e1585,LIST_ACCOUNTS,xs2aListAccounts,true -25853,2d61fa4a-b22a-4ba3-a511-f207ce1e1585,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25853,2d61fa4a-b22a-4ba3-a511-f207ce1e1585,LIST_TRANSACTIONS,xs2aListTransactions,true 25854,2d61fa4a-b22a-4ba3-a511-f207ce1e1585,AUTHORIZATION,,true 25855,2d61fa4a-b22a-4ba3-a511-f207ce1e1585,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25856,2d61fa4a-b22a-4ba3-a511-f207ce1e1585,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25857,2d61fa4a-b22a-4ba3-a511-f207ce1e1585,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25858,f6cecd07-c7eb-42a4-8f07-5dd59cb81f8b,LIST_ACCOUNTS,hbciListAccounts,false -25859,f6cecd07-c7eb-42a4-8f07-5dd59cb81f8b,LIST_TRANSACTIONS,hbciListTransactions,false -25860,f6cecd07-c7eb-42a4-8f07-5dd59cb81f8b,AUTHORIZATION,,false -25861,f6cecd07-c7eb-42a4-8f07-5dd59cb81f8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25862,f6cecd07-c7eb-42a4-8f07-5dd59cb81f8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25863,f6cecd07-c7eb-42a4-8f07-5dd59cb81f8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25858,854ae857-4486-4275-afe0-4318e1bbd3b1,LIST_ACCOUNTS,hbciListAccounts,false +25859,854ae857-4486-4275-afe0-4318e1bbd3b1,LIST_TRANSACTIONS,hbciListTransactions,false +25860,854ae857-4486-4275-afe0-4318e1bbd3b1,AUTHORIZATION,,false +25861,854ae857-4486-4275-afe0-4318e1bbd3b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25862,854ae857-4486-4275-afe0-4318e1bbd3b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25863,854ae857-4486-4275-afe0-4318e1bbd3b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25864,c9f72f0f-bf64-435f-900d-dc29999974d2,LIST_ACCOUNTS,xs2aListAccounts,true -25865,c9f72f0f-bf64-435f-900d-dc29999974d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25865,c9f72f0f-bf64-435f-900d-dc29999974d2,LIST_TRANSACTIONS,xs2aListTransactions,true 25866,c9f72f0f-bf64-435f-900d-dc29999974d2,AUTHORIZATION,,true 25867,c9f72f0f-bf64-435f-900d-dc29999974d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25868,c9f72f0f-bf64-435f-900d-dc29999974d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25869,c9f72f0f-bf64-435f-900d-dc29999974d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25870,444db6f7-7f14-4860-8443-29353b296670,LIST_ACCOUNTS,hbciListAccounts,false -25871,444db6f7-7f14-4860-8443-29353b296670,LIST_TRANSACTIONS,hbciListTransactions,false -25872,444db6f7-7f14-4860-8443-29353b296670,AUTHORIZATION,,false -25873,444db6f7-7f14-4860-8443-29353b296670,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25874,444db6f7-7f14-4860-8443-29353b296670,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25875,444db6f7-7f14-4860-8443-29353b296670,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25870,a9f7cb6a-2bac-4939-9a99-96b1c8205b36,LIST_ACCOUNTS,hbciListAccounts,false +25871,a9f7cb6a-2bac-4939-9a99-96b1c8205b36,LIST_TRANSACTIONS,hbciListTransactions,false +25872,a9f7cb6a-2bac-4939-9a99-96b1c8205b36,AUTHORIZATION,,false +25873,a9f7cb6a-2bac-4939-9a99-96b1c8205b36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25874,a9f7cb6a-2bac-4939-9a99-96b1c8205b36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25875,a9f7cb6a-2bac-4939-9a99-96b1c8205b36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25876,055598a9-a579-4a40-8af5-d422a05556c3,LIST_ACCOUNTS,xs2aListAccounts,true -25877,055598a9-a579-4a40-8af5-d422a05556c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25877,055598a9-a579-4a40-8af5-d422a05556c3,LIST_TRANSACTIONS,xs2aListTransactions,true 25878,055598a9-a579-4a40-8af5-d422a05556c3,AUTHORIZATION,,true 25879,055598a9-a579-4a40-8af5-d422a05556c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25880,055598a9-a579-4a40-8af5-d422a05556c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25881,055598a9-a579-4a40-8af5-d422a05556c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25882,4d04d499-9d0d-45da-be0c-e550b4452933,LIST_ACCOUNTS,hbciListAccounts,false -25883,4d04d499-9d0d-45da-be0c-e550b4452933,LIST_TRANSACTIONS,hbciListTransactions,false -25884,4d04d499-9d0d-45da-be0c-e550b4452933,AUTHORIZATION,,false -25885,4d04d499-9d0d-45da-be0c-e550b4452933,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25886,4d04d499-9d0d-45da-be0c-e550b4452933,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25887,4d04d499-9d0d-45da-be0c-e550b4452933,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25882,75881609-4f42-4756-9b73-60abe76cfcb4,LIST_ACCOUNTS,hbciListAccounts,false +25883,75881609-4f42-4756-9b73-60abe76cfcb4,LIST_TRANSACTIONS,hbciListTransactions,false +25884,75881609-4f42-4756-9b73-60abe76cfcb4,AUTHORIZATION,,false +25885,75881609-4f42-4756-9b73-60abe76cfcb4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25886,75881609-4f42-4756-9b73-60abe76cfcb4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25887,75881609-4f42-4756-9b73-60abe76cfcb4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25888,cd05245d-97d4-4f3c-b74b-dc1bd6a4fe23,LIST_ACCOUNTS,xs2aListAccounts,true -25889,cd05245d-97d4-4f3c-b74b-dc1bd6a4fe23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25889,cd05245d-97d4-4f3c-b74b-dc1bd6a4fe23,LIST_TRANSACTIONS,xs2aListTransactions,true 25890,cd05245d-97d4-4f3c-b74b-dc1bd6a4fe23,AUTHORIZATION,,true 25891,cd05245d-97d4-4f3c-b74b-dc1bd6a4fe23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25892,cd05245d-97d4-4f3c-b74b-dc1bd6a4fe23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25893,cd05245d-97d4-4f3c-b74b-dc1bd6a4fe23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25894,20c08f9d-90cf-4167-af2b-4abb1a477a33,LIST_ACCOUNTS,hbciListAccounts,false -25895,20c08f9d-90cf-4167-af2b-4abb1a477a33,LIST_TRANSACTIONS,hbciListTransactions,false -25896,20c08f9d-90cf-4167-af2b-4abb1a477a33,AUTHORIZATION,,false -25897,20c08f9d-90cf-4167-af2b-4abb1a477a33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25898,20c08f9d-90cf-4167-af2b-4abb1a477a33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25899,20c08f9d-90cf-4167-af2b-4abb1a477a33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25894,5e6247be-1002-4002-a397-15a2dcdaf1db,LIST_ACCOUNTS,hbciListAccounts,false +25895,5e6247be-1002-4002-a397-15a2dcdaf1db,LIST_TRANSACTIONS,hbciListTransactions,false +25896,5e6247be-1002-4002-a397-15a2dcdaf1db,AUTHORIZATION,,false +25897,5e6247be-1002-4002-a397-15a2dcdaf1db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25898,5e6247be-1002-4002-a397-15a2dcdaf1db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25899,5e6247be-1002-4002-a397-15a2dcdaf1db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25900,8e682cba-720e-400d-8cee-e62cbc1d1777,LIST_ACCOUNTS,xs2aListAccounts,true -25901,8e682cba-720e-400d-8cee-e62cbc1d1777,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25901,8e682cba-720e-400d-8cee-e62cbc1d1777,LIST_TRANSACTIONS,xs2aListTransactions,true 25902,8e682cba-720e-400d-8cee-e62cbc1d1777,AUTHORIZATION,,true 25903,8e682cba-720e-400d-8cee-e62cbc1d1777,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25904,8e682cba-720e-400d-8cee-e62cbc1d1777,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25905,8e682cba-720e-400d-8cee-e62cbc1d1777,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25906,75527e56-ac5c-42e2-b11a-bf90a1d58153,LIST_ACCOUNTS,hbciListAccounts,false -25907,75527e56-ac5c-42e2-b11a-bf90a1d58153,LIST_TRANSACTIONS,hbciListTransactions,false -25908,75527e56-ac5c-42e2-b11a-bf90a1d58153,AUTHORIZATION,,false -25909,75527e56-ac5c-42e2-b11a-bf90a1d58153,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25910,75527e56-ac5c-42e2-b11a-bf90a1d58153,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25911,75527e56-ac5c-42e2-b11a-bf90a1d58153,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25906,68247d7b-6808-4964-ba2d-9c82d79495d0,LIST_ACCOUNTS,hbciListAccounts,false +25907,68247d7b-6808-4964-ba2d-9c82d79495d0,LIST_TRANSACTIONS,hbciListTransactions,false +25908,68247d7b-6808-4964-ba2d-9c82d79495d0,AUTHORIZATION,,false +25909,68247d7b-6808-4964-ba2d-9c82d79495d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25910,68247d7b-6808-4964-ba2d-9c82d79495d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25911,68247d7b-6808-4964-ba2d-9c82d79495d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25912,f013bb83-8955-415b-98a0-627c0a2a4e95,LIST_ACCOUNTS,xs2aListAccounts,true -25913,f013bb83-8955-415b-98a0-627c0a2a4e95,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25913,f013bb83-8955-415b-98a0-627c0a2a4e95,LIST_TRANSACTIONS,xs2aListTransactions,true 25914,f013bb83-8955-415b-98a0-627c0a2a4e95,AUTHORIZATION,,true 25915,f013bb83-8955-415b-98a0-627c0a2a4e95,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25916,f013bb83-8955-415b-98a0-627c0a2a4e95,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25917,f013bb83-8955-415b-98a0-627c0a2a4e95,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25918,4ca01802-abf7-47a5-af38-d5d56da99b5e,LIST_ACCOUNTS,hbciListAccounts,false -25919,4ca01802-abf7-47a5-af38-d5d56da99b5e,LIST_TRANSACTIONS,hbciListTransactions,false -25920,4ca01802-abf7-47a5-af38-d5d56da99b5e,AUTHORIZATION,,false -25921,4ca01802-abf7-47a5-af38-d5d56da99b5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25922,4ca01802-abf7-47a5-af38-d5d56da99b5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25923,4ca01802-abf7-47a5-af38-d5d56da99b5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25918,b0ef5a0e-07c9-4a1b-8d0b-005488d9841e,LIST_ACCOUNTS,hbciListAccounts,false +25919,b0ef5a0e-07c9-4a1b-8d0b-005488d9841e,LIST_TRANSACTIONS,hbciListTransactions,false +25920,b0ef5a0e-07c9-4a1b-8d0b-005488d9841e,AUTHORIZATION,,false +25921,b0ef5a0e-07c9-4a1b-8d0b-005488d9841e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25922,b0ef5a0e-07c9-4a1b-8d0b-005488d9841e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25923,b0ef5a0e-07c9-4a1b-8d0b-005488d9841e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25924,df1f4b9c-17a5-46db-9a69-23ad1023fedf,LIST_ACCOUNTS,xs2aListAccounts,true -25925,df1f4b9c-17a5-46db-9a69-23ad1023fedf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25925,df1f4b9c-17a5-46db-9a69-23ad1023fedf,LIST_TRANSACTIONS,xs2aListTransactions,true 25926,df1f4b9c-17a5-46db-9a69-23ad1023fedf,AUTHORIZATION,,true 25927,df1f4b9c-17a5-46db-9a69-23ad1023fedf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25928,df1f4b9c-17a5-46db-9a69-23ad1023fedf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25929,df1f4b9c-17a5-46db-9a69-23ad1023fedf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25930,1352b1c5-0995-40b8-83bd-a495c9558c11,LIST_ACCOUNTS,hbciListAccounts,false -25931,1352b1c5-0995-40b8-83bd-a495c9558c11,LIST_TRANSACTIONS,hbciListTransactions,false -25932,1352b1c5-0995-40b8-83bd-a495c9558c11,AUTHORIZATION,,false -25933,1352b1c5-0995-40b8-83bd-a495c9558c11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25934,1352b1c5-0995-40b8-83bd-a495c9558c11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25935,1352b1c5-0995-40b8-83bd-a495c9558c11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25930,3d160ae8-6453-4cf3-b2d9-3d2241d1e038,LIST_ACCOUNTS,hbciListAccounts,false +25931,3d160ae8-6453-4cf3-b2d9-3d2241d1e038,LIST_TRANSACTIONS,hbciListTransactions,false +25932,3d160ae8-6453-4cf3-b2d9-3d2241d1e038,AUTHORIZATION,,false +25933,3d160ae8-6453-4cf3-b2d9-3d2241d1e038,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25934,3d160ae8-6453-4cf3-b2d9-3d2241d1e038,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25935,3d160ae8-6453-4cf3-b2d9-3d2241d1e038,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25936,3b27ac93-1093-4836-b6b9-6951f0dd3714,LIST_ACCOUNTS,xs2aListAccounts,true -25937,3b27ac93-1093-4836-b6b9-6951f0dd3714,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25937,3b27ac93-1093-4836-b6b9-6951f0dd3714,LIST_TRANSACTIONS,xs2aListTransactions,true 25938,3b27ac93-1093-4836-b6b9-6951f0dd3714,AUTHORIZATION,,true 25939,3b27ac93-1093-4836-b6b9-6951f0dd3714,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25940,3b27ac93-1093-4836-b6b9-6951f0dd3714,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25941,3b27ac93-1093-4836-b6b9-6951f0dd3714,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25942,5a611935-0e71-4a4d-87af-ce532cd8b06e,LIST_ACCOUNTS,hbciListAccounts,false -25943,5a611935-0e71-4a4d-87af-ce532cd8b06e,LIST_TRANSACTIONS,hbciListTransactions,false -25944,5a611935-0e71-4a4d-87af-ce532cd8b06e,AUTHORIZATION,,false -25945,5a611935-0e71-4a4d-87af-ce532cd8b06e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25946,5a611935-0e71-4a4d-87af-ce532cd8b06e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25947,5a611935-0e71-4a4d-87af-ce532cd8b06e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25942,aa6830f4-151c-418d-bd5f-c2f93929de2d,LIST_ACCOUNTS,hbciListAccounts,false +25943,aa6830f4-151c-418d-bd5f-c2f93929de2d,LIST_TRANSACTIONS,hbciListTransactions,false +25944,aa6830f4-151c-418d-bd5f-c2f93929de2d,AUTHORIZATION,,false +25945,aa6830f4-151c-418d-bd5f-c2f93929de2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25946,aa6830f4-151c-418d-bd5f-c2f93929de2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25947,aa6830f4-151c-418d-bd5f-c2f93929de2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25948,b357a2b1-16be-4805-ad95-bbfa672a8924,LIST_ACCOUNTS,xs2aListAccounts,true -25949,b357a2b1-16be-4805-ad95-bbfa672a8924,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25949,b357a2b1-16be-4805-ad95-bbfa672a8924,LIST_TRANSACTIONS,xs2aListTransactions,true 25950,b357a2b1-16be-4805-ad95-bbfa672a8924,AUTHORIZATION,,true 25951,b357a2b1-16be-4805-ad95-bbfa672a8924,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25952,b357a2b1-16be-4805-ad95-bbfa672a8924,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25953,b357a2b1-16be-4805-ad95-bbfa672a8924,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25954,3234ff28-54b1-49f4-8544-62a3ce232185,LIST_ACCOUNTS,hbciListAccounts,false -25955,3234ff28-54b1-49f4-8544-62a3ce232185,LIST_TRANSACTIONS,hbciListTransactions,false -25956,3234ff28-54b1-49f4-8544-62a3ce232185,AUTHORIZATION,,false -25957,3234ff28-54b1-49f4-8544-62a3ce232185,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25958,3234ff28-54b1-49f4-8544-62a3ce232185,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25959,3234ff28-54b1-49f4-8544-62a3ce232185,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25954,4807a296-cece-4a1e-aa92-c0c7120e6212,LIST_ACCOUNTS,hbciListAccounts,false +25955,4807a296-cece-4a1e-aa92-c0c7120e6212,LIST_TRANSACTIONS,hbciListTransactions,false +25956,4807a296-cece-4a1e-aa92-c0c7120e6212,AUTHORIZATION,,false +25957,4807a296-cece-4a1e-aa92-c0c7120e6212,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25958,4807a296-cece-4a1e-aa92-c0c7120e6212,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25959,4807a296-cece-4a1e-aa92-c0c7120e6212,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25960,7808f56d-f43b-4681-8889-50af31a44224,LIST_ACCOUNTS,xs2aListAccounts,true -25961,7808f56d-f43b-4681-8889-50af31a44224,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25961,7808f56d-f43b-4681-8889-50af31a44224,LIST_TRANSACTIONS,xs2aListTransactions,true 25962,7808f56d-f43b-4681-8889-50af31a44224,AUTHORIZATION,,true 25963,7808f56d-f43b-4681-8889-50af31a44224,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25964,7808f56d-f43b-4681-8889-50af31a44224,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25965,7808f56d-f43b-4681-8889-50af31a44224,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25966,9f68b307-9fd2-41c6-8881-22ccc53869e2,LIST_ACCOUNTS,hbciListAccounts,false -25967,9f68b307-9fd2-41c6-8881-22ccc53869e2,LIST_TRANSACTIONS,hbciListTransactions,false -25968,9f68b307-9fd2-41c6-8881-22ccc53869e2,AUTHORIZATION,,false -25969,9f68b307-9fd2-41c6-8881-22ccc53869e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25970,9f68b307-9fd2-41c6-8881-22ccc53869e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25971,9f68b307-9fd2-41c6-8881-22ccc53869e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25966,71a088be-f0a1-4d41-9c5c-dfce77a68352,LIST_ACCOUNTS,hbciListAccounts,false +25967,71a088be-f0a1-4d41-9c5c-dfce77a68352,LIST_TRANSACTIONS,hbciListTransactions,false +25968,71a088be-f0a1-4d41-9c5c-dfce77a68352,AUTHORIZATION,,false +25969,71a088be-f0a1-4d41-9c5c-dfce77a68352,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25970,71a088be-f0a1-4d41-9c5c-dfce77a68352,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25971,71a088be-f0a1-4d41-9c5c-dfce77a68352,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25972,9e312afc-10fa-401d-93b7-cd2348da9b27,LIST_ACCOUNTS,xs2aListAccounts,true -25973,9e312afc-10fa-401d-93b7-cd2348da9b27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25973,9e312afc-10fa-401d-93b7-cd2348da9b27,LIST_TRANSACTIONS,xs2aListTransactions,true 25974,9e312afc-10fa-401d-93b7-cd2348da9b27,AUTHORIZATION,,true 25975,9e312afc-10fa-401d-93b7-cd2348da9b27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25976,9e312afc-10fa-401d-93b7-cd2348da9b27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25977,9e312afc-10fa-401d-93b7-cd2348da9b27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25978,5e8a909b-4395-4cd6-ad21-80cfb6c23965,LIST_ACCOUNTS,hbciListAccounts,false -25979,5e8a909b-4395-4cd6-ad21-80cfb6c23965,LIST_TRANSACTIONS,hbciListTransactions,false -25980,5e8a909b-4395-4cd6-ad21-80cfb6c23965,AUTHORIZATION,,false -25981,5e8a909b-4395-4cd6-ad21-80cfb6c23965,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25982,5e8a909b-4395-4cd6-ad21-80cfb6c23965,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25983,5e8a909b-4395-4cd6-ad21-80cfb6c23965,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25978,31bd7021-1542-4738-ac31-0316bd6159f1,LIST_ACCOUNTS,hbciListAccounts,false +25979,31bd7021-1542-4738-ac31-0316bd6159f1,LIST_TRANSACTIONS,hbciListTransactions,false +25980,31bd7021-1542-4738-ac31-0316bd6159f1,AUTHORIZATION,,false +25981,31bd7021-1542-4738-ac31-0316bd6159f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25982,31bd7021-1542-4738-ac31-0316bd6159f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25983,31bd7021-1542-4738-ac31-0316bd6159f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25984,4ad734d5-35c8-4a87-9daa-9f2da06f6055,LIST_ACCOUNTS,xs2aListAccounts,true -25985,4ad734d5-35c8-4a87-9daa-9f2da06f6055,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25985,4ad734d5-35c8-4a87-9daa-9f2da06f6055,LIST_TRANSACTIONS,xs2aListTransactions,true 25986,4ad734d5-35c8-4a87-9daa-9f2da06f6055,AUTHORIZATION,,true 25987,4ad734d5-35c8-4a87-9daa-9f2da06f6055,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 25988,4ad734d5-35c8-4a87-9daa-9f2da06f6055,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 25989,4ad734d5-35c8-4a87-9daa-9f2da06f6055,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -25990,4c95b4a1-b44f-4ea1-b42b-a294b420e7ef,LIST_ACCOUNTS,hbciListAccounts,false -25991,4c95b4a1-b44f-4ea1-b42b-a294b420e7ef,LIST_TRANSACTIONS,hbciListTransactions,false -25992,4c95b4a1-b44f-4ea1-b42b-a294b420e7ef,AUTHORIZATION,,false -25993,4c95b4a1-b44f-4ea1-b42b-a294b420e7ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -25994,4c95b4a1-b44f-4ea1-b42b-a294b420e7ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -25995,4c95b4a1-b44f-4ea1-b42b-a294b420e7ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +25990,e29f1ef7-0070-4a27-a7f6-75904032cbfb,LIST_ACCOUNTS,hbciListAccounts,false +25991,e29f1ef7-0070-4a27-a7f6-75904032cbfb,LIST_TRANSACTIONS,hbciListTransactions,false +25992,e29f1ef7-0070-4a27-a7f6-75904032cbfb,AUTHORIZATION,,false +25993,e29f1ef7-0070-4a27-a7f6-75904032cbfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +25994,e29f1ef7-0070-4a27-a7f6-75904032cbfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +25995,e29f1ef7-0070-4a27-a7f6-75904032cbfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 25996,0c703e53-6c5c-4171-a797-27805829a27a,LIST_ACCOUNTS,xs2aListAccounts,true -25997,0c703e53-6c5c-4171-a797-27805829a27a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +25997,0c703e53-6c5c-4171-a797-27805829a27a,LIST_TRANSACTIONS,xs2aListTransactions,true 25998,0c703e53-6c5c-4171-a797-27805829a27a,AUTHORIZATION,,true 25999,0c703e53-6c5c-4171-a797-27805829a27a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26000,0c703e53-6c5c-4171-a797-27805829a27a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26001,0c703e53-6c5c-4171-a797-27805829a27a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26002,0746945c-9b06-4e85-a9da-23d93d739352,LIST_ACCOUNTS,hbciListAccounts,false -26003,0746945c-9b06-4e85-a9da-23d93d739352,LIST_TRANSACTIONS,hbciListTransactions,false -26004,0746945c-9b06-4e85-a9da-23d93d739352,AUTHORIZATION,,false -26005,0746945c-9b06-4e85-a9da-23d93d739352,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26006,0746945c-9b06-4e85-a9da-23d93d739352,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26007,0746945c-9b06-4e85-a9da-23d93d739352,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26002,d3d7c3b9-86c2-46db-a846-6a06cb015d90,LIST_ACCOUNTS,hbciListAccounts,false +26003,d3d7c3b9-86c2-46db-a846-6a06cb015d90,LIST_TRANSACTIONS,hbciListTransactions,false +26004,d3d7c3b9-86c2-46db-a846-6a06cb015d90,AUTHORIZATION,,false +26005,d3d7c3b9-86c2-46db-a846-6a06cb015d90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26006,d3d7c3b9-86c2-46db-a846-6a06cb015d90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26007,d3d7c3b9-86c2-46db-a846-6a06cb015d90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26008,b69223f8-f26c-4506-b49f-6e184587be93,LIST_ACCOUNTS,xs2aListAccounts,true -26009,b69223f8-f26c-4506-b49f-6e184587be93,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26009,b69223f8-f26c-4506-b49f-6e184587be93,LIST_TRANSACTIONS,xs2aListTransactions,true 26010,b69223f8-f26c-4506-b49f-6e184587be93,AUTHORIZATION,,true 26011,b69223f8-f26c-4506-b49f-6e184587be93,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26012,b69223f8-f26c-4506-b49f-6e184587be93,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26013,b69223f8-f26c-4506-b49f-6e184587be93,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26014,b65c7415-bb97-456c-b126-2941bc77ec2a,LIST_ACCOUNTS,hbciListAccounts,false -26015,b65c7415-bb97-456c-b126-2941bc77ec2a,LIST_TRANSACTIONS,hbciListTransactions,false -26016,b65c7415-bb97-456c-b126-2941bc77ec2a,AUTHORIZATION,,false -26017,b65c7415-bb97-456c-b126-2941bc77ec2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26018,b65c7415-bb97-456c-b126-2941bc77ec2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26019,b65c7415-bb97-456c-b126-2941bc77ec2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26014,738ca3d3-4a87-459a-be10-e29bd756be5b,LIST_ACCOUNTS,hbciListAccounts,false +26015,738ca3d3-4a87-459a-be10-e29bd756be5b,LIST_TRANSACTIONS,hbciListTransactions,false +26016,738ca3d3-4a87-459a-be10-e29bd756be5b,AUTHORIZATION,,false +26017,738ca3d3-4a87-459a-be10-e29bd756be5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26018,738ca3d3-4a87-459a-be10-e29bd756be5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26019,738ca3d3-4a87-459a-be10-e29bd756be5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26020,4eee00cd-840a-4d2e-86a8-be603bb9bb5e,LIST_ACCOUNTS,xs2aListAccounts,true -26021,4eee00cd-840a-4d2e-86a8-be603bb9bb5e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26021,4eee00cd-840a-4d2e-86a8-be603bb9bb5e,LIST_TRANSACTIONS,xs2aListTransactions,true 26022,4eee00cd-840a-4d2e-86a8-be603bb9bb5e,AUTHORIZATION,,true 26023,4eee00cd-840a-4d2e-86a8-be603bb9bb5e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26024,4eee00cd-840a-4d2e-86a8-be603bb9bb5e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26025,4eee00cd-840a-4d2e-86a8-be603bb9bb5e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26026,ff5d2c1a-7791-49e3-b1e7-bfdbdfafb1a3,LIST_ACCOUNTS,hbciListAccounts,false -26027,ff5d2c1a-7791-49e3-b1e7-bfdbdfafb1a3,LIST_TRANSACTIONS,hbciListTransactions,false -26028,ff5d2c1a-7791-49e3-b1e7-bfdbdfafb1a3,AUTHORIZATION,,false -26029,ff5d2c1a-7791-49e3-b1e7-bfdbdfafb1a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26030,ff5d2c1a-7791-49e3-b1e7-bfdbdfafb1a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26031,ff5d2c1a-7791-49e3-b1e7-bfdbdfafb1a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26026,9b37abff-33ea-4cff-a725-2cc5d13f57f3,LIST_ACCOUNTS,hbciListAccounts,false +26027,9b37abff-33ea-4cff-a725-2cc5d13f57f3,LIST_TRANSACTIONS,hbciListTransactions,false +26028,9b37abff-33ea-4cff-a725-2cc5d13f57f3,AUTHORIZATION,,false +26029,9b37abff-33ea-4cff-a725-2cc5d13f57f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26030,9b37abff-33ea-4cff-a725-2cc5d13f57f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26031,9b37abff-33ea-4cff-a725-2cc5d13f57f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26032,208d38f9-2535-4159-8446-f6848dc64a8b,LIST_ACCOUNTS,xs2aListAccounts,true -26033,208d38f9-2535-4159-8446-f6848dc64a8b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26033,208d38f9-2535-4159-8446-f6848dc64a8b,LIST_TRANSACTIONS,xs2aListTransactions,true 26034,208d38f9-2535-4159-8446-f6848dc64a8b,AUTHORIZATION,,true 26035,208d38f9-2535-4159-8446-f6848dc64a8b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26036,208d38f9-2535-4159-8446-f6848dc64a8b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26037,208d38f9-2535-4159-8446-f6848dc64a8b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26038,e7994a06-819f-48d0-b8ff-c68f78ee1a24,LIST_ACCOUNTS,hbciListAccounts,false -26039,e7994a06-819f-48d0-b8ff-c68f78ee1a24,LIST_TRANSACTIONS,hbciListTransactions,false -26040,e7994a06-819f-48d0-b8ff-c68f78ee1a24,AUTHORIZATION,,false -26041,e7994a06-819f-48d0-b8ff-c68f78ee1a24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26042,e7994a06-819f-48d0-b8ff-c68f78ee1a24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26043,e7994a06-819f-48d0-b8ff-c68f78ee1a24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26038,a7ebbed2-1c2a-490b-9432-23d7f383d8c9,LIST_ACCOUNTS,hbciListAccounts,false +26039,a7ebbed2-1c2a-490b-9432-23d7f383d8c9,LIST_TRANSACTIONS,hbciListTransactions,false +26040,a7ebbed2-1c2a-490b-9432-23d7f383d8c9,AUTHORIZATION,,false +26041,a7ebbed2-1c2a-490b-9432-23d7f383d8c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26042,a7ebbed2-1c2a-490b-9432-23d7f383d8c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26043,a7ebbed2-1c2a-490b-9432-23d7f383d8c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26044,850edbfe-2e08-4c2b-ab74-a1c2152e1578,LIST_ACCOUNTS,xs2aListAccounts,true -26045,850edbfe-2e08-4c2b-ab74-a1c2152e1578,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26045,850edbfe-2e08-4c2b-ab74-a1c2152e1578,LIST_TRANSACTIONS,xs2aListTransactions,true 26046,850edbfe-2e08-4c2b-ab74-a1c2152e1578,AUTHORIZATION,,true 26047,850edbfe-2e08-4c2b-ab74-a1c2152e1578,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26048,850edbfe-2e08-4c2b-ab74-a1c2152e1578,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26049,850edbfe-2e08-4c2b-ab74-a1c2152e1578,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26050,92259b65-f827-4c66-b657-f36eacb481e6,LIST_ACCOUNTS,hbciListAccounts,false -26051,92259b65-f827-4c66-b657-f36eacb481e6,LIST_TRANSACTIONS,hbciListTransactions,false -26052,92259b65-f827-4c66-b657-f36eacb481e6,AUTHORIZATION,,false -26053,92259b65-f827-4c66-b657-f36eacb481e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26054,92259b65-f827-4c66-b657-f36eacb481e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26055,92259b65-f827-4c66-b657-f36eacb481e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26050,7a805cd3-67da-4f3a-8ac6-617ce85245bb,LIST_ACCOUNTS,hbciListAccounts,false +26051,7a805cd3-67da-4f3a-8ac6-617ce85245bb,LIST_TRANSACTIONS,hbciListTransactions,false +26052,7a805cd3-67da-4f3a-8ac6-617ce85245bb,AUTHORIZATION,,false +26053,7a805cd3-67da-4f3a-8ac6-617ce85245bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26054,7a805cd3-67da-4f3a-8ac6-617ce85245bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26055,7a805cd3-67da-4f3a-8ac6-617ce85245bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26056,d124498d-60c3-4881-a1ef-9613bc05e0f8,LIST_ACCOUNTS,xs2aListAccounts,true -26057,d124498d-60c3-4881-a1ef-9613bc05e0f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26057,d124498d-60c3-4881-a1ef-9613bc05e0f8,LIST_TRANSACTIONS,xs2aListTransactions,true 26058,d124498d-60c3-4881-a1ef-9613bc05e0f8,AUTHORIZATION,,true 26059,d124498d-60c3-4881-a1ef-9613bc05e0f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26060,d124498d-60c3-4881-a1ef-9613bc05e0f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26061,d124498d-60c3-4881-a1ef-9613bc05e0f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26062,814bcda6-cb97-4359-8460-03178c783809,LIST_ACCOUNTS,hbciListAccounts,false -26063,814bcda6-cb97-4359-8460-03178c783809,LIST_TRANSACTIONS,hbciListTransactions,false -26064,814bcda6-cb97-4359-8460-03178c783809,AUTHORIZATION,,false -26065,814bcda6-cb97-4359-8460-03178c783809,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26066,814bcda6-cb97-4359-8460-03178c783809,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26067,814bcda6-cb97-4359-8460-03178c783809,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26062,0eea59eb-0a8b-459f-b800-7c028eec7745,LIST_ACCOUNTS,hbciListAccounts,false +26063,0eea59eb-0a8b-459f-b800-7c028eec7745,LIST_TRANSACTIONS,hbciListTransactions,false +26064,0eea59eb-0a8b-459f-b800-7c028eec7745,AUTHORIZATION,,false +26065,0eea59eb-0a8b-459f-b800-7c028eec7745,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26066,0eea59eb-0a8b-459f-b800-7c028eec7745,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26067,0eea59eb-0a8b-459f-b800-7c028eec7745,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26068,24696562-fcd3-4443-a2f6-81da142e933c,LIST_ACCOUNTS,xs2aListAccounts,true -26069,24696562-fcd3-4443-a2f6-81da142e933c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26069,24696562-fcd3-4443-a2f6-81da142e933c,LIST_TRANSACTIONS,xs2aListTransactions,true 26070,24696562-fcd3-4443-a2f6-81da142e933c,AUTHORIZATION,,true 26071,24696562-fcd3-4443-a2f6-81da142e933c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26072,24696562-fcd3-4443-a2f6-81da142e933c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26073,24696562-fcd3-4443-a2f6-81da142e933c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26074,25ac15f0-a1dd-4a0e-9bd8-7e19da764091,LIST_ACCOUNTS,hbciListAccounts,false -26075,25ac15f0-a1dd-4a0e-9bd8-7e19da764091,LIST_TRANSACTIONS,hbciListTransactions,false -26076,25ac15f0-a1dd-4a0e-9bd8-7e19da764091,AUTHORIZATION,,false -26077,25ac15f0-a1dd-4a0e-9bd8-7e19da764091,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26078,25ac15f0-a1dd-4a0e-9bd8-7e19da764091,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26079,25ac15f0-a1dd-4a0e-9bd8-7e19da764091,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26074,c152dd76-915e-4061-a959-64c39b905dd3,LIST_ACCOUNTS,hbciListAccounts,false +26075,c152dd76-915e-4061-a959-64c39b905dd3,LIST_TRANSACTIONS,hbciListTransactions,false +26076,c152dd76-915e-4061-a959-64c39b905dd3,AUTHORIZATION,,false +26077,c152dd76-915e-4061-a959-64c39b905dd3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26078,c152dd76-915e-4061-a959-64c39b905dd3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26079,c152dd76-915e-4061-a959-64c39b905dd3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26080,777b0cc6-22b7-43aa-8703-682177fd8edb,LIST_ACCOUNTS,xs2aListAccounts,true -26081,777b0cc6-22b7-43aa-8703-682177fd8edb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26081,777b0cc6-22b7-43aa-8703-682177fd8edb,LIST_TRANSACTIONS,xs2aListTransactions,true 26082,777b0cc6-22b7-43aa-8703-682177fd8edb,AUTHORIZATION,,true 26083,777b0cc6-22b7-43aa-8703-682177fd8edb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26084,777b0cc6-22b7-43aa-8703-682177fd8edb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26085,777b0cc6-22b7-43aa-8703-682177fd8edb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26086,5d4dec34-9c42-4e6d-938c-1ff281662748,LIST_ACCOUNTS,hbciListAccounts,false -26087,5d4dec34-9c42-4e6d-938c-1ff281662748,LIST_TRANSACTIONS,hbciListTransactions,false -26088,5d4dec34-9c42-4e6d-938c-1ff281662748,AUTHORIZATION,,false -26089,5d4dec34-9c42-4e6d-938c-1ff281662748,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26090,5d4dec34-9c42-4e6d-938c-1ff281662748,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26091,5d4dec34-9c42-4e6d-938c-1ff281662748,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26086,f4930ce6-d69d-4af8-a122-8160ad236c99,LIST_ACCOUNTS,hbciListAccounts,false +26087,f4930ce6-d69d-4af8-a122-8160ad236c99,LIST_TRANSACTIONS,hbciListTransactions,false +26088,f4930ce6-d69d-4af8-a122-8160ad236c99,AUTHORIZATION,,false +26089,f4930ce6-d69d-4af8-a122-8160ad236c99,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26090,f4930ce6-d69d-4af8-a122-8160ad236c99,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26091,f4930ce6-d69d-4af8-a122-8160ad236c99,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26092,95e4d2f8-26c3-4de7-927c-9eb7c84ab779,LIST_ACCOUNTS,xs2aListAccounts,true -26093,95e4d2f8-26c3-4de7-927c-9eb7c84ab779,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26093,95e4d2f8-26c3-4de7-927c-9eb7c84ab779,LIST_TRANSACTIONS,xs2aListTransactions,true 26094,95e4d2f8-26c3-4de7-927c-9eb7c84ab779,AUTHORIZATION,,true 26095,95e4d2f8-26c3-4de7-927c-9eb7c84ab779,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26096,95e4d2f8-26c3-4de7-927c-9eb7c84ab779,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26097,95e4d2f8-26c3-4de7-927c-9eb7c84ab779,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26098,475ebba9-8a5b-43a7-a3ad-21a3df370e1d,LIST_ACCOUNTS,hbciListAccounts,false -26099,475ebba9-8a5b-43a7-a3ad-21a3df370e1d,LIST_TRANSACTIONS,hbciListTransactions,false -26100,475ebba9-8a5b-43a7-a3ad-21a3df370e1d,AUTHORIZATION,,false -26101,475ebba9-8a5b-43a7-a3ad-21a3df370e1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26102,475ebba9-8a5b-43a7-a3ad-21a3df370e1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26103,475ebba9-8a5b-43a7-a3ad-21a3df370e1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26098,ab533282-b513-4ccd-9ada-438a44956d45,LIST_ACCOUNTS,hbciListAccounts,false +26099,ab533282-b513-4ccd-9ada-438a44956d45,LIST_TRANSACTIONS,hbciListTransactions,false +26100,ab533282-b513-4ccd-9ada-438a44956d45,AUTHORIZATION,,false +26101,ab533282-b513-4ccd-9ada-438a44956d45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26102,ab533282-b513-4ccd-9ada-438a44956d45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26103,ab533282-b513-4ccd-9ada-438a44956d45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26104,4cd93e01-0f1b-4eeb-8508-d70bbc1313af,LIST_ACCOUNTS,xs2aListAccounts,true -26105,4cd93e01-0f1b-4eeb-8508-d70bbc1313af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26105,4cd93e01-0f1b-4eeb-8508-d70bbc1313af,LIST_TRANSACTIONS,xs2aListTransactions,true 26106,4cd93e01-0f1b-4eeb-8508-d70bbc1313af,AUTHORIZATION,,true 26107,4cd93e01-0f1b-4eeb-8508-d70bbc1313af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26108,4cd93e01-0f1b-4eeb-8508-d70bbc1313af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26109,4cd93e01-0f1b-4eeb-8508-d70bbc1313af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26110,b2745599-8dc0-4080-997c-38fbdd4393ae,LIST_ACCOUNTS,hbciListAccounts,false -26111,b2745599-8dc0-4080-997c-38fbdd4393ae,LIST_TRANSACTIONS,hbciListTransactions,false -26112,b2745599-8dc0-4080-997c-38fbdd4393ae,AUTHORIZATION,,false -26113,b2745599-8dc0-4080-997c-38fbdd4393ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26114,b2745599-8dc0-4080-997c-38fbdd4393ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26115,b2745599-8dc0-4080-997c-38fbdd4393ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26110,c0d7dc02-64ac-4c74-a976-65f4eb823536,LIST_ACCOUNTS,hbciListAccounts,false +26111,c0d7dc02-64ac-4c74-a976-65f4eb823536,LIST_TRANSACTIONS,hbciListTransactions,false +26112,c0d7dc02-64ac-4c74-a976-65f4eb823536,AUTHORIZATION,,false +26113,c0d7dc02-64ac-4c74-a976-65f4eb823536,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26114,c0d7dc02-64ac-4c74-a976-65f4eb823536,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26115,c0d7dc02-64ac-4c74-a976-65f4eb823536,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26116,ae82d201-3fc3-4a6a-8f0c-0d9552afe365,LIST_ACCOUNTS,xs2aListAccounts,true -26117,ae82d201-3fc3-4a6a-8f0c-0d9552afe365,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26117,ae82d201-3fc3-4a6a-8f0c-0d9552afe365,LIST_TRANSACTIONS,xs2aListTransactions,true 26118,ae82d201-3fc3-4a6a-8f0c-0d9552afe365,AUTHORIZATION,,true 26119,ae82d201-3fc3-4a6a-8f0c-0d9552afe365,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26120,ae82d201-3fc3-4a6a-8f0c-0d9552afe365,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26121,ae82d201-3fc3-4a6a-8f0c-0d9552afe365,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26122,847d64a8-fb55-4323-a495-c0a71ce8207e,LIST_ACCOUNTS,hbciListAccounts,false -26123,847d64a8-fb55-4323-a495-c0a71ce8207e,LIST_TRANSACTIONS,hbciListTransactions,false -26124,847d64a8-fb55-4323-a495-c0a71ce8207e,AUTHORIZATION,,false -26125,847d64a8-fb55-4323-a495-c0a71ce8207e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26126,847d64a8-fb55-4323-a495-c0a71ce8207e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26127,847d64a8-fb55-4323-a495-c0a71ce8207e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26122,146c1cf4-29d9-46ae-86da-e9264c813b6e,LIST_ACCOUNTS,hbciListAccounts,false +26123,146c1cf4-29d9-46ae-86da-e9264c813b6e,LIST_TRANSACTIONS,hbciListTransactions,false +26124,146c1cf4-29d9-46ae-86da-e9264c813b6e,AUTHORIZATION,,false +26125,146c1cf4-29d9-46ae-86da-e9264c813b6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26126,146c1cf4-29d9-46ae-86da-e9264c813b6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26127,146c1cf4-29d9-46ae-86da-e9264c813b6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26128,9b3fc24b-cbf9-4ae8-b3f0-423371d718b4,LIST_ACCOUNTS,xs2aListAccounts,true -26129,9b3fc24b-cbf9-4ae8-b3f0-423371d718b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26129,9b3fc24b-cbf9-4ae8-b3f0-423371d718b4,LIST_TRANSACTIONS,xs2aListTransactions,true 26130,9b3fc24b-cbf9-4ae8-b3f0-423371d718b4,AUTHORIZATION,,true 26131,9b3fc24b-cbf9-4ae8-b3f0-423371d718b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26132,9b3fc24b-cbf9-4ae8-b3f0-423371d718b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26133,9b3fc24b-cbf9-4ae8-b3f0-423371d718b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26134,1eb73455-f11f-41ce-9084-52c49b237934,LIST_ACCOUNTS,hbciListAccounts,false -26135,1eb73455-f11f-41ce-9084-52c49b237934,LIST_TRANSACTIONS,hbciListTransactions,false -26136,1eb73455-f11f-41ce-9084-52c49b237934,AUTHORIZATION,,false -26137,1eb73455-f11f-41ce-9084-52c49b237934,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26138,1eb73455-f11f-41ce-9084-52c49b237934,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26139,1eb73455-f11f-41ce-9084-52c49b237934,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26134,d93a4586-7a5c-46b2-98a9-5d8fd1aa5158,LIST_ACCOUNTS,hbciListAccounts,false +26135,d93a4586-7a5c-46b2-98a9-5d8fd1aa5158,LIST_TRANSACTIONS,hbciListTransactions,false +26136,d93a4586-7a5c-46b2-98a9-5d8fd1aa5158,AUTHORIZATION,,false +26137,d93a4586-7a5c-46b2-98a9-5d8fd1aa5158,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26138,d93a4586-7a5c-46b2-98a9-5d8fd1aa5158,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26139,d93a4586-7a5c-46b2-98a9-5d8fd1aa5158,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26140,71983512-24a0-431f-865a-ff316ad0111a,LIST_ACCOUNTS,xs2aListAccounts,true -26141,71983512-24a0-431f-865a-ff316ad0111a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26141,71983512-24a0-431f-865a-ff316ad0111a,LIST_TRANSACTIONS,xs2aListTransactions,true 26142,71983512-24a0-431f-865a-ff316ad0111a,AUTHORIZATION,,true 26143,71983512-24a0-431f-865a-ff316ad0111a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26144,71983512-24a0-431f-865a-ff316ad0111a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26145,71983512-24a0-431f-865a-ff316ad0111a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26146,0f016023-9426-4db8-a0ec-a272a7a287e4,LIST_ACCOUNTS,hbciListAccounts,false -26147,0f016023-9426-4db8-a0ec-a272a7a287e4,LIST_TRANSACTIONS,hbciListTransactions,false -26148,0f016023-9426-4db8-a0ec-a272a7a287e4,AUTHORIZATION,,false -26149,0f016023-9426-4db8-a0ec-a272a7a287e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26150,0f016023-9426-4db8-a0ec-a272a7a287e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26151,0f016023-9426-4db8-a0ec-a272a7a287e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26146,a5e2d3e4-9a2c-4aaf-851c-1596c9d0db06,LIST_ACCOUNTS,hbciListAccounts,false +26147,a5e2d3e4-9a2c-4aaf-851c-1596c9d0db06,LIST_TRANSACTIONS,hbciListTransactions,false +26148,a5e2d3e4-9a2c-4aaf-851c-1596c9d0db06,AUTHORIZATION,,false +26149,a5e2d3e4-9a2c-4aaf-851c-1596c9d0db06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26150,a5e2d3e4-9a2c-4aaf-851c-1596c9d0db06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26151,a5e2d3e4-9a2c-4aaf-851c-1596c9d0db06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26152,2e978e59-6c5b-4d2d-9063-993bf4567626,LIST_ACCOUNTS,xs2aListAccounts,true -26153,2e978e59-6c5b-4d2d-9063-993bf4567626,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26153,2e978e59-6c5b-4d2d-9063-993bf4567626,LIST_TRANSACTIONS,xs2aListTransactions,true 26154,2e978e59-6c5b-4d2d-9063-993bf4567626,AUTHORIZATION,,true 26155,2e978e59-6c5b-4d2d-9063-993bf4567626,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26156,2e978e59-6c5b-4d2d-9063-993bf4567626,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26157,2e978e59-6c5b-4d2d-9063-993bf4567626,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26158,0e84736e-a0cd-4c20-bc4f-7d3c6ba7174c,LIST_ACCOUNTS,hbciListAccounts,false -26159,0e84736e-a0cd-4c20-bc4f-7d3c6ba7174c,LIST_TRANSACTIONS,hbciListTransactions,false -26160,0e84736e-a0cd-4c20-bc4f-7d3c6ba7174c,AUTHORIZATION,,false -26161,0e84736e-a0cd-4c20-bc4f-7d3c6ba7174c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26162,0e84736e-a0cd-4c20-bc4f-7d3c6ba7174c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26163,0e84736e-a0cd-4c20-bc4f-7d3c6ba7174c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26158,e0611aa3-5a9d-4250-97a1-e4c443e52d16,LIST_ACCOUNTS,hbciListAccounts,false +26159,e0611aa3-5a9d-4250-97a1-e4c443e52d16,LIST_TRANSACTIONS,hbciListTransactions,false +26160,e0611aa3-5a9d-4250-97a1-e4c443e52d16,AUTHORIZATION,,false +26161,e0611aa3-5a9d-4250-97a1-e4c443e52d16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26162,e0611aa3-5a9d-4250-97a1-e4c443e52d16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26163,e0611aa3-5a9d-4250-97a1-e4c443e52d16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26164,feba0418-f0a6-4a6c-a3fa-1a3e7b0bad74,LIST_ACCOUNTS,xs2aListAccounts,true -26165,feba0418-f0a6-4a6c-a3fa-1a3e7b0bad74,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26165,feba0418-f0a6-4a6c-a3fa-1a3e7b0bad74,LIST_TRANSACTIONS,xs2aListTransactions,true 26166,feba0418-f0a6-4a6c-a3fa-1a3e7b0bad74,AUTHORIZATION,,true 26167,feba0418-f0a6-4a6c-a3fa-1a3e7b0bad74,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26168,feba0418-f0a6-4a6c-a3fa-1a3e7b0bad74,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26169,feba0418-f0a6-4a6c-a3fa-1a3e7b0bad74,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26170,6bc9be07-8de3-449b-a954-6c2dce81c688,LIST_ACCOUNTS,hbciListAccounts,false -26171,6bc9be07-8de3-449b-a954-6c2dce81c688,LIST_TRANSACTIONS,hbciListTransactions,false -26172,6bc9be07-8de3-449b-a954-6c2dce81c688,AUTHORIZATION,,false -26173,6bc9be07-8de3-449b-a954-6c2dce81c688,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26174,6bc9be07-8de3-449b-a954-6c2dce81c688,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26175,6bc9be07-8de3-449b-a954-6c2dce81c688,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26170,c16341b9-2051-4a4a-8461-93c2bd120adb,LIST_ACCOUNTS,hbciListAccounts,false +26171,c16341b9-2051-4a4a-8461-93c2bd120adb,LIST_TRANSACTIONS,hbciListTransactions,false +26172,c16341b9-2051-4a4a-8461-93c2bd120adb,AUTHORIZATION,,false +26173,c16341b9-2051-4a4a-8461-93c2bd120adb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26174,c16341b9-2051-4a4a-8461-93c2bd120adb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26175,c16341b9-2051-4a4a-8461-93c2bd120adb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26176,88b9f209-5d03-4328-aa10-1e4405427d50,LIST_ACCOUNTS,xs2aListAccounts,true -26177,88b9f209-5d03-4328-aa10-1e4405427d50,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26177,88b9f209-5d03-4328-aa10-1e4405427d50,LIST_TRANSACTIONS,xs2aListTransactions,true 26178,88b9f209-5d03-4328-aa10-1e4405427d50,AUTHORIZATION,,true 26179,88b9f209-5d03-4328-aa10-1e4405427d50,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26180,88b9f209-5d03-4328-aa10-1e4405427d50,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26181,88b9f209-5d03-4328-aa10-1e4405427d50,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26182,7cf9c601-0d94-46c9-8383-a87a1f0e3851,LIST_ACCOUNTS,hbciListAccounts,false -26183,7cf9c601-0d94-46c9-8383-a87a1f0e3851,LIST_TRANSACTIONS,hbciListTransactions,false -26184,7cf9c601-0d94-46c9-8383-a87a1f0e3851,AUTHORIZATION,,false -26185,7cf9c601-0d94-46c9-8383-a87a1f0e3851,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26186,7cf9c601-0d94-46c9-8383-a87a1f0e3851,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26187,7cf9c601-0d94-46c9-8383-a87a1f0e3851,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26182,622d40d4-a69a-4900-99cd-014e120a284a,LIST_ACCOUNTS,hbciListAccounts,false +26183,622d40d4-a69a-4900-99cd-014e120a284a,LIST_TRANSACTIONS,hbciListTransactions,false +26184,622d40d4-a69a-4900-99cd-014e120a284a,AUTHORIZATION,,false +26185,622d40d4-a69a-4900-99cd-014e120a284a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26186,622d40d4-a69a-4900-99cd-014e120a284a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26187,622d40d4-a69a-4900-99cd-014e120a284a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26188,5a2d1685-41b6-40ba-b740-e10fb04e97d8,LIST_ACCOUNTS,xs2aListAccounts,true -26189,5a2d1685-41b6-40ba-b740-e10fb04e97d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26189,5a2d1685-41b6-40ba-b740-e10fb04e97d8,LIST_TRANSACTIONS,xs2aListTransactions,true 26190,5a2d1685-41b6-40ba-b740-e10fb04e97d8,AUTHORIZATION,,true 26191,5a2d1685-41b6-40ba-b740-e10fb04e97d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26192,5a2d1685-41b6-40ba-b740-e10fb04e97d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26193,5a2d1685-41b6-40ba-b740-e10fb04e97d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26194,309fb8f5-22f3-48c3-ae9b-222800edc337,LIST_ACCOUNTS,hbciListAccounts,false -26195,309fb8f5-22f3-48c3-ae9b-222800edc337,LIST_TRANSACTIONS,hbciListTransactions,false -26196,309fb8f5-22f3-48c3-ae9b-222800edc337,AUTHORIZATION,,false -26197,309fb8f5-22f3-48c3-ae9b-222800edc337,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26198,309fb8f5-22f3-48c3-ae9b-222800edc337,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26199,309fb8f5-22f3-48c3-ae9b-222800edc337,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26194,7dda7865-1d18-47a1-bbac-5c9e3acc6867,LIST_ACCOUNTS,hbciListAccounts,false +26195,7dda7865-1d18-47a1-bbac-5c9e3acc6867,LIST_TRANSACTIONS,hbciListTransactions,false +26196,7dda7865-1d18-47a1-bbac-5c9e3acc6867,AUTHORIZATION,,false +26197,7dda7865-1d18-47a1-bbac-5c9e3acc6867,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26198,7dda7865-1d18-47a1-bbac-5c9e3acc6867,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26199,7dda7865-1d18-47a1-bbac-5c9e3acc6867,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26200,8d505aea-e71f-4ce3-816b-ec9e5e1ac308,LIST_ACCOUNTS,xs2aListAccounts,true -26201,8d505aea-e71f-4ce3-816b-ec9e5e1ac308,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26201,8d505aea-e71f-4ce3-816b-ec9e5e1ac308,LIST_TRANSACTIONS,xs2aListTransactions,true 26202,8d505aea-e71f-4ce3-816b-ec9e5e1ac308,AUTHORIZATION,,true 26203,8d505aea-e71f-4ce3-816b-ec9e5e1ac308,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26204,8d505aea-e71f-4ce3-816b-ec9e5e1ac308,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26205,8d505aea-e71f-4ce3-816b-ec9e5e1ac308,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26206,26efe933-f0fe-48a0-be0e-e555d61087ac,LIST_ACCOUNTS,hbciListAccounts,false -26207,26efe933-f0fe-48a0-be0e-e555d61087ac,LIST_TRANSACTIONS,hbciListTransactions,false -26208,26efe933-f0fe-48a0-be0e-e555d61087ac,AUTHORIZATION,,false -26209,26efe933-f0fe-48a0-be0e-e555d61087ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26210,26efe933-f0fe-48a0-be0e-e555d61087ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26211,26efe933-f0fe-48a0-be0e-e555d61087ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26206,abe022c8-0c2a-4c3d-b286-4911cda2dc82,LIST_ACCOUNTS,hbciListAccounts,false +26207,abe022c8-0c2a-4c3d-b286-4911cda2dc82,LIST_TRANSACTIONS,hbciListTransactions,false +26208,abe022c8-0c2a-4c3d-b286-4911cda2dc82,AUTHORIZATION,,false +26209,abe022c8-0c2a-4c3d-b286-4911cda2dc82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26210,abe022c8-0c2a-4c3d-b286-4911cda2dc82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26211,abe022c8-0c2a-4c3d-b286-4911cda2dc82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26212,542c6d18-94e1-4b5d-9e7c-b6a711d3285c,LIST_ACCOUNTS,xs2aListAccounts,true -26213,542c6d18-94e1-4b5d-9e7c-b6a711d3285c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26213,542c6d18-94e1-4b5d-9e7c-b6a711d3285c,LIST_TRANSACTIONS,xs2aListTransactions,true 26214,542c6d18-94e1-4b5d-9e7c-b6a711d3285c,AUTHORIZATION,,true 26215,542c6d18-94e1-4b5d-9e7c-b6a711d3285c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26216,542c6d18-94e1-4b5d-9e7c-b6a711d3285c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26217,542c6d18-94e1-4b5d-9e7c-b6a711d3285c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26218,c96bb3ae-495a-487e-9e92-7d4bf24dc8cb,LIST_ACCOUNTS,hbciListAccounts,false -26219,c96bb3ae-495a-487e-9e92-7d4bf24dc8cb,LIST_TRANSACTIONS,hbciListTransactions,false -26220,c96bb3ae-495a-487e-9e92-7d4bf24dc8cb,AUTHORIZATION,,false -26221,c96bb3ae-495a-487e-9e92-7d4bf24dc8cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26222,c96bb3ae-495a-487e-9e92-7d4bf24dc8cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26223,c96bb3ae-495a-487e-9e92-7d4bf24dc8cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26218,ff7e3bcc-ffc8-4319-9b1e-dd1a3942b556,LIST_ACCOUNTS,hbciListAccounts,false +26219,ff7e3bcc-ffc8-4319-9b1e-dd1a3942b556,LIST_TRANSACTIONS,hbciListTransactions,false +26220,ff7e3bcc-ffc8-4319-9b1e-dd1a3942b556,AUTHORIZATION,,false +26221,ff7e3bcc-ffc8-4319-9b1e-dd1a3942b556,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26222,ff7e3bcc-ffc8-4319-9b1e-dd1a3942b556,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26223,ff7e3bcc-ffc8-4319-9b1e-dd1a3942b556,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26224,4ff42656-145b-483b-ac06-fd306a5e91e6,LIST_ACCOUNTS,xs2aListAccounts,true -26225,4ff42656-145b-483b-ac06-fd306a5e91e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26225,4ff42656-145b-483b-ac06-fd306a5e91e6,LIST_TRANSACTIONS,xs2aListTransactions,true 26226,4ff42656-145b-483b-ac06-fd306a5e91e6,AUTHORIZATION,,true 26227,4ff42656-145b-483b-ac06-fd306a5e91e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26228,4ff42656-145b-483b-ac06-fd306a5e91e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26229,4ff42656-145b-483b-ac06-fd306a5e91e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26230,a85d7d7b-9334-4248-9fce-1c87ca65730e,LIST_ACCOUNTS,hbciListAccounts,false -26231,a85d7d7b-9334-4248-9fce-1c87ca65730e,LIST_TRANSACTIONS,hbciListTransactions,false -26232,a85d7d7b-9334-4248-9fce-1c87ca65730e,AUTHORIZATION,,false -26233,a85d7d7b-9334-4248-9fce-1c87ca65730e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26234,a85d7d7b-9334-4248-9fce-1c87ca65730e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26235,a85d7d7b-9334-4248-9fce-1c87ca65730e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26230,dde0e604-909c-4bee-9fd9-5f9ad64c8b0c,LIST_ACCOUNTS,hbciListAccounts,false +26231,dde0e604-909c-4bee-9fd9-5f9ad64c8b0c,LIST_TRANSACTIONS,hbciListTransactions,false +26232,dde0e604-909c-4bee-9fd9-5f9ad64c8b0c,AUTHORIZATION,,false +26233,dde0e604-909c-4bee-9fd9-5f9ad64c8b0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26234,dde0e604-909c-4bee-9fd9-5f9ad64c8b0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26235,dde0e604-909c-4bee-9fd9-5f9ad64c8b0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26236,794be9ed-6c42-4683-afc9-a97fd3aff84c,LIST_ACCOUNTS,xs2aListAccounts,true -26237,794be9ed-6c42-4683-afc9-a97fd3aff84c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26237,794be9ed-6c42-4683-afc9-a97fd3aff84c,LIST_TRANSACTIONS,xs2aListTransactions,true 26238,794be9ed-6c42-4683-afc9-a97fd3aff84c,AUTHORIZATION,,true 26239,794be9ed-6c42-4683-afc9-a97fd3aff84c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26240,794be9ed-6c42-4683-afc9-a97fd3aff84c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26241,794be9ed-6c42-4683-afc9-a97fd3aff84c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26242,e6710513-f2e4-4e6b-a9c2-802a8a895b7b,LIST_ACCOUNTS,hbciListAccounts,false -26243,e6710513-f2e4-4e6b-a9c2-802a8a895b7b,LIST_TRANSACTIONS,hbciListTransactions,false -26244,e6710513-f2e4-4e6b-a9c2-802a8a895b7b,AUTHORIZATION,,false -26245,e6710513-f2e4-4e6b-a9c2-802a8a895b7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26246,e6710513-f2e4-4e6b-a9c2-802a8a895b7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26247,e6710513-f2e4-4e6b-a9c2-802a8a895b7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26242,ff1cbf33-81f4-403d-a4f0-b07192c00d93,LIST_ACCOUNTS,hbciListAccounts,false +26243,ff1cbf33-81f4-403d-a4f0-b07192c00d93,LIST_TRANSACTIONS,hbciListTransactions,false +26244,ff1cbf33-81f4-403d-a4f0-b07192c00d93,AUTHORIZATION,,false +26245,ff1cbf33-81f4-403d-a4f0-b07192c00d93,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26246,ff1cbf33-81f4-403d-a4f0-b07192c00d93,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26247,ff1cbf33-81f4-403d-a4f0-b07192c00d93,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26248,ee220f4f-5018-4e55-a1b3-d3760718ea79,LIST_ACCOUNTS,xs2aListAccounts,true -26249,ee220f4f-5018-4e55-a1b3-d3760718ea79,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26249,ee220f4f-5018-4e55-a1b3-d3760718ea79,LIST_TRANSACTIONS,xs2aListTransactions,true 26250,ee220f4f-5018-4e55-a1b3-d3760718ea79,AUTHORIZATION,,true 26251,ee220f4f-5018-4e55-a1b3-d3760718ea79,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26252,ee220f4f-5018-4e55-a1b3-d3760718ea79,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26253,ee220f4f-5018-4e55-a1b3-d3760718ea79,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26254,838c4a1b-e89c-4e6a-bac2-0b05748300bc,LIST_ACCOUNTS,hbciListAccounts,false -26255,838c4a1b-e89c-4e6a-bac2-0b05748300bc,LIST_TRANSACTIONS,hbciListTransactions,false -26256,838c4a1b-e89c-4e6a-bac2-0b05748300bc,AUTHORIZATION,,false -26257,838c4a1b-e89c-4e6a-bac2-0b05748300bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26258,838c4a1b-e89c-4e6a-bac2-0b05748300bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26259,838c4a1b-e89c-4e6a-bac2-0b05748300bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26254,162e138f-5df1-46c5-bcd7-27b949e1678e,LIST_ACCOUNTS,hbciListAccounts,false +26255,162e138f-5df1-46c5-bcd7-27b949e1678e,LIST_TRANSACTIONS,hbciListTransactions,false +26256,162e138f-5df1-46c5-bcd7-27b949e1678e,AUTHORIZATION,,false +26257,162e138f-5df1-46c5-bcd7-27b949e1678e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26258,162e138f-5df1-46c5-bcd7-27b949e1678e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26259,162e138f-5df1-46c5-bcd7-27b949e1678e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26260,c3f77ff6-4466-44f5-a5ee-5948bb7ab8a7,LIST_ACCOUNTS,xs2aListAccounts,true -26261,c3f77ff6-4466-44f5-a5ee-5948bb7ab8a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26261,c3f77ff6-4466-44f5-a5ee-5948bb7ab8a7,LIST_TRANSACTIONS,xs2aListTransactions,true 26262,c3f77ff6-4466-44f5-a5ee-5948bb7ab8a7,AUTHORIZATION,,true 26263,c3f77ff6-4466-44f5-a5ee-5948bb7ab8a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26264,c3f77ff6-4466-44f5-a5ee-5948bb7ab8a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26265,c3f77ff6-4466-44f5-a5ee-5948bb7ab8a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26266,42d76794-5644-4b72-adf0-1bc34426db68,LIST_ACCOUNTS,hbciListAccounts,false -26267,42d76794-5644-4b72-adf0-1bc34426db68,LIST_TRANSACTIONS,hbciListTransactions,false -26268,42d76794-5644-4b72-adf0-1bc34426db68,AUTHORIZATION,,false -26269,42d76794-5644-4b72-adf0-1bc34426db68,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26270,42d76794-5644-4b72-adf0-1bc34426db68,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26271,42d76794-5644-4b72-adf0-1bc34426db68,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26266,4d194e80-0cba-40f7-b718-32430a0de847,LIST_ACCOUNTS,hbciListAccounts,false +26267,4d194e80-0cba-40f7-b718-32430a0de847,LIST_TRANSACTIONS,hbciListTransactions,false +26268,4d194e80-0cba-40f7-b718-32430a0de847,AUTHORIZATION,,false +26269,4d194e80-0cba-40f7-b718-32430a0de847,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26270,4d194e80-0cba-40f7-b718-32430a0de847,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26271,4d194e80-0cba-40f7-b718-32430a0de847,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26272,68fb751a-8462-4ad1-8ce7-6fcb00ef2375,LIST_ACCOUNTS,xs2aListAccounts,true -26273,68fb751a-8462-4ad1-8ce7-6fcb00ef2375,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26273,68fb751a-8462-4ad1-8ce7-6fcb00ef2375,LIST_TRANSACTIONS,xs2aListTransactions,true 26274,68fb751a-8462-4ad1-8ce7-6fcb00ef2375,AUTHORIZATION,,true 26275,68fb751a-8462-4ad1-8ce7-6fcb00ef2375,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26276,68fb751a-8462-4ad1-8ce7-6fcb00ef2375,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26277,68fb751a-8462-4ad1-8ce7-6fcb00ef2375,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26278,eedd0720-16a1-4375-92f9-acafcd0345ad,LIST_ACCOUNTS,hbciListAccounts,false -26279,eedd0720-16a1-4375-92f9-acafcd0345ad,LIST_TRANSACTIONS,hbciListTransactions,false -26280,eedd0720-16a1-4375-92f9-acafcd0345ad,AUTHORIZATION,,false -26281,eedd0720-16a1-4375-92f9-acafcd0345ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26282,eedd0720-16a1-4375-92f9-acafcd0345ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26283,eedd0720-16a1-4375-92f9-acafcd0345ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26278,46c2e8b1-a7eb-4c65-87d1-019093de6f6c,LIST_ACCOUNTS,hbciListAccounts,false +26279,46c2e8b1-a7eb-4c65-87d1-019093de6f6c,LIST_TRANSACTIONS,hbciListTransactions,false +26280,46c2e8b1-a7eb-4c65-87d1-019093de6f6c,AUTHORIZATION,,false +26281,46c2e8b1-a7eb-4c65-87d1-019093de6f6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26282,46c2e8b1-a7eb-4c65-87d1-019093de6f6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26283,46c2e8b1-a7eb-4c65-87d1-019093de6f6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26284,c2ee4354-89d8-43fc-8a61-782ad300c48d,LIST_ACCOUNTS,xs2aListAccounts,true -26285,c2ee4354-89d8-43fc-8a61-782ad300c48d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26285,c2ee4354-89d8-43fc-8a61-782ad300c48d,LIST_TRANSACTIONS,xs2aListTransactions,true 26286,c2ee4354-89d8-43fc-8a61-782ad300c48d,AUTHORIZATION,,true 26287,c2ee4354-89d8-43fc-8a61-782ad300c48d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26288,c2ee4354-89d8-43fc-8a61-782ad300c48d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26289,c2ee4354-89d8-43fc-8a61-782ad300c48d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26290,0d251d93-679d-47f8-ac3a-9b997a6116c1,LIST_ACCOUNTS,hbciListAccounts,false -26291,0d251d93-679d-47f8-ac3a-9b997a6116c1,LIST_TRANSACTIONS,hbciListTransactions,false -26292,0d251d93-679d-47f8-ac3a-9b997a6116c1,AUTHORIZATION,,false -26293,0d251d93-679d-47f8-ac3a-9b997a6116c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26294,0d251d93-679d-47f8-ac3a-9b997a6116c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26295,0d251d93-679d-47f8-ac3a-9b997a6116c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26290,6bebca9b-fbcb-4784-900f-c5479fb2e4aa,LIST_ACCOUNTS,hbciListAccounts,false +26291,6bebca9b-fbcb-4784-900f-c5479fb2e4aa,LIST_TRANSACTIONS,hbciListTransactions,false +26292,6bebca9b-fbcb-4784-900f-c5479fb2e4aa,AUTHORIZATION,,false +26293,6bebca9b-fbcb-4784-900f-c5479fb2e4aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26294,6bebca9b-fbcb-4784-900f-c5479fb2e4aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26295,6bebca9b-fbcb-4784-900f-c5479fb2e4aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26296,6ab9ce63-3339-4df3-b749-9753024a200e,LIST_ACCOUNTS,xs2aListAccounts,true -26297,6ab9ce63-3339-4df3-b749-9753024a200e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26297,6ab9ce63-3339-4df3-b749-9753024a200e,LIST_TRANSACTIONS,xs2aListTransactions,true 26298,6ab9ce63-3339-4df3-b749-9753024a200e,AUTHORIZATION,,true 26299,6ab9ce63-3339-4df3-b749-9753024a200e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26300,6ab9ce63-3339-4df3-b749-9753024a200e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26301,6ab9ce63-3339-4df3-b749-9753024a200e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26302,f99d93ce-8adc-451c-a8b3-26dea2d3eb4e,LIST_ACCOUNTS,hbciListAccounts,false -26303,f99d93ce-8adc-451c-a8b3-26dea2d3eb4e,LIST_TRANSACTIONS,hbciListTransactions,false -26304,f99d93ce-8adc-451c-a8b3-26dea2d3eb4e,AUTHORIZATION,,false -26305,f99d93ce-8adc-451c-a8b3-26dea2d3eb4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26306,f99d93ce-8adc-451c-a8b3-26dea2d3eb4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26307,f99d93ce-8adc-451c-a8b3-26dea2d3eb4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26302,27119ce5-f06a-4d41-813a-9fad7c9c19eb,LIST_ACCOUNTS,hbciListAccounts,false +26303,27119ce5-f06a-4d41-813a-9fad7c9c19eb,LIST_TRANSACTIONS,hbciListTransactions,false +26304,27119ce5-f06a-4d41-813a-9fad7c9c19eb,AUTHORIZATION,,false +26305,27119ce5-f06a-4d41-813a-9fad7c9c19eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26306,27119ce5-f06a-4d41-813a-9fad7c9c19eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26307,27119ce5-f06a-4d41-813a-9fad7c9c19eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26308,f614fcd3-ec84-4f58-967d-abc2929e065d,LIST_ACCOUNTS,xs2aListAccounts,true -26309,f614fcd3-ec84-4f58-967d-abc2929e065d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26309,f614fcd3-ec84-4f58-967d-abc2929e065d,LIST_TRANSACTIONS,xs2aListTransactions,true 26310,f614fcd3-ec84-4f58-967d-abc2929e065d,AUTHORIZATION,,true 26311,f614fcd3-ec84-4f58-967d-abc2929e065d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26312,f614fcd3-ec84-4f58-967d-abc2929e065d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26313,f614fcd3-ec84-4f58-967d-abc2929e065d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26314,14d9742d-b021-451c-8a31-d34b351c0170,LIST_ACCOUNTS,hbciListAccounts,false -26315,14d9742d-b021-451c-8a31-d34b351c0170,LIST_TRANSACTIONS,hbciListTransactions,false -26316,14d9742d-b021-451c-8a31-d34b351c0170,AUTHORIZATION,,false -26317,14d9742d-b021-451c-8a31-d34b351c0170,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26318,14d9742d-b021-451c-8a31-d34b351c0170,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26319,14d9742d-b021-451c-8a31-d34b351c0170,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26314,4638ee42-f40f-4fc8-94bc-0fe2a06d5d51,LIST_ACCOUNTS,hbciListAccounts,false +26315,4638ee42-f40f-4fc8-94bc-0fe2a06d5d51,LIST_TRANSACTIONS,hbciListTransactions,false +26316,4638ee42-f40f-4fc8-94bc-0fe2a06d5d51,AUTHORIZATION,,false +26317,4638ee42-f40f-4fc8-94bc-0fe2a06d5d51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26318,4638ee42-f40f-4fc8-94bc-0fe2a06d5d51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26319,4638ee42-f40f-4fc8-94bc-0fe2a06d5d51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26320,74b17097-42b6-49f9-9a97-983b8606c655,LIST_ACCOUNTS,xs2aListAccounts,true -26321,74b17097-42b6-49f9-9a97-983b8606c655,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26321,74b17097-42b6-49f9-9a97-983b8606c655,LIST_TRANSACTIONS,xs2aListTransactions,true 26322,74b17097-42b6-49f9-9a97-983b8606c655,AUTHORIZATION,,true 26323,74b17097-42b6-49f9-9a97-983b8606c655,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26324,74b17097-42b6-49f9-9a97-983b8606c655,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26325,74b17097-42b6-49f9-9a97-983b8606c655,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26326,2de43a3f-d5df-4307-9f7c-95e5cc5146e8,LIST_ACCOUNTS,hbciListAccounts,false -26327,2de43a3f-d5df-4307-9f7c-95e5cc5146e8,LIST_TRANSACTIONS,hbciListTransactions,false -26328,2de43a3f-d5df-4307-9f7c-95e5cc5146e8,AUTHORIZATION,,false -26329,2de43a3f-d5df-4307-9f7c-95e5cc5146e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26330,2de43a3f-d5df-4307-9f7c-95e5cc5146e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26331,2de43a3f-d5df-4307-9f7c-95e5cc5146e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26326,a90b7c5b-0cdd-4352-b8cc-6a1dc160ba44,LIST_ACCOUNTS,hbciListAccounts,false +26327,a90b7c5b-0cdd-4352-b8cc-6a1dc160ba44,LIST_TRANSACTIONS,hbciListTransactions,false +26328,a90b7c5b-0cdd-4352-b8cc-6a1dc160ba44,AUTHORIZATION,,false +26329,a90b7c5b-0cdd-4352-b8cc-6a1dc160ba44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26330,a90b7c5b-0cdd-4352-b8cc-6a1dc160ba44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26331,a90b7c5b-0cdd-4352-b8cc-6a1dc160ba44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26332,c3431672-1e70-4027-aef1-13f955e4c9f2,LIST_ACCOUNTS,xs2aListAccounts,true -26333,c3431672-1e70-4027-aef1-13f955e4c9f2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26333,c3431672-1e70-4027-aef1-13f955e4c9f2,LIST_TRANSACTIONS,xs2aListTransactions,true 26334,c3431672-1e70-4027-aef1-13f955e4c9f2,AUTHORIZATION,,true 26335,c3431672-1e70-4027-aef1-13f955e4c9f2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26336,c3431672-1e70-4027-aef1-13f955e4c9f2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26337,c3431672-1e70-4027-aef1-13f955e4c9f2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26338,9fa70e4a-440b-4ab3-8452-70bc5b9e10ba,LIST_ACCOUNTS,hbciListAccounts,false -26339,9fa70e4a-440b-4ab3-8452-70bc5b9e10ba,LIST_TRANSACTIONS,hbciListTransactions,false -26340,9fa70e4a-440b-4ab3-8452-70bc5b9e10ba,AUTHORIZATION,,false -26341,9fa70e4a-440b-4ab3-8452-70bc5b9e10ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26342,9fa70e4a-440b-4ab3-8452-70bc5b9e10ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26343,9fa70e4a-440b-4ab3-8452-70bc5b9e10ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26338,8cea1d25-d8c4-4fa2-9995-f6b1928d9dc1,LIST_ACCOUNTS,hbciListAccounts,false +26339,8cea1d25-d8c4-4fa2-9995-f6b1928d9dc1,LIST_TRANSACTIONS,hbciListTransactions,false +26340,8cea1d25-d8c4-4fa2-9995-f6b1928d9dc1,AUTHORIZATION,,false +26341,8cea1d25-d8c4-4fa2-9995-f6b1928d9dc1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26342,8cea1d25-d8c4-4fa2-9995-f6b1928d9dc1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26343,8cea1d25-d8c4-4fa2-9995-f6b1928d9dc1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26344,7014f1fb-4bcf-4216-b269-2dfeac761412,LIST_ACCOUNTS,xs2aListAccounts,true -26345,7014f1fb-4bcf-4216-b269-2dfeac761412,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26345,7014f1fb-4bcf-4216-b269-2dfeac761412,LIST_TRANSACTIONS,xs2aListTransactions,true 26346,7014f1fb-4bcf-4216-b269-2dfeac761412,AUTHORIZATION,,true 26347,7014f1fb-4bcf-4216-b269-2dfeac761412,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26348,7014f1fb-4bcf-4216-b269-2dfeac761412,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26349,7014f1fb-4bcf-4216-b269-2dfeac761412,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26350,13530eb7-333a-47d8-a777-01e6f7f482e8,LIST_ACCOUNTS,hbciListAccounts,false -26351,13530eb7-333a-47d8-a777-01e6f7f482e8,LIST_TRANSACTIONS,hbciListTransactions,false -26352,13530eb7-333a-47d8-a777-01e6f7f482e8,AUTHORIZATION,,false -26353,13530eb7-333a-47d8-a777-01e6f7f482e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26354,13530eb7-333a-47d8-a777-01e6f7f482e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26355,13530eb7-333a-47d8-a777-01e6f7f482e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26350,cec09a96-bbe5-4592-bd3a-735eb67fc720,LIST_ACCOUNTS,hbciListAccounts,false +26351,cec09a96-bbe5-4592-bd3a-735eb67fc720,LIST_TRANSACTIONS,hbciListTransactions,false +26352,cec09a96-bbe5-4592-bd3a-735eb67fc720,AUTHORIZATION,,false +26353,cec09a96-bbe5-4592-bd3a-735eb67fc720,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26354,cec09a96-bbe5-4592-bd3a-735eb67fc720,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26355,cec09a96-bbe5-4592-bd3a-735eb67fc720,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26356,4e931b32-e3e5-428e-b386-a60766e182a1,LIST_ACCOUNTS,xs2aListAccounts,true -26357,4e931b32-e3e5-428e-b386-a60766e182a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26357,4e931b32-e3e5-428e-b386-a60766e182a1,LIST_TRANSACTIONS,xs2aListTransactions,true 26358,4e931b32-e3e5-428e-b386-a60766e182a1,AUTHORIZATION,,true 26359,4e931b32-e3e5-428e-b386-a60766e182a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26360,4e931b32-e3e5-428e-b386-a60766e182a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26361,4e931b32-e3e5-428e-b386-a60766e182a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26362,6f85913f-d022-4bbf-972d-5f075e17260a,LIST_ACCOUNTS,hbciListAccounts,false -26363,6f85913f-d022-4bbf-972d-5f075e17260a,LIST_TRANSACTIONS,hbciListTransactions,false -26364,6f85913f-d022-4bbf-972d-5f075e17260a,AUTHORIZATION,,false -26365,6f85913f-d022-4bbf-972d-5f075e17260a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26366,6f85913f-d022-4bbf-972d-5f075e17260a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26367,6f85913f-d022-4bbf-972d-5f075e17260a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26362,d360efba-aa15-40b1-8c51-d629497f434c,LIST_ACCOUNTS,hbciListAccounts,false +26363,d360efba-aa15-40b1-8c51-d629497f434c,LIST_TRANSACTIONS,hbciListTransactions,false +26364,d360efba-aa15-40b1-8c51-d629497f434c,AUTHORIZATION,,false +26365,d360efba-aa15-40b1-8c51-d629497f434c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26366,d360efba-aa15-40b1-8c51-d629497f434c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26367,d360efba-aa15-40b1-8c51-d629497f434c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26368,ac815abd-c966-4933-b6bf-d843cc886467,LIST_ACCOUNTS,xs2aListAccounts,true -26369,ac815abd-c966-4933-b6bf-d843cc886467,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26369,ac815abd-c966-4933-b6bf-d843cc886467,LIST_TRANSACTIONS,xs2aListTransactions,true 26370,ac815abd-c966-4933-b6bf-d843cc886467,AUTHORIZATION,,true 26371,ac815abd-c966-4933-b6bf-d843cc886467,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26372,ac815abd-c966-4933-b6bf-d843cc886467,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26373,ac815abd-c966-4933-b6bf-d843cc886467,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26374,3f916776-6c0f-4309-b9e6-e30d29fbb620,LIST_ACCOUNTS,hbciListAccounts,false -26375,3f916776-6c0f-4309-b9e6-e30d29fbb620,LIST_TRANSACTIONS,hbciListTransactions,false -26376,3f916776-6c0f-4309-b9e6-e30d29fbb620,AUTHORIZATION,,false -26377,3f916776-6c0f-4309-b9e6-e30d29fbb620,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26378,3f916776-6c0f-4309-b9e6-e30d29fbb620,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26379,3f916776-6c0f-4309-b9e6-e30d29fbb620,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26374,5853525e-bbbb-4cd4-8acb-b2634295affb,LIST_ACCOUNTS,hbciListAccounts,false +26375,5853525e-bbbb-4cd4-8acb-b2634295affb,LIST_TRANSACTIONS,hbciListTransactions,false +26376,5853525e-bbbb-4cd4-8acb-b2634295affb,AUTHORIZATION,,false +26377,5853525e-bbbb-4cd4-8acb-b2634295affb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26378,5853525e-bbbb-4cd4-8acb-b2634295affb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26379,5853525e-bbbb-4cd4-8acb-b2634295affb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26380,2cadab9e-2c57-4589-894c-e28324496d17,LIST_ACCOUNTS,xs2aListAccounts,true -26381,2cadab9e-2c57-4589-894c-e28324496d17,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26381,2cadab9e-2c57-4589-894c-e28324496d17,LIST_TRANSACTIONS,xs2aListTransactions,true 26382,2cadab9e-2c57-4589-894c-e28324496d17,AUTHORIZATION,,true 26383,2cadab9e-2c57-4589-894c-e28324496d17,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26384,2cadab9e-2c57-4589-894c-e28324496d17,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26385,2cadab9e-2c57-4589-894c-e28324496d17,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26386,554b1ce8-522a-4eec-8919-11763edaf472,LIST_ACCOUNTS,hbciListAccounts,false -26387,554b1ce8-522a-4eec-8919-11763edaf472,LIST_TRANSACTIONS,hbciListTransactions,false -26388,554b1ce8-522a-4eec-8919-11763edaf472,AUTHORIZATION,,false -26389,554b1ce8-522a-4eec-8919-11763edaf472,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26390,554b1ce8-522a-4eec-8919-11763edaf472,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26391,554b1ce8-522a-4eec-8919-11763edaf472,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26386,e1abf047-747b-46f6-8483-7af54827f6e4,LIST_ACCOUNTS,hbciListAccounts,false +26387,e1abf047-747b-46f6-8483-7af54827f6e4,LIST_TRANSACTIONS,hbciListTransactions,false +26388,e1abf047-747b-46f6-8483-7af54827f6e4,AUTHORIZATION,,false +26389,e1abf047-747b-46f6-8483-7af54827f6e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26390,e1abf047-747b-46f6-8483-7af54827f6e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26391,e1abf047-747b-46f6-8483-7af54827f6e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26392,843db470-2cbe-43e9-9c29-9e92dafb5086,LIST_ACCOUNTS,xs2aListAccounts,true -26393,843db470-2cbe-43e9-9c29-9e92dafb5086,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26393,843db470-2cbe-43e9-9c29-9e92dafb5086,LIST_TRANSACTIONS,xs2aListTransactions,true 26394,843db470-2cbe-43e9-9c29-9e92dafb5086,AUTHORIZATION,,true 26395,843db470-2cbe-43e9-9c29-9e92dafb5086,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26396,843db470-2cbe-43e9-9c29-9e92dafb5086,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26397,843db470-2cbe-43e9-9c29-9e92dafb5086,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26398,b52081f5-5708-495d-8ee8-bba009702ca3,LIST_ACCOUNTS,hbciListAccounts,false -26399,b52081f5-5708-495d-8ee8-bba009702ca3,LIST_TRANSACTIONS,hbciListTransactions,false -26400,b52081f5-5708-495d-8ee8-bba009702ca3,AUTHORIZATION,,false -26401,b52081f5-5708-495d-8ee8-bba009702ca3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26402,b52081f5-5708-495d-8ee8-bba009702ca3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26403,b52081f5-5708-495d-8ee8-bba009702ca3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26398,74b99c9a-cf16-4549-982f-ff87b45e644d,LIST_ACCOUNTS,hbciListAccounts,false +26399,74b99c9a-cf16-4549-982f-ff87b45e644d,LIST_TRANSACTIONS,hbciListTransactions,false +26400,74b99c9a-cf16-4549-982f-ff87b45e644d,AUTHORIZATION,,false +26401,74b99c9a-cf16-4549-982f-ff87b45e644d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26402,74b99c9a-cf16-4549-982f-ff87b45e644d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26403,74b99c9a-cf16-4549-982f-ff87b45e644d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26404,79464732-daeb-4b63-ba02-c90dfe6af057,LIST_ACCOUNTS,xs2aListAccounts,true -26405,79464732-daeb-4b63-ba02-c90dfe6af057,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26405,79464732-daeb-4b63-ba02-c90dfe6af057,LIST_TRANSACTIONS,xs2aListTransactions,true 26406,79464732-daeb-4b63-ba02-c90dfe6af057,AUTHORIZATION,,true 26407,79464732-daeb-4b63-ba02-c90dfe6af057,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26408,79464732-daeb-4b63-ba02-c90dfe6af057,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26409,79464732-daeb-4b63-ba02-c90dfe6af057,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26410,348aaf92-d2d7-43d0-a319-fc56f60aaee9,LIST_ACCOUNTS,hbciListAccounts,false -26411,348aaf92-d2d7-43d0-a319-fc56f60aaee9,LIST_TRANSACTIONS,hbciListTransactions,false -26412,348aaf92-d2d7-43d0-a319-fc56f60aaee9,AUTHORIZATION,,false -26413,348aaf92-d2d7-43d0-a319-fc56f60aaee9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26414,348aaf92-d2d7-43d0-a319-fc56f60aaee9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26415,348aaf92-d2d7-43d0-a319-fc56f60aaee9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26410,1eee1a27-25ae-4216-a750-306bf08103a7,LIST_ACCOUNTS,hbciListAccounts,false +26411,1eee1a27-25ae-4216-a750-306bf08103a7,LIST_TRANSACTIONS,hbciListTransactions,false +26412,1eee1a27-25ae-4216-a750-306bf08103a7,AUTHORIZATION,,false +26413,1eee1a27-25ae-4216-a750-306bf08103a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26414,1eee1a27-25ae-4216-a750-306bf08103a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26415,1eee1a27-25ae-4216-a750-306bf08103a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26416,d48d2914-8853-46bb-849d-1c7f85202c4c,LIST_ACCOUNTS,xs2aListAccounts,true -26417,d48d2914-8853-46bb-849d-1c7f85202c4c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26417,d48d2914-8853-46bb-849d-1c7f85202c4c,LIST_TRANSACTIONS,xs2aListTransactions,true 26418,d48d2914-8853-46bb-849d-1c7f85202c4c,AUTHORIZATION,,true 26419,d48d2914-8853-46bb-849d-1c7f85202c4c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26420,d48d2914-8853-46bb-849d-1c7f85202c4c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26421,d48d2914-8853-46bb-849d-1c7f85202c4c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26422,369e1602-627b-49f2-ae44-7e47ab33c7ea,LIST_ACCOUNTS,hbciListAccounts,false -26423,369e1602-627b-49f2-ae44-7e47ab33c7ea,LIST_TRANSACTIONS,hbciListTransactions,false -26424,369e1602-627b-49f2-ae44-7e47ab33c7ea,AUTHORIZATION,,false -26425,369e1602-627b-49f2-ae44-7e47ab33c7ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26426,369e1602-627b-49f2-ae44-7e47ab33c7ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26427,369e1602-627b-49f2-ae44-7e47ab33c7ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26422,07242dd6-5fe4-4caa-ab9a-86cd549fe95e,LIST_ACCOUNTS,hbciListAccounts,false +26423,07242dd6-5fe4-4caa-ab9a-86cd549fe95e,LIST_TRANSACTIONS,hbciListTransactions,false +26424,07242dd6-5fe4-4caa-ab9a-86cd549fe95e,AUTHORIZATION,,false +26425,07242dd6-5fe4-4caa-ab9a-86cd549fe95e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26426,07242dd6-5fe4-4caa-ab9a-86cd549fe95e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26427,07242dd6-5fe4-4caa-ab9a-86cd549fe95e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26428,7287a08c-023f-42b7-9f47-4709be01b014,LIST_ACCOUNTS,xs2aListAccounts,true -26429,7287a08c-023f-42b7-9f47-4709be01b014,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26429,7287a08c-023f-42b7-9f47-4709be01b014,LIST_TRANSACTIONS,xs2aListTransactions,true 26430,7287a08c-023f-42b7-9f47-4709be01b014,AUTHORIZATION,,true 26431,7287a08c-023f-42b7-9f47-4709be01b014,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26432,7287a08c-023f-42b7-9f47-4709be01b014,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26433,7287a08c-023f-42b7-9f47-4709be01b014,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26434,83c4d2da-217c-4a76-a744-65b20302d87e,LIST_ACCOUNTS,hbciListAccounts,false -26435,83c4d2da-217c-4a76-a744-65b20302d87e,LIST_TRANSACTIONS,hbciListTransactions,false -26436,83c4d2da-217c-4a76-a744-65b20302d87e,AUTHORIZATION,,false -26437,83c4d2da-217c-4a76-a744-65b20302d87e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26438,83c4d2da-217c-4a76-a744-65b20302d87e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26439,83c4d2da-217c-4a76-a744-65b20302d87e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26434,230e4603-49aa-4247-9feb-a633d9abef32,LIST_ACCOUNTS,hbciListAccounts,false +26435,230e4603-49aa-4247-9feb-a633d9abef32,LIST_TRANSACTIONS,hbciListTransactions,false +26436,230e4603-49aa-4247-9feb-a633d9abef32,AUTHORIZATION,,false +26437,230e4603-49aa-4247-9feb-a633d9abef32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26438,230e4603-49aa-4247-9feb-a633d9abef32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26439,230e4603-49aa-4247-9feb-a633d9abef32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26440,628ae61e-c397-4d93-b28d-4085ea3115c2,LIST_ACCOUNTS,xs2aListAccounts,true -26441,628ae61e-c397-4d93-b28d-4085ea3115c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26441,628ae61e-c397-4d93-b28d-4085ea3115c2,LIST_TRANSACTIONS,xs2aListTransactions,true 26442,628ae61e-c397-4d93-b28d-4085ea3115c2,AUTHORIZATION,,true 26443,628ae61e-c397-4d93-b28d-4085ea3115c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26444,628ae61e-c397-4d93-b28d-4085ea3115c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26445,628ae61e-c397-4d93-b28d-4085ea3115c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26446,5b19e3ed-27bb-486a-a7f4-b400588bb007,LIST_ACCOUNTS,hbciListAccounts,false -26447,5b19e3ed-27bb-486a-a7f4-b400588bb007,LIST_TRANSACTIONS,hbciListTransactions,false -26448,5b19e3ed-27bb-486a-a7f4-b400588bb007,AUTHORIZATION,,false -26449,5b19e3ed-27bb-486a-a7f4-b400588bb007,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26450,5b19e3ed-27bb-486a-a7f4-b400588bb007,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26451,5b19e3ed-27bb-486a-a7f4-b400588bb007,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26446,66d8fa89-6776-46d5-af13-fe367e45bc0d,LIST_ACCOUNTS,hbciListAccounts,false +26447,66d8fa89-6776-46d5-af13-fe367e45bc0d,LIST_TRANSACTIONS,hbciListTransactions,false +26448,66d8fa89-6776-46d5-af13-fe367e45bc0d,AUTHORIZATION,,false +26449,66d8fa89-6776-46d5-af13-fe367e45bc0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26450,66d8fa89-6776-46d5-af13-fe367e45bc0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26451,66d8fa89-6776-46d5-af13-fe367e45bc0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26452,39d8924d-96fc-4590-89c2-95191a426371,LIST_ACCOUNTS,xs2aListAccounts,true -26453,39d8924d-96fc-4590-89c2-95191a426371,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26453,39d8924d-96fc-4590-89c2-95191a426371,LIST_TRANSACTIONS,xs2aListTransactions,true 26454,39d8924d-96fc-4590-89c2-95191a426371,AUTHORIZATION,,true 26455,39d8924d-96fc-4590-89c2-95191a426371,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26456,39d8924d-96fc-4590-89c2-95191a426371,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26457,39d8924d-96fc-4590-89c2-95191a426371,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26458,2a27c852-99dd-4bb2-88c2-9a6dc0283702,LIST_ACCOUNTS,hbciListAccounts,false -26459,2a27c852-99dd-4bb2-88c2-9a6dc0283702,LIST_TRANSACTIONS,hbciListTransactions,false -26460,2a27c852-99dd-4bb2-88c2-9a6dc0283702,AUTHORIZATION,,false -26461,2a27c852-99dd-4bb2-88c2-9a6dc0283702,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26462,2a27c852-99dd-4bb2-88c2-9a6dc0283702,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26463,2a27c852-99dd-4bb2-88c2-9a6dc0283702,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26458,01c83b8e-6a4e-4662-afd8-aabc35c985e4,LIST_ACCOUNTS,hbciListAccounts,false +26459,01c83b8e-6a4e-4662-afd8-aabc35c985e4,LIST_TRANSACTIONS,hbciListTransactions,false +26460,01c83b8e-6a4e-4662-afd8-aabc35c985e4,AUTHORIZATION,,false +26461,01c83b8e-6a4e-4662-afd8-aabc35c985e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26462,01c83b8e-6a4e-4662-afd8-aabc35c985e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26463,01c83b8e-6a4e-4662-afd8-aabc35c985e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26464,31e736d4-5f2a-4ed9-b3da-e500aa1ceac3,LIST_ACCOUNTS,xs2aListAccounts,true -26465,31e736d4-5f2a-4ed9-b3da-e500aa1ceac3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26465,31e736d4-5f2a-4ed9-b3da-e500aa1ceac3,LIST_TRANSACTIONS,xs2aListTransactions,true 26466,31e736d4-5f2a-4ed9-b3da-e500aa1ceac3,AUTHORIZATION,,true 26467,31e736d4-5f2a-4ed9-b3da-e500aa1ceac3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26468,31e736d4-5f2a-4ed9-b3da-e500aa1ceac3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26469,31e736d4-5f2a-4ed9-b3da-e500aa1ceac3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26470,46a73c2f-1ec2-4b04-8e84-314136942b46,LIST_ACCOUNTS,hbciListAccounts,false -26471,46a73c2f-1ec2-4b04-8e84-314136942b46,LIST_TRANSACTIONS,hbciListTransactions,false -26472,46a73c2f-1ec2-4b04-8e84-314136942b46,AUTHORIZATION,,false -26473,46a73c2f-1ec2-4b04-8e84-314136942b46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26474,46a73c2f-1ec2-4b04-8e84-314136942b46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26475,46a73c2f-1ec2-4b04-8e84-314136942b46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26470,3a1c644a-4120-4601-b519-69d3f507db80,LIST_ACCOUNTS,hbciListAccounts,false +26471,3a1c644a-4120-4601-b519-69d3f507db80,LIST_TRANSACTIONS,hbciListTransactions,false +26472,3a1c644a-4120-4601-b519-69d3f507db80,AUTHORIZATION,,false +26473,3a1c644a-4120-4601-b519-69d3f507db80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26474,3a1c644a-4120-4601-b519-69d3f507db80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26475,3a1c644a-4120-4601-b519-69d3f507db80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26476,91980350-afd6-423b-bea2-6356cd0697db,LIST_ACCOUNTS,xs2aListAccounts,true -26477,91980350-afd6-423b-bea2-6356cd0697db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26477,91980350-afd6-423b-bea2-6356cd0697db,LIST_TRANSACTIONS,xs2aListTransactions,true 26478,91980350-afd6-423b-bea2-6356cd0697db,AUTHORIZATION,,true 26479,91980350-afd6-423b-bea2-6356cd0697db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26480,91980350-afd6-423b-bea2-6356cd0697db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26481,91980350-afd6-423b-bea2-6356cd0697db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26482,ee4a472e-b958-407a-add1-a4a642ce7371,LIST_ACCOUNTS,hbciListAccounts,false -26483,ee4a472e-b958-407a-add1-a4a642ce7371,LIST_TRANSACTIONS,hbciListTransactions,false -26484,ee4a472e-b958-407a-add1-a4a642ce7371,AUTHORIZATION,,false -26485,ee4a472e-b958-407a-add1-a4a642ce7371,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26486,ee4a472e-b958-407a-add1-a4a642ce7371,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26487,ee4a472e-b958-407a-add1-a4a642ce7371,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26482,b8528f66-7871-42ba-a704-8690c0ed82b0,LIST_ACCOUNTS,hbciListAccounts,false +26483,b8528f66-7871-42ba-a704-8690c0ed82b0,LIST_TRANSACTIONS,hbciListTransactions,false +26484,b8528f66-7871-42ba-a704-8690c0ed82b0,AUTHORIZATION,,false +26485,b8528f66-7871-42ba-a704-8690c0ed82b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26486,b8528f66-7871-42ba-a704-8690c0ed82b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26487,b8528f66-7871-42ba-a704-8690c0ed82b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26488,7100a3a5-afba-4b2f-9e4c-ef058cb21d78,LIST_ACCOUNTS,xs2aListAccounts,true -26489,7100a3a5-afba-4b2f-9e4c-ef058cb21d78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26489,7100a3a5-afba-4b2f-9e4c-ef058cb21d78,LIST_TRANSACTIONS,xs2aListTransactions,true 26490,7100a3a5-afba-4b2f-9e4c-ef058cb21d78,AUTHORIZATION,,true 26491,7100a3a5-afba-4b2f-9e4c-ef058cb21d78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26492,7100a3a5-afba-4b2f-9e4c-ef058cb21d78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26493,7100a3a5-afba-4b2f-9e4c-ef058cb21d78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26494,eadecb03-406b-465e-867a-13622177af2e,LIST_ACCOUNTS,hbciListAccounts,false -26495,eadecb03-406b-465e-867a-13622177af2e,LIST_TRANSACTIONS,hbciListTransactions,false -26496,eadecb03-406b-465e-867a-13622177af2e,AUTHORIZATION,,false -26497,eadecb03-406b-465e-867a-13622177af2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26498,eadecb03-406b-465e-867a-13622177af2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26499,eadecb03-406b-465e-867a-13622177af2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26494,39278dbb-474d-4c62-af37-8fa345ae8a8e,LIST_ACCOUNTS,hbciListAccounts,false +26495,39278dbb-474d-4c62-af37-8fa345ae8a8e,LIST_TRANSACTIONS,hbciListTransactions,false +26496,39278dbb-474d-4c62-af37-8fa345ae8a8e,AUTHORIZATION,,false +26497,39278dbb-474d-4c62-af37-8fa345ae8a8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26498,39278dbb-474d-4c62-af37-8fa345ae8a8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26499,39278dbb-474d-4c62-af37-8fa345ae8a8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26500,492fa01f-ebbe-4a64-9498-412597932e1a,LIST_ACCOUNTS,xs2aListAccounts,true -26501,492fa01f-ebbe-4a64-9498-412597932e1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26501,492fa01f-ebbe-4a64-9498-412597932e1a,LIST_TRANSACTIONS,xs2aListTransactions,true 26502,492fa01f-ebbe-4a64-9498-412597932e1a,AUTHORIZATION,,true 26503,492fa01f-ebbe-4a64-9498-412597932e1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26504,492fa01f-ebbe-4a64-9498-412597932e1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26505,492fa01f-ebbe-4a64-9498-412597932e1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26506,f4415616-bcae-4f74-8797-0bbb52d8e1fd,LIST_ACCOUNTS,hbciListAccounts,false -26507,f4415616-bcae-4f74-8797-0bbb52d8e1fd,LIST_TRANSACTIONS,hbciListTransactions,false -26508,f4415616-bcae-4f74-8797-0bbb52d8e1fd,AUTHORIZATION,,false -26509,f4415616-bcae-4f74-8797-0bbb52d8e1fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26510,f4415616-bcae-4f74-8797-0bbb52d8e1fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26511,f4415616-bcae-4f74-8797-0bbb52d8e1fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26506,4e9b45ae-f84b-4475-8c82-03b90ecb335e,LIST_ACCOUNTS,hbciListAccounts,false +26507,4e9b45ae-f84b-4475-8c82-03b90ecb335e,LIST_TRANSACTIONS,hbciListTransactions,false +26508,4e9b45ae-f84b-4475-8c82-03b90ecb335e,AUTHORIZATION,,false +26509,4e9b45ae-f84b-4475-8c82-03b90ecb335e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26510,4e9b45ae-f84b-4475-8c82-03b90ecb335e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26511,4e9b45ae-f84b-4475-8c82-03b90ecb335e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26512,603d59e9-e2b0-4c5f-8cc5-f62765a737e3,LIST_ACCOUNTS,xs2aListAccounts,true -26513,603d59e9-e2b0-4c5f-8cc5-f62765a737e3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26513,603d59e9-e2b0-4c5f-8cc5-f62765a737e3,LIST_TRANSACTIONS,xs2aListTransactions,true 26514,603d59e9-e2b0-4c5f-8cc5-f62765a737e3,AUTHORIZATION,,true 26515,603d59e9-e2b0-4c5f-8cc5-f62765a737e3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26516,603d59e9-e2b0-4c5f-8cc5-f62765a737e3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26517,603d59e9-e2b0-4c5f-8cc5-f62765a737e3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26518,8ae76fb5-634a-44d0-b346-359aec299efd,LIST_ACCOUNTS,hbciListAccounts,false -26519,8ae76fb5-634a-44d0-b346-359aec299efd,LIST_TRANSACTIONS,hbciListTransactions,false -26520,8ae76fb5-634a-44d0-b346-359aec299efd,AUTHORIZATION,,false -26521,8ae76fb5-634a-44d0-b346-359aec299efd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26522,8ae76fb5-634a-44d0-b346-359aec299efd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26523,8ae76fb5-634a-44d0-b346-359aec299efd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26518,71614591-58af-4a5b-9c7f-e71f46d1d2c2,LIST_ACCOUNTS,hbciListAccounts,false +26519,71614591-58af-4a5b-9c7f-e71f46d1d2c2,LIST_TRANSACTIONS,hbciListTransactions,false +26520,71614591-58af-4a5b-9c7f-e71f46d1d2c2,AUTHORIZATION,,false +26521,71614591-58af-4a5b-9c7f-e71f46d1d2c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26522,71614591-58af-4a5b-9c7f-e71f46d1d2c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26523,71614591-58af-4a5b-9c7f-e71f46d1d2c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26524,3b61a12b-c11d-4024-8c96-519d370c81be,LIST_ACCOUNTS,xs2aListAccounts,true -26525,3b61a12b-c11d-4024-8c96-519d370c81be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26525,3b61a12b-c11d-4024-8c96-519d370c81be,LIST_TRANSACTIONS,xs2aListTransactions,true 26526,3b61a12b-c11d-4024-8c96-519d370c81be,AUTHORIZATION,,true 26527,3b61a12b-c11d-4024-8c96-519d370c81be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26528,3b61a12b-c11d-4024-8c96-519d370c81be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26529,3b61a12b-c11d-4024-8c96-519d370c81be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26530,5f978d95-3952-423d-ad2c-ecccc7abf29f,LIST_ACCOUNTS,hbciListAccounts,false -26531,5f978d95-3952-423d-ad2c-ecccc7abf29f,LIST_TRANSACTIONS,hbciListTransactions,false -26532,5f978d95-3952-423d-ad2c-ecccc7abf29f,AUTHORIZATION,,false -26533,5f978d95-3952-423d-ad2c-ecccc7abf29f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26534,5f978d95-3952-423d-ad2c-ecccc7abf29f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26535,5f978d95-3952-423d-ad2c-ecccc7abf29f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26530,4026eed5-f7f2-48c8-ae5d-77fa4ec2c055,LIST_ACCOUNTS,hbciListAccounts,false +26531,4026eed5-f7f2-48c8-ae5d-77fa4ec2c055,LIST_TRANSACTIONS,hbciListTransactions,false +26532,4026eed5-f7f2-48c8-ae5d-77fa4ec2c055,AUTHORIZATION,,false +26533,4026eed5-f7f2-48c8-ae5d-77fa4ec2c055,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26534,4026eed5-f7f2-48c8-ae5d-77fa4ec2c055,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26535,4026eed5-f7f2-48c8-ae5d-77fa4ec2c055,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26536,7890201a-76d5-4e96-9f46-2348ee55af58,LIST_ACCOUNTS,xs2aListAccounts,true -26537,7890201a-76d5-4e96-9f46-2348ee55af58,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26537,7890201a-76d5-4e96-9f46-2348ee55af58,LIST_TRANSACTIONS,xs2aListTransactions,true 26538,7890201a-76d5-4e96-9f46-2348ee55af58,AUTHORIZATION,,true 26539,7890201a-76d5-4e96-9f46-2348ee55af58,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26540,7890201a-76d5-4e96-9f46-2348ee55af58,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26541,7890201a-76d5-4e96-9f46-2348ee55af58,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26542,2999eaa6-4035-4393-8d4a-29736f16ef37,LIST_ACCOUNTS,hbciListAccounts,false -26543,2999eaa6-4035-4393-8d4a-29736f16ef37,LIST_TRANSACTIONS,hbciListTransactions,false -26544,2999eaa6-4035-4393-8d4a-29736f16ef37,AUTHORIZATION,,false -26545,2999eaa6-4035-4393-8d4a-29736f16ef37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26546,2999eaa6-4035-4393-8d4a-29736f16ef37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26547,2999eaa6-4035-4393-8d4a-29736f16ef37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26542,c8bbe8ac-5546-40f8-a20e-e1686778693a,LIST_ACCOUNTS,hbciListAccounts,false +26543,c8bbe8ac-5546-40f8-a20e-e1686778693a,LIST_TRANSACTIONS,hbciListTransactions,false +26544,c8bbe8ac-5546-40f8-a20e-e1686778693a,AUTHORIZATION,,false +26545,c8bbe8ac-5546-40f8-a20e-e1686778693a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26546,c8bbe8ac-5546-40f8-a20e-e1686778693a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26547,c8bbe8ac-5546-40f8-a20e-e1686778693a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26548,307ef0c7-f341-486d-ae9c-8f13ac433d12,LIST_ACCOUNTS,xs2aListAccounts,true -26549,307ef0c7-f341-486d-ae9c-8f13ac433d12,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26549,307ef0c7-f341-486d-ae9c-8f13ac433d12,LIST_TRANSACTIONS,xs2aListTransactions,true 26550,307ef0c7-f341-486d-ae9c-8f13ac433d12,AUTHORIZATION,,true 26551,307ef0c7-f341-486d-ae9c-8f13ac433d12,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26552,307ef0c7-f341-486d-ae9c-8f13ac433d12,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26553,307ef0c7-f341-486d-ae9c-8f13ac433d12,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26554,6835a230-8a71-453a-9515-b155170cf054,LIST_ACCOUNTS,hbciListAccounts,false -26555,6835a230-8a71-453a-9515-b155170cf054,LIST_TRANSACTIONS,hbciListTransactions,false -26556,6835a230-8a71-453a-9515-b155170cf054,AUTHORIZATION,,false -26557,6835a230-8a71-453a-9515-b155170cf054,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26558,6835a230-8a71-453a-9515-b155170cf054,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26559,6835a230-8a71-453a-9515-b155170cf054,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26554,54083c44-6d37-4be3-85a4-05e6fb4c526c,LIST_ACCOUNTS,hbciListAccounts,false +26555,54083c44-6d37-4be3-85a4-05e6fb4c526c,LIST_TRANSACTIONS,hbciListTransactions,false +26556,54083c44-6d37-4be3-85a4-05e6fb4c526c,AUTHORIZATION,,false +26557,54083c44-6d37-4be3-85a4-05e6fb4c526c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26558,54083c44-6d37-4be3-85a4-05e6fb4c526c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26559,54083c44-6d37-4be3-85a4-05e6fb4c526c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26560,9556696a-4362-4ff7-b2ff-82e1f0b0db75,LIST_ACCOUNTS,xs2aListAccounts,true -26561,9556696a-4362-4ff7-b2ff-82e1f0b0db75,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26561,9556696a-4362-4ff7-b2ff-82e1f0b0db75,LIST_TRANSACTIONS,xs2aListTransactions,true 26562,9556696a-4362-4ff7-b2ff-82e1f0b0db75,AUTHORIZATION,,true 26563,9556696a-4362-4ff7-b2ff-82e1f0b0db75,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26564,9556696a-4362-4ff7-b2ff-82e1f0b0db75,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26565,9556696a-4362-4ff7-b2ff-82e1f0b0db75,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26566,34151fb7-699a-4c46-bcf0-18a89b214113,LIST_ACCOUNTS,hbciListAccounts,false -26567,34151fb7-699a-4c46-bcf0-18a89b214113,LIST_TRANSACTIONS,hbciListTransactions,false -26568,34151fb7-699a-4c46-bcf0-18a89b214113,AUTHORIZATION,,false -26569,34151fb7-699a-4c46-bcf0-18a89b214113,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26570,34151fb7-699a-4c46-bcf0-18a89b214113,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26571,34151fb7-699a-4c46-bcf0-18a89b214113,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26566,a3bf808e-4695-44ed-b682-1f4fc96cdaa8,LIST_ACCOUNTS,hbciListAccounts,false +26567,a3bf808e-4695-44ed-b682-1f4fc96cdaa8,LIST_TRANSACTIONS,hbciListTransactions,false +26568,a3bf808e-4695-44ed-b682-1f4fc96cdaa8,AUTHORIZATION,,false +26569,a3bf808e-4695-44ed-b682-1f4fc96cdaa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26570,a3bf808e-4695-44ed-b682-1f4fc96cdaa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26571,a3bf808e-4695-44ed-b682-1f4fc96cdaa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26572,c73d014d-0ab8-45f0-8fd2-d41c8e3c5ce7,LIST_ACCOUNTS,xs2aListAccounts,true -26573,c73d014d-0ab8-45f0-8fd2-d41c8e3c5ce7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26573,c73d014d-0ab8-45f0-8fd2-d41c8e3c5ce7,LIST_TRANSACTIONS,xs2aListTransactions,true 26574,c73d014d-0ab8-45f0-8fd2-d41c8e3c5ce7,AUTHORIZATION,,true 26575,c73d014d-0ab8-45f0-8fd2-d41c8e3c5ce7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26576,c73d014d-0ab8-45f0-8fd2-d41c8e3c5ce7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26577,c73d014d-0ab8-45f0-8fd2-d41c8e3c5ce7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26578,169f940f-c426-46fd-845b-6e2d438b57e5,LIST_ACCOUNTS,hbciListAccounts,false -26579,169f940f-c426-46fd-845b-6e2d438b57e5,LIST_TRANSACTIONS,hbciListTransactions,false -26580,169f940f-c426-46fd-845b-6e2d438b57e5,AUTHORIZATION,,false -26581,169f940f-c426-46fd-845b-6e2d438b57e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26582,169f940f-c426-46fd-845b-6e2d438b57e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26583,169f940f-c426-46fd-845b-6e2d438b57e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26578,5b03a6c8-0820-4a05-8eca-aa6aa91c507b,LIST_ACCOUNTS,hbciListAccounts,false +26579,5b03a6c8-0820-4a05-8eca-aa6aa91c507b,LIST_TRANSACTIONS,hbciListTransactions,false +26580,5b03a6c8-0820-4a05-8eca-aa6aa91c507b,AUTHORIZATION,,false +26581,5b03a6c8-0820-4a05-8eca-aa6aa91c507b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26582,5b03a6c8-0820-4a05-8eca-aa6aa91c507b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26583,5b03a6c8-0820-4a05-8eca-aa6aa91c507b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26584,6a1873a2-c688-465a-ac02-ec567caf0dce,LIST_ACCOUNTS,xs2aListAccounts,true -26585,6a1873a2-c688-465a-ac02-ec567caf0dce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26585,6a1873a2-c688-465a-ac02-ec567caf0dce,LIST_TRANSACTIONS,xs2aListTransactions,true 26586,6a1873a2-c688-465a-ac02-ec567caf0dce,AUTHORIZATION,,true 26587,6a1873a2-c688-465a-ac02-ec567caf0dce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26588,6a1873a2-c688-465a-ac02-ec567caf0dce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26589,6a1873a2-c688-465a-ac02-ec567caf0dce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26590,96573737-2790-4ec8-a350-15e141cb562b,LIST_ACCOUNTS,hbciListAccounts,false -26591,96573737-2790-4ec8-a350-15e141cb562b,LIST_TRANSACTIONS,hbciListTransactions,false -26592,96573737-2790-4ec8-a350-15e141cb562b,AUTHORIZATION,,false -26593,96573737-2790-4ec8-a350-15e141cb562b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26594,96573737-2790-4ec8-a350-15e141cb562b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26595,96573737-2790-4ec8-a350-15e141cb562b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26590,c4f43439-bcb9-494f-8502-9017470ca7d2,LIST_ACCOUNTS,hbciListAccounts,false +26591,c4f43439-bcb9-494f-8502-9017470ca7d2,LIST_TRANSACTIONS,hbciListTransactions,false +26592,c4f43439-bcb9-494f-8502-9017470ca7d2,AUTHORIZATION,,false +26593,c4f43439-bcb9-494f-8502-9017470ca7d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26594,c4f43439-bcb9-494f-8502-9017470ca7d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26595,c4f43439-bcb9-494f-8502-9017470ca7d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26596,bccfc14b-6dff-4b0b-b70c-cb99881cb6d3,LIST_ACCOUNTS,xs2aListAccounts,true -26597,bccfc14b-6dff-4b0b-b70c-cb99881cb6d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26597,bccfc14b-6dff-4b0b-b70c-cb99881cb6d3,LIST_TRANSACTIONS,xs2aListTransactions,true 26598,bccfc14b-6dff-4b0b-b70c-cb99881cb6d3,AUTHORIZATION,,true 26599,bccfc14b-6dff-4b0b-b70c-cb99881cb6d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26600,bccfc14b-6dff-4b0b-b70c-cb99881cb6d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26601,bccfc14b-6dff-4b0b-b70c-cb99881cb6d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26602,5038eb51-b012-43a2-ade4-3b5be0c26055,LIST_ACCOUNTS,hbciListAccounts,false -26603,5038eb51-b012-43a2-ade4-3b5be0c26055,LIST_TRANSACTIONS,hbciListTransactions,false -26604,5038eb51-b012-43a2-ade4-3b5be0c26055,AUTHORIZATION,,false -26605,5038eb51-b012-43a2-ade4-3b5be0c26055,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26606,5038eb51-b012-43a2-ade4-3b5be0c26055,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26607,5038eb51-b012-43a2-ade4-3b5be0c26055,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26602,54a245fd-91d7-47a1-945b-8b79b02c94be,LIST_ACCOUNTS,hbciListAccounts,false +26603,54a245fd-91d7-47a1-945b-8b79b02c94be,LIST_TRANSACTIONS,hbciListTransactions,false +26604,54a245fd-91d7-47a1-945b-8b79b02c94be,AUTHORIZATION,,false +26605,54a245fd-91d7-47a1-945b-8b79b02c94be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26606,54a245fd-91d7-47a1-945b-8b79b02c94be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26607,54a245fd-91d7-47a1-945b-8b79b02c94be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26608,090532d3-8536-491d-a3ae-420f100049b3,LIST_ACCOUNTS,xs2aListAccounts,true -26609,090532d3-8536-491d-a3ae-420f100049b3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26609,090532d3-8536-491d-a3ae-420f100049b3,LIST_TRANSACTIONS,xs2aListTransactions,true 26610,090532d3-8536-491d-a3ae-420f100049b3,AUTHORIZATION,,true 26611,090532d3-8536-491d-a3ae-420f100049b3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26612,090532d3-8536-491d-a3ae-420f100049b3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26613,090532d3-8536-491d-a3ae-420f100049b3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26614,c84fc434-a48a-4907-92cc-8e2474e6f431,LIST_ACCOUNTS,hbciListAccounts,false -26615,c84fc434-a48a-4907-92cc-8e2474e6f431,LIST_TRANSACTIONS,hbciListTransactions,false -26616,c84fc434-a48a-4907-92cc-8e2474e6f431,AUTHORIZATION,,false -26617,c84fc434-a48a-4907-92cc-8e2474e6f431,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26618,c84fc434-a48a-4907-92cc-8e2474e6f431,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26619,c84fc434-a48a-4907-92cc-8e2474e6f431,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26614,641499a8-6128-4d69-ac52-c5961b1060c6,LIST_ACCOUNTS,hbciListAccounts,false +26615,641499a8-6128-4d69-ac52-c5961b1060c6,LIST_TRANSACTIONS,hbciListTransactions,false +26616,641499a8-6128-4d69-ac52-c5961b1060c6,AUTHORIZATION,,false +26617,641499a8-6128-4d69-ac52-c5961b1060c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26618,641499a8-6128-4d69-ac52-c5961b1060c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26619,641499a8-6128-4d69-ac52-c5961b1060c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26620,d6531636-1f52-40c0-8768-200aacbb9d15,LIST_ACCOUNTS,xs2aListAccounts,true -26621,d6531636-1f52-40c0-8768-200aacbb9d15,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26621,d6531636-1f52-40c0-8768-200aacbb9d15,LIST_TRANSACTIONS,xs2aListTransactions,true 26622,d6531636-1f52-40c0-8768-200aacbb9d15,AUTHORIZATION,,true 26623,d6531636-1f52-40c0-8768-200aacbb9d15,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26624,d6531636-1f52-40c0-8768-200aacbb9d15,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26625,d6531636-1f52-40c0-8768-200aacbb9d15,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26626,82d81ad6-28a0-4cae-b5b6-ba77222ee3be,LIST_ACCOUNTS,hbciListAccounts,false -26627,82d81ad6-28a0-4cae-b5b6-ba77222ee3be,LIST_TRANSACTIONS,hbciListTransactions,false -26628,82d81ad6-28a0-4cae-b5b6-ba77222ee3be,AUTHORIZATION,,false -26629,82d81ad6-28a0-4cae-b5b6-ba77222ee3be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26630,82d81ad6-28a0-4cae-b5b6-ba77222ee3be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26631,82d81ad6-28a0-4cae-b5b6-ba77222ee3be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26626,05013a8b-7bd1-4dc2-8297-79e04d036615,LIST_ACCOUNTS,hbciListAccounts,false +26627,05013a8b-7bd1-4dc2-8297-79e04d036615,LIST_TRANSACTIONS,hbciListTransactions,false +26628,05013a8b-7bd1-4dc2-8297-79e04d036615,AUTHORIZATION,,false +26629,05013a8b-7bd1-4dc2-8297-79e04d036615,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26630,05013a8b-7bd1-4dc2-8297-79e04d036615,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26631,05013a8b-7bd1-4dc2-8297-79e04d036615,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26632,a2066034-eefe-4502-af08-d061255686e6,LIST_ACCOUNTS,xs2aListAccounts,true -26633,a2066034-eefe-4502-af08-d061255686e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26633,a2066034-eefe-4502-af08-d061255686e6,LIST_TRANSACTIONS,xs2aListTransactions,true 26634,a2066034-eefe-4502-af08-d061255686e6,AUTHORIZATION,,true 26635,a2066034-eefe-4502-af08-d061255686e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26636,a2066034-eefe-4502-af08-d061255686e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26637,a2066034-eefe-4502-af08-d061255686e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26638,dc0b86c9-e5b1-4feb-bb7d-feda6d12869b,LIST_ACCOUNTS,hbciListAccounts,false -26639,dc0b86c9-e5b1-4feb-bb7d-feda6d12869b,LIST_TRANSACTIONS,hbciListTransactions,false -26640,dc0b86c9-e5b1-4feb-bb7d-feda6d12869b,AUTHORIZATION,,false -26641,dc0b86c9-e5b1-4feb-bb7d-feda6d12869b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26642,dc0b86c9-e5b1-4feb-bb7d-feda6d12869b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26643,dc0b86c9-e5b1-4feb-bb7d-feda6d12869b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26638,3162d546-8bd1-447e-9f72-77b07b608e3b,LIST_ACCOUNTS,hbciListAccounts,false +26639,3162d546-8bd1-447e-9f72-77b07b608e3b,LIST_TRANSACTIONS,hbciListTransactions,false +26640,3162d546-8bd1-447e-9f72-77b07b608e3b,AUTHORIZATION,,false +26641,3162d546-8bd1-447e-9f72-77b07b608e3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26642,3162d546-8bd1-447e-9f72-77b07b608e3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26643,3162d546-8bd1-447e-9f72-77b07b608e3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26644,f5530aad-38c5-46ef-8974-a07aae205e75,LIST_ACCOUNTS,xs2aListAccounts,true -26645,f5530aad-38c5-46ef-8974-a07aae205e75,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26645,f5530aad-38c5-46ef-8974-a07aae205e75,LIST_TRANSACTIONS,xs2aListTransactions,true 26646,f5530aad-38c5-46ef-8974-a07aae205e75,AUTHORIZATION,,true 26647,f5530aad-38c5-46ef-8974-a07aae205e75,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26648,f5530aad-38c5-46ef-8974-a07aae205e75,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26649,f5530aad-38c5-46ef-8974-a07aae205e75,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26650,de4b18ba-80c8-439d-a2df-7f138232e9f2,LIST_ACCOUNTS,hbciListAccounts,false -26651,de4b18ba-80c8-439d-a2df-7f138232e9f2,LIST_TRANSACTIONS,hbciListTransactions,false -26652,de4b18ba-80c8-439d-a2df-7f138232e9f2,AUTHORIZATION,,false -26653,de4b18ba-80c8-439d-a2df-7f138232e9f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26654,de4b18ba-80c8-439d-a2df-7f138232e9f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26655,de4b18ba-80c8-439d-a2df-7f138232e9f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26650,46d29255-3589-4579-a7b7-1bc20c8edb90,LIST_ACCOUNTS,hbciListAccounts,false +26651,46d29255-3589-4579-a7b7-1bc20c8edb90,LIST_TRANSACTIONS,hbciListTransactions,false +26652,46d29255-3589-4579-a7b7-1bc20c8edb90,AUTHORIZATION,,false +26653,46d29255-3589-4579-a7b7-1bc20c8edb90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26654,46d29255-3589-4579-a7b7-1bc20c8edb90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26655,46d29255-3589-4579-a7b7-1bc20c8edb90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26656,5a9823e0-0eed-4be9-9aac-d5b4921d7bb8,LIST_ACCOUNTS,xs2aListAccounts,true -26657,5a9823e0-0eed-4be9-9aac-d5b4921d7bb8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26657,5a9823e0-0eed-4be9-9aac-d5b4921d7bb8,LIST_TRANSACTIONS,xs2aListTransactions,true 26658,5a9823e0-0eed-4be9-9aac-d5b4921d7bb8,AUTHORIZATION,,true 26659,5a9823e0-0eed-4be9-9aac-d5b4921d7bb8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26660,5a9823e0-0eed-4be9-9aac-d5b4921d7bb8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26661,5a9823e0-0eed-4be9-9aac-d5b4921d7bb8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26662,a79f89f4-63b4-4396-b8e1-fd638927173a,LIST_ACCOUNTS,hbciListAccounts,false -26663,a79f89f4-63b4-4396-b8e1-fd638927173a,LIST_TRANSACTIONS,hbciListTransactions,false -26664,a79f89f4-63b4-4396-b8e1-fd638927173a,AUTHORIZATION,,false -26665,a79f89f4-63b4-4396-b8e1-fd638927173a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26666,a79f89f4-63b4-4396-b8e1-fd638927173a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26667,a79f89f4-63b4-4396-b8e1-fd638927173a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26662,b6a036fc-aaf3-42d1-9adf-b88c5d666815,LIST_ACCOUNTS,hbciListAccounts,false +26663,b6a036fc-aaf3-42d1-9adf-b88c5d666815,LIST_TRANSACTIONS,hbciListTransactions,false +26664,b6a036fc-aaf3-42d1-9adf-b88c5d666815,AUTHORIZATION,,false +26665,b6a036fc-aaf3-42d1-9adf-b88c5d666815,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26666,b6a036fc-aaf3-42d1-9adf-b88c5d666815,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26667,b6a036fc-aaf3-42d1-9adf-b88c5d666815,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26668,eb4da70e-28d6-45be-bf82-2c0e5975e212,LIST_ACCOUNTS,xs2aListAccounts,true -26669,eb4da70e-28d6-45be-bf82-2c0e5975e212,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26669,eb4da70e-28d6-45be-bf82-2c0e5975e212,LIST_TRANSACTIONS,xs2aListTransactions,true 26670,eb4da70e-28d6-45be-bf82-2c0e5975e212,AUTHORIZATION,,true 26671,eb4da70e-28d6-45be-bf82-2c0e5975e212,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26672,eb4da70e-28d6-45be-bf82-2c0e5975e212,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26673,eb4da70e-28d6-45be-bf82-2c0e5975e212,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26674,6e843bca-2578-4677-93a4-fa4be7359645,LIST_ACCOUNTS,hbciListAccounts,false -26675,6e843bca-2578-4677-93a4-fa4be7359645,LIST_TRANSACTIONS,hbciListTransactions,false -26676,6e843bca-2578-4677-93a4-fa4be7359645,AUTHORIZATION,,false -26677,6e843bca-2578-4677-93a4-fa4be7359645,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26678,6e843bca-2578-4677-93a4-fa4be7359645,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26679,6e843bca-2578-4677-93a4-fa4be7359645,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26674,f2cef375-b4d7-428d-9aac-50bd9aa274bf,LIST_ACCOUNTS,hbciListAccounts,false +26675,f2cef375-b4d7-428d-9aac-50bd9aa274bf,LIST_TRANSACTIONS,hbciListTransactions,false +26676,f2cef375-b4d7-428d-9aac-50bd9aa274bf,AUTHORIZATION,,false +26677,f2cef375-b4d7-428d-9aac-50bd9aa274bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26678,f2cef375-b4d7-428d-9aac-50bd9aa274bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26679,f2cef375-b4d7-428d-9aac-50bd9aa274bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26680,04f4a1ee-564a-4324-a12e-674ee9fa7d03,LIST_ACCOUNTS,xs2aListAccounts,true -26681,04f4a1ee-564a-4324-a12e-674ee9fa7d03,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26681,04f4a1ee-564a-4324-a12e-674ee9fa7d03,LIST_TRANSACTIONS,xs2aListTransactions,true 26682,04f4a1ee-564a-4324-a12e-674ee9fa7d03,AUTHORIZATION,,true 26683,04f4a1ee-564a-4324-a12e-674ee9fa7d03,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26684,04f4a1ee-564a-4324-a12e-674ee9fa7d03,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26685,04f4a1ee-564a-4324-a12e-674ee9fa7d03,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26686,61f6615f-4928-4c19-8283-d11c132114d1,LIST_ACCOUNTS,hbciListAccounts,false -26687,61f6615f-4928-4c19-8283-d11c132114d1,LIST_TRANSACTIONS,hbciListTransactions,false -26688,61f6615f-4928-4c19-8283-d11c132114d1,AUTHORIZATION,,false -26689,61f6615f-4928-4c19-8283-d11c132114d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26690,61f6615f-4928-4c19-8283-d11c132114d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26691,61f6615f-4928-4c19-8283-d11c132114d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26686,ac961d8f-b0eb-4edb-8025-22f7ba5e8b60,LIST_ACCOUNTS,hbciListAccounts,false +26687,ac961d8f-b0eb-4edb-8025-22f7ba5e8b60,LIST_TRANSACTIONS,hbciListTransactions,false +26688,ac961d8f-b0eb-4edb-8025-22f7ba5e8b60,AUTHORIZATION,,false +26689,ac961d8f-b0eb-4edb-8025-22f7ba5e8b60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26690,ac961d8f-b0eb-4edb-8025-22f7ba5e8b60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26691,ac961d8f-b0eb-4edb-8025-22f7ba5e8b60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26692,78ea1dc1-f72d-46a8-a1fc-256ab0aadf29,LIST_ACCOUNTS,xs2aListAccounts,true -26693,78ea1dc1-f72d-46a8-a1fc-256ab0aadf29,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26693,78ea1dc1-f72d-46a8-a1fc-256ab0aadf29,LIST_TRANSACTIONS,xs2aListTransactions,true 26694,78ea1dc1-f72d-46a8-a1fc-256ab0aadf29,AUTHORIZATION,,true 26695,78ea1dc1-f72d-46a8-a1fc-256ab0aadf29,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26696,78ea1dc1-f72d-46a8-a1fc-256ab0aadf29,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26697,78ea1dc1-f72d-46a8-a1fc-256ab0aadf29,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26698,3f7fb608-3ab5-4069-8477-1cee73f38fc1,LIST_ACCOUNTS,hbciListAccounts,false -26699,3f7fb608-3ab5-4069-8477-1cee73f38fc1,LIST_TRANSACTIONS,hbciListTransactions,false -26700,3f7fb608-3ab5-4069-8477-1cee73f38fc1,AUTHORIZATION,,false -26701,3f7fb608-3ab5-4069-8477-1cee73f38fc1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26702,3f7fb608-3ab5-4069-8477-1cee73f38fc1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26703,3f7fb608-3ab5-4069-8477-1cee73f38fc1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26698,7c63ce62-c031-4a20-9af1-7f890cdd3a13,LIST_ACCOUNTS,hbciListAccounts,false +26699,7c63ce62-c031-4a20-9af1-7f890cdd3a13,LIST_TRANSACTIONS,hbciListTransactions,false +26700,7c63ce62-c031-4a20-9af1-7f890cdd3a13,AUTHORIZATION,,false +26701,7c63ce62-c031-4a20-9af1-7f890cdd3a13,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26702,7c63ce62-c031-4a20-9af1-7f890cdd3a13,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26703,7c63ce62-c031-4a20-9af1-7f890cdd3a13,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26704,b96f3f8c-0ffa-4d12-8c36-dd9d0cc1e0db,LIST_ACCOUNTS,xs2aListAccounts,true -26705,b96f3f8c-0ffa-4d12-8c36-dd9d0cc1e0db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26705,b96f3f8c-0ffa-4d12-8c36-dd9d0cc1e0db,LIST_TRANSACTIONS,xs2aListTransactions,true 26706,b96f3f8c-0ffa-4d12-8c36-dd9d0cc1e0db,AUTHORIZATION,,true 26707,b96f3f8c-0ffa-4d12-8c36-dd9d0cc1e0db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26708,b96f3f8c-0ffa-4d12-8c36-dd9d0cc1e0db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26709,b96f3f8c-0ffa-4d12-8c36-dd9d0cc1e0db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26710,625d9d74-0ecd-4580-817e-4d3d22fec579,LIST_ACCOUNTS,hbciListAccounts,false -26711,625d9d74-0ecd-4580-817e-4d3d22fec579,LIST_TRANSACTIONS,hbciListTransactions,false -26712,625d9d74-0ecd-4580-817e-4d3d22fec579,AUTHORIZATION,,false -26713,625d9d74-0ecd-4580-817e-4d3d22fec579,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26714,625d9d74-0ecd-4580-817e-4d3d22fec579,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26715,625d9d74-0ecd-4580-817e-4d3d22fec579,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26710,ee2c9a7e-9229-4168-a613-23c7d88406c0,LIST_ACCOUNTS,hbciListAccounts,false +26711,ee2c9a7e-9229-4168-a613-23c7d88406c0,LIST_TRANSACTIONS,hbciListTransactions,false +26712,ee2c9a7e-9229-4168-a613-23c7d88406c0,AUTHORIZATION,,false +26713,ee2c9a7e-9229-4168-a613-23c7d88406c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26714,ee2c9a7e-9229-4168-a613-23c7d88406c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26715,ee2c9a7e-9229-4168-a613-23c7d88406c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26716,fc0257f2-3102-4208-9862-b7c040b55933,LIST_ACCOUNTS,xs2aListAccounts,true -26717,fc0257f2-3102-4208-9862-b7c040b55933,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26717,fc0257f2-3102-4208-9862-b7c040b55933,LIST_TRANSACTIONS,xs2aListTransactions,true 26718,fc0257f2-3102-4208-9862-b7c040b55933,AUTHORIZATION,,true 26719,fc0257f2-3102-4208-9862-b7c040b55933,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26720,fc0257f2-3102-4208-9862-b7c040b55933,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26721,fc0257f2-3102-4208-9862-b7c040b55933,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26722,d1819a8b-6388-4770-ba71-af1adbc55553,LIST_ACCOUNTS,hbciListAccounts,false -26723,d1819a8b-6388-4770-ba71-af1adbc55553,LIST_TRANSACTIONS,hbciListTransactions,false -26724,d1819a8b-6388-4770-ba71-af1adbc55553,AUTHORIZATION,,false -26725,d1819a8b-6388-4770-ba71-af1adbc55553,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26726,d1819a8b-6388-4770-ba71-af1adbc55553,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26727,d1819a8b-6388-4770-ba71-af1adbc55553,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26722,565f8192-2635-4432-b18d-37dc03ddbf57,LIST_ACCOUNTS,hbciListAccounts,false +26723,565f8192-2635-4432-b18d-37dc03ddbf57,LIST_TRANSACTIONS,hbciListTransactions,false +26724,565f8192-2635-4432-b18d-37dc03ddbf57,AUTHORIZATION,,false +26725,565f8192-2635-4432-b18d-37dc03ddbf57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26726,565f8192-2635-4432-b18d-37dc03ddbf57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26727,565f8192-2635-4432-b18d-37dc03ddbf57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26728,242a7f50-3211-480c-a798-fb2c953045e4,LIST_ACCOUNTS,xs2aListAccounts,true -26729,242a7f50-3211-480c-a798-fb2c953045e4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26729,242a7f50-3211-480c-a798-fb2c953045e4,LIST_TRANSACTIONS,xs2aListTransactions,true 26730,242a7f50-3211-480c-a798-fb2c953045e4,AUTHORIZATION,,true 26731,242a7f50-3211-480c-a798-fb2c953045e4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26732,242a7f50-3211-480c-a798-fb2c953045e4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26733,242a7f50-3211-480c-a798-fb2c953045e4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26734,f44738f8-eee3-455a-950b-b3dfff663321,LIST_ACCOUNTS,hbciListAccounts,false -26735,f44738f8-eee3-455a-950b-b3dfff663321,LIST_TRANSACTIONS,hbciListTransactions,false -26736,f44738f8-eee3-455a-950b-b3dfff663321,AUTHORIZATION,,false -26737,f44738f8-eee3-455a-950b-b3dfff663321,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26738,f44738f8-eee3-455a-950b-b3dfff663321,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26739,f44738f8-eee3-455a-950b-b3dfff663321,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26734,e90a58c1-c262-44c2-8b91-2ec8a13b7832,LIST_ACCOUNTS,hbciListAccounts,false +26735,e90a58c1-c262-44c2-8b91-2ec8a13b7832,LIST_TRANSACTIONS,hbciListTransactions,false +26736,e90a58c1-c262-44c2-8b91-2ec8a13b7832,AUTHORIZATION,,false +26737,e90a58c1-c262-44c2-8b91-2ec8a13b7832,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26738,e90a58c1-c262-44c2-8b91-2ec8a13b7832,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26739,e90a58c1-c262-44c2-8b91-2ec8a13b7832,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26740,4ff6b614-d2bd-4f11-9e05-ee9342823eca,LIST_ACCOUNTS,xs2aListAccounts,true -26741,4ff6b614-d2bd-4f11-9e05-ee9342823eca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26741,4ff6b614-d2bd-4f11-9e05-ee9342823eca,LIST_TRANSACTIONS,xs2aListTransactions,true 26742,4ff6b614-d2bd-4f11-9e05-ee9342823eca,AUTHORIZATION,,true 26743,4ff6b614-d2bd-4f11-9e05-ee9342823eca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26744,4ff6b614-d2bd-4f11-9e05-ee9342823eca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26745,4ff6b614-d2bd-4f11-9e05-ee9342823eca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26746,b39f2268-b062-4f2c-88f6-e3f9670c7fe1,LIST_ACCOUNTS,hbciListAccounts,false -26747,b39f2268-b062-4f2c-88f6-e3f9670c7fe1,LIST_TRANSACTIONS,hbciListTransactions,false -26748,b39f2268-b062-4f2c-88f6-e3f9670c7fe1,AUTHORIZATION,,false -26749,b39f2268-b062-4f2c-88f6-e3f9670c7fe1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26750,b39f2268-b062-4f2c-88f6-e3f9670c7fe1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26751,b39f2268-b062-4f2c-88f6-e3f9670c7fe1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26746,7cdb04df-d0c6-44bb-931a-101866a8157b,LIST_ACCOUNTS,hbciListAccounts,false +26747,7cdb04df-d0c6-44bb-931a-101866a8157b,LIST_TRANSACTIONS,hbciListTransactions,false +26748,7cdb04df-d0c6-44bb-931a-101866a8157b,AUTHORIZATION,,false +26749,7cdb04df-d0c6-44bb-931a-101866a8157b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26750,7cdb04df-d0c6-44bb-931a-101866a8157b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26751,7cdb04df-d0c6-44bb-931a-101866a8157b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26752,45c0e14b-a2ec-48ce-b143-8c9a04f66829,LIST_ACCOUNTS,xs2aListAccounts,true -26753,45c0e14b-a2ec-48ce-b143-8c9a04f66829,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26753,45c0e14b-a2ec-48ce-b143-8c9a04f66829,LIST_TRANSACTIONS,xs2aListTransactions,true 26754,45c0e14b-a2ec-48ce-b143-8c9a04f66829,AUTHORIZATION,,true 26755,45c0e14b-a2ec-48ce-b143-8c9a04f66829,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26756,45c0e14b-a2ec-48ce-b143-8c9a04f66829,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26757,45c0e14b-a2ec-48ce-b143-8c9a04f66829,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26758,cca4d06d-e568-4c0b-a8f2-ca189a0d9c6e,LIST_ACCOUNTS,hbciListAccounts,false -26759,cca4d06d-e568-4c0b-a8f2-ca189a0d9c6e,LIST_TRANSACTIONS,hbciListTransactions,false -26760,cca4d06d-e568-4c0b-a8f2-ca189a0d9c6e,AUTHORIZATION,,false -26761,cca4d06d-e568-4c0b-a8f2-ca189a0d9c6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26762,cca4d06d-e568-4c0b-a8f2-ca189a0d9c6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26763,cca4d06d-e568-4c0b-a8f2-ca189a0d9c6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26758,8dcf8545-a8f3-458e-8c31-50520878cb70,LIST_ACCOUNTS,hbciListAccounts,false +26759,8dcf8545-a8f3-458e-8c31-50520878cb70,LIST_TRANSACTIONS,hbciListTransactions,false +26760,8dcf8545-a8f3-458e-8c31-50520878cb70,AUTHORIZATION,,false +26761,8dcf8545-a8f3-458e-8c31-50520878cb70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26762,8dcf8545-a8f3-458e-8c31-50520878cb70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26763,8dcf8545-a8f3-458e-8c31-50520878cb70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26764,7bd34847-282d-4724-92b9-fdc43f963b92,LIST_ACCOUNTS,xs2aListAccounts,true -26765,7bd34847-282d-4724-92b9-fdc43f963b92,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26765,7bd34847-282d-4724-92b9-fdc43f963b92,LIST_TRANSACTIONS,xs2aListTransactions,true 26766,7bd34847-282d-4724-92b9-fdc43f963b92,AUTHORIZATION,,true 26767,7bd34847-282d-4724-92b9-fdc43f963b92,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26768,7bd34847-282d-4724-92b9-fdc43f963b92,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26769,7bd34847-282d-4724-92b9-fdc43f963b92,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26770,3169edd2-9f13-461b-982c-db0564391097,LIST_ACCOUNTS,hbciListAccounts,false -26771,3169edd2-9f13-461b-982c-db0564391097,LIST_TRANSACTIONS,hbciListTransactions,false -26772,3169edd2-9f13-461b-982c-db0564391097,AUTHORIZATION,,false -26773,3169edd2-9f13-461b-982c-db0564391097,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26774,3169edd2-9f13-461b-982c-db0564391097,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26775,3169edd2-9f13-461b-982c-db0564391097,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26770,c4434286-2062-4b69-819c-941137dfc6cd,LIST_ACCOUNTS,hbciListAccounts,false +26771,c4434286-2062-4b69-819c-941137dfc6cd,LIST_TRANSACTIONS,hbciListTransactions,false +26772,c4434286-2062-4b69-819c-941137dfc6cd,AUTHORIZATION,,false +26773,c4434286-2062-4b69-819c-941137dfc6cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26774,c4434286-2062-4b69-819c-941137dfc6cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26775,c4434286-2062-4b69-819c-941137dfc6cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26776,fd4e7c2d-aa8e-4933-a939-f0a10152bcd1,LIST_ACCOUNTS,xs2aListAccounts,true -26777,fd4e7c2d-aa8e-4933-a939-f0a10152bcd1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26777,fd4e7c2d-aa8e-4933-a939-f0a10152bcd1,LIST_TRANSACTIONS,xs2aListTransactions,true 26778,fd4e7c2d-aa8e-4933-a939-f0a10152bcd1,AUTHORIZATION,,true 26779,fd4e7c2d-aa8e-4933-a939-f0a10152bcd1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26780,fd4e7c2d-aa8e-4933-a939-f0a10152bcd1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26781,fd4e7c2d-aa8e-4933-a939-f0a10152bcd1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26782,403401de-18ae-4056-9833-71bc0a651b1a,LIST_ACCOUNTS,hbciListAccounts,false -26783,403401de-18ae-4056-9833-71bc0a651b1a,LIST_TRANSACTIONS,hbciListTransactions,false -26784,403401de-18ae-4056-9833-71bc0a651b1a,AUTHORIZATION,,false -26785,403401de-18ae-4056-9833-71bc0a651b1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26786,403401de-18ae-4056-9833-71bc0a651b1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26787,403401de-18ae-4056-9833-71bc0a651b1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26782,8921f813-cec2-4b6a-9dc3-0dd307798b17,LIST_ACCOUNTS,hbciListAccounts,false +26783,8921f813-cec2-4b6a-9dc3-0dd307798b17,LIST_TRANSACTIONS,hbciListTransactions,false +26784,8921f813-cec2-4b6a-9dc3-0dd307798b17,AUTHORIZATION,,false +26785,8921f813-cec2-4b6a-9dc3-0dd307798b17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26786,8921f813-cec2-4b6a-9dc3-0dd307798b17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26787,8921f813-cec2-4b6a-9dc3-0dd307798b17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26788,9d0bbdaf-5034-42b1-9efc-635ace0ce9aa,LIST_ACCOUNTS,xs2aListAccounts,true -26789,9d0bbdaf-5034-42b1-9efc-635ace0ce9aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26789,9d0bbdaf-5034-42b1-9efc-635ace0ce9aa,LIST_TRANSACTIONS,xs2aListTransactions,true 26790,9d0bbdaf-5034-42b1-9efc-635ace0ce9aa,AUTHORIZATION,,true 26791,9d0bbdaf-5034-42b1-9efc-635ace0ce9aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26792,9d0bbdaf-5034-42b1-9efc-635ace0ce9aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26793,9d0bbdaf-5034-42b1-9efc-635ace0ce9aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26794,c2dcf782-0a38-4fff-9926-df773f12a876,LIST_ACCOUNTS,hbciListAccounts,false -26795,c2dcf782-0a38-4fff-9926-df773f12a876,LIST_TRANSACTIONS,hbciListTransactions,false -26796,c2dcf782-0a38-4fff-9926-df773f12a876,AUTHORIZATION,,false -26797,c2dcf782-0a38-4fff-9926-df773f12a876,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26798,c2dcf782-0a38-4fff-9926-df773f12a876,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26799,c2dcf782-0a38-4fff-9926-df773f12a876,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26794,4cb739ef-5101-4f86-bc07-ff03e097c85a,LIST_ACCOUNTS,hbciListAccounts,false +26795,4cb739ef-5101-4f86-bc07-ff03e097c85a,LIST_TRANSACTIONS,hbciListTransactions,false +26796,4cb739ef-5101-4f86-bc07-ff03e097c85a,AUTHORIZATION,,false +26797,4cb739ef-5101-4f86-bc07-ff03e097c85a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26798,4cb739ef-5101-4f86-bc07-ff03e097c85a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26799,4cb739ef-5101-4f86-bc07-ff03e097c85a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26800,730cda3e-5846-48d6-b6ce-91c784af47d0,LIST_ACCOUNTS,xs2aListAccounts,true -26801,730cda3e-5846-48d6-b6ce-91c784af47d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26801,730cda3e-5846-48d6-b6ce-91c784af47d0,LIST_TRANSACTIONS,xs2aListTransactions,true 26802,730cda3e-5846-48d6-b6ce-91c784af47d0,AUTHORIZATION,,true 26803,730cda3e-5846-48d6-b6ce-91c784af47d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26804,730cda3e-5846-48d6-b6ce-91c784af47d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26805,730cda3e-5846-48d6-b6ce-91c784af47d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26806,249b8e45-8199-47a7-ad79-4a36c811415f,LIST_ACCOUNTS,hbciListAccounts,false -26807,249b8e45-8199-47a7-ad79-4a36c811415f,LIST_TRANSACTIONS,hbciListTransactions,false -26808,249b8e45-8199-47a7-ad79-4a36c811415f,AUTHORIZATION,,false -26809,249b8e45-8199-47a7-ad79-4a36c811415f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26810,249b8e45-8199-47a7-ad79-4a36c811415f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26811,249b8e45-8199-47a7-ad79-4a36c811415f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26806,04b9e373-334a-42d9-b1cd-a45d36ad47bf,LIST_ACCOUNTS,hbciListAccounts,false +26807,04b9e373-334a-42d9-b1cd-a45d36ad47bf,LIST_TRANSACTIONS,hbciListTransactions,false +26808,04b9e373-334a-42d9-b1cd-a45d36ad47bf,AUTHORIZATION,,false +26809,04b9e373-334a-42d9-b1cd-a45d36ad47bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26810,04b9e373-334a-42d9-b1cd-a45d36ad47bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26811,04b9e373-334a-42d9-b1cd-a45d36ad47bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26812,bf9fc0c1-bef3-4101-acf6-5c534b19e708,LIST_ACCOUNTS,xs2aListAccounts,true -26813,bf9fc0c1-bef3-4101-acf6-5c534b19e708,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26813,bf9fc0c1-bef3-4101-acf6-5c534b19e708,LIST_TRANSACTIONS,xs2aListTransactions,true 26814,bf9fc0c1-bef3-4101-acf6-5c534b19e708,AUTHORIZATION,,true 26815,bf9fc0c1-bef3-4101-acf6-5c534b19e708,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26816,bf9fc0c1-bef3-4101-acf6-5c534b19e708,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26817,bf9fc0c1-bef3-4101-acf6-5c534b19e708,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26818,9247883c-a064-4222-9dd3-2fc632b78cb0,LIST_ACCOUNTS,hbciListAccounts,false -26819,9247883c-a064-4222-9dd3-2fc632b78cb0,LIST_TRANSACTIONS,hbciListTransactions,false -26820,9247883c-a064-4222-9dd3-2fc632b78cb0,AUTHORIZATION,,false -26821,9247883c-a064-4222-9dd3-2fc632b78cb0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26822,9247883c-a064-4222-9dd3-2fc632b78cb0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26823,9247883c-a064-4222-9dd3-2fc632b78cb0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26818,4988ea94-6c31-4835-a7b7-ded3d5fe0207,LIST_ACCOUNTS,hbciListAccounts,false +26819,4988ea94-6c31-4835-a7b7-ded3d5fe0207,LIST_TRANSACTIONS,hbciListTransactions,false +26820,4988ea94-6c31-4835-a7b7-ded3d5fe0207,AUTHORIZATION,,false +26821,4988ea94-6c31-4835-a7b7-ded3d5fe0207,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26822,4988ea94-6c31-4835-a7b7-ded3d5fe0207,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26823,4988ea94-6c31-4835-a7b7-ded3d5fe0207,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26824,e7eaccf9-08e1-471b-808c-112efdf76b3a,LIST_ACCOUNTS,xs2aListAccounts,true -26825,e7eaccf9-08e1-471b-808c-112efdf76b3a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26825,e7eaccf9-08e1-471b-808c-112efdf76b3a,LIST_TRANSACTIONS,xs2aListTransactions,true 26826,e7eaccf9-08e1-471b-808c-112efdf76b3a,AUTHORIZATION,,true 26827,e7eaccf9-08e1-471b-808c-112efdf76b3a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26828,e7eaccf9-08e1-471b-808c-112efdf76b3a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26829,e7eaccf9-08e1-471b-808c-112efdf76b3a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26830,5f5e5d5e-9802-4adf-84af-308eff4f25b0,LIST_ACCOUNTS,hbciListAccounts,false -26831,5f5e5d5e-9802-4adf-84af-308eff4f25b0,LIST_TRANSACTIONS,hbciListTransactions,false -26832,5f5e5d5e-9802-4adf-84af-308eff4f25b0,AUTHORIZATION,,false -26833,5f5e5d5e-9802-4adf-84af-308eff4f25b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26834,5f5e5d5e-9802-4adf-84af-308eff4f25b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26835,5f5e5d5e-9802-4adf-84af-308eff4f25b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26830,feef2d12-fc39-4f61-a466-958d12bf179d,LIST_ACCOUNTS,hbciListAccounts,false +26831,feef2d12-fc39-4f61-a466-958d12bf179d,LIST_TRANSACTIONS,hbciListTransactions,false +26832,feef2d12-fc39-4f61-a466-958d12bf179d,AUTHORIZATION,,false +26833,feef2d12-fc39-4f61-a466-958d12bf179d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26834,feef2d12-fc39-4f61-a466-958d12bf179d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26835,feef2d12-fc39-4f61-a466-958d12bf179d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26836,3141eece-5b06-41ad-ae81-f125f6292098,LIST_ACCOUNTS,xs2aListAccounts,true -26837,3141eece-5b06-41ad-ae81-f125f6292098,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26837,3141eece-5b06-41ad-ae81-f125f6292098,LIST_TRANSACTIONS,xs2aListTransactions,true 26838,3141eece-5b06-41ad-ae81-f125f6292098,AUTHORIZATION,,true 26839,3141eece-5b06-41ad-ae81-f125f6292098,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26840,3141eece-5b06-41ad-ae81-f125f6292098,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26841,3141eece-5b06-41ad-ae81-f125f6292098,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26842,14265080-2d31-4bcf-94aa-9c92b09c021a,LIST_ACCOUNTS,hbciListAccounts,false -26843,14265080-2d31-4bcf-94aa-9c92b09c021a,LIST_TRANSACTIONS,hbciListTransactions,false -26844,14265080-2d31-4bcf-94aa-9c92b09c021a,AUTHORIZATION,,false -26845,14265080-2d31-4bcf-94aa-9c92b09c021a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26846,14265080-2d31-4bcf-94aa-9c92b09c021a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26847,14265080-2d31-4bcf-94aa-9c92b09c021a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26842,16d5d900-c0c9-4894-ab35-7fb56f0cd576,LIST_ACCOUNTS,hbciListAccounts,false +26843,16d5d900-c0c9-4894-ab35-7fb56f0cd576,LIST_TRANSACTIONS,hbciListTransactions,false +26844,16d5d900-c0c9-4894-ab35-7fb56f0cd576,AUTHORIZATION,,false +26845,16d5d900-c0c9-4894-ab35-7fb56f0cd576,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26846,16d5d900-c0c9-4894-ab35-7fb56f0cd576,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26847,16d5d900-c0c9-4894-ab35-7fb56f0cd576,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26848,513c9740-3c01-4a66-8bdd-b064aef60501,LIST_ACCOUNTS,xs2aListAccounts,true -26849,513c9740-3c01-4a66-8bdd-b064aef60501,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26849,513c9740-3c01-4a66-8bdd-b064aef60501,LIST_TRANSACTIONS,xs2aListTransactions,true 26850,513c9740-3c01-4a66-8bdd-b064aef60501,AUTHORIZATION,,true 26851,513c9740-3c01-4a66-8bdd-b064aef60501,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26852,513c9740-3c01-4a66-8bdd-b064aef60501,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26853,513c9740-3c01-4a66-8bdd-b064aef60501,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26854,b602694c-2759-4082-81af-6ebc98803e2b,LIST_ACCOUNTS,hbciListAccounts,false -26855,b602694c-2759-4082-81af-6ebc98803e2b,LIST_TRANSACTIONS,hbciListTransactions,false -26856,b602694c-2759-4082-81af-6ebc98803e2b,AUTHORIZATION,,false -26857,b602694c-2759-4082-81af-6ebc98803e2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26858,b602694c-2759-4082-81af-6ebc98803e2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26859,b602694c-2759-4082-81af-6ebc98803e2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26854,101752b3-1b0c-43ea-b533-106686f8a64b,LIST_ACCOUNTS,hbciListAccounts,false +26855,101752b3-1b0c-43ea-b533-106686f8a64b,LIST_TRANSACTIONS,hbciListTransactions,false +26856,101752b3-1b0c-43ea-b533-106686f8a64b,AUTHORIZATION,,false +26857,101752b3-1b0c-43ea-b533-106686f8a64b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26858,101752b3-1b0c-43ea-b533-106686f8a64b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26859,101752b3-1b0c-43ea-b533-106686f8a64b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26860,edc8301a-a367-402d-af5c-60a9720d6ace,LIST_ACCOUNTS,xs2aListAccounts,true -26861,edc8301a-a367-402d-af5c-60a9720d6ace,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26861,edc8301a-a367-402d-af5c-60a9720d6ace,LIST_TRANSACTIONS,xs2aListTransactions,true 26862,edc8301a-a367-402d-af5c-60a9720d6ace,AUTHORIZATION,,true 26863,edc8301a-a367-402d-af5c-60a9720d6ace,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26864,edc8301a-a367-402d-af5c-60a9720d6ace,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26865,edc8301a-a367-402d-af5c-60a9720d6ace,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26866,727cfa68-31f4-4cb9-b5ee-c3bece633b87,LIST_ACCOUNTS,hbciListAccounts,false -26867,727cfa68-31f4-4cb9-b5ee-c3bece633b87,LIST_TRANSACTIONS,hbciListTransactions,false -26868,727cfa68-31f4-4cb9-b5ee-c3bece633b87,AUTHORIZATION,,false -26869,727cfa68-31f4-4cb9-b5ee-c3bece633b87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26870,727cfa68-31f4-4cb9-b5ee-c3bece633b87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26871,727cfa68-31f4-4cb9-b5ee-c3bece633b87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26866,572a70ac-4984-4d49-9574-87d5081a8ca9,LIST_ACCOUNTS,hbciListAccounts,false +26867,572a70ac-4984-4d49-9574-87d5081a8ca9,LIST_TRANSACTIONS,hbciListTransactions,false +26868,572a70ac-4984-4d49-9574-87d5081a8ca9,AUTHORIZATION,,false +26869,572a70ac-4984-4d49-9574-87d5081a8ca9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26870,572a70ac-4984-4d49-9574-87d5081a8ca9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26871,572a70ac-4984-4d49-9574-87d5081a8ca9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26872,84ec28d1-334d-45af-b164-7015ecfcedb8,LIST_ACCOUNTS,xs2aListAccounts,true -26873,84ec28d1-334d-45af-b164-7015ecfcedb8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26873,84ec28d1-334d-45af-b164-7015ecfcedb8,LIST_TRANSACTIONS,xs2aListTransactions,true 26874,84ec28d1-334d-45af-b164-7015ecfcedb8,AUTHORIZATION,,true 26875,84ec28d1-334d-45af-b164-7015ecfcedb8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26876,84ec28d1-334d-45af-b164-7015ecfcedb8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26877,84ec28d1-334d-45af-b164-7015ecfcedb8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26878,c31511bf-3d20-4a56-bd01-7a562573755c,LIST_ACCOUNTS,hbciListAccounts,false -26879,c31511bf-3d20-4a56-bd01-7a562573755c,LIST_TRANSACTIONS,hbciListTransactions,false -26880,c31511bf-3d20-4a56-bd01-7a562573755c,AUTHORIZATION,,false -26881,c31511bf-3d20-4a56-bd01-7a562573755c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26882,c31511bf-3d20-4a56-bd01-7a562573755c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26883,c31511bf-3d20-4a56-bd01-7a562573755c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26878,342c086d-2720-485b-863d-e27245852076,LIST_ACCOUNTS,hbciListAccounts,false +26879,342c086d-2720-485b-863d-e27245852076,LIST_TRANSACTIONS,hbciListTransactions,false +26880,342c086d-2720-485b-863d-e27245852076,AUTHORIZATION,,false +26881,342c086d-2720-485b-863d-e27245852076,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26882,342c086d-2720-485b-863d-e27245852076,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26883,342c086d-2720-485b-863d-e27245852076,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26884,86c32635-e01b-418e-bf9b-a7d89b5471d7,LIST_ACCOUNTS,xs2aListAccounts,true -26885,86c32635-e01b-418e-bf9b-a7d89b5471d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26885,86c32635-e01b-418e-bf9b-a7d89b5471d7,LIST_TRANSACTIONS,xs2aListTransactions,true 26886,86c32635-e01b-418e-bf9b-a7d89b5471d7,AUTHORIZATION,,true 26887,86c32635-e01b-418e-bf9b-a7d89b5471d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26888,86c32635-e01b-418e-bf9b-a7d89b5471d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26889,86c32635-e01b-418e-bf9b-a7d89b5471d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26890,0140b91b-3db3-4654-97a8-3e5d65a51b83,LIST_ACCOUNTS,hbciListAccounts,false -26891,0140b91b-3db3-4654-97a8-3e5d65a51b83,LIST_TRANSACTIONS,hbciListTransactions,false -26892,0140b91b-3db3-4654-97a8-3e5d65a51b83,AUTHORIZATION,,false -26893,0140b91b-3db3-4654-97a8-3e5d65a51b83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26894,0140b91b-3db3-4654-97a8-3e5d65a51b83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26895,0140b91b-3db3-4654-97a8-3e5d65a51b83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26890,7cddbf3b-08f0-4149-a7f5-e6c96d24e9f8,LIST_ACCOUNTS,hbciListAccounts,false +26891,7cddbf3b-08f0-4149-a7f5-e6c96d24e9f8,LIST_TRANSACTIONS,hbciListTransactions,false +26892,7cddbf3b-08f0-4149-a7f5-e6c96d24e9f8,AUTHORIZATION,,false +26893,7cddbf3b-08f0-4149-a7f5-e6c96d24e9f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26894,7cddbf3b-08f0-4149-a7f5-e6c96d24e9f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26895,7cddbf3b-08f0-4149-a7f5-e6c96d24e9f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26896,38104a02-db37-443d-9031-801ba5265be6,LIST_ACCOUNTS,xs2aListAccounts,true -26897,38104a02-db37-443d-9031-801ba5265be6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26897,38104a02-db37-443d-9031-801ba5265be6,LIST_TRANSACTIONS,xs2aListTransactions,true 26898,38104a02-db37-443d-9031-801ba5265be6,AUTHORIZATION,,true 26899,38104a02-db37-443d-9031-801ba5265be6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26900,38104a02-db37-443d-9031-801ba5265be6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26901,38104a02-db37-443d-9031-801ba5265be6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26902,c1874192-47b9-4ac7-9578-4c83d43890c8,LIST_ACCOUNTS,hbciListAccounts,false -26903,c1874192-47b9-4ac7-9578-4c83d43890c8,LIST_TRANSACTIONS,hbciListTransactions,false -26904,c1874192-47b9-4ac7-9578-4c83d43890c8,AUTHORIZATION,,false -26905,c1874192-47b9-4ac7-9578-4c83d43890c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26906,c1874192-47b9-4ac7-9578-4c83d43890c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26907,c1874192-47b9-4ac7-9578-4c83d43890c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26902,38b6d85f-ccde-471d-adc1-ce67df841210,LIST_ACCOUNTS,hbciListAccounts,false +26903,38b6d85f-ccde-471d-adc1-ce67df841210,LIST_TRANSACTIONS,hbciListTransactions,false +26904,38b6d85f-ccde-471d-adc1-ce67df841210,AUTHORIZATION,,false +26905,38b6d85f-ccde-471d-adc1-ce67df841210,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26906,38b6d85f-ccde-471d-adc1-ce67df841210,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26907,38b6d85f-ccde-471d-adc1-ce67df841210,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26908,47204633-3011-4880-8e15-7994bc8b4ae6,LIST_ACCOUNTS,xs2aListAccounts,true -26909,47204633-3011-4880-8e15-7994bc8b4ae6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26909,47204633-3011-4880-8e15-7994bc8b4ae6,LIST_TRANSACTIONS,xs2aListTransactions,true 26910,47204633-3011-4880-8e15-7994bc8b4ae6,AUTHORIZATION,,true 26911,47204633-3011-4880-8e15-7994bc8b4ae6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26912,47204633-3011-4880-8e15-7994bc8b4ae6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26913,47204633-3011-4880-8e15-7994bc8b4ae6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26914,2313903f-9c3c-41f3-894a-3f637e046445,LIST_ACCOUNTS,hbciListAccounts,false -26915,2313903f-9c3c-41f3-894a-3f637e046445,LIST_TRANSACTIONS,hbciListTransactions,false -26916,2313903f-9c3c-41f3-894a-3f637e046445,AUTHORIZATION,,false -26917,2313903f-9c3c-41f3-894a-3f637e046445,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26918,2313903f-9c3c-41f3-894a-3f637e046445,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26919,2313903f-9c3c-41f3-894a-3f637e046445,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26914,ec27a237-580a-4b45-9c5b-f4ef13c9aef6,LIST_ACCOUNTS,hbciListAccounts,false +26915,ec27a237-580a-4b45-9c5b-f4ef13c9aef6,LIST_TRANSACTIONS,hbciListTransactions,false +26916,ec27a237-580a-4b45-9c5b-f4ef13c9aef6,AUTHORIZATION,,false +26917,ec27a237-580a-4b45-9c5b-f4ef13c9aef6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26918,ec27a237-580a-4b45-9c5b-f4ef13c9aef6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26919,ec27a237-580a-4b45-9c5b-f4ef13c9aef6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26920,44653b4e-8941-4b61-b51c-4e4327a8f7c3,LIST_ACCOUNTS,xs2aListAccounts,true -26921,44653b4e-8941-4b61-b51c-4e4327a8f7c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26921,44653b4e-8941-4b61-b51c-4e4327a8f7c3,LIST_TRANSACTIONS,xs2aListTransactions,true 26922,44653b4e-8941-4b61-b51c-4e4327a8f7c3,AUTHORIZATION,,true 26923,44653b4e-8941-4b61-b51c-4e4327a8f7c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26924,44653b4e-8941-4b61-b51c-4e4327a8f7c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26925,44653b4e-8941-4b61-b51c-4e4327a8f7c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26926,95899d43-13a0-4af6-9910-671c3c86e277,LIST_ACCOUNTS,hbciListAccounts,false -26927,95899d43-13a0-4af6-9910-671c3c86e277,LIST_TRANSACTIONS,hbciListTransactions,false -26928,95899d43-13a0-4af6-9910-671c3c86e277,AUTHORIZATION,,false -26929,95899d43-13a0-4af6-9910-671c3c86e277,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26930,95899d43-13a0-4af6-9910-671c3c86e277,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26931,95899d43-13a0-4af6-9910-671c3c86e277,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26926,7b07ab40-4927-4079-ba47-3bfa54b9187c,LIST_ACCOUNTS,hbciListAccounts,false +26927,7b07ab40-4927-4079-ba47-3bfa54b9187c,LIST_TRANSACTIONS,hbciListTransactions,false +26928,7b07ab40-4927-4079-ba47-3bfa54b9187c,AUTHORIZATION,,false +26929,7b07ab40-4927-4079-ba47-3bfa54b9187c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26930,7b07ab40-4927-4079-ba47-3bfa54b9187c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26931,7b07ab40-4927-4079-ba47-3bfa54b9187c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26932,ef981302-caab-40c6-b102-a6c45298994e,LIST_ACCOUNTS,xs2aListAccounts,true -26933,ef981302-caab-40c6-b102-a6c45298994e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26933,ef981302-caab-40c6-b102-a6c45298994e,LIST_TRANSACTIONS,xs2aListTransactions,true 26934,ef981302-caab-40c6-b102-a6c45298994e,AUTHORIZATION,,true 26935,ef981302-caab-40c6-b102-a6c45298994e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26936,ef981302-caab-40c6-b102-a6c45298994e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26937,ef981302-caab-40c6-b102-a6c45298994e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26938,c27f2cb4-d808-4082-8a65-98f1bd6dcf42,LIST_ACCOUNTS,hbciListAccounts,false -26939,c27f2cb4-d808-4082-8a65-98f1bd6dcf42,LIST_TRANSACTIONS,hbciListTransactions,false -26940,c27f2cb4-d808-4082-8a65-98f1bd6dcf42,AUTHORIZATION,,false -26941,c27f2cb4-d808-4082-8a65-98f1bd6dcf42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26942,c27f2cb4-d808-4082-8a65-98f1bd6dcf42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26943,c27f2cb4-d808-4082-8a65-98f1bd6dcf42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26938,448d54a2-cdbe-4899-a3b7-18454a491daa,LIST_ACCOUNTS,hbciListAccounts,false +26939,448d54a2-cdbe-4899-a3b7-18454a491daa,LIST_TRANSACTIONS,hbciListTransactions,false +26940,448d54a2-cdbe-4899-a3b7-18454a491daa,AUTHORIZATION,,false +26941,448d54a2-cdbe-4899-a3b7-18454a491daa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26942,448d54a2-cdbe-4899-a3b7-18454a491daa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26943,448d54a2-cdbe-4899-a3b7-18454a491daa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26944,2030211e-78b1-4967-9262-6dd9aa97cc36,LIST_ACCOUNTS,xs2aListAccounts,true -26945,2030211e-78b1-4967-9262-6dd9aa97cc36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26945,2030211e-78b1-4967-9262-6dd9aa97cc36,LIST_TRANSACTIONS,xs2aListTransactions,true 26946,2030211e-78b1-4967-9262-6dd9aa97cc36,AUTHORIZATION,,true 26947,2030211e-78b1-4967-9262-6dd9aa97cc36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26948,2030211e-78b1-4967-9262-6dd9aa97cc36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26949,2030211e-78b1-4967-9262-6dd9aa97cc36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26950,e1a259ad-9e00-404a-b4fb-a1f9f0616a4f,LIST_ACCOUNTS,hbciListAccounts,false -26951,e1a259ad-9e00-404a-b4fb-a1f9f0616a4f,LIST_TRANSACTIONS,hbciListTransactions,false -26952,e1a259ad-9e00-404a-b4fb-a1f9f0616a4f,AUTHORIZATION,,false -26953,e1a259ad-9e00-404a-b4fb-a1f9f0616a4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26954,e1a259ad-9e00-404a-b4fb-a1f9f0616a4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26955,e1a259ad-9e00-404a-b4fb-a1f9f0616a4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26950,240a2108-2517-4ed3-ab42-ac2c81e1a3ab,LIST_ACCOUNTS,hbciListAccounts,false +26951,240a2108-2517-4ed3-ab42-ac2c81e1a3ab,LIST_TRANSACTIONS,hbciListTransactions,false +26952,240a2108-2517-4ed3-ab42-ac2c81e1a3ab,AUTHORIZATION,,false +26953,240a2108-2517-4ed3-ab42-ac2c81e1a3ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26954,240a2108-2517-4ed3-ab42-ac2c81e1a3ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26955,240a2108-2517-4ed3-ab42-ac2c81e1a3ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26956,29af8add-bbe5-4469-89b4-31fdf3cdf029,LIST_ACCOUNTS,xs2aListAccounts,true -26957,29af8add-bbe5-4469-89b4-31fdf3cdf029,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26957,29af8add-bbe5-4469-89b4-31fdf3cdf029,LIST_TRANSACTIONS,xs2aListTransactions,true 26958,29af8add-bbe5-4469-89b4-31fdf3cdf029,AUTHORIZATION,,true 26959,29af8add-bbe5-4469-89b4-31fdf3cdf029,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26960,29af8add-bbe5-4469-89b4-31fdf3cdf029,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26961,29af8add-bbe5-4469-89b4-31fdf3cdf029,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26962,75907a68-473d-4b37-9d84-358dfbb12f2d,LIST_ACCOUNTS,hbciListAccounts,false -26963,75907a68-473d-4b37-9d84-358dfbb12f2d,LIST_TRANSACTIONS,hbciListTransactions,false -26964,75907a68-473d-4b37-9d84-358dfbb12f2d,AUTHORIZATION,,false -26965,75907a68-473d-4b37-9d84-358dfbb12f2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26966,75907a68-473d-4b37-9d84-358dfbb12f2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26967,75907a68-473d-4b37-9d84-358dfbb12f2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26962,2648f577-f39f-46bc-b24f-a7fd634ddd97,LIST_ACCOUNTS,hbciListAccounts,false +26963,2648f577-f39f-46bc-b24f-a7fd634ddd97,LIST_TRANSACTIONS,hbciListTransactions,false +26964,2648f577-f39f-46bc-b24f-a7fd634ddd97,AUTHORIZATION,,false +26965,2648f577-f39f-46bc-b24f-a7fd634ddd97,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26966,2648f577-f39f-46bc-b24f-a7fd634ddd97,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26967,2648f577-f39f-46bc-b24f-a7fd634ddd97,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26968,753b9137-9a3f-449c-98ff-6313b8eb62f5,LIST_ACCOUNTS,xs2aListAccounts,true -26969,753b9137-9a3f-449c-98ff-6313b8eb62f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26969,753b9137-9a3f-449c-98ff-6313b8eb62f5,LIST_TRANSACTIONS,xs2aListTransactions,true 26970,753b9137-9a3f-449c-98ff-6313b8eb62f5,AUTHORIZATION,,true 26971,753b9137-9a3f-449c-98ff-6313b8eb62f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26972,753b9137-9a3f-449c-98ff-6313b8eb62f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26973,753b9137-9a3f-449c-98ff-6313b8eb62f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26974,f4af5fb8-2dc9-4b9a-a604-61c6956e3f77,LIST_ACCOUNTS,hbciListAccounts,false -26975,f4af5fb8-2dc9-4b9a-a604-61c6956e3f77,LIST_TRANSACTIONS,hbciListTransactions,false -26976,f4af5fb8-2dc9-4b9a-a604-61c6956e3f77,AUTHORIZATION,,false -26977,f4af5fb8-2dc9-4b9a-a604-61c6956e3f77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26978,f4af5fb8-2dc9-4b9a-a604-61c6956e3f77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26979,f4af5fb8-2dc9-4b9a-a604-61c6956e3f77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26974,ff32419a-3ec3-4207-a6d8-84ebf2e2c68d,LIST_ACCOUNTS,hbciListAccounts,false +26975,ff32419a-3ec3-4207-a6d8-84ebf2e2c68d,LIST_TRANSACTIONS,hbciListTransactions,false +26976,ff32419a-3ec3-4207-a6d8-84ebf2e2c68d,AUTHORIZATION,,false +26977,ff32419a-3ec3-4207-a6d8-84ebf2e2c68d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26978,ff32419a-3ec3-4207-a6d8-84ebf2e2c68d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26979,ff32419a-3ec3-4207-a6d8-84ebf2e2c68d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26980,62f7392f-8589-4720-bc3c-36c7b8c79865,LIST_ACCOUNTS,xs2aListAccounts,true -26981,62f7392f-8589-4720-bc3c-36c7b8c79865,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26981,62f7392f-8589-4720-bc3c-36c7b8c79865,LIST_TRANSACTIONS,xs2aListTransactions,true 26982,62f7392f-8589-4720-bc3c-36c7b8c79865,AUTHORIZATION,,true 26983,62f7392f-8589-4720-bc3c-36c7b8c79865,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26984,62f7392f-8589-4720-bc3c-36c7b8c79865,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26985,62f7392f-8589-4720-bc3c-36c7b8c79865,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26986,c16f8813-9756-432a-82ec-cedd1fb7a31c,LIST_ACCOUNTS,hbciListAccounts,false -26987,c16f8813-9756-432a-82ec-cedd1fb7a31c,LIST_TRANSACTIONS,hbciListTransactions,false -26988,c16f8813-9756-432a-82ec-cedd1fb7a31c,AUTHORIZATION,,false -26989,c16f8813-9756-432a-82ec-cedd1fb7a31c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -26990,c16f8813-9756-432a-82ec-cedd1fb7a31c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -26991,c16f8813-9756-432a-82ec-cedd1fb7a31c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26986,b0daef00-248a-4fd0-bcdc-4ffb32e05b66,LIST_ACCOUNTS,hbciListAccounts,false +26987,b0daef00-248a-4fd0-bcdc-4ffb32e05b66,LIST_TRANSACTIONS,hbciListTransactions,false +26988,b0daef00-248a-4fd0-bcdc-4ffb32e05b66,AUTHORIZATION,,false +26989,b0daef00-248a-4fd0-bcdc-4ffb32e05b66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +26990,b0daef00-248a-4fd0-bcdc-4ffb32e05b66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +26991,b0daef00-248a-4fd0-bcdc-4ffb32e05b66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 26992,0f6c1d48-350b-45b1-92b4-c097fb7f4534,LIST_ACCOUNTS,xs2aListAccounts,true -26993,0f6c1d48-350b-45b1-92b4-c097fb7f4534,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +26993,0f6c1d48-350b-45b1-92b4-c097fb7f4534,LIST_TRANSACTIONS,xs2aListTransactions,true 26994,0f6c1d48-350b-45b1-92b4-c097fb7f4534,AUTHORIZATION,,true 26995,0f6c1d48-350b-45b1-92b4-c097fb7f4534,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 26996,0f6c1d48-350b-45b1-92b4-c097fb7f4534,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 26997,0f6c1d48-350b-45b1-92b4-c097fb7f4534,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -26998,a9a11f13-6f5e-4836-aba9-2742fbc3b56b,LIST_ACCOUNTS,hbciListAccounts,false -26999,a9a11f13-6f5e-4836-aba9-2742fbc3b56b,LIST_TRANSACTIONS,hbciListTransactions,false -27000,a9a11f13-6f5e-4836-aba9-2742fbc3b56b,AUTHORIZATION,,false -27001,a9a11f13-6f5e-4836-aba9-2742fbc3b56b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27002,a9a11f13-6f5e-4836-aba9-2742fbc3b56b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27003,a9a11f13-6f5e-4836-aba9-2742fbc3b56b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +26998,69bda160-25e7-49e4-b5d2-619c93983050,LIST_ACCOUNTS,hbciListAccounts,false +26999,69bda160-25e7-49e4-b5d2-619c93983050,LIST_TRANSACTIONS,hbciListTransactions,false +27000,69bda160-25e7-49e4-b5d2-619c93983050,AUTHORIZATION,,false +27001,69bda160-25e7-49e4-b5d2-619c93983050,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27002,69bda160-25e7-49e4-b5d2-619c93983050,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27003,69bda160-25e7-49e4-b5d2-619c93983050,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27004,9706ee8a-61f6-468c-b4b1-4847521bb73f,LIST_ACCOUNTS,xs2aListAccounts,true -27005,9706ee8a-61f6-468c-b4b1-4847521bb73f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27005,9706ee8a-61f6-468c-b4b1-4847521bb73f,LIST_TRANSACTIONS,xs2aListTransactions,true 27006,9706ee8a-61f6-468c-b4b1-4847521bb73f,AUTHORIZATION,,true 27007,9706ee8a-61f6-468c-b4b1-4847521bb73f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27008,9706ee8a-61f6-468c-b4b1-4847521bb73f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27009,9706ee8a-61f6-468c-b4b1-4847521bb73f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27010,6bad966a-09c9-4621-ba8e-49036ac283c1,LIST_ACCOUNTS,hbciListAccounts,false -27011,6bad966a-09c9-4621-ba8e-49036ac283c1,LIST_TRANSACTIONS,hbciListTransactions,false -27012,6bad966a-09c9-4621-ba8e-49036ac283c1,AUTHORIZATION,,false -27013,6bad966a-09c9-4621-ba8e-49036ac283c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27014,6bad966a-09c9-4621-ba8e-49036ac283c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27015,6bad966a-09c9-4621-ba8e-49036ac283c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27010,c27031b3-c4cc-4822-a3a1-e2ea2db7c670,LIST_ACCOUNTS,hbciListAccounts,false +27011,c27031b3-c4cc-4822-a3a1-e2ea2db7c670,LIST_TRANSACTIONS,hbciListTransactions,false +27012,c27031b3-c4cc-4822-a3a1-e2ea2db7c670,AUTHORIZATION,,false +27013,c27031b3-c4cc-4822-a3a1-e2ea2db7c670,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27014,c27031b3-c4cc-4822-a3a1-e2ea2db7c670,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27015,c27031b3-c4cc-4822-a3a1-e2ea2db7c670,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27016,2a28b9c3-a68f-4245-9529-d3c28678e26a,LIST_ACCOUNTS,xs2aListAccounts,true -27017,2a28b9c3-a68f-4245-9529-d3c28678e26a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27017,2a28b9c3-a68f-4245-9529-d3c28678e26a,LIST_TRANSACTIONS,xs2aListTransactions,true 27018,2a28b9c3-a68f-4245-9529-d3c28678e26a,AUTHORIZATION,,true 27019,2a28b9c3-a68f-4245-9529-d3c28678e26a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27020,2a28b9c3-a68f-4245-9529-d3c28678e26a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27021,2a28b9c3-a68f-4245-9529-d3c28678e26a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27022,489f8ee3-5c22-489b-b858-efbd5df2042f,LIST_ACCOUNTS,hbciListAccounts,false -27023,489f8ee3-5c22-489b-b858-efbd5df2042f,LIST_TRANSACTIONS,hbciListTransactions,false -27024,489f8ee3-5c22-489b-b858-efbd5df2042f,AUTHORIZATION,,false -27025,489f8ee3-5c22-489b-b858-efbd5df2042f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27026,489f8ee3-5c22-489b-b858-efbd5df2042f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27027,489f8ee3-5c22-489b-b858-efbd5df2042f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27022,d24f84b4-4518-4d35-87f4-1b4c102349ba,LIST_ACCOUNTS,hbciListAccounts,false +27023,d24f84b4-4518-4d35-87f4-1b4c102349ba,LIST_TRANSACTIONS,hbciListTransactions,false +27024,d24f84b4-4518-4d35-87f4-1b4c102349ba,AUTHORIZATION,,false +27025,d24f84b4-4518-4d35-87f4-1b4c102349ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27026,d24f84b4-4518-4d35-87f4-1b4c102349ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27027,d24f84b4-4518-4d35-87f4-1b4c102349ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27028,bcd95e87-dc3d-4723-ac2e-fb7bb8e78977,LIST_ACCOUNTS,xs2aListAccounts,true -27029,bcd95e87-dc3d-4723-ac2e-fb7bb8e78977,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27029,bcd95e87-dc3d-4723-ac2e-fb7bb8e78977,LIST_TRANSACTIONS,xs2aListTransactions,true 27030,bcd95e87-dc3d-4723-ac2e-fb7bb8e78977,AUTHORIZATION,,true 27031,bcd95e87-dc3d-4723-ac2e-fb7bb8e78977,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27032,bcd95e87-dc3d-4723-ac2e-fb7bb8e78977,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27033,bcd95e87-dc3d-4723-ac2e-fb7bb8e78977,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27034,3cfdb5f7-89d0-4d9a-874d-52ccacc327b1,LIST_ACCOUNTS,hbciListAccounts,false -27035,3cfdb5f7-89d0-4d9a-874d-52ccacc327b1,LIST_TRANSACTIONS,hbciListTransactions,false -27036,3cfdb5f7-89d0-4d9a-874d-52ccacc327b1,AUTHORIZATION,,false -27037,3cfdb5f7-89d0-4d9a-874d-52ccacc327b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27038,3cfdb5f7-89d0-4d9a-874d-52ccacc327b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27039,3cfdb5f7-89d0-4d9a-874d-52ccacc327b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27034,bbb8463a-8c98-4ba8-8842-b9b807f32a4f,LIST_ACCOUNTS,hbciListAccounts,false +27035,bbb8463a-8c98-4ba8-8842-b9b807f32a4f,LIST_TRANSACTIONS,hbciListTransactions,false +27036,bbb8463a-8c98-4ba8-8842-b9b807f32a4f,AUTHORIZATION,,false +27037,bbb8463a-8c98-4ba8-8842-b9b807f32a4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27038,bbb8463a-8c98-4ba8-8842-b9b807f32a4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27039,bbb8463a-8c98-4ba8-8842-b9b807f32a4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27040,44540a61-093a-4c34-8333-9ff1d45fb812,LIST_ACCOUNTS,xs2aListAccounts,true -27041,44540a61-093a-4c34-8333-9ff1d45fb812,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27041,44540a61-093a-4c34-8333-9ff1d45fb812,LIST_TRANSACTIONS,xs2aListTransactions,true 27042,44540a61-093a-4c34-8333-9ff1d45fb812,AUTHORIZATION,,true 27043,44540a61-093a-4c34-8333-9ff1d45fb812,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27044,44540a61-093a-4c34-8333-9ff1d45fb812,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27045,44540a61-093a-4c34-8333-9ff1d45fb812,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27046,93851d77-0156-463a-b22a-816ad2ded340,LIST_ACCOUNTS,hbciListAccounts,false -27047,93851d77-0156-463a-b22a-816ad2ded340,LIST_TRANSACTIONS,hbciListTransactions,false -27048,93851d77-0156-463a-b22a-816ad2ded340,AUTHORIZATION,,false -27049,93851d77-0156-463a-b22a-816ad2ded340,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27050,93851d77-0156-463a-b22a-816ad2ded340,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27051,93851d77-0156-463a-b22a-816ad2ded340,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27046,cf17df5f-a93d-4656-90de-5b9b1ce5053e,LIST_ACCOUNTS,hbciListAccounts,false +27047,cf17df5f-a93d-4656-90de-5b9b1ce5053e,LIST_TRANSACTIONS,hbciListTransactions,false +27048,cf17df5f-a93d-4656-90de-5b9b1ce5053e,AUTHORIZATION,,false +27049,cf17df5f-a93d-4656-90de-5b9b1ce5053e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27050,cf17df5f-a93d-4656-90de-5b9b1ce5053e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27051,cf17df5f-a93d-4656-90de-5b9b1ce5053e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27052,9a873fe0-4418-43bb-a713-b57f683adac3,LIST_ACCOUNTS,xs2aListAccounts,true -27053,9a873fe0-4418-43bb-a713-b57f683adac3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27053,9a873fe0-4418-43bb-a713-b57f683adac3,LIST_TRANSACTIONS,xs2aListTransactions,true 27054,9a873fe0-4418-43bb-a713-b57f683adac3,AUTHORIZATION,,true 27055,9a873fe0-4418-43bb-a713-b57f683adac3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27056,9a873fe0-4418-43bb-a713-b57f683adac3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27057,9a873fe0-4418-43bb-a713-b57f683adac3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27058,63470afb-2cab-466f-a72c-e99830ff0cb9,LIST_ACCOUNTS,hbciListAccounts,false -27059,63470afb-2cab-466f-a72c-e99830ff0cb9,LIST_TRANSACTIONS,hbciListTransactions,false -27060,63470afb-2cab-466f-a72c-e99830ff0cb9,AUTHORIZATION,,false -27061,63470afb-2cab-466f-a72c-e99830ff0cb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27062,63470afb-2cab-466f-a72c-e99830ff0cb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27063,63470afb-2cab-466f-a72c-e99830ff0cb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27058,bb0774fb-4ad7-4779-95ca-c452969262a6,LIST_ACCOUNTS,hbciListAccounts,false +27059,bb0774fb-4ad7-4779-95ca-c452969262a6,LIST_TRANSACTIONS,hbciListTransactions,false +27060,bb0774fb-4ad7-4779-95ca-c452969262a6,AUTHORIZATION,,false +27061,bb0774fb-4ad7-4779-95ca-c452969262a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27062,bb0774fb-4ad7-4779-95ca-c452969262a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27063,bb0774fb-4ad7-4779-95ca-c452969262a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27064,849e14b8-f8e6-46c9-9d4f-0caa65e7924b,LIST_ACCOUNTS,xs2aListAccounts,true -27065,849e14b8-f8e6-46c9-9d4f-0caa65e7924b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27065,849e14b8-f8e6-46c9-9d4f-0caa65e7924b,LIST_TRANSACTIONS,xs2aListTransactions,true 27066,849e14b8-f8e6-46c9-9d4f-0caa65e7924b,AUTHORIZATION,,true 27067,849e14b8-f8e6-46c9-9d4f-0caa65e7924b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27068,849e14b8-f8e6-46c9-9d4f-0caa65e7924b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27069,849e14b8-f8e6-46c9-9d4f-0caa65e7924b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27070,f1fe9302-9d11-418c-965e-a48795a1b1d8,LIST_ACCOUNTS,hbciListAccounts,false -27071,f1fe9302-9d11-418c-965e-a48795a1b1d8,LIST_TRANSACTIONS,hbciListTransactions,false -27072,f1fe9302-9d11-418c-965e-a48795a1b1d8,AUTHORIZATION,,false -27073,f1fe9302-9d11-418c-965e-a48795a1b1d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27074,f1fe9302-9d11-418c-965e-a48795a1b1d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27075,f1fe9302-9d11-418c-965e-a48795a1b1d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27070,1738a306-4fd3-4779-bbb5-0dcc00c15c48,LIST_ACCOUNTS,hbciListAccounts,false +27071,1738a306-4fd3-4779-bbb5-0dcc00c15c48,LIST_TRANSACTIONS,hbciListTransactions,false +27072,1738a306-4fd3-4779-bbb5-0dcc00c15c48,AUTHORIZATION,,false +27073,1738a306-4fd3-4779-bbb5-0dcc00c15c48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27074,1738a306-4fd3-4779-bbb5-0dcc00c15c48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27075,1738a306-4fd3-4779-bbb5-0dcc00c15c48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27076,31b1f117-9d5c-44fc-97af-262748b7ede6,LIST_ACCOUNTS,xs2aListAccounts,true -27077,31b1f117-9d5c-44fc-97af-262748b7ede6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27077,31b1f117-9d5c-44fc-97af-262748b7ede6,LIST_TRANSACTIONS,xs2aListTransactions,true 27078,31b1f117-9d5c-44fc-97af-262748b7ede6,AUTHORIZATION,,true 27079,31b1f117-9d5c-44fc-97af-262748b7ede6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27080,31b1f117-9d5c-44fc-97af-262748b7ede6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27081,31b1f117-9d5c-44fc-97af-262748b7ede6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27082,c009ea60-9267-4d96-9b5a-71ccb3c04ae4,LIST_ACCOUNTS,hbciListAccounts,false -27083,c009ea60-9267-4d96-9b5a-71ccb3c04ae4,LIST_TRANSACTIONS,hbciListTransactions,false -27084,c009ea60-9267-4d96-9b5a-71ccb3c04ae4,AUTHORIZATION,,false -27085,c009ea60-9267-4d96-9b5a-71ccb3c04ae4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27086,c009ea60-9267-4d96-9b5a-71ccb3c04ae4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27087,c009ea60-9267-4d96-9b5a-71ccb3c04ae4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27082,c7c3d209-b833-4932-a311-a680a4164e1f,LIST_ACCOUNTS,hbciListAccounts,false +27083,c7c3d209-b833-4932-a311-a680a4164e1f,LIST_TRANSACTIONS,hbciListTransactions,false +27084,c7c3d209-b833-4932-a311-a680a4164e1f,AUTHORIZATION,,false +27085,c7c3d209-b833-4932-a311-a680a4164e1f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27086,c7c3d209-b833-4932-a311-a680a4164e1f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27087,c7c3d209-b833-4932-a311-a680a4164e1f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27088,fc9ad209-f940-490d-b7d2-164bb2a22d2e,LIST_ACCOUNTS,xs2aListAccounts,true -27089,fc9ad209-f940-490d-b7d2-164bb2a22d2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27089,fc9ad209-f940-490d-b7d2-164bb2a22d2e,LIST_TRANSACTIONS,xs2aListTransactions,true 27090,fc9ad209-f940-490d-b7d2-164bb2a22d2e,AUTHORIZATION,,true 27091,fc9ad209-f940-490d-b7d2-164bb2a22d2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27092,fc9ad209-f940-490d-b7d2-164bb2a22d2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27093,fc9ad209-f940-490d-b7d2-164bb2a22d2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27094,544f6c57-7ec9-4dad-8f80-1cf7f7b910f6,LIST_ACCOUNTS,hbciListAccounts,false -27095,544f6c57-7ec9-4dad-8f80-1cf7f7b910f6,LIST_TRANSACTIONS,hbciListTransactions,false -27096,544f6c57-7ec9-4dad-8f80-1cf7f7b910f6,AUTHORIZATION,,false -27097,544f6c57-7ec9-4dad-8f80-1cf7f7b910f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27098,544f6c57-7ec9-4dad-8f80-1cf7f7b910f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27099,544f6c57-7ec9-4dad-8f80-1cf7f7b910f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27094,bfa0e5f1-6fb8-4956-8b2c-756465510b7a,LIST_ACCOUNTS,hbciListAccounts,false +27095,bfa0e5f1-6fb8-4956-8b2c-756465510b7a,LIST_TRANSACTIONS,hbciListTransactions,false +27096,bfa0e5f1-6fb8-4956-8b2c-756465510b7a,AUTHORIZATION,,false +27097,bfa0e5f1-6fb8-4956-8b2c-756465510b7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27098,bfa0e5f1-6fb8-4956-8b2c-756465510b7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27099,bfa0e5f1-6fb8-4956-8b2c-756465510b7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27100,9876e6a1-e78e-4ad6-a53d-0258521f831d,LIST_ACCOUNTS,xs2aListAccounts,true -27101,9876e6a1-e78e-4ad6-a53d-0258521f831d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27101,9876e6a1-e78e-4ad6-a53d-0258521f831d,LIST_TRANSACTIONS,xs2aListTransactions,true 27102,9876e6a1-e78e-4ad6-a53d-0258521f831d,AUTHORIZATION,,true 27103,9876e6a1-e78e-4ad6-a53d-0258521f831d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27104,9876e6a1-e78e-4ad6-a53d-0258521f831d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27105,9876e6a1-e78e-4ad6-a53d-0258521f831d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27106,4abbc0aa-8c9e-4409-a77f-5697f9109140,LIST_ACCOUNTS,hbciListAccounts,false -27107,4abbc0aa-8c9e-4409-a77f-5697f9109140,LIST_TRANSACTIONS,hbciListTransactions,false -27108,4abbc0aa-8c9e-4409-a77f-5697f9109140,AUTHORIZATION,,false -27109,4abbc0aa-8c9e-4409-a77f-5697f9109140,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27110,4abbc0aa-8c9e-4409-a77f-5697f9109140,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27111,4abbc0aa-8c9e-4409-a77f-5697f9109140,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27106,a2040ca6-8713-4afd-be8d-d865a357abe6,LIST_ACCOUNTS,hbciListAccounts,false +27107,a2040ca6-8713-4afd-be8d-d865a357abe6,LIST_TRANSACTIONS,hbciListTransactions,false +27108,a2040ca6-8713-4afd-be8d-d865a357abe6,AUTHORIZATION,,false +27109,a2040ca6-8713-4afd-be8d-d865a357abe6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27110,a2040ca6-8713-4afd-be8d-d865a357abe6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27111,a2040ca6-8713-4afd-be8d-d865a357abe6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27112,f21a1665-5725-41a4-9c2a-8d08139e1363,LIST_ACCOUNTS,xs2aListAccounts,true -27113,f21a1665-5725-41a4-9c2a-8d08139e1363,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27113,f21a1665-5725-41a4-9c2a-8d08139e1363,LIST_TRANSACTIONS,xs2aListTransactions,true 27114,f21a1665-5725-41a4-9c2a-8d08139e1363,AUTHORIZATION,,true 27115,f21a1665-5725-41a4-9c2a-8d08139e1363,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27116,f21a1665-5725-41a4-9c2a-8d08139e1363,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27117,f21a1665-5725-41a4-9c2a-8d08139e1363,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27118,b3ad12f4-f0c1-4bd8-9289-a90d6f22fd54,LIST_ACCOUNTS,hbciListAccounts,false -27119,b3ad12f4-f0c1-4bd8-9289-a90d6f22fd54,LIST_TRANSACTIONS,hbciListTransactions,false -27120,b3ad12f4-f0c1-4bd8-9289-a90d6f22fd54,AUTHORIZATION,,false -27121,b3ad12f4-f0c1-4bd8-9289-a90d6f22fd54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27122,b3ad12f4-f0c1-4bd8-9289-a90d6f22fd54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27123,b3ad12f4-f0c1-4bd8-9289-a90d6f22fd54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27118,d39373a0-055d-4a47-907c-f0c3cc48ad2b,LIST_ACCOUNTS,hbciListAccounts,false +27119,d39373a0-055d-4a47-907c-f0c3cc48ad2b,LIST_TRANSACTIONS,hbciListTransactions,false +27120,d39373a0-055d-4a47-907c-f0c3cc48ad2b,AUTHORIZATION,,false +27121,d39373a0-055d-4a47-907c-f0c3cc48ad2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27122,d39373a0-055d-4a47-907c-f0c3cc48ad2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27123,d39373a0-055d-4a47-907c-f0c3cc48ad2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27124,29b6e4eb-89ea-430c-aaf5-34bb90e5580e,LIST_ACCOUNTS,xs2aListAccounts,true -27125,29b6e4eb-89ea-430c-aaf5-34bb90e5580e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27125,29b6e4eb-89ea-430c-aaf5-34bb90e5580e,LIST_TRANSACTIONS,xs2aListTransactions,true 27126,29b6e4eb-89ea-430c-aaf5-34bb90e5580e,AUTHORIZATION,,true 27127,29b6e4eb-89ea-430c-aaf5-34bb90e5580e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27128,29b6e4eb-89ea-430c-aaf5-34bb90e5580e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27129,29b6e4eb-89ea-430c-aaf5-34bb90e5580e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27130,ca9a3129-893a-4f81-9bab-a5b1ab8ddb08,LIST_ACCOUNTS,hbciListAccounts,false -27131,ca9a3129-893a-4f81-9bab-a5b1ab8ddb08,LIST_TRANSACTIONS,hbciListTransactions,false -27132,ca9a3129-893a-4f81-9bab-a5b1ab8ddb08,AUTHORIZATION,,false -27133,ca9a3129-893a-4f81-9bab-a5b1ab8ddb08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27134,ca9a3129-893a-4f81-9bab-a5b1ab8ddb08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27135,ca9a3129-893a-4f81-9bab-a5b1ab8ddb08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27130,116055a0-4832-41ab-85e1-9f399023a6c6,LIST_ACCOUNTS,hbciListAccounts,false +27131,116055a0-4832-41ab-85e1-9f399023a6c6,LIST_TRANSACTIONS,hbciListTransactions,false +27132,116055a0-4832-41ab-85e1-9f399023a6c6,AUTHORIZATION,,false +27133,116055a0-4832-41ab-85e1-9f399023a6c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27134,116055a0-4832-41ab-85e1-9f399023a6c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27135,116055a0-4832-41ab-85e1-9f399023a6c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27136,6744460f-09ff-4b3b-817e-54da7f48c610,LIST_ACCOUNTS,xs2aListAccounts,true -27137,6744460f-09ff-4b3b-817e-54da7f48c610,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27137,6744460f-09ff-4b3b-817e-54da7f48c610,LIST_TRANSACTIONS,xs2aListTransactions,true 27138,6744460f-09ff-4b3b-817e-54da7f48c610,AUTHORIZATION,,true 27139,6744460f-09ff-4b3b-817e-54da7f48c610,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27140,6744460f-09ff-4b3b-817e-54da7f48c610,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27141,6744460f-09ff-4b3b-817e-54da7f48c610,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27142,e5c3e808-336c-4e21-9d73-32b6e69decd0,LIST_ACCOUNTS,hbciListAccounts,false -27143,e5c3e808-336c-4e21-9d73-32b6e69decd0,LIST_TRANSACTIONS,hbciListTransactions,false -27144,e5c3e808-336c-4e21-9d73-32b6e69decd0,AUTHORIZATION,,false -27145,e5c3e808-336c-4e21-9d73-32b6e69decd0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27146,e5c3e808-336c-4e21-9d73-32b6e69decd0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27147,e5c3e808-336c-4e21-9d73-32b6e69decd0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27142,9dbb7346-d198-49a4-9a74-0a42dbcd37db,LIST_ACCOUNTS,hbciListAccounts,false +27143,9dbb7346-d198-49a4-9a74-0a42dbcd37db,LIST_TRANSACTIONS,hbciListTransactions,false +27144,9dbb7346-d198-49a4-9a74-0a42dbcd37db,AUTHORIZATION,,false +27145,9dbb7346-d198-49a4-9a74-0a42dbcd37db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27146,9dbb7346-d198-49a4-9a74-0a42dbcd37db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27147,9dbb7346-d198-49a4-9a74-0a42dbcd37db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27148,6ac765fe-59ff-4034-b212-a83aa6284797,LIST_ACCOUNTS,xs2aListAccounts,true -27149,6ac765fe-59ff-4034-b212-a83aa6284797,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27149,6ac765fe-59ff-4034-b212-a83aa6284797,LIST_TRANSACTIONS,xs2aListTransactions,true 27150,6ac765fe-59ff-4034-b212-a83aa6284797,AUTHORIZATION,,true 27151,6ac765fe-59ff-4034-b212-a83aa6284797,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27152,6ac765fe-59ff-4034-b212-a83aa6284797,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27153,6ac765fe-59ff-4034-b212-a83aa6284797,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27154,1a4873c0-6b4a-49da-91bb-ba5c7a866574,LIST_ACCOUNTS,hbciListAccounts,false -27155,1a4873c0-6b4a-49da-91bb-ba5c7a866574,LIST_TRANSACTIONS,hbciListTransactions,false -27156,1a4873c0-6b4a-49da-91bb-ba5c7a866574,AUTHORIZATION,,false -27157,1a4873c0-6b4a-49da-91bb-ba5c7a866574,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27158,1a4873c0-6b4a-49da-91bb-ba5c7a866574,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27159,1a4873c0-6b4a-49da-91bb-ba5c7a866574,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27154,41cb4ce9-6f27-4bde-acc4-2953be95731c,LIST_ACCOUNTS,hbciListAccounts,false +27155,41cb4ce9-6f27-4bde-acc4-2953be95731c,LIST_TRANSACTIONS,hbciListTransactions,false +27156,41cb4ce9-6f27-4bde-acc4-2953be95731c,AUTHORIZATION,,false +27157,41cb4ce9-6f27-4bde-acc4-2953be95731c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27158,41cb4ce9-6f27-4bde-acc4-2953be95731c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27159,41cb4ce9-6f27-4bde-acc4-2953be95731c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27160,461fcb37-e478-447a-880c-4dab5fde5dba,LIST_ACCOUNTS,xs2aListAccounts,true -27161,461fcb37-e478-447a-880c-4dab5fde5dba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27161,461fcb37-e478-447a-880c-4dab5fde5dba,LIST_TRANSACTIONS,xs2aListTransactions,true 27162,461fcb37-e478-447a-880c-4dab5fde5dba,AUTHORIZATION,,true 27163,461fcb37-e478-447a-880c-4dab5fde5dba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27164,461fcb37-e478-447a-880c-4dab5fde5dba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27165,461fcb37-e478-447a-880c-4dab5fde5dba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27166,7a1e27b4-809c-46f4-a6b2-a4dc39987bf8,LIST_ACCOUNTS,hbciListAccounts,false -27167,7a1e27b4-809c-46f4-a6b2-a4dc39987bf8,LIST_TRANSACTIONS,hbciListTransactions,false -27168,7a1e27b4-809c-46f4-a6b2-a4dc39987bf8,AUTHORIZATION,,false -27169,7a1e27b4-809c-46f4-a6b2-a4dc39987bf8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27170,7a1e27b4-809c-46f4-a6b2-a4dc39987bf8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27171,7a1e27b4-809c-46f4-a6b2-a4dc39987bf8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27166,a083e824-99f0-4093-90a2-d7efbd8ca517,LIST_ACCOUNTS,hbciListAccounts,false +27167,a083e824-99f0-4093-90a2-d7efbd8ca517,LIST_TRANSACTIONS,hbciListTransactions,false +27168,a083e824-99f0-4093-90a2-d7efbd8ca517,AUTHORIZATION,,false +27169,a083e824-99f0-4093-90a2-d7efbd8ca517,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27170,a083e824-99f0-4093-90a2-d7efbd8ca517,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27171,a083e824-99f0-4093-90a2-d7efbd8ca517,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27172,dc951789-31eb-4845-8cb3-852e9c55e28f,LIST_ACCOUNTS,xs2aListAccounts,true -27173,dc951789-31eb-4845-8cb3-852e9c55e28f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27173,dc951789-31eb-4845-8cb3-852e9c55e28f,LIST_TRANSACTIONS,xs2aListTransactions,true 27174,dc951789-31eb-4845-8cb3-852e9c55e28f,AUTHORIZATION,,true 27175,dc951789-31eb-4845-8cb3-852e9c55e28f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27176,dc951789-31eb-4845-8cb3-852e9c55e28f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27177,dc951789-31eb-4845-8cb3-852e9c55e28f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27178,1f7ed9dc-1975-4638-b73f-356eadb06b5e,LIST_ACCOUNTS,hbciListAccounts,false -27179,1f7ed9dc-1975-4638-b73f-356eadb06b5e,LIST_TRANSACTIONS,hbciListTransactions,false -27180,1f7ed9dc-1975-4638-b73f-356eadb06b5e,AUTHORIZATION,,false -27181,1f7ed9dc-1975-4638-b73f-356eadb06b5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27182,1f7ed9dc-1975-4638-b73f-356eadb06b5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27183,1f7ed9dc-1975-4638-b73f-356eadb06b5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27178,f79c4f26-6ef9-406f-905e-6a73b4795e6d,LIST_ACCOUNTS,hbciListAccounts,false +27179,f79c4f26-6ef9-406f-905e-6a73b4795e6d,LIST_TRANSACTIONS,hbciListTransactions,false +27180,f79c4f26-6ef9-406f-905e-6a73b4795e6d,AUTHORIZATION,,false +27181,f79c4f26-6ef9-406f-905e-6a73b4795e6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27182,f79c4f26-6ef9-406f-905e-6a73b4795e6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27183,f79c4f26-6ef9-406f-905e-6a73b4795e6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27184,fefcc918-d0a0-4ea4-a755-c3162395fede,LIST_ACCOUNTS,xs2aListAccounts,true -27185,fefcc918-d0a0-4ea4-a755-c3162395fede,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27185,fefcc918-d0a0-4ea4-a755-c3162395fede,LIST_TRANSACTIONS,xs2aListTransactions,true 27186,fefcc918-d0a0-4ea4-a755-c3162395fede,AUTHORIZATION,,true 27187,fefcc918-d0a0-4ea4-a755-c3162395fede,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27188,fefcc918-d0a0-4ea4-a755-c3162395fede,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27189,fefcc918-d0a0-4ea4-a755-c3162395fede,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27190,091a7c35-43bd-4eb0-a5e4-59dc2da978cd,LIST_ACCOUNTS,hbciListAccounts,false -27191,091a7c35-43bd-4eb0-a5e4-59dc2da978cd,LIST_TRANSACTIONS,hbciListTransactions,false -27192,091a7c35-43bd-4eb0-a5e4-59dc2da978cd,AUTHORIZATION,,false -27193,091a7c35-43bd-4eb0-a5e4-59dc2da978cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27194,091a7c35-43bd-4eb0-a5e4-59dc2da978cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27195,091a7c35-43bd-4eb0-a5e4-59dc2da978cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27190,7f7e9bc2-bcad-41c2-b502-973afe39ea45,LIST_ACCOUNTS,hbciListAccounts,false +27191,7f7e9bc2-bcad-41c2-b502-973afe39ea45,LIST_TRANSACTIONS,hbciListTransactions,false +27192,7f7e9bc2-bcad-41c2-b502-973afe39ea45,AUTHORIZATION,,false +27193,7f7e9bc2-bcad-41c2-b502-973afe39ea45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27194,7f7e9bc2-bcad-41c2-b502-973afe39ea45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27195,7f7e9bc2-bcad-41c2-b502-973afe39ea45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27196,d3723e47-2c44-4034-8d0c-6e0897b92c39,LIST_ACCOUNTS,xs2aListAccounts,true -27197,d3723e47-2c44-4034-8d0c-6e0897b92c39,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27197,d3723e47-2c44-4034-8d0c-6e0897b92c39,LIST_TRANSACTIONS,xs2aListTransactions,true 27198,d3723e47-2c44-4034-8d0c-6e0897b92c39,AUTHORIZATION,,true 27199,d3723e47-2c44-4034-8d0c-6e0897b92c39,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27200,d3723e47-2c44-4034-8d0c-6e0897b92c39,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27201,d3723e47-2c44-4034-8d0c-6e0897b92c39,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27202,688e645a-ad12-4412-b232-defad0c4fcbc,LIST_ACCOUNTS,hbciListAccounts,false -27203,688e645a-ad12-4412-b232-defad0c4fcbc,LIST_TRANSACTIONS,hbciListTransactions,false -27204,688e645a-ad12-4412-b232-defad0c4fcbc,AUTHORIZATION,,false -27205,688e645a-ad12-4412-b232-defad0c4fcbc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27206,688e645a-ad12-4412-b232-defad0c4fcbc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27207,688e645a-ad12-4412-b232-defad0c4fcbc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27202,becb6747-9c39-44bf-b797-3950a07cae9c,LIST_ACCOUNTS,hbciListAccounts,false +27203,becb6747-9c39-44bf-b797-3950a07cae9c,LIST_TRANSACTIONS,hbciListTransactions,false +27204,becb6747-9c39-44bf-b797-3950a07cae9c,AUTHORIZATION,,false +27205,becb6747-9c39-44bf-b797-3950a07cae9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27206,becb6747-9c39-44bf-b797-3950a07cae9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27207,becb6747-9c39-44bf-b797-3950a07cae9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27208,b4e06d69-8329-42cc-88b9-a29a72c737a2,LIST_ACCOUNTS,xs2aListAccounts,true -27209,b4e06d69-8329-42cc-88b9-a29a72c737a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27209,b4e06d69-8329-42cc-88b9-a29a72c737a2,LIST_TRANSACTIONS,xs2aListTransactions,true 27210,b4e06d69-8329-42cc-88b9-a29a72c737a2,AUTHORIZATION,,true 27211,b4e06d69-8329-42cc-88b9-a29a72c737a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27212,b4e06d69-8329-42cc-88b9-a29a72c737a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27213,b4e06d69-8329-42cc-88b9-a29a72c737a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27214,36ebdc75-9009-4f68-9a48-baeb7bd2b3b8,LIST_ACCOUNTS,hbciListAccounts,false -27215,36ebdc75-9009-4f68-9a48-baeb7bd2b3b8,LIST_TRANSACTIONS,hbciListTransactions,false -27216,36ebdc75-9009-4f68-9a48-baeb7bd2b3b8,AUTHORIZATION,,false -27217,36ebdc75-9009-4f68-9a48-baeb7bd2b3b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27218,36ebdc75-9009-4f68-9a48-baeb7bd2b3b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27219,36ebdc75-9009-4f68-9a48-baeb7bd2b3b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27214,ad12036b-ca8f-4ed8-8d51-69c5872c4fd1,LIST_ACCOUNTS,hbciListAccounts,false +27215,ad12036b-ca8f-4ed8-8d51-69c5872c4fd1,LIST_TRANSACTIONS,hbciListTransactions,false +27216,ad12036b-ca8f-4ed8-8d51-69c5872c4fd1,AUTHORIZATION,,false +27217,ad12036b-ca8f-4ed8-8d51-69c5872c4fd1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27218,ad12036b-ca8f-4ed8-8d51-69c5872c4fd1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27219,ad12036b-ca8f-4ed8-8d51-69c5872c4fd1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27220,a63db492-4dab-48ec-9b9f-1821b9b9559f,LIST_ACCOUNTS,xs2aListAccounts,true -27221,a63db492-4dab-48ec-9b9f-1821b9b9559f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27221,a63db492-4dab-48ec-9b9f-1821b9b9559f,LIST_TRANSACTIONS,xs2aListTransactions,true 27222,a63db492-4dab-48ec-9b9f-1821b9b9559f,AUTHORIZATION,,true 27223,a63db492-4dab-48ec-9b9f-1821b9b9559f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27224,a63db492-4dab-48ec-9b9f-1821b9b9559f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27225,a63db492-4dab-48ec-9b9f-1821b9b9559f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27226,9f117b4e-3cba-456b-aa20-d5b13663ab05,LIST_ACCOUNTS,hbciListAccounts,false -27227,9f117b4e-3cba-456b-aa20-d5b13663ab05,LIST_TRANSACTIONS,hbciListTransactions,false -27228,9f117b4e-3cba-456b-aa20-d5b13663ab05,AUTHORIZATION,,false -27229,9f117b4e-3cba-456b-aa20-d5b13663ab05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27230,9f117b4e-3cba-456b-aa20-d5b13663ab05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27231,9f117b4e-3cba-456b-aa20-d5b13663ab05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27226,e5f18a68-4092-4ae0-9b4b-71d2d54aed88,LIST_ACCOUNTS,hbciListAccounts,false +27227,e5f18a68-4092-4ae0-9b4b-71d2d54aed88,LIST_TRANSACTIONS,hbciListTransactions,false +27228,e5f18a68-4092-4ae0-9b4b-71d2d54aed88,AUTHORIZATION,,false +27229,e5f18a68-4092-4ae0-9b4b-71d2d54aed88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27230,e5f18a68-4092-4ae0-9b4b-71d2d54aed88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27231,e5f18a68-4092-4ae0-9b4b-71d2d54aed88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27232,bf2cd6bb-52eb-48c7-8010-0814ddd1f1f5,LIST_ACCOUNTS,xs2aListAccounts,true -27233,bf2cd6bb-52eb-48c7-8010-0814ddd1f1f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27233,bf2cd6bb-52eb-48c7-8010-0814ddd1f1f5,LIST_TRANSACTIONS,xs2aListTransactions,true 27234,bf2cd6bb-52eb-48c7-8010-0814ddd1f1f5,AUTHORIZATION,,true 27235,bf2cd6bb-52eb-48c7-8010-0814ddd1f1f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27236,bf2cd6bb-52eb-48c7-8010-0814ddd1f1f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27237,bf2cd6bb-52eb-48c7-8010-0814ddd1f1f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27238,813e8296-ed80-493e-8fd3-7201fff0888d,LIST_ACCOUNTS,hbciListAccounts,false -27239,813e8296-ed80-493e-8fd3-7201fff0888d,LIST_TRANSACTIONS,hbciListTransactions,false -27240,813e8296-ed80-493e-8fd3-7201fff0888d,AUTHORIZATION,,false -27241,813e8296-ed80-493e-8fd3-7201fff0888d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27242,813e8296-ed80-493e-8fd3-7201fff0888d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27243,813e8296-ed80-493e-8fd3-7201fff0888d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27238,1caf7e51-609a-4e5f-a922-7ad17a5acf9e,LIST_ACCOUNTS,hbciListAccounts,false +27239,1caf7e51-609a-4e5f-a922-7ad17a5acf9e,LIST_TRANSACTIONS,hbciListTransactions,false +27240,1caf7e51-609a-4e5f-a922-7ad17a5acf9e,AUTHORIZATION,,false +27241,1caf7e51-609a-4e5f-a922-7ad17a5acf9e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27242,1caf7e51-609a-4e5f-a922-7ad17a5acf9e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27243,1caf7e51-609a-4e5f-a922-7ad17a5acf9e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27244,e792efed-6c15-4f49-9b2b-91270a49e167,LIST_ACCOUNTS,xs2aListAccounts,true -27245,e792efed-6c15-4f49-9b2b-91270a49e167,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27245,e792efed-6c15-4f49-9b2b-91270a49e167,LIST_TRANSACTIONS,xs2aListTransactions,true 27246,e792efed-6c15-4f49-9b2b-91270a49e167,AUTHORIZATION,,true 27247,e792efed-6c15-4f49-9b2b-91270a49e167,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27248,e792efed-6c15-4f49-9b2b-91270a49e167,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27249,e792efed-6c15-4f49-9b2b-91270a49e167,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27250,8d0a3907-ca9b-4396-b905-19aae03bd6c5,LIST_ACCOUNTS,hbciListAccounts,false -27251,8d0a3907-ca9b-4396-b905-19aae03bd6c5,LIST_TRANSACTIONS,hbciListTransactions,false -27252,8d0a3907-ca9b-4396-b905-19aae03bd6c5,AUTHORIZATION,,false -27253,8d0a3907-ca9b-4396-b905-19aae03bd6c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27254,8d0a3907-ca9b-4396-b905-19aae03bd6c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27255,8d0a3907-ca9b-4396-b905-19aae03bd6c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27250,e3c7d31b-89d5-41c2-ace2-ab5919937a83,LIST_ACCOUNTS,hbciListAccounts,false +27251,e3c7d31b-89d5-41c2-ace2-ab5919937a83,LIST_TRANSACTIONS,hbciListTransactions,false +27252,e3c7d31b-89d5-41c2-ace2-ab5919937a83,AUTHORIZATION,,false +27253,e3c7d31b-89d5-41c2-ace2-ab5919937a83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27254,e3c7d31b-89d5-41c2-ace2-ab5919937a83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27255,e3c7d31b-89d5-41c2-ace2-ab5919937a83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27256,d27b887d-a73a-49a2-aabd-f51eabe39363,LIST_ACCOUNTS,xs2aListAccounts,true -27257,d27b887d-a73a-49a2-aabd-f51eabe39363,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27257,d27b887d-a73a-49a2-aabd-f51eabe39363,LIST_TRANSACTIONS,xs2aListTransactions,true 27258,d27b887d-a73a-49a2-aabd-f51eabe39363,AUTHORIZATION,,true 27259,d27b887d-a73a-49a2-aabd-f51eabe39363,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27260,d27b887d-a73a-49a2-aabd-f51eabe39363,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27261,d27b887d-a73a-49a2-aabd-f51eabe39363,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27262,079126cd-263c-4892-a09f-23941568a590,LIST_ACCOUNTS,hbciListAccounts,false -27263,079126cd-263c-4892-a09f-23941568a590,LIST_TRANSACTIONS,hbciListTransactions,false -27264,079126cd-263c-4892-a09f-23941568a590,AUTHORIZATION,,false -27265,079126cd-263c-4892-a09f-23941568a590,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27266,079126cd-263c-4892-a09f-23941568a590,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27267,079126cd-263c-4892-a09f-23941568a590,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27262,554a38da-1fe5-4640-84a9-a034509d32b7,LIST_ACCOUNTS,hbciListAccounts,false +27263,554a38da-1fe5-4640-84a9-a034509d32b7,LIST_TRANSACTIONS,hbciListTransactions,false +27264,554a38da-1fe5-4640-84a9-a034509d32b7,AUTHORIZATION,,false +27265,554a38da-1fe5-4640-84a9-a034509d32b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27266,554a38da-1fe5-4640-84a9-a034509d32b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27267,554a38da-1fe5-4640-84a9-a034509d32b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27268,0c3bdce5-b860-480c-bf48-de6c00dd6d92,LIST_ACCOUNTS,xs2aListAccounts,true -27269,0c3bdce5-b860-480c-bf48-de6c00dd6d92,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27269,0c3bdce5-b860-480c-bf48-de6c00dd6d92,LIST_TRANSACTIONS,xs2aListTransactions,true 27270,0c3bdce5-b860-480c-bf48-de6c00dd6d92,AUTHORIZATION,,true 27271,0c3bdce5-b860-480c-bf48-de6c00dd6d92,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27272,0c3bdce5-b860-480c-bf48-de6c00dd6d92,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27273,0c3bdce5-b860-480c-bf48-de6c00dd6d92,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27274,e74d70c2-961c-4746-8a90-70feff67af1b,LIST_ACCOUNTS,hbciListAccounts,false -27275,e74d70c2-961c-4746-8a90-70feff67af1b,LIST_TRANSACTIONS,hbciListTransactions,false -27276,e74d70c2-961c-4746-8a90-70feff67af1b,AUTHORIZATION,,false -27277,e74d70c2-961c-4746-8a90-70feff67af1b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27278,e74d70c2-961c-4746-8a90-70feff67af1b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27279,e74d70c2-961c-4746-8a90-70feff67af1b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27274,60bd6e3f-aac9-4b80-8826-841a47b351d1,LIST_ACCOUNTS,hbciListAccounts,false +27275,60bd6e3f-aac9-4b80-8826-841a47b351d1,LIST_TRANSACTIONS,hbciListTransactions,false +27276,60bd6e3f-aac9-4b80-8826-841a47b351d1,AUTHORIZATION,,false +27277,60bd6e3f-aac9-4b80-8826-841a47b351d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27278,60bd6e3f-aac9-4b80-8826-841a47b351d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27279,60bd6e3f-aac9-4b80-8826-841a47b351d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27280,7e2c0088-4974-408c-9ee1-653565ee37a2,LIST_ACCOUNTS,xs2aListAccounts,true -27281,7e2c0088-4974-408c-9ee1-653565ee37a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27281,7e2c0088-4974-408c-9ee1-653565ee37a2,LIST_TRANSACTIONS,xs2aListTransactions,true 27282,7e2c0088-4974-408c-9ee1-653565ee37a2,AUTHORIZATION,,true 27283,7e2c0088-4974-408c-9ee1-653565ee37a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27284,7e2c0088-4974-408c-9ee1-653565ee37a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27285,7e2c0088-4974-408c-9ee1-653565ee37a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27286,fe5930ad-a0f0-4325-9c53-321f5b7fff01,LIST_ACCOUNTS,hbciListAccounts,false -27287,fe5930ad-a0f0-4325-9c53-321f5b7fff01,LIST_TRANSACTIONS,hbciListTransactions,false -27288,fe5930ad-a0f0-4325-9c53-321f5b7fff01,AUTHORIZATION,,false -27289,fe5930ad-a0f0-4325-9c53-321f5b7fff01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27290,fe5930ad-a0f0-4325-9c53-321f5b7fff01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27291,fe5930ad-a0f0-4325-9c53-321f5b7fff01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27286,fe083e9b-9e39-4e14-aaef-024eb69e16e9,LIST_ACCOUNTS,hbciListAccounts,false +27287,fe083e9b-9e39-4e14-aaef-024eb69e16e9,LIST_TRANSACTIONS,hbciListTransactions,false +27288,fe083e9b-9e39-4e14-aaef-024eb69e16e9,AUTHORIZATION,,false +27289,fe083e9b-9e39-4e14-aaef-024eb69e16e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27290,fe083e9b-9e39-4e14-aaef-024eb69e16e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27291,fe083e9b-9e39-4e14-aaef-024eb69e16e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27292,7028aed4-c9a7-4232-a6d4-fcb74f6e4f23,LIST_ACCOUNTS,xs2aListAccounts,true -27293,7028aed4-c9a7-4232-a6d4-fcb74f6e4f23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27293,7028aed4-c9a7-4232-a6d4-fcb74f6e4f23,LIST_TRANSACTIONS,xs2aListTransactions,true 27294,7028aed4-c9a7-4232-a6d4-fcb74f6e4f23,AUTHORIZATION,,true 27295,7028aed4-c9a7-4232-a6d4-fcb74f6e4f23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27296,7028aed4-c9a7-4232-a6d4-fcb74f6e4f23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27297,7028aed4-c9a7-4232-a6d4-fcb74f6e4f23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27298,a2f5f182-e798-4d2c-b416-cbf75ff0ffa7,LIST_ACCOUNTS,hbciListAccounts,false -27299,a2f5f182-e798-4d2c-b416-cbf75ff0ffa7,LIST_TRANSACTIONS,hbciListTransactions,false -27300,a2f5f182-e798-4d2c-b416-cbf75ff0ffa7,AUTHORIZATION,,false -27301,a2f5f182-e798-4d2c-b416-cbf75ff0ffa7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27302,a2f5f182-e798-4d2c-b416-cbf75ff0ffa7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27303,a2f5f182-e798-4d2c-b416-cbf75ff0ffa7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27298,68094272-30cb-40db-8fa8-cbf8fe9dba67,LIST_ACCOUNTS,hbciListAccounts,false +27299,68094272-30cb-40db-8fa8-cbf8fe9dba67,LIST_TRANSACTIONS,hbciListTransactions,false +27300,68094272-30cb-40db-8fa8-cbf8fe9dba67,AUTHORIZATION,,false +27301,68094272-30cb-40db-8fa8-cbf8fe9dba67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27302,68094272-30cb-40db-8fa8-cbf8fe9dba67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27303,68094272-30cb-40db-8fa8-cbf8fe9dba67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27304,7aac9a77-a5f6-4e42-b224-a9d53ad2b0d6,LIST_ACCOUNTS,xs2aListAccounts,true -27305,7aac9a77-a5f6-4e42-b224-a9d53ad2b0d6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27305,7aac9a77-a5f6-4e42-b224-a9d53ad2b0d6,LIST_TRANSACTIONS,xs2aListTransactions,true 27306,7aac9a77-a5f6-4e42-b224-a9d53ad2b0d6,AUTHORIZATION,,true 27307,7aac9a77-a5f6-4e42-b224-a9d53ad2b0d6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27308,7aac9a77-a5f6-4e42-b224-a9d53ad2b0d6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27309,7aac9a77-a5f6-4e42-b224-a9d53ad2b0d6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27310,db906c37-47cf-4a69-aaea-964919a6df79,LIST_ACCOUNTS,hbciListAccounts,false -27311,db906c37-47cf-4a69-aaea-964919a6df79,LIST_TRANSACTIONS,hbciListTransactions,false -27312,db906c37-47cf-4a69-aaea-964919a6df79,AUTHORIZATION,,false -27313,db906c37-47cf-4a69-aaea-964919a6df79,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27314,db906c37-47cf-4a69-aaea-964919a6df79,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27315,db906c37-47cf-4a69-aaea-964919a6df79,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27310,5663ed2d-e294-4e8e-a18d-0d9cc77543ff,LIST_ACCOUNTS,hbciListAccounts,false +27311,5663ed2d-e294-4e8e-a18d-0d9cc77543ff,LIST_TRANSACTIONS,hbciListTransactions,false +27312,5663ed2d-e294-4e8e-a18d-0d9cc77543ff,AUTHORIZATION,,false +27313,5663ed2d-e294-4e8e-a18d-0d9cc77543ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27314,5663ed2d-e294-4e8e-a18d-0d9cc77543ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27315,5663ed2d-e294-4e8e-a18d-0d9cc77543ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27316,542e01fd-aa42-497d-84e7-41d553b9542e,LIST_ACCOUNTS,xs2aListAccounts,true -27317,542e01fd-aa42-497d-84e7-41d553b9542e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27317,542e01fd-aa42-497d-84e7-41d553b9542e,LIST_TRANSACTIONS,xs2aListTransactions,true 27318,542e01fd-aa42-497d-84e7-41d553b9542e,AUTHORIZATION,,true 27319,542e01fd-aa42-497d-84e7-41d553b9542e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27320,542e01fd-aa42-497d-84e7-41d553b9542e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27321,542e01fd-aa42-497d-84e7-41d553b9542e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27322,60dd20e6-5995-4a99-b945-b89da9aa20e1,LIST_ACCOUNTS,hbciListAccounts,false -27323,60dd20e6-5995-4a99-b945-b89da9aa20e1,LIST_TRANSACTIONS,hbciListTransactions,false -27324,60dd20e6-5995-4a99-b945-b89da9aa20e1,AUTHORIZATION,,false -27325,60dd20e6-5995-4a99-b945-b89da9aa20e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27326,60dd20e6-5995-4a99-b945-b89da9aa20e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27327,60dd20e6-5995-4a99-b945-b89da9aa20e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27322,ccbaa791-296f-4251-9856-c040253564c1,LIST_ACCOUNTS,hbciListAccounts,false +27323,ccbaa791-296f-4251-9856-c040253564c1,LIST_TRANSACTIONS,hbciListTransactions,false +27324,ccbaa791-296f-4251-9856-c040253564c1,AUTHORIZATION,,false +27325,ccbaa791-296f-4251-9856-c040253564c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27326,ccbaa791-296f-4251-9856-c040253564c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27327,ccbaa791-296f-4251-9856-c040253564c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27328,d351e840-92a3-4a87-a32c-8333eb9dda2d,LIST_ACCOUNTS,xs2aListAccounts,true -27329,d351e840-92a3-4a87-a32c-8333eb9dda2d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27329,d351e840-92a3-4a87-a32c-8333eb9dda2d,LIST_TRANSACTIONS,xs2aListTransactions,true 27330,d351e840-92a3-4a87-a32c-8333eb9dda2d,AUTHORIZATION,,true 27331,d351e840-92a3-4a87-a32c-8333eb9dda2d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27332,d351e840-92a3-4a87-a32c-8333eb9dda2d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27333,d351e840-92a3-4a87-a32c-8333eb9dda2d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27334,c137642e-d260-47e9-b5d7-a5abd8ffdca5,LIST_ACCOUNTS,hbciListAccounts,false -27335,c137642e-d260-47e9-b5d7-a5abd8ffdca5,LIST_TRANSACTIONS,hbciListTransactions,false -27336,c137642e-d260-47e9-b5d7-a5abd8ffdca5,AUTHORIZATION,,false -27337,c137642e-d260-47e9-b5d7-a5abd8ffdca5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27338,c137642e-d260-47e9-b5d7-a5abd8ffdca5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27339,c137642e-d260-47e9-b5d7-a5abd8ffdca5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27334,03afe66f-b441-4c35-8d17-7b75ea7f4e60,LIST_ACCOUNTS,hbciListAccounts,false +27335,03afe66f-b441-4c35-8d17-7b75ea7f4e60,LIST_TRANSACTIONS,hbciListTransactions,false +27336,03afe66f-b441-4c35-8d17-7b75ea7f4e60,AUTHORIZATION,,false +27337,03afe66f-b441-4c35-8d17-7b75ea7f4e60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27338,03afe66f-b441-4c35-8d17-7b75ea7f4e60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27339,03afe66f-b441-4c35-8d17-7b75ea7f4e60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27340,3c690230-32e8-4ba5-8192-8e13c8fad854,LIST_ACCOUNTS,xs2aListAccounts,true -27341,3c690230-32e8-4ba5-8192-8e13c8fad854,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27341,3c690230-32e8-4ba5-8192-8e13c8fad854,LIST_TRANSACTIONS,xs2aListTransactions,true 27342,3c690230-32e8-4ba5-8192-8e13c8fad854,AUTHORIZATION,,true 27343,3c690230-32e8-4ba5-8192-8e13c8fad854,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27344,3c690230-32e8-4ba5-8192-8e13c8fad854,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27345,3c690230-32e8-4ba5-8192-8e13c8fad854,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27346,878f95a4-24f3-49ea-ab71-c16cdd058471,LIST_ACCOUNTS,hbciListAccounts,false -27347,878f95a4-24f3-49ea-ab71-c16cdd058471,LIST_TRANSACTIONS,hbciListTransactions,false -27348,878f95a4-24f3-49ea-ab71-c16cdd058471,AUTHORIZATION,,false -27349,878f95a4-24f3-49ea-ab71-c16cdd058471,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27350,878f95a4-24f3-49ea-ab71-c16cdd058471,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27351,878f95a4-24f3-49ea-ab71-c16cdd058471,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27346,52e6389d-3834-40a9-93b3-2b1ec3f37142,LIST_ACCOUNTS,hbciListAccounts,false +27347,52e6389d-3834-40a9-93b3-2b1ec3f37142,LIST_TRANSACTIONS,hbciListTransactions,false +27348,52e6389d-3834-40a9-93b3-2b1ec3f37142,AUTHORIZATION,,false +27349,52e6389d-3834-40a9-93b3-2b1ec3f37142,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27350,52e6389d-3834-40a9-93b3-2b1ec3f37142,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27351,52e6389d-3834-40a9-93b3-2b1ec3f37142,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27352,1a93479a-99ef-4699-8209-940f8fb5872e,LIST_ACCOUNTS,xs2aListAccounts,true -27353,1a93479a-99ef-4699-8209-940f8fb5872e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27353,1a93479a-99ef-4699-8209-940f8fb5872e,LIST_TRANSACTIONS,xs2aListTransactions,true 27354,1a93479a-99ef-4699-8209-940f8fb5872e,AUTHORIZATION,,true 27355,1a93479a-99ef-4699-8209-940f8fb5872e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27356,1a93479a-99ef-4699-8209-940f8fb5872e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27357,1a93479a-99ef-4699-8209-940f8fb5872e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27358,0aa3d903-b8c8-4740-ac3f-c9f78ff6601c,LIST_ACCOUNTS,hbciListAccounts,false -27359,0aa3d903-b8c8-4740-ac3f-c9f78ff6601c,LIST_TRANSACTIONS,hbciListTransactions,false -27360,0aa3d903-b8c8-4740-ac3f-c9f78ff6601c,AUTHORIZATION,,false -27361,0aa3d903-b8c8-4740-ac3f-c9f78ff6601c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27362,0aa3d903-b8c8-4740-ac3f-c9f78ff6601c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27363,0aa3d903-b8c8-4740-ac3f-c9f78ff6601c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27358,efd72af1-48cf-4c73-93aa-6dd6751e545f,LIST_ACCOUNTS,hbciListAccounts,false +27359,efd72af1-48cf-4c73-93aa-6dd6751e545f,LIST_TRANSACTIONS,hbciListTransactions,false +27360,efd72af1-48cf-4c73-93aa-6dd6751e545f,AUTHORIZATION,,false +27361,efd72af1-48cf-4c73-93aa-6dd6751e545f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27362,efd72af1-48cf-4c73-93aa-6dd6751e545f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27363,efd72af1-48cf-4c73-93aa-6dd6751e545f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27364,ed80c1ec-742c-40ce-9353-da45e2e1433c,LIST_ACCOUNTS,xs2aListAccounts,true -27365,ed80c1ec-742c-40ce-9353-da45e2e1433c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27365,ed80c1ec-742c-40ce-9353-da45e2e1433c,LIST_TRANSACTIONS,xs2aListTransactions,true 27366,ed80c1ec-742c-40ce-9353-da45e2e1433c,AUTHORIZATION,,true 27367,ed80c1ec-742c-40ce-9353-da45e2e1433c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27368,ed80c1ec-742c-40ce-9353-da45e2e1433c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27369,ed80c1ec-742c-40ce-9353-da45e2e1433c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27370,3ca349c9-d28e-4c52-93f8-40aee216d52a,LIST_ACCOUNTS,hbciListAccounts,false -27371,3ca349c9-d28e-4c52-93f8-40aee216d52a,LIST_TRANSACTIONS,hbciListTransactions,false -27372,3ca349c9-d28e-4c52-93f8-40aee216d52a,AUTHORIZATION,,false -27373,3ca349c9-d28e-4c52-93f8-40aee216d52a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27374,3ca349c9-d28e-4c52-93f8-40aee216d52a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27375,3ca349c9-d28e-4c52-93f8-40aee216d52a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27370,868a8edf-97a5-4095-9239-d30ae47e90d4,LIST_ACCOUNTS,hbciListAccounts,false +27371,868a8edf-97a5-4095-9239-d30ae47e90d4,LIST_TRANSACTIONS,hbciListTransactions,false +27372,868a8edf-97a5-4095-9239-d30ae47e90d4,AUTHORIZATION,,false +27373,868a8edf-97a5-4095-9239-d30ae47e90d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27374,868a8edf-97a5-4095-9239-d30ae47e90d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27375,868a8edf-97a5-4095-9239-d30ae47e90d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27376,7d0a4017-7fd9-4de0-ac02-7b062cb21b2d,LIST_ACCOUNTS,xs2aListAccounts,true -27377,7d0a4017-7fd9-4de0-ac02-7b062cb21b2d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27377,7d0a4017-7fd9-4de0-ac02-7b062cb21b2d,LIST_TRANSACTIONS,xs2aListTransactions,true 27378,7d0a4017-7fd9-4de0-ac02-7b062cb21b2d,AUTHORIZATION,,true 27379,7d0a4017-7fd9-4de0-ac02-7b062cb21b2d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27380,7d0a4017-7fd9-4de0-ac02-7b062cb21b2d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27381,7d0a4017-7fd9-4de0-ac02-7b062cb21b2d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27382,de9f37f2-96f6-4b1c-a826-d011a05f5cf0,LIST_ACCOUNTS,hbciListAccounts,false -27383,de9f37f2-96f6-4b1c-a826-d011a05f5cf0,LIST_TRANSACTIONS,hbciListTransactions,false -27384,de9f37f2-96f6-4b1c-a826-d011a05f5cf0,AUTHORIZATION,,false -27385,de9f37f2-96f6-4b1c-a826-d011a05f5cf0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27386,de9f37f2-96f6-4b1c-a826-d011a05f5cf0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27387,de9f37f2-96f6-4b1c-a826-d011a05f5cf0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27382,acb3f19c-fff9-44d1-9b5b-00f1f9f377a6,LIST_ACCOUNTS,hbciListAccounts,false +27383,acb3f19c-fff9-44d1-9b5b-00f1f9f377a6,LIST_TRANSACTIONS,hbciListTransactions,false +27384,acb3f19c-fff9-44d1-9b5b-00f1f9f377a6,AUTHORIZATION,,false +27385,acb3f19c-fff9-44d1-9b5b-00f1f9f377a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27386,acb3f19c-fff9-44d1-9b5b-00f1f9f377a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27387,acb3f19c-fff9-44d1-9b5b-00f1f9f377a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27388,bed4d13a-5a87-4be2-9ac1-d2b4b4ff879b,LIST_ACCOUNTS,xs2aListAccounts,true -27389,bed4d13a-5a87-4be2-9ac1-d2b4b4ff879b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27389,bed4d13a-5a87-4be2-9ac1-d2b4b4ff879b,LIST_TRANSACTIONS,xs2aListTransactions,true 27390,bed4d13a-5a87-4be2-9ac1-d2b4b4ff879b,AUTHORIZATION,,true 27391,bed4d13a-5a87-4be2-9ac1-d2b4b4ff879b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27392,bed4d13a-5a87-4be2-9ac1-d2b4b4ff879b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27393,bed4d13a-5a87-4be2-9ac1-d2b4b4ff879b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27394,c4b9331d-2a13-440a-966f-9957a86e99ce,LIST_ACCOUNTS,hbciListAccounts,false -27395,c4b9331d-2a13-440a-966f-9957a86e99ce,LIST_TRANSACTIONS,hbciListTransactions,false -27396,c4b9331d-2a13-440a-966f-9957a86e99ce,AUTHORIZATION,,false -27397,c4b9331d-2a13-440a-966f-9957a86e99ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27398,c4b9331d-2a13-440a-966f-9957a86e99ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27399,c4b9331d-2a13-440a-966f-9957a86e99ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27394,53b5330b-6ca4-483e-aae4-c75ed6e5dd65,LIST_ACCOUNTS,hbciListAccounts,false +27395,53b5330b-6ca4-483e-aae4-c75ed6e5dd65,LIST_TRANSACTIONS,hbciListTransactions,false +27396,53b5330b-6ca4-483e-aae4-c75ed6e5dd65,AUTHORIZATION,,false +27397,53b5330b-6ca4-483e-aae4-c75ed6e5dd65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27398,53b5330b-6ca4-483e-aae4-c75ed6e5dd65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27399,53b5330b-6ca4-483e-aae4-c75ed6e5dd65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27400,f91353f3-6a86-4cde-9e3b-37a6367a4b4a,LIST_ACCOUNTS,xs2aListAccounts,true -27401,f91353f3-6a86-4cde-9e3b-37a6367a4b4a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27401,f91353f3-6a86-4cde-9e3b-37a6367a4b4a,LIST_TRANSACTIONS,xs2aListTransactions,true 27402,f91353f3-6a86-4cde-9e3b-37a6367a4b4a,AUTHORIZATION,,true 27403,f91353f3-6a86-4cde-9e3b-37a6367a4b4a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27404,f91353f3-6a86-4cde-9e3b-37a6367a4b4a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27405,f91353f3-6a86-4cde-9e3b-37a6367a4b4a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27406,659acc55-ca56-4a4d-94ff-5686bf582be4,LIST_ACCOUNTS,hbciListAccounts,false -27407,659acc55-ca56-4a4d-94ff-5686bf582be4,LIST_TRANSACTIONS,hbciListTransactions,false -27408,659acc55-ca56-4a4d-94ff-5686bf582be4,AUTHORIZATION,,false -27409,659acc55-ca56-4a4d-94ff-5686bf582be4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27410,659acc55-ca56-4a4d-94ff-5686bf582be4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27411,659acc55-ca56-4a4d-94ff-5686bf582be4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27406,20f86445-cc16-47c0-967f-1cbdc1dc9c2a,LIST_ACCOUNTS,hbciListAccounts,false +27407,20f86445-cc16-47c0-967f-1cbdc1dc9c2a,LIST_TRANSACTIONS,hbciListTransactions,false +27408,20f86445-cc16-47c0-967f-1cbdc1dc9c2a,AUTHORIZATION,,false +27409,20f86445-cc16-47c0-967f-1cbdc1dc9c2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27410,20f86445-cc16-47c0-967f-1cbdc1dc9c2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27411,20f86445-cc16-47c0-967f-1cbdc1dc9c2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27412,4b0ed45e-dc10-4760-a5f1-cc618a3f7450,LIST_ACCOUNTS,xs2aListAccounts,true -27413,4b0ed45e-dc10-4760-a5f1-cc618a3f7450,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27413,4b0ed45e-dc10-4760-a5f1-cc618a3f7450,LIST_TRANSACTIONS,xs2aListTransactions,true 27414,4b0ed45e-dc10-4760-a5f1-cc618a3f7450,AUTHORIZATION,,true 27415,4b0ed45e-dc10-4760-a5f1-cc618a3f7450,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27416,4b0ed45e-dc10-4760-a5f1-cc618a3f7450,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27417,4b0ed45e-dc10-4760-a5f1-cc618a3f7450,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27418,7c6c3d5e-1414-46fb-b5c2-ad7e5c9743f9,LIST_ACCOUNTS,hbciListAccounts,false -27419,7c6c3d5e-1414-46fb-b5c2-ad7e5c9743f9,LIST_TRANSACTIONS,hbciListTransactions,false -27420,7c6c3d5e-1414-46fb-b5c2-ad7e5c9743f9,AUTHORIZATION,,false -27421,7c6c3d5e-1414-46fb-b5c2-ad7e5c9743f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27422,7c6c3d5e-1414-46fb-b5c2-ad7e5c9743f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27423,7c6c3d5e-1414-46fb-b5c2-ad7e5c9743f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27418,685f5289-462c-4c8d-b7d0-d66e94019c04,LIST_ACCOUNTS,hbciListAccounts,false +27419,685f5289-462c-4c8d-b7d0-d66e94019c04,LIST_TRANSACTIONS,hbciListTransactions,false +27420,685f5289-462c-4c8d-b7d0-d66e94019c04,AUTHORIZATION,,false +27421,685f5289-462c-4c8d-b7d0-d66e94019c04,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27422,685f5289-462c-4c8d-b7d0-d66e94019c04,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27423,685f5289-462c-4c8d-b7d0-d66e94019c04,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27424,eae16d7e-0c26-4b48-a65c-f3bf830262d7,LIST_ACCOUNTS,xs2aListAccounts,true -27425,eae16d7e-0c26-4b48-a65c-f3bf830262d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27425,eae16d7e-0c26-4b48-a65c-f3bf830262d7,LIST_TRANSACTIONS,xs2aListTransactions,true 27426,eae16d7e-0c26-4b48-a65c-f3bf830262d7,AUTHORIZATION,,true 27427,eae16d7e-0c26-4b48-a65c-f3bf830262d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27428,eae16d7e-0c26-4b48-a65c-f3bf830262d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27429,eae16d7e-0c26-4b48-a65c-f3bf830262d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27430,fb2a7bcf-5aaf-4028-8b48-025f0959b071,LIST_ACCOUNTS,hbciListAccounts,false -27431,fb2a7bcf-5aaf-4028-8b48-025f0959b071,LIST_TRANSACTIONS,hbciListTransactions,false -27432,fb2a7bcf-5aaf-4028-8b48-025f0959b071,AUTHORIZATION,,false -27433,fb2a7bcf-5aaf-4028-8b48-025f0959b071,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27434,fb2a7bcf-5aaf-4028-8b48-025f0959b071,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27435,fb2a7bcf-5aaf-4028-8b48-025f0959b071,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27430,9137207e-e7bf-490b-9e50-47cca025a41f,LIST_ACCOUNTS,hbciListAccounts,false +27431,9137207e-e7bf-490b-9e50-47cca025a41f,LIST_TRANSACTIONS,hbciListTransactions,false +27432,9137207e-e7bf-490b-9e50-47cca025a41f,AUTHORIZATION,,false +27433,9137207e-e7bf-490b-9e50-47cca025a41f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27434,9137207e-e7bf-490b-9e50-47cca025a41f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27435,9137207e-e7bf-490b-9e50-47cca025a41f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27436,20817458-4438-4122-bf08-e31c30a0bfba,LIST_ACCOUNTS,xs2aListAccounts,true -27437,20817458-4438-4122-bf08-e31c30a0bfba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27437,20817458-4438-4122-bf08-e31c30a0bfba,LIST_TRANSACTIONS,xs2aListTransactions,true 27438,20817458-4438-4122-bf08-e31c30a0bfba,AUTHORIZATION,,true 27439,20817458-4438-4122-bf08-e31c30a0bfba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27440,20817458-4438-4122-bf08-e31c30a0bfba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27441,20817458-4438-4122-bf08-e31c30a0bfba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27442,4ae60c38-0970-4979-b315-0127cfff9146,LIST_ACCOUNTS,hbciListAccounts,false -27443,4ae60c38-0970-4979-b315-0127cfff9146,LIST_TRANSACTIONS,hbciListTransactions,false -27444,4ae60c38-0970-4979-b315-0127cfff9146,AUTHORIZATION,,false -27445,4ae60c38-0970-4979-b315-0127cfff9146,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27446,4ae60c38-0970-4979-b315-0127cfff9146,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27447,4ae60c38-0970-4979-b315-0127cfff9146,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27442,22083385-0d37-46d8-9143-7c10aaaa0608,LIST_ACCOUNTS,hbciListAccounts,false +27443,22083385-0d37-46d8-9143-7c10aaaa0608,LIST_TRANSACTIONS,hbciListTransactions,false +27444,22083385-0d37-46d8-9143-7c10aaaa0608,AUTHORIZATION,,false +27445,22083385-0d37-46d8-9143-7c10aaaa0608,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27446,22083385-0d37-46d8-9143-7c10aaaa0608,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27447,22083385-0d37-46d8-9143-7c10aaaa0608,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27448,d0a89f52-cf64-4570-ac4d-56b6f56dea7a,LIST_ACCOUNTS,xs2aListAccounts,true -27449,d0a89f52-cf64-4570-ac4d-56b6f56dea7a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27449,d0a89f52-cf64-4570-ac4d-56b6f56dea7a,LIST_TRANSACTIONS,xs2aListTransactions,true 27450,d0a89f52-cf64-4570-ac4d-56b6f56dea7a,AUTHORIZATION,,true 27451,d0a89f52-cf64-4570-ac4d-56b6f56dea7a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27452,d0a89f52-cf64-4570-ac4d-56b6f56dea7a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27453,d0a89f52-cf64-4570-ac4d-56b6f56dea7a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27454,95a33a52-1afb-4b5d-9cc5-33d6c1aa20fe,LIST_ACCOUNTS,hbciListAccounts,false -27455,95a33a52-1afb-4b5d-9cc5-33d6c1aa20fe,LIST_TRANSACTIONS,hbciListTransactions,false -27456,95a33a52-1afb-4b5d-9cc5-33d6c1aa20fe,AUTHORIZATION,,false -27457,95a33a52-1afb-4b5d-9cc5-33d6c1aa20fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27458,95a33a52-1afb-4b5d-9cc5-33d6c1aa20fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27459,95a33a52-1afb-4b5d-9cc5-33d6c1aa20fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27454,901c7517-24a2-455f-a797-527f4848ac48,LIST_ACCOUNTS,hbciListAccounts,false +27455,901c7517-24a2-455f-a797-527f4848ac48,LIST_TRANSACTIONS,hbciListTransactions,false +27456,901c7517-24a2-455f-a797-527f4848ac48,AUTHORIZATION,,false +27457,901c7517-24a2-455f-a797-527f4848ac48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27458,901c7517-24a2-455f-a797-527f4848ac48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27459,901c7517-24a2-455f-a797-527f4848ac48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27460,f50f4d76-7387-4e14-bf58-225c4e6bf7a1,LIST_ACCOUNTS,xs2aListAccounts,true -27461,f50f4d76-7387-4e14-bf58-225c4e6bf7a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27461,f50f4d76-7387-4e14-bf58-225c4e6bf7a1,LIST_TRANSACTIONS,xs2aListTransactions,true 27462,f50f4d76-7387-4e14-bf58-225c4e6bf7a1,AUTHORIZATION,,true 27463,f50f4d76-7387-4e14-bf58-225c4e6bf7a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27464,f50f4d76-7387-4e14-bf58-225c4e6bf7a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27465,f50f4d76-7387-4e14-bf58-225c4e6bf7a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27466,cf318266-5695-4d0d-8a0d-17fc8701e022,LIST_ACCOUNTS,hbciListAccounts,false -27467,cf318266-5695-4d0d-8a0d-17fc8701e022,LIST_TRANSACTIONS,hbciListTransactions,false -27468,cf318266-5695-4d0d-8a0d-17fc8701e022,AUTHORIZATION,,false -27469,cf318266-5695-4d0d-8a0d-17fc8701e022,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27470,cf318266-5695-4d0d-8a0d-17fc8701e022,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27471,cf318266-5695-4d0d-8a0d-17fc8701e022,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27466,deabbb1c-ec31-4876-86aa-9cf69e98e850,LIST_ACCOUNTS,hbciListAccounts,false +27467,deabbb1c-ec31-4876-86aa-9cf69e98e850,LIST_TRANSACTIONS,hbciListTransactions,false +27468,deabbb1c-ec31-4876-86aa-9cf69e98e850,AUTHORIZATION,,false +27469,deabbb1c-ec31-4876-86aa-9cf69e98e850,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27470,deabbb1c-ec31-4876-86aa-9cf69e98e850,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27471,deabbb1c-ec31-4876-86aa-9cf69e98e850,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27472,deb146ab-6e2b-4181-9fd7-9ee4d9a0fe65,LIST_ACCOUNTS,xs2aListAccounts,true -27473,deb146ab-6e2b-4181-9fd7-9ee4d9a0fe65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27473,deb146ab-6e2b-4181-9fd7-9ee4d9a0fe65,LIST_TRANSACTIONS,xs2aListTransactions,true 27474,deb146ab-6e2b-4181-9fd7-9ee4d9a0fe65,AUTHORIZATION,,true 27475,deb146ab-6e2b-4181-9fd7-9ee4d9a0fe65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27476,deb146ab-6e2b-4181-9fd7-9ee4d9a0fe65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27477,deb146ab-6e2b-4181-9fd7-9ee4d9a0fe65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27478,21c192f7-e2cf-48f0-9281-84e18acb0327,LIST_ACCOUNTS,hbciListAccounts,false -27479,21c192f7-e2cf-48f0-9281-84e18acb0327,LIST_TRANSACTIONS,hbciListTransactions,false -27480,21c192f7-e2cf-48f0-9281-84e18acb0327,AUTHORIZATION,,false -27481,21c192f7-e2cf-48f0-9281-84e18acb0327,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27482,21c192f7-e2cf-48f0-9281-84e18acb0327,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27483,21c192f7-e2cf-48f0-9281-84e18acb0327,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27478,3317861c-f1f5-43e6-8615-096ffe3c6132,LIST_ACCOUNTS,hbciListAccounts,false +27479,3317861c-f1f5-43e6-8615-096ffe3c6132,LIST_TRANSACTIONS,hbciListTransactions,false +27480,3317861c-f1f5-43e6-8615-096ffe3c6132,AUTHORIZATION,,false +27481,3317861c-f1f5-43e6-8615-096ffe3c6132,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27482,3317861c-f1f5-43e6-8615-096ffe3c6132,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27483,3317861c-f1f5-43e6-8615-096ffe3c6132,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27484,463a6ead-7ccc-4d1e-8391-68c7120286e7,LIST_ACCOUNTS,xs2aListAccounts,true -27485,463a6ead-7ccc-4d1e-8391-68c7120286e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27485,463a6ead-7ccc-4d1e-8391-68c7120286e7,LIST_TRANSACTIONS,xs2aListTransactions,true 27486,463a6ead-7ccc-4d1e-8391-68c7120286e7,AUTHORIZATION,,true 27487,463a6ead-7ccc-4d1e-8391-68c7120286e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27488,463a6ead-7ccc-4d1e-8391-68c7120286e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27489,463a6ead-7ccc-4d1e-8391-68c7120286e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27490,85f8979a-7566-47bd-85ca-b79cb9dc31fc,LIST_ACCOUNTS,hbciListAccounts,false -27491,85f8979a-7566-47bd-85ca-b79cb9dc31fc,LIST_TRANSACTIONS,hbciListTransactions,false -27492,85f8979a-7566-47bd-85ca-b79cb9dc31fc,AUTHORIZATION,,false -27493,85f8979a-7566-47bd-85ca-b79cb9dc31fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27494,85f8979a-7566-47bd-85ca-b79cb9dc31fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27495,85f8979a-7566-47bd-85ca-b79cb9dc31fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27490,30273c1a-0e2d-48e4-bc76-a0a8ba6ddba9,LIST_ACCOUNTS,hbciListAccounts,false +27491,30273c1a-0e2d-48e4-bc76-a0a8ba6ddba9,LIST_TRANSACTIONS,hbciListTransactions,false +27492,30273c1a-0e2d-48e4-bc76-a0a8ba6ddba9,AUTHORIZATION,,false +27493,30273c1a-0e2d-48e4-bc76-a0a8ba6ddba9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27494,30273c1a-0e2d-48e4-bc76-a0a8ba6ddba9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27495,30273c1a-0e2d-48e4-bc76-a0a8ba6ddba9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27496,e757f8c9-48d5-4f30-94d5-46dbb331571e,LIST_ACCOUNTS,xs2aListAccounts,true -27497,e757f8c9-48d5-4f30-94d5-46dbb331571e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27497,e757f8c9-48d5-4f30-94d5-46dbb331571e,LIST_TRANSACTIONS,xs2aListTransactions,true 27498,e757f8c9-48d5-4f30-94d5-46dbb331571e,AUTHORIZATION,,true 27499,e757f8c9-48d5-4f30-94d5-46dbb331571e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27500,e757f8c9-48d5-4f30-94d5-46dbb331571e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27501,e757f8c9-48d5-4f30-94d5-46dbb331571e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27502,f8863da4-2a5f-40a9-8b9f-3c3b0650da0a,LIST_ACCOUNTS,hbciListAccounts,false -27503,f8863da4-2a5f-40a9-8b9f-3c3b0650da0a,LIST_TRANSACTIONS,hbciListTransactions,false -27504,f8863da4-2a5f-40a9-8b9f-3c3b0650da0a,AUTHORIZATION,,false -27505,f8863da4-2a5f-40a9-8b9f-3c3b0650da0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27506,f8863da4-2a5f-40a9-8b9f-3c3b0650da0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27507,f8863da4-2a5f-40a9-8b9f-3c3b0650da0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27502,33713611-50b3-439c-acdc-9647fef367d5,LIST_ACCOUNTS,hbciListAccounts,false +27503,33713611-50b3-439c-acdc-9647fef367d5,LIST_TRANSACTIONS,hbciListTransactions,false +27504,33713611-50b3-439c-acdc-9647fef367d5,AUTHORIZATION,,false +27505,33713611-50b3-439c-acdc-9647fef367d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27506,33713611-50b3-439c-acdc-9647fef367d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27507,33713611-50b3-439c-acdc-9647fef367d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27508,6412e255-5f80-475d-ab43-f35dc6395729,LIST_ACCOUNTS,xs2aListAccounts,true -27509,6412e255-5f80-475d-ab43-f35dc6395729,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27509,6412e255-5f80-475d-ab43-f35dc6395729,LIST_TRANSACTIONS,xs2aListTransactions,true 27510,6412e255-5f80-475d-ab43-f35dc6395729,AUTHORIZATION,,true 27511,6412e255-5f80-475d-ab43-f35dc6395729,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27512,6412e255-5f80-475d-ab43-f35dc6395729,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27513,6412e255-5f80-475d-ab43-f35dc6395729,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27514,6dc53835-82f3-4683-a693-59fe02a89298,LIST_ACCOUNTS,hbciListAccounts,false -27515,6dc53835-82f3-4683-a693-59fe02a89298,LIST_TRANSACTIONS,hbciListTransactions,false -27516,6dc53835-82f3-4683-a693-59fe02a89298,AUTHORIZATION,,false -27517,6dc53835-82f3-4683-a693-59fe02a89298,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27518,6dc53835-82f3-4683-a693-59fe02a89298,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27519,6dc53835-82f3-4683-a693-59fe02a89298,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27514,eab37ab0-83aa-4c95-9cd9-c584345cf95a,LIST_ACCOUNTS,hbciListAccounts,false +27515,eab37ab0-83aa-4c95-9cd9-c584345cf95a,LIST_TRANSACTIONS,hbciListTransactions,false +27516,eab37ab0-83aa-4c95-9cd9-c584345cf95a,AUTHORIZATION,,false +27517,eab37ab0-83aa-4c95-9cd9-c584345cf95a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27518,eab37ab0-83aa-4c95-9cd9-c584345cf95a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27519,eab37ab0-83aa-4c95-9cd9-c584345cf95a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27520,5a0da713-f51f-487d-902a-3b2442ddb806,LIST_ACCOUNTS,xs2aListAccounts,true -27521,5a0da713-f51f-487d-902a-3b2442ddb806,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27521,5a0da713-f51f-487d-902a-3b2442ddb806,LIST_TRANSACTIONS,xs2aListTransactions,true 27522,5a0da713-f51f-487d-902a-3b2442ddb806,AUTHORIZATION,,true 27523,5a0da713-f51f-487d-902a-3b2442ddb806,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27524,5a0da713-f51f-487d-902a-3b2442ddb806,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27525,5a0da713-f51f-487d-902a-3b2442ddb806,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27526,23170599-3298-463e-8283-8251c961b6ae,LIST_ACCOUNTS,hbciListAccounts,false -27527,23170599-3298-463e-8283-8251c961b6ae,LIST_TRANSACTIONS,hbciListTransactions,false -27528,23170599-3298-463e-8283-8251c961b6ae,AUTHORIZATION,,false -27529,23170599-3298-463e-8283-8251c961b6ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27530,23170599-3298-463e-8283-8251c961b6ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27531,23170599-3298-463e-8283-8251c961b6ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27526,037e76e8-ea76-471d-8f36-9d2b884b816a,LIST_ACCOUNTS,hbciListAccounts,false +27527,037e76e8-ea76-471d-8f36-9d2b884b816a,LIST_TRANSACTIONS,hbciListTransactions,false +27528,037e76e8-ea76-471d-8f36-9d2b884b816a,AUTHORIZATION,,false +27529,037e76e8-ea76-471d-8f36-9d2b884b816a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27530,037e76e8-ea76-471d-8f36-9d2b884b816a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27531,037e76e8-ea76-471d-8f36-9d2b884b816a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27532,a5440db2-ef51-4598-9cdc-b6795833e079,LIST_ACCOUNTS,xs2aListAccounts,true -27533,a5440db2-ef51-4598-9cdc-b6795833e079,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27533,a5440db2-ef51-4598-9cdc-b6795833e079,LIST_TRANSACTIONS,xs2aListTransactions,true 27534,a5440db2-ef51-4598-9cdc-b6795833e079,AUTHORIZATION,,true 27535,a5440db2-ef51-4598-9cdc-b6795833e079,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27536,a5440db2-ef51-4598-9cdc-b6795833e079,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27537,a5440db2-ef51-4598-9cdc-b6795833e079,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27538,3b888bde-08df-423e-a590-ab0f9be79b49,LIST_ACCOUNTS,hbciListAccounts,false -27539,3b888bde-08df-423e-a590-ab0f9be79b49,LIST_TRANSACTIONS,hbciListTransactions,false -27540,3b888bde-08df-423e-a590-ab0f9be79b49,AUTHORIZATION,,false -27541,3b888bde-08df-423e-a590-ab0f9be79b49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27542,3b888bde-08df-423e-a590-ab0f9be79b49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27543,3b888bde-08df-423e-a590-ab0f9be79b49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27538,3cf7044b-a58b-4c6b-b799-eb221bd6b221,LIST_ACCOUNTS,hbciListAccounts,false +27539,3cf7044b-a58b-4c6b-b799-eb221bd6b221,LIST_TRANSACTIONS,hbciListTransactions,false +27540,3cf7044b-a58b-4c6b-b799-eb221bd6b221,AUTHORIZATION,,false +27541,3cf7044b-a58b-4c6b-b799-eb221bd6b221,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27542,3cf7044b-a58b-4c6b-b799-eb221bd6b221,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27543,3cf7044b-a58b-4c6b-b799-eb221bd6b221,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27544,9b8ca3bf-332f-4b50-8a35-2a552e0a6a5d,LIST_ACCOUNTS,xs2aListAccounts,true -27545,9b8ca3bf-332f-4b50-8a35-2a552e0a6a5d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27545,9b8ca3bf-332f-4b50-8a35-2a552e0a6a5d,LIST_TRANSACTIONS,xs2aListTransactions,true 27546,9b8ca3bf-332f-4b50-8a35-2a552e0a6a5d,AUTHORIZATION,,true 27547,9b8ca3bf-332f-4b50-8a35-2a552e0a6a5d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27548,9b8ca3bf-332f-4b50-8a35-2a552e0a6a5d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27549,9b8ca3bf-332f-4b50-8a35-2a552e0a6a5d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27550,e7739514-806d-4852-a760-5781b15090f6,LIST_ACCOUNTS,hbciListAccounts,false -27551,e7739514-806d-4852-a760-5781b15090f6,LIST_TRANSACTIONS,hbciListTransactions,false -27552,e7739514-806d-4852-a760-5781b15090f6,AUTHORIZATION,,false -27553,e7739514-806d-4852-a760-5781b15090f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27554,e7739514-806d-4852-a760-5781b15090f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27555,e7739514-806d-4852-a760-5781b15090f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27550,dc063bb0-7a18-4f81-8f27-d28ffd654c35,LIST_ACCOUNTS,hbciListAccounts,false +27551,dc063bb0-7a18-4f81-8f27-d28ffd654c35,LIST_TRANSACTIONS,hbciListTransactions,false +27552,dc063bb0-7a18-4f81-8f27-d28ffd654c35,AUTHORIZATION,,false +27553,dc063bb0-7a18-4f81-8f27-d28ffd654c35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27554,dc063bb0-7a18-4f81-8f27-d28ffd654c35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27555,dc063bb0-7a18-4f81-8f27-d28ffd654c35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27556,1578bb03-deb1-4d0c-b356-34e4bb74914b,LIST_ACCOUNTS,xs2aListAccounts,true -27557,1578bb03-deb1-4d0c-b356-34e4bb74914b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27557,1578bb03-deb1-4d0c-b356-34e4bb74914b,LIST_TRANSACTIONS,xs2aListTransactions,true 27558,1578bb03-deb1-4d0c-b356-34e4bb74914b,AUTHORIZATION,,true 27559,1578bb03-deb1-4d0c-b356-34e4bb74914b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27560,1578bb03-deb1-4d0c-b356-34e4bb74914b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27561,1578bb03-deb1-4d0c-b356-34e4bb74914b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27562,f59810e5-fb53-43c9-8bf3-3ffc65c1f448,LIST_ACCOUNTS,hbciListAccounts,false -27563,f59810e5-fb53-43c9-8bf3-3ffc65c1f448,LIST_TRANSACTIONS,hbciListTransactions,false -27564,f59810e5-fb53-43c9-8bf3-3ffc65c1f448,AUTHORIZATION,,false -27565,f59810e5-fb53-43c9-8bf3-3ffc65c1f448,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27566,f59810e5-fb53-43c9-8bf3-3ffc65c1f448,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27567,f59810e5-fb53-43c9-8bf3-3ffc65c1f448,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27562,3a52e85a-30ff-4994-9eb0-a32914000ac2,LIST_ACCOUNTS,hbciListAccounts,false +27563,3a52e85a-30ff-4994-9eb0-a32914000ac2,LIST_TRANSACTIONS,hbciListTransactions,false +27564,3a52e85a-30ff-4994-9eb0-a32914000ac2,AUTHORIZATION,,false +27565,3a52e85a-30ff-4994-9eb0-a32914000ac2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27566,3a52e85a-30ff-4994-9eb0-a32914000ac2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27567,3a52e85a-30ff-4994-9eb0-a32914000ac2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27568,7d5fb292-e2df-4fad-abf6-14fa2b967a4e,LIST_ACCOUNTS,xs2aListAccounts,true -27569,7d5fb292-e2df-4fad-abf6-14fa2b967a4e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27569,7d5fb292-e2df-4fad-abf6-14fa2b967a4e,LIST_TRANSACTIONS,xs2aListTransactions,true 27570,7d5fb292-e2df-4fad-abf6-14fa2b967a4e,AUTHORIZATION,,true 27571,7d5fb292-e2df-4fad-abf6-14fa2b967a4e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27572,7d5fb292-e2df-4fad-abf6-14fa2b967a4e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27573,7d5fb292-e2df-4fad-abf6-14fa2b967a4e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27574,910aefe2-3610-4d98-8e55-6b716aec10f9,LIST_ACCOUNTS,hbciListAccounts,false -27575,910aefe2-3610-4d98-8e55-6b716aec10f9,LIST_TRANSACTIONS,hbciListTransactions,false -27576,910aefe2-3610-4d98-8e55-6b716aec10f9,AUTHORIZATION,,false -27577,910aefe2-3610-4d98-8e55-6b716aec10f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27578,910aefe2-3610-4d98-8e55-6b716aec10f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27579,910aefe2-3610-4d98-8e55-6b716aec10f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27574,0335e49a-734b-4e51-a5de-1a4bf4f4f07e,LIST_ACCOUNTS,hbciListAccounts,false +27575,0335e49a-734b-4e51-a5de-1a4bf4f4f07e,LIST_TRANSACTIONS,hbciListTransactions,false +27576,0335e49a-734b-4e51-a5de-1a4bf4f4f07e,AUTHORIZATION,,false +27577,0335e49a-734b-4e51-a5de-1a4bf4f4f07e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27578,0335e49a-734b-4e51-a5de-1a4bf4f4f07e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27579,0335e49a-734b-4e51-a5de-1a4bf4f4f07e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27580,357b40ba-d160-4f78-8451-ce3dcfa73df4,LIST_ACCOUNTS,xs2aListAccounts,true -27581,357b40ba-d160-4f78-8451-ce3dcfa73df4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27581,357b40ba-d160-4f78-8451-ce3dcfa73df4,LIST_TRANSACTIONS,xs2aListTransactions,true 27582,357b40ba-d160-4f78-8451-ce3dcfa73df4,AUTHORIZATION,,true 27583,357b40ba-d160-4f78-8451-ce3dcfa73df4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27584,357b40ba-d160-4f78-8451-ce3dcfa73df4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27585,357b40ba-d160-4f78-8451-ce3dcfa73df4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27586,80cad80a-037c-4503-9f4f-a642511bb324,LIST_ACCOUNTS,hbciListAccounts,false -27587,80cad80a-037c-4503-9f4f-a642511bb324,LIST_TRANSACTIONS,hbciListTransactions,false -27588,80cad80a-037c-4503-9f4f-a642511bb324,AUTHORIZATION,,false -27589,80cad80a-037c-4503-9f4f-a642511bb324,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27590,80cad80a-037c-4503-9f4f-a642511bb324,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27591,80cad80a-037c-4503-9f4f-a642511bb324,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27586,74592863-d78d-47dc-85c8-dc177b1979db,LIST_ACCOUNTS,hbciListAccounts,false +27587,74592863-d78d-47dc-85c8-dc177b1979db,LIST_TRANSACTIONS,hbciListTransactions,false +27588,74592863-d78d-47dc-85c8-dc177b1979db,AUTHORIZATION,,false +27589,74592863-d78d-47dc-85c8-dc177b1979db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27590,74592863-d78d-47dc-85c8-dc177b1979db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27591,74592863-d78d-47dc-85c8-dc177b1979db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27592,12d8ae27-4bde-4467-bff3-a7b9057a7e27,LIST_ACCOUNTS,xs2aListAccounts,true -27593,12d8ae27-4bde-4467-bff3-a7b9057a7e27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27593,12d8ae27-4bde-4467-bff3-a7b9057a7e27,LIST_TRANSACTIONS,xs2aListTransactions,true 27594,12d8ae27-4bde-4467-bff3-a7b9057a7e27,AUTHORIZATION,,true 27595,12d8ae27-4bde-4467-bff3-a7b9057a7e27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27596,12d8ae27-4bde-4467-bff3-a7b9057a7e27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27597,12d8ae27-4bde-4467-bff3-a7b9057a7e27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27598,e086d1cc-0840-4c6e-a3e4-ed3224362989,LIST_ACCOUNTS,hbciListAccounts,false -27599,e086d1cc-0840-4c6e-a3e4-ed3224362989,LIST_TRANSACTIONS,hbciListTransactions,false -27600,e086d1cc-0840-4c6e-a3e4-ed3224362989,AUTHORIZATION,,false -27601,e086d1cc-0840-4c6e-a3e4-ed3224362989,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27602,e086d1cc-0840-4c6e-a3e4-ed3224362989,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27603,e086d1cc-0840-4c6e-a3e4-ed3224362989,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27598,3f12135a-d985-4261-a5a7-a39d88b1472e,LIST_ACCOUNTS,hbciListAccounts,false +27599,3f12135a-d985-4261-a5a7-a39d88b1472e,LIST_TRANSACTIONS,hbciListTransactions,false +27600,3f12135a-d985-4261-a5a7-a39d88b1472e,AUTHORIZATION,,false +27601,3f12135a-d985-4261-a5a7-a39d88b1472e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27602,3f12135a-d985-4261-a5a7-a39d88b1472e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27603,3f12135a-d985-4261-a5a7-a39d88b1472e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27604,07a80625-b03d-4751-8e8b-66296c92e08e,LIST_ACCOUNTS,xs2aListAccounts,true -27605,07a80625-b03d-4751-8e8b-66296c92e08e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27605,07a80625-b03d-4751-8e8b-66296c92e08e,LIST_TRANSACTIONS,xs2aListTransactions,true 27606,07a80625-b03d-4751-8e8b-66296c92e08e,AUTHORIZATION,,true 27607,07a80625-b03d-4751-8e8b-66296c92e08e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27608,07a80625-b03d-4751-8e8b-66296c92e08e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27609,07a80625-b03d-4751-8e8b-66296c92e08e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27610,56c973a6-d9d0-4011-a2e2-9c240c532ff2,LIST_ACCOUNTS,hbciListAccounts,false -27611,56c973a6-d9d0-4011-a2e2-9c240c532ff2,LIST_TRANSACTIONS,hbciListTransactions,false -27612,56c973a6-d9d0-4011-a2e2-9c240c532ff2,AUTHORIZATION,,false -27613,56c973a6-d9d0-4011-a2e2-9c240c532ff2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27614,56c973a6-d9d0-4011-a2e2-9c240c532ff2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27615,56c973a6-d9d0-4011-a2e2-9c240c532ff2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27610,99f890b5-8703-4bc9-ba94-303c319cbe9e,LIST_ACCOUNTS,hbciListAccounts,false +27611,99f890b5-8703-4bc9-ba94-303c319cbe9e,LIST_TRANSACTIONS,hbciListTransactions,false +27612,99f890b5-8703-4bc9-ba94-303c319cbe9e,AUTHORIZATION,,false +27613,99f890b5-8703-4bc9-ba94-303c319cbe9e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27614,99f890b5-8703-4bc9-ba94-303c319cbe9e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27615,99f890b5-8703-4bc9-ba94-303c319cbe9e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27616,5d7884cd-0435-4c96-b54e-3380cc26451a,LIST_ACCOUNTS,xs2aListAccounts,true -27617,5d7884cd-0435-4c96-b54e-3380cc26451a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27617,5d7884cd-0435-4c96-b54e-3380cc26451a,LIST_TRANSACTIONS,xs2aListTransactions,true 27618,5d7884cd-0435-4c96-b54e-3380cc26451a,AUTHORIZATION,,true 27619,5d7884cd-0435-4c96-b54e-3380cc26451a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27620,5d7884cd-0435-4c96-b54e-3380cc26451a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27621,5d7884cd-0435-4c96-b54e-3380cc26451a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27622,ff0ef3ee-51e7-4399-afab-b23f3b0946f9,LIST_ACCOUNTS,hbciListAccounts,false -27623,ff0ef3ee-51e7-4399-afab-b23f3b0946f9,LIST_TRANSACTIONS,hbciListTransactions,false -27624,ff0ef3ee-51e7-4399-afab-b23f3b0946f9,AUTHORIZATION,,false -27625,ff0ef3ee-51e7-4399-afab-b23f3b0946f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27626,ff0ef3ee-51e7-4399-afab-b23f3b0946f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27627,ff0ef3ee-51e7-4399-afab-b23f3b0946f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27622,7b40db88-8636-4906-acce-75d0d2ba3c61,LIST_ACCOUNTS,hbciListAccounts,false +27623,7b40db88-8636-4906-acce-75d0d2ba3c61,LIST_TRANSACTIONS,hbciListTransactions,false +27624,7b40db88-8636-4906-acce-75d0d2ba3c61,AUTHORIZATION,,false +27625,7b40db88-8636-4906-acce-75d0d2ba3c61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27626,7b40db88-8636-4906-acce-75d0d2ba3c61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27627,7b40db88-8636-4906-acce-75d0d2ba3c61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27628,38fbf480-8659-4dc3-be45-d3cd192f4391,LIST_ACCOUNTS,xs2aListAccounts,true -27629,38fbf480-8659-4dc3-be45-d3cd192f4391,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27629,38fbf480-8659-4dc3-be45-d3cd192f4391,LIST_TRANSACTIONS,xs2aListTransactions,true 27630,38fbf480-8659-4dc3-be45-d3cd192f4391,AUTHORIZATION,,true 27631,38fbf480-8659-4dc3-be45-d3cd192f4391,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27632,38fbf480-8659-4dc3-be45-d3cd192f4391,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27633,38fbf480-8659-4dc3-be45-d3cd192f4391,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27634,134088c1-489f-4823-a0f7-4eeaafe58cff,LIST_ACCOUNTS,hbciListAccounts,false -27635,134088c1-489f-4823-a0f7-4eeaafe58cff,LIST_TRANSACTIONS,hbciListTransactions,false -27636,134088c1-489f-4823-a0f7-4eeaafe58cff,AUTHORIZATION,,false -27637,134088c1-489f-4823-a0f7-4eeaafe58cff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27638,134088c1-489f-4823-a0f7-4eeaafe58cff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27639,134088c1-489f-4823-a0f7-4eeaafe58cff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27634,25e5e544-f2c9-4798-8e08-cd515c5ab7fc,LIST_ACCOUNTS,hbciListAccounts,false +27635,25e5e544-f2c9-4798-8e08-cd515c5ab7fc,LIST_TRANSACTIONS,hbciListTransactions,false +27636,25e5e544-f2c9-4798-8e08-cd515c5ab7fc,AUTHORIZATION,,false +27637,25e5e544-f2c9-4798-8e08-cd515c5ab7fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27638,25e5e544-f2c9-4798-8e08-cd515c5ab7fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27639,25e5e544-f2c9-4798-8e08-cd515c5ab7fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27640,82885223-0902-46ea-93a7-57221009b204,LIST_ACCOUNTS,xs2aListAccounts,true -27641,82885223-0902-46ea-93a7-57221009b204,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27641,82885223-0902-46ea-93a7-57221009b204,LIST_TRANSACTIONS,xs2aListTransactions,true 27642,82885223-0902-46ea-93a7-57221009b204,AUTHORIZATION,,true 27643,82885223-0902-46ea-93a7-57221009b204,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27644,82885223-0902-46ea-93a7-57221009b204,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27645,82885223-0902-46ea-93a7-57221009b204,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27646,4d925bc5-fd30-4007-a816-303ef0bede25,LIST_ACCOUNTS,hbciListAccounts,false -27647,4d925bc5-fd30-4007-a816-303ef0bede25,LIST_TRANSACTIONS,hbciListTransactions,false -27648,4d925bc5-fd30-4007-a816-303ef0bede25,AUTHORIZATION,,false -27649,4d925bc5-fd30-4007-a816-303ef0bede25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27650,4d925bc5-fd30-4007-a816-303ef0bede25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27651,4d925bc5-fd30-4007-a816-303ef0bede25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27646,a2926ef0-ef08-401e-9fc8-ca17bf5480f4,LIST_ACCOUNTS,hbciListAccounts,false +27647,a2926ef0-ef08-401e-9fc8-ca17bf5480f4,LIST_TRANSACTIONS,hbciListTransactions,false +27648,a2926ef0-ef08-401e-9fc8-ca17bf5480f4,AUTHORIZATION,,false +27649,a2926ef0-ef08-401e-9fc8-ca17bf5480f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27650,a2926ef0-ef08-401e-9fc8-ca17bf5480f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27651,a2926ef0-ef08-401e-9fc8-ca17bf5480f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27652,3b4812a6-f8c5-4ca6-ae2e-bbd6d1730278,LIST_ACCOUNTS,xs2aListAccounts,true -27653,3b4812a6-f8c5-4ca6-ae2e-bbd6d1730278,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27653,3b4812a6-f8c5-4ca6-ae2e-bbd6d1730278,LIST_TRANSACTIONS,xs2aListTransactions,true 27654,3b4812a6-f8c5-4ca6-ae2e-bbd6d1730278,AUTHORIZATION,,true 27655,3b4812a6-f8c5-4ca6-ae2e-bbd6d1730278,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27656,3b4812a6-f8c5-4ca6-ae2e-bbd6d1730278,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27657,3b4812a6-f8c5-4ca6-ae2e-bbd6d1730278,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27658,2a7598df-b0b1-4a21-bd1c-389a32c0ab22,LIST_ACCOUNTS,hbciListAccounts,false -27659,2a7598df-b0b1-4a21-bd1c-389a32c0ab22,LIST_TRANSACTIONS,hbciListTransactions,false -27660,2a7598df-b0b1-4a21-bd1c-389a32c0ab22,AUTHORIZATION,,false -27661,2a7598df-b0b1-4a21-bd1c-389a32c0ab22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27662,2a7598df-b0b1-4a21-bd1c-389a32c0ab22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27663,2a7598df-b0b1-4a21-bd1c-389a32c0ab22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27658,eb9e5dc8-f0e3-49a4-9b3c-770e3190a962,LIST_ACCOUNTS,hbciListAccounts,false +27659,eb9e5dc8-f0e3-49a4-9b3c-770e3190a962,LIST_TRANSACTIONS,hbciListTransactions,false +27660,eb9e5dc8-f0e3-49a4-9b3c-770e3190a962,AUTHORIZATION,,false +27661,eb9e5dc8-f0e3-49a4-9b3c-770e3190a962,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27662,eb9e5dc8-f0e3-49a4-9b3c-770e3190a962,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27663,eb9e5dc8-f0e3-49a4-9b3c-770e3190a962,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27664,ac2a40f4-6e24-4cf7-8332-b5a7d1683449,LIST_ACCOUNTS,xs2aListAccounts,true -27665,ac2a40f4-6e24-4cf7-8332-b5a7d1683449,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27665,ac2a40f4-6e24-4cf7-8332-b5a7d1683449,LIST_TRANSACTIONS,xs2aListTransactions,true 27666,ac2a40f4-6e24-4cf7-8332-b5a7d1683449,AUTHORIZATION,,true 27667,ac2a40f4-6e24-4cf7-8332-b5a7d1683449,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27668,ac2a40f4-6e24-4cf7-8332-b5a7d1683449,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27669,ac2a40f4-6e24-4cf7-8332-b5a7d1683449,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27670,b6a7ed1f-ba20-4a88-bc0c-f2b8d328add7,LIST_ACCOUNTS,hbciListAccounts,false -27671,b6a7ed1f-ba20-4a88-bc0c-f2b8d328add7,LIST_TRANSACTIONS,hbciListTransactions,false -27672,b6a7ed1f-ba20-4a88-bc0c-f2b8d328add7,AUTHORIZATION,,false -27673,b6a7ed1f-ba20-4a88-bc0c-f2b8d328add7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27674,b6a7ed1f-ba20-4a88-bc0c-f2b8d328add7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27675,b6a7ed1f-ba20-4a88-bc0c-f2b8d328add7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27670,54bf5cb7-3ee1-4e74-a4f6-d92f07de3793,LIST_ACCOUNTS,hbciListAccounts,false +27671,54bf5cb7-3ee1-4e74-a4f6-d92f07de3793,LIST_TRANSACTIONS,hbciListTransactions,false +27672,54bf5cb7-3ee1-4e74-a4f6-d92f07de3793,AUTHORIZATION,,false +27673,54bf5cb7-3ee1-4e74-a4f6-d92f07de3793,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27674,54bf5cb7-3ee1-4e74-a4f6-d92f07de3793,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27675,54bf5cb7-3ee1-4e74-a4f6-d92f07de3793,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27676,2c3af2d2-8e93-40a4-ab9e-bde267d45e64,LIST_ACCOUNTS,xs2aListAccounts,true -27677,2c3af2d2-8e93-40a4-ab9e-bde267d45e64,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27677,2c3af2d2-8e93-40a4-ab9e-bde267d45e64,LIST_TRANSACTIONS,xs2aListTransactions,true 27678,2c3af2d2-8e93-40a4-ab9e-bde267d45e64,AUTHORIZATION,,true 27679,2c3af2d2-8e93-40a4-ab9e-bde267d45e64,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27680,2c3af2d2-8e93-40a4-ab9e-bde267d45e64,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27681,2c3af2d2-8e93-40a4-ab9e-bde267d45e64,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27682,4fc01753-7c58-4544-ba76-41d54f9670ce,LIST_ACCOUNTS,hbciListAccounts,false -27683,4fc01753-7c58-4544-ba76-41d54f9670ce,LIST_TRANSACTIONS,hbciListTransactions,false -27684,4fc01753-7c58-4544-ba76-41d54f9670ce,AUTHORIZATION,,false -27685,4fc01753-7c58-4544-ba76-41d54f9670ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27686,4fc01753-7c58-4544-ba76-41d54f9670ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27687,4fc01753-7c58-4544-ba76-41d54f9670ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27682,1c971062-fc1a-4baf-a1d3-018da9c66bec,LIST_ACCOUNTS,hbciListAccounts,false +27683,1c971062-fc1a-4baf-a1d3-018da9c66bec,LIST_TRANSACTIONS,hbciListTransactions,false +27684,1c971062-fc1a-4baf-a1d3-018da9c66bec,AUTHORIZATION,,false +27685,1c971062-fc1a-4baf-a1d3-018da9c66bec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27686,1c971062-fc1a-4baf-a1d3-018da9c66bec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27687,1c971062-fc1a-4baf-a1d3-018da9c66bec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27688,3171baa4-d318-44d9-a153-28beadf18756,LIST_ACCOUNTS,xs2aListAccounts,true -27689,3171baa4-d318-44d9-a153-28beadf18756,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27689,3171baa4-d318-44d9-a153-28beadf18756,LIST_TRANSACTIONS,xs2aListTransactions,true 27690,3171baa4-d318-44d9-a153-28beadf18756,AUTHORIZATION,,true 27691,3171baa4-d318-44d9-a153-28beadf18756,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27692,3171baa4-d318-44d9-a153-28beadf18756,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27693,3171baa4-d318-44d9-a153-28beadf18756,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27694,b2bea560-6749-439c-ba54-6dbea8e7a68a,LIST_ACCOUNTS,hbciListAccounts,false -27695,b2bea560-6749-439c-ba54-6dbea8e7a68a,LIST_TRANSACTIONS,hbciListTransactions,false -27696,b2bea560-6749-439c-ba54-6dbea8e7a68a,AUTHORIZATION,,false -27697,b2bea560-6749-439c-ba54-6dbea8e7a68a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27698,b2bea560-6749-439c-ba54-6dbea8e7a68a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27699,b2bea560-6749-439c-ba54-6dbea8e7a68a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27694,9d0252bb-dafe-4098-acfb-749fe80430b3,LIST_ACCOUNTS,hbciListAccounts,false +27695,9d0252bb-dafe-4098-acfb-749fe80430b3,LIST_TRANSACTIONS,hbciListTransactions,false +27696,9d0252bb-dafe-4098-acfb-749fe80430b3,AUTHORIZATION,,false +27697,9d0252bb-dafe-4098-acfb-749fe80430b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27698,9d0252bb-dafe-4098-acfb-749fe80430b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27699,9d0252bb-dafe-4098-acfb-749fe80430b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27700,ede88fef-f801-47ba-a74c-c8b4a0b84d42,LIST_ACCOUNTS,xs2aListAccounts,true -27701,ede88fef-f801-47ba-a74c-c8b4a0b84d42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27701,ede88fef-f801-47ba-a74c-c8b4a0b84d42,LIST_TRANSACTIONS,xs2aListTransactions,true 27702,ede88fef-f801-47ba-a74c-c8b4a0b84d42,AUTHORIZATION,,true 27703,ede88fef-f801-47ba-a74c-c8b4a0b84d42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27704,ede88fef-f801-47ba-a74c-c8b4a0b84d42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27705,ede88fef-f801-47ba-a74c-c8b4a0b84d42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27706,d8b014d3-2f25-46fb-8127-f47aca24f085,LIST_ACCOUNTS,hbciListAccounts,false -27707,d8b014d3-2f25-46fb-8127-f47aca24f085,LIST_TRANSACTIONS,hbciListTransactions,false -27708,d8b014d3-2f25-46fb-8127-f47aca24f085,AUTHORIZATION,,false -27709,d8b014d3-2f25-46fb-8127-f47aca24f085,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27710,d8b014d3-2f25-46fb-8127-f47aca24f085,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27711,d8b014d3-2f25-46fb-8127-f47aca24f085,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27706,65c1e507-4f85-476d-ac65-0ce314079288,LIST_ACCOUNTS,hbciListAccounts,false +27707,65c1e507-4f85-476d-ac65-0ce314079288,LIST_TRANSACTIONS,hbciListTransactions,false +27708,65c1e507-4f85-476d-ac65-0ce314079288,AUTHORIZATION,,false +27709,65c1e507-4f85-476d-ac65-0ce314079288,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27710,65c1e507-4f85-476d-ac65-0ce314079288,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27711,65c1e507-4f85-476d-ac65-0ce314079288,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27712,abb5c731-468c-4d2c-95c7-38d627cb4892,LIST_ACCOUNTS,xs2aListAccounts,true -27713,abb5c731-468c-4d2c-95c7-38d627cb4892,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27713,abb5c731-468c-4d2c-95c7-38d627cb4892,LIST_TRANSACTIONS,xs2aListTransactions,true 27714,abb5c731-468c-4d2c-95c7-38d627cb4892,AUTHORIZATION,,true 27715,abb5c731-468c-4d2c-95c7-38d627cb4892,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27716,abb5c731-468c-4d2c-95c7-38d627cb4892,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27717,abb5c731-468c-4d2c-95c7-38d627cb4892,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27718,e9ab2900-d85b-4b20-8529-4ca64b6f15ec,LIST_ACCOUNTS,hbciListAccounts,false -27719,e9ab2900-d85b-4b20-8529-4ca64b6f15ec,LIST_TRANSACTIONS,hbciListTransactions,false -27720,e9ab2900-d85b-4b20-8529-4ca64b6f15ec,AUTHORIZATION,,false -27721,e9ab2900-d85b-4b20-8529-4ca64b6f15ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27722,e9ab2900-d85b-4b20-8529-4ca64b6f15ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27723,e9ab2900-d85b-4b20-8529-4ca64b6f15ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27718,d702fe5b-3dd4-439b-9d86-c18839bccc13,LIST_ACCOUNTS,hbciListAccounts,false +27719,d702fe5b-3dd4-439b-9d86-c18839bccc13,LIST_TRANSACTIONS,hbciListTransactions,false +27720,d702fe5b-3dd4-439b-9d86-c18839bccc13,AUTHORIZATION,,false +27721,d702fe5b-3dd4-439b-9d86-c18839bccc13,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27722,d702fe5b-3dd4-439b-9d86-c18839bccc13,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27723,d702fe5b-3dd4-439b-9d86-c18839bccc13,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27724,01181f96-2c68-499e-9df8-85b18253bf05,LIST_ACCOUNTS,xs2aListAccounts,true -27725,01181f96-2c68-499e-9df8-85b18253bf05,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27725,01181f96-2c68-499e-9df8-85b18253bf05,LIST_TRANSACTIONS,xs2aListTransactions,true 27726,01181f96-2c68-499e-9df8-85b18253bf05,AUTHORIZATION,,true 27727,01181f96-2c68-499e-9df8-85b18253bf05,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27728,01181f96-2c68-499e-9df8-85b18253bf05,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27729,01181f96-2c68-499e-9df8-85b18253bf05,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27730,ee5b566f-e713-4dd9-a162-b39da726069a,LIST_ACCOUNTS,hbciListAccounts,false -27731,ee5b566f-e713-4dd9-a162-b39da726069a,LIST_TRANSACTIONS,hbciListTransactions,false -27732,ee5b566f-e713-4dd9-a162-b39da726069a,AUTHORIZATION,,false -27733,ee5b566f-e713-4dd9-a162-b39da726069a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27734,ee5b566f-e713-4dd9-a162-b39da726069a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27735,ee5b566f-e713-4dd9-a162-b39da726069a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27730,8c351774-6186-4218-9108-ee36a003c4fb,LIST_ACCOUNTS,hbciListAccounts,false +27731,8c351774-6186-4218-9108-ee36a003c4fb,LIST_TRANSACTIONS,hbciListTransactions,false +27732,8c351774-6186-4218-9108-ee36a003c4fb,AUTHORIZATION,,false +27733,8c351774-6186-4218-9108-ee36a003c4fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27734,8c351774-6186-4218-9108-ee36a003c4fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27735,8c351774-6186-4218-9108-ee36a003c4fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27736,443261f3-1283-4dce-8471-b4fd0c96bbcc,LIST_ACCOUNTS,xs2aListAccounts,true -27737,443261f3-1283-4dce-8471-b4fd0c96bbcc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27737,443261f3-1283-4dce-8471-b4fd0c96bbcc,LIST_TRANSACTIONS,xs2aListTransactions,true 27738,443261f3-1283-4dce-8471-b4fd0c96bbcc,AUTHORIZATION,,true 27739,443261f3-1283-4dce-8471-b4fd0c96bbcc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27740,443261f3-1283-4dce-8471-b4fd0c96bbcc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27741,443261f3-1283-4dce-8471-b4fd0c96bbcc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27742,94bb287c-2f33-4321-91d9-6d6ee9cf89d5,LIST_ACCOUNTS,hbciListAccounts,false -27743,94bb287c-2f33-4321-91d9-6d6ee9cf89d5,LIST_TRANSACTIONS,hbciListTransactions,false -27744,94bb287c-2f33-4321-91d9-6d6ee9cf89d5,AUTHORIZATION,,false -27745,94bb287c-2f33-4321-91d9-6d6ee9cf89d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27746,94bb287c-2f33-4321-91d9-6d6ee9cf89d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27747,94bb287c-2f33-4321-91d9-6d6ee9cf89d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27742,a19218fd-50c6-4f8b-b697-98132c6efece,LIST_ACCOUNTS,hbciListAccounts,false +27743,a19218fd-50c6-4f8b-b697-98132c6efece,LIST_TRANSACTIONS,hbciListTransactions,false +27744,a19218fd-50c6-4f8b-b697-98132c6efece,AUTHORIZATION,,false +27745,a19218fd-50c6-4f8b-b697-98132c6efece,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27746,a19218fd-50c6-4f8b-b697-98132c6efece,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27747,a19218fd-50c6-4f8b-b697-98132c6efece,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27748,09e8ed87-47b7-46ab-b9cd-6a752e82964e,LIST_ACCOUNTS,xs2aListAccounts,true -27749,09e8ed87-47b7-46ab-b9cd-6a752e82964e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27749,09e8ed87-47b7-46ab-b9cd-6a752e82964e,LIST_TRANSACTIONS,xs2aListTransactions,true 27750,09e8ed87-47b7-46ab-b9cd-6a752e82964e,AUTHORIZATION,,true 27751,09e8ed87-47b7-46ab-b9cd-6a752e82964e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27752,09e8ed87-47b7-46ab-b9cd-6a752e82964e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27753,09e8ed87-47b7-46ab-b9cd-6a752e82964e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27754,e387958c-5dac-4d3e-b1eb-ed63ae133a16,LIST_ACCOUNTS,hbciListAccounts,false -27755,e387958c-5dac-4d3e-b1eb-ed63ae133a16,LIST_TRANSACTIONS,hbciListTransactions,false -27756,e387958c-5dac-4d3e-b1eb-ed63ae133a16,AUTHORIZATION,,false -27757,e387958c-5dac-4d3e-b1eb-ed63ae133a16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27758,e387958c-5dac-4d3e-b1eb-ed63ae133a16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27759,e387958c-5dac-4d3e-b1eb-ed63ae133a16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27754,d0fc7573-ef54-44c9-aa59-6b250b7514cd,LIST_ACCOUNTS,hbciListAccounts,false +27755,d0fc7573-ef54-44c9-aa59-6b250b7514cd,LIST_TRANSACTIONS,hbciListTransactions,false +27756,d0fc7573-ef54-44c9-aa59-6b250b7514cd,AUTHORIZATION,,false +27757,d0fc7573-ef54-44c9-aa59-6b250b7514cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27758,d0fc7573-ef54-44c9-aa59-6b250b7514cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27759,d0fc7573-ef54-44c9-aa59-6b250b7514cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27760,0735297e-42fe-4033-962e-dfc19b11068c,LIST_ACCOUNTS,xs2aListAccounts,true -27761,0735297e-42fe-4033-962e-dfc19b11068c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27761,0735297e-42fe-4033-962e-dfc19b11068c,LIST_TRANSACTIONS,xs2aListTransactions,true 27762,0735297e-42fe-4033-962e-dfc19b11068c,AUTHORIZATION,,true 27763,0735297e-42fe-4033-962e-dfc19b11068c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27764,0735297e-42fe-4033-962e-dfc19b11068c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27765,0735297e-42fe-4033-962e-dfc19b11068c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27766,65935352-3951-4b3e-aca2-c8400da69d13,LIST_ACCOUNTS,hbciListAccounts,false -27767,65935352-3951-4b3e-aca2-c8400da69d13,LIST_TRANSACTIONS,hbciListTransactions,false -27768,65935352-3951-4b3e-aca2-c8400da69d13,AUTHORIZATION,,false -27769,65935352-3951-4b3e-aca2-c8400da69d13,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27770,65935352-3951-4b3e-aca2-c8400da69d13,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27771,65935352-3951-4b3e-aca2-c8400da69d13,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27766,4083266b-eae3-454f-be06-8d5a782d71bb,LIST_ACCOUNTS,hbciListAccounts,false +27767,4083266b-eae3-454f-be06-8d5a782d71bb,LIST_TRANSACTIONS,hbciListTransactions,false +27768,4083266b-eae3-454f-be06-8d5a782d71bb,AUTHORIZATION,,false +27769,4083266b-eae3-454f-be06-8d5a782d71bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27770,4083266b-eae3-454f-be06-8d5a782d71bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27771,4083266b-eae3-454f-be06-8d5a782d71bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27772,5e723b64-8837-4e01-a750-e6fd383693e9,LIST_ACCOUNTS,xs2aListAccounts,true -27773,5e723b64-8837-4e01-a750-e6fd383693e9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27773,5e723b64-8837-4e01-a750-e6fd383693e9,LIST_TRANSACTIONS,xs2aListTransactions,true 27774,5e723b64-8837-4e01-a750-e6fd383693e9,AUTHORIZATION,,true 27775,5e723b64-8837-4e01-a750-e6fd383693e9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27776,5e723b64-8837-4e01-a750-e6fd383693e9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27777,5e723b64-8837-4e01-a750-e6fd383693e9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27778,43620c02-d96c-437e-93b3-66d6b465bf35,LIST_ACCOUNTS,hbciListAccounts,false -27779,43620c02-d96c-437e-93b3-66d6b465bf35,LIST_TRANSACTIONS,hbciListTransactions,false -27780,43620c02-d96c-437e-93b3-66d6b465bf35,AUTHORIZATION,,false -27781,43620c02-d96c-437e-93b3-66d6b465bf35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27782,43620c02-d96c-437e-93b3-66d6b465bf35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27783,43620c02-d96c-437e-93b3-66d6b465bf35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27778,32a6b957-4a4d-4df0-9aa3-56ed2193d9b5,LIST_ACCOUNTS,hbciListAccounts,false +27779,32a6b957-4a4d-4df0-9aa3-56ed2193d9b5,LIST_TRANSACTIONS,hbciListTransactions,false +27780,32a6b957-4a4d-4df0-9aa3-56ed2193d9b5,AUTHORIZATION,,false +27781,32a6b957-4a4d-4df0-9aa3-56ed2193d9b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27782,32a6b957-4a4d-4df0-9aa3-56ed2193d9b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27783,32a6b957-4a4d-4df0-9aa3-56ed2193d9b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27784,358bd4fb-4c3a-4a76-b767-5231cf7aa583,LIST_ACCOUNTS,xs2aListAccounts,true -27785,358bd4fb-4c3a-4a76-b767-5231cf7aa583,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27785,358bd4fb-4c3a-4a76-b767-5231cf7aa583,LIST_TRANSACTIONS,xs2aListTransactions,true 27786,358bd4fb-4c3a-4a76-b767-5231cf7aa583,AUTHORIZATION,,true 27787,358bd4fb-4c3a-4a76-b767-5231cf7aa583,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27788,358bd4fb-4c3a-4a76-b767-5231cf7aa583,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27789,358bd4fb-4c3a-4a76-b767-5231cf7aa583,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27790,43fce207-95b7-45f3-85b7-9d6600b8aa49,LIST_ACCOUNTS,hbciListAccounts,false -27791,43fce207-95b7-45f3-85b7-9d6600b8aa49,LIST_TRANSACTIONS,hbciListTransactions,false -27792,43fce207-95b7-45f3-85b7-9d6600b8aa49,AUTHORIZATION,,false -27793,43fce207-95b7-45f3-85b7-9d6600b8aa49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27794,43fce207-95b7-45f3-85b7-9d6600b8aa49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27795,43fce207-95b7-45f3-85b7-9d6600b8aa49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27790,876f7c2b-f731-4655-8a9b-9db73a265f2b,LIST_ACCOUNTS,hbciListAccounts,false +27791,876f7c2b-f731-4655-8a9b-9db73a265f2b,LIST_TRANSACTIONS,hbciListTransactions,false +27792,876f7c2b-f731-4655-8a9b-9db73a265f2b,AUTHORIZATION,,false +27793,876f7c2b-f731-4655-8a9b-9db73a265f2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27794,876f7c2b-f731-4655-8a9b-9db73a265f2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27795,876f7c2b-f731-4655-8a9b-9db73a265f2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27796,892f753c-3361-4835-b833-a3ff93fa7aa5,LIST_ACCOUNTS,xs2aListAccounts,true -27797,892f753c-3361-4835-b833-a3ff93fa7aa5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27797,892f753c-3361-4835-b833-a3ff93fa7aa5,LIST_TRANSACTIONS,xs2aListTransactions,true 27798,892f753c-3361-4835-b833-a3ff93fa7aa5,AUTHORIZATION,,true 27799,892f753c-3361-4835-b833-a3ff93fa7aa5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27800,892f753c-3361-4835-b833-a3ff93fa7aa5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27801,892f753c-3361-4835-b833-a3ff93fa7aa5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27802,d1618ebf-bf1c-4764-a6b2-5fe69e8b2cfa,LIST_ACCOUNTS,hbciListAccounts,false -27803,d1618ebf-bf1c-4764-a6b2-5fe69e8b2cfa,LIST_TRANSACTIONS,hbciListTransactions,false -27804,d1618ebf-bf1c-4764-a6b2-5fe69e8b2cfa,AUTHORIZATION,,false -27805,d1618ebf-bf1c-4764-a6b2-5fe69e8b2cfa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27806,d1618ebf-bf1c-4764-a6b2-5fe69e8b2cfa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27807,d1618ebf-bf1c-4764-a6b2-5fe69e8b2cfa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27802,f469eca8-e2b4-44e5-a213-a5c8bdd4a66c,LIST_ACCOUNTS,hbciListAccounts,false +27803,f469eca8-e2b4-44e5-a213-a5c8bdd4a66c,LIST_TRANSACTIONS,hbciListTransactions,false +27804,f469eca8-e2b4-44e5-a213-a5c8bdd4a66c,AUTHORIZATION,,false +27805,f469eca8-e2b4-44e5-a213-a5c8bdd4a66c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27806,f469eca8-e2b4-44e5-a213-a5c8bdd4a66c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27807,f469eca8-e2b4-44e5-a213-a5c8bdd4a66c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27808,943dc62b-fca2-4598-8c2a-df65e329e81e,LIST_ACCOUNTS,xs2aListAccounts,true -27809,943dc62b-fca2-4598-8c2a-df65e329e81e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27809,943dc62b-fca2-4598-8c2a-df65e329e81e,LIST_TRANSACTIONS,xs2aListTransactions,true 27810,943dc62b-fca2-4598-8c2a-df65e329e81e,AUTHORIZATION,,true 27811,943dc62b-fca2-4598-8c2a-df65e329e81e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27812,943dc62b-fca2-4598-8c2a-df65e329e81e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27813,943dc62b-fca2-4598-8c2a-df65e329e81e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27814,e2fe3667-9e96-41d0-9de8-ccdcf70dae13,LIST_ACCOUNTS,hbciListAccounts,false -27815,e2fe3667-9e96-41d0-9de8-ccdcf70dae13,LIST_TRANSACTIONS,hbciListTransactions,false -27816,e2fe3667-9e96-41d0-9de8-ccdcf70dae13,AUTHORIZATION,,false -27817,e2fe3667-9e96-41d0-9de8-ccdcf70dae13,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27818,e2fe3667-9e96-41d0-9de8-ccdcf70dae13,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27819,e2fe3667-9e96-41d0-9de8-ccdcf70dae13,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27814,e9cf2bb4-94a6-4eb9-bca1-e0d286250cbb,LIST_ACCOUNTS,hbciListAccounts,false +27815,e9cf2bb4-94a6-4eb9-bca1-e0d286250cbb,LIST_TRANSACTIONS,hbciListTransactions,false +27816,e9cf2bb4-94a6-4eb9-bca1-e0d286250cbb,AUTHORIZATION,,false +27817,e9cf2bb4-94a6-4eb9-bca1-e0d286250cbb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27818,e9cf2bb4-94a6-4eb9-bca1-e0d286250cbb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27819,e9cf2bb4-94a6-4eb9-bca1-e0d286250cbb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27820,1b793832-1a83-4bd6-8bfb-85b2572d2698,LIST_ACCOUNTS,xs2aListAccounts,true -27821,1b793832-1a83-4bd6-8bfb-85b2572d2698,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27821,1b793832-1a83-4bd6-8bfb-85b2572d2698,LIST_TRANSACTIONS,xs2aListTransactions,true 27822,1b793832-1a83-4bd6-8bfb-85b2572d2698,AUTHORIZATION,,true 27823,1b793832-1a83-4bd6-8bfb-85b2572d2698,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27824,1b793832-1a83-4bd6-8bfb-85b2572d2698,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27825,1b793832-1a83-4bd6-8bfb-85b2572d2698,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27826,8972824c-c0cc-45d2-8e42-bf0d834a632f,LIST_ACCOUNTS,hbciListAccounts,false -27827,8972824c-c0cc-45d2-8e42-bf0d834a632f,LIST_TRANSACTIONS,hbciListTransactions,false -27828,8972824c-c0cc-45d2-8e42-bf0d834a632f,AUTHORIZATION,,false -27829,8972824c-c0cc-45d2-8e42-bf0d834a632f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27830,8972824c-c0cc-45d2-8e42-bf0d834a632f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27831,8972824c-c0cc-45d2-8e42-bf0d834a632f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27826,fbb0bfa6-a701-4dc3-afa3-fd5b5e5df96e,LIST_ACCOUNTS,hbciListAccounts,false +27827,fbb0bfa6-a701-4dc3-afa3-fd5b5e5df96e,LIST_TRANSACTIONS,hbciListTransactions,false +27828,fbb0bfa6-a701-4dc3-afa3-fd5b5e5df96e,AUTHORIZATION,,false +27829,fbb0bfa6-a701-4dc3-afa3-fd5b5e5df96e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27830,fbb0bfa6-a701-4dc3-afa3-fd5b5e5df96e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27831,fbb0bfa6-a701-4dc3-afa3-fd5b5e5df96e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27832,c914e013-36e0-4a60-a90a-b27f11528333,LIST_ACCOUNTS,xs2aListAccounts,true -27833,c914e013-36e0-4a60-a90a-b27f11528333,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27833,c914e013-36e0-4a60-a90a-b27f11528333,LIST_TRANSACTIONS,xs2aListTransactions,true 27834,c914e013-36e0-4a60-a90a-b27f11528333,AUTHORIZATION,,true 27835,c914e013-36e0-4a60-a90a-b27f11528333,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27836,c914e013-36e0-4a60-a90a-b27f11528333,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27837,c914e013-36e0-4a60-a90a-b27f11528333,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27838,eb4be081-6ef1-485a-b85b-e21d199b9d1e,LIST_ACCOUNTS,hbciListAccounts,false -27839,eb4be081-6ef1-485a-b85b-e21d199b9d1e,LIST_TRANSACTIONS,hbciListTransactions,false -27840,eb4be081-6ef1-485a-b85b-e21d199b9d1e,AUTHORIZATION,,false -27841,eb4be081-6ef1-485a-b85b-e21d199b9d1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27842,eb4be081-6ef1-485a-b85b-e21d199b9d1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27843,eb4be081-6ef1-485a-b85b-e21d199b9d1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27838,4b47ce1c-8388-4230-8fcf-1536ee3c8b9f,LIST_ACCOUNTS,hbciListAccounts,false +27839,4b47ce1c-8388-4230-8fcf-1536ee3c8b9f,LIST_TRANSACTIONS,hbciListTransactions,false +27840,4b47ce1c-8388-4230-8fcf-1536ee3c8b9f,AUTHORIZATION,,false +27841,4b47ce1c-8388-4230-8fcf-1536ee3c8b9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27842,4b47ce1c-8388-4230-8fcf-1536ee3c8b9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27843,4b47ce1c-8388-4230-8fcf-1536ee3c8b9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27844,de972585-f4fb-470a-9490-8116f9d14569,LIST_ACCOUNTS,xs2aListAccounts,true -27845,de972585-f4fb-470a-9490-8116f9d14569,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27845,de972585-f4fb-470a-9490-8116f9d14569,LIST_TRANSACTIONS,xs2aListTransactions,true 27846,de972585-f4fb-470a-9490-8116f9d14569,AUTHORIZATION,,true 27847,de972585-f4fb-470a-9490-8116f9d14569,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27848,de972585-f4fb-470a-9490-8116f9d14569,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27849,de972585-f4fb-470a-9490-8116f9d14569,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27850,5efd1113-9ad2-467f-b753-05e9f180273b,LIST_ACCOUNTS,hbciListAccounts,false -27851,5efd1113-9ad2-467f-b753-05e9f180273b,LIST_TRANSACTIONS,hbciListTransactions,false -27852,5efd1113-9ad2-467f-b753-05e9f180273b,AUTHORIZATION,,false -27853,5efd1113-9ad2-467f-b753-05e9f180273b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27854,5efd1113-9ad2-467f-b753-05e9f180273b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27855,5efd1113-9ad2-467f-b753-05e9f180273b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27850,f4522224-77e7-405d-99a1-b800bbee1494,LIST_ACCOUNTS,hbciListAccounts,false +27851,f4522224-77e7-405d-99a1-b800bbee1494,LIST_TRANSACTIONS,hbciListTransactions,false +27852,f4522224-77e7-405d-99a1-b800bbee1494,AUTHORIZATION,,false +27853,f4522224-77e7-405d-99a1-b800bbee1494,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27854,f4522224-77e7-405d-99a1-b800bbee1494,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27855,f4522224-77e7-405d-99a1-b800bbee1494,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27856,92787d34-17cc-41bb-acf4-b243ca44f414,LIST_ACCOUNTS,xs2aListAccounts,true -27857,92787d34-17cc-41bb-acf4-b243ca44f414,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27857,92787d34-17cc-41bb-acf4-b243ca44f414,LIST_TRANSACTIONS,xs2aListTransactions,true 27858,92787d34-17cc-41bb-acf4-b243ca44f414,AUTHORIZATION,,true 27859,92787d34-17cc-41bb-acf4-b243ca44f414,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27860,92787d34-17cc-41bb-acf4-b243ca44f414,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27861,92787d34-17cc-41bb-acf4-b243ca44f414,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27862,306e1395-0164-4a30-8b1e-95633f95c16b,LIST_ACCOUNTS,hbciListAccounts,false -27863,306e1395-0164-4a30-8b1e-95633f95c16b,LIST_TRANSACTIONS,hbciListTransactions,false -27864,306e1395-0164-4a30-8b1e-95633f95c16b,AUTHORIZATION,,false -27865,306e1395-0164-4a30-8b1e-95633f95c16b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27866,306e1395-0164-4a30-8b1e-95633f95c16b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27867,306e1395-0164-4a30-8b1e-95633f95c16b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27862,e14b63ea-b441-47aa-ac4a-9e659962d1d3,LIST_ACCOUNTS,hbciListAccounts,false +27863,e14b63ea-b441-47aa-ac4a-9e659962d1d3,LIST_TRANSACTIONS,hbciListTransactions,false +27864,e14b63ea-b441-47aa-ac4a-9e659962d1d3,AUTHORIZATION,,false +27865,e14b63ea-b441-47aa-ac4a-9e659962d1d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27866,e14b63ea-b441-47aa-ac4a-9e659962d1d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27867,e14b63ea-b441-47aa-ac4a-9e659962d1d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27868,4908a23a-0900-4fed-80a6-7e303b59a6cb,LIST_ACCOUNTS,xs2aListAccounts,true -27869,4908a23a-0900-4fed-80a6-7e303b59a6cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27869,4908a23a-0900-4fed-80a6-7e303b59a6cb,LIST_TRANSACTIONS,xs2aListTransactions,true 27870,4908a23a-0900-4fed-80a6-7e303b59a6cb,AUTHORIZATION,,true 27871,4908a23a-0900-4fed-80a6-7e303b59a6cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27872,4908a23a-0900-4fed-80a6-7e303b59a6cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27873,4908a23a-0900-4fed-80a6-7e303b59a6cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27874,3e2cf87b-c871-416e-b95a-80dee188883c,LIST_ACCOUNTS,hbciListAccounts,false -27875,3e2cf87b-c871-416e-b95a-80dee188883c,LIST_TRANSACTIONS,hbciListTransactions,false -27876,3e2cf87b-c871-416e-b95a-80dee188883c,AUTHORIZATION,,false -27877,3e2cf87b-c871-416e-b95a-80dee188883c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27878,3e2cf87b-c871-416e-b95a-80dee188883c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27879,3e2cf87b-c871-416e-b95a-80dee188883c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27874,cde4fe06-c5b0-4ae1-97fb-40aa12803876,LIST_ACCOUNTS,hbciListAccounts,false +27875,cde4fe06-c5b0-4ae1-97fb-40aa12803876,LIST_TRANSACTIONS,hbciListTransactions,false +27876,cde4fe06-c5b0-4ae1-97fb-40aa12803876,AUTHORIZATION,,false +27877,cde4fe06-c5b0-4ae1-97fb-40aa12803876,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27878,cde4fe06-c5b0-4ae1-97fb-40aa12803876,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27879,cde4fe06-c5b0-4ae1-97fb-40aa12803876,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27880,fe87a15a-4b3d-4dc1-9d58-ee54f3b78dee,LIST_ACCOUNTS,xs2aListAccounts,true -27881,fe87a15a-4b3d-4dc1-9d58-ee54f3b78dee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27881,fe87a15a-4b3d-4dc1-9d58-ee54f3b78dee,LIST_TRANSACTIONS,xs2aListTransactions,true 27882,fe87a15a-4b3d-4dc1-9d58-ee54f3b78dee,AUTHORIZATION,,true 27883,fe87a15a-4b3d-4dc1-9d58-ee54f3b78dee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27884,fe87a15a-4b3d-4dc1-9d58-ee54f3b78dee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27885,fe87a15a-4b3d-4dc1-9d58-ee54f3b78dee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27886,9b467909-4437-4fe5-9fa6-ee7efabe992d,LIST_ACCOUNTS,hbciListAccounts,false -27887,9b467909-4437-4fe5-9fa6-ee7efabe992d,LIST_TRANSACTIONS,hbciListTransactions,false -27888,9b467909-4437-4fe5-9fa6-ee7efabe992d,AUTHORIZATION,,false -27889,9b467909-4437-4fe5-9fa6-ee7efabe992d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27890,9b467909-4437-4fe5-9fa6-ee7efabe992d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27891,9b467909-4437-4fe5-9fa6-ee7efabe992d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27886,6e3835ca-dc00-4155-862e-51e85ef83222,LIST_ACCOUNTS,hbciListAccounts,false +27887,6e3835ca-dc00-4155-862e-51e85ef83222,LIST_TRANSACTIONS,hbciListTransactions,false +27888,6e3835ca-dc00-4155-862e-51e85ef83222,AUTHORIZATION,,false +27889,6e3835ca-dc00-4155-862e-51e85ef83222,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27890,6e3835ca-dc00-4155-862e-51e85ef83222,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27891,6e3835ca-dc00-4155-862e-51e85ef83222,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27892,4f75f1f4-9655-4c92-8dfd-8103205d286f,LIST_ACCOUNTS,xs2aListAccounts,true -27893,4f75f1f4-9655-4c92-8dfd-8103205d286f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27893,4f75f1f4-9655-4c92-8dfd-8103205d286f,LIST_TRANSACTIONS,xs2aListTransactions,true 27894,4f75f1f4-9655-4c92-8dfd-8103205d286f,AUTHORIZATION,,true 27895,4f75f1f4-9655-4c92-8dfd-8103205d286f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27896,4f75f1f4-9655-4c92-8dfd-8103205d286f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27897,4f75f1f4-9655-4c92-8dfd-8103205d286f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27898,0067ae7f-b19d-421d-ae4d-4b92a1af0971,LIST_ACCOUNTS,hbciListAccounts,false -27899,0067ae7f-b19d-421d-ae4d-4b92a1af0971,LIST_TRANSACTIONS,hbciListTransactions,false -27900,0067ae7f-b19d-421d-ae4d-4b92a1af0971,AUTHORIZATION,,false -27901,0067ae7f-b19d-421d-ae4d-4b92a1af0971,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27902,0067ae7f-b19d-421d-ae4d-4b92a1af0971,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27903,0067ae7f-b19d-421d-ae4d-4b92a1af0971,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27898,07d68b5b-112b-436c-b017-ed3705b27690,LIST_ACCOUNTS,hbciListAccounts,false +27899,07d68b5b-112b-436c-b017-ed3705b27690,LIST_TRANSACTIONS,hbciListTransactions,false +27900,07d68b5b-112b-436c-b017-ed3705b27690,AUTHORIZATION,,false +27901,07d68b5b-112b-436c-b017-ed3705b27690,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27902,07d68b5b-112b-436c-b017-ed3705b27690,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27903,07d68b5b-112b-436c-b017-ed3705b27690,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27904,573d71ad-79d4-46ae-be2a-12d5b2d5003d,LIST_ACCOUNTS,xs2aListAccounts,true -27905,573d71ad-79d4-46ae-be2a-12d5b2d5003d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27905,573d71ad-79d4-46ae-be2a-12d5b2d5003d,LIST_TRANSACTIONS,xs2aListTransactions,true 27906,573d71ad-79d4-46ae-be2a-12d5b2d5003d,AUTHORIZATION,,true 27907,573d71ad-79d4-46ae-be2a-12d5b2d5003d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27908,573d71ad-79d4-46ae-be2a-12d5b2d5003d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27909,573d71ad-79d4-46ae-be2a-12d5b2d5003d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27910,a0ce0dcc-7d0d-4ff1-9bdc-ac99fea72707,LIST_ACCOUNTS,hbciListAccounts,false -27911,a0ce0dcc-7d0d-4ff1-9bdc-ac99fea72707,LIST_TRANSACTIONS,hbciListTransactions,false -27912,a0ce0dcc-7d0d-4ff1-9bdc-ac99fea72707,AUTHORIZATION,,false -27913,a0ce0dcc-7d0d-4ff1-9bdc-ac99fea72707,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27914,a0ce0dcc-7d0d-4ff1-9bdc-ac99fea72707,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27915,a0ce0dcc-7d0d-4ff1-9bdc-ac99fea72707,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27910,bda56792-be83-4679-88fc-bad753a79e08,LIST_ACCOUNTS,hbciListAccounts,false +27911,bda56792-be83-4679-88fc-bad753a79e08,LIST_TRANSACTIONS,hbciListTransactions,false +27912,bda56792-be83-4679-88fc-bad753a79e08,AUTHORIZATION,,false +27913,bda56792-be83-4679-88fc-bad753a79e08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27914,bda56792-be83-4679-88fc-bad753a79e08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27915,bda56792-be83-4679-88fc-bad753a79e08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27916,e8b07c2b-8254-4cd4-b43a-fe9cb9f9b8b3,LIST_ACCOUNTS,xs2aListAccounts,true -27917,e8b07c2b-8254-4cd4-b43a-fe9cb9f9b8b3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27917,e8b07c2b-8254-4cd4-b43a-fe9cb9f9b8b3,LIST_TRANSACTIONS,xs2aListTransactions,true 27918,e8b07c2b-8254-4cd4-b43a-fe9cb9f9b8b3,AUTHORIZATION,,true 27919,e8b07c2b-8254-4cd4-b43a-fe9cb9f9b8b3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27920,e8b07c2b-8254-4cd4-b43a-fe9cb9f9b8b3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27921,e8b07c2b-8254-4cd4-b43a-fe9cb9f9b8b3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27922,dfcae388-d2e8-4e83-a1f3-a6ec41eba93c,LIST_ACCOUNTS,hbciListAccounts,false -27923,dfcae388-d2e8-4e83-a1f3-a6ec41eba93c,LIST_TRANSACTIONS,hbciListTransactions,false -27924,dfcae388-d2e8-4e83-a1f3-a6ec41eba93c,AUTHORIZATION,,false -27925,dfcae388-d2e8-4e83-a1f3-a6ec41eba93c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27926,dfcae388-d2e8-4e83-a1f3-a6ec41eba93c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27927,dfcae388-d2e8-4e83-a1f3-a6ec41eba93c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27922,46e9f75c-ab91-46f5-bd3c-6dbe976c2c68,LIST_ACCOUNTS,hbciListAccounts,false +27923,46e9f75c-ab91-46f5-bd3c-6dbe976c2c68,LIST_TRANSACTIONS,hbciListTransactions,false +27924,46e9f75c-ab91-46f5-bd3c-6dbe976c2c68,AUTHORIZATION,,false +27925,46e9f75c-ab91-46f5-bd3c-6dbe976c2c68,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27926,46e9f75c-ab91-46f5-bd3c-6dbe976c2c68,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27927,46e9f75c-ab91-46f5-bd3c-6dbe976c2c68,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27928,c2e784cf-a2dc-4fff-8270-5cb75910c6e6,LIST_ACCOUNTS,xs2aListAccounts,true -27929,c2e784cf-a2dc-4fff-8270-5cb75910c6e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27929,c2e784cf-a2dc-4fff-8270-5cb75910c6e6,LIST_TRANSACTIONS,xs2aListTransactions,true 27930,c2e784cf-a2dc-4fff-8270-5cb75910c6e6,AUTHORIZATION,,true 27931,c2e784cf-a2dc-4fff-8270-5cb75910c6e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27932,c2e784cf-a2dc-4fff-8270-5cb75910c6e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27933,c2e784cf-a2dc-4fff-8270-5cb75910c6e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27934,8031577e-4fe9-4533-8ce4-8a36633292cd,LIST_ACCOUNTS,hbciListAccounts,false -27935,8031577e-4fe9-4533-8ce4-8a36633292cd,LIST_TRANSACTIONS,hbciListTransactions,false -27936,8031577e-4fe9-4533-8ce4-8a36633292cd,AUTHORIZATION,,false -27937,8031577e-4fe9-4533-8ce4-8a36633292cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27938,8031577e-4fe9-4533-8ce4-8a36633292cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27939,8031577e-4fe9-4533-8ce4-8a36633292cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27934,ff0d0861-3660-4049-837b-f4ffe9511e32,LIST_ACCOUNTS,hbciListAccounts,false +27935,ff0d0861-3660-4049-837b-f4ffe9511e32,LIST_TRANSACTIONS,hbciListTransactions,false +27936,ff0d0861-3660-4049-837b-f4ffe9511e32,AUTHORIZATION,,false +27937,ff0d0861-3660-4049-837b-f4ffe9511e32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27938,ff0d0861-3660-4049-837b-f4ffe9511e32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27939,ff0d0861-3660-4049-837b-f4ffe9511e32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27940,863f9ea8-1acb-467a-b94f-d8c2307fbc3e,LIST_ACCOUNTS,xs2aListAccounts,true -27941,863f9ea8-1acb-467a-b94f-d8c2307fbc3e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27941,863f9ea8-1acb-467a-b94f-d8c2307fbc3e,LIST_TRANSACTIONS,xs2aListTransactions,true 27942,863f9ea8-1acb-467a-b94f-d8c2307fbc3e,AUTHORIZATION,,true 27943,863f9ea8-1acb-467a-b94f-d8c2307fbc3e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27944,863f9ea8-1acb-467a-b94f-d8c2307fbc3e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27945,863f9ea8-1acb-467a-b94f-d8c2307fbc3e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27946,6a2f2100-c217-44d8-ac5c-7443b31deb40,LIST_ACCOUNTS,hbciListAccounts,false -27947,6a2f2100-c217-44d8-ac5c-7443b31deb40,LIST_TRANSACTIONS,hbciListTransactions,false -27948,6a2f2100-c217-44d8-ac5c-7443b31deb40,AUTHORIZATION,,false -27949,6a2f2100-c217-44d8-ac5c-7443b31deb40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27950,6a2f2100-c217-44d8-ac5c-7443b31deb40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27951,6a2f2100-c217-44d8-ac5c-7443b31deb40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27946,a20006cc-6c5c-4937-bc9f-ad9843b3eb75,LIST_ACCOUNTS,hbciListAccounts,false +27947,a20006cc-6c5c-4937-bc9f-ad9843b3eb75,LIST_TRANSACTIONS,hbciListTransactions,false +27948,a20006cc-6c5c-4937-bc9f-ad9843b3eb75,AUTHORIZATION,,false +27949,a20006cc-6c5c-4937-bc9f-ad9843b3eb75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27950,a20006cc-6c5c-4937-bc9f-ad9843b3eb75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27951,a20006cc-6c5c-4937-bc9f-ad9843b3eb75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27952,3338cc12-41c7-427a-a4b2-a9e0c3f999b8,LIST_ACCOUNTS,xs2aListAccounts,true -27953,3338cc12-41c7-427a-a4b2-a9e0c3f999b8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27953,3338cc12-41c7-427a-a4b2-a9e0c3f999b8,LIST_TRANSACTIONS,xs2aListTransactions,true 27954,3338cc12-41c7-427a-a4b2-a9e0c3f999b8,AUTHORIZATION,,true 27955,3338cc12-41c7-427a-a4b2-a9e0c3f999b8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27956,3338cc12-41c7-427a-a4b2-a9e0c3f999b8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27957,3338cc12-41c7-427a-a4b2-a9e0c3f999b8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27958,1655c55d-bea7-4a22-ba4d-d33eedadf80e,LIST_ACCOUNTS,hbciListAccounts,false -27959,1655c55d-bea7-4a22-ba4d-d33eedadf80e,LIST_TRANSACTIONS,hbciListTransactions,false -27960,1655c55d-bea7-4a22-ba4d-d33eedadf80e,AUTHORIZATION,,false -27961,1655c55d-bea7-4a22-ba4d-d33eedadf80e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27962,1655c55d-bea7-4a22-ba4d-d33eedadf80e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27963,1655c55d-bea7-4a22-ba4d-d33eedadf80e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27958,af9e9548-4138-4853-bf36-af935c1b9ba0,LIST_ACCOUNTS,hbciListAccounts,false +27959,af9e9548-4138-4853-bf36-af935c1b9ba0,LIST_TRANSACTIONS,hbciListTransactions,false +27960,af9e9548-4138-4853-bf36-af935c1b9ba0,AUTHORIZATION,,false +27961,af9e9548-4138-4853-bf36-af935c1b9ba0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27962,af9e9548-4138-4853-bf36-af935c1b9ba0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27963,af9e9548-4138-4853-bf36-af935c1b9ba0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27964,c2eb4966-ba7a-4bce-ac3c-aef63501c6fb,LIST_ACCOUNTS,xs2aListAccounts,true -27965,c2eb4966-ba7a-4bce-ac3c-aef63501c6fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27965,c2eb4966-ba7a-4bce-ac3c-aef63501c6fb,LIST_TRANSACTIONS,xs2aListTransactions,true 27966,c2eb4966-ba7a-4bce-ac3c-aef63501c6fb,AUTHORIZATION,,true 27967,c2eb4966-ba7a-4bce-ac3c-aef63501c6fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27968,c2eb4966-ba7a-4bce-ac3c-aef63501c6fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27969,c2eb4966-ba7a-4bce-ac3c-aef63501c6fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27970,635e7429-7ce2-45f3-a614-664acc973773,LIST_ACCOUNTS,hbciListAccounts,false -27971,635e7429-7ce2-45f3-a614-664acc973773,LIST_TRANSACTIONS,hbciListTransactions,false -27972,635e7429-7ce2-45f3-a614-664acc973773,AUTHORIZATION,,false -27973,635e7429-7ce2-45f3-a614-664acc973773,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27974,635e7429-7ce2-45f3-a614-664acc973773,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27975,635e7429-7ce2-45f3-a614-664acc973773,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27970,8a684465-4e23-411c-b4f2-4f7cbbf0154f,LIST_ACCOUNTS,hbciListAccounts,false +27971,8a684465-4e23-411c-b4f2-4f7cbbf0154f,LIST_TRANSACTIONS,hbciListTransactions,false +27972,8a684465-4e23-411c-b4f2-4f7cbbf0154f,AUTHORIZATION,,false +27973,8a684465-4e23-411c-b4f2-4f7cbbf0154f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27974,8a684465-4e23-411c-b4f2-4f7cbbf0154f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27975,8a684465-4e23-411c-b4f2-4f7cbbf0154f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27976,3a4c0153-b167-432a-a5a6-97634e66429f,LIST_ACCOUNTS,xs2aListAccounts,true -27977,3a4c0153-b167-432a-a5a6-97634e66429f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27977,3a4c0153-b167-432a-a5a6-97634e66429f,LIST_TRANSACTIONS,xs2aListTransactions,true 27978,3a4c0153-b167-432a-a5a6-97634e66429f,AUTHORIZATION,,true 27979,3a4c0153-b167-432a-a5a6-97634e66429f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27980,3a4c0153-b167-432a-a5a6-97634e66429f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27981,3a4c0153-b167-432a-a5a6-97634e66429f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27982,59b6917a-0cf9-4cca-b9b1-a0cc7d10c841,LIST_ACCOUNTS,hbciListAccounts,false -27983,59b6917a-0cf9-4cca-b9b1-a0cc7d10c841,LIST_TRANSACTIONS,hbciListTransactions,false -27984,59b6917a-0cf9-4cca-b9b1-a0cc7d10c841,AUTHORIZATION,,false -27985,59b6917a-0cf9-4cca-b9b1-a0cc7d10c841,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27986,59b6917a-0cf9-4cca-b9b1-a0cc7d10c841,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27987,59b6917a-0cf9-4cca-b9b1-a0cc7d10c841,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27982,525a3e48-d533-4eb2-b3b0-df94f1b14fa2,LIST_ACCOUNTS,hbciListAccounts,false +27983,525a3e48-d533-4eb2-b3b0-df94f1b14fa2,LIST_TRANSACTIONS,hbciListTransactions,false +27984,525a3e48-d533-4eb2-b3b0-df94f1b14fa2,AUTHORIZATION,,false +27985,525a3e48-d533-4eb2-b3b0-df94f1b14fa2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27986,525a3e48-d533-4eb2-b3b0-df94f1b14fa2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27987,525a3e48-d533-4eb2-b3b0-df94f1b14fa2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 27988,81bd98c3-cd9e-4590-8353-8884b1848afb,LIST_ACCOUNTS,xs2aListAccounts,true -27989,81bd98c3-cd9e-4590-8353-8884b1848afb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +27989,81bd98c3-cd9e-4590-8353-8884b1848afb,LIST_TRANSACTIONS,xs2aListTransactions,true 27990,81bd98c3-cd9e-4590-8353-8884b1848afb,AUTHORIZATION,,true 27991,81bd98c3-cd9e-4590-8353-8884b1848afb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 27992,81bd98c3-cd9e-4590-8353-8884b1848afb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 27993,81bd98c3-cd9e-4590-8353-8884b1848afb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -27994,af4e127c-49f7-40e2-8377-ae8cc4856f4d,LIST_ACCOUNTS,hbciListAccounts,false -27995,af4e127c-49f7-40e2-8377-ae8cc4856f4d,LIST_TRANSACTIONS,hbciListTransactions,false -27996,af4e127c-49f7-40e2-8377-ae8cc4856f4d,AUTHORIZATION,,false -27997,af4e127c-49f7-40e2-8377-ae8cc4856f4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -27998,af4e127c-49f7-40e2-8377-ae8cc4856f4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -27999,af4e127c-49f7-40e2-8377-ae8cc4856f4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +27994,29fe4d37-2e87-46c7-aa1e-fb5495e52406,LIST_ACCOUNTS,hbciListAccounts,false +27995,29fe4d37-2e87-46c7-aa1e-fb5495e52406,LIST_TRANSACTIONS,hbciListTransactions,false +27996,29fe4d37-2e87-46c7-aa1e-fb5495e52406,AUTHORIZATION,,false +27997,29fe4d37-2e87-46c7-aa1e-fb5495e52406,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +27998,29fe4d37-2e87-46c7-aa1e-fb5495e52406,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +27999,29fe4d37-2e87-46c7-aa1e-fb5495e52406,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28000,90834f63-338f-48b2-8195-7e4b0fd45057,LIST_ACCOUNTS,xs2aListAccounts,true -28001,90834f63-338f-48b2-8195-7e4b0fd45057,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28001,90834f63-338f-48b2-8195-7e4b0fd45057,LIST_TRANSACTIONS,xs2aListTransactions,true 28002,90834f63-338f-48b2-8195-7e4b0fd45057,AUTHORIZATION,,true 28003,90834f63-338f-48b2-8195-7e4b0fd45057,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28004,90834f63-338f-48b2-8195-7e4b0fd45057,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28005,90834f63-338f-48b2-8195-7e4b0fd45057,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28006,10b05005-4949-4b96-b299-6e433928321c,LIST_ACCOUNTS,hbciListAccounts,false -28007,10b05005-4949-4b96-b299-6e433928321c,LIST_TRANSACTIONS,hbciListTransactions,false -28008,10b05005-4949-4b96-b299-6e433928321c,AUTHORIZATION,,false -28009,10b05005-4949-4b96-b299-6e433928321c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28010,10b05005-4949-4b96-b299-6e433928321c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28011,10b05005-4949-4b96-b299-6e433928321c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28006,faf03bba-19f3-4e74-bc33-cef3f6621a70,LIST_ACCOUNTS,hbciListAccounts,false +28007,faf03bba-19f3-4e74-bc33-cef3f6621a70,LIST_TRANSACTIONS,hbciListTransactions,false +28008,faf03bba-19f3-4e74-bc33-cef3f6621a70,AUTHORIZATION,,false +28009,faf03bba-19f3-4e74-bc33-cef3f6621a70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28010,faf03bba-19f3-4e74-bc33-cef3f6621a70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28011,faf03bba-19f3-4e74-bc33-cef3f6621a70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28012,971505a7-bac6-4ee4-9aca-ad6d74d46a8f,LIST_ACCOUNTS,xs2aListAccounts,true -28013,971505a7-bac6-4ee4-9aca-ad6d74d46a8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28013,971505a7-bac6-4ee4-9aca-ad6d74d46a8f,LIST_TRANSACTIONS,xs2aListTransactions,true 28014,971505a7-bac6-4ee4-9aca-ad6d74d46a8f,AUTHORIZATION,,true 28015,971505a7-bac6-4ee4-9aca-ad6d74d46a8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28016,971505a7-bac6-4ee4-9aca-ad6d74d46a8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28017,971505a7-bac6-4ee4-9aca-ad6d74d46a8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28018,d742b3e3-2513-4a89-a8b7-c75de6c980b2,LIST_ACCOUNTS,hbciListAccounts,false -28019,d742b3e3-2513-4a89-a8b7-c75de6c980b2,LIST_TRANSACTIONS,hbciListTransactions,false -28020,d742b3e3-2513-4a89-a8b7-c75de6c980b2,AUTHORIZATION,,false -28021,d742b3e3-2513-4a89-a8b7-c75de6c980b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28022,d742b3e3-2513-4a89-a8b7-c75de6c980b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28023,d742b3e3-2513-4a89-a8b7-c75de6c980b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28018,5c51f3df-809b-41c7-bc0a-0ba4954f338d,LIST_ACCOUNTS,hbciListAccounts,false +28019,5c51f3df-809b-41c7-bc0a-0ba4954f338d,LIST_TRANSACTIONS,hbciListTransactions,false +28020,5c51f3df-809b-41c7-bc0a-0ba4954f338d,AUTHORIZATION,,false +28021,5c51f3df-809b-41c7-bc0a-0ba4954f338d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28022,5c51f3df-809b-41c7-bc0a-0ba4954f338d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28023,5c51f3df-809b-41c7-bc0a-0ba4954f338d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28024,892374b3-5c9f-411a-b746-23b892656be1,LIST_ACCOUNTS,xs2aListAccounts,true -28025,892374b3-5c9f-411a-b746-23b892656be1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28025,892374b3-5c9f-411a-b746-23b892656be1,LIST_TRANSACTIONS,xs2aListTransactions,true 28026,892374b3-5c9f-411a-b746-23b892656be1,AUTHORIZATION,,true 28027,892374b3-5c9f-411a-b746-23b892656be1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28028,892374b3-5c9f-411a-b746-23b892656be1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28029,892374b3-5c9f-411a-b746-23b892656be1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28030,f442024a-1976-4c79-9c1b-b570145677ee,LIST_ACCOUNTS,hbciListAccounts,false -28031,f442024a-1976-4c79-9c1b-b570145677ee,LIST_TRANSACTIONS,hbciListTransactions,false -28032,f442024a-1976-4c79-9c1b-b570145677ee,AUTHORIZATION,,false -28033,f442024a-1976-4c79-9c1b-b570145677ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28034,f442024a-1976-4c79-9c1b-b570145677ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28035,f442024a-1976-4c79-9c1b-b570145677ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28030,6a48abcb-ae38-497f-8321-c09e951799f6,LIST_ACCOUNTS,hbciListAccounts,false +28031,6a48abcb-ae38-497f-8321-c09e951799f6,LIST_TRANSACTIONS,hbciListTransactions,false +28032,6a48abcb-ae38-497f-8321-c09e951799f6,AUTHORIZATION,,false +28033,6a48abcb-ae38-497f-8321-c09e951799f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28034,6a48abcb-ae38-497f-8321-c09e951799f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28035,6a48abcb-ae38-497f-8321-c09e951799f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28036,9a135109-d5fc-4273-b162-0a3485310966,LIST_ACCOUNTS,xs2aListAccounts,true -28037,9a135109-d5fc-4273-b162-0a3485310966,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28037,9a135109-d5fc-4273-b162-0a3485310966,LIST_TRANSACTIONS,xs2aListTransactions,true 28038,9a135109-d5fc-4273-b162-0a3485310966,AUTHORIZATION,,true 28039,9a135109-d5fc-4273-b162-0a3485310966,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28040,9a135109-d5fc-4273-b162-0a3485310966,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28041,9a135109-d5fc-4273-b162-0a3485310966,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28042,251d9161-3eb0-4c64-af59-446c8be94f52,LIST_ACCOUNTS,hbciListAccounts,false -28043,251d9161-3eb0-4c64-af59-446c8be94f52,LIST_TRANSACTIONS,hbciListTransactions,false -28044,251d9161-3eb0-4c64-af59-446c8be94f52,AUTHORIZATION,,false -28045,251d9161-3eb0-4c64-af59-446c8be94f52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28046,251d9161-3eb0-4c64-af59-446c8be94f52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28047,251d9161-3eb0-4c64-af59-446c8be94f52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28042,23c17f28-e352-4ddd-8526-eb7ba1c860f1,LIST_ACCOUNTS,hbciListAccounts,false +28043,23c17f28-e352-4ddd-8526-eb7ba1c860f1,LIST_TRANSACTIONS,hbciListTransactions,false +28044,23c17f28-e352-4ddd-8526-eb7ba1c860f1,AUTHORIZATION,,false +28045,23c17f28-e352-4ddd-8526-eb7ba1c860f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28046,23c17f28-e352-4ddd-8526-eb7ba1c860f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28047,23c17f28-e352-4ddd-8526-eb7ba1c860f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28048,6f9a1ef4-ce61-47d0-9d6d-b382e4b4ef6d,LIST_ACCOUNTS,xs2aListAccounts,true -28049,6f9a1ef4-ce61-47d0-9d6d-b382e4b4ef6d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28049,6f9a1ef4-ce61-47d0-9d6d-b382e4b4ef6d,LIST_TRANSACTIONS,xs2aListTransactions,true 28050,6f9a1ef4-ce61-47d0-9d6d-b382e4b4ef6d,AUTHORIZATION,,true 28051,6f9a1ef4-ce61-47d0-9d6d-b382e4b4ef6d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28052,6f9a1ef4-ce61-47d0-9d6d-b382e4b4ef6d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28053,6f9a1ef4-ce61-47d0-9d6d-b382e4b4ef6d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28054,ffd70513-7600-4ef0-87e0-c74901555bc7,LIST_ACCOUNTS,hbciListAccounts,false -28055,ffd70513-7600-4ef0-87e0-c74901555bc7,LIST_TRANSACTIONS,hbciListTransactions,false -28056,ffd70513-7600-4ef0-87e0-c74901555bc7,AUTHORIZATION,,false -28057,ffd70513-7600-4ef0-87e0-c74901555bc7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28058,ffd70513-7600-4ef0-87e0-c74901555bc7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28059,ffd70513-7600-4ef0-87e0-c74901555bc7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28054,bb6391f7-6286-4bc2-9408-9213df799791,LIST_ACCOUNTS,hbciListAccounts,false +28055,bb6391f7-6286-4bc2-9408-9213df799791,LIST_TRANSACTIONS,hbciListTransactions,false +28056,bb6391f7-6286-4bc2-9408-9213df799791,AUTHORIZATION,,false +28057,bb6391f7-6286-4bc2-9408-9213df799791,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28058,bb6391f7-6286-4bc2-9408-9213df799791,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28059,bb6391f7-6286-4bc2-9408-9213df799791,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28060,924b8356-95cc-471f-b4a2-15caae4af85e,LIST_ACCOUNTS,xs2aListAccounts,true -28061,924b8356-95cc-471f-b4a2-15caae4af85e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28061,924b8356-95cc-471f-b4a2-15caae4af85e,LIST_TRANSACTIONS,xs2aListTransactions,true 28062,924b8356-95cc-471f-b4a2-15caae4af85e,AUTHORIZATION,,true 28063,924b8356-95cc-471f-b4a2-15caae4af85e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28064,924b8356-95cc-471f-b4a2-15caae4af85e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28065,924b8356-95cc-471f-b4a2-15caae4af85e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28066,b33e540e-820c-4bbd-93aa-81ef0bce1afb,LIST_ACCOUNTS,hbciListAccounts,false -28067,b33e540e-820c-4bbd-93aa-81ef0bce1afb,LIST_TRANSACTIONS,hbciListTransactions,false -28068,b33e540e-820c-4bbd-93aa-81ef0bce1afb,AUTHORIZATION,,false -28069,b33e540e-820c-4bbd-93aa-81ef0bce1afb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28070,b33e540e-820c-4bbd-93aa-81ef0bce1afb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28071,b33e540e-820c-4bbd-93aa-81ef0bce1afb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28066,646e809b-b024-4374-99bd-2be08a00347e,LIST_ACCOUNTS,hbciListAccounts,false +28067,646e809b-b024-4374-99bd-2be08a00347e,LIST_TRANSACTIONS,hbciListTransactions,false +28068,646e809b-b024-4374-99bd-2be08a00347e,AUTHORIZATION,,false +28069,646e809b-b024-4374-99bd-2be08a00347e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28070,646e809b-b024-4374-99bd-2be08a00347e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28071,646e809b-b024-4374-99bd-2be08a00347e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28072,930a8871-a669-40a6-a38b-121210597d48,LIST_ACCOUNTS,xs2aListAccounts,true -28073,930a8871-a669-40a6-a38b-121210597d48,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28073,930a8871-a669-40a6-a38b-121210597d48,LIST_TRANSACTIONS,xs2aListTransactions,true 28074,930a8871-a669-40a6-a38b-121210597d48,AUTHORIZATION,,true 28075,930a8871-a669-40a6-a38b-121210597d48,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28076,930a8871-a669-40a6-a38b-121210597d48,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28077,930a8871-a669-40a6-a38b-121210597d48,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28078,d9c5ed76-3947-432a-a36b-8a0a4d361c8e,LIST_ACCOUNTS,hbciListAccounts,false -28079,d9c5ed76-3947-432a-a36b-8a0a4d361c8e,LIST_TRANSACTIONS,hbciListTransactions,false -28080,d9c5ed76-3947-432a-a36b-8a0a4d361c8e,AUTHORIZATION,,false -28081,d9c5ed76-3947-432a-a36b-8a0a4d361c8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28082,d9c5ed76-3947-432a-a36b-8a0a4d361c8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28083,d9c5ed76-3947-432a-a36b-8a0a4d361c8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28078,420e2c4b-b216-4032-9396-cd7ce0323da5,LIST_ACCOUNTS,hbciListAccounts,false +28079,420e2c4b-b216-4032-9396-cd7ce0323da5,LIST_TRANSACTIONS,hbciListTransactions,false +28080,420e2c4b-b216-4032-9396-cd7ce0323da5,AUTHORIZATION,,false +28081,420e2c4b-b216-4032-9396-cd7ce0323da5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28082,420e2c4b-b216-4032-9396-cd7ce0323da5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28083,420e2c4b-b216-4032-9396-cd7ce0323da5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28084,6f5be733-255c-4c44-9d7f-0c7bb449f68b,LIST_ACCOUNTS,xs2aListAccounts,true -28085,6f5be733-255c-4c44-9d7f-0c7bb449f68b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28085,6f5be733-255c-4c44-9d7f-0c7bb449f68b,LIST_TRANSACTIONS,xs2aListTransactions,true 28086,6f5be733-255c-4c44-9d7f-0c7bb449f68b,AUTHORIZATION,,true 28087,6f5be733-255c-4c44-9d7f-0c7bb449f68b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28088,6f5be733-255c-4c44-9d7f-0c7bb449f68b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28089,6f5be733-255c-4c44-9d7f-0c7bb449f68b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28090,53a15e33-325c-4bf7-b98a-f4729a467a93,LIST_ACCOUNTS,hbciListAccounts,false -28091,53a15e33-325c-4bf7-b98a-f4729a467a93,LIST_TRANSACTIONS,hbciListTransactions,false -28092,53a15e33-325c-4bf7-b98a-f4729a467a93,AUTHORIZATION,,false -28093,53a15e33-325c-4bf7-b98a-f4729a467a93,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28094,53a15e33-325c-4bf7-b98a-f4729a467a93,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28095,53a15e33-325c-4bf7-b98a-f4729a467a93,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28090,7703e028-74cc-4e4c-b56a-5bf1abfe9ef6,LIST_ACCOUNTS,hbciListAccounts,false +28091,7703e028-74cc-4e4c-b56a-5bf1abfe9ef6,LIST_TRANSACTIONS,hbciListTransactions,false +28092,7703e028-74cc-4e4c-b56a-5bf1abfe9ef6,AUTHORIZATION,,false +28093,7703e028-74cc-4e4c-b56a-5bf1abfe9ef6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28094,7703e028-74cc-4e4c-b56a-5bf1abfe9ef6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28095,7703e028-74cc-4e4c-b56a-5bf1abfe9ef6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28096,1354eaad-ae1c-47ab-9aa8-aa07048680ca,LIST_ACCOUNTS,xs2aListAccounts,true -28097,1354eaad-ae1c-47ab-9aa8-aa07048680ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28097,1354eaad-ae1c-47ab-9aa8-aa07048680ca,LIST_TRANSACTIONS,xs2aListTransactions,true 28098,1354eaad-ae1c-47ab-9aa8-aa07048680ca,AUTHORIZATION,,true 28099,1354eaad-ae1c-47ab-9aa8-aa07048680ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28100,1354eaad-ae1c-47ab-9aa8-aa07048680ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28101,1354eaad-ae1c-47ab-9aa8-aa07048680ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28102,77bcfa63-7a8c-432b-b5e7-da099cbbabe9,LIST_ACCOUNTS,hbciListAccounts,false -28103,77bcfa63-7a8c-432b-b5e7-da099cbbabe9,LIST_TRANSACTIONS,hbciListTransactions,false -28104,77bcfa63-7a8c-432b-b5e7-da099cbbabe9,AUTHORIZATION,,false -28105,77bcfa63-7a8c-432b-b5e7-da099cbbabe9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28106,77bcfa63-7a8c-432b-b5e7-da099cbbabe9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28107,77bcfa63-7a8c-432b-b5e7-da099cbbabe9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28102,c92f9ca7-5483-4f54-b12b-390667780ab5,LIST_ACCOUNTS,hbciListAccounts,false +28103,c92f9ca7-5483-4f54-b12b-390667780ab5,LIST_TRANSACTIONS,hbciListTransactions,false +28104,c92f9ca7-5483-4f54-b12b-390667780ab5,AUTHORIZATION,,false +28105,c92f9ca7-5483-4f54-b12b-390667780ab5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28106,c92f9ca7-5483-4f54-b12b-390667780ab5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28107,c92f9ca7-5483-4f54-b12b-390667780ab5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28108,09ad63df-c3d6-4499-b1c7-d43de2988bf7,LIST_ACCOUNTS,xs2aListAccounts,true -28109,09ad63df-c3d6-4499-b1c7-d43de2988bf7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28109,09ad63df-c3d6-4499-b1c7-d43de2988bf7,LIST_TRANSACTIONS,xs2aListTransactions,true 28110,09ad63df-c3d6-4499-b1c7-d43de2988bf7,AUTHORIZATION,,true 28111,09ad63df-c3d6-4499-b1c7-d43de2988bf7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28112,09ad63df-c3d6-4499-b1c7-d43de2988bf7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28113,09ad63df-c3d6-4499-b1c7-d43de2988bf7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28114,2532552b-83c8-49ca-8dcd-fc2aade1affe,LIST_ACCOUNTS,hbciListAccounts,false -28115,2532552b-83c8-49ca-8dcd-fc2aade1affe,LIST_TRANSACTIONS,hbciListTransactions,false -28116,2532552b-83c8-49ca-8dcd-fc2aade1affe,AUTHORIZATION,,false -28117,2532552b-83c8-49ca-8dcd-fc2aade1affe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28118,2532552b-83c8-49ca-8dcd-fc2aade1affe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28119,2532552b-83c8-49ca-8dcd-fc2aade1affe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28114,66d11585-4aed-4e98-a15a-e2d597ba0bac,LIST_ACCOUNTS,hbciListAccounts,false +28115,66d11585-4aed-4e98-a15a-e2d597ba0bac,LIST_TRANSACTIONS,hbciListTransactions,false +28116,66d11585-4aed-4e98-a15a-e2d597ba0bac,AUTHORIZATION,,false +28117,66d11585-4aed-4e98-a15a-e2d597ba0bac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28118,66d11585-4aed-4e98-a15a-e2d597ba0bac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28119,66d11585-4aed-4e98-a15a-e2d597ba0bac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28120,1640d04d-68dd-471c-9798-d94e1a1e13e5,LIST_ACCOUNTS,xs2aListAccounts,true -28121,1640d04d-68dd-471c-9798-d94e1a1e13e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28121,1640d04d-68dd-471c-9798-d94e1a1e13e5,LIST_TRANSACTIONS,xs2aListTransactions,true 28122,1640d04d-68dd-471c-9798-d94e1a1e13e5,AUTHORIZATION,,true 28123,1640d04d-68dd-471c-9798-d94e1a1e13e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28124,1640d04d-68dd-471c-9798-d94e1a1e13e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28125,1640d04d-68dd-471c-9798-d94e1a1e13e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28126,4ffdbb0d-4c7e-4fba-ab5d-bae9d233802e,LIST_ACCOUNTS,hbciListAccounts,false -28127,4ffdbb0d-4c7e-4fba-ab5d-bae9d233802e,LIST_TRANSACTIONS,hbciListTransactions,false -28128,4ffdbb0d-4c7e-4fba-ab5d-bae9d233802e,AUTHORIZATION,,false -28129,4ffdbb0d-4c7e-4fba-ab5d-bae9d233802e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28130,4ffdbb0d-4c7e-4fba-ab5d-bae9d233802e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28131,4ffdbb0d-4c7e-4fba-ab5d-bae9d233802e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28126,d1f52248-1019-41ab-bb5f-43b6a67922a0,LIST_ACCOUNTS,hbciListAccounts,false +28127,d1f52248-1019-41ab-bb5f-43b6a67922a0,LIST_TRANSACTIONS,hbciListTransactions,false +28128,d1f52248-1019-41ab-bb5f-43b6a67922a0,AUTHORIZATION,,false +28129,d1f52248-1019-41ab-bb5f-43b6a67922a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28130,d1f52248-1019-41ab-bb5f-43b6a67922a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28131,d1f52248-1019-41ab-bb5f-43b6a67922a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28132,ef556f64-bbdc-47a9-bdba-b7de80404635,LIST_ACCOUNTS,xs2aListAccounts,true -28133,ef556f64-bbdc-47a9-bdba-b7de80404635,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28133,ef556f64-bbdc-47a9-bdba-b7de80404635,LIST_TRANSACTIONS,xs2aListTransactions,true 28134,ef556f64-bbdc-47a9-bdba-b7de80404635,AUTHORIZATION,,true 28135,ef556f64-bbdc-47a9-bdba-b7de80404635,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28136,ef556f64-bbdc-47a9-bdba-b7de80404635,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28137,ef556f64-bbdc-47a9-bdba-b7de80404635,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28138,638ac14c-da76-493d-87a5-9c0d6b856379,LIST_ACCOUNTS,hbciListAccounts,false -28139,638ac14c-da76-493d-87a5-9c0d6b856379,LIST_TRANSACTIONS,hbciListTransactions,false -28140,638ac14c-da76-493d-87a5-9c0d6b856379,AUTHORIZATION,,false -28141,638ac14c-da76-493d-87a5-9c0d6b856379,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28142,638ac14c-da76-493d-87a5-9c0d6b856379,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28143,638ac14c-da76-493d-87a5-9c0d6b856379,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28138,5ea978b7-86c3-4887-8c17-6e97c0ab3a25,LIST_ACCOUNTS,hbciListAccounts,false +28139,5ea978b7-86c3-4887-8c17-6e97c0ab3a25,LIST_TRANSACTIONS,hbciListTransactions,false +28140,5ea978b7-86c3-4887-8c17-6e97c0ab3a25,AUTHORIZATION,,false +28141,5ea978b7-86c3-4887-8c17-6e97c0ab3a25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28142,5ea978b7-86c3-4887-8c17-6e97c0ab3a25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28143,5ea978b7-86c3-4887-8c17-6e97c0ab3a25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28144,084259e0-159b-43f5-8182-17bcec156f63,LIST_ACCOUNTS,xs2aListAccounts,true -28145,084259e0-159b-43f5-8182-17bcec156f63,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28145,084259e0-159b-43f5-8182-17bcec156f63,LIST_TRANSACTIONS,xs2aListTransactions,true 28146,084259e0-159b-43f5-8182-17bcec156f63,AUTHORIZATION,,true 28147,084259e0-159b-43f5-8182-17bcec156f63,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28148,084259e0-159b-43f5-8182-17bcec156f63,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28149,084259e0-159b-43f5-8182-17bcec156f63,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28150,4a6b77e5-fa83-4010-8e7e-9258828d2ee2,LIST_ACCOUNTS,hbciListAccounts,false -28151,4a6b77e5-fa83-4010-8e7e-9258828d2ee2,LIST_TRANSACTIONS,hbciListTransactions,false -28152,4a6b77e5-fa83-4010-8e7e-9258828d2ee2,AUTHORIZATION,,false -28153,4a6b77e5-fa83-4010-8e7e-9258828d2ee2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28154,4a6b77e5-fa83-4010-8e7e-9258828d2ee2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28155,4a6b77e5-fa83-4010-8e7e-9258828d2ee2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28150,4cb06a16-c925-44ca-abd3-dd9fbd6bebdc,LIST_ACCOUNTS,hbciListAccounts,false +28151,4cb06a16-c925-44ca-abd3-dd9fbd6bebdc,LIST_TRANSACTIONS,hbciListTransactions,false +28152,4cb06a16-c925-44ca-abd3-dd9fbd6bebdc,AUTHORIZATION,,false +28153,4cb06a16-c925-44ca-abd3-dd9fbd6bebdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28154,4cb06a16-c925-44ca-abd3-dd9fbd6bebdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28155,4cb06a16-c925-44ca-abd3-dd9fbd6bebdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28156,24031a1e-73ba-44c4-b0cc-80ee5482fa58,LIST_ACCOUNTS,xs2aListAccounts,true -28157,24031a1e-73ba-44c4-b0cc-80ee5482fa58,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28157,24031a1e-73ba-44c4-b0cc-80ee5482fa58,LIST_TRANSACTIONS,xs2aListTransactions,true 28158,24031a1e-73ba-44c4-b0cc-80ee5482fa58,AUTHORIZATION,,true 28159,24031a1e-73ba-44c4-b0cc-80ee5482fa58,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28160,24031a1e-73ba-44c4-b0cc-80ee5482fa58,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28161,24031a1e-73ba-44c4-b0cc-80ee5482fa58,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28162,ac63361c-d780-448c-9958-34979a1a9c2e,LIST_ACCOUNTS,hbciListAccounts,false -28163,ac63361c-d780-448c-9958-34979a1a9c2e,LIST_TRANSACTIONS,hbciListTransactions,false -28164,ac63361c-d780-448c-9958-34979a1a9c2e,AUTHORIZATION,,false -28165,ac63361c-d780-448c-9958-34979a1a9c2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28166,ac63361c-d780-448c-9958-34979a1a9c2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28167,ac63361c-d780-448c-9958-34979a1a9c2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28162,e55964a1-e44e-4a62-9c85-07cbcdcd1dda,LIST_ACCOUNTS,hbciListAccounts,false +28163,e55964a1-e44e-4a62-9c85-07cbcdcd1dda,LIST_TRANSACTIONS,hbciListTransactions,false +28164,e55964a1-e44e-4a62-9c85-07cbcdcd1dda,AUTHORIZATION,,false +28165,e55964a1-e44e-4a62-9c85-07cbcdcd1dda,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28166,e55964a1-e44e-4a62-9c85-07cbcdcd1dda,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28167,e55964a1-e44e-4a62-9c85-07cbcdcd1dda,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28168,1606cfc5-8d11-453d-830a-cfa25d87cad1,LIST_ACCOUNTS,xs2aListAccounts,true -28169,1606cfc5-8d11-453d-830a-cfa25d87cad1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28169,1606cfc5-8d11-453d-830a-cfa25d87cad1,LIST_TRANSACTIONS,xs2aListTransactions,true 28170,1606cfc5-8d11-453d-830a-cfa25d87cad1,AUTHORIZATION,,true 28171,1606cfc5-8d11-453d-830a-cfa25d87cad1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28172,1606cfc5-8d11-453d-830a-cfa25d87cad1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28173,1606cfc5-8d11-453d-830a-cfa25d87cad1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28174,1c9728fe-26f4-403c-815a-23eabf42117d,LIST_ACCOUNTS,hbciListAccounts,false -28175,1c9728fe-26f4-403c-815a-23eabf42117d,LIST_TRANSACTIONS,hbciListTransactions,false -28176,1c9728fe-26f4-403c-815a-23eabf42117d,AUTHORIZATION,,false -28177,1c9728fe-26f4-403c-815a-23eabf42117d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28178,1c9728fe-26f4-403c-815a-23eabf42117d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28179,1c9728fe-26f4-403c-815a-23eabf42117d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28174,a4fa245c-faea-4da0-a118-538fde11be1a,LIST_ACCOUNTS,hbciListAccounts,false +28175,a4fa245c-faea-4da0-a118-538fde11be1a,LIST_TRANSACTIONS,hbciListTransactions,false +28176,a4fa245c-faea-4da0-a118-538fde11be1a,AUTHORIZATION,,false +28177,a4fa245c-faea-4da0-a118-538fde11be1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28178,a4fa245c-faea-4da0-a118-538fde11be1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28179,a4fa245c-faea-4da0-a118-538fde11be1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28180,59a495b5-46da-44c1-a29a-91a0894f6e71,LIST_ACCOUNTS,xs2aListAccounts,true -28181,59a495b5-46da-44c1-a29a-91a0894f6e71,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28181,59a495b5-46da-44c1-a29a-91a0894f6e71,LIST_TRANSACTIONS,xs2aListTransactions,true 28182,59a495b5-46da-44c1-a29a-91a0894f6e71,AUTHORIZATION,,true 28183,59a495b5-46da-44c1-a29a-91a0894f6e71,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28184,59a495b5-46da-44c1-a29a-91a0894f6e71,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28185,59a495b5-46da-44c1-a29a-91a0894f6e71,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28186,c8472109-a389-4ad1-b089-37044c7f19e1,LIST_ACCOUNTS,hbciListAccounts,false -28187,c8472109-a389-4ad1-b089-37044c7f19e1,LIST_TRANSACTIONS,hbciListTransactions,false -28188,c8472109-a389-4ad1-b089-37044c7f19e1,AUTHORIZATION,,false -28189,c8472109-a389-4ad1-b089-37044c7f19e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28190,c8472109-a389-4ad1-b089-37044c7f19e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28191,c8472109-a389-4ad1-b089-37044c7f19e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28186,c7c3147a-bf1c-4105-8337-a498f6dfdf1d,LIST_ACCOUNTS,hbciListAccounts,false +28187,c7c3147a-bf1c-4105-8337-a498f6dfdf1d,LIST_TRANSACTIONS,hbciListTransactions,false +28188,c7c3147a-bf1c-4105-8337-a498f6dfdf1d,AUTHORIZATION,,false +28189,c7c3147a-bf1c-4105-8337-a498f6dfdf1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28190,c7c3147a-bf1c-4105-8337-a498f6dfdf1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28191,c7c3147a-bf1c-4105-8337-a498f6dfdf1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28192,1acb4d4f-34c4-415d-af2c-4d4d49d6177a,LIST_ACCOUNTS,xs2aListAccounts,true -28193,1acb4d4f-34c4-415d-af2c-4d4d49d6177a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28193,1acb4d4f-34c4-415d-af2c-4d4d49d6177a,LIST_TRANSACTIONS,xs2aListTransactions,true 28194,1acb4d4f-34c4-415d-af2c-4d4d49d6177a,AUTHORIZATION,,true 28195,1acb4d4f-34c4-415d-af2c-4d4d49d6177a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28196,1acb4d4f-34c4-415d-af2c-4d4d49d6177a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28197,1acb4d4f-34c4-415d-af2c-4d4d49d6177a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28198,e3ba332b-57df-4cee-8774-7f42c6b850ee,LIST_ACCOUNTS,hbciListAccounts,false -28199,e3ba332b-57df-4cee-8774-7f42c6b850ee,LIST_TRANSACTIONS,hbciListTransactions,false -28200,e3ba332b-57df-4cee-8774-7f42c6b850ee,AUTHORIZATION,,false -28201,e3ba332b-57df-4cee-8774-7f42c6b850ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28202,e3ba332b-57df-4cee-8774-7f42c6b850ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28203,e3ba332b-57df-4cee-8774-7f42c6b850ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28198,37b57ec0-c9dc-4051-9273-dc3534e4a052,LIST_ACCOUNTS,hbciListAccounts,false +28199,37b57ec0-c9dc-4051-9273-dc3534e4a052,LIST_TRANSACTIONS,hbciListTransactions,false +28200,37b57ec0-c9dc-4051-9273-dc3534e4a052,AUTHORIZATION,,false +28201,37b57ec0-c9dc-4051-9273-dc3534e4a052,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28202,37b57ec0-c9dc-4051-9273-dc3534e4a052,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28203,37b57ec0-c9dc-4051-9273-dc3534e4a052,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28204,06ca8123-c558-4b6c-9a13-71d6051b7705,LIST_ACCOUNTS,xs2aListAccounts,true -28205,06ca8123-c558-4b6c-9a13-71d6051b7705,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28205,06ca8123-c558-4b6c-9a13-71d6051b7705,LIST_TRANSACTIONS,xs2aListTransactions,true 28206,06ca8123-c558-4b6c-9a13-71d6051b7705,AUTHORIZATION,,true 28207,06ca8123-c558-4b6c-9a13-71d6051b7705,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28208,06ca8123-c558-4b6c-9a13-71d6051b7705,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28209,06ca8123-c558-4b6c-9a13-71d6051b7705,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28210,8038cdbe-535e-4686-b45c-fce64a23654b,LIST_ACCOUNTS,hbciListAccounts,false -28211,8038cdbe-535e-4686-b45c-fce64a23654b,LIST_TRANSACTIONS,hbciListTransactions,false -28212,8038cdbe-535e-4686-b45c-fce64a23654b,AUTHORIZATION,,false -28213,8038cdbe-535e-4686-b45c-fce64a23654b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28214,8038cdbe-535e-4686-b45c-fce64a23654b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28215,8038cdbe-535e-4686-b45c-fce64a23654b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28210,4d8e774a-c84e-408c-93d0-2f34956a4ed6,LIST_ACCOUNTS,hbciListAccounts,false +28211,4d8e774a-c84e-408c-93d0-2f34956a4ed6,LIST_TRANSACTIONS,hbciListTransactions,false +28212,4d8e774a-c84e-408c-93d0-2f34956a4ed6,AUTHORIZATION,,false +28213,4d8e774a-c84e-408c-93d0-2f34956a4ed6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28214,4d8e774a-c84e-408c-93d0-2f34956a4ed6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28215,4d8e774a-c84e-408c-93d0-2f34956a4ed6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28216,c26d9ab0-10da-40e7-a11d-98cb1c63928a,LIST_ACCOUNTS,xs2aListAccounts,true -28217,c26d9ab0-10da-40e7-a11d-98cb1c63928a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28217,c26d9ab0-10da-40e7-a11d-98cb1c63928a,LIST_TRANSACTIONS,xs2aListTransactions,true 28218,c26d9ab0-10da-40e7-a11d-98cb1c63928a,AUTHORIZATION,,true 28219,c26d9ab0-10da-40e7-a11d-98cb1c63928a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28220,c26d9ab0-10da-40e7-a11d-98cb1c63928a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28221,c26d9ab0-10da-40e7-a11d-98cb1c63928a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28222,6986eb37-b3a9-4514-a15c-53880fbb41ce,LIST_ACCOUNTS,hbciListAccounts,false -28223,6986eb37-b3a9-4514-a15c-53880fbb41ce,LIST_TRANSACTIONS,hbciListTransactions,false -28224,6986eb37-b3a9-4514-a15c-53880fbb41ce,AUTHORIZATION,,false -28225,6986eb37-b3a9-4514-a15c-53880fbb41ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28226,6986eb37-b3a9-4514-a15c-53880fbb41ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28227,6986eb37-b3a9-4514-a15c-53880fbb41ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28222,9909abef-296a-4f74-9de8-0267923f4676,LIST_ACCOUNTS,hbciListAccounts,false +28223,9909abef-296a-4f74-9de8-0267923f4676,LIST_TRANSACTIONS,hbciListTransactions,false +28224,9909abef-296a-4f74-9de8-0267923f4676,AUTHORIZATION,,false +28225,9909abef-296a-4f74-9de8-0267923f4676,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28226,9909abef-296a-4f74-9de8-0267923f4676,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28227,9909abef-296a-4f74-9de8-0267923f4676,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28228,bd641a45-c65b-42a0-8532-cc2052fd9c95,LIST_ACCOUNTS,xs2aListAccounts,true -28229,bd641a45-c65b-42a0-8532-cc2052fd9c95,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28229,bd641a45-c65b-42a0-8532-cc2052fd9c95,LIST_TRANSACTIONS,xs2aListTransactions,true 28230,bd641a45-c65b-42a0-8532-cc2052fd9c95,AUTHORIZATION,,true 28231,bd641a45-c65b-42a0-8532-cc2052fd9c95,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28232,bd641a45-c65b-42a0-8532-cc2052fd9c95,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28233,bd641a45-c65b-42a0-8532-cc2052fd9c95,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28234,f2fced25-48f9-4c9a-bfff-99b434d7f1b9,LIST_ACCOUNTS,hbciListAccounts,false -28235,f2fced25-48f9-4c9a-bfff-99b434d7f1b9,LIST_TRANSACTIONS,hbciListTransactions,false -28236,f2fced25-48f9-4c9a-bfff-99b434d7f1b9,AUTHORIZATION,,false -28237,f2fced25-48f9-4c9a-bfff-99b434d7f1b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28238,f2fced25-48f9-4c9a-bfff-99b434d7f1b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28239,f2fced25-48f9-4c9a-bfff-99b434d7f1b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28234,88e63dab-f323-4adb-a865-728e1cf1b4c4,LIST_ACCOUNTS,hbciListAccounts,false +28235,88e63dab-f323-4adb-a865-728e1cf1b4c4,LIST_TRANSACTIONS,hbciListTransactions,false +28236,88e63dab-f323-4adb-a865-728e1cf1b4c4,AUTHORIZATION,,false +28237,88e63dab-f323-4adb-a865-728e1cf1b4c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28238,88e63dab-f323-4adb-a865-728e1cf1b4c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28239,88e63dab-f323-4adb-a865-728e1cf1b4c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28240,1e43dbc6-9246-4db0-8775-1e979e14300b,LIST_ACCOUNTS,xs2aListAccounts,true -28241,1e43dbc6-9246-4db0-8775-1e979e14300b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28241,1e43dbc6-9246-4db0-8775-1e979e14300b,LIST_TRANSACTIONS,xs2aListTransactions,true 28242,1e43dbc6-9246-4db0-8775-1e979e14300b,AUTHORIZATION,,true 28243,1e43dbc6-9246-4db0-8775-1e979e14300b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28244,1e43dbc6-9246-4db0-8775-1e979e14300b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28245,1e43dbc6-9246-4db0-8775-1e979e14300b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28246,6cf8e34e-456f-4646-a79f-3cc4f174fa48,LIST_ACCOUNTS,hbciListAccounts,false -28247,6cf8e34e-456f-4646-a79f-3cc4f174fa48,LIST_TRANSACTIONS,hbciListTransactions,false -28248,6cf8e34e-456f-4646-a79f-3cc4f174fa48,AUTHORIZATION,,false -28249,6cf8e34e-456f-4646-a79f-3cc4f174fa48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28250,6cf8e34e-456f-4646-a79f-3cc4f174fa48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28251,6cf8e34e-456f-4646-a79f-3cc4f174fa48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28246,1ebf7d65-df8a-4a8b-bd92-398de5a54e5e,LIST_ACCOUNTS,hbciListAccounts,false +28247,1ebf7d65-df8a-4a8b-bd92-398de5a54e5e,LIST_TRANSACTIONS,hbciListTransactions,false +28248,1ebf7d65-df8a-4a8b-bd92-398de5a54e5e,AUTHORIZATION,,false +28249,1ebf7d65-df8a-4a8b-bd92-398de5a54e5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28250,1ebf7d65-df8a-4a8b-bd92-398de5a54e5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28251,1ebf7d65-df8a-4a8b-bd92-398de5a54e5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28252,c78a61ad-e38c-4ca8-91d3-3c78de208a1a,LIST_ACCOUNTS,xs2aListAccounts,true -28253,c78a61ad-e38c-4ca8-91d3-3c78de208a1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28253,c78a61ad-e38c-4ca8-91d3-3c78de208a1a,LIST_TRANSACTIONS,xs2aListTransactions,true 28254,c78a61ad-e38c-4ca8-91d3-3c78de208a1a,AUTHORIZATION,,true 28255,c78a61ad-e38c-4ca8-91d3-3c78de208a1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28256,c78a61ad-e38c-4ca8-91d3-3c78de208a1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28257,c78a61ad-e38c-4ca8-91d3-3c78de208a1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28258,e36081fb-14dc-485f-b5bb-7c1bb87946cf,LIST_ACCOUNTS,hbciListAccounts,false -28259,e36081fb-14dc-485f-b5bb-7c1bb87946cf,LIST_TRANSACTIONS,hbciListTransactions,false -28260,e36081fb-14dc-485f-b5bb-7c1bb87946cf,AUTHORIZATION,,false -28261,e36081fb-14dc-485f-b5bb-7c1bb87946cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28262,e36081fb-14dc-485f-b5bb-7c1bb87946cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28263,e36081fb-14dc-485f-b5bb-7c1bb87946cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28258,a212b22a-bb09-4dce-ba6d-bb5781a779cd,LIST_ACCOUNTS,hbciListAccounts,false +28259,a212b22a-bb09-4dce-ba6d-bb5781a779cd,LIST_TRANSACTIONS,hbciListTransactions,false +28260,a212b22a-bb09-4dce-ba6d-bb5781a779cd,AUTHORIZATION,,false +28261,a212b22a-bb09-4dce-ba6d-bb5781a779cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28262,a212b22a-bb09-4dce-ba6d-bb5781a779cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28263,a212b22a-bb09-4dce-ba6d-bb5781a779cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28264,1dabf350-076c-48ce-91b1-b78f5bb16e93,LIST_ACCOUNTS,xs2aListAccounts,true -28265,1dabf350-076c-48ce-91b1-b78f5bb16e93,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28265,1dabf350-076c-48ce-91b1-b78f5bb16e93,LIST_TRANSACTIONS,xs2aListTransactions,true 28266,1dabf350-076c-48ce-91b1-b78f5bb16e93,AUTHORIZATION,,true 28267,1dabf350-076c-48ce-91b1-b78f5bb16e93,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28268,1dabf350-076c-48ce-91b1-b78f5bb16e93,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28269,1dabf350-076c-48ce-91b1-b78f5bb16e93,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28270,ede87d4d-3846-4d27-8973-8f96e33c28dc,LIST_ACCOUNTS,hbciListAccounts,false -28271,ede87d4d-3846-4d27-8973-8f96e33c28dc,LIST_TRANSACTIONS,hbciListTransactions,false -28272,ede87d4d-3846-4d27-8973-8f96e33c28dc,AUTHORIZATION,,false -28273,ede87d4d-3846-4d27-8973-8f96e33c28dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28274,ede87d4d-3846-4d27-8973-8f96e33c28dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28275,ede87d4d-3846-4d27-8973-8f96e33c28dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28270,2df785aa-a928-44ab-9e33-c5494669c48a,LIST_ACCOUNTS,hbciListAccounts,false +28271,2df785aa-a928-44ab-9e33-c5494669c48a,LIST_TRANSACTIONS,hbciListTransactions,false +28272,2df785aa-a928-44ab-9e33-c5494669c48a,AUTHORIZATION,,false +28273,2df785aa-a928-44ab-9e33-c5494669c48a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28274,2df785aa-a928-44ab-9e33-c5494669c48a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28275,2df785aa-a928-44ab-9e33-c5494669c48a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28276,4e95d036-de36-4378-9c25-4c6947efd697,LIST_ACCOUNTS,xs2aListAccounts,true -28277,4e95d036-de36-4378-9c25-4c6947efd697,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28277,4e95d036-de36-4378-9c25-4c6947efd697,LIST_TRANSACTIONS,xs2aListTransactions,true 28278,4e95d036-de36-4378-9c25-4c6947efd697,AUTHORIZATION,,true 28279,4e95d036-de36-4378-9c25-4c6947efd697,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28280,4e95d036-de36-4378-9c25-4c6947efd697,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28281,4e95d036-de36-4378-9c25-4c6947efd697,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28282,74abd472-e261-4934-809c-70a4822d3cc3,LIST_ACCOUNTS,hbciListAccounts,false -28283,74abd472-e261-4934-809c-70a4822d3cc3,LIST_TRANSACTIONS,hbciListTransactions,false -28284,74abd472-e261-4934-809c-70a4822d3cc3,AUTHORIZATION,,false -28285,74abd472-e261-4934-809c-70a4822d3cc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28286,74abd472-e261-4934-809c-70a4822d3cc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28287,74abd472-e261-4934-809c-70a4822d3cc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28282,38452848-6ef0-4e9e-bafb-6169d406c5d9,LIST_ACCOUNTS,hbciListAccounts,false +28283,38452848-6ef0-4e9e-bafb-6169d406c5d9,LIST_TRANSACTIONS,hbciListTransactions,false +28284,38452848-6ef0-4e9e-bafb-6169d406c5d9,AUTHORIZATION,,false +28285,38452848-6ef0-4e9e-bafb-6169d406c5d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28286,38452848-6ef0-4e9e-bafb-6169d406c5d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28287,38452848-6ef0-4e9e-bafb-6169d406c5d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28288,feaa869c-6cac-4249-a034-55559f70ed46,LIST_ACCOUNTS,xs2aListAccounts,true -28289,feaa869c-6cac-4249-a034-55559f70ed46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28289,feaa869c-6cac-4249-a034-55559f70ed46,LIST_TRANSACTIONS,xs2aListTransactions,true 28290,feaa869c-6cac-4249-a034-55559f70ed46,AUTHORIZATION,,true 28291,feaa869c-6cac-4249-a034-55559f70ed46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28292,feaa869c-6cac-4249-a034-55559f70ed46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28293,feaa869c-6cac-4249-a034-55559f70ed46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28294,ceee59b9-cc05-413d-9785-ece51a1b6d2c,LIST_ACCOUNTS,hbciListAccounts,false -28295,ceee59b9-cc05-413d-9785-ece51a1b6d2c,LIST_TRANSACTIONS,hbciListTransactions,false -28296,ceee59b9-cc05-413d-9785-ece51a1b6d2c,AUTHORIZATION,,false -28297,ceee59b9-cc05-413d-9785-ece51a1b6d2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28298,ceee59b9-cc05-413d-9785-ece51a1b6d2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28299,ceee59b9-cc05-413d-9785-ece51a1b6d2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28294,ddebb42e-46b1-4279-a56c-b748cd279b61,LIST_ACCOUNTS,hbciListAccounts,false +28295,ddebb42e-46b1-4279-a56c-b748cd279b61,LIST_TRANSACTIONS,hbciListTransactions,false +28296,ddebb42e-46b1-4279-a56c-b748cd279b61,AUTHORIZATION,,false +28297,ddebb42e-46b1-4279-a56c-b748cd279b61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28298,ddebb42e-46b1-4279-a56c-b748cd279b61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28299,ddebb42e-46b1-4279-a56c-b748cd279b61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28300,b40b35a7-b868-41fe-8ee5-a24be09a8de6,LIST_ACCOUNTS,xs2aListAccounts,true -28301,b40b35a7-b868-41fe-8ee5-a24be09a8de6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28301,b40b35a7-b868-41fe-8ee5-a24be09a8de6,LIST_TRANSACTIONS,xs2aListTransactions,true 28302,b40b35a7-b868-41fe-8ee5-a24be09a8de6,AUTHORIZATION,,true 28303,b40b35a7-b868-41fe-8ee5-a24be09a8de6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28304,b40b35a7-b868-41fe-8ee5-a24be09a8de6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28305,b40b35a7-b868-41fe-8ee5-a24be09a8de6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28306,ba0e8b05-e612-4dfc-bd3c-9695d78450ef,LIST_ACCOUNTS,hbciListAccounts,false -28307,ba0e8b05-e612-4dfc-bd3c-9695d78450ef,LIST_TRANSACTIONS,hbciListTransactions,false -28308,ba0e8b05-e612-4dfc-bd3c-9695d78450ef,AUTHORIZATION,,false -28309,ba0e8b05-e612-4dfc-bd3c-9695d78450ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28310,ba0e8b05-e612-4dfc-bd3c-9695d78450ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28311,ba0e8b05-e612-4dfc-bd3c-9695d78450ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28306,91eb5f2a-2cde-4995-beb5-4bced51105af,LIST_ACCOUNTS,hbciListAccounts,false +28307,91eb5f2a-2cde-4995-beb5-4bced51105af,LIST_TRANSACTIONS,hbciListTransactions,false +28308,91eb5f2a-2cde-4995-beb5-4bced51105af,AUTHORIZATION,,false +28309,91eb5f2a-2cde-4995-beb5-4bced51105af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28310,91eb5f2a-2cde-4995-beb5-4bced51105af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28311,91eb5f2a-2cde-4995-beb5-4bced51105af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28312,be86f01e-023c-40a4-a975-978c793cedd9,LIST_ACCOUNTS,xs2aListAccounts,true -28313,be86f01e-023c-40a4-a975-978c793cedd9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28313,be86f01e-023c-40a4-a975-978c793cedd9,LIST_TRANSACTIONS,xs2aListTransactions,true 28314,be86f01e-023c-40a4-a975-978c793cedd9,AUTHORIZATION,,true 28315,be86f01e-023c-40a4-a975-978c793cedd9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28316,be86f01e-023c-40a4-a975-978c793cedd9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28317,be86f01e-023c-40a4-a975-978c793cedd9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28318,09a29b88-d21f-4c62-a271-2973839bd737,LIST_ACCOUNTS,hbciListAccounts,false -28319,09a29b88-d21f-4c62-a271-2973839bd737,LIST_TRANSACTIONS,hbciListTransactions,false -28320,09a29b88-d21f-4c62-a271-2973839bd737,AUTHORIZATION,,false -28321,09a29b88-d21f-4c62-a271-2973839bd737,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28322,09a29b88-d21f-4c62-a271-2973839bd737,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28323,09a29b88-d21f-4c62-a271-2973839bd737,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28318,f55e26ca-51a0-4e32-b677-74b6ca9c4877,LIST_ACCOUNTS,hbciListAccounts,false +28319,f55e26ca-51a0-4e32-b677-74b6ca9c4877,LIST_TRANSACTIONS,hbciListTransactions,false +28320,f55e26ca-51a0-4e32-b677-74b6ca9c4877,AUTHORIZATION,,false +28321,f55e26ca-51a0-4e32-b677-74b6ca9c4877,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28322,f55e26ca-51a0-4e32-b677-74b6ca9c4877,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28323,f55e26ca-51a0-4e32-b677-74b6ca9c4877,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28324,516b6653-e853-4541-9427-410cc64e5fbb,LIST_ACCOUNTS,xs2aListAccounts,true -28325,516b6653-e853-4541-9427-410cc64e5fbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28325,516b6653-e853-4541-9427-410cc64e5fbb,LIST_TRANSACTIONS,xs2aListTransactions,true 28326,516b6653-e853-4541-9427-410cc64e5fbb,AUTHORIZATION,,true 28327,516b6653-e853-4541-9427-410cc64e5fbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28328,516b6653-e853-4541-9427-410cc64e5fbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28329,516b6653-e853-4541-9427-410cc64e5fbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28330,82818194-87f7-47e7-923f-5cdd03736c6f,LIST_ACCOUNTS,hbciListAccounts,false -28331,82818194-87f7-47e7-923f-5cdd03736c6f,LIST_TRANSACTIONS,hbciListTransactions,false -28332,82818194-87f7-47e7-923f-5cdd03736c6f,AUTHORIZATION,,false -28333,82818194-87f7-47e7-923f-5cdd03736c6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28334,82818194-87f7-47e7-923f-5cdd03736c6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28335,82818194-87f7-47e7-923f-5cdd03736c6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28330,a3bba804-4f65-40bb-917a-dc96fec2b822,LIST_ACCOUNTS,hbciListAccounts,false +28331,a3bba804-4f65-40bb-917a-dc96fec2b822,LIST_TRANSACTIONS,hbciListTransactions,false +28332,a3bba804-4f65-40bb-917a-dc96fec2b822,AUTHORIZATION,,false +28333,a3bba804-4f65-40bb-917a-dc96fec2b822,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28334,a3bba804-4f65-40bb-917a-dc96fec2b822,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28335,a3bba804-4f65-40bb-917a-dc96fec2b822,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28336,4a35c024-d41d-4fa1-8403-f5fb5fbbb8f8,LIST_ACCOUNTS,xs2aListAccounts,true -28337,4a35c024-d41d-4fa1-8403-f5fb5fbbb8f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28337,4a35c024-d41d-4fa1-8403-f5fb5fbbb8f8,LIST_TRANSACTIONS,xs2aListTransactions,true 28338,4a35c024-d41d-4fa1-8403-f5fb5fbbb8f8,AUTHORIZATION,,true 28339,4a35c024-d41d-4fa1-8403-f5fb5fbbb8f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28340,4a35c024-d41d-4fa1-8403-f5fb5fbbb8f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28341,4a35c024-d41d-4fa1-8403-f5fb5fbbb8f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28342,b2daa140-5606-4dc3-9652-e8d8edfac033,LIST_ACCOUNTS,hbciListAccounts,false -28343,b2daa140-5606-4dc3-9652-e8d8edfac033,LIST_TRANSACTIONS,hbciListTransactions,false -28344,b2daa140-5606-4dc3-9652-e8d8edfac033,AUTHORIZATION,,false -28345,b2daa140-5606-4dc3-9652-e8d8edfac033,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28346,b2daa140-5606-4dc3-9652-e8d8edfac033,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28347,b2daa140-5606-4dc3-9652-e8d8edfac033,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28342,11c96959-baec-49d3-8a07-5e99d05ffd31,LIST_ACCOUNTS,hbciListAccounts,false +28343,11c96959-baec-49d3-8a07-5e99d05ffd31,LIST_TRANSACTIONS,hbciListTransactions,false +28344,11c96959-baec-49d3-8a07-5e99d05ffd31,AUTHORIZATION,,false +28345,11c96959-baec-49d3-8a07-5e99d05ffd31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28346,11c96959-baec-49d3-8a07-5e99d05ffd31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28347,11c96959-baec-49d3-8a07-5e99d05ffd31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28348,84de64f6-18ba-4446-b9bd-8739bea95ca2,LIST_ACCOUNTS,xs2aListAccounts,true -28349,84de64f6-18ba-4446-b9bd-8739bea95ca2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28349,84de64f6-18ba-4446-b9bd-8739bea95ca2,LIST_TRANSACTIONS,xs2aListTransactions,true 28350,84de64f6-18ba-4446-b9bd-8739bea95ca2,AUTHORIZATION,,true 28351,84de64f6-18ba-4446-b9bd-8739bea95ca2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28352,84de64f6-18ba-4446-b9bd-8739bea95ca2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28353,84de64f6-18ba-4446-b9bd-8739bea95ca2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28354,4b8fd5ac-80de-4b9d-9492-0dc976fbc92c,LIST_ACCOUNTS,hbciListAccounts,false -28355,4b8fd5ac-80de-4b9d-9492-0dc976fbc92c,LIST_TRANSACTIONS,hbciListTransactions,false -28356,4b8fd5ac-80de-4b9d-9492-0dc976fbc92c,AUTHORIZATION,,false -28357,4b8fd5ac-80de-4b9d-9492-0dc976fbc92c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28358,4b8fd5ac-80de-4b9d-9492-0dc976fbc92c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28359,4b8fd5ac-80de-4b9d-9492-0dc976fbc92c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28354,100fd98c-4294-48e1-b6ae-96263ee478f6,LIST_ACCOUNTS,hbciListAccounts,false +28355,100fd98c-4294-48e1-b6ae-96263ee478f6,LIST_TRANSACTIONS,hbciListTransactions,false +28356,100fd98c-4294-48e1-b6ae-96263ee478f6,AUTHORIZATION,,false +28357,100fd98c-4294-48e1-b6ae-96263ee478f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28358,100fd98c-4294-48e1-b6ae-96263ee478f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28359,100fd98c-4294-48e1-b6ae-96263ee478f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28360,4efd3dca-7270-4146-ba84-89f7dc7c3f47,LIST_ACCOUNTS,xs2aListAccounts,true -28361,4efd3dca-7270-4146-ba84-89f7dc7c3f47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28361,4efd3dca-7270-4146-ba84-89f7dc7c3f47,LIST_TRANSACTIONS,xs2aListTransactions,true 28362,4efd3dca-7270-4146-ba84-89f7dc7c3f47,AUTHORIZATION,,true 28363,4efd3dca-7270-4146-ba84-89f7dc7c3f47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28364,4efd3dca-7270-4146-ba84-89f7dc7c3f47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28365,4efd3dca-7270-4146-ba84-89f7dc7c3f47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28366,1e51db71-b8c4-4ea6-aad3-fa4c39f1338b,LIST_ACCOUNTS,hbciListAccounts,false -28367,1e51db71-b8c4-4ea6-aad3-fa4c39f1338b,LIST_TRANSACTIONS,hbciListTransactions,false -28368,1e51db71-b8c4-4ea6-aad3-fa4c39f1338b,AUTHORIZATION,,false -28369,1e51db71-b8c4-4ea6-aad3-fa4c39f1338b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28370,1e51db71-b8c4-4ea6-aad3-fa4c39f1338b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28371,1e51db71-b8c4-4ea6-aad3-fa4c39f1338b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28366,2174816a-e2fb-4f9d-8a32-e0b29987fd96,LIST_ACCOUNTS,hbciListAccounts,false +28367,2174816a-e2fb-4f9d-8a32-e0b29987fd96,LIST_TRANSACTIONS,hbciListTransactions,false +28368,2174816a-e2fb-4f9d-8a32-e0b29987fd96,AUTHORIZATION,,false +28369,2174816a-e2fb-4f9d-8a32-e0b29987fd96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28370,2174816a-e2fb-4f9d-8a32-e0b29987fd96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28371,2174816a-e2fb-4f9d-8a32-e0b29987fd96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28372,8255233d-d8c4-48c2-b82a-f77363d5f2d2,LIST_ACCOUNTS,xs2aListAccounts,true -28373,8255233d-d8c4-48c2-b82a-f77363d5f2d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28373,8255233d-d8c4-48c2-b82a-f77363d5f2d2,LIST_TRANSACTIONS,xs2aListTransactions,true 28374,8255233d-d8c4-48c2-b82a-f77363d5f2d2,AUTHORIZATION,,true 28375,8255233d-d8c4-48c2-b82a-f77363d5f2d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28376,8255233d-d8c4-48c2-b82a-f77363d5f2d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28377,8255233d-d8c4-48c2-b82a-f77363d5f2d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28378,950f437c-81f1-41c6-b740-06175eeb552c,LIST_ACCOUNTS,hbciListAccounts,false -28379,950f437c-81f1-41c6-b740-06175eeb552c,LIST_TRANSACTIONS,hbciListTransactions,false -28380,950f437c-81f1-41c6-b740-06175eeb552c,AUTHORIZATION,,false -28381,950f437c-81f1-41c6-b740-06175eeb552c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28382,950f437c-81f1-41c6-b740-06175eeb552c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28383,950f437c-81f1-41c6-b740-06175eeb552c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28378,fcae966a-ee8f-4ae7-ab20-5908f0572026,LIST_ACCOUNTS,hbciListAccounts,false +28379,fcae966a-ee8f-4ae7-ab20-5908f0572026,LIST_TRANSACTIONS,hbciListTransactions,false +28380,fcae966a-ee8f-4ae7-ab20-5908f0572026,AUTHORIZATION,,false +28381,fcae966a-ee8f-4ae7-ab20-5908f0572026,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28382,fcae966a-ee8f-4ae7-ab20-5908f0572026,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28383,fcae966a-ee8f-4ae7-ab20-5908f0572026,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28384,1f7796f5-f3cd-4de1-b50a-697f6be68e16,LIST_ACCOUNTS,xs2aListAccounts,true -28385,1f7796f5-f3cd-4de1-b50a-697f6be68e16,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28385,1f7796f5-f3cd-4de1-b50a-697f6be68e16,LIST_TRANSACTIONS,xs2aListTransactions,true 28386,1f7796f5-f3cd-4de1-b50a-697f6be68e16,AUTHORIZATION,,true 28387,1f7796f5-f3cd-4de1-b50a-697f6be68e16,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28388,1f7796f5-f3cd-4de1-b50a-697f6be68e16,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28389,1f7796f5-f3cd-4de1-b50a-697f6be68e16,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28390,14d5c1ac-c2e6-42f3-a6cc-753eb4f1aec8,LIST_ACCOUNTS,hbciListAccounts,false -28391,14d5c1ac-c2e6-42f3-a6cc-753eb4f1aec8,LIST_TRANSACTIONS,hbciListTransactions,false -28392,14d5c1ac-c2e6-42f3-a6cc-753eb4f1aec8,AUTHORIZATION,,false -28393,14d5c1ac-c2e6-42f3-a6cc-753eb4f1aec8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28394,14d5c1ac-c2e6-42f3-a6cc-753eb4f1aec8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28395,14d5c1ac-c2e6-42f3-a6cc-753eb4f1aec8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28390,1e8f551b-9f3e-4b0d-a3f7-d6cd161b4059,LIST_ACCOUNTS,hbciListAccounts,false +28391,1e8f551b-9f3e-4b0d-a3f7-d6cd161b4059,LIST_TRANSACTIONS,hbciListTransactions,false +28392,1e8f551b-9f3e-4b0d-a3f7-d6cd161b4059,AUTHORIZATION,,false +28393,1e8f551b-9f3e-4b0d-a3f7-d6cd161b4059,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28394,1e8f551b-9f3e-4b0d-a3f7-d6cd161b4059,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28395,1e8f551b-9f3e-4b0d-a3f7-d6cd161b4059,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28396,0e562c7d-5d65-4b48-91ff-c036fea9d121,LIST_ACCOUNTS,xs2aListAccounts,true -28397,0e562c7d-5d65-4b48-91ff-c036fea9d121,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28397,0e562c7d-5d65-4b48-91ff-c036fea9d121,LIST_TRANSACTIONS,xs2aListTransactions,true 28398,0e562c7d-5d65-4b48-91ff-c036fea9d121,AUTHORIZATION,,true 28399,0e562c7d-5d65-4b48-91ff-c036fea9d121,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28400,0e562c7d-5d65-4b48-91ff-c036fea9d121,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28401,0e562c7d-5d65-4b48-91ff-c036fea9d121,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28402,18d99a61-cd18-42a9-8eab-3f63d410af4a,LIST_ACCOUNTS,hbciListAccounts,false -28403,18d99a61-cd18-42a9-8eab-3f63d410af4a,LIST_TRANSACTIONS,hbciListTransactions,false -28404,18d99a61-cd18-42a9-8eab-3f63d410af4a,AUTHORIZATION,,false -28405,18d99a61-cd18-42a9-8eab-3f63d410af4a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28406,18d99a61-cd18-42a9-8eab-3f63d410af4a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28407,18d99a61-cd18-42a9-8eab-3f63d410af4a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28402,40af6b2c-257c-48e3-835a-e895bb146d7a,LIST_ACCOUNTS,hbciListAccounts,false +28403,40af6b2c-257c-48e3-835a-e895bb146d7a,LIST_TRANSACTIONS,hbciListTransactions,false +28404,40af6b2c-257c-48e3-835a-e895bb146d7a,AUTHORIZATION,,false +28405,40af6b2c-257c-48e3-835a-e895bb146d7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28406,40af6b2c-257c-48e3-835a-e895bb146d7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28407,40af6b2c-257c-48e3-835a-e895bb146d7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28408,d9b83f46-6623-4846-b695-a1f2a8751df6,LIST_ACCOUNTS,xs2aListAccounts,true -28409,d9b83f46-6623-4846-b695-a1f2a8751df6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28409,d9b83f46-6623-4846-b695-a1f2a8751df6,LIST_TRANSACTIONS,xs2aListTransactions,true 28410,d9b83f46-6623-4846-b695-a1f2a8751df6,AUTHORIZATION,,true 28411,d9b83f46-6623-4846-b695-a1f2a8751df6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28412,d9b83f46-6623-4846-b695-a1f2a8751df6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28413,d9b83f46-6623-4846-b695-a1f2a8751df6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28414,a9547531-6424-40c1-bac1-3e477bb03b84,LIST_ACCOUNTS,hbciListAccounts,false -28415,a9547531-6424-40c1-bac1-3e477bb03b84,LIST_TRANSACTIONS,hbciListTransactions,false -28416,a9547531-6424-40c1-bac1-3e477bb03b84,AUTHORIZATION,,false -28417,a9547531-6424-40c1-bac1-3e477bb03b84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28418,a9547531-6424-40c1-bac1-3e477bb03b84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28419,a9547531-6424-40c1-bac1-3e477bb03b84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28414,89cf3127-d34f-4743-a8c4-ada1e62059a2,LIST_ACCOUNTS,hbciListAccounts,false +28415,89cf3127-d34f-4743-a8c4-ada1e62059a2,LIST_TRANSACTIONS,hbciListTransactions,false +28416,89cf3127-d34f-4743-a8c4-ada1e62059a2,AUTHORIZATION,,false +28417,89cf3127-d34f-4743-a8c4-ada1e62059a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28418,89cf3127-d34f-4743-a8c4-ada1e62059a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28419,89cf3127-d34f-4743-a8c4-ada1e62059a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28420,6afae3d2-1f03-4fd1-bfe9-d788e140f183,LIST_ACCOUNTS,xs2aListAccounts,true -28421,6afae3d2-1f03-4fd1-bfe9-d788e140f183,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28421,6afae3d2-1f03-4fd1-bfe9-d788e140f183,LIST_TRANSACTIONS,xs2aListTransactions,true 28422,6afae3d2-1f03-4fd1-bfe9-d788e140f183,AUTHORIZATION,,true 28423,6afae3d2-1f03-4fd1-bfe9-d788e140f183,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28424,6afae3d2-1f03-4fd1-bfe9-d788e140f183,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28425,6afae3d2-1f03-4fd1-bfe9-d788e140f183,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28426,2932fb66-c375-4213-886e-b8748a408642,LIST_ACCOUNTS,hbciListAccounts,false -28427,2932fb66-c375-4213-886e-b8748a408642,LIST_TRANSACTIONS,hbciListTransactions,false -28428,2932fb66-c375-4213-886e-b8748a408642,AUTHORIZATION,,false -28429,2932fb66-c375-4213-886e-b8748a408642,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28430,2932fb66-c375-4213-886e-b8748a408642,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28431,2932fb66-c375-4213-886e-b8748a408642,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28426,c2a87f52-c5f1-4b3d-bf0a-b350ff0825cf,LIST_ACCOUNTS,hbciListAccounts,false +28427,c2a87f52-c5f1-4b3d-bf0a-b350ff0825cf,LIST_TRANSACTIONS,hbciListTransactions,false +28428,c2a87f52-c5f1-4b3d-bf0a-b350ff0825cf,AUTHORIZATION,,false +28429,c2a87f52-c5f1-4b3d-bf0a-b350ff0825cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28430,c2a87f52-c5f1-4b3d-bf0a-b350ff0825cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28431,c2a87f52-c5f1-4b3d-bf0a-b350ff0825cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28432,124ad6e0-69d0-4d16-a080-8e85b73c3c67,LIST_ACCOUNTS,xs2aListAccounts,true -28433,124ad6e0-69d0-4d16-a080-8e85b73c3c67,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28433,124ad6e0-69d0-4d16-a080-8e85b73c3c67,LIST_TRANSACTIONS,xs2aListTransactions,true 28434,124ad6e0-69d0-4d16-a080-8e85b73c3c67,AUTHORIZATION,,true 28435,124ad6e0-69d0-4d16-a080-8e85b73c3c67,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28436,124ad6e0-69d0-4d16-a080-8e85b73c3c67,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28437,124ad6e0-69d0-4d16-a080-8e85b73c3c67,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28438,d934d99d-7015-4559-bc02-84cc0c9d1975,LIST_ACCOUNTS,hbciListAccounts,false -28439,d934d99d-7015-4559-bc02-84cc0c9d1975,LIST_TRANSACTIONS,hbciListTransactions,false -28440,d934d99d-7015-4559-bc02-84cc0c9d1975,AUTHORIZATION,,false -28441,d934d99d-7015-4559-bc02-84cc0c9d1975,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28442,d934d99d-7015-4559-bc02-84cc0c9d1975,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28443,d934d99d-7015-4559-bc02-84cc0c9d1975,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28438,df7d8428-d585-406a-981b-9d8ae2933425,LIST_ACCOUNTS,hbciListAccounts,false +28439,df7d8428-d585-406a-981b-9d8ae2933425,LIST_TRANSACTIONS,hbciListTransactions,false +28440,df7d8428-d585-406a-981b-9d8ae2933425,AUTHORIZATION,,false +28441,df7d8428-d585-406a-981b-9d8ae2933425,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28442,df7d8428-d585-406a-981b-9d8ae2933425,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28443,df7d8428-d585-406a-981b-9d8ae2933425,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28444,d8842d44-f002-4a93-8ccd-1c615da19581,LIST_ACCOUNTS,xs2aListAccounts,true -28445,d8842d44-f002-4a93-8ccd-1c615da19581,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28445,d8842d44-f002-4a93-8ccd-1c615da19581,LIST_TRANSACTIONS,xs2aListTransactions,true 28446,d8842d44-f002-4a93-8ccd-1c615da19581,AUTHORIZATION,,true 28447,d8842d44-f002-4a93-8ccd-1c615da19581,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28448,d8842d44-f002-4a93-8ccd-1c615da19581,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28449,d8842d44-f002-4a93-8ccd-1c615da19581,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28450,6c9ff744-f158-4f5e-87b7-418aad67160f,LIST_ACCOUNTS,hbciListAccounts,false -28451,6c9ff744-f158-4f5e-87b7-418aad67160f,LIST_TRANSACTIONS,hbciListTransactions,false -28452,6c9ff744-f158-4f5e-87b7-418aad67160f,AUTHORIZATION,,false -28453,6c9ff744-f158-4f5e-87b7-418aad67160f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28454,6c9ff744-f158-4f5e-87b7-418aad67160f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28455,6c9ff744-f158-4f5e-87b7-418aad67160f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28450,2f78e5b2-8a1c-4588-a03c-4785bf12b879,LIST_ACCOUNTS,hbciListAccounts,false +28451,2f78e5b2-8a1c-4588-a03c-4785bf12b879,LIST_TRANSACTIONS,hbciListTransactions,false +28452,2f78e5b2-8a1c-4588-a03c-4785bf12b879,AUTHORIZATION,,false +28453,2f78e5b2-8a1c-4588-a03c-4785bf12b879,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28454,2f78e5b2-8a1c-4588-a03c-4785bf12b879,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28455,2f78e5b2-8a1c-4588-a03c-4785bf12b879,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28456,625a2ec2-fc6f-4999-89b1-55ac3fec9ca1,LIST_ACCOUNTS,xs2aListAccounts,true -28457,625a2ec2-fc6f-4999-89b1-55ac3fec9ca1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28457,625a2ec2-fc6f-4999-89b1-55ac3fec9ca1,LIST_TRANSACTIONS,xs2aListTransactions,true 28458,625a2ec2-fc6f-4999-89b1-55ac3fec9ca1,AUTHORIZATION,,true 28459,625a2ec2-fc6f-4999-89b1-55ac3fec9ca1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28460,625a2ec2-fc6f-4999-89b1-55ac3fec9ca1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28461,625a2ec2-fc6f-4999-89b1-55ac3fec9ca1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28462,9fe8cba7-bd2c-44da-a65e-28782d3437f5,LIST_ACCOUNTS,hbciListAccounts,false -28463,9fe8cba7-bd2c-44da-a65e-28782d3437f5,LIST_TRANSACTIONS,hbciListTransactions,false -28464,9fe8cba7-bd2c-44da-a65e-28782d3437f5,AUTHORIZATION,,false -28465,9fe8cba7-bd2c-44da-a65e-28782d3437f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28466,9fe8cba7-bd2c-44da-a65e-28782d3437f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28467,9fe8cba7-bd2c-44da-a65e-28782d3437f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28462,3907ca0e-8d84-4199-9f68-8553b293e7a3,LIST_ACCOUNTS,hbciListAccounts,false +28463,3907ca0e-8d84-4199-9f68-8553b293e7a3,LIST_TRANSACTIONS,hbciListTransactions,false +28464,3907ca0e-8d84-4199-9f68-8553b293e7a3,AUTHORIZATION,,false +28465,3907ca0e-8d84-4199-9f68-8553b293e7a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28466,3907ca0e-8d84-4199-9f68-8553b293e7a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28467,3907ca0e-8d84-4199-9f68-8553b293e7a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28468,19a5cf44-8223-4536-bae1-0785e87c87ca,LIST_ACCOUNTS,xs2aListAccounts,true -28469,19a5cf44-8223-4536-bae1-0785e87c87ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28469,19a5cf44-8223-4536-bae1-0785e87c87ca,LIST_TRANSACTIONS,xs2aListTransactions,true 28470,19a5cf44-8223-4536-bae1-0785e87c87ca,AUTHORIZATION,,true 28471,19a5cf44-8223-4536-bae1-0785e87c87ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28472,19a5cf44-8223-4536-bae1-0785e87c87ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28473,19a5cf44-8223-4536-bae1-0785e87c87ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28474,1e3bcc35-57a9-409b-b5dd-1ac41bec38a5,LIST_ACCOUNTS,hbciListAccounts,false -28475,1e3bcc35-57a9-409b-b5dd-1ac41bec38a5,LIST_TRANSACTIONS,hbciListTransactions,false -28476,1e3bcc35-57a9-409b-b5dd-1ac41bec38a5,AUTHORIZATION,,false -28477,1e3bcc35-57a9-409b-b5dd-1ac41bec38a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28478,1e3bcc35-57a9-409b-b5dd-1ac41bec38a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28479,1e3bcc35-57a9-409b-b5dd-1ac41bec38a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28474,62d2db02-91b9-4625-afbd-926f484a77dc,LIST_ACCOUNTS,hbciListAccounts,false +28475,62d2db02-91b9-4625-afbd-926f484a77dc,LIST_TRANSACTIONS,hbciListTransactions,false +28476,62d2db02-91b9-4625-afbd-926f484a77dc,AUTHORIZATION,,false +28477,62d2db02-91b9-4625-afbd-926f484a77dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28478,62d2db02-91b9-4625-afbd-926f484a77dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28479,62d2db02-91b9-4625-afbd-926f484a77dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28480,dafbe054-4c7d-407b-81e3-d586befd8956,LIST_ACCOUNTS,xs2aListAccounts,true -28481,dafbe054-4c7d-407b-81e3-d586befd8956,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28481,dafbe054-4c7d-407b-81e3-d586befd8956,LIST_TRANSACTIONS,xs2aListTransactions,true 28482,dafbe054-4c7d-407b-81e3-d586befd8956,AUTHORIZATION,,true 28483,dafbe054-4c7d-407b-81e3-d586befd8956,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28484,dafbe054-4c7d-407b-81e3-d586befd8956,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28485,dafbe054-4c7d-407b-81e3-d586befd8956,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28486,c83c39dc-70a3-4d1c-bb50-f0eb6b0db321,LIST_ACCOUNTS,hbciListAccounts,false -28487,c83c39dc-70a3-4d1c-bb50-f0eb6b0db321,LIST_TRANSACTIONS,hbciListTransactions,false -28488,c83c39dc-70a3-4d1c-bb50-f0eb6b0db321,AUTHORIZATION,,false -28489,c83c39dc-70a3-4d1c-bb50-f0eb6b0db321,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28490,c83c39dc-70a3-4d1c-bb50-f0eb6b0db321,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28491,c83c39dc-70a3-4d1c-bb50-f0eb6b0db321,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28486,c11038d7-eaf7-4077-8e3a-4b6057228f69,LIST_ACCOUNTS,hbciListAccounts,false +28487,c11038d7-eaf7-4077-8e3a-4b6057228f69,LIST_TRANSACTIONS,hbciListTransactions,false +28488,c11038d7-eaf7-4077-8e3a-4b6057228f69,AUTHORIZATION,,false +28489,c11038d7-eaf7-4077-8e3a-4b6057228f69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28490,c11038d7-eaf7-4077-8e3a-4b6057228f69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28491,c11038d7-eaf7-4077-8e3a-4b6057228f69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28492,a86fa88c-b7a0-4407-84fa-373391efe2cf,LIST_ACCOUNTS,xs2aListAccounts,true -28493,a86fa88c-b7a0-4407-84fa-373391efe2cf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28493,a86fa88c-b7a0-4407-84fa-373391efe2cf,LIST_TRANSACTIONS,xs2aListTransactions,true 28494,a86fa88c-b7a0-4407-84fa-373391efe2cf,AUTHORIZATION,,true 28495,a86fa88c-b7a0-4407-84fa-373391efe2cf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28496,a86fa88c-b7a0-4407-84fa-373391efe2cf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28497,a86fa88c-b7a0-4407-84fa-373391efe2cf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28498,33ebc7e0-7a4f-4b42-ba5c-16bcece0fcb6,LIST_ACCOUNTS,hbciListAccounts,false -28499,33ebc7e0-7a4f-4b42-ba5c-16bcece0fcb6,LIST_TRANSACTIONS,hbciListTransactions,false -28500,33ebc7e0-7a4f-4b42-ba5c-16bcece0fcb6,AUTHORIZATION,,false -28501,33ebc7e0-7a4f-4b42-ba5c-16bcece0fcb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28502,33ebc7e0-7a4f-4b42-ba5c-16bcece0fcb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28503,33ebc7e0-7a4f-4b42-ba5c-16bcece0fcb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28498,95ed31ae-d15a-4f6f-a2f3-e724bb25b713,LIST_ACCOUNTS,hbciListAccounts,false +28499,95ed31ae-d15a-4f6f-a2f3-e724bb25b713,LIST_TRANSACTIONS,hbciListTransactions,false +28500,95ed31ae-d15a-4f6f-a2f3-e724bb25b713,AUTHORIZATION,,false +28501,95ed31ae-d15a-4f6f-a2f3-e724bb25b713,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28502,95ed31ae-d15a-4f6f-a2f3-e724bb25b713,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28503,95ed31ae-d15a-4f6f-a2f3-e724bb25b713,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28504,09a60cbb-3596-4ff4-b1c4-b63556de2f5d,LIST_ACCOUNTS,xs2aListAccounts,true -28505,09a60cbb-3596-4ff4-b1c4-b63556de2f5d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28505,09a60cbb-3596-4ff4-b1c4-b63556de2f5d,LIST_TRANSACTIONS,xs2aListTransactions,true 28506,09a60cbb-3596-4ff4-b1c4-b63556de2f5d,AUTHORIZATION,,true 28507,09a60cbb-3596-4ff4-b1c4-b63556de2f5d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28508,09a60cbb-3596-4ff4-b1c4-b63556de2f5d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28509,09a60cbb-3596-4ff4-b1c4-b63556de2f5d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28510,64458dbf-89f9-4b1b-862f-f8df1ea406ea,LIST_ACCOUNTS,hbciListAccounts,false -28511,64458dbf-89f9-4b1b-862f-f8df1ea406ea,LIST_TRANSACTIONS,hbciListTransactions,false -28512,64458dbf-89f9-4b1b-862f-f8df1ea406ea,AUTHORIZATION,,false -28513,64458dbf-89f9-4b1b-862f-f8df1ea406ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28514,64458dbf-89f9-4b1b-862f-f8df1ea406ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28515,64458dbf-89f9-4b1b-862f-f8df1ea406ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28510,cda45ea6-6f09-42bb-9fea-76f8e75afa98,LIST_ACCOUNTS,hbciListAccounts,false +28511,cda45ea6-6f09-42bb-9fea-76f8e75afa98,LIST_TRANSACTIONS,hbciListTransactions,false +28512,cda45ea6-6f09-42bb-9fea-76f8e75afa98,AUTHORIZATION,,false +28513,cda45ea6-6f09-42bb-9fea-76f8e75afa98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28514,cda45ea6-6f09-42bb-9fea-76f8e75afa98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28515,cda45ea6-6f09-42bb-9fea-76f8e75afa98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28516,42cf6a85-59de-4e03-9462-8a7113f6b3cd,LIST_ACCOUNTS,xs2aListAccounts,true -28517,42cf6a85-59de-4e03-9462-8a7113f6b3cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28517,42cf6a85-59de-4e03-9462-8a7113f6b3cd,LIST_TRANSACTIONS,xs2aListTransactions,true 28518,42cf6a85-59de-4e03-9462-8a7113f6b3cd,AUTHORIZATION,,true 28519,42cf6a85-59de-4e03-9462-8a7113f6b3cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28520,42cf6a85-59de-4e03-9462-8a7113f6b3cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28521,42cf6a85-59de-4e03-9462-8a7113f6b3cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28522,e10144f0-05b4-4547-96d8-094a503c04ae,LIST_ACCOUNTS,hbciListAccounts,false -28523,e10144f0-05b4-4547-96d8-094a503c04ae,LIST_TRANSACTIONS,hbciListTransactions,false -28524,e10144f0-05b4-4547-96d8-094a503c04ae,AUTHORIZATION,,false -28525,e10144f0-05b4-4547-96d8-094a503c04ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28526,e10144f0-05b4-4547-96d8-094a503c04ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28527,e10144f0-05b4-4547-96d8-094a503c04ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28522,ed677711-10c7-4e3d-933c-3eef7227022b,LIST_ACCOUNTS,hbciListAccounts,false +28523,ed677711-10c7-4e3d-933c-3eef7227022b,LIST_TRANSACTIONS,hbciListTransactions,false +28524,ed677711-10c7-4e3d-933c-3eef7227022b,AUTHORIZATION,,false +28525,ed677711-10c7-4e3d-933c-3eef7227022b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28526,ed677711-10c7-4e3d-933c-3eef7227022b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28527,ed677711-10c7-4e3d-933c-3eef7227022b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28528,12064919-d058-41ef-964c-ab554f6c391e,LIST_ACCOUNTS,xs2aListAccounts,true -28529,12064919-d058-41ef-964c-ab554f6c391e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28529,12064919-d058-41ef-964c-ab554f6c391e,LIST_TRANSACTIONS,xs2aListTransactions,true 28530,12064919-d058-41ef-964c-ab554f6c391e,AUTHORIZATION,,true 28531,12064919-d058-41ef-964c-ab554f6c391e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28532,12064919-d058-41ef-964c-ab554f6c391e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28533,12064919-d058-41ef-964c-ab554f6c391e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28534,649ea200-d236-4b66-95db-87601a02718f,LIST_ACCOUNTS,hbciListAccounts,false -28535,649ea200-d236-4b66-95db-87601a02718f,LIST_TRANSACTIONS,hbciListTransactions,false -28536,649ea200-d236-4b66-95db-87601a02718f,AUTHORIZATION,,false -28537,649ea200-d236-4b66-95db-87601a02718f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28538,649ea200-d236-4b66-95db-87601a02718f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28539,649ea200-d236-4b66-95db-87601a02718f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28534,8cc2d347-9058-4a6a-80ca-bfe9d1d4107c,LIST_ACCOUNTS,hbciListAccounts,false +28535,8cc2d347-9058-4a6a-80ca-bfe9d1d4107c,LIST_TRANSACTIONS,hbciListTransactions,false +28536,8cc2d347-9058-4a6a-80ca-bfe9d1d4107c,AUTHORIZATION,,false +28537,8cc2d347-9058-4a6a-80ca-bfe9d1d4107c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28538,8cc2d347-9058-4a6a-80ca-bfe9d1d4107c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28539,8cc2d347-9058-4a6a-80ca-bfe9d1d4107c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28540,c693ceee-7344-477d-ba67-0a82215426a5,LIST_ACCOUNTS,xs2aListAccounts,true -28541,c693ceee-7344-477d-ba67-0a82215426a5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28541,c693ceee-7344-477d-ba67-0a82215426a5,LIST_TRANSACTIONS,xs2aListTransactions,true 28542,c693ceee-7344-477d-ba67-0a82215426a5,AUTHORIZATION,,true 28543,c693ceee-7344-477d-ba67-0a82215426a5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28544,c693ceee-7344-477d-ba67-0a82215426a5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28545,c693ceee-7344-477d-ba67-0a82215426a5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28546,ed7a42d4-0c28-4723-b8fc-10ad8f03d958,LIST_ACCOUNTS,hbciListAccounts,false -28547,ed7a42d4-0c28-4723-b8fc-10ad8f03d958,LIST_TRANSACTIONS,hbciListTransactions,false -28548,ed7a42d4-0c28-4723-b8fc-10ad8f03d958,AUTHORIZATION,,false -28549,ed7a42d4-0c28-4723-b8fc-10ad8f03d958,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28550,ed7a42d4-0c28-4723-b8fc-10ad8f03d958,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28551,ed7a42d4-0c28-4723-b8fc-10ad8f03d958,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28546,1f5dac5c-484e-4f52-8b00-5fcb75274d11,LIST_ACCOUNTS,hbciListAccounts,false +28547,1f5dac5c-484e-4f52-8b00-5fcb75274d11,LIST_TRANSACTIONS,hbciListTransactions,false +28548,1f5dac5c-484e-4f52-8b00-5fcb75274d11,AUTHORIZATION,,false +28549,1f5dac5c-484e-4f52-8b00-5fcb75274d11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28550,1f5dac5c-484e-4f52-8b00-5fcb75274d11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28551,1f5dac5c-484e-4f52-8b00-5fcb75274d11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28552,cb45c244-ec3b-4775-9c8a-10773e36ebe3,LIST_ACCOUNTS,xs2aListAccounts,true -28553,cb45c244-ec3b-4775-9c8a-10773e36ebe3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28553,cb45c244-ec3b-4775-9c8a-10773e36ebe3,LIST_TRANSACTIONS,xs2aListTransactions,true 28554,cb45c244-ec3b-4775-9c8a-10773e36ebe3,AUTHORIZATION,,true 28555,cb45c244-ec3b-4775-9c8a-10773e36ebe3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28556,cb45c244-ec3b-4775-9c8a-10773e36ebe3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28557,cb45c244-ec3b-4775-9c8a-10773e36ebe3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28558,55f1c446-fcf6-4d78-a5c6-dd3fff6f8144,LIST_ACCOUNTS,hbciListAccounts,false -28559,55f1c446-fcf6-4d78-a5c6-dd3fff6f8144,LIST_TRANSACTIONS,hbciListTransactions,false -28560,55f1c446-fcf6-4d78-a5c6-dd3fff6f8144,AUTHORIZATION,,false -28561,55f1c446-fcf6-4d78-a5c6-dd3fff6f8144,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28562,55f1c446-fcf6-4d78-a5c6-dd3fff6f8144,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28563,55f1c446-fcf6-4d78-a5c6-dd3fff6f8144,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28558,45881b70-be63-4433-b0b5-453de00dd471,LIST_ACCOUNTS,hbciListAccounts,false +28559,45881b70-be63-4433-b0b5-453de00dd471,LIST_TRANSACTIONS,hbciListTransactions,false +28560,45881b70-be63-4433-b0b5-453de00dd471,AUTHORIZATION,,false +28561,45881b70-be63-4433-b0b5-453de00dd471,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28562,45881b70-be63-4433-b0b5-453de00dd471,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28563,45881b70-be63-4433-b0b5-453de00dd471,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28564,2178b343-dff2-4d2e-848a-454726c50880,LIST_ACCOUNTS,xs2aListAccounts,true -28565,2178b343-dff2-4d2e-848a-454726c50880,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28565,2178b343-dff2-4d2e-848a-454726c50880,LIST_TRANSACTIONS,xs2aListTransactions,true 28566,2178b343-dff2-4d2e-848a-454726c50880,AUTHORIZATION,,true 28567,2178b343-dff2-4d2e-848a-454726c50880,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28568,2178b343-dff2-4d2e-848a-454726c50880,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28569,2178b343-dff2-4d2e-848a-454726c50880,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28570,7f18f4d7-0f7f-4b4c-b1e3-bdb5836f3c9d,LIST_ACCOUNTS,hbciListAccounts,false -28571,7f18f4d7-0f7f-4b4c-b1e3-bdb5836f3c9d,LIST_TRANSACTIONS,hbciListTransactions,false -28572,7f18f4d7-0f7f-4b4c-b1e3-bdb5836f3c9d,AUTHORIZATION,,false -28573,7f18f4d7-0f7f-4b4c-b1e3-bdb5836f3c9d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28574,7f18f4d7-0f7f-4b4c-b1e3-bdb5836f3c9d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28575,7f18f4d7-0f7f-4b4c-b1e3-bdb5836f3c9d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28570,94e69a8b-7f30-47d2-ab68-2ee11d6cb1ad,LIST_ACCOUNTS,hbciListAccounts,false +28571,94e69a8b-7f30-47d2-ab68-2ee11d6cb1ad,LIST_TRANSACTIONS,hbciListTransactions,false +28572,94e69a8b-7f30-47d2-ab68-2ee11d6cb1ad,AUTHORIZATION,,false +28573,94e69a8b-7f30-47d2-ab68-2ee11d6cb1ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28574,94e69a8b-7f30-47d2-ab68-2ee11d6cb1ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28575,94e69a8b-7f30-47d2-ab68-2ee11d6cb1ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28576,5152f5c5-1608-441b-b427-a14f8c10f8c0,LIST_ACCOUNTS,xs2aListAccounts,true -28577,5152f5c5-1608-441b-b427-a14f8c10f8c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28577,5152f5c5-1608-441b-b427-a14f8c10f8c0,LIST_TRANSACTIONS,xs2aListTransactions,true 28578,5152f5c5-1608-441b-b427-a14f8c10f8c0,AUTHORIZATION,,true 28579,5152f5c5-1608-441b-b427-a14f8c10f8c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28580,5152f5c5-1608-441b-b427-a14f8c10f8c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28581,5152f5c5-1608-441b-b427-a14f8c10f8c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28582,3601c187-227d-4669-a03b-eb8dc4acba83,LIST_ACCOUNTS,hbciListAccounts,false -28583,3601c187-227d-4669-a03b-eb8dc4acba83,LIST_TRANSACTIONS,hbciListTransactions,false -28584,3601c187-227d-4669-a03b-eb8dc4acba83,AUTHORIZATION,,false -28585,3601c187-227d-4669-a03b-eb8dc4acba83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28586,3601c187-227d-4669-a03b-eb8dc4acba83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28587,3601c187-227d-4669-a03b-eb8dc4acba83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28582,15b600c4-c218-4dcc-a31c-db45c0d1d96e,LIST_ACCOUNTS,hbciListAccounts,false +28583,15b600c4-c218-4dcc-a31c-db45c0d1d96e,LIST_TRANSACTIONS,hbciListTransactions,false +28584,15b600c4-c218-4dcc-a31c-db45c0d1d96e,AUTHORIZATION,,false +28585,15b600c4-c218-4dcc-a31c-db45c0d1d96e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28586,15b600c4-c218-4dcc-a31c-db45c0d1d96e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28587,15b600c4-c218-4dcc-a31c-db45c0d1d96e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28588,bb298c88-5b5a-47f3-bb5e-ede18c5edf5e,LIST_ACCOUNTS,xs2aListAccounts,true -28589,bb298c88-5b5a-47f3-bb5e-ede18c5edf5e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28589,bb298c88-5b5a-47f3-bb5e-ede18c5edf5e,LIST_TRANSACTIONS,xs2aListTransactions,true 28590,bb298c88-5b5a-47f3-bb5e-ede18c5edf5e,AUTHORIZATION,,true 28591,bb298c88-5b5a-47f3-bb5e-ede18c5edf5e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28592,bb298c88-5b5a-47f3-bb5e-ede18c5edf5e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28593,bb298c88-5b5a-47f3-bb5e-ede18c5edf5e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28594,1165c62e-fc1f-407b-8109-3061ea6a5563,LIST_ACCOUNTS,hbciListAccounts,false -28595,1165c62e-fc1f-407b-8109-3061ea6a5563,LIST_TRANSACTIONS,hbciListTransactions,false -28596,1165c62e-fc1f-407b-8109-3061ea6a5563,AUTHORIZATION,,false -28597,1165c62e-fc1f-407b-8109-3061ea6a5563,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28598,1165c62e-fc1f-407b-8109-3061ea6a5563,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28599,1165c62e-fc1f-407b-8109-3061ea6a5563,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28594,18d16475-14da-4e34-b188-31aea43d47c1,LIST_ACCOUNTS,hbciListAccounts,false +28595,18d16475-14da-4e34-b188-31aea43d47c1,LIST_TRANSACTIONS,hbciListTransactions,false +28596,18d16475-14da-4e34-b188-31aea43d47c1,AUTHORIZATION,,false +28597,18d16475-14da-4e34-b188-31aea43d47c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28598,18d16475-14da-4e34-b188-31aea43d47c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28599,18d16475-14da-4e34-b188-31aea43d47c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28600,38334bda-2438-42f3-9407-c387e0d1713a,LIST_ACCOUNTS,xs2aListAccounts,true -28601,38334bda-2438-42f3-9407-c387e0d1713a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28601,38334bda-2438-42f3-9407-c387e0d1713a,LIST_TRANSACTIONS,xs2aListTransactions,true 28602,38334bda-2438-42f3-9407-c387e0d1713a,AUTHORIZATION,,true 28603,38334bda-2438-42f3-9407-c387e0d1713a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28604,38334bda-2438-42f3-9407-c387e0d1713a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28605,38334bda-2438-42f3-9407-c387e0d1713a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28606,a66ae902-96d7-48a8-bda3-e0a007be2357,LIST_ACCOUNTS,hbciListAccounts,false -28607,a66ae902-96d7-48a8-bda3-e0a007be2357,LIST_TRANSACTIONS,hbciListTransactions,false -28608,a66ae902-96d7-48a8-bda3-e0a007be2357,AUTHORIZATION,,false -28609,a66ae902-96d7-48a8-bda3-e0a007be2357,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28610,a66ae902-96d7-48a8-bda3-e0a007be2357,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28611,a66ae902-96d7-48a8-bda3-e0a007be2357,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28606,3c6b656a-b219-46ba-af17-fc16be2a2772,LIST_ACCOUNTS,hbciListAccounts,false +28607,3c6b656a-b219-46ba-af17-fc16be2a2772,LIST_TRANSACTIONS,hbciListTransactions,false +28608,3c6b656a-b219-46ba-af17-fc16be2a2772,AUTHORIZATION,,false +28609,3c6b656a-b219-46ba-af17-fc16be2a2772,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28610,3c6b656a-b219-46ba-af17-fc16be2a2772,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28611,3c6b656a-b219-46ba-af17-fc16be2a2772,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28612,1b4dc3ac-795e-42d3-8912-314c5511f3ea,LIST_ACCOUNTS,xs2aListAccounts,true -28613,1b4dc3ac-795e-42d3-8912-314c5511f3ea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28613,1b4dc3ac-795e-42d3-8912-314c5511f3ea,LIST_TRANSACTIONS,xs2aListTransactions,true 28614,1b4dc3ac-795e-42d3-8912-314c5511f3ea,AUTHORIZATION,,true 28615,1b4dc3ac-795e-42d3-8912-314c5511f3ea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28616,1b4dc3ac-795e-42d3-8912-314c5511f3ea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28617,1b4dc3ac-795e-42d3-8912-314c5511f3ea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28618,95c0c169-3e26-4da7-a5b4-c584d975677d,LIST_ACCOUNTS,hbciListAccounts,false -28619,95c0c169-3e26-4da7-a5b4-c584d975677d,LIST_TRANSACTIONS,hbciListTransactions,false -28620,95c0c169-3e26-4da7-a5b4-c584d975677d,AUTHORIZATION,,false -28621,95c0c169-3e26-4da7-a5b4-c584d975677d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28622,95c0c169-3e26-4da7-a5b4-c584d975677d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28623,95c0c169-3e26-4da7-a5b4-c584d975677d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28618,153af853-e594-454c-9beb-6ca952d979f5,LIST_ACCOUNTS,hbciListAccounts,false +28619,153af853-e594-454c-9beb-6ca952d979f5,LIST_TRANSACTIONS,hbciListTransactions,false +28620,153af853-e594-454c-9beb-6ca952d979f5,AUTHORIZATION,,false +28621,153af853-e594-454c-9beb-6ca952d979f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28622,153af853-e594-454c-9beb-6ca952d979f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28623,153af853-e594-454c-9beb-6ca952d979f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28624,94432d1d-7fa4-47c7-a5ba-90b0de8ba149,LIST_ACCOUNTS,xs2aListAccounts,true -28625,94432d1d-7fa4-47c7-a5ba-90b0de8ba149,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28625,94432d1d-7fa4-47c7-a5ba-90b0de8ba149,LIST_TRANSACTIONS,xs2aListTransactions,true 28626,94432d1d-7fa4-47c7-a5ba-90b0de8ba149,AUTHORIZATION,,true 28627,94432d1d-7fa4-47c7-a5ba-90b0de8ba149,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28628,94432d1d-7fa4-47c7-a5ba-90b0de8ba149,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28629,94432d1d-7fa4-47c7-a5ba-90b0de8ba149,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28630,055ccdb5-8636-4271-a9d7-cca645e628b7,LIST_ACCOUNTS,hbciListAccounts,false -28631,055ccdb5-8636-4271-a9d7-cca645e628b7,LIST_TRANSACTIONS,hbciListTransactions,false -28632,055ccdb5-8636-4271-a9d7-cca645e628b7,AUTHORIZATION,,false -28633,055ccdb5-8636-4271-a9d7-cca645e628b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28634,055ccdb5-8636-4271-a9d7-cca645e628b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28635,055ccdb5-8636-4271-a9d7-cca645e628b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28630,fd4191f0-e9ab-4c9b-8227-eab2d9cb2c42,LIST_ACCOUNTS,hbciListAccounts,false +28631,fd4191f0-e9ab-4c9b-8227-eab2d9cb2c42,LIST_TRANSACTIONS,hbciListTransactions,false +28632,fd4191f0-e9ab-4c9b-8227-eab2d9cb2c42,AUTHORIZATION,,false +28633,fd4191f0-e9ab-4c9b-8227-eab2d9cb2c42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28634,fd4191f0-e9ab-4c9b-8227-eab2d9cb2c42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28635,fd4191f0-e9ab-4c9b-8227-eab2d9cb2c42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28636,d6c52cc3-3b7f-4af0-bc09-141c75204cbb,LIST_ACCOUNTS,xs2aListAccounts,true -28637,d6c52cc3-3b7f-4af0-bc09-141c75204cbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28637,d6c52cc3-3b7f-4af0-bc09-141c75204cbb,LIST_TRANSACTIONS,xs2aListTransactions,true 28638,d6c52cc3-3b7f-4af0-bc09-141c75204cbb,AUTHORIZATION,,true 28639,d6c52cc3-3b7f-4af0-bc09-141c75204cbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28640,d6c52cc3-3b7f-4af0-bc09-141c75204cbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28641,d6c52cc3-3b7f-4af0-bc09-141c75204cbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28642,940751eb-4991-4972-9307-0c17ff9049ef,LIST_ACCOUNTS,hbciListAccounts,false -28643,940751eb-4991-4972-9307-0c17ff9049ef,LIST_TRANSACTIONS,hbciListTransactions,false -28644,940751eb-4991-4972-9307-0c17ff9049ef,AUTHORIZATION,,false -28645,940751eb-4991-4972-9307-0c17ff9049ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28646,940751eb-4991-4972-9307-0c17ff9049ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28647,940751eb-4991-4972-9307-0c17ff9049ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28642,a03c052c-0208-40f0-b5f2-25a1b2f75081,LIST_ACCOUNTS,hbciListAccounts,false +28643,a03c052c-0208-40f0-b5f2-25a1b2f75081,LIST_TRANSACTIONS,hbciListTransactions,false +28644,a03c052c-0208-40f0-b5f2-25a1b2f75081,AUTHORIZATION,,false +28645,a03c052c-0208-40f0-b5f2-25a1b2f75081,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28646,a03c052c-0208-40f0-b5f2-25a1b2f75081,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28647,a03c052c-0208-40f0-b5f2-25a1b2f75081,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28648,39445767-0fb1-4e0d-b580-4dc6729fdfe5,LIST_ACCOUNTS,xs2aListAccounts,true -28649,39445767-0fb1-4e0d-b580-4dc6729fdfe5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28649,39445767-0fb1-4e0d-b580-4dc6729fdfe5,LIST_TRANSACTIONS,xs2aListTransactions,true 28650,39445767-0fb1-4e0d-b580-4dc6729fdfe5,AUTHORIZATION,,true 28651,39445767-0fb1-4e0d-b580-4dc6729fdfe5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28652,39445767-0fb1-4e0d-b580-4dc6729fdfe5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28653,39445767-0fb1-4e0d-b580-4dc6729fdfe5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28654,3870ac81-ab01-47b1-b44c-27bb448b19ef,LIST_ACCOUNTS,hbciListAccounts,false -28655,3870ac81-ab01-47b1-b44c-27bb448b19ef,LIST_TRANSACTIONS,hbciListTransactions,false -28656,3870ac81-ab01-47b1-b44c-27bb448b19ef,AUTHORIZATION,,false -28657,3870ac81-ab01-47b1-b44c-27bb448b19ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28658,3870ac81-ab01-47b1-b44c-27bb448b19ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28659,3870ac81-ab01-47b1-b44c-27bb448b19ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28654,6a6758da-7d9c-4ff8-80c6-16ab76108fba,LIST_ACCOUNTS,hbciListAccounts,false +28655,6a6758da-7d9c-4ff8-80c6-16ab76108fba,LIST_TRANSACTIONS,hbciListTransactions,false +28656,6a6758da-7d9c-4ff8-80c6-16ab76108fba,AUTHORIZATION,,false +28657,6a6758da-7d9c-4ff8-80c6-16ab76108fba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28658,6a6758da-7d9c-4ff8-80c6-16ab76108fba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28659,6a6758da-7d9c-4ff8-80c6-16ab76108fba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28660,930b1754-b6cd-457e-a11d-5a891e4827c0,LIST_ACCOUNTS,xs2aListAccounts,true -28661,930b1754-b6cd-457e-a11d-5a891e4827c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28661,930b1754-b6cd-457e-a11d-5a891e4827c0,LIST_TRANSACTIONS,xs2aListTransactions,true 28662,930b1754-b6cd-457e-a11d-5a891e4827c0,AUTHORIZATION,,true 28663,930b1754-b6cd-457e-a11d-5a891e4827c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28664,930b1754-b6cd-457e-a11d-5a891e4827c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28665,930b1754-b6cd-457e-a11d-5a891e4827c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28666,6d85d24d-2d3b-46d7-9df4-ae0d8713bde6,LIST_ACCOUNTS,hbciListAccounts,false -28667,6d85d24d-2d3b-46d7-9df4-ae0d8713bde6,LIST_TRANSACTIONS,hbciListTransactions,false -28668,6d85d24d-2d3b-46d7-9df4-ae0d8713bde6,AUTHORIZATION,,false -28669,6d85d24d-2d3b-46d7-9df4-ae0d8713bde6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28670,6d85d24d-2d3b-46d7-9df4-ae0d8713bde6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28671,6d85d24d-2d3b-46d7-9df4-ae0d8713bde6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28666,93556e3b-77f9-4e63-a563-8a27d0024b5d,LIST_ACCOUNTS,hbciListAccounts,false +28667,93556e3b-77f9-4e63-a563-8a27d0024b5d,LIST_TRANSACTIONS,hbciListTransactions,false +28668,93556e3b-77f9-4e63-a563-8a27d0024b5d,AUTHORIZATION,,false +28669,93556e3b-77f9-4e63-a563-8a27d0024b5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28670,93556e3b-77f9-4e63-a563-8a27d0024b5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28671,93556e3b-77f9-4e63-a563-8a27d0024b5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28672,fb802219-8b3c-4de8-be56-47f048a6503f,LIST_ACCOUNTS,xs2aListAccounts,true -28673,fb802219-8b3c-4de8-be56-47f048a6503f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28673,fb802219-8b3c-4de8-be56-47f048a6503f,LIST_TRANSACTIONS,xs2aListTransactions,true 28674,fb802219-8b3c-4de8-be56-47f048a6503f,AUTHORIZATION,,true 28675,fb802219-8b3c-4de8-be56-47f048a6503f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28676,fb802219-8b3c-4de8-be56-47f048a6503f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28677,fb802219-8b3c-4de8-be56-47f048a6503f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28678,64cee712-c74c-4677-b6bd-73535401d2ad,LIST_ACCOUNTS,hbciListAccounts,false -28679,64cee712-c74c-4677-b6bd-73535401d2ad,LIST_TRANSACTIONS,hbciListTransactions,false -28680,64cee712-c74c-4677-b6bd-73535401d2ad,AUTHORIZATION,,false -28681,64cee712-c74c-4677-b6bd-73535401d2ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28682,64cee712-c74c-4677-b6bd-73535401d2ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28683,64cee712-c74c-4677-b6bd-73535401d2ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28678,c6e406b7-7df7-4924-8454-b0fa442fdc2d,LIST_ACCOUNTS,hbciListAccounts,false +28679,c6e406b7-7df7-4924-8454-b0fa442fdc2d,LIST_TRANSACTIONS,hbciListTransactions,false +28680,c6e406b7-7df7-4924-8454-b0fa442fdc2d,AUTHORIZATION,,false +28681,c6e406b7-7df7-4924-8454-b0fa442fdc2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28682,c6e406b7-7df7-4924-8454-b0fa442fdc2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28683,c6e406b7-7df7-4924-8454-b0fa442fdc2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28684,0083bce9-0eef-4473-a2d1-2795131cfbf6,LIST_ACCOUNTS,xs2aListAccounts,true -28685,0083bce9-0eef-4473-a2d1-2795131cfbf6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28685,0083bce9-0eef-4473-a2d1-2795131cfbf6,LIST_TRANSACTIONS,xs2aListTransactions,true 28686,0083bce9-0eef-4473-a2d1-2795131cfbf6,AUTHORIZATION,,true 28687,0083bce9-0eef-4473-a2d1-2795131cfbf6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28688,0083bce9-0eef-4473-a2d1-2795131cfbf6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28689,0083bce9-0eef-4473-a2d1-2795131cfbf6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28690,1d9c8f2b-cc70-43a1-843e-4327a28cf5c8,LIST_ACCOUNTS,hbciListAccounts,false -28691,1d9c8f2b-cc70-43a1-843e-4327a28cf5c8,LIST_TRANSACTIONS,hbciListTransactions,false -28692,1d9c8f2b-cc70-43a1-843e-4327a28cf5c8,AUTHORIZATION,,false -28693,1d9c8f2b-cc70-43a1-843e-4327a28cf5c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28694,1d9c8f2b-cc70-43a1-843e-4327a28cf5c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28695,1d9c8f2b-cc70-43a1-843e-4327a28cf5c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28690,46f0ea8e-3083-4c77-b5c7-c7c3b975c9a0,LIST_ACCOUNTS,hbciListAccounts,false +28691,46f0ea8e-3083-4c77-b5c7-c7c3b975c9a0,LIST_TRANSACTIONS,hbciListTransactions,false +28692,46f0ea8e-3083-4c77-b5c7-c7c3b975c9a0,AUTHORIZATION,,false +28693,46f0ea8e-3083-4c77-b5c7-c7c3b975c9a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28694,46f0ea8e-3083-4c77-b5c7-c7c3b975c9a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28695,46f0ea8e-3083-4c77-b5c7-c7c3b975c9a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28696,9a89e0d8-0b96-47ab-9b62-afd7bbb173fb,LIST_ACCOUNTS,xs2aListAccounts,true -28697,9a89e0d8-0b96-47ab-9b62-afd7bbb173fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28697,9a89e0d8-0b96-47ab-9b62-afd7bbb173fb,LIST_TRANSACTIONS,xs2aListTransactions,true 28698,9a89e0d8-0b96-47ab-9b62-afd7bbb173fb,AUTHORIZATION,,true 28699,9a89e0d8-0b96-47ab-9b62-afd7bbb173fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28700,9a89e0d8-0b96-47ab-9b62-afd7bbb173fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28701,9a89e0d8-0b96-47ab-9b62-afd7bbb173fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28702,36f03fc1-dd49-42ca-b311-0e8c1b5cfea3,LIST_ACCOUNTS,hbciListAccounts,false -28703,36f03fc1-dd49-42ca-b311-0e8c1b5cfea3,LIST_TRANSACTIONS,hbciListTransactions,false -28704,36f03fc1-dd49-42ca-b311-0e8c1b5cfea3,AUTHORIZATION,,false -28705,36f03fc1-dd49-42ca-b311-0e8c1b5cfea3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28706,36f03fc1-dd49-42ca-b311-0e8c1b5cfea3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28707,36f03fc1-dd49-42ca-b311-0e8c1b5cfea3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28702,1f963178-7408-40eb-a5a9-b87fa1a6fd20,LIST_ACCOUNTS,hbciListAccounts,false +28703,1f963178-7408-40eb-a5a9-b87fa1a6fd20,LIST_TRANSACTIONS,hbciListTransactions,false +28704,1f963178-7408-40eb-a5a9-b87fa1a6fd20,AUTHORIZATION,,false +28705,1f963178-7408-40eb-a5a9-b87fa1a6fd20,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28706,1f963178-7408-40eb-a5a9-b87fa1a6fd20,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28707,1f963178-7408-40eb-a5a9-b87fa1a6fd20,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28708,5864afcb-cef8-4b43-9124-a77aea23fa4b,LIST_ACCOUNTS,xs2aListAccounts,true -28709,5864afcb-cef8-4b43-9124-a77aea23fa4b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28709,5864afcb-cef8-4b43-9124-a77aea23fa4b,LIST_TRANSACTIONS,xs2aListTransactions,true 28710,5864afcb-cef8-4b43-9124-a77aea23fa4b,AUTHORIZATION,,true 28711,5864afcb-cef8-4b43-9124-a77aea23fa4b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28712,5864afcb-cef8-4b43-9124-a77aea23fa4b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28713,5864afcb-cef8-4b43-9124-a77aea23fa4b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28714,82877edd-07a0-4fd3-80ce-23398b156775,LIST_ACCOUNTS,hbciListAccounts,false -28715,82877edd-07a0-4fd3-80ce-23398b156775,LIST_TRANSACTIONS,hbciListTransactions,false -28716,82877edd-07a0-4fd3-80ce-23398b156775,AUTHORIZATION,,false -28717,82877edd-07a0-4fd3-80ce-23398b156775,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28718,82877edd-07a0-4fd3-80ce-23398b156775,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28719,82877edd-07a0-4fd3-80ce-23398b156775,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28714,5f85e243-58f4-4940-940b-feb229cc7321,LIST_ACCOUNTS,hbciListAccounts,false +28715,5f85e243-58f4-4940-940b-feb229cc7321,LIST_TRANSACTIONS,hbciListTransactions,false +28716,5f85e243-58f4-4940-940b-feb229cc7321,AUTHORIZATION,,false +28717,5f85e243-58f4-4940-940b-feb229cc7321,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28718,5f85e243-58f4-4940-940b-feb229cc7321,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28719,5f85e243-58f4-4940-940b-feb229cc7321,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28720,dcec8cad-0516-4ce1-b201-0519119d0168,LIST_ACCOUNTS,xs2aListAccounts,true -28721,dcec8cad-0516-4ce1-b201-0519119d0168,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28721,dcec8cad-0516-4ce1-b201-0519119d0168,LIST_TRANSACTIONS,xs2aListTransactions,true 28722,dcec8cad-0516-4ce1-b201-0519119d0168,AUTHORIZATION,,true 28723,dcec8cad-0516-4ce1-b201-0519119d0168,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28724,dcec8cad-0516-4ce1-b201-0519119d0168,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28725,dcec8cad-0516-4ce1-b201-0519119d0168,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28726,21e846cb-6b72-45a2-80e7-c329ac266f06,LIST_ACCOUNTS,hbciListAccounts,false -28727,21e846cb-6b72-45a2-80e7-c329ac266f06,LIST_TRANSACTIONS,hbciListTransactions,false -28728,21e846cb-6b72-45a2-80e7-c329ac266f06,AUTHORIZATION,,false -28729,21e846cb-6b72-45a2-80e7-c329ac266f06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28730,21e846cb-6b72-45a2-80e7-c329ac266f06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28731,21e846cb-6b72-45a2-80e7-c329ac266f06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28726,e2086a57-f5dd-47a1-bc80-6aa7306d3969,LIST_ACCOUNTS,hbciListAccounts,false +28727,e2086a57-f5dd-47a1-bc80-6aa7306d3969,LIST_TRANSACTIONS,hbciListTransactions,false +28728,e2086a57-f5dd-47a1-bc80-6aa7306d3969,AUTHORIZATION,,false +28729,e2086a57-f5dd-47a1-bc80-6aa7306d3969,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28730,e2086a57-f5dd-47a1-bc80-6aa7306d3969,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28731,e2086a57-f5dd-47a1-bc80-6aa7306d3969,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28732,8ba0e832-e2b7-4b72-b330-7985b40e9dcf,LIST_ACCOUNTS,xs2aListAccounts,true -28733,8ba0e832-e2b7-4b72-b330-7985b40e9dcf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28733,8ba0e832-e2b7-4b72-b330-7985b40e9dcf,LIST_TRANSACTIONS,xs2aListTransactions,true 28734,8ba0e832-e2b7-4b72-b330-7985b40e9dcf,AUTHORIZATION,,true 28735,8ba0e832-e2b7-4b72-b330-7985b40e9dcf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28736,8ba0e832-e2b7-4b72-b330-7985b40e9dcf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28737,8ba0e832-e2b7-4b72-b330-7985b40e9dcf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28738,885d7457-4f32-47a0-8b16-dc6098b0ed5c,LIST_ACCOUNTS,hbciListAccounts,false -28739,885d7457-4f32-47a0-8b16-dc6098b0ed5c,LIST_TRANSACTIONS,hbciListTransactions,false -28740,885d7457-4f32-47a0-8b16-dc6098b0ed5c,AUTHORIZATION,,false -28741,885d7457-4f32-47a0-8b16-dc6098b0ed5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28742,885d7457-4f32-47a0-8b16-dc6098b0ed5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28743,885d7457-4f32-47a0-8b16-dc6098b0ed5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28738,1bee0e89-0b77-4f85-adff-a350658c21f0,LIST_ACCOUNTS,hbciListAccounts,false +28739,1bee0e89-0b77-4f85-adff-a350658c21f0,LIST_TRANSACTIONS,hbciListTransactions,false +28740,1bee0e89-0b77-4f85-adff-a350658c21f0,AUTHORIZATION,,false +28741,1bee0e89-0b77-4f85-adff-a350658c21f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28742,1bee0e89-0b77-4f85-adff-a350658c21f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28743,1bee0e89-0b77-4f85-adff-a350658c21f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28744,07478ad8-8c67-4b77-b8f1-d9fb7c5c665e,LIST_ACCOUNTS,xs2aListAccounts,true -28745,07478ad8-8c67-4b77-b8f1-d9fb7c5c665e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28745,07478ad8-8c67-4b77-b8f1-d9fb7c5c665e,LIST_TRANSACTIONS,xs2aListTransactions,true 28746,07478ad8-8c67-4b77-b8f1-d9fb7c5c665e,AUTHORIZATION,,true 28747,07478ad8-8c67-4b77-b8f1-d9fb7c5c665e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28748,07478ad8-8c67-4b77-b8f1-d9fb7c5c665e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28749,07478ad8-8c67-4b77-b8f1-d9fb7c5c665e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28750,a77cbd5d-61f8-42bb-b5bf-74cffc2c3d06,LIST_ACCOUNTS,hbciListAccounts,false -28751,a77cbd5d-61f8-42bb-b5bf-74cffc2c3d06,LIST_TRANSACTIONS,hbciListTransactions,false -28752,a77cbd5d-61f8-42bb-b5bf-74cffc2c3d06,AUTHORIZATION,,false -28753,a77cbd5d-61f8-42bb-b5bf-74cffc2c3d06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28754,a77cbd5d-61f8-42bb-b5bf-74cffc2c3d06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28755,a77cbd5d-61f8-42bb-b5bf-74cffc2c3d06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28750,dcfa50ee-5bf8-4ea0-b910-4795905b9a63,LIST_ACCOUNTS,hbciListAccounts,false +28751,dcfa50ee-5bf8-4ea0-b910-4795905b9a63,LIST_TRANSACTIONS,hbciListTransactions,false +28752,dcfa50ee-5bf8-4ea0-b910-4795905b9a63,AUTHORIZATION,,false +28753,dcfa50ee-5bf8-4ea0-b910-4795905b9a63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28754,dcfa50ee-5bf8-4ea0-b910-4795905b9a63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28755,dcfa50ee-5bf8-4ea0-b910-4795905b9a63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28756,38b61269-86d4-44a3-90d5-d1697e9012fc,LIST_ACCOUNTS,xs2aListAccounts,true -28757,38b61269-86d4-44a3-90d5-d1697e9012fc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28757,38b61269-86d4-44a3-90d5-d1697e9012fc,LIST_TRANSACTIONS,xs2aListTransactions,true 28758,38b61269-86d4-44a3-90d5-d1697e9012fc,AUTHORIZATION,,true 28759,38b61269-86d4-44a3-90d5-d1697e9012fc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28760,38b61269-86d4-44a3-90d5-d1697e9012fc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28761,38b61269-86d4-44a3-90d5-d1697e9012fc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28762,5d70c936-49eb-43e4-9b44-376ef8087c25,LIST_ACCOUNTS,hbciListAccounts,false -28763,5d70c936-49eb-43e4-9b44-376ef8087c25,LIST_TRANSACTIONS,hbciListTransactions,false -28764,5d70c936-49eb-43e4-9b44-376ef8087c25,AUTHORIZATION,,false -28765,5d70c936-49eb-43e4-9b44-376ef8087c25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28766,5d70c936-49eb-43e4-9b44-376ef8087c25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28767,5d70c936-49eb-43e4-9b44-376ef8087c25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28762,ae279ede-ee7b-4671-89c6-58ac678a5900,LIST_ACCOUNTS,hbciListAccounts,false +28763,ae279ede-ee7b-4671-89c6-58ac678a5900,LIST_TRANSACTIONS,hbciListTransactions,false +28764,ae279ede-ee7b-4671-89c6-58ac678a5900,AUTHORIZATION,,false +28765,ae279ede-ee7b-4671-89c6-58ac678a5900,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28766,ae279ede-ee7b-4671-89c6-58ac678a5900,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28767,ae279ede-ee7b-4671-89c6-58ac678a5900,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28768,35cf297c-3c3e-4b4b-bfd7-6307e5f11604,LIST_ACCOUNTS,xs2aListAccounts,true -28769,35cf297c-3c3e-4b4b-bfd7-6307e5f11604,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28769,35cf297c-3c3e-4b4b-bfd7-6307e5f11604,LIST_TRANSACTIONS,xs2aListTransactions,true 28770,35cf297c-3c3e-4b4b-bfd7-6307e5f11604,AUTHORIZATION,,true 28771,35cf297c-3c3e-4b4b-bfd7-6307e5f11604,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28772,35cf297c-3c3e-4b4b-bfd7-6307e5f11604,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28773,35cf297c-3c3e-4b4b-bfd7-6307e5f11604,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28774,46033b21-2911-4572-96fd-b9ae902019b8,LIST_ACCOUNTS,hbciListAccounts,false -28775,46033b21-2911-4572-96fd-b9ae902019b8,LIST_TRANSACTIONS,hbciListTransactions,false -28776,46033b21-2911-4572-96fd-b9ae902019b8,AUTHORIZATION,,false -28777,46033b21-2911-4572-96fd-b9ae902019b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28778,46033b21-2911-4572-96fd-b9ae902019b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28779,46033b21-2911-4572-96fd-b9ae902019b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28774,e7640c43-171d-4a74-9eaa-5b42cae21adc,LIST_ACCOUNTS,hbciListAccounts,false +28775,e7640c43-171d-4a74-9eaa-5b42cae21adc,LIST_TRANSACTIONS,hbciListTransactions,false +28776,e7640c43-171d-4a74-9eaa-5b42cae21adc,AUTHORIZATION,,false +28777,e7640c43-171d-4a74-9eaa-5b42cae21adc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28778,e7640c43-171d-4a74-9eaa-5b42cae21adc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28779,e7640c43-171d-4a74-9eaa-5b42cae21adc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28780,813a473e-5abd-4a82-95f5-dbe0566fbd76,LIST_ACCOUNTS,xs2aListAccounts,true -28781,813a473e-5abd-4a82-95f5-dbe0566fbd76,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28781,813a473e-5abd-4a82-95f5-dbe0566fbd76,LIST_TRANSACTIONS,xs2aListTransactions,true 28782,813a473e-5abd-4a82-95f5-dbe0566fbd76,AUTHORIZATION,,true 28783,813a473e-5abd-4a82-95f5-dbe0566fbd76,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28784,813a473e-5abd-4a82-95f5-dbe0566fbd76,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28785,813a473e-5abd-4a82-95f5-dbe0566fbd76,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28786,18e90865-7f97-420e-9e4f-56e399c026e1,LIST_ACCOUNTS,hbciListAccounts,false -28787,18e90865-7f97-420e-9e4f-56e399c026e1,LIST_TRANSACTIONS,hbciListTransactions,false -28788,18e90865-7f97-420e-9e4f-56e399c026e1,AUTHORIZATION,,false -28789,18e90865-7f97-420e-9e4f-56e399c026e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28790,18e90865-7f97-420e-9e4f-56e399c026e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28791,18e90865-7f97-420e-9e4f-56e399c026e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28786,bcb2aff6-c971-4155-9a04-7a94eae9eb58,LIST_ACCOUNTS,hbciListAccounts,false +28787,bcb2aff6-c971-4155-9a04-7a94eae9eb58,LIST_TRANSACTIONS,hbciListTransactions,false +28788,bcb2aff6-c971-4155-9a04-7a94eae9eb58,AUTHORIZATION,,false +28789,bcb2aff6-c971-4155-9a04-7a94eae9eb58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28790,bcb2aff6-c971-4155-9a04-7a94eae9eb58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28791,bcb2aff6-c971-4155-9a04-7a94eae9eb58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28792,8a18f05a-76f6-4231-a790-f119489e18ec,LIST_ACCOUNTS,xs2aListAccounts,true -28793,8a18f05a-76f6-4231-a790-f119489e18ec,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28793,8a18f05a-76f6-4231-a790-f119489e18ec,LIST_TRANSACTIONS,xs2aListTransactions,true 28794,8a18f05a-76f6-4231-a790-f119489e18ec,AUTHORIZATION,,true 28795,8a18f05a-76f6-4231-a790-f119489e18ec,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28796,8a18f05a-76f6-4231-a790-f119489e18ec,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28797,8a18f05a-76f6-4231-a790-f119489e18ec,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28798,ee83f266-e94d-45e6-8033-e3fbdc8ace02,LIST_ACCOUNTS,hbciListAccounts,false -28799,ee83f266-e94d-45e6-8033-e3fbdc8ace02,LIST_TRANSACTIONS,hbciListTransactions,false -28800,ee83f266-e94d-45e6-8033-e3fbdc8ace02,AUTHORIZATION,,false -28801,ee83f266-e94d-45e6-8033-e3fbdc8ace02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28802,ee83f266-e94d-45e6-8033-e3fbdc8ace02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28803,ee83f266-e94d-45e6-8033-e3fbdc8ace02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28798,f6173470-8749-459f-9625-675120b742bb,LIST_ACCOUNTS,hbciListAccounts,false +28799,f6173470-8749-459f-9625-675120b742bb,LIST_TRANSACTIONS,hbciListTransactions,false +28800,f6173470-8749-459f-9625-675120b742bb,AUTHORIZATION,,false +28801,f6173470-8749-459f-9625-675120b742bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28802,f6173470-8749-459f-9625-675120b742bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28803,f6173470-8749-459f-9625-675120b742bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28804,0fd0f5ec-3814-4aca-b80e-fbdd05949a66,LIST_ACCOUNTS,xs2aListAccounts,true -28805,0fd0f5ec-3814-4aca-b80e-fbdd05949a66,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28805,0fd0f5ec-3814-4aca-b80e-fbdd05949a66,LIST_TRANSACTIONS,xs2aListTransactions,true 28806,0fd0f5ec-3814-4aca-b80e-fbdd05949a66,AUTHORIZATION,,true 28807,0fd0f5ec-3814-4aca-b80e-fbdd05949a66,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28808,0fd0f5ec-3814-4aca-b80e-fbdd05949a66,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28809,0fd0f5ec-3814-4aca-b80e-fbdd05949a66,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28810,d1d9d75a-7d69-4e1e-bb0d-2a5d557a2545,LIST_ACCOUNTS,hbciListAccounts,false -28811,d1d9d75a-7d69-4e1e-bb0d-2a5d557a2545,LIST_TRANSACTIONS,hbciListTransactions,false -28812,d1d9d75a-7d69-4e1e-bb0d-2a5d557a2545,AUTHORIZATION,,false -28813,d1d9d75a-7d69-4e1e-bb0d-2a5d557a2545,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28814,d1d9d75a-7d69-4e1e-bb0d-2a5d557a2545,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28815,d1d9d75a-7d69-4e1e-bb0d-2a5d557a2545,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28810,6f89c196-5884-4e01-80e2-0e1a9b6253b0,LIST_ACCOUNTS,hbciListAccounts,false +28811,6f89c196-5884-4e01-80e2-0e1a9b6253b0,LIST_TRANSACTIONS,hbciListTransactions,false +28812,6f89c196-5884-4e01-80e2-0e1a9b6253b0,AUTHORIZATION,,false +28813,6f89c196-5884-4e01-80e2-0e1a9b6253b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28814,6f89c196-5884-4e01-80e2-0e1a9b6253b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28815,6f89c196-5884-4e01-80e2-0e1a9b6253b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28816,5eec97de-55bc-4fc7-93a0-33eaaa676d14,LIST_ACCOUNTS,xs2aListAccounts,true -28817,5eec97de-55bc-4fc7-93a0-33eaaa676d14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28817,5eec97de-55bc-4fc7-93a0-33eaaa676d14,LIST_TRANSACTIONS,xs2aListTransactions,true 28818,5eec97de-55bc-4fc7-93a0-33eaaa676d14,AUTHORIZATION,,true 28819,5eec97de-55bc-4fc7-93a0-33eaaa676d14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28820,5eec97de-55bc-4fc7-93a0-33eaaa676d14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28821,5eec97de-55bc-4fc7-93a0-33eaaa676d14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28822,06eec325-2bc3-48aa-8090-d8d8afc14cc0,LIST_ACCOUNTS,hbciListAccounts,false -28823,06eec325-2bc3-48aa-8090-d8d8afc14cc0,LIST_TRANSACTIONS,hbciListTransactions,false -28824,06eec325-2bc3-48aa-8090-d8d8afc14cc0,AUTHORIZATION,,false -28825,06eec325-2bc3-48aa-8090-d8d8afc14cc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28826,06eec325-2bc3-48aa-8090-d8d8afc14cc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28827,06eec325-2bc3-48aa-8090-d8d8afc14cc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28822,7469b45f-acf4-42fb-9da6-dcf7855dbb3d,LIST_ACCOUNTS,hbciListAccounts,false +28823,7469b45f-acf4-42fb-9da6-dcf7855dbb3d,LIST_TRANSACTIONS,hbciListTransactions,false +28824,7469b45f-acf4-42fb-9da6-dcf7855dbb3d,AUTHORIZATION,,false +28825,7469b45f-acf4-42fb-9da6-dcf7855dbb3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28826,7469b45f-acf4-42fb-9da6-dcf7855dbb3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28827,7469b45f-acf4-42fb-9da6-dcf7855dbb3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28828,29bcb22e-ab0a-43c8-88d0-a4a187a0ac67,LIST_ACCOUNTS,xs2aListAccounts,true -28829,29bcb22e-ab0a-43c8-88d0-a4a187a0ac67,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28829,29bcb22e-ab0a-43c8-88d0-a4a187a0ac67,LIST_TRANSACTIONS,xs2aListTransactions,true 28830,29bcb22e-ab0a-43c8-88d0-a4a187a0ac67,AUTHORIZATION,,true 28831,29bcb22e-ab0a-43c8-88d0-a4a187a0ac67,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28832,29bcb22e-ab0a-43c8-88d0-a4a187a0ac67,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28833,29bcb22e-ab0a-43c8-88d0-a4a187a0ac67,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28834,fb30fb30-25cc-4258-a59b-377c1b157a9f,LIST_ACCOUNTS,hbciListAccounts,false -28835,fb30fb30-25cc-4258-a59b-377c1b157a9f,LIST_TRANSACTIONS,hbciListTransactions,false -28836,fb30fb30-25cc-4258-a59b-377c1b157a9f,AUTHORIZATION,,false -28837,fb30fb30-25cc-4258-a59b-377c1b157a9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28838,fb30fb30-25cc-4258-a59b-377c1b157a9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28839,fb30fb30-25cc-4258-a59b-377c1b157a9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28834,5eac11dd-acd9-4ed3-bea3-75e7faacd436,LIST_ACCOUNTS,hbciListAccounts,false +28835,5eac11dd-acd9-4ed3-bea3-75e7faacd436,LIST_TRANSACTIONS,hbciListTransactions,false +28836,5eac11dd-acd9-4ed3-bea3-75e7faacd436,AUTHORIZATION,,false +28837,5eac11dd-acd9-4ed3-bea3-75e7faacd436,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28838,5eac11dd-acd9-4ed3-bea3-75e7faacd436,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28839,5eac11dd-acd9-4ed3-bea3-75e7faacd436,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28840,424660f3-c082-4326-8fba-e29b14884b21,LIST_ACCOUNTS,xs2aListAccounts,true -28841,424660f3-c082-4326-8fba-e29b14884b21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28841,424660f3-c082-4326-8fba-e29b14884b21,LIST_TRANSACTIONS,xs2aListTransactions,true 28842,424660f3-c082-4326-8fba-e29b14884b21,AUTHORIZATION,,true 28843,424660f3-c082-4326-8fba-e29b14884b21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28844,424660f3-c082-4326-8fba-e29b14884b21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28845,424660f3-c082-4326-8fba-e29b14884b21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28846,c7690b49-8550-48bd-86a1-6d725f2f2e8d,LIST_ACCOUNTS,hbciListAccounts,false -28847,c7690b49-8550-48bd-86a1-6d725f2f2e8d,LIST_TRANSACTIONS,hbciListTransactions,false -28848,c7690b49-8550-48bd-86a1-6d725f2f2e8d,AUTHORIZATION,,false -28849,c7690b49-8550-48bd-86a1-6d725f2f2e8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28850,c7690b49-8550-48bd-86a1-6d725f2f2e8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28851,c7690b49-8550-48bd-86a1-6d725f2f2e8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28846,03e452d2-9cec-457f-8124-32edd73e331e,LIST_ACCOUNTS,hbciListAccounts,false +28847,03e452d2-9cec-457f-8124-32edd73e331e,LIST_TRANSACTIONS,hbciListTransactions,false +28848,03e452d2-9cec-457f-8124-32edd73e331e,AUTHORIZATION,,false +28849,03e452d2-9cec-457f-8124-32edd73e331e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28850,03e452d2-9cec-457f-8124-32edd73e331e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28851,03e452d2-9cec-457f-8124-32edd73e331e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28852,154abdd6-f455-4a8e-88a0-4316a7e808ac,LIST_ACCOUNTS,xs2aListAccounts,true -28853,154abdd6-f455-4a8e-88a0-4316a7e808ac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28853,154abdd6-f455-4a8e-88a0-4316a7e808ac,LIST_TRANSACTIONS,xs2aListTransactions,true 28854,154abdd6-f455-4a8e-88a0-4316a7e808ac,AUTHORIZATION,,true 28855,154abdd6-f455-4a8e-88a0-4316a7e808ac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28856,154abdd6-f455-4a8e-88a0-4316a7e808ac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28857,154abdd6-f455-4a8e-88a0-4316a7e808ac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28858,c6842148-83ee-44bd-8a08-8c3ba53c6423,LIST_ACCOUNTS,hbciListAccounts,false -28859,c6842148-83ee-44bd-8a08-8c3ba53c6423,LIST_TRANSACTIONS,hbciListTransactions,false -28860,c6842148-83ee-44bd-8a08-8c3ba53c6423,AUTHORIZATION,,false -28861,c6842148-83ee-44bd-8a08-8c3ba53c6423,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28862,c6842148-83ee-44bd-8a08-8c3ba53c6423,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28863,c6842148-83ee-44bd-8a08-8c3ba53c6423,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28858,f43680f2-f9d3-4983-a3ff-65748f7db949,LIST_ACCOUNTS,hbciListAccounts,false +28859,f43680f2-f9d3-4983-a3ff-65748f7db949,LIST_TRANSACTIONS,hbciListTransactions,false +28860,f43680f2-f9d3-4983-a3ff-65748f7db949,AUTHORIZATION,,false +28861,f43680f2-f9d3-4983-a3ff-65748f7db949,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28862,f43680f2-f9d3-4983-a3ff-65748f7db949,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28863,f43680f2-f9d3-4983-a3ff-65748f7db949,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28864,fe5311fc-9d87-4e66-971b-78b14c1a0652,LIST_ACCOUNTS,xs2aListAccounts,true -28865,fe5311fc-9d87-4e66-971b-78b14c1a0652,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28865,fe5311fc-9d87-4e66-971b-78b14c1a0652,LIST_TRANSACTIONS,xs2aListTransactions,true 28866,fe5311fc-9d87-4e66-971b-78b14c1a0652,AUTHORIZATION,,true 28867,fe5311fc-9d87-4e66-971b-78b14c1a0652,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28868,fe5311fc-9d87-4e66-971b-78b14c1a0652,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28869,fe5311fc-9d87-4e66-971b-78b14c1a0652,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28870,a3aa11aa-621b-4e27-bc90-3ed1249275be,LIST_ACCOUNTS,hbciListAccounts,false -28871,a3aa11aa-621b-4e27-bc90-3ed1249275be,LIST_TRANSACTIONS,hbciListTransactions,false -28872,a3aa11aa-621b-4e27-bc90-3ed1249275be,AUTHORIZATION,,false -28873,a3aa11aa-621b-4e27-bc90-3ed1249275be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28874,a3aa11aa-621b-4e27-bc90-3ed1249275be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28875,a3aa11aa-621b-4e27-bc90-3ed1249275be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28870,0db185d7-7ab4-4279-bc85-2a459a5388b5,LIST_ACCOUNTS,hbciListAccounts,false +28871,0db185d7-7ab4-4279-bc85-2a459a5388b5,LIST_TRANSACTIONS,hbciListTransactions,false +28872,0db185d7-7ab4-4279-bc85-2a459a5388b5,AUTHORIZATION,,false +28873,0db185d7-7ab4-4279-bc85-2a459a5388b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28874,0db185d7-7ab4-4279-bc85-2a459a5388b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28875,0db185d7-7ab4-4279-bc85-2a459a5388b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28876,9682401d-e424-4dbc-bacd-20da0b242194,LIST_ACCOUNTS,xs2aListAccounts,true -28877,9682401d-e424-4dbc-bacd-20da0b242194,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28877,9682401d-e424-4dbc-bacd-20da0b242194,LIST_TRANSACTIONS,xs2aListTransactions,true 28878,9682401d-e424-4dbc-bacd-20da0b242194,AUTHORIZATION,,true 28879,9682401d-e424-4dbc-bacd-20da0b242194,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28880,9682401d-e424-4dbc-bacd-20da0b242194,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28881,9682401d-e424-4dbc-bacd-20da0b242194,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28882,c496f491-9226-4668-80c3-4f79118d054b,LIST_ACCOUNTS,hbciListAccounts,false -28883,c496f491-9226-4668-80c3-4f79118d054b,LIST_TRANSACTIONS,hbciListTransactions,false -28884,c496f491-9226-4668-80c3-4f79118d054b,AUTHORIZATION,,false -28885,c496f491-9226-4668-80c3-4f79118d054b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28886,c496f491-9226-4668-80c3-4f79118d054b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28887,c496f491-9226-4668-80c3-4f79118d054b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28882,7c5f300f-113f-48dd-8e03-0bbf92d5ae9a,LIST_ACCOUNTS,hbciListAccounts,false +28883,7c5f300f-113f-48dd-8e03-0bbf92d5ae9a,LIST_TRANSACTIONS,hbciListTransactions,false +28884,7c5f300f-113f-48dd-8e03-0bbf92d5ae9a,AUTHORIZATION,,false +28885,7c5f300f-113f-48dd-8e03-0bbf92d5ae9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28886,7c5f300f-113f-48dd-8e03-0bbf92d5ae9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28887,7c5f300f-113f-48dd-8e03-0bbf92d5ae9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28888,a639ece2-246d-4c43-a71d-97078756399e,LIST_ACCOUNTS,xs2aListAccounts,true -28889,a639ece2-246d-4c43-a71d-97078756399e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28889,a639ece2-246d-4c43-a71d-97078756399e,LIST_TRANSACTIONS,xs2aListTransactions,true 28890,a639ece2-246d-4c43-a71d-97078756399e,AUTHORIZATION,,true 28891,a639ece2-246d-4c43-a71d-97078756399e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28892,a639ece2-246d-4c43-a71d-97078756399e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28893,a639ece2-246d-4c43-a71d-97078756399e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28894,e1d105cf-8f5d-43c1-9fa5-70524a9a50d7,LIST_ACCOUNTS,hbciListAccounts,false -28895,e1d105cf-8f5d-43c1-9fa5-70524a9a50d7,LIST_TRANSACTIONS,hbciListTransactions,false -28896,e1d105cf-8f5d-43c1-9fa5-70524a9a50d7,AUTHORIZATION,,false -28897,e1d105cf-8f5d-43c1-9fa5-70524a9a50d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28898,e1d105cf-8f5d-43c1-9fa5-70524a9a50d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28899,e1d105cf-8f5d-43c1-9fa5-70524a9a50d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28894,fff9af28-2957-4460-a3cb-c0a34b199846,LIST_ACCOUNTS,hbciListAccounts,false +28895,fff9af28-2957-4460-a3cb-c0a34b199846,LIST_TRANSACTIONS,hbciListTransactions,false +28896,fff9af28-2957-4460-a3cb-c0a34b199846,AUTHORIZATION,,false +28897,fff9af28-2957-4460-a3cb-c0a34b199846,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28898,fff9af28-2957-4460-a3cb-c0a34b199846,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28899,fff9af28-2957-4460-a3cb-c0a34b199846,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28900,6a8c24d8-7cbd-41ee-81c4-5cb8bcb32189,LIST_ACCOUNTS,xs2aListAccounts,true -28901,6a8c24d8-7cbd-41ee-81c4-5cb8bcb32189,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28901,6a8c24d8-7cbd-41ee-81c4-5cb8bcb32189,LIST_TRANSACTIONS,xs2aListTransactions,true 28902,6a8c24d8-7cbd-41ee-81c4-5cb8bcb32189,AUTHORIZATION,,true 28903,6a8c24d8-7cbd-41ee-81c4-5cb8bcb32189,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28904,6a8c24d8-7cbd-41ee-81c4-5cb8bcb32189,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28905,6a8c24d8-7cbd-41ee-81c4-5cb8bcb32189,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28906,4e0b1a73-fee9-4e3e-9ad6-f92a9d991c48,LIST_ACCOUNTS,hbciListAccounts,false -28907,4e0b1a73-fee9-4e3e-9ad6-f92a9d991c48,LIST_TRANSACTIONS,hbciListTransactions,false -28908,4e0b1a73-fee9-4e3e-9ad6-f92a9d991c48,AUTHORIZATION,,false -28909,4e0b1a73-fee9-4e3e-9ad6-f92a9d991c48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28910,4e0b1a73-fee9-4e3e-9ad6-f92a9d991c48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28911,4e0b1a73-fee9-4e3e-9ad6-f92a9d991c48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28906,89295c63-e2c4-43c8-ab11-6e3684bdeb5e,LIST_ACCOUNTS,hbciListAccounts,false +28907,89295c63-e2c4-43c8-ab11-6e3684bdeb5e,LIST_TRANSACTIONS,hbciListTransactions,false +28908,89295c63-e2c4-43c8-ab11-6e3684bdeb5e,AUTHORIZATION,,false +28909,89295c63-e2c4-43c8-ab11-6e3684bdeb5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28910,89295c63-e2c4-43c8-ab11-6e3684bdeb5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28911,89295c63-e2c4-43c8-ab11-6e3684bdeb5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28912,434124d2-86d8-4c4e-88dd-bf7c1f960e06,LIST_ACCOUNTS,xs2aListAccounts,true -28913,434124d2-86d8-4c4e-88dd-bf7c1f960e06,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28913,434124d2-86d8-4c4e-88dd-bf7c1f960e06,LIST_TRANSACTIONS,xs2aListTransactions,true 28914,434124d2-86d8-4c4e-88dd-bf7c1f960e06,AUTHORIZATION,,true 28915,434124d2-86d8-4c4e-88dd-bf7c1f960e06,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28916,434124d2-86d8-4c4e-88dd-bf7c1f960e06,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28917,434124d2-86d8-4c4e-88dd-bf7c1f960e06,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28918,f537e24e-de73-4de7-8d97-0839eb04dc6a,LIST_ACCOUNTS,hbciListAccounts,false -28919,f537e24e-de73-4de7-8d97-0839eb04dc6a,LIST_TRANSACTIONS,hbciListTransactions,false -28920,f537e24e-de73-4de7-8d97-0839eb04dc6a,AUTHORIZATION,,false -28921,f537e24e-de73-4de7-8d97-0839eb04dc6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28922,f537e24e-de73-4de7-8d97-0839eb04dc6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28923,f537e24e-de73-4de7-8d97-0839eb04dc6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28918,d2b4c0ef-c0da-4a6a-863e-8ebbc5cf5dd9,LIST_ACCOUNTS,hbciListAccounts,false +28919,d2b4c0ef-c0da-4a6a-863e-8ebbc5cf5dd9,LIST_TRANSACTIONS,hbciListTransactions,false +28920,d2b4c0ef-c0da-4a6a-863e-8ebbc5cf5dd9,AUTHORIZATION,,false +28921,d2b4c0ef-c0da-4a6a-863e-8ebbc5cf5dd9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28922,d2b4c0ef-c0da-4a6a-863e-8ebbc5cf5dd9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28923,d2b4c0ef-c0da-4a6a-863e-8ebbc5cf5dd9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28924,7c1da629-2ad4-4e68-9d6b-6bf1ce3b3c78,LIST_ACCOUNTS,xs2aListAccounts,true -28925,7c1da629-2ad4-4e68-9d6b-6bf1ce3b3c78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28925,7c1da629-2ad4-4e68-9d6b-6bf1ce3b3c78,LIST_TRANSACTIONS,xs2aListTransactions,true 28926,7c1da629-2ad4-4e68-9d6b-6bf1ce3b3c78,AUTHORIZATION,,true 28927,7c1da629-2ad4-4e68-9d6b-6bf1ce3b3c78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28928,7c1da629-2ad4-4e68-9d6b-6bf1ce3b3c78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28929,7c1da629-2ad4-4e68-9d6b-6bf1ce3b3c78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28930,c834845b-e557-49ff-b321-af5be26bc5b7,LIST_ACCOUNTS,hbciListAccounts,false -28931,c834845b-e557-49ff-b321-af5be26bc5b7,LIST_TRANSACTIONS,hbciListTransactions,false -28932,c834845b-e557-49ff-b321-af5be26bc5b7,AUTHORIZATION,,false -28933,c834845b-e557-49ff-b321-af5be26bc5b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28934,c834845b-e557-49ff-b321-af5be26bc5b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28935,c834845b-e557-49ff-b321-af5be26bc5b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28930,0ce76f0d-c208-4126-b41b-08eea067d2c6,LIST_ACCOUNTS,hbciListAccounts,false +28931,0ce76f0d-c208-4126-b41b-08eea067d2c6,LIST_TRANSACTIONS,hbciListTransactions,false +28932,0ce76f0d-c208-4126-b41b-08eea067d2c6,AUTHORIZATION,,false +28933,0ce76f0d-c208-4126-b41b-08eea067d2c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28934,0ce76f0d-c208-4126-b41b-08eea067d2c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28935,0ce76f0d-c208-4126-b41b-08eea067d2c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28936,4c47b3d2-43a4-4458-8dfe-cdab64d26cb4,LIST_ACCOUNTS,xs2aListAccounts,true -28937,4c47b3d2-43a4-4458-8dfe-cdab64d26cb4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28937,4c47b3d2-43a4-4458-8dfe-cdab64d26cb4,LIST_TRANSACTIONS,xs2aListTransactions,true 28938,4c47b3d2-43a4-4458-8dfe-cdab64d26cb4,AUTHORIZATION,,true 28939,4c47b3d2-43a4-4458-8dfe-cdab64d26cb4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28940,4c47b3d2-43a4-4458-8dfe-cdab64d26cb4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28941,4c47b3d2-43a4-4458-8dfe-cdab64d26cb4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28942,8ba81d46-683c-4145-ad1c-09ee4a423de5,LIST_ACCOUNTS,hbciListAccounts,false -28943,8ba81d46-683c-4145-ad1c-09ee4a423de5,LIST_TRANSACTIONS,hbciListTransactions,false -28944,8ba81d46-683c-4145-ad1c-09ee4a423de5,AUTHORIZATION,,false -28945,8ba81d46-683c-4145-ad1c-09ee4a423de5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28946,8ba81d46-683c-4145-ad1c-09ee4a423de5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28947,8ba81d46-683c-4145-ad1c-09ee4a423de5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28942,90e14a53-d696-41c2-8421-08a5528e5046,LIST_ACCOUNTS,hbciListAccounts,false +28943,90e14a53-d696-41c2-8421-08a5528e5046,LIST_TRANSACTIONS,hbciListTransactions,false +28944,90e14a53-d696-41c2-8421-08a5528e5046,AUTHORIZATION,,false +28945,90e14a53-d696-41c2-8421-08a5528e5046,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28946,90e14a53-d696-41c2-8421-08a5528e5046,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28947,90e14a53-d696-41c2-8421-08a5528e5046,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28948,910eef04-eaf2-4b1c-9c1a-b1250784f58f,LIST_ACCOUNTS,xs2aListAccounts,true -28949,910eef04-eaf2-4b1c-9c1a-b1250784f58f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28949,910eef04-eaf2-4b1c-9c1a-b1250784f58f,LIST_TRANSACTIONS,xs2aListTransactions,true 28950,910eef04-eaf2-4b1c-9c1a-b1250784f58f,AUTHORIZATION,,true 28951,910eef04-eaf2-4b1c-9c1a-b1250784f58f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28952,910eef04-eaf2-4b1c-9c1a-b1250784f58f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28953,910eef04-eaf2-4b1c-9c1a-b1250784f58f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28954,c3ff4763-7b1f-4db0-b5c4-16043cc3502f,LIST_ACCOUNTS,hbciListAccounts,false -28955,c3ff4763-7b1f-4db0-b5c4-16043cc3502f,LIST_TRANSACTIONS,hbciListTransactions,false -28956,c3ff4763-7b1f-4db0-b5c4-16043cc3502f,AUTHORIZATION,,false -28957,c3ff4763-7b1f-4db0-b5c4-16043cc3502f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28958,c3ff4763-7b1f-4db0-b5c4-16043cc3502f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28959,c3ff4763-7b1f-4db0-b5c4-16043cc3502f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28954,0608160f-3cd8-4fee-8bc6-ff627aee95d9,LIST_ACCOUNTS,hbciListAccounts,false +28955,0608160f-3cd8-4fee-8bc6-ff627aee95d9,LIST_TRANSACTIONS,hbciListTransactions,false +28956,0608160f-3cd8-4fee-8bc6-ff627aee95d9,AUTHORIZATION,,false +28957,0608160f-3cd8-4fee-8bc6-ff627aee95d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28958,0608160f-3cd8-4fee-8bc6-ff627aee95d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28959,0608160f-3cd8-4fee-8bc6-ff627aee95d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28960,611d8f81-1873-4e10-a7ee-a3f78859744c,LIST_ACCOUNTS,xs2aListAccounts,true -28961,611d8f81-1873-4e10-a7ee-a3f78859744c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28961,611d8f81-1873-4e10-a7ee-a3f78859744c,LIST_TRANSACTIONS,xs2aListTransactions,true 28962,611d8f81-1873-4e10-a7ee-a3f78859744c,AUTHORIZATION,,true 28963,611d8f81-1873-4e10-a7ee-a3f78859744c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28964,611d8f81-1873-4e10-a7ee-a3f78859744c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28965,611d8f81-1873-4e10-a7ee-a3f78859744c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28966,410b56b3-8cac-43f9-bb42-bcadf0ff4b4a,LIST_ACCOUNTS,hbciListAccounts,false -28967,410b56b3-8cac-43f9-bb42-bcadf0ff4b4a,LIST_TRANSACTIONS,hbciListTransactions,false -28968,410b56b3-8cac-43f9-bb42-bcadf0ff4b4a,AUTHORIZATION,,false -28969,410b56b3-8cac-43f9-bb42-bcadf0ff4b4a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28970,410b56b3-8cac-43f9-bb42-bcadf0ff4b4a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28971,410b56b3-8cac-43f9-bb42-bcadf0ff4b4a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28966,bfe4b8d2-f81c-4d8d-9d95-abcf9dd05707,LIST_ACCOUNTS,hbciListAccounts,false +28967,bfe4b8d2-f81c-4d8d-9d95-abcf9dd05707,LIST_TRANSACTIONS,hbciListTransactions,false +28968,bfe4b8d2-f81c-4d8d-9d95-abcf9dd05707,AUTHORIZATION,,false +28969,bfe4b8d2-f81c-4d8d-9d95-abcf9dd05707,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28970,bfe4b8d2-f81c-4d8d-9d95-abcf9dd05707,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28971,bfe4b8d2-f81c-4d8d-9d95-abcf9dd05707,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28972,ca36606f-7fda-45eb-a004-9fd244c4b0bd,LIST_ACCOUNTS,xs2aListAccounts,true -28973,ca36606f-7fda-45eb-a004-9fd244c4b0bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28973,ca36606f-7fda-45eb-a004-9fd244c4b0bd,LIST_TRANSACTIONS,xs2aListTransactions,true 28974,ca36606f-7fda-45eb-a004-9fd244c4b0bd,AUTHORIZATION,,true 28975,ca36606f-7fda-45eb-a004-9fd244c4b0bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28976,ca36606f-7fda-45eb-a004-9fd244c4b0bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28977,ca36606f-7fda-45eb-a004-9fd244c4b0bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28978,c6c4df48-1dbf-4a36-a84b-ed04cd427b83,LIST_ACCOUNTS,hbciListAccounts,false -28979,c6c4df48-1dbf-4a36-a84b-ed04cd427b83,LIST_TRANSACTIONS,hbciListTransactions,false -28980,c6c4df48-1dbf-4a36-a84b-ed04cd427b83,AUTHORIZATION,,false -28981,c6c4df48-1dbf-4a36-a84b-ed04cd427b83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28982,c6c4df48-1dbf-4a36-a84b-ed04cd427b83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28983,c6c4df48-1dbf-4a36-a84b-ed04cd427b83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28978,ee21a3f9-2952-46ff-ac48-f513aefb3484,LIST_ACCOUNTS,hbciListAccounts,false +28979,ee21a3f9-2952-46ff-ac48-f513aefb3484,LIST_TRANSACTIONS,hbciListTransactions,false +28980,ee21a3f9-2952-46ff-ac48-f513aefb3484,AUTHORIZATION,,false +28981,ee21a3f9-2952-46ff-ac48-f513aefb3484,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28982,ee21a3f9-2952-46ff-ac48-f513aefb3484,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28983,ee21a3f9-2952-46ff-ac48-f513aefb3484,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28984,a46c3f3d-adbb-4d1c-8ff8-a34be07479cc,LIST_ACCOUNTS,xs2aListAccounts,true -28985,a46c3f3d-adbb-4d1c-8ff8-a34be07479cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28985,a46c3f3d-adbb-4d1c-8ff8-a34be07479cc,LIST_TRANSACTIONS,xs2aListTransactions,true 28986,a46c3f3d-adbb-4d1c-8ff8-a34be07479cc,AUTHORIZATION,,true 28987,a46c3f3d-adbb-4d1c-8ff8-a34be07479cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 28988,a46c3f3d-adbb-4d1c-8ff8-a34be07479cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 28989,a46c3f3d-adbb-4d1c-8ff8-a34be07479cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -28990,7a52d7d0-d977-4a1b-b3ac-c668a6a0aaa1,LIST_ACCOUNTS,hbciListAccounts,false -28991,7a52d7d0-d977-4a1b-b3ac-c668a6a0aaa1,LIST_TRANSACTIONS,hbciListTransactions,false -28992,7a52d7d0-d977-4a1b-b3ac-c668a6a0aaa1,AUTHORIZATION,,false -28993,7a52d7d0-d977-4a1b-b3ac-c668a6a0aaa1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -28994,7a52d7d0-d977-4a1b-b3ac-c668a6a0aaa1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -28995,7a52d7d0-d977-4a1b-b3ac-c668a6a0aaa1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +28990,90b3081c-2772-4cbc-a813-a2ecd00668e8,LIST_ACCOUNTS,hbciListAccounts,false +28991,90b3081c-2772-4cbc-a813-a2ecd00668e8,LIST_TRANSACTIONS,hbciListTransactions,false +28992,90b3081c-2772-4cbc-a813-a2ecd00668e8,AUTHORIZATION,,false +28993,90b3081c-2772-4cbc-a813-a2ecd00668e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +28994,90b3081c-2772-4cbc-a813-a2ecd00668e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +28995,90b3081c-2772-4cbc-a813-a2ecd00668e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 28996,dab20862-89b0-40ac-98d4-c9e18e6ea7d4,LIST_ACCOUNTS,xs2aListAccounts,true -28997,dab20862-89b0-40ac-98d4-c9e18e6ea7d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +28997,dab20862-89b0-40ac-98d4-c9e18e6ea7d4,LIST_TRANSACTIONS,xs2aListTransactions,true 28998,dab20862-89b0-40ac-98d4-c9e18e6ea7d4,AUTHORIZATION,,true 28999,dab20862-89b0-40ac-98d4-c9e18e6ea7d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29000,dab20862-89b0-40ac-98d4-c9e18e6ea7d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29001,dab20862-89b0-40ac-98d4-c9e18e6ea7d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29002,28caa592-1633-4ce9-9456-7f5021821605,LIST_ACCOUNTS,hbciListAccounts,false -29003,28caa592-1633-4ce9-9456-7f5021821605,LIST_TRANSACTIONS,hbciListTransactions,false -29004,28caa592-1633-4ce9-9456-7f5021821605,AUTHORIZATION,,false -29005,28caa592-1633-4ce9-9456-7f5021821605,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29006,28caa592-1633-4ce9-9456-7f5021821605,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29007,28caa592-1633-4ce9-9456-7f5021821605,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29002,1a3a63f8-b42d-4dd5-a3b7-ddcbca1c0523,LIST_ACCOUNTS,hbciListAccounts,false +29003,1a3a63f8-b42d-4dd5-a3b7-ddcbca1c0523,LIST_TRANSACTIONS,hbciListTransactions,false +29004,1a3a63f8-b42d-4dd5-a3b7-ddcbca1c0523,AUTHORIZATION,,false +29005,1a3a63f8-b42d-4dd5-a3b7-ddcbca1c0523,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29006,1a3a63f8-b42d-4dd5-a3b7-ddcbca1c0523,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29007,1a3a63f8-b42d-4dd5-a3b7-ddcbca1c0523,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29008,10bd8d96-dc55-4a66-9289-4c51ef94aa13,LIST_ACCOUNTS,xs2aListAccounts,true -29009,10bd8d96-dc55-4a66-9289-4c51ef94aa13,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29009,10bd8d96-dc55-4a66-9289-4c51ef94aa13,LIST_TRANSACTIONS,xs2aListTransactions,true 29010,10bd8d96-dc55-4a66-9289-4c51ef94aa13,AUTHORIZATION,,true 29011,10bd8d96-dc55-4a66-9289-4c51ef94aa13,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29012,10bd8d96-dc55-4a66-9289-4c51ef94aa13,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29013,10bd8d96-dc55-4a66-9289-4c51ef94aa13,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29014,d239eea6-9ad1-468a-a757-a74ba7a57db2,LIST_ACCOUNTS,hbciListAccounts,false -29015,d239eea6-9ad1-468a-a757-a74ba7a57db2,LIST_TRANSACTIONS,hbciListTransactions,false -29016,d239eea6-9ad1-468a-a757-a74ba7a57db2,AUTHORIZATION,,false -29017,d239eea6-9ad1-468a-a757-a74ba7a57db2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29018,d239eea6-9ad1-468a-a757-a74ba7a57db2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29019,d239eea6-9ad1-468a-a757-a74ba7a57db2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29014,e50709fc-2c30-4e0c-ba03-2167d50f78a6,LIST_ACCOUNTS,hbciListAccounts,false +29015,e50709fc-2c30-4e0c-ba03-2167d50f78a6,LIST_TRANSACTIONS,hbciListTransactions,false +29016,e50709fc-2c30-4e0c-ba03-2167d50f78a6,AUTHORIZATION,,false +29017,e50709fc-2c30-4e0c-ba03-2167d50f78a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29018,e50709fc-2c30-4e0c-ba03-2167d50f78a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29019,e50709fc-2c30-4e0c-ba03-2167d50f78a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29020,01aa84f2-25c0-4e02-8065-c401657e3fb0,LIST_ACCOUNTS,xs2aListAccounts,true -29021,01aa84f2-25c0-4e02-8065-c401657e3fb0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29021,01aa84f2-25c0-4e02-8065-c401657e3fb0,LIST_TRANSACTIONS,xs2aListTransactions,true 29022,01aa84f2-25c0-4e02-8065-c401657e3fb0,AUTHORIZATION,,true 29023,01aa84f2-25c0-4e02-8065-c401657e3fb0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29024,01aa84f2-25c0-4e02-8065-c401657e3fb0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29025,01aa84f2-25c0-4e02-8065-c401657e3fb0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29026,bb3ae76d-af4e-42b0-b78f-8227c7d11a9b,LIST_ACCOUNTS,hbciListAccounts,false -29027,bb3ae76d-af4e-42b0-b78f-8227c7d11a9b,LIST_TRANSACTIONS,hbciListTransactions,false -29028,bb3ae76d-af4e-42b0-b78f-8227c7d11a9b,AUTHORIZATION,,false -29029,bb3ae76d-af4e-42b0-b78f-8227c7d11a9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29030,bb3ae76d-af4e-42b0-b78f-8227c7d11a9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29031,bb3ae76d-af4e-42b0-b78f-8227c7d11a9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29026,a64ce92a-ed4e-44c5-a253-9da438bad31a,LIST_ACCOUNTS,hbciListAccounts,false +29027,a64ce92a-ed4e-44c5-a253-9da438bad31a,LIST_TRANSACTIONS,hbciListTransactions,false +29028,a64ce92a-ed4e-44c5-a253-9da438bad31a,AUTHORIZATION,,false +29029,a64ce92a-ed4e-44c5-a253-9da438bad31a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29030,a64ce92a-ed4e-44c5-a253-9da438bad31a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29031,a64ce92a-ed4e-44c5-a253-9da438bad31a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29032,5cb9c857-f8b2-4582-80c9-8754ce406362,LIST_ACCOUNTS,xs2aListAccounts,true -29033,5cb9c857-f8b2-4582-80c9-8754ce406362,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29033,5cb9c857-f8b2-4582-80c9-8754ce406362,LIST_TRANSACTIONS,xs2aListTransactions,true 29034,5cb9c857-f8b2-4582-80c9-8754ce406362,AUTHORIZATION,,true 29035,5cb9c857-f8b2-4582-80c9-8754ce406362,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29036,5cb9c857-f8b2-4582-80c9-8754ce406362,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29037,5cb9c857-f8b2-4582-80c9-8754ce406362,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29038,8b9fd84a-3234-4381-ab67-a4400720e41e,LIST_ACCOUNTS,hbciListAccounts,false -29039,8b9fd84a-3234-4381-ab67-a4400720e41e,LIST_TRANSACTIONS,hbciListTransactions,false -29040,8b9fd84a-3234-4381-ab67-a4400720e41e,AUTHORIZATION,,false -29041,8b9fd84a-3234-4381-ab67-a4400720e41e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29042,8b9fd84a-3234-4381-ab67-a4400720e41e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29043,8b9fd84a-3234-4381-ab67-a4400720e41e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29038,55dc469a-eab7-4e1b-86e8-452089dedbe7,LIST_ACCOUNTS,hbciListAccounts,false +29039,55dc469a-eab7-4e1b-86e8-452089dedbe7,LIST_TRANSACTIONS,hbciListTransactions,false +29040,55dc469a-eab7-4e1b-86e8-452089dedbe7,AUTHORIZATION,,false +29041,55dc469a-eab7-4e1b-86e8-452089dedbe7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29042,55dc469a-eab7-4e1b-86e8-452089dedbe7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29043,55dc469a-eab7-4e1b-86e8-452089dedbe7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29044,8744bd23-ae70-4e0e-a4a9-3eeafcbe882e,LIST_ACCOUNTS,xs2aListAccounts,true -29045,8744bd23-ae70-4e0e-a4a9-3eeafcbe882e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29045,8744bd23-ae70-4e0e-a4a9-3eeafcbe882e,LIST_TRANSACTIONS,xs2aListTransactions,true 29046,8744bd23-ae70-4e0e-a4a9-3eeafcbe882e,AUTHORIZATION,,true 29047,8744bd23-ae70-4e0e-a4a9-3eeafcbe882e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29048,8744bd23-ae70-4e0e-a4a9-3eeafcbe882e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29049,8744bd23-ae70-4e0e-a4a9-3eeafcbe882e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29050,f08e4203-9414-46e2-a82c-b518de023b2e,LIST_ACCOUNTS,hbciListAccounts,false -29051,f08e4203-9414-46e2-a82c-b518de023b2e,LIST_TRANSACTIONS,hbciListTransactions,false -29052,f08e4203-9414-46e2-a82c-b518de023b2e,AUTHORIZATION,,false -29053,f08e4203-9414-46e2-a82c-b518de023b2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29054,f08e4203-9414-46e2-a82c-b518de023b2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29055,f08e4203-9414-46e2-a82c-b518de023b2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29050,100663f5-790d-4356-b1e8-a39f89498894,LIST_ACCOUNTS,hbciListAccounts,false +29051,100663f5-790d-4356-b1e8-a39f89498894,LIST_TRANSACTIONS,hbciListTransactions,false +29052,100663f5-790d-4356-b1e8-a39f89498894,AUTHORIZATION,,false +29053,100663f5-790d-4356-b1e8-a39f89498894,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29054,100663f5-790d-4356-b1e8-a39f89498894,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29055,100663f5-790d-4356-b1e8-a39f89498894,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29056,a6eb215e-0531-4dea-81c8-a67e004b9ccf,LIST_ACCOUNTS,xs2aListAccounts,true -29057,a6eb215e-0531-4dea-81c8-a67e004b9ccf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29057,a6eb215e-0531-4dea-81c8-a67e004b9ccf,LIST_TRANSACTIONS,xs2aListTransactions,true 29058,a6eb215e-0531-4dea-81c8-a67e004b9ccf,AUTHORIZATION,,true 29059,a6eb215e-0531-4dea-81c8-a67e004b9ccf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29060,a6eb215e-0531-4dea-81c8-a67e004b9ccf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29061,a6eb215e-0531-4dea-81c8-a67e004b9ccf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29062,c526d4a6-2d4d-4e11-ad23-8d8f1cac3582,LIST_ACCOUNTS,hbciListAccounts,false -29063,c526d4a6-2d4d-4e11-ad23-8d8f1cac3582,LIST_TRANSACTIONS,hbciListTransactions,false -29064,c526d4a6-2d4d-4e11-ad23-8d8f1cac3582,AUTHORIZATION,,false -29065,c526d4a6-2d4d-4e11-ad23-8d8f1cac3582,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29066,c526d4a6-2d4d-4e11-ad23-8d8f1cac3582,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29067,c526d4a6-2d4d-4e11-ad23-8d8f1cac3582,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29062,65a03b43-5906-4095-806c-d375d079104a,LIST_ACCOUNTS,hbciListAccounts,false +29063,65a03b43-5906-4095-806c-d375d079104a,LIST_TRANSACTIONS,hbciListTransactions,false +29064,65a03b43-5906-4095-806c-d375d079104a,AUTHORIZATION,,false +29065,65a03b43-5906-4095-806c-d375d079104a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29066,65a03b43-5906-4095-806c-d375d079104a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29067,65a03b43-5906-4095-806c-d375d079104a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29068,c2bbc32a-2111-4987-b504-d357dcd92a87,LIST_ACCOUNTS,xs2aListAccounts,true -29069,c2bbc32a-2111-4987-b504-d357dcd92a87,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29069,c2bbc32a-2111-4987-b504-d357dcd92a87,LIST_TRANSACTIONS,xs2aListTransactions,true 29070,c2bbc32a-2111-4987-b504-d357dcd92a87,AUTHORIZATION,,true 29071,c2bbc32a-2111-4987-b504-d357dcd92a87,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29072,c2bbc32a-2111-4987-b504-d357dcd92a87,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29073,c2bbc32a-2111-4987-b504-d357dcd92a87,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29074,14a230e1-01c7-4483-a07c-79d26d2720b0,LIST_ACCOUNTS,hbciListAccounts,false -29075,14a230e1-01c7-4483-a07c-79d26d2720b0,LIST_TRANSACTIONS,hbciListTransactions,false -29076,14a230e1-01c7-4483-a07c-79d26d2720b0,AUTHORIZATION,,false -29077,14a230e1-01c7-4483-a07c-79d26d2720b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29078,14a230e1-01c7-4483-a07c-79d26d2720b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29079,14a230e1-01c7-4483-a07c-79d26d2720b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29074,cebe438a-24b6-4d7a-818c-f939545d7d2f,LIST_ACCOUNTS,hbciListAccounts,false +29075,cebe438a-24b6-4d7a-818c-f939545d7d2f,LIST_TRANSACTIONS,hbciListTransactions,false +29076,cebe438a-24b6-4d7a-818c-f939545d7d2f,AUTHORIZATION,,false +29077,cebe438a-24b6-4d7a-818c-f939545d7d2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29078,cebe438a-24b6-4d7a-818c-f939545d7d2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29079,cebe438a-24b6-4d7a-818c-f939545d7d2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29080,dc3464cb-836f-46cd-b8ec-80eab472e886,LIST_ACCOUNTS,xs2aListAccounts,true -29081,dc3464cb-836f-46cd-b8ec-80eab472e886,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29081,dc3464cb-836f-46cd-b8ec-80eab472e886,LIST_TRANSACTIONS,xs2aListTransactions,true 29082,dc3464cb-836f-46cd-b8ec-80eab472e886,AUTHORIZATION,,true 29083,dc3464cb-836f-46cd-b8ec-80eab472e886,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29084,dc3464cb-836f-46cd-b8ec-80eab472e886,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29085,dc3464cb-836f-46cd-b8ec-80eab472e886,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29086,544aff56-3c8b-4b68-a138-843dd06b819d,LIST_ACCOUNTS,hbciListAccounts,false -29087,544aff56-3c8b-4b68-a138-843dd06b819d,LIST_TRANSACTIONS,hbciListTransactions,false -29088,544aff56-3c8b-4b68-a138-843dd06b819d,AUTHORIZATION,,false -29089,544aff56-3c8b-4b68-a138-843dd06b819d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29090,544aff56-3c8b-4b68-a138-843dd06b819d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29091,544aff56-3c8b-4b68-a138-843dd06b819d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29086,9866770e-2aeb-4664-86ee-3569dd073696,LIST_ACCOUNTS,hbciListAccounts,false +29087,9866770e-2aeb-4664-86ee-3569dd073696,LIST_TRANSACTIONS,hbciListTransactions,false +29088,9866770e-2aeb-4664-86ee-3569dd073696,AUTHORIZATION,,false +29089,9866770e-2aeb-4664-86ee-3569dd073696,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29090,9866770e-2aeb-4664-86ee-3569dd073696,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29091,9866770e-2aeb-4664-86ee-3569dd073696,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29092,9d024ce0-4fe2-4280-8349-d2ba0cf4f429,LIST_ACCOUNTS,xs2aListAccounts,true -29093,9d024ce0-4fe2-4280-8349-d2ba0cf4f429,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29093,9d024ce0-4fe2-4280-8349-d2ba0cf4f429,LIST_TRANSACTIONS,xs2aListTransactions,true 29094,9d024ce0-4fe2-4280-8349-d2ba0cf4f429,AUTHORIZATION,,true 29095,9d024ce0-4fe2-4280-8349-d2ba0cf4f429,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29096,9d024ce0-4fe2-4280-8349-d2ba0cf4f429,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29097,9d024ce0-4fe2-4280-8349-d2ba0cf4f429,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29098,cc5438a4-7d84-45f1-9dde-d37435d35598,LIST_ACCOUNTS,hbciListAccounts,false -29099,cc5438a4-7d84-45f1-9dde-d37435d35598,LIST_TRANSACTIONS,hbciListTransactions,false -29100,cc5438a4-7d84-45f1-9dde-d37435d35598,AUTHORIZATION,,false -29101,cc5438a4-7d84-45f1-9dde-d37435d35598,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29102,cc5438a4-7d84-45f1-9dde-d37435d35598,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29103,cc5438a4-7d84-45f1-9dde-d37435d35598,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29098,6202f5b9-489d-4564-b20f-fc7f67043a5d,LIST_ACCOUNTS,hbciListAccounts,false +29099,6202f5b9-489d-4564-b20f-fc7f67043a5d,LIST_TRANSACTIONS,hbciListTransactions,false +29100,6202f5b9-489d-4564-b20f-fc7f67043a5d,AUTHORIZATION,,false +29101,6202f5b9-489d-4564-b20f-fc7f67043a5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29102,6202f5b9-489d-4564-b20f-fc7f67043a5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29103,6202f5b9-489d-4564-b20f-fc7f67043a5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29104,355a1905-36f6-4266-b74b-9a8f98a29839,LIST_ACCOUNTS,xs2aListAccounts,true -29105,355a1905-36f6-4266-b74b-9a8f98a29839,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29105,355a1905-36f6-4266-b74b-9a8f98a29839,LIST_TRANSACTIONS,xs2aListTransactions,true 29106,355a1905-36f6-4266-b74b-9a8f98a29839,AUTHORIZATION,,true 29107,355a1905-36f6-4266-b74b-9a8f98a29839,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29108,355a1905-36f6-4266-b74b-9a8f98a29839,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29109,355a1905-36f6-4266-b74b-9a8f98a29839,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29110,3fd65c83-b4c5-4409-a985-95ecfde3b069,LIST_ACCOUNTS,hbciListAccounts,false -29111,3fd65c83-b4c5-4409-a985-95ecfde3b069,LIST_TRANSACTIONS,hbciListTransactions,false -29112,3fd65c83-b4c5-4409-a985-95ecfde3b069,AUTHORIZATION,,false -29113,3fd65c83-b4c5-4409-a985-95ecfde3b069,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29114,3fd65c83-b4c5-4409-a985-95ecfde3b069,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29115,3fd65c83-b4c5-4409-a985-95ecfde3b069,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29110,7761e434-0178-492c-b78e-98cf224047a6,LIST_ACCOUNTS,hbciListAccounts,false +29111,7761e434-0178-492c-b78e-98cf224047a6,LIST_TRANSACTIONS,hbciListTransactions,false +29112,7761e434-0178-492c-b78e-98cf224047a6,AUTHORIZATION,,false +29113,7761e434-0178-492c-b78e-98cf224047a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29114,7761e434-0178-492c-b78e-98cf224047a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29115,7761e434-0178-492c-b78e-98cf224047a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29116,a592db12-2d25-4900-9f44-a66bc2b05a3c,LIST_ACCOUNTS,xs2aListAccounts,true -29117,a592db12-2d25-4900-9f44-a66bc2b05a3c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29117,a592db12-2d25-4900-9f44-a66bc2b05a3c,LIST_TRANSACTIONS,xs2aListTransactions,true 29118,a592db12-2d25-4900-9f44-a66bc2b05a3c,AUTHORIZATION,,true 29119,a592db12-2d25-4900-9f44-a66bc2b05a3c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29120,a592db12-2d25-4900-9f44-a66bc2b05a3c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29121,a592db12-2d25-4900-9f44-a66bc2b05a3c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29122,0e52919d-a24f-49c5-8a40-fb7bb53b1941,LIST_ACCOUNTS,hbciListAccounts,false -29123,0e52919d-a24f-49c5-8a40-fb7bb53b1941,LIST_TRANSACTIONS,hbciListTransactions,false -29124,0e52919d-a24f-49c5-8a40-fb7bb53b1941,AUTHORIZATION,,false -29125,0e52919d-a24f-49c5-8a40-fb7bb53b1941,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29126,0e52919d-a24f-49c5-8a40-fb7bb53b1941,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29127,0e52919d-a24f-49c5-8a40-fb7bb53b1941,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29122,1d8dff90-37a9-4465-b3cc-5f220b11e2f0,LIST_ACCOUNTS,hbciListAccounts,false +29123,1d8dff90-37a9-4465-b3cc-5f220b11e2f0,LIST_TRANSACTIONS,hbciListTransactions,false +29124,1d8dff90-37a9-4465-b3cc-5f220b11e2f0,AUTHORIZATION,,false +29125,1d8dff90-37a9-4465-b3cc-5f220b11e2f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29126,1d8dff90-37a9-4465-b3cc-5f220b11e2f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29127,1d8dff90-37a9-4465-b3cc-5f220b11e2f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29128,821ceef2-f9ca-4c62-aa06-0201dcafbccc,LIST_ACCOUNTS,xs2aListAccounts,true -29129,821ceef2-f9ca-4c62-aa06-0201dcafbccc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29129,821ceef2-f9ca-4c62-aa06-0201dcafbccc,LIST_TRANSACTIONS,xs2aListTransactions,true 29130,821ceef2-f9ca-4c62-aa06-0201dcafbccc,AUTHORIZATION,,true 29131,821ceef2-f9ca-4c62-aa06-0201dcafbccc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29132,821ceef2-f9ca-4c62-aa06-0201dcafbccc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29133,821ceef2-f9ca-4c62-aa06-0201dcafbccc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29134,54aed208-5af5-48d5-956d-31b84e189f38,LIST_ACCOUNTS,hbciListAccounts,false -29135,54aed208-5af5-48d5-956d-31b84e189f38,LIST_TRANSACTIONS,hbciListTransactions,false -29136,54aed208-5af5-48d5-956d-31b84e189f38,AUTHORIZATION,,false -29137,54aed208-5af5-48d5-956d-31b84e189f38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29138,54aed208-5af5-48d5-956d-31b84e189f38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29139,54aed208-5af5-48d5-956d-31b84e189f38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29134,651033fe-d403-46a1-937d-e04242345bf5,LIST_ACCOUNTS,hbciListAccounts,false +29135,651033fe-d403-46a1-937d-e04242345bf5,LIST_TRANSACTIONS,hbciListTransactions,false +29136,651033fe-d403-46a1-937d-e04242345bf5,AUTHORIZATION,,false +29137,651033fe-d403-46a1-937d-e04242345bf5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29138,651033fe-d403-46a1-937d-e04242345bf5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29139,651033fe-d403-46a1-937d-e04242345bf5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29140,c3f9191f-557a-43e3-a24f-f6da07ffb0ce,LIST_ACCOUNTS,xs2aListAccounts,true -29141,c3f9191f-557a-43e3-a24f-f6da07ffb0ce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29141,c3f9191f-557a-43e3-a24f-f6da07ffb0ce,LIST_TRANSACTIONS,xs2aListTransactions,true 29142,c3f9191f-557a-43e3-a24f-f6da07ffb0ce,AUTHORIZATION,,true 29143,c3f9191f-557a-43e3-a24f-f6da07ffb0ce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29144,c3f9191f-557a-43e3-a24f-f6da07ffb0ce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29145,c3f9191f-557a-43e3-a24f-f6da07ffb0ce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29146,2729375b-5814-4453-9550-16d77534c17c,LIST_ACCOUNTS,hbciListAccounts,false -29147,2729375b-5814-4453-9550-16d77534c17c,LIST_TRANSACTIONS,hbciListTransactions,false -29148,2729375b-5814-4453-9550-16d77534c17c,AUTHORIZATION,,false -29149,2729375b-5814-4453-9550-16d77534c17c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29150,2729375b-5814-4453-9550-16d77534c17c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29151,2729375b-5814-4453-9550-16d77534c17c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29146,99f6f3d3-3548-467d-ad5e-5fa6df61b3d2,LIST_ACCOUNTS,hbciListAccounts,false +29147,99f6f3d3-3548-467d-ad5e-5fa6df61b3d2,LIST_TRANSACTIONS,hbciListTransactions,false +29148,99f6f3d3-3548-467d-ad5e-5fa6df61b3d2,AUTHORIZATION,,false +29149,99f6f3d3-3548-467d-ad5e-5fa6df61b3d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29150,99f6f3d3-3548-467d-ad5e-5fa6df61b3d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29151,99f6f3d3-3548-467d-ad5e-5fa6df61b3d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29152,0357dab5-8d1a-4468-a2f3-75de32fa0319,LIST_ACCOUNTS,xs2aListAccounts,true -29153,0357dab5-8d1a-4468-a2f3-75de32fa0319,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29153,0357dab5-8d1a-4468-a2f3-75de32fa0319,LIST_TRANSACTIONS,xs2aListTransactions,true 29154,0357dab5-8d1a-4468-a2f3-75de32fa0319,AUTHORIZATION,,true 29155,0357dab5-8d1a-4468-a2f3-75de32fa0319,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29156,0357dab5-8d1a-4468-a2f3-75de32fa0319,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29157,0357dab5-8d1a-4468-a2f3-75de32fa0319,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29158,88c6e536-be82-4215-86b5-906d99d71541,LIST_ACCOUNTS,hbciListAccounts,false -29159,88c6e536-be82-4215-86b5-906d99d71541,LIST_TRANSACTIONS,hbciListTransactions,false -29160,88c6e536-be82-4215-86b5-906d99d71541,AUTHORIZATION,,false -29161,88c6e536-be82-4215-86b5-906d99d71541,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29162,88c6e536-be82-4215-86b5-906d99d71541,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29163,88c6e536-be82-4215-86b5-906d99d71541,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29158,35a8d570-7108-4e01-a70c-d14431e9f261,LIST_ACCOUNTS,hbciListAccounts,false +29159,35a8d570-7108-4e01-a70c-d14431e9f261,LIST_TRANSACTIONS,hbciListTransactions,false +29160,35a8d570-7108-4e01-a70c-d14431e9f261,AUTHORIZATION,,false +29161,35a8d570-7108-4e01-a70c-d14431e9f261,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29162,35a8d570-7108-4e01-a70c-d14431e9f261,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29163,35a8d570-7108-4e01-a70c-d14431e9f261,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29164,36980bc3-adbd-4236-b89f-133d42358f2a,LIST_ACCOUNTS,xs2aListAccounts,true -29165,36980bc3-adbd-4236-b89f-133d42358f2a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29165,36980bc3-adbd-4236-b89f-133d42358f2a,LIST_TRANSACTIONS,xs2aListTransactions,true 29166,36980bc3-adbd-4236-b89f-133d42358f2a,AUTHORIZATION,,true 29167,36980bc3-adbd-4236-b89f-133d42358f2a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29168,36980bc3-adbd-4236-b89f-133d42358f2a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29169,36980bc3-adbd-4236-b89f-133d42358f2a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29170,3e42c4d2-4257-4d67-942a-b6e033931647,LIST_ACCOUNTS,hbciListAccounts,false -29171,3e42c4d2-4257-4d67-942a-b6e033931647,LIST_TRANSACTIONS,hbciListTransactions,false -29172,3e42c4d2-4257-4d67-942a-b6e033931647,AUTHORIZATION,,false -29173,3e42c4d2-4257-4d67-942a-b6e033931647,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29174,3e42c4d2-4257-4d67-942a-b6e033931647,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29175,3e42c4d2-4257-4d67-942a-b6e033931647,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29170,2368a312-4a16-4c0d-bd96-490195494acb,LIST_ACCOUNTS,hbciListAccounts,false +29171,2368a312-4a16-4c0d-bd96-490195494acb,LIST_TRANSACTIONS,hbciListTransactions,false +29172,2368a312-4a16-4c0d-bd96-490195494acb,AUTHORIZATION,,false +29173,2368a312-4a16-4c0d-bd96-490195494acb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29174,2368a312-4a16-4c0d-bd96-490195494acb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29175,2368a312-4a16-4c0d-bd96-490195494acb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29176,79392c73-f097-4017-8dfd-c290090ded5d,LIST_ACCOUNTS,xs2aListAccounts,true -29177,79392c73-f097-4017-8dfd-c290090ded5d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29177,79392c73-f097-4017-8dfd-c290090ded5d,LIST_TRANSACTIONS,xs2aListTransactions,true 29178,79392c73-f097-4017-8dfd-c290090ded5d,AUTHORIZATION,,true 29179,79392c73-f097-4017-8dfd-c290090ded5d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29180,79392c73-f097-4017-8dfd-c290090ded5d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29181,79392c73-f097-4017-8dfd-c290090ded5d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29182,e88d2d3c-616e-406c-a047-5d0a9b5a69cf,LIST_ACCOUNTS,hbciListAccounts,false -29183,e88d2d3c-616e-406c-a047-5d0a9b5a69cf,LIST_TRANSACTIONS,hbciListTransactions,false -29184,e88d2d3c-616e-406c-a047-5d0a9b5a69cf,AUTHORIZATION,,false -29185,e88d2d3c-616e-406c-a047-5d0a9b5a69cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29186,e88d2d3c-616e-406c-a047-5d0a9b5a69cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29187,e88d2d3c-616e-406c-a047-5d0a9b5a69cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29182,9367f2d6-785d-4efa-8423-ef8945d1da70,LIST_ACCOUNTS,hbciListAccounts,false +29183,9367f2d6-785d-4efa-8423-ef8945d1da70,LIST_TRANSACTIONS,hbciListTransactions,false +29184,9367f2d6-785d-4efa-8423-ef8945d1da70,AUTHORIZATION,,false +29185,9367f2d6-785d-4efa-8423-ef8945d1da70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29186,9367f2d6-785d-4efa-8423-ef8945d1da70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29187,9367f2d6-785d-4efa-8423-ef8945d1da70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29188,4c5156b5-34dd-4cd9-9d59-43a020721941,LIST_ACCOUNTS,xs2aListAccounts,true -29189,4c5156b5-34dd-4cd9-9d59-43a020721941,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29189,4c5156b5-34dd-4cd9-9d59-43a020721941,LIST_TRANSACTIONS,xs2aListTransactions,true 29190,4c5156b5-34dd-4cd9-9d59-43a020721941,AUTHORIZATION,,true 29191,4c5156b5-34dd-4cd9-9d59-43a020721941,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29192,4c5156b5-34dd-4cd9-9d59-43a020721941,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29193,4c5156b5-34dd-4cd9-9d59-43a020721941,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29194,5b14aedc-4f82-4e5c-8434-2e7bf98cfae6,LIST_ACCOUNTS,hbciListAccounts,false -29195,5b14aedc-4f82-4e5c-8434-2e7bf98cfae6,LIST_TRANSACTIONS,hbciListTransactions,false -29196,5b14aedc-4f82-4e5c-8434-2e7bf98cfae6,AUTHORIZATION,,false -29197,5b14aedc-4f82-4e5c-8434-2e7bf98cfae6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29198,5b14aedc-4f82-4e5c-8434-2e7bf98cfae6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29199,5b14aedc-4f82-4e5c-8434-2e7bf98cfae6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29194,8592b5d4-6f26-4981-8ab2-7450938cbca7,LIST_ACCOUNTS,hbciListAccounts,false +29195,8592b5d4-6f26-4981-8ab2-7450938cbca7,LIST_TRANSACTIONS,hbciListTransactions,false +29196,8592b5d4-6f26-4981-8ab2-7450938cbca7,AUTHORIZATION,,false +29197,8592b5d4-6f26-4981-8ab2-7450938cbca7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29198,8592b5d4-6f26-4981-8ab2-7450938cbca7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29199,8592b5d4-6f26-4981-8ab2-7450938cbca7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29200,1178a975-e765-4276-9b64-0868fd00687d,LIST_ACCOUNTS,xs2aListAccounts,true -29201,1178a975-e765-4276-9b64-0868fd00687d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29201,1178a975-e765-4276-9b64-0868fd00687d,LIST_TRANSACTIONS,xs2aListTransactions,true 29202,1178a975-e765-4276-9b64-0868fd00687d,AUTHORIZATION,,true 29203,1178a975-e765-4276-9b64-0868fd00687d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29204,1178a975-e765-4276-9b64-0868fd00687d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29205,1178a975-e765-4276-9b64-0868fd00687d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29206,6e831e4d-30de-4b44-a7c6-4c0da88e46dd,LIST_ACCOUNTS,hbciListAccounts,false -29207,6e831e4d-30de-4b44-a7c6-4c0da88e46dd,LIST_TRANSACTIONS,hbciListTransactions,false -29208,6e831e4d-30de-4b44-a7c6-4c0da88e46dd,AUTHORIZATION,,false -29209,6e831e4d-30de-4b44-a7c6-4c0da88e46dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29210,6e831e4d-30de-4b44-a7c6-4c0da88e46dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29211,6e831e4d-30de-4b44-a7c6-4c0da88e46dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29206,70aa7e9e-8abf-4830-ba05-63a0941edc86,LIST_ACCOUNTS,hbciListAccounts,false +29207,70aa7e9e-8abf-4830-ba05-63a0941edc86,LIST_TRANSACTIONS,hbciListTransactions,false +29208,70aa7e9e-8abf-4830-ba05-63a0941edc86,AUTHORIZATION,,false +29209,70aa7e9e-8abf-4830-ba05-63a0941edc86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29210,70aa7e9e-8abf-4830-ba05-63a0941edc86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29211,70aa7e9e-8abf-4830-ba05-63a0941edc86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29212,5ac0c928-465e-4bcf-ad72-d5121fb56361,LIST_ACCOUNTS,xs2aListAccounts,true -29213,5ac0c928-465e-4bcf-ad72-d5121fb56361,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29213,5ac0c928-465e-4bcf-ad72-d5121fb56361,LIST_TRANSACTIONS,xs2aListTransactions,true 29214,5ac0c928-465e-4bcf-ad72-d5121fb56361,AUTHORIZATION,,true 29215,5ac0c928-465e-4bcf-ad72-d5121fb56361,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29216,5ac0c928-465e-4bcf-ad72-d5121fb56361,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29217,5ac0c928-465e-4bcf-ad72-d5121fb56361,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29218,9dccfd71-0a27-4a2a-a56c-1b80701510e4,LIST_ACCOUNTS,hbciListAccounts,false -29219,9dccfd71-0a27-4a2a-a56c-1b80701510e4,LIST_TRANSACTIONS,hbciListTransactions,false -29220,9dccfd71-0a27-4a2a-a56c-1b80701510e4,AUTHORIZATION,,false -29221,9dccfd71-0a27-4a2a-a56c-1b80701510e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29222,9dccfd71-0a27-4a2a-a56c-1b80701510e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29223,9dccfd71-0a27-4a2a-a56c-1b80701510e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29218,918e4e85-40ef-4a50-ae92-673aa03bb9e1,LIST_ACCOUNTS,hbciListAccounts,false +29219,918e4e85-40ef-4a50-ae92-673aa03bb9e1,LIST_TRANSACTIONS,hbciListTransactions,false +29220,918e4e85-40ef-4a50-ae92-673aa03bb9e1,AUTHORIZATION,,false +29221,918e4e85-40ef-4a50-ae92-673aa03bb9e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29222,918e4e85-40ef-4a50-ae92-673aa03bb9e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29223,918e4e85-40ef-4a50-ae92-673aa03bb9e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29224,8c986288-fc90-4ecf-b16e-3db32486da15,LIST_ACCOUNTS,xs2aListAccounts,true -29225,8c986288-fc90-4ecf-b16e-3db32486da15,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29225,8c986288-fc90-4ecf-b16e-3db32486da15,LIST_TRANSACTIONS,xs2aListTransactions,true 29226,8c986288-fc90-4ecf-b16e-3db32486da15,AUTHORIZATION,,true 29227,8c986288-fc90-4ecf-b16e-3db32486da15,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29228,8c986288-fc90-4ecf-b16e-3db32486da15,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29229,8c986288-fc90-4ecf-b16e-3db32486da15,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29230,f1905327-dbd7-446d-9c6d-3dbeb9f35359,LIST_ACCOUNTS,hbciListAccounts,false -29231,f1905327-dbd7-446d-9c6d-3dbeb9f35359,LIST_TRANSACTIONS,hbciListTransactions,false -29232,f1905327-dbd7-446d-9c6d-3dbeb9f35359,AUTHORIZATION,,false -29233,f1905327-dbd7-446d-9c6d-3dbeb9f35359,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29234,f1905327-dbd7-446d-9c6d-3dbeb9f35359,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29235,f1905327-dbd7-446d-9c6d-3dbeb9f35359,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29230,2fa14396-bdff-41fb-a247-d0916f86e069,LIST_ACCOUNTS,hbciListAccounts,false +29231,2fa14396-bdff-41fb-a247-d0916f86e069,LIST_TRANSACTIONS,hbciListTransactions,false +29232,2fa14396-bdff-41fb-a247-d0916f86e069,AUTHORIZATION,,false +29233,2fa14396-bdff-41fb-a247-d0916f86e069,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29234,2fa14396-bdff-41fb-a247-d0916f86e069,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29235,2fa14396-bdff-41fb-a247-d0916f86e069,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29236,3022a867-8351-4473-bde6-2954e68027e0,LIST_ACCOUNTS,xs2aListAccounts,true -29237,3022a867-8351-4473-bde6-2954e68027e0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29237,3022a867-8351-4473-bde6-2954e68027e0,LIST_TRANSACTIONS,xs2aListTransactions,true 29238,3022a867-8351-4473-bde6-2954e68027e0,AUTHORIZATION,,true 29239,3022a867-8351-4473-bde6-2954e68027e0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29240,3022a867-8351-4473-bde6-2954e68027e0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29241,3022a867-8351-4473-bde6-2954e68027e0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29242,32e03679-182b-4b27-af4a-d38ea497ccea,LIST_ACCOUNTS,hbciListAccounts,false -29243,32e03679-182b-4b27-af4a-d38ea497ccea,LIST_TRANSACTIONS,hbciListTransactions,false -29244,32e03679-182b-4b27-af4a-d38ea497ccea,AUTHORIZATION,,false -29245,32e03679-182b-4b27-af4a-d38ea497ccea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29246,32e03679-182b-4b27-af4a-d38ea497ccea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29247,32e03679-182b-4b27-af4a-d38ea497ccea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29242,f0467c5f-da4d-46cf-b771-2a322e53d9f4,LIST_ACCOUNTS,hbciListAccounts,false +29243,f0467c5f-da4d-46cf-b771-2a322e53d9f4,LIST_TRANSACTIONS,hbciListTransactions,false +29244,f0467c5f-da4d-46cf-b771-2a322e53d9f4,AUTHORIZATION,,false +29245,f0467c5f-da4d-46cf-b771-2a322e53d9f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29246,f0467c5f-da4d-46cf-b771-2a322e53d9f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29247,f0467c5f-da4d-46cf-b771-2a322e53d9f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29248,b4c6640a-9738-41b4-8c82-5d4a31bdfb40,LIST_ACCOUNTS,xs2aListAccounts,true -29249,b4c6640a-9738-41b4-8c82-5d4a31bdfb40,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29249,b4c6640a-9738-41b4-8c82-5d4a31bdfb40,LIST_TRANSACTIONS,xs2aListTransactions,true 29250,b4c6640a-9738-41b4-8c82-5d4a31bdfb40,AUTHORIZATION,,true 29251,b4c6640a-9738-41b4-8c82-5d4a31bdfb40,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29252,b4c6640a-9738-41b4-8c82-5d4a31bdfb40,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29253,b4c6640a-9738-41b4-8c82-5d4a31bdfb40,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29254,214fe4c6-916a-4ad9-a624-1bdd283de3ad,LIST_ACCOUNTS,hbciListAccounts,false -29255,214fe4c6-916a-4ad9-a624-1bdd283de3ad,LIST_TRANSACTIONS,hbciListTransactions,false -29256,214fe4c6-916a-4ad9-a624-1bdd283de3ad,AUTHORIZATION,,false -29257,214fe4c6-916a-4ad9-a624-1bdd283de3ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29258,214fe4c6-916a-4ad9-a624-1bdd283de3ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29259,214fe4c6-916a-4ad9-a624-1bdd283de3ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29254,b318cba2-2915-4a10-ad65-2370ba21795b,LIST_ACCOUNTS,hbciListAccounts,false +29255,b318cba2-2915-4a10-ad65-2370ba21795b,LIST_TRANSACTIONS,hbciListTransactions,false +29256,b318cba2-2915-4a10-ad65-2370ba21795b,AUTHORIZATION,,false +29257,b318cba2-2915-4a10-ad65-2370ba21795b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29258,b318cba2-2915-4a10-ad65-2370ba21795b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29259,b318cba2-2915-4a10-ad65-2370ba21795b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29260,cce0a9fa-fff8-4cc0-b3c4-87a0b9f681ad,LIST_ACCOUNTS,xs2aListAccounts,true -29261,cce0a9fa-fff8-4cc0-b3c4-87a0b9f681ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29261,cce0a9fa-fff8-4cc0-b3c4-87a0b9f681ad,LIST_TRANSACTIONS,xs2aListTransactions,true 29262,cce0a9fa-fff8-4cc0-b3c4-87a0b9f681ad,AUTHORIZATION,,true 29263,cce0a9fa-fff8-4cc0-b3c4-87a0b9f681ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29264,cce0a9fa-fff8-4cc0-b3c4-87a0b9f681ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29265,cce0a9fa-fff8-4cc0-b3c4-87a0b9f681ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29266,b53616ef-72c1-4b6d-92fc-1b18ed402be9,LIST_ACCOUNTS,hbciListAccounts,false -29267,b53616ef-72c1-4b6d-92fc-1b18ed402be9,LIST_TRANSACTIONS,hbciListTransactions,false -29268,b53616ef-72c1-4b6d-92fc-1b18ed402be9,AUTHORIZATION,,false -29269,b53616ef-72c1-4b6d-92fc-1b18ed402be9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29270,b53616ef-72c1-4b6d-92fc-1b18ed402be9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29271,b53616ef-72c1-4b6d-92fc-1b18ed402be9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29266,eae59d59-fd47-4c57-8eda-a740cc7cd173,LIST_ACCOUNTS,hbciListAccounts,false +29267,eae59d59-fd47-4c57-8eda-a740cc7cd173,LIST_TRANSACTIONS,hbciListTransactions,false +29268,eae59d59-fd47-4c57-8eda-a740cc7cd173,AUTHORIZATION,,false +29269,eae59d59-fd47-4c57-8eda-a740cc7cd173,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29270,eae59d59-fd47-4c57-8eda-a740cc7cd173,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29271,eae59d59-fd47-4c57-8eda-a740cc7cd173,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29272,0f625565-2c34-4b66-943f-67d9e4b51c1a,LIST_ACCOUNTS,xs2aListAccounts,true -29273,0f625565-2c34-4b66-943f-67d9e4b51c1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29273,0f625565-2c34-4b66-943f-67d9e4b51c1a,LIST_TRANSACTIONS,xs2aListTransactions,true 29274,0f625565-2c34-4b66-943f-67d9e4b51c1a,AUTHORIZATION,,true 29275,0f625565-2c34-4b66-943f-67d9e4b51c1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29276,0f625565-2c34-4b66-943f-67d9e4b51c1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29277,0f625565-2c34-4b66-943f-67d9e4b51c1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29278,7f366ebe-9603-4657-9c07-b5904c8edaa8,LIST_ACCOUNTS,hbciListAccounts,false -29279,7f366ebe-9603-4657-9c07-b5904c8edaa8,LIST_TRANSACTIONS,hbciListTransactions,false -29280,7f366ebe-9603-4657-9c07-b5904c8edaa8,AUTHORIZATION,,false -29281,7f366ebe-9603-4657-9c07-b5904c8edaa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29282,7f366ebe-9603-4657-9c07-b5904c8edaa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29283,7f366ebe-9603-4657-9c07-b5904c8edaa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29278,0a94dfc3-aea1-4ffd-9b4d-c4adb6f65803,LIST_ACCOUNTS,hbciListAccounts,false +29279,0a94dfc3-aea1-4ffd-9b4d-c4adb6f65803,LIST_TRANSACTIONS,hbciListTransactions,false +29280,0a94dfc3-aea1-4ffd-9b4d-c4adb6f65803,AUTHORIZATION,,false +29281,0a94dfc3-aea1-4ffd-9b4d-c4adb6f65803,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29282,0a94dfc3-aea1-4ffd-9b4d-c4adb6f65803,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29283,0a94dfc3-aea1-4ffd-9b4d-c4adb6f65803,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29284,a0720240-84c8-4cc7-8f9c-6efc9903a46d,LIST_ACCOUNTS,xs2aListAccounts,true -29285,a0720240-84c8-4cc7-8f9c-6efc9903a46d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29285,a0720240-84c8-4cc7-8f9c-6efc9903a46d,LIST_TRANSACTIONS,xs2aListTransactions,true 29286,a0720240-84c8-4cc7-8f9c-6efc9903a46d,AUTHORIZATION,,true 29287,a0720240-84c8-4cc7-8f9c-6efc9903a46d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29288,a0720240-84c8-4cc7-8f9c-6efc9903a46d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29289,a0720240-84c8-4cc7-8f9c-6efc9903a46d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29290,b1ca5d12-ab9a-4098-aef8-aeda145bace8,LIST_ACCOUNTS,hbciListAccounts,false -29291,b1ca5d12-ab9a-4098-aef8-aeda145bace8,LIST_TRANSACTIONS,hbciListTransactions,false -29292,b1ca5d12-ab9a-4098-aef8-aeda145bace8,AUTHORIZATION,,false -29293,b1ca5d12-ab9a-4098-aef8-aeda145bace8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29294,b1ca5d12-ab9a-4098-aef8-aeda145bace8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29295,b1ca5d12-ab9a-4098-aef8-aeda145bace8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29290,d5d6c330-1083-4f43-8572-08b9165e0d1e,LIST_ACCOUNTS,hbciListAccounts,false +29291,d5d6c330-1083-4f43-8572-08b9165e0d1e,LIST_TRANSACTIONS,hbciListTransactions,false +29292,d5d6c330-1083-4f43-8572-08b9165e0d1e,AUTHORIZATION,,false +29293,d5d6c330-1083-4f43-8572-08b9165e0d1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29294,d5d6c330-1083-4f43-8572-08b9165e0d1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29295,d5d6c330-1083-4f43-8572-08b9165e0d1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29296,20b4fb4d-492d-4cd6-8d1d-2627fef845a6,LIST_ACCOUNTS,xs2aListAccounts,true -29297,20b4fb4d-492d-4cd6-8d1d-2627fef845a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29297,20b4fb4d-492d-4cd6-8d1d-2627fef845a6,LIST_TRANSACTIONS,xs2aListTransactions,true 29298,20b4fb4d-492d-4cd6-8d1d-2627fef845a6,AUTHORIZATION,,true 29299,20b4fb4d-492d-4cd6-8d1d-2627fef845a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29300,20b4fb4d-492d-4cd6-8d1d-2627fef845a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29301,20b4fb4d-492d-4cd6-8d1d-2627fef845a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29302,fa6f5ba8-ffe4-4b90-a887-07eca6bb4ec0,LIST_ACCOUNTS,hbciListAccounts,false -29303,fa6f5ba8-ffe4-4b90-a887-07eca6bb4ec0,LIST_TRANSACTIONS,hbciListTransactions,false -29304,fa6f5ba8-ffe4-4b90-a887-07eca6bb4ec0,AUTHORIZATION,,false -29305,fa6f5ba8-ffe4-4b90-a887-07eca6bb4ec0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29306,fa6f5ba8-ffe4-4b90-a887-07eca6bb4ec0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29307,fa6f5ba8-ffe4-4b90-a887-07eca6bb4ec0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29302,3e1fefb5-989d-4af5-8d03-511f26889683,LIST_ACCOUNTS,hbciListAccounts,false +29303,3e1fefb5-989d-4af5-8d03-511f26889683,LIST_TRANSACTIONS,hbciListTransactions,false +29304,3e1fefb5-989d-4af5-8d03-511f26889683,AUTHORIZATION,,false +29305,3e1fefb5-989d-4af5-8d03-511f26889683,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29306,3e1fefb5-989d-4af5-8d03-511f26889683,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29307,3e1fefb5-989d-4af5-8d03-511f26889683,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29308,87905101-b8da-42b0-b562-2bbfef4cef5b,LIST_ACCOUNTS,xs2aListAccounts,true -29309,87905101-b8da-42b0-b562-2bbfef4cef5b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29309,87905101-b8da-42b0-b562-2bbfef4cef5b,LIST_TRANSACTIONS,xs2aListTransactions,true 29310,87905101-b8da-42b0-b562-2bbfef4cef5b,AUTHORIZATION,,true 29311,87905101-b8da-42b0-b562-2bbfef4cef5b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29312,87905101-b8da-42b0-b562-2bbfef4cef5b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29313,87905101-b8da-42b0-b562-2bbfef4cef5b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29314,91c405ff-4fb3-4633-9e7f-ce773f759ede,LIST_ACCOUNTS,hbciListAccounts,false -29315,91c405ff-4fb3-4633-9e7f-ce773f759ede,LIST_TRANSACTIONS,hbciListTransactions,false -29316,91c405ff-4fb3-4633-9e7f-ce773f759ede,AUTHORIZATION,,false -29317,91c405ff-4fb3-4633-9e7f-ce773f759ede,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29318,91c405ff-4fb3-4633-9e7f-ce773f759ede,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29319,91c405ff-4fb3-4633-9e7f-ce773f759ede,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29314,e06b6a72-65f0-4a9a-bb10-66065b6b80a3,LIST_ACCOUNTS,hbciListAccounts,false +29315,e06b6a72-65f0-4a9a-bb10-66065b6b80a3,LIST_TRANSACTIONS,hbciListTransactions,false +29316,e06b6a72-65f0-4a9a-bb10-66065b6b80a3,AUTHORIZATION,,false +29317,e06b6a72-65f0-4a9a-bb10-66065b6b80a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29318,e06b6a72-65f0-4a9a-bb10-66065b6b80a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29319,e06b6a72-65f0-4a9a-bb10-66065b6b80a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29320,43773f1c-a5a6-4c4a-a368-a6320486a3e3,LIST_ACCOUNTS,xs2aListAccounts,true -29321,43773f1c-a5a6-4c4a-a368-a6320486a3e3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29321,43773f1c-a5a6-4c4a-a368-a6320486a3e3,LIST_TRANSACTIONS,xs2aListTransactions,true 29322,43773f1c-a5a6-4c4a-a368-a6320486a3e3,AUTHORIZATION,,true 29323,43773f1c-a5a6-4c4a-a368-a6320486a3e3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29324,43773f1c-a5a6-4c4a-a368-a6320486a3e3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29325,43773f1c-a5a6-4c4a-a368-a6320486a3e3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29326,d2442f87-b35a-4346-b9d3-8db26255cfa8,LIST_ACCOUNTS,hbciListAccounts,false -29327,d2442f87-b35a-4346-b9d3-8db26255cfa8,LIST_TRANSACTIONS,hbciListTransactions,false -29328,d2442f87-b35a-4346-b9d3-8db26255cfa8,AUTHORIZATION,,false -29329,d2442f87-b35a-4346-b9d3-8db26255cfa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29330,d2442f87-b35a-4346-b9d3-8db26255cfa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29331,d2442f87-b35a-4346-b9d3-8db26255cfa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29326,8dd32925-df89-4ec1-8ccb-82371ef5259c,LIST_ACCOUNTS,hbciListAccounts,false +29327,8dd32925-df89-4ec1-8ccb-82371ef5259c,LIST_TRANSACTIONS,hbciListTransactions,false +29328,8dd32925-df89-4ec1-8ccb-82371ef5259c,AUTHORIZATION,,false +29329,8dd32925-df89-4ec1-8ccb-82371ef5259c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29330,8dd32925-df89-4ec1-8ccb-82371ef5259c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29331,8dd32925-df89-4ec1-8ccb-82371ef5259c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29332,7477bdbe-72bc-48e2-aee0-4cf7e6d85388,LIST_ACCOUNTS,xs2aListAccounts,true -29333,7477bdbe-72bc-48e2-aee0-4cf7e6d85388,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29333,7477bdbe-72bc-48e2-aee0-4cf7e6d85388,LIST_TRANSACTIONS,xs2aListTransactions,true 29334,7477bdbe-72bc-48e2-aee0-4cf7e6d85388,AUTHORIZATION,,true 29335,7477bdbe-72bc-48e2-aee0-4cf7e6d85388,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29336,7477bdbe-72bc-48e2-aee0-4cf7e6d85388,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29337,7477bdbe-72bc-48e2-aee0-4cf7e6d85388,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29338,274858d3-c0f8-427f-ad48-539c4b5d0ad1,LIST_ACCOUNTS,hbciListAccounts,false -29339,274858d3-c0f8-427f-ad48-539c4b5d0ad1,LIST_TRANSACTIONS,hbciListTransactions,false -29340,274858d3-c0f8-427f-ad48-539c4b5d0ad1,AUTHORIZATION,,false -29341,274858d3-c0f8-427f-ad48-539c4b5d0ad1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29342,274858d3-c0f8-427f-ad48-539c4b5d0ad1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29343,274858d3-c0f8-427f-ad48-539c4b5d0ad1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29338,147b69ac-110a-4923-a8d9-57cc50fab62a,LIST_ACCOUNTS,hbciListAccounts,false +29339,147b69ac-110a-4923-a8d9-57cc50fab62a,LIST_TRANSACTIONS,hbciListTransactions,false +29340,147b69ac-110a-4923-a8d9-57cc50fab62a,AUTHORIZATION,,false +29341,147b69ac-110a-4923-a8d9-57cc50fab62a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29342,147b69ac-110a-4923-a8d9-57cc50fab62a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29343,147b69ac-110a-4923-a8d9-57cc50fab62a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29344,6367f430-4844-473f-80a3-fe4f2f6529a4,LIST_ACCOUNTS,xs2aListAccounts,true -29345,6367f430-4844-473f-80a3-fe4f2f6529a4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29345,6367f430-4844-473f-80a3-fe4f2f6529a4,LIST_TRANSACTIONS,xs2aListTransactions,true 29346,6367f430-4844-473f-80a3-fe4f2f6529a4,AUTHORIZATION,,true 29347,6367f430-4844-473f-80a3-fe4f2f6529a4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29348,6367f430-4844-473f-80a3-fe4f2f6529a4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29349,6367f430-4844-473f-80a3-fe4f2f6529a4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29350,357f8965-aa5b-42f0-82bf-a16affba6af9,LIST_ACCOUNTS,hbciListAccounts,false -29351,357f8965-aa5b-42f0-82bf-a16affba6af9,LIST_TRANSACTIONS,hbciListTransactions,false -29352,357f8965-aa5b-42f0-82bf-a16affba6af9,AUTHORIZATION,,false -29353,357f8965-aa5b-42f0-82bf-a16affba6af9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29354,357f8965-aa5b-42f0-82bf-a16affba6af9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29355,357f8965-aa5b-42f0-82bf-a16affba6af9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29350,265abd8a-28e9-4f88-838e-96bf837d32ab,LIST_ACCOUNTS,hbciListAccounts,false +29351,265abd8a-28e9-4f88-838e-96bf837d32ab,LIST_TRANSACTIONS,hbciListTransactions,false +29352,265abd8a-28e9-4f88-838e-96bf837d32ab,AUTHORIZATION,,false +29353,265abd8a-28e9-4f88-838e-96bf837d32ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29354,265abd8a-28e9-4f88-838e-96bf837d32ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29355,265abd8a-28e9-4f88-838e-96bf837d32ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29356,330ff348-2d75-4bbe-aef2-bd02c1eb4d30,LIST_ACCOUNTS,xs2aListAccounts,true -29357,330ff348-2d75-4bbe-aef2-bd02c1eb4d30,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29357,330ff348-2d75-4bbe-aef2-bd02c1eb4d30,LIST_TRANSACTIONS,xs2aListTransactions,true 29358,330ff348-2d75-4bbe-aef2-bd02c1eb4d30,AUTHORIZATION,,true 29359,330ff348-2d75-4bbe-aef2-bd02c1eb4d30,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29360,330ff348-2d75-4bbe-aef2-bd02c1eb4d30,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29361,330ff348-2d75-4bbe-aef2-bd02c1eb4d30,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29362,4ff4efdc-cd3b-404e-9893-51e0a0aa1333,LIST_ACCOUNTS,hbciListAccounts,false -29363,4ff4efdc-cd3b-404e-9893-51e0a0aa1333,LIST_TRANSACTIONS,hbciListTransactions,false -29364,4ff4efdc-cd3b-404e-9893-51e0a0aa1333,AUTHORIZATION,,false -29365,4ff4efdc-cd3b-404e-9893-51e0a0aa1333,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29366,4ff4efdc-cd3b-404e-9893-51e0a0aa1333,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29367,4ff4efdc-cd3b-404e-9893-51e0a0aa1333,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29362,855f6d91-3318-439c-bb67-82231f3cb2cc,LIST_ACCOUNTS,hbciListAccounts,false +29363,855f6d91-3318-439c-bb67-82231f3cb2cc,LIST_TRANSACTIONS,hbciListTransactions,false +29364,855f6d91-3318-439c-bb67-82231f3cb2cc,AUTHORIZATION,,false +29365,855f6d91-3318-439c-bb67-82231f3cb2cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29366,855f6d91-3318-439c-bb67-82231f3cb2cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29367,855f6d91-3318-439c-bb67-82231f3cb2cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29368,0251bb93-6f50-443c-a65b-98b0575af84f,LIST_ACCOUNTS,xs2aListAccounts,true -29369,0251bb93-6f50-443c-a65b-98b0575af84f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29369,0251bb93-6f50-443c-a65b-98b0575af84f,LIST_TRANSACTIONS,xs2aListTransactions,true 29370,0251bb93-6f50-443c-a65b-98b0575af84f,AUTHORIZATION,,true 29371,0251bb93-6f50-443c-a65b-98b0575af84f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29372,0251bb93-6f50-443c-a65b-98b0575af84f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29373,0251bb93-6f50-443c-a65b-98b0575af84f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29374,5735b590-ffd3-4ce1-acfa-1f0d933cb27d,LIST_ACCOUNTS,hbciListAccounts,false -29375,5735b590-ffd3-4ce1-acfa-1f0d933cb27d,LIST_TRANSACTIONS,hbciListTransactions,false -29376,5735b590-ffd3-4ce1-acfa-1f0d933cb27d,AUTHORIZATION,,false -29377,5735b590-ffd3-4ce1-acfa-1f0d933cb27d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29378,5735b590-ffd3-4ce1-acfa-1f0d933cb27d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29379,5735b590-ffd3-4ce1-acfa-1f0d933cb27d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29374,7f7bb65d-0ed7-4aa9-ade5-1236d424a639,LIST_ACCOUNTS,hbciListAccounts,false +29375,7f7bb65d-0ed7-4aa9-ade5-1236d424a639,LIST_TRANSACTIONS,hbciListTransactions,false +29376,7f7bb65d-0ed7-4aa9-ade5-1236d424a639,AUTHORIZATION,,false +29377,7f7bb65d-0ed7-4aa9-ade5-1236d424a639,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29378,7f7bb65d-0ed7-4aa9-ade5-1236d424a639,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29379,7f7bb65d-0ed7-4aa9-ade5-1236d424a639,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29380,377b384a-49c2-4de2-8f8c-307b0479ca7f,LIST_ACCOUNTS,xs2aListAccounts,true -29381,377b384a-49c2-4de2-8f8c-307b0479ca7f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29381,377b384a-49c2-4de2-8f8c-307b0479ca7f,LIST_TRANSACTIONS,xs2aListTransactions,true 29382,377b384a-49c2-4de2-8f8c-307b0479ca7f,AUTHORIZATION,,true 29383,377b384a-49c2-4de2-8f8c-307b0479ca7f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29384,377b384a-49c2-4de2-8f8c-307b0479ca7f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29385,377b384a-49c2-4de2-8f8c-307b0479ca7f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29386,8b4bd310-1456-4170-8e6e-cc9871385a5a,LIST_ACCOUNTS,hbciListAccounts,false -29387,8b4bd310-1456-4170-8e6e-cc9871385a5a,LIST_TRANSACTIONS,hbciListTransactions,false -29388,8b4bd310-1456-4170-8e6e-cc9871385a5a,AUTHORIZATION,,false -29389,8b4bd310-1456-4170-8e6e-cc9871385a5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29390,8b4bd310-1456-4170-8e6e-cc9871385a5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29391,8b4bd310-1456-4170-8e6e-cc9871385a5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29386,e0d7b67b-080e-4211-b30c-e26412466c41,LIST_ACCOUNTS,hbciListAccounts,false +29387,e0d7b67b-080e-4211-b30c-e26412466c41,LIST_TRANSACTIONS,hbciListTransactions,false +29388,e0d7b67b-080e-4211-b30c-e26412466c41,AUTHORIZATION,,false +29389,e0d7b67b-080e-4211-b30c-e26412466c41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29390,e0d7b67b-080e-4211-b30c-e26412466c41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29391,e0d7b67b-080e-4211-b30c-e26412466c41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29392,a4cd984b-e7dd-4fe8-9cf8-7d099b107d9a,LIST_ACCOUNTS,xs2aListAccounts,true -29393,a4cd984b-e7dd-4fe8-9cf8-7d099b107d9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29393,a4cd984b-e7dd-4fe8-9cf8-7d099b107d9a,LIST_TRANSACTIONS,xs2aListTransactions,true 29394,a4cd984b-e7dd-4fe8-9cf8-7d099b107d9a,AUTHORIZATION,,true 29395,a4cd984b-e7dd-4fe8-9cf8-7d099b107d9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29396,a4cd984b-e7dd-4fe8-9cf8-7d099b107d9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29397,a4cd984b-e7dd-4fe8-9cf8-7d099b107d9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29398,8f9ed113-5ac7-4249-af47-aa1b64eee3f1,LIST_ACCOUNTS,hbciListAccounts,false -29399,8f9ed113-5ac7-4249-af47-aa1b64eee3f1,LIST_TRANSACTIONS,hbciListTransactions,false -29400,8f9ed113-5ac7-4249-af47-aa1b64eee3f1,AUTHORIZATION,,false -29401,8f9ed113-5ac7-4249-af47-aa1b64eee3f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29402,8f9ed113-5ac7-4249-af47-aa1b64eee3f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29403,8f9ed113-5ac7-4249-af47-aa1b64eee3f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29398,384ac958-fbb8-46ad-9bf5-177e2468451a,LIST_ACCOUNTS,hbciListAccounts,false +29399,384ac958-fbb8-46ad-9bf5-177e2468451a,LIST_TRANSACTIONS,hbciListTransactions,false +29400,384ac958-fbb8-46ad-9bf5-177e2468451a,AUTHORIZATION,,false +29401,384ac958-fbb8-46ad-9bf5-177e2468451a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29402,384ac958-fbb8-46ad-9bf5-177e2468451a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29403,384ac958-fbb8-46ad-9bf5-177e2468451a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29404,74bd82a3-46b2-479d-9bf4-3fe70fe5232f,LIST_ACCOUNTS,xs2aListAccounts,true -29405,74bd82a3-46b2-479d-9bf4-3fe70fe5232f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29405,74bd82a3-46b2-479d-9bf4-3fe70fe5232f,LIST_TRANSACTIONS,xs2aListTransactions,true 29406,74bd82a3-46b2-479d-9bf4-3fe70fe5232f,AUTHORIZATION,,true 29407,74bd82a3-46b2-479d-9bf4-3fe70fe5232f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29408,74bd82a3-46b2-479d-9bf4-3fe70fe5232f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29409,74bd82a3-46b2-479d-9bf4-3fe70fe5232f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29410,fa68fe28-9771-4658-9173-d3ec5f3cd198,LIST_ACCOUNTS,hbciListAccounts,false -29411,fa68fe28-9771-4658-9173-d3ec5f3cd198,LIST_TRANSACTIONS,hbciListTransactions,false -29412,fa68fe28-9771-4658-9173-d3ec5f3cd198,AUTHORIZATION,,false -29413,fa68fe28-9771-4658-9173-d3ec5f3cd198,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29414,fa68fe28-9771-4658-9173-d3ec5f3cd198,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29415,fa68fe28-9771-4658-9173-d3ec5f3cd198,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29410,01a11077-ba22-4bfa-8777-348311286dc0,LIST_ACCOUNTS,hbciListAccounts,false +29411,01a11077-ba22-4bfa-8777-348311286dc0,LIST_TRANSACTIONS,hbciListTransactions,false +29412,01a11077-ba22-4bfa-8777-348311286dc0,AUTHORIZATION,,false +29413,01a11077-ba22-4bfa-8777-348311286dc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29414,01a11077-ba22-4bfa-8777-348311286dc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29415,01a11077-ba22-4bfa-8777-348311286dc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29416,1309d005-1d17-45f5-8a47-5fd1fe840e08,LIST_ACCOUNTS,xs2aListAccounts,true -29417,1309d005-1d17-45f5-8a47-5fd1fe840e08,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29417,1309d005-1d17-45f5-8a47-5fd1fe840e08,LIST_TRANSACTIONS,xs2aListTransactions,true 29418,1309d005-1d17-45f5-8a47-5fd1fe840e08,AUTHORIZATION,,true 29419,1309d005-1d17-45f5-8a47-5fd1fe840e08,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29420,1309d005-1d17-45f5-8a47-5fd1fe840e08,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29421,1309d005-1d17-45f5-8a47-5fd1fe840e08,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29422,3897a36d-bd65-44ed-a79a-5cb4222f9d99,LIST_ACCOUNTS,hbciListAccounts,false -29423,3897a36d-bd65-44ed-a79a-5cb4222f9d99,LIST_TRANSACTIONS,hbciListTransactions,false -29424,3897a36d-bd65-44ed-a79a-5cb4222f9d99,AUTHORIZATION,,false -29425,3897a36d-bd65-44ed-a79a-5cb4222f9d99,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29426,3897a36d-bd65-44ed-a79a-5cb4222f9d99,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29427,3897a36d-bd65-44ed-a79a-5cb4222f9d99,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29422,8637a611-056c-4271-8255-ca71bc5632b5,LIST_ACCOUNTS,hbciListAccounts,false +29423,8637a611-056c-4271-8255-ca71bc5632b5,LIST_TRANSACTIONS,hbciListTransactions,false +29424,8637a611-056c-4271-8255-ca71bc5632b5,AUTHORIZATION,,false +29425,8637a611-056c-4271-8255-ca71bc5632b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29426,8637a611-056c-4271-8255-ca71bc5632b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29427,8637a611-056c-4271-8255-ca71bc5632b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29428,112236fb-6934-4ef7-bfaf-f4e4446d985a,LIST_ACCOUNTS,xs2aListAccounts,true -29429,112236fb-6934-4ef7-bfaf-f4e4446d985a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29429,112236fb-6934-4ef7-bfaf-f4e4446d985a,LIST_TRANSACTIONS,xs2aListTransactions,true 29430,112236fb-6934-4ef7-bfaf-f4e4446d985a,AUTHORIZATION,,true 29431,112236fb-6934-4ef7-bfaf-f4e4446d985a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29432,112236fb-6934-4ef7-bfaf-f4e4446d985a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29433,112236fb-6934-4ef7-bfaf-f4e4446d985a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29434,6090b2c4-5e49-4edd-a7b1-b29cbd0e4ae1,LIST_ACCOUNTS,hbciListAccounts,false -29435,6090b2c4-5e49-4edd-a7b1-b29cbd0e4ae1,LIST_TRANSACTIONS,hbciListTransactions,false -29436,6090b2c4-5e49-4edd-a7b1-b29cbd0e4ae1,AUTHORIZATION,,false -29437,6090b2c4-5e49-4edd-a7b1-b29cbd0e4ae1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29438,6090b2c4-5e49-4edd-a7b1-b29cbd0e4ae1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29439,6090b2c4-5e49-4edd-a7b1-b29cbd0e4ae1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29434,e1ef415e-68cf-48e1-a1ab-469a54f1a168,LIST_ACCOUNTS,hbciListAccounts,false +29435,e1ef415e-68cf-48e1-a1ab-469a54f1a168,LIST_TRANSACTIONS,hbciListTransactions,false +29436,e1ef415e-68cf-48e1-a1ab-469a54f1a168,AUTHORIZATION,,false +29437,e1ef415e-68cf-48e1-a1ab-469a54f1a168,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29438,e1ef415e-68cf-48e1-a1ab-469a54f1a168,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29439,e1ef415e-68cf-48e1-a1ab-469a54f1a168,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29440,806a47c3-de46-4964-b196-7b14985a80a7,LIST_ACCOUNTS,xs2aListAccounts,true -29441,806a47c3-de46-4964-b196-7b14985a80a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29441,806a47c3-de46-4964-b196-7b14985a80a7,LIST_TRANSACTIONS,xs2aListTransactions,true 29442,806a47c3-de46-4964-b196-7b14985a80a7,AUTHORIZATION,,true 29443,806a47c3-de46-4964-b196-7b14985a80a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29444,806a47c3-de46-4964-b196-7b14985a80a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29445,806a47c3-de46-4964-b196-7b14985a80a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29446,8f6a7c13-a44d-4d9e-a2b6-65643c4b99dd,LIST_ACCOUNTS,hbciListAccounts,false -29447,8f6a7c13-a44d-4d9e-a2b6-65643c4b99dd,LIST_TRANSACTIONS,hbciListTransactions,false -29448,8f6a7c13-a44d-4d9e-a2b6-65643c4b99dd,AUTHORIZATION,,false -29449,8f6a7c13-a44d-4d9e-a2b6-65643c4b99dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29450,8f6a7c13-a44d-4d9e-a2b6-65643c4b99dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29451,8f6a7c13-a44d-4d9e-a2b6-65643c4b99dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29446,1c9d8480-5236-4a76-b23b-76a1e3ec5598,LIST_ACCOUNTS,hbciListAccounts,false +29447,1c9d8480-5236-4a76-b23b-76a1e3ec5598,LIST_TRANSACTIONS,hbciListTransactions,false +29448,1c9d8480-5236-4a76-b23b-76a1e3ec5598,AUTHORIZATION,,false +29449,1c9d8480-5236-4a76-b23b-76a1e3ec5598,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29450,1c9d8480-5236-4a76-b23b-76a1e3ec5598,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29451,1c9d8480-5236-4a76-b23b-76a1e3ec5598,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29452,dddb52aa-88bd-4577-96e1-8eafeeffa879,LIST_ACCOUNTS,xs2aListAccounts,true -29453,dddb52aa-88bd-4577-96e1-8eafeeffa879,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29453,dddb52aa-88bd-4577-96e1-8eafeeffa879,LIST_TRANSACTIONS,xs2aListTransactions,true 29454,dddb52aa-88bd-4577-96e1-8eafeeffa879,AUTHORIZATION,,true 29455,dddb52aa-88bd-4577-96e1-8eafeeffa879,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29456,dddb52aa-88bd-4577-96e1-8eafeeffa879,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29457,dddb52aa-88bd-4577-96e1-8eafeeffa879,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29458,f25236f2-4cca-4e4c-bae8-6bd745ee2181,LIST_ACCOUNTS,hbciListAccounts,false -29459,f25236f2-4cca-4e4c-bae8-6bd745ee2181,LIST_TRANSACTIONS,hbciListTransactions,false -29460,f25236f2-4cca-4e4c-bae8-6bd745ee2181,AUTHORIZATION,,false -29461,f25236f2-4cca-4e4c-bae8-6bd745ee2181,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29462,f25236f2-4cca-4e4c-bae8-6bd745ee2181,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29463,f25236f2-4cca-4e4c-bae8-6bd745ee2181,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29458,778e13d8-b386-4b62-bbdf-0b7d65d5ca20,LIST_ACCOUNTS,hbciListAccounts,false +29459,778e13d8-b386-4b62-bbdf-0b7d65d5ca20,LIST_TRANSACTIONS,hbciListTransactions,false +29460,778e13d8-b386-4b62-bbdf-0b7d65d5ca20,AUTHORIZATION,,false +29461,778e13d8-b386-4b62-bbdf-0b7d65d5ca20,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29462,778e13d8-b386-4b62-bbdf-0b7d65d5ca20,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29463,778e13d8-b386-4b62-bbdf-0b7d65d5ca20,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29464,85850351-e5ac-4491-8295-b0ebf37a2da5,LIST_ACCOUNTS,xs2aListAccounts,true -29465,85850351-e5ac-4491-8295-b0ebf37a2da5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29465,85850351-e5ac-4491-8295-b0ebf37a2da5,LIST_TRANSACTIONS,xs2aListTransactions,true 29466,85850351-e5ac-4491-8295-b0ebf37a2da5,AUTHORIZATION,,true 29467,85850351-e5ac-4491-8295-b0ebf37a2da5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29468,85850351-e5ac-4491-8295-b0ebf37a2da5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29469,85850351-e5ac-4491-8295-b0ebf37a2da5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29470,b5fdecbc-dd89-4e07-ae47-2238e2e83f2c,LIST_ACCOUNTS,hbciListAccounts,false -29471,b5fdecbc-dd89-4e07-ae47-2238e2e83f2c,LIST_TRANSACTIONS,hbciListTransactions,false -29472,b5fdecbc-dd89-4e07-ae47-2238e2e83f2c,AUTHORIZATION,,false -29473,b5fdecbc-dd89-4e07-ae47-2238e2e83f2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29474,b5fdecbc-dd89-4e07-ae47-2238e2e83f2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29475,b5fdecbc-dd89-4e07-ae47-2238e2e83f2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29470,50f5ac7f-9f7d-49ed-a538-28ad7a7d0294,LIST_ACCOUNTS,hbciListAccounts,false +29471,50f5ac7f-9f7d-49ed-a538-28ad7a7d0294,LIST_TRANSACTIONS,hbciListTransactions,false +29472,50f5ac7f-9f7d-49ed-a538-28ad7a7d0294,AUTHORIZATION,,false +29473,50f5ac7f-9f7d-49ed-a538-28ad7a7d0294,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29474,50f5ac7f-9f7d-49ed-a538-28ad7a7d0294,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29475,50f5ac7f-9f7d-49ed-a538-28ad7a7d0294,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29476,2f89eb41-6ef9-4dee-b0b8-9f7ae5d8b2ef,LIST_ACCOUNTS,xs2aListAccounts,true -29477,2f89eb41-6ef9-4dee-b0b8-9f7ae5d8b2ef,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29477,2f89eb41-6ef9-4dee-b0b8-9f7ae5d8b2ef,LIST_TRANSACTIONS,xs2aListTransactions,true 29478,2f89eb41-6ef9-4dee-b0b8-9f7ae5d8b2ef,AUTHORIZATION,,true 29479,2f89eb41-6ef9-4dee-b0b8-9f7ae5d8b2ef,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29480,2f89eb41-6ef9-4dee-b0b8-9f7ae5d8b2ef,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29481,2f89eb41-6ef9-4dee-b0b8-9f7ae5d8b2ef,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29482,1f7aee47-2471-4860-a3cb-55324d8235fb,LIST_ACCOUNTS,hbciListAccounts,false -29483,1f7aee47-2471-4860-a3cb-55324d8235fb,LIST_TRANSACTIONS,hbciListTransactions,false -29484,1f7aee47-2471-4860-a3cb-55324d8235fb,AUTHORIZATION,,false -29485,1f7aee47-2471-4860-a3cb-55324d8235fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29486,1f7aee47-2471-4860-a3cb-55324d8235fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29487,1f7aee47-2471-4860-a3cb-55324d8235fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29482,3f625968-69e8-4544-9d39-27b17b2cfcba,LIST_ACCOUNTS,hbciListAccounts,false +29483,3f625968-69e8-4544-9d39-27b17b2cfcba,LIST_TRANSACTIONS,hbciListTransactions,false +29484,3f625968-69e8-4544-9d39-27b17b2cfcba,AUTHORIZATION,,false +29485,3f625968-69e8-4544-9d39-27b17b2cfcba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29486,3f625968-69e8-4544-9d39-27b17b2cfcba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29487,3f625968-69e8-4544-9d39-27b17b2cfcba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29488,510dbe29-52a6-46e2-9e13-de7c8f58ca55,LIST_ACCOUNTS,xs2aListAccounts,true -29489,510dbe29-52a6-46e2-9e13-de7c8f58ca55,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29489,510dbe29-52a6-46e2-9e13-de7c8f58ca55,LIST_TRANSACTIONS,xs2aListTransactions,true 29490,510dbe29-52a6-46e2-9e13-de7c8f58ca55,AUTHORIZATION,,true 29491,510dbe29-52a6-46e2-9e13-de7c8f58ca55,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29492,510dbe29-52a6-46e2-9e13-de7c8f58ca55,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29493,510dbe29-52a6-46e2-9e13-de7c8f58ca55,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29494,f20fe93d-4f66-4f7f-9cee-5cdd87c24b56,LIST_ACCOUNTS,hbciListAccounts,false -29495,f20fe93d-4f66-4f7f-9cee-5cdd87c24b56,LIST_TRANSACTIONS,hbciListTransactions,false -29496,f20fe93d-4f66-4f7f-9cee-5cdd87c24b56,AUTHORIZATION,,false -29497,f20fe93d-4f66-4f7f-9cee-5cdd87c24b56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29498,f20fe93d-4f66-4f7f-9cee-5cdd87c24b56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29499,f20fe93d-4f66-4f7f-9cee-5cdd87c24b56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29494,41b6a229-f18e-427a-9989-780d6509a726,LIST_ACCOUNTS,hbciListAccounts,false +29495,41b6a229-f18e-427a-9989-780d6509a726,LIST_TRANSACTIONS,hbciListTransactions,false +29496,41b6a229-f18e-427a-9989-780d6509a726,AUTHORIZATION,,false +29497,41b6a229-f18e-427a-9989-780d6509a726,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29498,41b6a229-f18e-427a-9989-780d6509a726,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29499,41b6a229-f18e-427a-9989-780d6509a726,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29500,bfee7514-d70e-41b4-822d-9e0ac994b08d,LIST_ACCOUNTS,xs2aListAccounts,true -29501,bfee7514-d70e-41b4-822d-9e0ac994b08d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29501,bfee7514-d70e-41b4-822d-9e0ac994b08d,LIST_TRANSACTIONS,xs2aListTransactions,true 29502,bfee7514-d70e-41b4-822d-9e0ac994b08d,AUTHORIZATION,,true 29503,bfee7514-d70e-41b4-822d-9e0ac994b08d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29504,bfee7514-d70e-41b4-822d-9e0ac994b08d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29505,bfee7514-d70e-41b4-822d-9e0ac994b08d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29506,2e360d61-19d7-4d95-9301-fd63f071c27a,LIST_ACCOUNTS,hbciListAccounts,false -29507,2e360d61-19d7-4d95-9301-fd63f071c27a,LIST_TRANSACTIONS,hbciListTransactions,false -29508,2e360d61-19d7-4d95-9301-fd63f071c27a,AUTHORIZATION,,false -29509,2e360d61-19d7-4d95-9301-fd63f071c27a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29510,2e360d61-19d7-4d95-9301-fd63f071c27a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29511,2e360d61-19d7-4d95-9301-fd63f071c27a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29506,2eec42b2-c4ea-41a4-b335-dc23afdc4d29,LIST_ACCOUNTS,hbciListAccounts,false +29507,2eec42b2-c4ea-41a4-b335-dc23afdc4d29,LIST_TRANSACTIONS,hbciListTransactions,false +29508,2eec42b2-c4ea-41a4-b335-dc23afdc4d29,AUTHORIZATION,,false +29509,2eec42b2-c4ea-41a4-b335-dc23afdc4d29,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29510,2eec42b2-c4ea-41a4-b335-dc23afdc4d29,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29511,2eec42b2-c4ea-41a4-b335-dc23afdc4d29,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29512,7f8b2ffa-18b8-4040-b8ef-e9e0a257a617,LIST_ACCOUNTS,xs2aListAccounts,true -29513,7f8b2ffa-18b8-4040-b8ef-e9e0a257a617,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29513,7f8b2ffa-18b8-4040-b8ef-e9e0a257a617,LIST_TRANSACTIONS,xs2aListTransactions,true 29514,7f8b2ffa-18b8-4040-b8ef-e9e0a257a617,AUTHORIZATION,,true 29515,7f8b2ffa-18b8-4040-b8ef-e9e0a257a617,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29516,7f8b2ffa-18b8-4040-b8ef-e9e0a257a617,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29517,7f8b2ffa-18b8-4040-b8ef-e9e0a257a617,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29518,57d0a61e-84f4-4fcd-8227-f7453cc498e3,LIST_ACCOUNTS,hbciListAccounts,false -29519,57d0a61e-84f4-4fcd-8227-f7453cc498e3,LIST_TRANSACTIONS,hbciListTransactions,false -29520,57d0a61e-84f4-4fcd-8227-f7453cc498e3,AUTHORIZATION,,false -29521,57d0a61e-84f4-4fcd-8227-f7453cc498e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29522,57d0a61e-84f4-4fcd-8227-f7453cc498e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29523,57d0a61e-84f4-4fcd-8227-f7453cc498e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29518,e8d93e45-655d-42e8-86d9-ba05e3e5cc16,LIST_ACCOUNTS,hbciListAccounts,false +29519,e8d93e45-655d-42e8-86d9-ba05e3e5cc16,LIST_TRANSACTIONS,hbciListTransactions,false +29520,e8d93e45-655d-42e8-86d9-ba05e3e5cc16,AUTHORIZATION,,false +29521,e8d93e45-655d-42e8-86d9-ba05e3e5cc16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29522,e8d93e45-655d-42e8-86d9-ba05e3e5cc16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29523,e8d93e45-655d-42e8-86d9-ba05e3e5cc16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29524,b3c24ebe-f304-46cd-b8a1-6e17718a0a4e,LIST_ACCOUNTS,xs2aListAccounts,true -29525,b3c24ebe-f304-46cd-b8a1-6e17718a0a4e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29525,b3c24ebe-f304-46cd-b8a1-6e17718a0a4e,LIST_TRANSACTIONS,xs2aListTransactions,true 29526,b3c24ebe-f304-46cd-b8a1-6e17718a0a4e,AUTHORIZATION,,true 29527,b3c24ebe-f304-46cd-b8a1-6e17718a0a4e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29528,b3c24ebe-f304-46cd-b8a1-6e17718a0a4e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29529,b3c24ebe-f304-46cd-b8a1-6e17718a0a4e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29530,2ed5542b-0656-4e8a-9748-79be01aedc78,LIST_ACCOUNTS,hbciListAccounts,false -29531,2ed5542b-0656-4e8a-9748-79be01aedc78,LIST_TRANSACTIONS,hbciListTransactions,false -29532,2ed5542b-0656-4e8a-9748-79be01aedc78,AUTHORIZATION,,false -29533,2ed5542b-0656-4e8a-9748-79be01aedc78,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29534,2ed5542b-0656-4e8a-9748-79be01aedc78,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29535,2ed5542b-0656-4e8a-9748-79be01aedc78,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29530,d8c5ca8d-1fe9-44d9-9c2e-8315f313a89f,LIST_ACCOUNTS,hbciListAccounts,false +29531,d8c5ca8d-1fe9-44d9-9c2e-8315f313a89f,LIST_TRANSACTIONS,hbciListTransactions,false +29532,d8c5ca8d-1fe9-44d9-9c2e-8315f313a89f,AUTHORIZATION,,false +29533,d8c5ca8d-1fe9-44d9-9c2e-8315f313a89f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29534,d8c5ca8d-1fe9-44d9-9c2e-8315f313a89f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29535,d8c5ca8d-1fe9-44d9-9c2e-8315f313a89f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29536,2a407647-741b-4087-8ddf-c603d99abc52,LIST_ACCOUNTS,xs2aListAccounts,true -29537,2a407647-741b-4087-8ddf-c603d99abc52,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29537,2a407647-741b-4087-8ddf-c603d99abc52,LIST_TRANSACTIONS,xs2aListTransactions,true 29538,2a407647-741b-4087-8ddf-c603d99abc52,AUTHORIZATION,,true 29539,2a407647-741b-4087-8ddf-c603d99abc52,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29540,2a407647-741b-4087-8ddf-c603d99abc52,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29541,2a407647-741b-4087-8ddf-c603d99abc52,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29542,7e8da164-f4f6-4d9b-b07b-7d05ac53da96,LIST_ACCOUNTS,hbciListAccounts,false -29543,7e8da164-f4f6-4d9b-b07b-7d05ac53da96,LIST_TRANSACTIONS,hbciListTransactions,false -29544,7e8da164-f4f6-4d9b-b07b-7d05ac53da96,AUTHORIZATION,,false -29545,7e8da164-f4f6-4d9b-b07b-7d05ac53da96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29546,7e8da164-f4f6-4d9b-b07b-7d05ac53da96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29547,7e8da164-f4f6-4d9b-b07b-7d05ac53da96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29542,5ad5ef23-2834-4bee-902c-c817eb2c3738,LIST_ACCOUNTS,hbciListAccounts,false +29543,5ad5ef23-2834-4bee-902c-c817eb2c3738,LIST_TRANSACTIONS,hbciListTransactions,false +29544,5ad5ef23-2834-4bee-902c-c817eb2c3738,AUTHORIZATION,,false +29545,5ad5ef23-2834-4bee-902c-c817eb2c3738,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29546,5ad5ef23-2834-4bee-902c-c817eb2c3738,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29547,5ad5ef23-2834-4bee-902c-c817eb2c3738,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29548,8d5c3b8d-ebc2-4e23-bfdb-c4a2d52c95d4,LIST_ACCOUNTS,xs2aListAccounts,true -29549,8d5c3b8d-ebc2-4e23-bfdb-c4a2d52c95d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29549,8d5c3b8d-ebc2-4e23-bfdb-c4a2d52c95d4,LIST_TRANSACTIONS,xs2aListTransactions,true 29550,8d5c3b8d-ebc2-4e23-bfdb-c4a2d52c95d4,AUTHORIZATION,,true 29551,8d5c3b8d-ebc2-4e23-bfdb-c4a2d52c95d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29552,8d5c3b8d-ebc2-4e23-bfdb-c4a2d52c95d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29553,8d5c3b8d-ebc2-4e23-bfdb-c4a2d52c95d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29554,450feab8-032d-4a89-8fee-4dbb91221a7c,LIST_ACCOUNTS,hbciListAccounts,false -29555,450feab8-032d-4a89-8fee-4dbb91221a7c,LIST_TRANSACTIONS,hbciListTransactions,false -29556,450feab8-032d-4a89-8fee-4dbb91221a7c,AUTHORIZATION,,false -29557,450feab8-032d-4a89-8fee-4dbb91221a7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29558,450feab8-032d-4a89-8fee-4dbb91221a7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29559,450feab8-032d-4a89-8fee-4dbb91221a7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29554,572bf744-83a0-4965-a743-b489080161fc,LIST_ACCOUNTS,hbciListAccounts,false +29555,572bf744-83a0-4965-a743-b489080161fc,LIST_TRANSACTIONS,hbciListTransactions,false +29556,572bf744-83a0-4965-a743-b489080161fc,AUTHORIZATION,,false +29557,572bf744-83a0-4965-a743-b489080161fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29558,572bf744-83a0-4965-a743-b489080161fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29559,572bf744-83a0-4965-a743-b489080161fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29560,73f44759-16a3-4689-8fc2-90ec601737d2,LIST_ACCOUNTS,xs2aListAccounts,true -29561,73f44759-16a3-4689-8fc2-90ec601737d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29561,73f44759-16a3-4689-8fc2-90ec601737d2,LIST_TRANSACTIONS,xs2aListTransactions,true 29562,73f44759-16a3-4689-8fc2-90ec601737d2,AUTHORIZATION,,true 29563,73f44759-16a3-4689-8fc2-90ec601737d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29564,73f44759-16a3-4689-8fc2-90ec601737d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29565,73f44759-16a3-4689-8fc2-90ec601737d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29566,f0853639-0f07-4d60-860e-8f79446c4933,LIST_ACCOUNTS,hbciListAccounts,false -29567,f0853639-0f07-4d60-860e-8f79446c4933,LIST_TRANSACTIONS,hbciListTransactions,false -29568,f0853639-0f07-4d60-860e-8f79446c4933,AUTHORIZATION,,false -29569,f0853639-0f07-4d60-860e-8f79446c4933,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29570,f0853639-0f07-4d60-860e-8f79446c4933,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29571,f0853639-0f07-4d60-860e-8f79446c4933,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29566,ad03e83f-9f44-48b3-9ba3-60a94b0211f6,LIST_ACCOUNTS,hbciListAccounts,false +29567,ad03e83f-9f44-48b3-9ba3-60a94b0211f6,LIST_TRANSACTIONS,hbciListTransactions,false +29568,ad03e83f-9f44-48b3-9ba3-60a94b0211f6,AUTHORIZATION,,false +29569,ad03e83f-9f44-48b3-9ba3-60a94b0211f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29570,ad03e83f-9f44-48b3-9ba3-60a94b0211f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29571,ad03e83f-9f44-48b3-9ba3-60a94b0211f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29572,52143774-2cf7-482a-b362-72add9de1c77,LIST_ACCOUNTS,xs2aListAccounts,true -29573,52143774-2cf7-482a-b362-72add9de1c77,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29573,52143774-2cf7-482a-b362-72add9de1c77,LIST_TRANSACTIONS,xs2aListTransactions,true 29574,52143774-2cf7-482a-b362-72add9de1c77,AUTHORIZATION,,true 29575,52143774-2cf7-482a-b362-72add9de1c77,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29576,52143774-2cf7-482a-b362-72add9de1c77,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29577,52143774-2cf7-482a-b362-72add9de1c77,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29578,db53a767-5121-4d18-8bbc-4594dcd1caff,LIST_ACCOUNTS,hbciListAccounts,false -29579,db53a767-5121-4d18-8bbc-4594dcd1caff,LIST_TRANSACTIONS,hbciListTransactions,false -29580,db53a767-5121-4d18-8bbc-4594dcd1caff,AUTHORIZATION,,false -29581,db53a767-5121-4d18-8bbc-4594dcd1caff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29582,db53a767-5121-4d18-8bbc-4594dcd1caff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29583,db53a767-5121-4d18-8bbc-4594dcd1caff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29578,f770de07-7682-43b8-8868-3ba491dcff22,LIST_ACCOUNTS,hbciListAccounts,false +29579,f770de07-7682-43b8-8868-3ba491dcff22,LIST_TRANSACTIONS,hbciListTransactions,false +29580,f770de07-7682-43b8-8868-3ba491dcff22,AUTHORIZATION,,false +29581,f770de07-7682-43b8-8868-3ba491dcff22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29582,f770de07-7682-43b8-8868-3ba491dcff22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29583,f770de07-7682-43b8-8868-3ba491dcff22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29584,b5d81533-ebc4-4248-8c4a-3fc248ef202b,LIST_ACCOUNTS,xs2aListAccounts,true -29585,b5d81533-ebc4-4248-8c4a-3fc248ef202b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29585,b5d81533-ebc4-4248-8c4a-3fc248ef202b,LIST_TRANSACTIONS,xs2aListTransactions,true 29586,b5d81533-ebc4-4248-8c4a-3fc248ef202b,AUTHORIZATION,,true 29587,b5d81533-ebc4-4248-8c4a-3fc248ef202b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29588,b5d81533-ebc4-4248-8c4a-3fc248ef202b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29589,b5d81533-ebc4-4248-8c4a-3fc248ef202b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29590,c60ecb36-d8fc-4506-b95c-b4e126bf2d7d,LIST_ACCOUNTS,hbciListAccounts,false -29591,c60ecb36-d8fc-4506-b95c-b4e126bf2d7d,LIST_TRANSACTIONS,hbciListTransactions,false -29592,c60ecb36-d8fc-4506-b95c-b4e126bf2d7d,AUTHORIZATION,,false -29593,c60ecb36-d8fc-4506-b95c-b4e126bf2d7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29594,c60ecb36-d8fc-4506-b95c-b4e126bf2d7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29595,c60ecb36-d8fc-4506-b95c-b4e126bf2d7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29590,d0727e53-9212-43eb-ae0a-6bc4a6b3014d,LIST_ACCOUNTS,hbciListAccounts,false +29591,d0727e53-9212-43eb-ae0a-6bc4a6b3014d,LIST_TRANSACTIONS,hbciListTransactions,false +29592,d0727e53-9212-43eb-ae0a-6bc4a6b3014d,AUTHORIZATION,,false +29593,d0727e53-9212-43eb-ae0a-6bc4a6b3014d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29594,d0727e53-9212-43eb-ae0a-6bc4a6b3014d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29595,d0727e53-9212-43eb-ae0a-6bc4a6b3014d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29596,dcac2389-a5dc-4369-b524-ab8266baba02,LIST_ACCOUNTS,xs2aListAccounts,true -29597,dcac2389-a5dc-4369-b524-ab8266baba02,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29597,dcac2389-a5dc-4369-b524-ab8266baba02,LIST_TRANSACTIONS,xs2aListTransactions,true 29598,dcac2389-a5dc-4369-b524-ab8266baba02,AUTHORIZATION,,true 29599,dcac2389-a5dc-4369-b524-ab8266baba02,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29600,dcac2389-a5dc-4369-b524-ab8266baba02,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29601,dcac2389-a5dc-4369-b524-ab8266baba02,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29602,d4260857-11db-482d-9521-5f222c19af27,LIST_ACCOUNTS,hbciListAccounts,false -29603,d4260857-11db-482d-9521-5f222c19af27,LIST_TRANSACTIONS,hbciListTransactions,false -29604,d4260857-11db-482d-9521-5f222c19af27,AUTHORIZATION,,false -29605,d4260857-11db-482d-9521-5f222c19af27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29606,d4260857-11db-482d-9521-5f222c19af27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29607,d4260857-11db-482d-9521-5f222c19af27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29602,f0b73e14-ad95-4d48-9a61-1cfa871731e8,LIST_ACCOUNTS,hbciListAccounts,false +29603,f0b73e14-ad95-4d48-9a61-1cfa871731e8,LIST_TRANSACTIONS,hbciListTransactions,false +29604,f0b73e14-ad95-4d48-9a61-1cfa871731e8,AUTHORIZATION,,false +29605,f0b73e14-ad95-4d48-9a61-1cfa871731e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29606,f0b73e14-ad95-4d48-9a61-1cfa871731e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29607,f0b73e14-ad95-4d48-9a61-1cfa871731e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29608,1c9df1dc-ef23-49d6-ab30-005b4bf05764,LIST_ACCOUNTS,xs2aListAccounts,true -29609,1c9df1dc-ef23-49d6-ab30-005b4bf05764,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29609,1c9df1dc-ef23-49d6-ab30-005b4bf05764,LIST_TRANSACTIONS,xs2aListTransactions,true 29610,1c9df1dc-ef23-49d6-ab30-005b4bf05764,AUTHORIZATION,,true 29611,1c9df1dc-ef23-49d6-ab30-005b4bf05764,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29612,1c9df1dc-ef23-49d6-ab30-005b4bf05764,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29613,1c9df1dc-ef23-49d6-ab30-005b4bf05764,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29614,a573cde9-881d-46fc-a2e1-774ae4bdd428,LIST_ACCOUNTS,hbciListAccounts,false -29615,a573cde9-881d-46fc-a2e1-774ae4bdd428,LIST_TRANSACTIONS,hbciListTransactions,false -29616,a573cde9-881d-46fc-a2e1-774ae4bdd428,AUTHORIZATION,,false -29617,a573cde9-881d-46fc-a2e1-774ae4bdd428,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29618,a573cde9-881d-46fc-a2e1-774ae4bdd428,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29619,a573cde9-881d-46fc-a2e1-774ae4bdd428,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29614,9d5c8cc7-22a2-4b49-be54-888b77c87d74,LIST_ACCOUNTS,hbciListAccounts,false +29615,9d5c8cc7-22a2-4b49-be54-888b77c87d74,LIST_TRANSACTIONS,hbciListTransactions,false +29616,9d5c8cc7-22a2-4b49-be54-888b77c87d74,AUTHORIZATION,,false +29617,9d5c8cc7-22a2-4b49-be54-888b77c87d74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29618,9d5c8cc7-22a2-4b49-be54-888b77c87d74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29619,9d5c8cc7-22a2-4b49-be54-888b77c87d74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29620,a121850f-0e70-4f4e-9c06-e3a38a0c09f8,LIST_ACCOUNTS,xs2aListAccounts,true -29621,a121850f-0e70-4f4e-9c06-e3a38a0c09f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29621,a121850f-0e70-4f4e-9c06-e3a38a0c09f8,LIST_TRANSACTIONS,xs2aListTransactions,true 29622,a121850f-0e70-4f4e-9c06-e3a38a0c09f8,AUTHORIZATION,,true 29623,a121850f-0e70-4f4e-9c06-e3a38a0c09f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29624,a121850f-0e70-4f4e-9c06-e3a38a0c09f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29625,a121850f-0e70-4f4e-9c06-e3a38a0c09f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29626,d5aa4b5e-df6d-47f0-8dcf-ef1a39c35ed2,LIST_ACCOUNTS,hbciListAccounts,false -29627,d5aa4b5e-df6d-47f0-8dcf-ef1a39c35ed2,LIST_TRANSACTIONS,hbciListTransactions,false -29628,d5aa4b5e-df6d-47f0-8dcf-ef1a39c35ed2,AUTHORIZATION,,false -29629,d5aa4b5e-df6d-47f0-8dcf-ef1a39c35ed2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29630,d5aa4b5e-df6d-47f0-8dcf-ef1a39c35ed2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29631,d5aa4b5e-df6d-47f0-8dcf-ef1a39c35ed2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29626,a3cd6abb-21dd-4b5e-b768-5fdb8acae90c,LIST_ACCOUNTS,hbciListAccounts,false +29627,a3cd6abb-21dd-4b5e-b768-5fdb8acae90c,LIST_TRANSACTIONS,hbciListTransactions,false +29628,a3cd6abb-21dd-4b5e-b768-5fdb8acae90c,AUTHORIZATION,,false +29629,a3cd6abb-21dd-4b5e-b768-5fdb8acae90c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29630,a3cd6abb-21dd-4b5e-b768-5fdb8acae90c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29631,a3cd6abb-21dd-4b5e-b768-5fdb8acae90c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29632,0207c5cb-6921-4c7b-953f-d7002593866c,LIST_ACCOUNTS,xs2aListAccounts,true -29633,0207c5cb-6921-4c7b-953f-d7002593866c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29633,0207c5cb-6921-4c7b-953f-d7002593866c,LIST_TRANSACTIONS,xs2aListTransactions,true 29634,0207c5cb-6921-4c7b-953f-d7002593866c,AUTHORIZATION,,true 29635,0207c5cb-6921-4c7b-953f-d7002593866c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29636,0207c5cb-6921-4c7b-953f-d7002593866c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29637,0207c5cb-6921-4c7b-953f-d7002593866c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29638,13567a5c-65ad-48c3-8cae-ba18c5e91d68,LIST_ACCOUNTS,hbciListAccounts,false -29639,13567a5c-65ad-48c3-8cae-ba18c5e91d68,LIST_TRANSACTIONS,hbciListTransactions,false -29640,13567a5c-65ad-48c3-8cae-ba18c5e91d68,AUTHORIZATION,,false -29641,13567a5c-65ad-48c3-8cae-ba18c5e91d68,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29642,13567a5c-65ad-48c3-8cae-ba18c5e91d68,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29643,13567a5c-65ad-48c3-8cae-ba18c5e91d68,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29638,21162693-e857-48e3-9caa-4cb55c046eb9,LIST_ACCOUNTS,hbciListAccounts,false +29639,21162693-e857-48e3-9caa-4cb55c046eb9,LIST_TRANSACTIONS,hbciListTransactions,false +29640,21162693-e857-48e3-9caa-4cb55c046eb9,AUTHORIZATION,,false +29641,21162693-e857-48e3-9caa-4cb55c046eb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29642,21162693-e857-48e3-9caa-4cb55c046eb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29643,21162693-e857-48e3-9caa-4cb55c046eb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29644,19678936-fe89-4648-96c2-9db84bc7b860,LIST_ACCOUNTS,xs2aListAccounts,true -29645,19678936-fe89-4648-96c2-9db84bc7b860,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29645,19678936-fe89-4648-96c2-9db84bc7b860,LIST_TRANSACTIONS,xs2aListTransactions,true 29646,19678936-fe89-4648-96c2-9db84bc7b860,AUTHORIZATION,,true 29647,19678936-fe89-4648-96c2-9db84bc7b860,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29648,19678936-fe89-4648-96c2-9db84bc7b860,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29649,19678936-fe89-4648-96c2-9db84bc7b860,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29650,40d13327-911d-429b-a943-c207ee37e267,LIST_ACCOUNTS,hbciListAccounts,false -29651,40d13327-911d-429b-a943-c207ee37e267,LIST_TRANSACTIONS,hbciListTransactions,false -29652,40d13327-911d-429b-a943-c207ee37e267,AUTHORIZATION,,false -29653,40d13327-911d-429b-a943-c207ee37e267,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29654,40d13327-911d-429b-a943-c207ee37e267,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29655,40d13327-911d-429b-a943-c207ee37e267,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29650,0074fe46-8631-4249-9f16-536dd47c168c,LIST_ACCOUNTS,hbciListAccounts,false +29651,0074fe46-8631-4249-9f16-536dd47c168c,LIST_TRANSACTIONS,hbciListTransactions,false +29652,0074fe46-8631-4249-9f16-536dd47c168c,AUTHORIZATION,,false +29653,0074fe46-8631-4249-9f16-536dd47c168c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29654,0074fe46-8631-4249-9f16-536dd47c168c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29655,0074fe46-8631-4249-9f16-536dd47c168c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29656,5f0fe5b0-99e1-45a4-9dd2-50d6b305125e,LIST_ACCOUNTS,xs2aListAccounts,true -29657,5f0fe5b0-99e1-45a4-9dd2-50d6b305125e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29657,5f0fe5b0-99e1-45a4-9dd2-50d6b305125e,LIST_TRANSACTIONS,xs2aListTransactions,true 29658,5f0fe5b0-99e1-45a4-9dd2-50d6b305125e,AUTHORIZATION,,true 29659,5f0fe5b0-99e1-45a4-9dd2-50d6b305125e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29660,5f0fe5b0-99e1-45a4-9dd2-50d6b305125e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29661,5f0fe5b0-99e1-45a4-9dd2-50d6b305125e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29662,99a075ed-f0d0-41e7-8583-84a7ee8edb3e,LIST_ACCOUNTS,hbciListAccounts,false -29663,99a075ed-f0d0-41e7-8583-84a7ee8edb3e,LIST_TRANSACTIONS,hbciListTransactions,false -29664,99a075ed-f0d0-41e7-8583-84a7ee8edb3e,AUTHORIZATION,,false -29665,99a075ed-f0d0-41e7-8583-84a7ee8edb3e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29666,99a075ed-f0d0-41e7-8583-84a7ee8edb3e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29667,99a075ed-f0d0-41e7-8583-84a7ee8edb3e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29662,e5f33fef-990d-4d21-bc9f-7d581af05fba,LIST_ACCOUNTS,hbciListAccounts,false +29663,e5f33fef-990d-4d21-bc9f-7d581af05fba,LIST_TRANSACTIONS,hbciListTransactions,false +29664,e5f33fef-990d-4d21-bc9f-7d581af05fba,AUTHORIZATION,,false +29665,e5f33fef-990d-4d21-bc9f-7d581af05fba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29666,e5f33fef-990d-4d21-bc9f-7d581af05fba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29667,e5f33fef-990d-4d21-bc9f-7d581af05fba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29668,d43bbe41-a714-4959-86c4-12847176ca72,LIST_ACCOUNTS,xs2aListAccounts,true -29669,d43bbe41-a714-4959-86c4-12847176ca72,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29669,d43bbe41-a714-4959-86c4-12847176ca72,LIST_TRANSACTIONS,xs2aListTransactions,true 29670,d43bbe41-a714-4959-86c4-12847176ca72,AUTHORIZATION,,true 29671,d43bbe41-a714-4959-86c4-12847176ca72,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29672,d43bbe41-a714-4959-86c4-12847176ca72,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29673,d43bbe41-a714-4959-86c4-12847176ca72,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29674,b9b1c930-4fc1-466a-a978-23c6ed1e0149,LIST_ACCOUNTS,hbciListAccounts,false -29675,b9b1c930-4fc1-466a-a978-23c6ed1e0149,LIST_TRANSACTIONS,hbciListTransactions,false -29676,b9b1c930-4fc1-466a-a978-23c6ed1e0149,AUTHORIZATION,,false -29677,b9b1c930-4fc1-466a-a978-23c6ed1e0149,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29678,b9b1c930-4fc1-466a-a978-23c6ed1e0149,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29679,b9b1c930-4fc1-466a-a978-23c6ed1e0149,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29674,f33d0fd3-1f32-46c0-bc5b-2f931be6cb8f,LIST_ACCOUNTS,hbciListAccounts,false +29675,f33d0fd3-1f32-46c0-bc5b-2f931be6cb8f,LIST_TRANSACTIONS,hbciListTransactions,false +29676,f33d0fd3-1f32-46c0-bc5b-2f931be6cb8f,AUTHORIZATION,,false +29677,f33d0fd3-1f32-46c0-bc5b-2f931be6cb8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29678,f33d0fd3-1f32-46c0-bc5b-2f931be6cb8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29679,f33d0fd3-1f32-46c0-bc5b-2f931be6cb8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29680,bec5a06e-cbd2-4479-aa8e-1ee6d3716e2b,LIST_ACCOUNTS,xs2aListAccounts,true -29681,bec5a06e-cbd2-4479-aa8e-1ee6d3716e2b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29681,bec5a06e-cbd2-4479-aa8e-1ee6d3716e2b,LIST_TRANSACTIONS,xs2aListTransactions,true 29682,bec5a06e-cbd2-4479-aa8e-1ee6d3716e2b,AUTHORIZATION,,true 29683,bec5a06e-cbd2-4479-aa8e-1ee6d3716e2b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29684,bec5a06e-cbd2-4479-aa8e-1ee6d3716e2b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29685,bec5a06e-cbd2-4479-aa8e-1ee6d3716e2b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29686,aa5ab7f4-f019-4526-924c-9fee7eaed8db,LIST_ACCOUNTS,hbciListAccounts,false -29687,aa5ab7f4-f019-4526-924c-9fee7eaed8db,LIST_TRANSACTIONS,hbciListTransactions,false -29688,aa5ab7f4-f019-4526-924c-9fee7eaed8db,AUTHORIZATION,,false -29689,aa5ab7f4-f019-4526-924c-9fee7eaed8db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29690,aa5ab7f4-f019-4526-924c-9fee7eaed8db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29691,aa5ab7f4-f019-4526-924c-9fee7eaed8db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29686,b108ffbd-fd19-469c-9955-1aecfb954972,LIST_ACCOUNTS,hbciListAccounts,false +29687,b108ffbd-fd19-469c-9955-1aecfb954972,LIST_TRANSACTIONS,hbciListTransactions,false +29688,b108ffbd-fd19-469c-9955-1aecfb954972,AUTHORIZATION,,false +29689,b108ffbd-fd19-469c-9955-1aecfb954972,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29690,b108ffbd-fd19-469c-9955-1aecfb954972,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29691,b108ffbd-fd19-469c-9955-1aecfb954972,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29692,7d5b74ad-4df7-41c4-8139-ed533c5f7a1c,LIST_ACCOUNTS,xs2aListAccounts,true -29693,7d5b74ad-4df7-41c4-8139-ed533c5f7a1c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29693,7d5b74ad-4df7-41c4-8139-ed533c5f7a1c,LIST_TRANSACTIONS,xs2aListTransactions,true 29694,7d5b74ad-4df7-41c4-8139-ed533c5f7a1c,AUTHORIZATION,,true 29695,7d5b74ad-4df7-41c4-8139-ed533c5f7a1c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29696,7d5b74ad-4df7-41c4-8139-ed533c5f7a1c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29697,7d5b74ad-4df7-41c4-8139-ed533c5f7a1c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29698,3545b977-5192-446c-bfe3-495286376295,LIST_ACCOUNTS,hbciListAccounts,false -29699,3545b977-5192-446c-bfe3-495286376295,LIST_TRANSACTIONS,hbciListTransactions,false -29700,3545b977-5192-446c-bfe3-495286376295,AUTHORIZATION,,false -29701,3545b977-5192-446c-bfe3-495286376295,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29702,3545b977-5192-446c-bfe3-495286376295,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29703,3545b977-5192-446c-bfe3-495286376295,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29698,de6f7551-6306-4785-bab6-45f70bf9723e,LIST_ACCOUNTS,hbciListAccounts,false +29699,de6f7551-6306-4785-bab6-45f70bf9723e,LIST_TRANSACTIONS,hbciListTransactions,false +29700,de6f7551-6306-4785-bab6-45f70bf9723e,AUTHORIZATION,,false +29701,de6f7551-6306-4785-bab6-45f70bf9723e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29702,de6f7551-6306-4785-bab6-45f70bf9723e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29703,de6f7551-6306-4785-bab6-45f70bf9723e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29704,2313a45b-e079-44a4-976b-3eeae6399124,LIST_ACCOUNTS,xs2aListAccounts,true -29705,2313a45b-e079-44a4-976b-3eeae6399124,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29705,2313a45b-e079-44a4-976b-3eeae6399124,LIST_TRANSACTIONS,xs2aListTransactions,true 29706,2313a45b-e079-44a4-976b-3eeae6399124,AUTHORIZATION,,true 29707,2313a45b-e079-44a4-976b-3eeae6399124,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29708,2313a45b-e079-44a4-976b-3eeae6399124,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29709,2313a45b-e079-44a4-976b-3eeae6399124,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29710,15c3d0f3-3b1c-4c92-8041-e46580f58f62,LIST_ACCOUNTS,hbciListAccounts,false -29711,15c3d0f3-3b1c-4c92-8041-e46580f58f62,LIST_TRANSACTIONS,hbciListTransactions,false -29712,15c3d0f3-3b1c-4c92-8041-e46580f58f62,AUTHORIZATION,,false -29713,15c3d0f3-3b1c-4c92-8041-e46580f58f62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29714,15c3d0f3-3b1c-4c92-8041-e46580f58f62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29715,15c3d0f3-3b1c-4c92-8041-e46580f58f62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29710,7443c2bf-4ab5-4753-b5d4-defe18e08425,LIST_ACCOUNTS,hbciListAccounts,false +29711,7443c2bf-4ab5-4753-b5d4-defe18e08425,LIST_TRANSACTIONS,hbciListTransactions,false +29712,7443c2bf-4ab5-4753-b5d4-defe18e08425,AUTHORIZATION,,false +29713,7443c2bf-4ab5-4753-b5d4-defe18e08425,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29714,7443c2bf-4ab5-4753-b5d4-defe18e08425,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29715,7443c2bf-4ab5-4753-b5d4-defe18e08425,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29716,b5df86fc-a388-4239-8a2d-6b2b16afb3fe,LIST_ACCOUNTS,xs2aListAccounts,true -29717,b5df86fc-a388-4239-8a2d-6b2b16afb3fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29717,b5df86fc-a388-4239-8a2d-6b2b16afb3fe,LIST_TRANSACTIONS,xs2aListTransactions,true 29718,b5df86fc-a388-4239-8a2d-6b2b16afb3fe,AUTHORIZATION,,true 29719,b5df86fc-a388-4239-8a2d-6b2b16afb3fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29720,b5df86fc-a388-4239-8a2d-6b2b16afb3fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29721,b5df86fc-a388-4239-8a2d-6b2b16afb3fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29722,76a8165a-9951-4603-bc41-12415af56187,LIST_ACCOUNTS,hbciListAccounts,false -29723,76a8165a-9951-4603-bc41-12415af56187,LIST_TRANSACTIONS,hbciListTransactions,false -29724,76a8165a-9951-4603-bc41-12415af56187,AUTHORIZATION,,false -29725,76a8165a-9951-4603-bc41-12415af56187,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29726,76a8165a-9951-4603-bc41-12415af56187,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29727,76a8165a-9951-4603-bc41-12415af56187,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29722,ca8eb283-4184-4d02-809b-116bb62913dc,LIST_ACCOUNTS,hbciListAccounts,false +29723,ca8eb283-4184-4d02-809b-116bb62913dc,LIST_TRANSACTIONS,hbciListTransactions,false +29724,ca8eb283-4184-4d02-809b-116bb62913dc,AUTHORIZATION,,false +29725,ca8eb283-4184-4d02-809b-116bb62913dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29726,ca8eb283-4184-4d02-809b-116bb62913dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29727,ca8eb283-4184-4d02-809b-116bb62913dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29728,d923c211-5764-4ae9-9a20-e65eb412ac5c,LIST_ACCOUNTS,xs2aListAccounts,true -29729,d923c211-5764-4ae9-9a20-e65eb412ac5c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29729,d923c211-5764-4ae9-9a20-e65eb412ac5c,LIST_TRANSACTIONS,xs2aListTransactions,true 29730,d923c211-5764-4ae9-9a20-e65eb412ac5c,AUTHORIZATION,,true 29731,d923c211-5764-4ae9-9a20-e65eb412ac5c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29732,d923c211-5764-4ae9-9a20-e65eb412ac5c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29733,d923c211-5764-4ae9-9a20-e65eb412ac5c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29734,805131b9-e9b7-4946-b7fa-04e499c07ae1,LIST_ACCOUNTS,hbciListAccounts,false -29735,805131b9-e9b7-4946-b7fa-04e499c07ae1,LIST_TRANSACTIONS,hbciListTransactions,false -29736,805131b9-e9b7-4946-b7fa-04e499c07ae1,AUTHORIZATION,,false -29737,805131b9-e9b7-4946-b7fa-04e499c07ae1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29738,805131b9-e9b7-4946-b7fa-04e499c07ae1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29739,805131b9-e9b7-4946-b7fa-04e499c07ae1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29734,9b4b463e-3741-4e74-89ac-076f4a677d69,LIST_ACCOUNTS,hbciListAccounts,false +29735,9b4b463e-3741-4e74-89ac-076f4a677d69,LIST_TRANSACTIONS,hbciListTransactions,false +29736,9b4b463e-3741-4e74-89ac-076f4a677d69,AUTHORIZATION,,false +29737,9b4b463e-3741-4e74-89ac-076f4a677d69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29738,9b4b463e-3741-4e74-89ac-076f4a677d69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29739,9b4b463e-3741-4e74-89ac-076f4a677d69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29740,e8402798-9148-45f4-baa9-c9630787f074,LIST_ACCOUNTS,xs2aListAccounts,true -29741,e8402798-9148-45f4-baa9-c9630787f074,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29741,e8402798-9148-45f4-baa9-c9630787f074,LIST_TRANSACTIONS,xs2aListTransactions,true 29742,e8402798-9148-45f4-baa9-c9630787f074,AUTHORIZATION,,true 29743,e8402798-9148-45f4-baa9-c9630787f074,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29744,e8402798-9148-45f4-baa9-c9630787f074,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29745,e8402798-9148-45f4-baa9-c9630787f074,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29746,77cd369b-344f-4c2c-b27c-b446da688114,LIST_ACCOUNTS,hbciListAccounts,false -29747,77cd369b-344f-4c2c-b27c-b446da688114,LIST_TRANSACTIONS,hbciListTransactions,false -29748,77cd369b-344f-4c2c-b27c-b446da688114,AUTHORIZATION,,false -29749,77cd369b-344f-4c2c-b27c-b446da688114,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29750,77cd369b-344f-4c2c-b27c-b446da688114,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29751,77cd369b-344f-4c2c-b27c-b446da688114,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29746,48ee3fbb-dbc3-4178-9f39-1ea1c934faf3,LIST_ACCOUNTS,hbciListAccounts,false +29747,48ee3fbb-dbc3-4178-9f39-1ea1c934faf3,LIST_TRANSACTIONS,hbciListTransactions,false +29748,48ee3fbb-dbc3-4178-9f39-1ea1c934faf3,AUTHORIZATION,,false +29749,48ee3fbb-dbc3-4178-9f39-1ea1c934faf3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29750,48ee3fbb-dbc3-4178-9f39-1ea1c934faf3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29751,48ee3fbb-dbc3-4178-9f39-1ea1c934faf3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29752,38c899b9-13d5-4003-80dc-6fe3ce55e7bb,LIST_ACCOUNTS,xs2aListAccounts,true -29753,38c899b9-13d5-4003-80dc-6fe3ce55e7bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29753,38c899b9-13d5-4003-80dc-6fe3ce55e7bb,LIST_TRANSACTIONS,xs2aListTransactions,true 29754,38c899b9-13d5-4003-80dc-6fe3ce55e7bb,AUTHORIZATION,,true 29755,38c899b9-13d5-4003-80dc-6fe3ce55e7bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29756,38c899b9-13d5-4003-80dc-6fe3ce55e7bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29757,38c899b9-13d5-4003-80dc-6fe3ce55e7bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29758,be223441-a59c-43a3-88a3-62f803de4dcc,LIST_ACCOUNTS,hbciListAccounts,false -29759,be223441-a59c-43a3-88a3-62f803de4dcc,LIST_TRANSACTIONS,hbciListTransactions,false -29760,be223441-a59c-43a3-88a3-62f803de4dcc,AUTHORIZATION,,false -29761,be223441-a59c-43a3-88a3-62f803de4dcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29762,be223441-a59c-43a3-88a3-62f803de4dcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29763,be223441-a59c-43a3-88a3-62f803de4dcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29758,7c9f7806-71a5-475a-acf7-7954e0806deb,LIST_ACCOUNTS,hbciListAccounts,false +29759,7c9f7806-71a5-475a-acf7-7954e0806deb,LIST_TRANSACTIONS,hbciListTransactions,false +29760,7c9f7806-71a5-475a-acf7-7954e0806deb,AUTHORIZATION,,false +29761,7c9f7806-71a5-475a-acf7-7954e0806deb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29762,7c9f7806-71a5-475a-acf7-7954e0806deb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29763,7c9f7806-71a5-475a-acf7-7954e0806deb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29764,a180c957-d1b4-4f7d-85e6-9c94fd58ec14,LIST_ACCOUNTS,xs2aListAccounts,true -29765,a180c957-d1b4-4f7d-85e6-9c94fd58ec14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29765,a180c957-d1b4-4f7d-85e6-9c94fd58ec14,LIST_TRANSACTIONS,xs2aListTransactions,true 29766,a180c957-d1b4-4f7d-85e6-9c94fd58ec14,AUTHORIZATION,,true 29767,a180c957-d1b4-4f7d-85e6-9c94fd58ec14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29768,a180c957-d1b4-4f7d-85e6-9c94fd58ec14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29769,a180c957-d1b4-4f7d-85e6-9c94fd58ec14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29770,85dcc241-0bc3-4198-b4cd-af871df90cf1,LIST_ACCOUNTS,hbciListAccounts,false -29771,85dcc241-0bc3-4198-b4cd-af871df90cf1,LIST_TRANSACTIONS,hbciListTransactions,false -29772,85dcc241-0bc3-4198-b4cd-af871df90cf1,AUTHORIZATION,,false -29773,85dcc241-0bc3-4198-b4cd-af871df90cf1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29774,85dcc241-0bc3-4198-b4cd-af871df90cf1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29775,85dcc241-0bc3-4198-b4cd-af871df90cf1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29770,60dce502-b06a-4683-ba1a-b0eaa544c1b8,LIST_ACCOUNTS,hbciListAccounts,false +29771,60dce502-b06a-4683-ba1a-b0eaa544c1b8,LIST_TRANSACTIONS,hbciListTransactions,false +29772,60dce502-b06a-4683-ba1a-b0eaa544c1b8,AUTHORIZATION,,false +29773,60dce502-b06a-4683-ba1a-b0eaa544c1b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29774,60dce502-b06a-4683-ba1a-b0eaa544c1b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29775,60dce502-b06a-4683-ba1a-b0eaa544c1b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29776,dc637fa8-4908-47c1-a887-4271c91c2fea,LIST_ACCOUNTS,xs2aListAccounts,true -29777,dc637fa8-4908-47c1-a887-4271c91c2fea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29777,dc637fa8-4908-47c1-a887-4271c91c2fea,LIST_TRANSACTIONS,xs2aListTransactions,true 29778,dc637fa8-4908-47c1-a887-4271c91c2fea,AUTHORIZATION,,true 29779,dc637fa8-4908-47c1-a887-4271c91c2fea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29780,dc637fa8-4908-47c1-a887-4271c91c2fea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29781,dc637fa8-4908-47c1-a887-4271c91c2fea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29782,97118a6f-2e13-4580-85be-4a67438431ad,LIST_ACCOUNTS,hbciListAccounts,false -29783,97118a6f-2e13-4580-85be-4a67438431ad,LIST_TRANSACTIONS,hbciListTransactions,false -29784,97118a6f-2e13-4580-85be-4a67438431ad,AUTHORIZATION,,false -29785,97118a6f-2e13-4580-85be-4a67438431ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29786,97118a6f-2e13-4580-85be-4a67438431ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29787,97118a6f-2e13-4580-85be-4a67438431ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29782,a14f932c-1d13-4347-b9e3-a7b1e8a5cbcc,LIST_ACCOUNTS,hbciListAccounts,false +29783,a14f932c-1d13-4347-b9e3-a7b1e8a5cbcc,LIST_TRANSACTIONS,hbciListTransactions,false +29784,a14f932c-1d13-4347-b9e3-a7b1e8a5cbcc,AUTHORIZATION,,false +29785,a14f932c-1d13-4347-b9e3-a7b1e8a5cbcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29786,a14f932c-1d13-4347-b9e3-a7b1e8a5cbcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29787,a14f932c-1d13-4347-b9e3-a7b1e8a5cbcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29788,6663c9d5-3e3f-435e-b234-22b40fb5c4e2,LIST_ACCOUNTS,xs2aListAccounts,true -29789,6663c9d5-3e3f-435e-b234-22b40fb5c4e2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29789,6663c9d5-3e3f-435e-b234-22b40fb5c4e2,LIST_TRANSACTIONS,xs2aListTransactions,true 29790,6663c9d5-3e3f-435e-b234-22b40fb5c4e2,AUTHORIZATION,,true 29791,6663c9d5-3e3f-435e-b234-22b40fb5c4e2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29792,6663c9d5-3e3f-435e-b234-22b40fb5c4e2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29793,6663c9d5-3e3f-435e-b234-22b40fb5c4e2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29794,2ec89a44-e84d-4847-bd03-0a4645df6263,LIST_ACCOUNTS,hbciListAccounts,false -29795,2ec89a44-e84d-4847-bd03-0a4645df6263,LIST_TRANSACTIONS,hbciListTransactions,false -29796,2ec89a44-e84d-4847-bd03-0a4645df6263,AUTHORIZATION,,false -29797,2ec89a44-e84d-4847-bd03-0a4645df6263,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29798,2ec89a44-e84d-4847-bd03-0a4645df6263,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29799,2ec89a44-e84d-4847-bd03-0a4645df6263,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29794,3abd3dd9-9958-48bb-ac22-d7ea571d3ece,LIST_ACCOUNTS,hbciListAccounts,false +29795,3abd3dd9-9958-48bb-ac22-d7ea571d3ece,LIST_TRANSACTIONS,hbciListTransactions,false +29796,3abd3dd9-9958-48bb-ac22-d7ea571d3ece,AUTHORIZATION,,false +29797,3abd3dd9-9958-48bb-ac22-d7ea571d3ece,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29798,3abd3dd9-9958-48bb-ac22-d7ea571d3ece,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29799,3abd3dd9-9958-48bb-ac22-d7ea571d3ece,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29800,3c513479-29b1-4255-908f-f093045760d1,LIST_ACCOUNTS,xs2aListAccounts,true -29801,3c513479-29b1-4255-908f-f093045760d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29801,3c513479-29b1-4255-908f-f093045760d1,LIST_TRANSACTIONS,xs2aListTransactions,true 29802,3c513479-29b1-4255-908f-f093045760d1,AUTHORIZATION,,true 29803,3c513479-29b1-4255-908f-f093045760d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29804,3c513479-29b1-4255-908f-f093045760d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29805,3c513479-29b1-4255-908f-f093045760d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29806,e601644d-e2c3-4d71-a328-6c4160c63121,LIST_ACCOUNTS,hbciListAccounts,false -29807,e601644d-e2c3-4d71-a328-6c4160c63121,LIST_TRANSACTIONS,hbciListTransactions,false -29808,e601644d-e2c3-4d71-a328-6c4160c63121,AUTHORIZATION,,false -29809,e601644d-e2c3-4d71-a328-6c4160c63121,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29810,e601644d-e2c3-4d71-a328-6c4160c63121,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29811,e601644d-e2c3-4d71-a328-6c4160c63121,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29806,07571a4d-f99a-488a-83e9-adabcb7dc720,LIST_ACCOUNTS,hbciListAccounts,false +29807,07571a4d-f99a-488a-83e9-adabcb7dc720,LIST_TRANSACTIONS,hbciListTransactions,false +29808,07571a4d-f99a-488a-83e9-adabcb7dc720,AUTHORIZATION,,false +29809,07571a4d-f99a-488a-83e9-adabcb7dc720,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29810,07571a4d-f99a-488a-83e9-adabcb7dc720,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29811,07571a4d-f99a-488a-83e9-adabcb7dc720,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29812,fb797b5c-6f3a-4785-9d5c-a9e2a1807bd7,LIST_ACCOUNTS,xs2aListAccounts,true -29813,fb797b5c-6f3a-4785-9d5c-a9e2a1807bd7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29813,fb797b5c-6f3a-4785-9d5c-a9e2a1807bd7,LIST_TRANSACTIONS,xs2aListTransactions,true 29814,fb797b5c-6f3a-4785-9d5c-a9e2a1807bd7,AUTHORIZATION,,true 29815,fb797b5c-6f3a-4785-9d5c-a9e2a1807bd7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29816,fb797b5c-6f3a-4785-9d5c-a9e2a1807bd7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29817,fb797b5c-6f3a-4785-9d5c-a9e2a1807bd7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29818,9ecafcb2-2d87-4322-afda-f184e52bf33b,LIST_ACCOUNTS,hbciListAccounts,false -29819,9ecafcb2-2d87-4322-afda-f184e52bf33b,LIST_TRANSACTIONS,hbciListTransactions,false -29820,9ecafcb2-2d87-4322-afda-f184e52bf33b,AUTHORIZATION,,false -29821,9ecafcb2-2d87-4322-afda-f184e52bf33b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29822,9ecafcb2-2d87-4322-afda-f184e52bf33b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29823,9ecafcb2-2d87-4322-afda-f184e52bf33b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29818,feb96bcc-d297-46bf-a10a-f289461e74ad,LIST_ACCOUNTS,hbciListAccounts,false +29819,feb96bcc-d297-46bf-a10a-f289461e74ad,LIST_TRANSACTIONS,hbciListTransactions,false +29820,feb96bcc-d297-46bf-a10a-f289461e74ad,AUTHORIZATION,,false +29821,feb96bcc-d297-46bf-a10a-f289461e74ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29822,feb96bcc-d297-46bf-a10a-f289461e74ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29823,feb96bcc-d297-46bf-a10a-f289461e74ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29824,e63dadd7-ec3b-41d4-811e-78fa3824a0db,LIST_ACCOUNTS,xs2aListAccounts,true -29825,e63dadd7-ec3b-41d4-811e-78fa3824a0db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29825,e63dadd7-ec3b-41d4-811e-78fa3824a0db,LIST_TRANSACTIONS,xs2aListTransactions,true 29826,e63dadd7-ec3b-41d4-811e-78fa3824a0db,AUTHORIZATION,,true 29827,e63dadd7-ec3b-41d4-811e-78fa3824a0db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29828,e63dadd7-ec3b-41d4-811e-78fa3824a0db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29829,e63dadd7-ec3b-41d4-811e-78fa3824a0db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29830,a0e10ce9-8bbf-4e51-8b54-d4e9e841d98f,LIST_ACCOUNTS,hbciListAccounts,false -29831,a0e10ce9-8bbf-4e51-8b54-d4e9e841d98f,LIST_TRANSACTIONS,hbciListTransactions,false -29832,a0e10ce9-8bbf-4e51-8b54-d4e9e841d98f,AUTHORIZATION,,false -29833,a0e10ce9-8bbf-4e51-8b54-d4e9e841d98f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29834,a0e10ce9-8bbf-4e51-8b54-d4e9e841d98f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29835,a0e10ce9-8bbf-4e51-8b54-d4e9e841d98f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29830,fc59fee2-89f0-4ef5-bde1-2d3fd125f5ae,LIST_ACCOUNTS,hbciListAccounts,false +29831,fc59fee2-89f0-4ef5-bde1-2d3fd125f5ae,LIST_TRANSACTIONS,hbciListTransactions,false +29832,fc59fee2-89f0-4ef5-bde1-2d3fd125f5ae,AUTHORIZATION,,false +29833,fc59fee2-89f0-4ef5-bde1-2d3fd125f5ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29834,fc59fee2-89f0-4ef5-bde1-2d3fd125f5ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29835,fc59fee2-89f0-4ef5-bde1-2d3fd125f5ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29836,f98f63e9-3342-4f2b-b38c-9cf9109e9d0a,LIST_ACCOUNTS,xs2aListAccounts,true -29837,f98f63e9-3342-4f2b-b38c-9cf9109e9d0a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29837,f98f63e9-3342-4f2b-b38c-9cf9109e9d0a,LIST_TRANSACTIONS,xs2aListTransactions,true 29838,f98f63e9-3342-4f2b-b38c-9cf9109e9d0a,AUTHORIZATION,,true 29839,f98f63e9-3342-4f2b-b38c-9cf9109e9d0a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29840,f98f63e9-3342-4f2b-b38c-9cf9109e9d0a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29841,f98f63e9-3342-4f2b-b38c-9cf9109e9d0a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29842,9b708db1-d1fc-41c6-8e73-840a97941e19,LIST_ACCOUNTS,hbciListAccounts,false -29843,9b708db1-d1fc-41c6-8e73-840a97941e19,LIST_TRANSACTIONS,hbciListTransactions,false -29844,9b708db1-d1fc-41c6-8e73-840a97941e19,AUTHORIZATION,,false -29845,9b708db1-d1fc-41c6-8e73-840a97941e19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29846,9b708db1-d1fc-41c6-8e73-840a97941e19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29847,9b708db1-d1fc-41c6-8e73-840a97941e19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29842,03a19d81-9ffc-4ce9-8219-e7c0705af5e9,LIST_ACCOUNTS,hbciListAccounts,false +29843,03a19d81-9ffc-4ce9-8219-e7c0705af5e9,LIST_TRANSACTIONS,hbciListTransactions,false +29844,03a19d81-9ffc-4ce9-8219-e7c0705af5e9,AUTHORIZATION,,false +29845,03a19d81-9ffc-4ce9-8219-e7c0705af5e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29846,03a19d81-9ffc-4ce9-8219-e7c0705af5e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29847,03a19d81-9ffc-4ce9-8219-e7c0705af5e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29848,fad7b261-0333-4c83-95f0-057b8c27ffe2,LIST_ACCOUNTS,xs2aListAccounts,true -29849,fad7b261-0333-4c83-95f0-057b8c27ffe2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29849,fad7b261-0333-4c83-95f0-057b8c27ffe2,LIST_TRANSACTIONS,xs2aListTransactions,true 29850,fad7b261-0333-4c83-95f0-057b8c27ffe2,AUTHORIZATION,,true 29851,fad7b261-0333-4c83-95f0-057b8c27ffe2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29852,fad7b261-0333-4c83-95f0-057b8c27ffe2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29853,fad7b261-0333-4c83-95f0-057b8c27ffe2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29854,c6d13654-da24-42e8-9e1e-c7d97b9aedec,LIST_ACCOUNTS,hbciListAccounts,false -29855,c6d13654-da24-42e8-9e1e-c7d97b9aedec,LIST_TRANSACTIONS,hbciListTransactions,false -29856,c6d13654-da24-42e8-9e1e-c7d97b9aedec,AUTHORIZATION,,false -29857,c6d13654-da24-42e8-9e1e-c7d97b9aedec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29858,c6d13654-da24-42e8-9e1e-c7d97b9aedec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29859,c6d13654-da24-42e8-9e1e-c7d97b9aedec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29854,cc71b38b-c085-4502-9639-65eb7141ea7f,LIST_ACCOUNTS,hbciListAccounts,false +29855,cc71b38b-c085-4502-9639-65eb7141ea7f,LIST_TRANSACTIONS,hbciListTransactions,false +29856,cc71b38b-c085-4502-9639-65eb7141ea7f,AUTHORIZATION,,false +29857,cc71b38b-c085-4502-9639-65eb7141ea7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29858,cc71b38b-c085-4502-9639-65eb7141ea7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29859,cc71b38b-c085-4502-9639-65eb7141ea7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29860,b8c8356a-21c7-496f-b43c-fd0b048c3112,LIST_ACCOUNTS,xs2aListAccounts,true -29861,b8c8356a-21c7-496f-b43c-fd0b048c3112,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29861,b8c8356a-21c7-496f-b43c-fd0b048c3112,LIST_TRANSACTIONS,xs2aListTransactions,true 29862,b8c8356a-21c7-496f-b43c-fd0b048c3112,AUTHORIZATION,,true 29863,b8c8356a-21c7-496f-b43c-fd0b048c3112,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29864,b8c8356a-21c7-496f-b43c-fd0b048c3112,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29865,b8c8356a-21c7-496f-b43c-fd0b048c3112,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29866,ab610391-bb99-4358-8f9f-7b083523b3fa,LIST_ACCOUNTS,hbciListAccounts,false -29867,ab610391-bb99-4358-8f9f-7b083523b3fa,LIST_TRANSACTIONS,hbciListTransactions,false -29868,ab610391-bb99-4358-8f9f-7b083523b3fa,AUTHORIZATION,,false -29869,ab610391-bb99-4358-8f9f-7b083523b3fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29870,ab610391-bb99-4358-8f9f-7b083523b3fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29871,ab610391-bb99-4358-8f9f-7b083523b3fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29866,fee20cab-1f74-4ae6-8640-df527aa05b43,LIST_ACCOUNTS,hbciListAccounts,false +29867,fee20cab-1f74-4ae6-8640-df527aa05b43,LIST_TRANSACTIONS,hbciListTransactions,false +29868,fee20cab-1f74-4ae6-8640-df527aa05b43,AUTHORIZATION,,false +29869,fee20cab-1f74-4ae6-8640-df527aa05b43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29870,fee20cab-1f74-4ae6-8640-df527aa05b43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29871,fee20cab-1f74-4ae6-8640-df527aa05b43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29872,174c8840-07f9-4795-996d-88d0edea41c3,LIST_ACCOUNTS,xs2aListAccounts,true -29873,174c8840-07f9-4795-996d-88d0edea41c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29873,174c8840-07f9-4795-996d-88d0edea41c3,LIST_TRANSACTIONS,xs2aListTransactions,true 29874,174c8840-07f9-4795-996d-88d0edea41c3,AUTHORIZATION,,true 29875,174c8840-07f9-4795-996d-88d0edea41c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29876,174c8840-07f9-4795-996d-88d0edea41c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29877,174c8840-07f9-4795-996d-88d0edea41c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29878,44630b67-a86e-4eda-a729-9dbfc5eebc8c,LIST_ACCOUNTS,hbciListAccounts,false -29879,44630b67-a86e-4eda-a729-9dbfc5eebc8c,LIST_TRANSACTIONS,hbciListTransactions,false -29880,44630b67-a86e-4eda-a729-9dbfc5eebc8c,AUTHORIZATION,,false -29881,44630b67-a86e-4eda-a729-9dbfc5eebc8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29882,44630b67-a86e-4eda-a729-9dbfc5eebc8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29883,44630b67-a86e-4eda-a729-9dbfc5eebc8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29878,5f364319-a92a-4adc-9ea3-4c63c7df5af8,LIST_ACCOUNTS,hbciListAccounts,false +29879,5f364319-a92a-4adc-9ea3-4c63c7df5af8,LIST_TRANSACTIONS,hbciListTransactions,false +29880,5f364319-a92a-4adc-9ea3-4c63c7df5af8,AUTHORIZATION,,false +29881,5f364319-a92a-4adc-9ea3-4c63c7df5af8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29882,5f364319-a92a-4adc-9ea3-4c63c7df5af8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29883,5f364319-a92a-4adc-9ea3-4c63c7df5af8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29884,0fabf171-086d-4c1b-992b-a21cf7f92908,LIST_ACCOUNTS,xs2aListAccounts,true -29885,0fabf171-086d-4c1b-992b-a21cf7f92908,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29885,0fabf171-086d-4c1b-992b-a21cf7f92908,LIST_TRANSACTIONS,xs2aListTransactions,true 29886,0fabf171-086d-4c1b-992b-a21cf7f92908,AUTHORIZATION,,true 29887,0fabf171-086d-4c1b-992b-a21cf7f92908,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29888,0fabf171-086d-4c1b-992b-a21cf7f92908,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29889,0fabf171-086d-4c1b-992b-a21cf7f92908,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29890,56942a7d-4905-4d09-80f1-24e073dc81a8,LIST_ACCOUNTS,hbciListAccounts,false -29891,56942a7d-4905-4d09-80f1-24e073dc81a8,LIST_TRANSACTIONS,hbciListTransactions,false -29892,56942a7d-4905-4d09-80f1-24e073dc81a8,AUTHORIZATION,,false -29893,56942a7d-4905-4d09-80f1-24e073dc81a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29894,56942a7d-4905-4d09-80f1-24e073dc81a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29895,56942a7d-4905-4d09-80f1-24e073dc81a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29890,ca5fa578-1a3b-4021-bdea-cc5d7c9ee7e4,LIST_ACCOUNTS,hbciListAccounts,false +29891,ca5fa578-1a3b-4021-bdea-cc5d7c9ee7e4,LIST_TRANSACTIONS,hbciListTransactions,false +29892,ca5fa578-1a3b-4021-bdea-cc5d7c9ee7e4,AUTHORIZATION,,false +29893,ca5fa578-1a3b-4021-bdea-cc5d7c9ee7e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29894,ca5fa578-1a3b-4021-bdea-cc5d7c9ee7e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29895,ca5fa578-1a3b-4021-bdea-cc5d7c9ee7e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29896,0b3c69e5-0a73-425f-aaf1-812d65b98394,LIST_ACCOUNTS,xs2aListAccounts,true -29897,0b3c69e5-0a73-425f-aaf1-812d65b98394,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29897,0b3c69e5-0a73-425f-aaf1-812d65b98394,LIST_TRANSACTIONS,xs2aListTransactions,true 29898,0b3c69e5-0a73-425f-aaf1-812d65b98394,AUTHORIZATION,,true 29899,0b3c69e5-0a73-425f-aaf1-812d65b98394,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29900,0b3c69e5-0a73-425f-aaf1-812d65b98394,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29901,0b3c69e5-0a73-425f-aaf1-812d65b98394,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29902,4ce16b00-cef8-4982-a3b0-8b4fefe046c7,LIST_ACCOUNTS,hbciListAccounts,false -29903,4ce16b00-cef8-4982-a3b0-8b4fefe046c7,LIST_TRANSACTIONS,hbciListTransactions,false -29904,4ce16b00-cef8-4982-a3b0-8b4fefe046c7,AUTHORIZATION,,false -29905,4ce16b00-cef8-4982-a3b0-8b4fefe046c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29906,4ce16b00-cef8-4982-a3b0-8b4fefe046c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29907,4ce16b00-cef8-4982-a3b0-8b4fefe046c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29902,1e17f29f-d7c7-481e-a60f-d073a2c14560,LIST_ACCOUNTS,hbciListAccounts,false +29903,1e17f29f-d7c7-481e-a60f-d073a2c14560,LIST_TRANSACTIONS,hbciListTransactions,false +29904,1e17f29f-d7c7-481e-a60f-d073a2c14560,AUTHORIZATION,,false +29905,1e17f29f-d7c7-481e-a60f-d073a2c14560,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29906,1e17f29f-d7c7-481e-a60f-d073a2c14560,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29907,1e17f29f-d7c7-481e-a60f-d073a2c14560,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29908,1ad3622a-109a-491c-8025-d741bcc86460,LIST_ACCOUNTS,xs2aListAccounts,true -29909,1ad3622a-109a-491c-8025-d741bcc86460,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29909,1ad3622a-109a-491c-8025-d741bcc86460,LIST_TRANSACTIONS,xs2aListTransactions,true 29910,1ad3622a-109a-491c-8025-d741bcc86460,AUTHORIZATION,,true 29911,1ad3622a-109a-491c-8025-d741bcc86460,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29912,1ad3622a-109a-491c-8025-d741bcc86460,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29913,1ad3622a-109a-491c-8025-d741bcc86460,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29914,c0b295d6-37d7-4c60-8db1-ad07a460ccc4,LIST_ACCOUNTS,hbciListAccounts,false -29915,c0b295d6-37d7-4c60-8db1-ad07a460ccc4,LIST_TRANSACTIONS,hbciListTransactions,false -29916,c0b295d6-37d7-4c60-8db1-ad07a460ccc4,AUTHORIZATION,,false -29917,c0b295d6-37d7-4c60-8db1-ad07a460ccc4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29918,c0b295d6-37d7-4c60-8db1-ad07a460ccc4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29919,c0b295d6-37d7-4c60-8db1-ad07a460ccc4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29914,34c4bd0f-07df-4ab9-afd5-4c6deed9eed6,LIST_ACCOUNTS,hbciListAccounts,false +29915,34c4bd0f-07df-4ab9-afd5-4c6deed9eed6,LIST_TRANSACTIONS,hbciListTransactions,false +29916,34c4bd0f-07df-4ab9-afd5-4c6deed9eed6,AUTHORIZATION,,false +29917,34c4bd0f-07df-4ab9-afd5-4c6deed9eed6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29918,34c4bd0f-07df-4ab9-afd5-4c6deed9eed6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29919,34c4bd0f-07df-4ab9-afd5-4c6deed9eed6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29920,a1e8fc54-ab0a-4121-a9c8-d9ddeb3ba07c,LIST_ACCOUNTS,xs2aListAccounts,true -29921,a1e8fc54-ab0a-4121-a9c8-d9ddeb3ba07c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29921,a1e8fc54-ab0a-4121-a9c8-d9ddeb3ba07c,LIST_TRANSACTIONS,xs2aListTransactions,true 29922,a1e8fc54-ab0a-4121-a9c8-d9ddeb3ba07c,AUTHORIZATION,,true 29923,a1e8fc54-ab0a-4121-a9c8-d9ddeb3ba07c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29924,a1e8fc54-ab0a-4121-a9c8-d9ddeb3ba07c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29925,a1e8fc54-ab0a-4121-a9c8-d9ddeb3ba07c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29926,e9da149b-cf6a-4222-86c9-1c5cd1a50cbe,LIST_ACCOUNTS,hbciListAccounts,false -29927,e9da149b-cf6a-4222-86c9-1c5cd1a50cbe,LIST_TRANSACTIONS,hbciListTransactions,false -29928,e9da149b-cf6a-4222-86c9-1c5cd1a50cbe,AUTHORIZATION,,false -29929,e9da149b-cf6a-4222-86c9-1c5cd1a50cbe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29930,e9da149b-cf6a-4222-86c9-1c5cd1a50cbe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29931,e9da149b-cf6a-4222-86c9-1c5cd1a50cbe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29926,d2b1e7c4-4fe2-48ac-b72e-67a1c5fd89e8,LIST_ACCOUNTS,hbciListAccounts,false +29927,d2b1e7c4-4fe2-48ac-b72e-67a1c5fd89e8,LIST_TRANSACTIONS,hbciListTransactions,false +29928,d2b1e7c4-4fe2-48ac-b72e-67a1c5fd89e8,AUTHORIZATION,,false +29929,d2b1e7c4-4fe2-48ac-b72e-67a1c5fd89e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29930,d2b1e7c4-4fe2-48ac-b72e-67a1c5fd89e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29931,d2b1e7c4-4fe2-48ac-b72e-67a1c5fd89e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29932,36e18971-5648-4a01-a6c2-89e3fc5a5f9b,LIST_ACCOUNTS,xs2aListAccounts,true -29933,36e18971-5648-4a01-a6c2-89e3fc5a5f9b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29933,36e18971-5648-4a01-a6c2-89e3fc5a5f9b,LIST_TRANSACTIONS,xs2aListTransactions,true 29934,36e18971-5648-4a01-a6c2-89e3fc5a5f9b,AUTHORIZATION,,true 29935,36e18971-5648-4a01-a6c2-89e3fc5a5f9b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29936,36e18971-5648-4a01-a6c2-89e3fc5a5f9b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29937,36e18971-5648-4a01-a6c2-89e3fc5a5f9b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29938,021ac028-20f9-4ec1-8a6e-ca76e6df4c4c,LIST_ACCOUNTS,hbciListAccounts,false -29939,021ac028-20f9-4ec1-8a6e-ca76e6df4c4c,LIST_TRANSACTIONS,hbciListTransactions,false -29940,021ac028-20f9-4ec1-8a6e-ca76e6df4c4c,AUTHORIZATION,,false -29941,021ac028-20f9-4ec1-8a6e-ca76e6df4c4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29942,021ac028-20f9-4ec1-8a6e-ca76e6df4c4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29943,021ac028-20f9-4ec1-8a6e-ca76e6df4c4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29938,6696b389-616c-4802-8c8f-80496aaeb202,LIST_ACCOUNTS,hbciListAccounts,false +29939,6696b389-616c-4802-8c8f-80496aaeb202,LIST_TRANSACTIONS,hbciListTransactions,false +29940,6696b389-616c-4802-8c8f-80496aaeb202,AUTHORIZATION,,false +29941,6696b389-616c-4802-8c8f-80496aaeb202,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29942,6696b389-616c-4802-8c8f-80496aaeb202,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29943,6696b389-616c-4802-8c8f-80496aaeb202,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29944,93b1b85f-c493-4c47-96a3-94f79a894e90,LIST_ACCOUNTS,xs2aListAccounts,true -29945,93b1b85f-c493-4c47-96a3-94f79a894e90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29945,93b1b85f-c493-4c47-96a3-94f79a894e90,LIST_TRANSACTIONS,xs2aListTransactions,true 29946,93b1b85f-c493-4c47-96a3-94f79a894e90,AUTHORIZATION,,true 29947,93b1b85f-c493-4c47-96a3-94f79a894e90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29948,93b1b85f-c493-4c47-96a3-94f79a894e90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29949,93b1b85f-c493-4c47-96a3-94f79a894e90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29950,e56343f5-845e-4892-b799-67b0750dcbf3,LIST_ACCOUNTS,hbciListAccounts,false -29951,e56343f5-845e-4892-b799-67b0750dcbf3,LIST_TRANSACTIONS,hbciListTransactions,false -29952,e56343f5-845e-4892-b799-67b0750dcbf3,AUTHORIZATION,,false -29953,e56343f5-845e-4892-b799-67b0750dcbf3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29954,e56343f5-845e-4892-b799-67b0750dcbf3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29955,e56343f5-845e-4892-b799-67b0750dcbf3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29950,28cb532d-399b-48c9-890f-45140c2ba009,LIST_ACCOUNTS,hbciListAccounts,false +29951,28cb532d-399b-48c9-890f-45140c2ba009,LIST_TRANSACTIONS,hbciListTransactions,false +29952,28cb532d-399b-48c9-890f-45140c2ba009,AUTHORIZATION,,false +29953,28cb532d-399b-48c9-890f-45140c2ba009,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29954,28cb532d-399b-48c9-890f-45140c2ba009,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29955,28cb532d-399b-48c9-890f-45140c2ba009,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29956,ce4b1e1e-bacb-4fbd-bbf6-d5a91c5dddc5,LIST_ACCOUNTS,xs2aListAccounts,true -29957,ce4b1e1e-bacb-4fbd-bbf6-d5a91c5dddc5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29957,ce4b1e1e-bacb-4fbd-bbf6-d5a91c5dddc5,LIST_TRANSACTIONS,xs2aListTransactions,true 29958,ce4b1e1e-bacb-4fbd-bbf6-d5a91c5dddc5,AUTHORIZATION,,true 29959,ce4b1e1e-bacb-4fbd-bbf6-d5a91c5dddc5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29960,ce4b1e1e-bacb-4fbd-bbf6-d5a91c5dddc5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29961,ce4b1e1e-bacb-4fbd-bbf6-d5a91c5dddc5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29962,2f5ee476-423a-40ed-8d3e-6ee57ba7f48c,LIST_ACCOUNTS,hbciListAccounts,false -29963,2f5ee476-423a-40ed-8d3e-6ee57ba7f48c,LIST_TRANSACTIONS,hbciListTransactions,false -29964,2f5ee476-423a-40ed-8d3e-6ee57ba7f48c,AUTHORIZATION,,false -29965,2f5ee476-423a-40ed-8d3e-6ee57ba7f48c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29966,2f5ee476-423a-40ed-8d3e-6ee57ba7f48c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29967,2f5ee476-423a-40ed-8d3e-6ee57ba7f48c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29962,a9b73f2d-8a7a-4daf-a750-e53a0a152dc8,LIST_ACCOUNTS,hbciListAccounts,false +29963,a9b73f2d-8a7a-4daf-a750-e53a0a152dc8,LIST_TRANSACTIONS,hbciListTransactions,false +29964,a9b73f2d-8a7a-4daf-a750-e53a0a152dc8,AUTHORIZATION,,false +29965,a9b73f2d-8a7a-4daf-a750-e53a0a152dc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29966,a9b73f2d-8a7a-4daf-a750-e53a0a152dc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29967,a9b73f2d-8a7a-4daf-a750-e53a0a152dc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29968,aaa356fd-72b6-4427-b29c-36f3dbf48086,LIST_ACCOUNTS,xs2aListAccounts,true -29969,aaa356fd-72b6-4427-b29c-36f3dbf48086,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29969,aaa356fd-72b6-4427-b29c-36f3dbf48086,LIST_TRANSACTIONS,xs2aListTransactions,true 29970,aaa356fd-72b6-4427-b29c-36f3dbf48086,AUTHORIZATION,,true 29971,aaa356fd-72b6-4427-b29c-36f3dbf48086,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29972,aaa356fd-72b6-4427-b29c-36f3dbf48086,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29973,aaa356fd-72b6-4427-b29c-36f3dbf48086,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29974,8bcc219a-7ada-4966-9f04-7eb693deb4ac,LIST_ACCOUNTS,hbciListAccounts,false -29975,8bcc219a-7ada-4966-9f04-7eb693deb4ac,LIST_TRANSACTIONS,hbciListTransactions,false -29976,8bcc219a-7ada-4966-9f04-7eb693deb4ac,AUTHORIZATION,,false -29977,8bcc219a-7ada-4966-9f04-7eb693deb4ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29978,8bcc219a-7ada-4966-9f04-7eb693deb4ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29979,8bcc219a-7ada-4966-9f04-7eb693deb4ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29974,a53619e0-2f24-43df-af78-950110115c9a,LIST_ACCOUNTS,hbciListAccounts,false +29975,a53619e0-2f24-43df-af78-950110115c9a,LIST_TRANSACTIONS,hbciListTransactions,false +29976,a53619e0-2f24-43df-af78-950110115c9a,AUTHORIZATION,,false +29977,a53619e0-2f24-43df-af78-950110115c9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29978,a53619e0-2f24-43df-af78-950110115c9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29979,a53619e0-2f24-43df-af78-950110115c9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29980,90418b72-6bcc-4817-b9a0-75f4a588b1d0,LIST_ACCOUNTS,xs2aListAccounts,true -29981,90418b72-6bcc-4817-b9a0-75f4a588b1d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29981,90418b72-6bcc-4817-b9a0-75f4a588b1d0,LIST_TRANSACTIONS,xs2aListTransactions,true 29982,90418b72-6bcc-4817-b9a0-75f4a588b1d0,AUTHORIZATION,,true 29983,90418b72-6bcc-4817-b9a0-75f4a588b1d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29984,90418b72-6bcc-4817-b9a0-75f4a588b1d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29985,90418b72-6bcc-4817-b9a0-75f4a588b1d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29986,609332ac-b701-404e-8e18-d0a42b301d74,LIST_ACCOUNTS,hbciListAccounts,false -29987,609332ac-b701-404e-8e18-d0a42b301d74,LIST_TRANSACTIONS,hbciListTransactions,false -29988,609332ac-b701-404e-8e18-d0a42b301d74,AUTHORIZATION,,false -29989,609332ac-b701-404e-8e18-d0a42b301d74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -29990,609332ac-b701-404e-8e18-d0a42b301d74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -29991,609332ac-b701-404e-8e18-d0a42b301d74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29986,a51dc331-2a99-4dc2-8877-ce3e64592806,LIST_ACCOUNTS,hbciListAccounts,false +29987,a51dc331-2a99-4dc2-8877-ce3e64592806,LIST_TRANSACTIONS,hbciListTransactions,false +29988,a51dc331-2a99-4dc2-8877-ce3e64592806,AUTHORIZATION,,false +29989,a51dc331-2a99-4dc2-8877-ce3e64592806,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +29990,a51dc331-2a99-4dc2-8877-ce3e64592806,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +29991,a51dc331-2a99-4dc2-8877-ce3e64592806,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 29992,029e0b04-1791-4e72-8940-a65f0f2731f3,LIST_ACCOUNTS,xs2aListAccounts,true -29993,029e0b04-1791-4e72-8940-a65f0f2731f3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +29993,029e0b04-1791-4e72-8940-a65f0f2731f3,LIST_TRANSACTIONS,xs2aListTransactions,true 29994,029e0b04-1791-4e72-8940-a65f0f2731f3,AUTHORIZATION,,true 29995,029e0b04-1791-4e72-8940-a65f0f2731f3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 29996,029e0b04-1791-4e72-8940-a65f0f2731f3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 29997,029e0b04-1791-4e72-8940-a65f0f2731f3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -29998,9ce647f9-fca6-4f86-9725-951ae7bcafc6,LIST_ACCOUNTS,hbciListAccounts,false -29999,9ce647f9-fca6-4f86-9725-951ae7bcafc6,LIST_TRANSACTIONS,hbciListTransactions,false -30000,9ce647f9-fca6-4f86-9725-951ae7bcafc6,AUTHORIZATION,,false -30001,9ce647f9-fca6-4f86-9725-951ae7bcafc6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30002,9ce647f9-fca6-4f86-9725-951ae7bcafc6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30003,9ce647f9-fca6-4f86-9725-951ae7bcafc6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +29998,91b8407d-1269-4aad-aaa2-9f945e12c8b3,LIST_ACCOUNTS,hbciListAccounts,false +29999,91b8407d-1269-4aad-aaa2-9f945e12c8b3,LIST_TRANSACTIONS,hbciListTransactions,false +30000,91b8407d-1269-4aad-aaa2-9f945e12c8b3,AUTHORIZATION,,false +30001,91b8407d-1269-4aad-aaa2-9f945e12c8b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30002,91b8407d-1269-4aad-aaa2-9f945e12c8b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30003,91b8407d-1269-4aad-aaa2-9f945e12c8b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30004,9af0d5a5-2ed4-4c4a-8131-d319b98dab21,LIST_ACCOUNTS,xs2aListAccounts,true -30005,9af0d5a5-2ed4-4c4a-8131-d319b98dab21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30005,9af0d5a5-2ed4-4c4a-8131-d319b98dab21,LIST_TRANSACTIONS,xs2aListTransactions,true 30006,9af0d5a5-2ed4-4c4a-8131-d319b98dab21,AUTHORIZATION,,true 30007,9af0d5a5-2ed4-4c4a-8131-d319b98dab21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30008,9af0d5a5-2ed4-4c4a-8131-d319b98dab21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30009,9af0d5a5-2ed4-4c4a-8131-d319b98dab21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30010,52dcde19-fe9f-48c4-ae6d-44e7a781ba09,LIST_ACCOUNTS,hbciListAccounts,false -30011,52dcde19-fe9f-48c4-ae6d-44e7a781ba09,LIST_TRANSACTIONS,hbciListTransactions,false -30012,52dcde19-fe9f-48c4-ae6d-44e7a781ba09,AUTHORIZATION,,false -30013,52dcde19-fe9f-48c4-ae6d-44e7a781ba09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30014,52dcde19-fe9f-48c4-ae6d-44e7a781ba09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30015,52dcde19-fe9f-48c4-ae6d-44e7a781ba09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30010,8456b162-94ee-4ff4-bcfe-ed9e80b17c64,LIST_ACCOUNTS,hbciListAccounts,false +30011,8456b162-94ee-4ff4-bcfe-ed9e80b17c64,LIST_TRANSACTIONS,hbciListTransactions,false +30012,8456b162-94ee-4ff4-bcfe-ed9e80b17c64,AUTHORIZATION,,false +30013,8456b162-94ee-4ff4-bcfe-ed9e80b17c64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30014,8456b162-94ee-4ff4-bcfe-ed9e80b17c64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30015,8456b162-94ee-4ff4-bcfe-ed9e80b17c64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30016,08c364b8-06f8-4cc5-a65c-22d243769580,LIST_ACCOUNTS,xs2aListAccounts,true -30017,08c364b8-06f8-4cc5-a65c-22d243769580,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30017,08c364b8-06f8-4cc5-a65c-22d243769580,LIST_TRANSACTIONS,xs2aListTransactions,true 30018,08c364b8-06f8-4cc5-a65c-22d243769580,AUTHORIZATION,,true 30019,08c364b8-06f8-4cc5-a65c-22d243769580,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30020,08c364b8-06f8-4cc5-a65c-22d243769580,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30021,08c364b8-06f8-4cc5-a65c-22d243769580,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30022,8bcf6cac-41b5-486c-ba46-38fa55ed12f7,LIST_ACCOUNTS,hbciListAccounts,false -30023,8bcf6cac-41b5-486c-ba46-38fa55ed12f7,LIST_TRANSACTIONS,hbciListTransactions,false -30024,8bcf6cac-41b5-486c-ba46-38fa55ed12f7,AUTHORIZATION,,false -30025,8bcf6cac-41b5-486c-ba46-38fa55ed12f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30026,8bcf6cac-41b5-486c-ba46-38fa55ed12f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30027,8bcf6cac-41b5-486c-ba46-38fa55ed12f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30022,4565cadb-cccc-40a1-803d-6e17ba76b4da,LIST_ACCOUNTS,hbciListAccounts,false +30023,4565cadb-cccc-40a1-803d-6e17ba76b4da,LIST_TRANSACTIONS,hbciListTransactions,false +30024,4565cadb-cccc-40a1-803d-6e17ba76b4da,AUTHORIZATION,,false +30025,4565cadb-cccc-40a1-803d-6e17ba76b4da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30026,4565cadb-cccc-40a1-803d-6e17ba76b4da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30027,4565cadb-cccc-40a1-803d-6e17ba76b4da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30028,5c84c512-1860-4481-8d5f-a386716c942b,LIST_ACCOUNTS,xs2aListAccounts,true -30029,5c84c512-1860-4481-8d5f-a386716c942b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30029,5c84c512-1860-4481-8d5f-a386716c942b,LIST_TRANSACTIONS,xs2aListTransactions,true 30030,5c84c512-1860-4481-8d5f-a386716c942b,AUTHORIZATION,,true 30031,5c84c512-1860-4481-8d5f-a386716c942b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30032,5c84c512-1860-4481-8d5f-a386716c942b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30033,5c84c512-1860-4481-8d5f-a386716c942b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30034,7dbddd34-a0bd-472e-b13b-235e1203805e,LIST_ACCOUNTS,hbciListAccounts,false -30035,7dbddd34-a0bd-472e-b13b-235e1203805e,LIST_TRANSACTIONS,hbciListTransactions,false -30036,7dbddd34-a0bd-472e-b13b-235e1203805e,AUTHORIZATION,,false -30037,7dbddd34-a0bd-472e-b13b-235e1203805e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30038,7dbddd34-a0bd-472e-b13b-235e1203805e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30039,7dbddd34-a0bd-472e-b13b-235e1203805e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30034,1df95046-2b2c-4681-9b94-82a4a8215d4c,LIST_ACCOUNTS,hbciListAccounts,false +30035,1df95046-2b2c-4681-9b94-82a4a8215d4c,LIST_TRANSACTIONS,hbciListTransactions,false +30036,1df95046-2b2c-4681-9b94-82a4a8215d4c,AUTHORIZATION,,false +30037,1df95046-2b2c-4681-9b94-82a4a8215d4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30038,1df95046-2b2c-4681-9b94-82a4a8215d4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30039,1df95046-2b2c-4681-9b94-82a4a8215d4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30040,a17cf87f-e1a2-433c-ac85-9be2ab6bdf65,LIST_ACCOUNTS,xs2aListAccounts,true -30041,a17cf87f-e1a2-433c-ac85-9be2ab6bdf65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30041,a17cf87f-e1a2-433c-ac85-9be2ab6bdf65,LIST_TRANSACTIONS,xs2aListTransactions,true 30042,a17cf87f-e1a2-433c-ac85-9be2ab6bdf65,AUTHORIZATION,,true 30043,a17cf87f-e1a2-433c-ac85-9be2ab6bdf65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30044,a17cf87f-e1a2-433c-ac85-9be2ab6bdf65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30045,a17cf87f-e1a2-433c-ac85-9be2ab6bdf65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30046,aaf4d87d-5bc2-4c9f-8fec-d131e6aeb17b,LIST_ACCOUNTS,hbciListAccounts,false -30047,aaf4d87d-5bc2-4c9f-8fec-d131e6aeb17b,LIST_TRANSACTIONS,hbciListTransactions,false -30048,aaf4d87d-5bc2-4c9f-8fec-d131e6aeb17b,AUTHORIZATION,,false -30049,aaf4d87d-5bc2-4c9f-8fec-d131e6aeb17b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30050,aaf4d87d-5bc2-4c9f-8fec-d131e6aeb17b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30051,aaf4d87d-5bc2-4c9f-8fec-d131e6aeb17b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30046,2ffd5cf6-6e43-4bdb-a130-c5d57b9e35ad,LIST_ACCOUNTS,hbciListAccounts,false +30047,2ffd5cf6-6e43-4bdb-a130-c5d57b9e35ad,LIST_TRANSACTIONS,hbciListTransactions,false +30048,2ffd5cf6-6e43-4bdb-a130-c5d57b9e35ad,AUTHORIZATION,,false +30049,2ffd5cf6-6e43-4bdb-a130-c5d57b9e35ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30050,2ffd5cf6-6e43-4bdb-a130-c5d57b9e35ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30051,2ffd5cf6-6e43-4bdb-a130-c5d57b9e35ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30052,5624b178-e083-4608-9acc-58648c58c376,LIST_ACCOUNTS,xs2aListAccounts,true -30053,5624b178-e083-4608-9acc-58648c58c376,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30053,5624b178-e083-4608-9acc-58648c58c376,LIST_TRANSACTIONS,xs2aListTransactions,true 30054,5624b178-e083-4608-9acc-58648c58c376,AUTHORIZATION,,true 30055,5624b178-e083-4608-9acc-58648c58c376,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30056,5624b178-e083-4608-9acc-58648c58c376,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30057,5624b178-e083-4608-9acc-58648c58c376,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30058,f00ecd69-3f78-4702-ad0d-221a7eba0514,LIST_ACCOUNTS,hbciListAccounts,false -30059,f00ecd69-3f78-4702-ad0d-221a7eba0514,LIST_TRANSACTIONS,hbciListTransactions,false -30060,f00ecd69-3f78-4702-ad0d-221a7eba0514,AUTHORIZATION,,false -30061,f00ecd69-3f78-4702-ad0d-221a7eba0514,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30062,f00ecd69-3f78-4702-ad0d-221a7eba0514,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30063,f00ecd69-3f78-4702-ad0d-221a7eba0514,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30058,f72f8f71-412a-4c41-ad00-14a54289dd4e,LIST_ACCOUNTS,hbciListAccounts,false +30059,f72f8f71-412a-4c41-ad00-14a54289dd4e,LIST_TRANSACTIONS,hbciListTransactions,false +30060,f72f8f71-412a-4c41-ad00-14a54289dd4e,AUTHORIZATION,,false +30061,f72f8f71-412a-4c41-ad00-14a54289dd4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30062,f72f8f71-412a-4c41-ad00-14a54289dd4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30063,f72f8f71-412a-4c41-ad00-14a54289dd4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30064,80cc85cb-c0c7-47fd-b152-25f391d18174,LIST_ACCOUNTS,xs2aListAccounts,true -30065,80cc85cb-c0c7-47fd-b152-25f391d18174,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30065,80cc85cb-c0c7-47fd-b152-25f391d18174,LIST_TRANSACTIONS,xs2aListTransactions,true 30066,80cc85cb-c0c7-47fd-b152-25f391d18174,AUTHORIZATION,,true 30067,80cc85cb-c0c7-47fd-b152-25f391d18174,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30068,80cc85cb-c0c7-47fd-b152-25f391d18174,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30069,80cc85cb-c0c7-47fd-b152-25f391d18174,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30070,cbce5fe0-8968-4e99-965e-04d262cf9be8,LIST_ACCOUNTS,hbciListAccounts,false -30071,cbce5fe0-8968-4e99-965e-04d262cf9be8,LIST_TRANSACTIONS,hbciListTransactions,false -30072,cbce5fe0-8968-4e99-965e-04d262cf9be8,AUTHORIZATION,,false -30073,cbce5fe0-8968-4e99-965e-04d262cf9be8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30074,cbce5fe0-8968-4e99-965e-04d262cf9be8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30075,cbce5fe0-8968-4e99-965e-04d262cf9be8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30070,3ead9d66-fe24-4c76-a0d4-86f53ef8cd19,LIST_ACCOUNTS,hbciListAccounts,false +30071,3ead9d66-fe24-4c76-a0d4-86f53ef8cd19,LIST_TRANSACTIONS,hbciListTransactions,false +30072,3ead9d66-fe24-4c76-a0d4-86f53ef8cd19,AUTHORIZATION,,false +30073,3ead9d66-fe24-4c76-a0d4-86f53ef8cd19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30074,3ead9d66-fe24-4c76-a0d4-86f53ef8cd19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30075,3ead9d66-fe24-4c76-a0d4-86f53ef8cd19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30076,dc2b3864-0527-45fd-9e31-b5856afac679,LIST_ACCOUNTS,xs2aListAccounts,true -30077,dc2b3864-0527-45fd-9e31-b5856afac679,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30077,dc2b3864-0527-45fd-9e31-b5856afac679,LIST_TRANSACTIONS,xs2aListTransactions,true 30078,dc2b3864-0527-45fd-9e31-b5856afac679,AUTHORIZATION,,true 30079,dc2b3864-0527-45fd-9e31-b5856afac679,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30080,dc2b3864-0527-45fd-9e31-b5856afac679,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30081,dc2b3864-0527-45fd-9e31-b5856afac679,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30082,6593e2a4-396c-4006-b29f-76921202007e,LIST_ACCOUNTS,hbciListAccounts,false -30083,6593e2a4-396c-4006-b29f-76921202007e,LIST_TRANSACTIONS,hbciListTransactions,false -30084,6593e2a4-396c-4006-b29f-76921202007e,AUTHORIZATION,,false -30085,6593e2a4-396c-4006-b29f-76921202007e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30086,6593e2a4-396c-4006-b29f-76921202007e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30087,6593e2a4-396c-4006-b29f-76921202007e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30082,a72b4d79-3b40-4a63-8720-3da875349f6e,LIST_ACCOUNTS,hbciListAccounts,false +30083,a72b4d79-3b40-4a63-8720-3da875349f6e,LIST_TRANSACTIONS,hbciListTransactions,false +30084,a72b4d79-3b40-4a63-8720-3da875349f6e,AUTHORIZATION,,false +30085,a72b4d79-3b40-4a63-8720-3da875349f6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30086,a72b4d79-3b40-4a63-8720-3da875349f6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30087,a72b4d79-3b40-4a63-8720-3da875349f6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30088,f5daf976-f7ab-46b3-96e0-ea149126a9c7,LIST_ACCOUNTS,xs2aListAccounts,true -30089,f5daf976-f7ab-46b3-96e0-ea149126a9c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30089,f5daf976-f7ab-46b3-96e0-ea149126a9c7,LIST_TRANSACTIONS,xs2aListTransactions,true 30090,f5daf976-f7ab-46b3-96e0-ea149126a9c7,AUTHORIZATION,,true 30091,f5daf976-f7ab-46b3-96e0-ea149126a9c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30092,f5daf976-f7ab-46b3-96e0-ea149126a9c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30093,f5daf976-f7ab-46b3-96e0-ea149126a9c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30094,7e126ae4-858f-45e9-98fa-8ac9246a49f7,LIST_ACCOUNTS,hbciListAccounts,false -30095,7e126ae4-858f-45e9-98fa-8ac9246a49f7,LIST_TRANSACTIONS,hbciListTransactions,false -30096,7e126ae4-858f-45e9-98fa-8ac9246a49f7,AUTHORIZATION,,false -30097,7e126ae4-858f-45e9-98fa-8ac9246a49f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30098,7e126ae4-858f-45e9-98fa-8ac9246a49f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30099,7e126ae4-858f-45e9-98fa-8ac9246a49f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30094,0deed37c-589d-46eb-b555-89c704a7ee09,LIST_ACCOUNTS,hbciListAccounts,false +30095,0deed37c-589d-46eb-b555-89c704a7ee09,LIST_TRANSACTIONS,hbciListTransactions,false +30096,0deed37c-589d-46eb-b555-89c704a7ee09,AUTHORIZATION,,false +30097,0deed37c-589d-46eb-b555-89c704a7ee09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30098,0deed37c-589d-46eb-b555-89c704a7ee09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30099,0deed37c-589d-46eb-b555-89c704a7ee09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30100,bbda90e9-4099-44c0-98f5-d3d560754e7d,LIST_ACCOUNTS,xs2aListAccounts,true -30101,bbda90e9-4099-44c0-98f5-d3d560754e7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30101,bbda90e9-4099-44c0-98f5-d3d560754e7d,LIST_TRANSACTIONS,xs2aListTransactions,true 30102,bbda90e9-4099-44c0-98f5-d3d560754e7d,AUTHORIZATION,,true 30103,bbda90e9-4099-44c0-98f5-d3d560754e7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30104,bbda90e9-4099-44c0-98f5-d3d560754e7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30105,bbda90e9-4099-44c0-98f5-d3d560754e7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30106,f1481995-02fe-459a-b216-1d941dbadf5d,LIST_ACCOUNTS,hbciListAccounts,false -30107,f1481995-02fe-459a-b216-1d941dbadf5d,LIST_TRANSACTIONS,hbciListTransactions,false -30108,f1481995-02fe-459a-b216-1d941dbadf5d,AUTHORIZATION,,false -30109,f1481995-02fe-459a-b216-1d941dbadf5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30110,f1481995-02fe-459a-b216-1d941dbadf5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30111,f1481995-02fe-459a-b216-1d941dbadf5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30106,b342d88b-b1db-426f-ba1d-18d76453dc96,LIST_ACCOUNTS,hbciListAccounts,false +30107,b342d88b-b1db-426f-ba1d-18d76453dc96,LIST_TRANSACTIONS,hbciListTransactions,false +30108,b342d88b-b1db-426f-ba1d-18d76453dc96,AUTHORIZATION,,false +30109,b342d88b-b1db-426f-ba1d-18d76453dc96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30110,b342d88b-b1db-426f-ba1d-18d76453dc96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30111,b342d88b-b1db-426f-ba1d-18d76453dc96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30112,a3bca083-3927-433a-bedf-34e3698ad5a0,LIST_ACCOUNTS,xs2aListAccounts,true -30113,a3bca083-3927-433a-bedf-34e3698ad5a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30113,a3bca083-3927-433a-bedf-34e3698ad5a0,LIST_TRANSACTIONS,xs2aListTransactions,true 30114,a3bca083-3927-433a-bedf-34e3698ad5a0,AUTHORIZATION,,true 30115,a3bca083-3927-433a-bedf-34e3698ad5a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30116,a3bca083-3927-433a-bedf-34e3698ad5a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30117,a3bca083-3927-433a-bedf-34e3698ad5a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30118,f4197d9c-43b3-44fd-8c88-232672df370a,LIST_ACCOUNTS,hbciListAccounts,false -30119,f4197d9c-43b3-44fd-8c88-232672df370a,LIST_TRANSACTIONS,hbciListTransactions,false -30120,f4197d9c-43b3-44fd-8c88-232672df370a,AUTHORIZATION,,false -30121,f4197d9c-43b3-44fd-8c88-232672df370a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30122,f4197d9c-43b3-44fd-8c88-232672df370a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30123,f4197d9c-43b3-44fd-8c88-232672df370a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30118,1c4a37d9-29ce-42d4-845b-42d980048c34,LIST_ACCOUNTS,hbciListAccounts,false +30119,1c4a37d9-29ce-42d4-845b-42d980048c34,LIST_TRANSACTIONS,hbciListTransactions,false +30120,1c4a37d9-29ce-42d4-845b-42d980048c34,AUTHORIZATION,,false +30121,1c4a37d9-29ce-42d4-845b-42d980048c34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30122,1c4a37d9-29ce-42d4-845b-42d980048c34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30123,1c4a37d9-29ce-42d4-845b-42d980048c34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30124,7373bba9-8c5a-44c6-94ac-f248f4880c70,LIST_ACCOUNTS,xs2aListAccounts,true -30125,7373bba9-8c5a-44c6-94ac-f248f4880c70,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30125,7373bba9-8c5a-44c6-94ac-f248f4880c70,LIST_TRANSACTIONS,xs2aListTransactions,true 30126,7373bba9-8c5a-44c6-94ac-f248f4880c70,AUTHORIZATION,,true 30127,7373bba9-8c5a-44c6-94ac-f248f4880c70,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30128,7373bba9-8c5a-44c6-94ac-f248f4880c70,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30129,7373bba9-8c5a-44c6-94ac-f248f4880c70,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30130,3b234f43-7487-4ffb-9ac0-941fb8ab06ab,LIST_ACCOUNTS,hbciListAccounts,false -30131,3b234f43-7487-4ffb-9ac0-941fb8ab06ab,LIST_TRANSACTIONS,hbciListTransactions,false -30132,3b234f43-7487-4ffb-9ac0-941fb8ab06ab,AUTHORIZATION,,false -30133,3b234f43-7487-4ffb-9ac0-941fb8ab06ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30134,3b234f43-7487-4ffb-9ac0-941fb8ab06ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30135,3b234f43-7487-4ffb-9ac0-941fb8ab06ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30130,169fda37-3e0d-481c-95dd-1cd2e37754d2,LIST_ACCOUNTS,hbciListAccounts,false +30131,169fda37-3e0d-481c-95dd-1cd2e37754d2,LIST_TRANSACTIONS,hbciListTransactions,false +30132,169fda37-3e0d-481c-95dd-1cd2e37754d2,AUTHORIZATION,,false +30133,169fda37-3e0d-481c-95dd-1cd2e37754d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30134,169fda37-3e0d-481c-95dd-1cd2e37754d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30135,169fda37-3e0d-481c-95dd-1cd2e37754d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30136,625f3b1e-c7f1-4f2a-aae5-677905eaba92,LIST_ACCOUNTS,xs2aListAccounts,true -30137,625f3b1e-c7f1-4f2a-aae5-677905eaba92,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30137,625f3b1e-c7f1-4f2a-aae5-677905eaba92,LIST_TRANSACTIONS,xs2aListTransactions,true 30138,625f3b1e-c7f1-4f2a-aae5-677905eaba92,AUTHORIZATION,,true 30139,625f3b1e-c7f1-4f2a-aae5-677905eaba92,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30140,625f3b1e-c7f1-4f2a-aae5-677905eaba92,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30141,625f3b1e-c7f1-4f2a-aae5-677905eaba92,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30142,e5a88c4a-cbc0-443e-ab94-89846b1ff505,LIST_ACCOUNTS,hbciListAccounts,false -30143,e5a88c4a-cbc0-443e-ab94-89846b1ff505,LIST_TRANSACTIONS,hbciListTransactions,false -30144,e5a88c4a-cbc0-443e-ab94-89846b1ff505,AUTHORIZATION,,false -30145,e5a88c4a-cbc0-443e-ab94-89846b1ff505,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30146,e5a88c4a-cbc0-443e-ab94-89846b1ff505,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30147,e5a88c4a-cbc0-443e-ab94-89846b1ff505,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30142,c7f4fe27-8534-42e2-bee3-8ed9687f6bce,LIST_ACCOUNTS,hbciListAccounts,false +30143,c7f4fe27-8534-42e2-bee3-8ed9687f6bce,LIST_TRANSACTIONS,hbciListTransactions,false +30144,c7f4fe27-8534-42e2-bee3-8ed9687f6bce,AUTHORIZATION,,false +30145,c7f4fe27-8534-42e2-bee3-8ed9687f6bce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30146,c7f4fe27-8534-42e2-bee3-8ed9687f6bce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30147,c7f4fe27-8534-42e2-bee3-8ed9687f6bce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30148,a5c5e6f2-1d1a-42d6-a395-28f71ff3bb74,LIST_ACCOUNTS,xs2aListAccounts,true -30149,a5c5e6f2-1d1a-42d6-a395-28f71ff3bb74,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30149,a5c5e6f2-1d1a-42d6-a395-28f71ff3bb74,LIST_TRANSACTIONS,xs2aListTransactions,true 30150,a5c5e6f2-1d1a-42d6-a395-28f71ff3bb74,AUTHORIZATION,,true 30151,a5c5e6f2-1d1a-42d6-a395-28f71ff3bb74,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30152,a5c5e6f2-1d1a-42d6-a395-28f71ff3bb74,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30153,a5c5e6f2-1d1a-42d6-a395-28f71ff3bb74,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30154,bcd3784d-6fc5-4bb6-9331-39b212e6278a,LIST_ACCOUNTS,hbciListAccounts,false -30155,bcd3784d-6fc5-4bb6-9331-39b212e6278a,LIST_TRANSACTIONS,hbciListTransactions,false -30156,bcd3784d-6fc5-4bb6-9331-39b212e6278a,AUTHORIZATION,,false -30157,bcd3784d-6fc5-4bb6-9331-39b212e6278a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30158,bcd3784d-6fc5-4bb6-9331-39b212e6278a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30159,bcd3784d-6fc5-4bb6-9331-39b212e6278a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30154,10dd80a3-e6f1-410b-ae02-9da0f1cf469c,LIST_ACCOUNTS,hbciListAccounts,false +30155,10dd80a3-e6f1-410b-ae02-9da0f1cf469c,LIST_TRANSACTIONS,hbciListTransactions,false +30156,10dd80a3-e6f1-410b-ae02-9da0f1cf469c,AUTHORIZATION,,false +30157,10dd80a3-e6f1-410b-ae02-9da0f1cf469c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30158,10dd80a3-e6f1-410b-ae02-9da0f1cf469c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30159,10dd80a3-e6f1-410b-ae02-9da0f1cf469c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30160,c587346a-df28-4140-94bb-0efa313d9dbb,LIST_ACCOUNTS,xs2aListAccounts,true -30161,c587346a-df28-4140-94bb-0efa313d9dbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30161,c587346a-df28-4140-94bb-0efa313d9dbb,LIST_TRANSACTIONS,xs2aListTransactions,true 30162,c587346a-df28-4140-94bb-0efa313d9dbb,AUTHORIZATION,,true 30163,c587346a-df28-4140-94bb-0efa313d9dbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30164,c587346a-df28-4140-94bb-0efa313d9dbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30165,c587346a-df28-4140-94bb-0efa313d9dbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30166,5f1ea2bf-d2f5-4162-8319-71b8ed85b277,LIST_ACCOUNTS,hbciListAccounts,false -30167,5f1ea2bf-d2f5-4162-8319-71b8ed85b277,LIST_TRANSACTIONS,hbciListTransactions,false -30168,5f1ea2bf-d2f5-4162-8319-71b8ed85b277,AUTHORIZATION,,false -30169,5f1ea2bf-d2f5-4162-8319-71b8ed85b277,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30170,5f1ea2bf-d2f5-4162-8319-71b8ed85b277,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30171,5f1ea2bf-d2f5-4162-8319-71b8ed85b277,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30166,c50a27dc-c3df-4238-85cc-8e6665d35d01,LIST_ACCOUNTS,hbciListAccounts,false +30167,c50a27dc-c3df-4238-85cc-8e6665d35d01,LIST_TRANSACTIONS,hbciListTransactions,false +30168,c50a27dc-c3df-4238-85cc-8e6665d35d01,AUTHORIZATION,,false +30169,c50a27dc-c3df-4238-85cc-8e6665d35d01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30170,c50a27dc-c3df-4238-85cc-8e6665d35d01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30171,c50a27dc-c3df-4238-85cc-8e6665d35d01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30172,aa6a24b3-b01e-42eb-b32c-b65d5042b6ed,LIST_ACCOUNTS,xs2aListAccounts,true -30173,aa6a24b3-b01e-42eb-b32c-b65d5042b6ed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30173,aa6a24b3-b01e-42eb-b32c-b65d5042b6ed,LIST_TRANSACTIONS,xs2aListTransactions,true 30174,aa6a24b3-b01e-42eb-b32c-b65d5042b6ed,AUTHORIZATION,,true 30175,aa6a24b3-b01e-42eb-b32c-b65d5042b6ed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30176,aa6a24b3-b01e-42eb-b32c-b65d5042b6ed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30177,aa6a24b3-b01e-42eb-b32c-b65d5042b6ed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30178,ceb4aace-20e3-4f7e-845b-09dffdec16dc,LIST_ACCOUNTS,hbciListAccounts,false -30179,ceb4aace-20e3-4f7e-845b-09dffdec16dc,LIST_TRANSACTIONS,hbciListTransactions,false -30180,ceb4aace-20e3-4f7e-845b-09dffdec16dc,AUTHORIZATION,,false -30181,ceb4aace-20e3-4f7e-845b-09dffdec16dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30182,ceb4aace-20e3-4f7e-845b-09dffdec16dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30183,ceb4aace-20e3-4f7e-845b-09dffdec16dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30178,82a5588d-2816-47ec-9ec9-9790fcbdf9d1,LIST_ACCOUNTS,hbciListAccounts,false +30179,82a5588d-2816-47ec-9ec9-9790fcbdf9d1,LIST_TRANSACTIONS,hbciListTransactions,false +30180,82a5588d-2816-47ec-9ec9-9790fcbdf9d1,AUTHORIZATION,,false +30181,82a5588d-2816-47ec-9ec9-9790fcbdf9d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30182,82a5588d-2816-47ec-9ec9-9790fcbdf9d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30183,82a5588d-2816-47ec-9ec9-9790fcbdf9d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30184,d62b35f0-752b-4f34-8835-3c99aa75061d,LIST_ACCOUNTS,xs2aListAccounts,true -30185,d62b35f0-752b-4f34-8835-3c99aa75061d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30185,d62b35f0-752b-4f34-8835-3c99aa75061d,LIST_TRANSACTIONS,xs2aListTransactions,true 30186,d62b35f0-752b-4f34-8835-3c99aa75061d,AUTHORIZATION,,true 30187,d62b35f0-752b-4f34-8835-3c99aa75061d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30188,d62b35f0-752b-4f34-8835-3c99aa75061d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30189,d62b35f0-752b-4f34-8835-3c99aa75061d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30190,cac2e7af-5239-4edc-a639-2f81edfedf81,LIST_ACCOUNTS,hbciListAccounts,false -30191,cac2e7af-5239-4edc-a639-2f81edfedf81,LIST_TRANSACTIONS,hbciListTransactions,false -30192,cac2e7af-5239-4edc-a639-2f81edfedf81,AUTHORIZATION,,false -30193,cac2e7af-5239-4edc-a639-2f81edfedf81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30194,cac2e7af-5239-4edc-a639-2f81edfedf81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30195,cac2e7af-5239-4edc-a639-2f81edfedf81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30190,7391ad60-86f8-45cb-8169-f58fa9f3968e,LIST_ACCOUNTS,hbciListAccounts,false +30191,7391ad60-86f8-45cb-8169-f58fa9f3968e,LIST_TRANSACTIONS,hbciListTransactions,false +30192,7391ad60-86f8-45cb-8169-f58fa9f3968e,AUTHORIZATION,,false +30193,7391ad60-86f8-45cb-8169-f58fa9f3968e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30194,7391ad60-86f8-45cb-8169-f58fa9f3968e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30195,7391ad60-86f8-45cb-8169-f58fa9f3968e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30196,a03f575b-52da-4c63-b2c9-7240e4be0a61,LIST_ACCOUNTS,xs2aListAccounts,true -30197,a03f575b-52da-4c63-b2c9-7240e4be0a61,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30197,a03f575b-52da-4c63-b2c9-7240e4be0a61,LIST_TRANSACTIONS,xs2aListTransactions,true 30198,a03f575b-52da-4c63-b2c9-7240e4be0a61,AUTHORIZATION,,true 30199,a03f575b-52da-4c63-b2c9-7240e4be0a61,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30200,a03f575b-52da-4c63-b2c9-7240e4be0a61,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30201,a03f575b-52da-4c63-b2c9-7240e4be0a61,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30202,70c7b51b-23df-4d56-8c22-7a1133822930,LIST_ACCOUNTS,hbciListAccounts,false -30203,70c7b51b-23df-4d56-8c22-7a1133822930,LIST_TRANSACTIONS,hbciListTransactions,false -30204,70c7b51b-23df-4d56-8c22-7a1133822930,AUTHORIZATION,,false -30205,70c7b51b-23df-4d56-8c22-7a1133822930,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30206,70c7b51b-23df-4d56-8c22-7a1133822930,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30207,70c7b51b-23df-4d56-8c22-7a1133822930,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30202,b19e0fdb-0e7b-4123-bcbe-0a9a983ab5c9,LIST_ACCOUNTS,hbciListAccounts,false +30203,b19e0fdb-0e7b-4123-bcbe-0a9a983ab5c9,LIST_TRANSACTIONS,hbciListTransactions,false +30204,b19e0fdb-0e7b-4123-bcbe-0a9a983ab5c9,AUTHORIZATION,,false +30205,b19e0fdb-0e7b-4123-bcbe-0a9a983ab5c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30206,b19e0fdb-0e7b-4123-bcbe-0a9a983ab5c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30207,b19e0fdb-0e7b-4123-bcbe-0a9a983ab5c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30208,20e7d141-b74b-4346-86d0-5efeac50fbcc,LIST_ACCOUNTS,xs2aListAccounts,true -30209,20e7d141-b74b-4346-86d0-5efeac50fbcc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30209,20e7d141-b74b-4346-86d0-5efeac50fbcc,LIST_TRANSACTIONS,xs2aListTransactions,true 30210,20e7d141-b74b-4346-86d0-5efeac50fbcc,AUTHORIZATION,,true 30211,20e7d141-b74b-4346-86d0-5efeac50fbcc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30212,20e7d141-b74b-4346-86d0-5efeac50fbcc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30213,20e7d141-b74b-4346-86d0-5efeac50fbcc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30214,ad478d8d-30aa-4c27-82f4-1d69b4e3e5bf,LIST_ACCOUNTS,hbciListAccounts,false -30215,ad478d8d-30aa-4c27-82f4-1d69b4e3e5bf,LIST_TRANSACTIONS,hbciListTransactions,false -30216,ad478d8d-30aa-4c27-82f4-1d69b4e3e5bf,AUTHORIZATION,,false -30217,ad478d8d-30aa-4c27-82f4-1d69b4e3e5bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30218,ad478d8d-30aa-4c27-82f4-1d69b4e3e5bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30219,ad478d8d-30aa-4c27-82f4-1d69b4e3e5bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30214,6ad14e97-131c-4f99-810e-802bde5b0ad1,LIST_ACCOUNTS,hbciListAccounts,false +30215,6ad14e97-131c-4f99-810e-802bde5b0ad1,LIST_TRANSACTIONS,hbciListTransactions,false +30216,6ad14e97-131c-4f99-810e-802bde5b0ad1,AUTHORIZATION,,false +30217,6ad14e97-131c-4f99-810e-802bde5b0ad1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30218,6ad14e97-131c-4f99-810e-802bde5b0ad1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30219,6ad14e97-131c-4f99-810e-802bde5b0ad1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30220,0790b13c-7e95-45d0-9ce2-ed441bb910bb,LIST_ACCOUNTS,xs2aListAccounts,true -30221,0790b13c-7e95-45d0-9ce2-ed441bb910bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30221,0790b13c-7e95-45d0-9ce2-ed441bb910bb,LIST_TRANSACTIONS,xs2aListTransactions,true 30222,0790b13c-7e95-45d0-9ce2-ed441bb910bb,AUTHORIZATION,,true 30223,0790b13c-7e95-45d0-9ce2-ed441bb910bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30224,0790b13c-7e95-45d0-9ce2-ed441bb910bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30225,0790b13c-7e95-45d0-9ce2-ed441bb910bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30226,28f309f4-878f-46df-9a38-0bc8c34eefa1,LIST_ACCOUNTS,hbciListAccounts,false -30227,28f309f4-878f-46df-9a38-0bc8c34eefa1,LIST_TRANSACTIONS,hbciListTransactions,false -30228,28f309f4-878f-46df-9a38-0bc8c34eefa1,AUTHORIZATION,,false -30229,28f309f4-878f-46df-9a38-0bc8c34eefa1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30230,28f309f4-878f-46df-9a38-0bc8c34eefa1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30231,28f309f4-878f-46df-9a38-0bc8c34eefa1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30226,d5b45dff-fd92-4e89-9bd2-f5c381560b6e,LIST_ACCOUNTS,hbciListAccounts,false +30227,d5b45dff-fd92-4e89-9bd2-f5c381560b6e,LIST_TRANSACTIONS,hbciListTransactions,false +30228,d5b45dff-fd92-4e89-9bd2-f5c381560b6e,AUTHORIZATION,,false +30229,d5b45dff-fd92-4e89-9bd2-f5c381560b6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30230,d5b45dff-fd92-4e89-9bd2-f5c381560b6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30231,d5b45dff-fd92-4e89-9bd2-f5c381560b6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30232,315186b1-bbca-40a7-8b4c-2816cdc223cb,LIST_ACCOUNTS,xs2aListAccounts,true -30233,315186b1-bbca-40a7-8b4c-2816cdc223cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30233,315186b1-bbca-40a7-8b4c-2816cdc223cb,LIST_TRANSACTIONS,xs2aListTransactions,true 30234,315186b1-bbca-40a7-8b4c-2816cdc223cb,AUTHORIZATION,,true 30235,315186b1-bbca-40a7-8b4c-2816cdc223cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30236,315186b1-bbca-40a7-8b4c-2816cdc223cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30237,315186b1-bbca-40a7-8b4c-2816cdc223cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30238,21711940-86b4-47e9-8c92-377ab8b05805,LIST_ACCOUNTS,hbciListAccounts,false -30239,21711940-86b4-47e9-8c92-377ab8b05805,LIST_TRANSACTIONS,hbciListTransactions,false -30240,21711940-86b4-47e9-8c92-377ab8b05805,AUTHORIZATION,,false -30241,21711940-86b4-47e9-8c92-377ab8b05805,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30242,21711940-86b4-47e9-8c92-377ab8b05805,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30243,21711940-86b4-47e9-8c92-377ab8b05805,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30238,6de08b11-57cb-4c9d-b6ac-363be0707127,LIST_ACCOUNTS,hbciListAccounts,false +30239,6de08b11-57cb-4c9d-b6ac-363be0707127,LIST_TRANSACTIONS,hbciListTransactions,false +30240,6de08b11-57cb-4c9d-b6ac-363be0707127,AUTHORIZATION,,false +30241,6de08b11-57cb-4c9d-b6ac-363be0707127,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30242,6de08b11-57cb-4c9d-b6ac-363be0707127,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30243,6de08b11-57cb-4c9d-b6ac-363be0707127,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30244,c6ca3d75-e404-4ba0-9694-3a07571d2a53,LIST_ACCOUNTS,xs2aListAccounts,true -30245,c6ca3d75-e404-4ba0-9694-3a07571d2a53,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30245,c6ca3d75-e404-4ba0-9694-3a07571d2a53,LIST_TRANSACTIONS,xs2aListTransactions,true 30246,c6ca3d75-e404-4ba0-9694-3a07571d2a53,AUTHORIZATION,,true 30247,c6ca3d75-e404-4ba0-9694-3a07571d2a53,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30248,c6ca3d75-e404-4ba0-9694-3a07571d2a53,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30249,c6ca3d75-e404-4ba0-9694-3a07571d2a53,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30250,5f118821-3fb8-4a2d-9f2f-440a02da7299,LIST_ACCOUNTS,hbciListAccounts,false -30251,5f118821-3fb8-4a2d-9f2f-440a02da7299,LIST_TRANSACTIONS,hbciListTransactions,false -30252,5f118821-3fb8-4a2d-9f2f-440a02da7299,AUTHORIZATION,,false -30253,5f118821-3fb8-4a2d-9f2f-440a02da7299,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30254,5f118821-3fb8-4a2d-9f2f-440a02da7299,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30255,5f118821-3fb8-4a2d-9f2f-440a02da7299,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30250,7a655956-2b82-4f43-99f7-83116a83fd89,LIST_ACCOUNTS,hbciListAccounts,false +30251,7a655956-2b82-4f43-99f7-83116a83fd89,LIST_TRANSACTIONS,hbciListTransactions,false +30252,7a655956-2b82-4f43-99f7-83116a83fd89,AUTHORIZATION,,false +30253,7a655956-2b82-4f43-99f7-83116a83fd89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30254,7a655956-2b82-4f43-99f7-83116a83fd89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30255,7a655956-2b82-4f43-99f7-83116a83fd89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30256,eb23971e-8238-4a23-8964-f0ee9859db47,LIST_ACCOUNTS,xs2aListAccounts,true -30257,eb23971e-8238-4a23-8964-f0ee9859db47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30257,eb23971e-8238-4a23-8964-f0ee9859db47,LIST_TRANSACTIONS,xs2aListTransactions,true 30258,eb23971e-8238-4a23-8964-f0ee9859db47,AUTHORIZATION,,true 30259,eb23971e-8238-4a23-8964-f0ee9859db47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30260,eb23971e-8238-4a23-8964-f0ee9859db47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30261,eb23971e-8238-4a23-8964-f0ee9859db47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30262,70da0f53-4439-482d-ae9c-5ef64cd78418,LIST_ACCOUNTS,hbciListAccounts,false -30263,70da0f53-4439-482d-ae9c-5ef64cd78418,LIST_TRANSACTIONS,hbciListTransactions,false -30264,70da0f53-4439-482d-ae9c-5ef64cd78418,AUTHORIZATION,,false -30265,70da0f53-4439-482d-ae9c-5ef64cd78418,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30266,70da0f53-4439-482d-ae9c-5ef64cd78418,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30267,70da0f53-4439-482d-ae9c-5ef64cd78418,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30262,99c0fc26-dbb2-498d-bedf-aa84ad751d63,LIST_ACCOUNTS,hbciListAccounts,false +30263,99c0fc26-dbb2-498d-bedf-aa84ad751d63,LIST_TRANSACTIONS,hbciListTransactions,false +30264,99c0fc26-dbb2-498d-bedf-aa84ad751d63,AUTHORIZATION,,false +30265,99c0fc26-dbb2-498d-bedf-aa84ad751d63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30266,99c0fc26-dbb2-498d-bedf-aa84ad751d63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30267,99c0fc26-dbb2-498d-bedf-aa84ad751d63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30268,0cfe3b2f-df19-47e8-ad24-f8518f2d9fef,LIST_ACCOUNTS,xs2aListAccounts,true -30269,0cfe3b2f-df19-47e8-ad24-f8518f2d9fef,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30269,0cfe3b2f-df19-47e8-ad24-f8518f2d9fef,LIST_TRANSACTIONS,xs2aListTransactions,true 30270,0cfe3b2f-df19-47e8-ad24-f8518f2d9fef,AUTHORIZATION,,true 30271,0cfe3b2f-df19-47e8-ad24-f8518f2d9fef,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30272,0cfe3b2f-df19-47e8-ad24-f8518f2d9fef,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30273,0cfe3b2f-df19-47e8-ad24-f8518f2d9fef,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30274,14d3e61e-1ca3-43b0-9963-39336ac82f39,LIST_ACCOUNTS,hbciListAccounts,false -30275,14d3e61e-1ca3-43b0-9963-39336ac82f39,LIST_TRANSACTIONS,hbciListTransactions,false -30276,14d3e61e-1ca3-43b0-9963-39336ac82f39,AUTHORIZATION,,false -30277,14d3e61e-1ca3-43b0-9963-39336ac82f39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30278,14d3e61e-1ca3-43b0-9963-39336ac82f39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30279,14d3e61e-1ca3-43b0-9963-39336ac82f39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30274,5c09bbcf-1678-4e7c-ba98-6ba3e6d5ebcc,LIST_ACCOUNTS,hbciListAccounts,false +30275,5c09bbcf-1678-4e7c-ba98-6ba3e6d5ebcc,LIST_TRANSACTIONS,hbciListTransactions,false +30276,5c09bbcf-1678-4e7c-ba98-6ba3e6d5ebcc,AUTHORIZATION,,false +30277,5c09bbcf-1678-4e7c-ba98-6ba3e6d5ebcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30278,5c09bbcf-1678-4e7c-ba98-6ba3e6d5ebcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30279,5c09bbcf-1678-4e7c-ba98-6ba3e6d5ebcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30280,f04ebd8e-b5ff-4d4a-b868-f594ac449ee6,LIST_ACCOUNTS,xs2aListAccounts,true -30281,f04ebd8e-b5ff-4d4a-b868-f594ac449ee6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30281,f04ebd8e-b5ff-4d4a-b868-f594ac449ee6,LIST_TRANSACTIONS,xs2aListTransactions,true 30282,f04ebd8e-b5ff-4d4a-b868-f594ac449ee6,AUTHORIZATION,,true 30283,f04ebd8e-b5ff-4d4a-b868-f594ac449ee6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30284,f04ebd8e-b5ff-4d4a-b868-f594ac449ee6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30285,f04ebd8e-b5ff-4d4a-b868-f594ac449ee6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30286,3cf3522a-2d2b-41f4-a153-b34103028b87,LIST_ACCOUNTS,hbciListAccounts,false -30287,3cf3522a-2d2b-41f4-a153-b34103028b87,LIST_TRANSACTIONS,hbciListTransactions,false -30288,3cf3522a-2d2b-41f4-a153-b34103028b87,AUTHORIZATION,,false -30289,3cf3522a-2d2b-41f4-a153-b34103028b87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30290,3cf3522a-2d2b-41f4-a153-b34103028b87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30291,3cf3522a-2d2b-41f4-a153-b34103028b87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30286,cec1d6ca-4352-45b1-b4d7-317622c4edaf,LIST_ACCOUNTS,hbciListAccounts,false +30287,cec1d6ca-4352-45b1-b4d7-317622c4edaf,LIST_TRANSACTIONS,hbciListTransactions,false +30288,cec1d6ca-4352-45b1-b4d7-317622c4edaf,AUTHORIZATION,,false +30289,cec1d6ca-4352-45b1-b4d7-317622c4edaf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30290,cec1d6ca-4352-45b1-b4d7-317622c4edaf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30291,cec1d6ca-4352-45b1-b4d7-317622c4edaf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30292,ced70c17-b251-412e-9eb8-e0ce2479fcb8,LIST_ACCOUNTS,xs2aListAccounts,true -30293,ced70c17-b251-412e-9eb8-e0ce2479fcb8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30293,ced70c17-b251-412e-9eb8-e0ce2479fcb8,LIST_TRANSACTIONS,xs2aListTransactions,true 30294,ced70c17-b251-412e-9eb8-e0ce2479fcb8,AUTHORIZATION,,true 30295,ced70c17-b251-412e-9eb8-e0ce2479fcb8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30296,ced70c17-b251-412e-9eb8-e0ce2479fcb8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30297,ced70c17-b251-412e-9eb8-e0ce2479fcb8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30298,842fa72c-d17c-4c36-bdfe-445adce7dded,LIST_ACCOUNTS,hbciListAccounts,false -30299,842fa72c-d17c-4c36-bdfe-445adce7dded,LIST_TRANSACTIONS,hbciListTransactions,false -30300,842fa72c-d17c-4c36-bdfe-445adce7dded,AUTHORIZATION,,false -30301,842fa72c-d17c-4c36-bdfe-445adce7dded,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30302,842fa72c-d17c-4c36-bdfe-445adce7dded,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30303,842fa72c-d17c-4c36-bdfe-445adce7dded,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30298,96ac3608-e38b-4bee-af14-25af597ec3cc,LIST_ACCOUNTS,hbciListAccounts,false +30299,96ac3608-e38b-4bee-af14-25af597ec3cc,LIST_TRANSACTIONS,hbciListTransactions,false +30300,96ac3608-e38b-4bee-af14-25af597ec3cc,AUTHORIZATION,,false +30301,96ac3608-e38b-4bee-af14-25af597ec3cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30302,96ac3608-e38b-4bee-af14-25af597ec3cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30303,96ac3608-e38b-4bee-af14-25af597ec3cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30304,b12ed7a7-0989-4e41-8f92-5f5809774258,LIST_ACCOUNTS,xs2aListAccounts,true -30305,b12ed7a7-0989-4e41-8f92-5f5809774258,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30305,b12ed7a7-0989-4e41-8f92-5f5809774258,LIST_TRANSACTIONS,xs2aListTransactions,true 30306,b12ed7a7-0989-4e41-8f92-5f5809774258,AUTHORIZATION,,true 30307,b12ed7a7-0989-4e41-8f92-5f5809774258,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30308,b12ed7a7-0989-4e41-8f92-5f5809774258,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30309,b12ed7a7-0989-4e41-8f92-5f5809774258,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30310,1784202b-f90f-4c7a-8f50-56c87c23806a,LIST_ACCOUNTS,hbciListAccounts,false -30311,1784202b-f90f-4c7a-8f50-56c87c23806a,LIST_TRANSACTIONS,hbciListTransactions,false -30312,1784202b-f90f-4c7a-8f50-56c87c23806a,AUTHORIZATION,,false -30313,1784202b-f90f-4c7a-8f50-56c87c23806a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30314,1784202b-f90f-4c7a-8f50-56c87c23806a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30315,1784202b-f90f-4c7a-8f50-56c87c23806a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30310,2f904534-573b-4fff-a509-a3f443f9b224,LIST_ACCOUNTS,hbciListAccounts,false +30311,2f904534-573b-4fff-a509-a3f443f9b224,LIST_TRANSACTIONS,hbciListTransactions,false +30312,2f904534-573b-4fff-a509-a3f443f9b224,AUTHORIZATION,,false +30313,2f904534-573b-4fff-a509-a3f443f9b224,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30314,2f904534-573b-4fff-a509-a3f443f9b224,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30315,2f904534-573b-4fff-a509-a3f443f9b224,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30316,59634b4a-8c3b-4245-9c5d-a30b15cae3a2,LIST_ACCOUNTS,xs2aListAccounts,true -30317,59634b4a-8c3b-4245-9c5d-a30b15cae3a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30317,59634b4a-8c3b-4245-9c5d-a30b15cae3a2,LIST_TRANSACTIONS,xs2aListTransactions,true 30318,59634b4a-8c3b-4245-9c5d-a30b15cae3a2,AUTHORIZATION,,true 30319,59634b4a-8c3b-4245-9c5d-a30b15cae3a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30320,59634b4a-8c3b-4245-9c5d-a30b15cae3a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30321,59634b4a-8c3b-4245-9c5d-a30b15cae3a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30322,894cc912-a761-4b28-a025-bd4e09757345,LIST_ACCOUNTS,hbciListAccounts,false -30323,894cc912-a761-4b28-a025-bd4e09757345,LIST_TRANSACTIONS,hbciListTransactions,false -30324,894cc912-a761-4b28-a025-bd4e09757345,AUTHORIZATION,,false -30325,894cc912-a761-4b28-a025-bd4e09757345,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30326,894cc912-a761-4b28-a025-bd4e09757345,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30327,894cc912-a761-4b28-a025-bd4e09757345,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30322,c5b81579-8b4c-40b3-960f-8fc8dc68e447,LIST_ACCOUNTS,hbciListAccounts,false +30323,c5b81579-8b4c-40b3-960f-8fc8dc68e447,LIST_TRANSACTIONS,hbciListTransactions,false +30324,c5b81579-8b4c-40b3-960f-8fc8dc68e447,AUTHORIZATION,,false +30325,c5b81579-8b4c-40b3-960f-8fc8dc68e447,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30326,c5b81579-8b4c-40b3-960f-8fc8dc68e447,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30327,c5b81579-8b4c-40b3-960f-8fc8dc68e447,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30328,7f1e2567-44e8-4f13-ae44-20fcb8bd5995,LIST_ACCOUNTS,xs2aListAccounts,true -30329,7f1e2567-44e8-4f13-ae44-20fcb8bd5995,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30329,7f1e2567-44e8-4f13-ae44-20fcb8bd5995,LIST_TRANSACTIONS,xs2aListTransactions,true 30330,7f1e2567-44e8-4f13-ae44-20fcb8bd5995,AUTHORIZATION,,true 30331,7f1e2567-44e8-4f13-ae44-20fcb8bd5995,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30332,7f1e2567-44e8-4f13-ae44-20fcb8bd5995,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30333,7f1e2567-44e8-4f13-ae44-20fcb8bd5995,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30334,81f963b8-ed7d-44cf-a09b-3382de1f661f,LIST_ACCOUNTS,hbciListAccounts,false -30335,81f963b8-ed7d-44cf-a09b-3382de1f661f,LIST_TRANSACTIONS,hbciListTransactions,false -30336,81f963b8-ed7d-44cf-a09b-3382de1f661f,AUTHORIZATION,,false -30337,81f963b8-ed7d-44cf-a09b-3382de1f661f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30338,81f963b8-ed7d-44cf-a09b-3382de1f661f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30339,81f963b8-ed7d-44cf-a09b-3382de1f661f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30334,6f3ef093-3cf6-4f45-9c2c-b59229e3d9b3,LIST_ACCOUNTS,hbciListAccounts,false +30335,6f3ef093-3cf6-4f45-9c2c-b59229e3d9b3,LIST_TRANSACTIONS,hbciListTransactions,false +30336,6f3ef093-3cf6-4f45-9c2c-b59229e3d9b3,AUTHORIZATION,,false +30337,6f3ef093-3cf6-4f45-9c2c-b59229e3d9b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30338,6f3ef093-3cf6-4f45-9c2c-b59229e3d9b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30339,6f3ef093-3cf6-4f45-9c2c-b59229e3d9b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30340,05617914-1009-4cac-9a6f-d0d7fc9b1427,LIST_ACCOUNTS,xs2aListAccounts,true -30341,05617914-1009-4cac-9a6f-d0d7fc9b1427,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30341,05617914-1009-4cac-9a6f-d0d7fc9b1427,LIST_TRANSACTIONS,xs2aListTransactions,true 30342,05617914-1009-4cac-9a6f-d0d7fc9b1427,AUTHORIZATION,,true 30343,05617914-1009-4cac-9a6f-d0d7fc9b1427,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30344,05617914-1009-4cac-9a6f-d0d7fc9b1427,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30345,05617914-1009-4cac-9a6f-d0d7fc9b1427,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30346,286f128d-018c-462b-b14a-2076965130a4,LIST_ACCOUNTS,hbciListAccounts,false -30347,286f128d-018c-462b-b14a-2076965130a4,LIST_TRANSACTIONS,hbciListTransactions,false -30348,286f128d-018c-462b-b14a-2076965130a4,AUTHORIZATION,,false -30349,286f128d-018c-462b-b14a-2076965130a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30350,286f128d-018c-462b-b14a-2076965130a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30351,286f128d-018c-462b-b14a-2076965130a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30346,afbf62ec-f0fc-47b7-b6bf-afbbfb5ac037,LIST_ACCOUNTS,hbciListAccounts,false +30347,afbf62ec-f0fc-47b7-b6bf-afbbfb5ac037,LIST_TRANSACTIONS,hbciListTransactions,false +30348,afbf62ec-f0fc-47b7-b6bf-afbbfb5ac037,AUTHORIZATION,,false +30349,afbf62ec-f0fc-47b7-b6bf-afbbfb5ac037,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30350,afbf62ec-f0fc-47b7-b6bf-afbbfb5ac037,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30351,afbf62ec-f0fc-47b7-b6bf-afbbfb5ac037,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30352,483343d7-18ca-423d-812f-4e3c4d3d11f6,LIST_ACCOUNTS,xs2aListAccounts,true -30353,483343d7-18ca-423d-812f-4e3c4d3d11f6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30353,483343d7-18ca-423d-812f-4e3c4d3d11f6,LIST_TRANSACTIONS,xs2aListTransactions,true 30354,483343d7-18ca-423d-812f-4e3c4d3d11f6,AUTHORIZATION,,true 30355,483343d7-18ca-423d-812f-4e3c4d3d11f6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30356,483343d7-18ca-423d-812f-4e3c4d3d11f6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30357,483343d7-18ca-423d-812f-4e3c4d3d11f6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30358,0fa1c7bc-fe35-4641-90ed-0e6fde4894a3,LIST_ACCOUNTS,hbciListAccounts,false -30359,0fa1c7bc-fe35-4641-90ed-0e6fde4894a3,LIST_TRANSACTIONS,hbciListTransactions,false -30360,0fa1c7bc-fe35-4641-90ed-0e6fde4894a3,AUTHORIZATION,,false -30361,0fa1c7bc-fe35-4641-90ed-0e6fde4894a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30362,0fa1c7bc-fe35-4641-90ed-0e6fde4894a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30363,0fa1c7bc-fe35-4641-90ed-0e6fde4894a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30358,a247be3d-c2f4-49f2-bfaa-11a8c57354bd,LIST_ACCOUNTS,hbciListAccounts,false +30359,a247be3d-c2f4-49f2-bfaa-11a8c57354bd,LIST_TRANSACTIONS,hbciListTransactions,false +30360,a247be3d-c2f4-49f2-bfaa-11a8c57354bd,AUTHORIZATION,,false +30361,a247be3d-c2f4-49f2-bfaa-11a8c57354bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30362,a247be3d-c2f4-49f2-bfaa-11a8c57354bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30363,a247be3d-c2f4-49f2-bfaa-11a8c57354bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30364,acc9d5da-9fa4-4f6e-9fbc-52bf6f5dd180,LIST_ACCOUNTS,xs2aListAccounts,true -30365,acc9d5da-9fa4-4f6e-9fbc-52bf6f5dd180,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30365,acc9d5da-9fa4-4f6e-9fbc-52bf6f5dd180,LIST_TRANSACTIONS,xs2aListTransactions,true 30366,acc9d5da-9fa4-4f6e-9fbc-52bf6f5dd180,AUTHORIZATION,,true 30367,acc9d5da-9fa4-4f6e-9fbc-52bf6f5dd180,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30368,acc9d5da-9fa4-4f6e-9fbc-52bf6f5dd180,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30369,acc9d5da-9fa4-4f6e-9fbc-52bf6f5dd180,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30370,abf005b9-a9a7-42de-845e-052fc5f28ef9,LIST_ACCOUNTS,hbciListAccounts,false -30371,abf005b9-a9a7-42de-845e-052fc5f28ef9,LIST_TRANSACTIONS,hbciListTransactions,false -30372,abf005b9-a9a7-42de-845e-052fc5f28ef9,AUTHORIZATION,,false -30373,abf005b9-a9a7-42de-845e-052fc5f28ef9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30374,abf005b9-a9a7-42de-845e-052fc5f28ef9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30375,abf005b9-a9a7-42de-845e-052fc5f28ef9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30370,5447881f-1397-43c5-aa02-3e02f60ccf4c,LIST_ACCOUNTS,hbciListAccounts,false +30371,5447881f-1397-43c5-aa02-3e02f60ccf4c,LIST_TRANSACTIONS,hbciListTransactions,false +30372,5447881f-1397-43c5-aa02-3e02f60ccf4c,AUTHORIZATION,,false +30373,5447881f-1397-43c5-aa02-3e02f60ccf4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30374,5447881f-1397-43c5-aa02-3e02f60ccf4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30375,5447881f-1397-43c5-aa02-3e02f60ccf4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30376,0ed52aef-65ce-42eb-a123-79259c70df6b,LIST_ACCOUNTS,xs2aListAccounts,true -30377,0ed52aef-65ce-42eb-a123-79259c70df6b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30377,0ed52aef-65ce-42eb-a123-79259c70df6b,LIST_TRANSACTIONS,xs2aListTransactions,true 30378,0ed52aef-65ce-42eb-a123-79259c70df6b,AUTHORIZATION,,true 30379,0ed52aef-65ce-42eb-a123-79259c70df6b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30380,0ed52aef-65ce-42eb-a123-79259c70df6b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30381,0ed52aef-65ce-42eb-a123-79259c70df6b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30382,c61aac61-66a8-4d27-a0df-abf46778eaa2,LIST_ACCOUNTS,hbciListAccounts,false -30383,c61aac61-66a8-4d27-a0df-abf46778eaa2,LIST_TRANSACTIONS,hbciListTransactions,false -30384,c61aac61-66a8-4d27-a0df-abf46778eaa2,AUTHORIZATION,,false -30385,c61aac61-66a8-4d27-a0df-abf46778eaa2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30386,c61aac61-66a8-4d27-a0df-abf46778eaa2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30387,c61aac61-66a8-4d27-a0df-abf46778eaa2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30382,38161b7c-dfa5-46f7-b8c5-5b8da7bf0917,LIST_ACCOUNTS,hbciListAccounts,false +30383,38161b7c-dfa5-46f7-b8c5-5b8da7bf0917,LIST_TRANSACTIONS,hbciListTransactions,false +30384,38161b7c-dfa5-46f7-b8c5-5b8da7bf0917,AUTHORIZATION,,false +30385,38161b7c-dfa5-46f7-b8c5-5b8da7bf0917,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30386,38161b7c-dfa5-46f7-b8c5-5b8da7bf0917,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30387,38161b7c-dfa5-46f7-b8c5-5b8da7bf0917,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30388,53b894db-e19d-463a-bae8-0b046e3da583,LIST_ACCOUNTS,xs2aListAccounts,true -30389,53b894db-e19d-463a-bae8-0b046e3da583,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30389,53b894db-e19d-463a-bae8-0b046e3da583,LIST_TRANSACTIONS,xs2aListTransactions,true 30390,53b894db-e19d-463a-bae8-0b046e3da583,AUTHORIZATION,,true 30391,53b894db-e19d-463a-bae8-0b046e3da583,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30392,53b894db-e19d-463a-bae8-0b046e3da583,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30393,53b894db-e19d-463a-bae8-0b046e3da583,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30394,1c8676bb-840b-4802-8d87-17e6a3507b2c,LIST_ACCOUNTS,hbciListAccounts,false -30395,1c8676bb-840b-4802-8d87-17e6a3507b2c,LIST_TRANSACTIONS,hbciListTransactions,false -30396,1c8676bb-840b-4802-8d87-17e6a3507b2c,AUTHORIZATION,,false -30397,1c8676bb-840b-4802-8d87-17e6a3507b2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30398,1c8676bb-840b-4802-8d87-17e6a3507b2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30399,1c8676bb-840b-4802-8d87-17e6a3507b2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30394,98202295-807d-4761-9a62-7984b7980fad,LIST_ACCOUNTS,hbciListAccounts,false +30395,98202295-807d-4761-9a62-7984b7980fad,LIST_TRANSACTIONS,hbciListTransactions,false +30396,98202295-807d-4761-9a62-7984b7980fad,AUTHORIZATION,,false +30397,98202295-807d-4761-9a62-7984b7980fad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30398,98202295-807d-4761-9a62-7984b7980fad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30399,98202295-807d-4761-9a62-7984b7980fad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30400,c95ccc1e-32d7-40b8-952a-c36227f9e94a,LIST_ACCOUNTS,xs2aListAccounts,true -30401,c95ccc1e-32d7-40b8-952a-c36227f9e94a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30401,c95ccc1e-32d7-40b8-952a-c36227f9e94a,LIST_TRANSACTIONS,xs2aListTransactions,true 30402,c95ccc1e-32d7-40b8-952a-c36227f9e94a,AUTHORIZATION,,true 30403,c95ccc1e-32d7-40b8-952a-c36227f9e94a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30404,c95ccc1e-32d7-40b8-952a-c36227f9e94a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30405,c95ccc1e-32d7-40b8-952a-c36227f9e94a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30406,d326c17f-9d07-48ba-b5b1-5dbbf472292a,LIST_ACCOUNTS,hbciListAccounts,false -30407,d326c17f-9d07-48ba-b5b1-5dbbf472292a,LIST_TRANSACTIONS,hbciListTransactions,false -30408,d326c17f-9d07-48ba-b5b1-5dbbf472292a,AUTHORIZATION,,false -30409,d326c17f-9d07-48ba-b5b1-5dbbf472292a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30410,d326c17f-9d07-48ba-b5b1-5dbbf472292a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30411,d326c17f-9d07-48ba-b5b1-5dbbf472292a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30406,dd8bc897-121c-48e9-b063-ad7b3199d9a8,LIST_ACCOUNTS,hbciListAccounts,false +30407,dd8bc897-121c-48e9-b063-ad7b3199d9a8,LIST_TRANSACTIONS,hbciListTransactions,false +30408,dd8bc897-121c-48e9-b063-ad7b3199d9a8,AUTHORIZATION,,false +30409,dd8bc897-121c-48e9-b063-ad7b3199d9a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30410,dd8bc897-121c-48e9-b063-ad7b3199d9a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30411,dd8bc897-121c-48e9-b063-ad7b3199d9a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30412,52f4cf56-7ffa-4ac7-8c04-d07556d5e3f2,LIST_ACCOUNTS,xs2aListAccounts,true -30413,52f4cf56-7ffa-4ac7-8c04-d07556d5e3f2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30413,52f4cf56-7ffa-4ac7-8c04-d07556d5e3f2,LIST_TRANSACTIONS,xs2aListTransactions,true 30414,52f4cf56-7ffa-4ac7-8c04-d07556d5e3f2,AUTHORIZATION,,true 30415,52f4cf56-7ffa-4ac7-8c04-d07556d5e3f2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30416,52f4cf56-7ffa-4ac7-8c04-d07556d5e3f2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30417,52f4cf56-7ffa-4ac7-8c04-d07556d5e3f2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30418,2372e1c0-a64f-4f76-990f-ed3fd394b85c,LIST_ACCOUNTS,hbciListAccounts,false -30419,2372e1c0-a64f-4f76-990f-ed3fd394b85c,LIST_TRANSACTIONS,hbciListTransactions,false -30420,2372e1c0-a64f-4f76-990f-ed3fd394b85c,AUTHORIZATION,,false -30421,2372e1c0-a64f-4f76-990f-ed3fd394b85c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30422,2372e1c0-a64f-4f76-990f-ed3fd394b85c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30423,2372e1c0-a64f-4f76-990f-ed3fd394b85c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30418,7553299f-c8c2-488a-a410-9086db004d05,LIST_ACCOUNTS,hbciListAccounts,false +30419,7553299f-c8c2-488a-a410-9086db004d05,LIST_TRANSACTIONS,hbciListTransactions,false +30420,7553299f-c8c2-488a-a410-9086db004d05,AUTHORIZATION,,false +30421,7553299f-c8c2-488a-a410-9086db004d05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30422,7553299f-c8c2-488a-a410-9086db004d05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30423,7553299f-c8c2-488a-a410-9086db004d05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30424,081f16c2-4092-4492-bfa2-8d11344d8ce9,LIST_ACCOUNTS,xs2aListAccounts,true -30425,081f16c2-4092-4492-bfa2-8d11344d8ce9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30425,081f16c2-4092-4492-bfa2-8d11344d8ce9,LIST_TRANSACTIONS,xs2aListTransactions,true 30426,081f16c2-4092-4492-bfa2-8d11344d8ce9,AUTHORIZATION,,true 30427,081f16c2-4092-4492-bfa2-8d11344d8ce9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30428,081f16c2-4092-4492-bfa2-8d11344d8ce9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30429,081f16c2-4092-4492-bfa2-8d11344d8ce9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30430,9e3b7ddd-5f58-422d-8b87-6fc6236b21a2,LIST_ACCOUNTS,hbciListAccounts,false -30431,9e3b7ddd-5f58-422d-8b87-6fc6236b21a2,LIST_TRANSACTIONS,hbciListTransactions,false -30432,9e3b7ddd-5f58-422d-8b87-6fc6236b21a2,AUTHORIZATION,,false -30433,9e3b7ddd-5f58-422d-8b87-6fc6236b21a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30434,9e3b7ddd-5f58-422d-8b87-6fc6236b21a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30435,9e3b7ddd-5f58-422d-8b87-6fc6236b21a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30430,4b382340-4a88-45e5-904c-068c7ebb3bd7,LIST_ACCOUNTS,hbciListAccounts,false +30431,4b382340-4a88-45e5-904c-068c7ebb3bd7,LIST_TRANSACTIONS,hbciListTransactions,false +30432,4b382340-4a88-45e5-904c-068c7ebb3bd7,AUTHORIZATION,,false +30433,4b382340-4a88-45e5-904c-068c7ebb3bd7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30434,4b382340-4a88-45e5-904c-068c7ebb3bd7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30435,4b382340-4a88-45e5-904c-068c7ebb3bd7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30436,ad58ce2f-fdb4-44ad-9f89-6103007c02a3,LIST_ACCOUNTS,xs2aListAccounts,true -30437,ad58ce2f-fdb4-44ad-9f89-6103007c02a3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30437,ad58ce2f-fdb4-44ad-9f89-6103007c02a3,LIST_TRANSACTIONS,xs2aListTransactions,true 30438,ad58ce2f-fdb4-44ad-9f89-6103007c02a3,AUTHORIZATION,,true 30439,ad58ce2f-fdb4-44ad-9f89-6103007c02a3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30440,ad58ce2f-fdb4-44ad-9f89-6103007c02a3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30441,ad58ce2f-fdb4-44ad-9f89-6103007c02a3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30442,cad70d8d-fbfd-498e-944e-6f995f7a6056,LIST_ACCOUNTS,hbciListAccounts,false -30443,cad70d8d-fbfd-498e-944e-6f995f7a6056,LIST_TRANSACTIONS,hbciListTransactions,false -30444,cad70d8d-fbfd-498e-944e-6f995f7a6056,AUTHORIZATION,,false -30445,cad70d8d-fbfd-498e-944e-6f995f7a6056,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30446,cad70d8d-fbfd-498e-944e-6f995f7a6056,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30447,cad70d8d-fbfd-498e-944e-6f995f7a6056,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30442,3687ae85-23d5-4813-a3cf-79cdd47b5757,LIST_ACCOUNTS,hbciListAccounts,false +30443,3687ae85-23d5-4813-a3cf-79cdd47b5757,LIST_TRANSACTIONS,hbciListTransactions,false +30444,3687ae85-23d5-4813-a3cf-79cdd47b5757,AUTHORIZATION,,false +30445,3687ae85-23d5-4813-a3cf-79cdd47b5757,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30446,3687ae85-23d5-4813-a3cf-79cdd47b5757,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30447,3687ae85-23d5-4813-a3cf-79cdd47b5757,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30448,43ce8bd0-14b8-4589-8059-38537be3ff19,LIST_ACCOUNTS,xs2aListAccounts,true -30449,43ce8bd0-14b8-4589-8059-38537be3ff19,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30449,43ce8bd0-14b8-4589-8059-38537be3ff19,LIST_TRANSACTIONS,xs2aListTransactions,true 30450,43ce8bd0-14b8-4589-8059-38537be3ff19,AUTHORIZATION,,true 30451,43ce8bd0-14b8-4589-8059-38537be3ff19,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30452,43ce8bd0-14b8-4589-8059-38537be3ff19,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30453,43ce8bd0-14b8-4589-8059-38537be3ff19,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30454,b1c0a4bb-d727-4e4b-9967-e9c36aead9b3,LIST_ACCOUNTS,hbciListAccounts,false -30455,b1c0a4bb-d727-4e4b-9967-e9c36aead9b3,LIST_TRANSACTIONS,hbciListTransactions,false -30456,b1c0a4bb-d727-4e4b-9967-e9c36aead9b3,AUTHORIZATION,,false -30457,b1c0a4bb-d727-4e4b-9967-e9c36aead9b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30458,b1c0a4bb-d727-4e4b-9967-e9c36aead9b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30459,b1c0a4bb-d727-4e4b-9967-e9c36aead9b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30454,6f98053a-6df0-4cb1-a5c5-17cf95afe7e7,LIST_ACCOUNTS,hbciListAccounts,false +30455,6f98053a-6df0-4cb1-a5c5-17cf95afe7e7,LIST_TRANSACTIONS,hbciListTransactions,false +30456,6f98053a-6df0-4cb1-a5c5-17cf95afe7e7,AUTHORIZATION,,false +30457,6f98053a-6df0-4cb1-a5c5-17cf95afe7e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30458,6f98053a-6df0-4cb1-a5c5-17cf95afe7e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30459,6f98053a-6df0-4cb1-a5c5-17cf95afe7e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30460,8f998304-98bd-4ca9-824f-1da56e102c93,LIST_ACCOUNTS,xs2aListAccounts,true -30461,8f998304-98bd-4ca9-824f-1da56e102c93,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30461,8f998304-98bd-4ca9-824f-1da56e102c93,LIST_TRANSACTIONS,xs2aListTransactions,true 30462,8f998304-98bd-4ca9-824f-1da56e102c93,AUTHORIZATION,,true 30463,8f998304-98bd-4ca9-824f-1da56e102c93,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30464,8f998304-98bd-4ca9-824f-1da56e102c93,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30465,8f998304-98bd-4ca9-824f-1da56e102c93,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30466,5a3fd28f-75d6-4ff8-ba1b-457685d6b04d,LIST_ACCOUNTS,hbciListAccounts,false -30467,5a3fd28f-75d6-4ff8-ba1b-457685d6b04d,LIST_TRANSACTIONS,hbciListTransactions,false -30468,5a3fd28f-75d6-4ff8-ba1b-457685d6b04d,AUTHORIZATION,,false -30469,5a3fd28f-75d6-4ff8-ba1b-457685d6b04d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30470,5a3fd28f-75d6-4ff8-ba1b-457685d6b04d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30471,5a3fd28f-75d6-4ff8-ba1b-457685d6b04d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30466,67a71d2c-aee6-44b0-8b5e-3940e0914e26,LIST_ACCOUNTS,hbciListAccounts,false +30467,67a71d2c-aee6-44b0-8b5e-3940e0914e26,LIST_TRANSACTIONS,hbciListTransactions,false +30468,67a71d2c-aee6-44b0-8b5e-3940e0914e26,AUTHORIZATION,,false +30469,67a71d2c-aee6-44b0-8b5e-3940e0914e26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30470,67a71d2c-aee6-44b0-8b5e-3940e0914e26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30471,67a71d2c-aee6-44b0-8b5e-3940e0914e26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30472,df1bc125-31f9-4c59-8df2-0007d2286c8a,LIST_ACCOUNTS,xs2aListAccounts,true -30473,df1bc125-31f9-4c59-8df2-0007d2286c8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30473,df1bc125-31f9-4c59-8df2-0007d2286c8a,LIST_TRANSACTIONS,xs2aListTransactions,true 30474,df1bc125-31f9-4c59-8df2-0007d2286c8a,AUTHORIZATION,,true 30475,df1bc125-31f9-4c59-8df2-0007d2286c8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30476,df1bc125-31f9-4c59-8df2-0007d2286c8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30477,df1bc125-31f9-4c59-8df2-0007d2286c8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30478,1521abf9-c5e6-4f4d-b0bd-5a6e66b25f78,LIST_ACCOUNTS,hbciListAccounts,false -30479,1521abf9-c5e6-4f4d-b0bd-5a6e66b25f78,LIST_TRANSACTIONS,hbciListTransactions,false -30480,1521abf9-c5e6-4f4d-b0bd-5a6e66b25f78,AUTHORIZATION,,false -30481,1521abf9-c5e6-4f4d-b0bd-5a6e66b25f78,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30482,1521abf9-c5e6-4f4d-b0bd-5a6e66b25f78,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30483,1521abf9-c5e6-4f4d-b0bd-5a6e66b25f78,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30478,0c2b4bf4-490e-40a9-abed-c05d9de0981d,LIST_ACCOUNTS,hbciListAccounts,false +30479,0c2b4bf4-490e-40a9-abed-c05d9de0981d,LIST_TRANSACTIONS,hbciListTransactions,false +30480,0c2b4bf4-490e-40a9-abed-c05d9de0981d,AUTHORIZATION,,false +30481,0c2b4bf4-490e-40a9-abed-c05d9de0981d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30482,0c2b4bf4-490e-40a9-abed-c05d9de0981d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30483,0c2b4bf4-490e-40a9-abed-c05d9de0981d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30484,d7332c62-150a-4bd8-90ad-2111a03d4388,LIST_ACCOUNTS,xs2aListAccounts,true -30485,d7332c62-150a-4bd8-90ad-2111a03d4388,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30485,d7332c62-150a-4bd8-90ad-2111a03d4388,LIST_TRANSACTIONS,xs2aListTransactions,true 30486,d7332c62-150a-4bd8-90ad-2111a03d4388,AUTHORIZATION,,true 30487,d7332c62-150a-4bd8-90ad-2111a03d4388,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30488,d7332c62-150a-4bd8-90ad-2111a03d4388,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30489,d7332c62-150a-4bd8-90ad-2111a03d4388,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30490,f67ac3c8-dc12-4226-9d50-d7b3ff4939d3,LIST_ACCOUNTS,hbciListAccounts,false -30491,f67ac3c8-dc12-4226-9d50-d7b3ff4939d3,LIST_TRANSACTIONS,hbciListTransactions,false -30492,f67ac3c8-dc12-4226-9d50-d7b3ff4939d3,AUTHORIZATION,,false -30493,f67ac3c8-dc12-4226-9d50-d7b3ff4939d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30494,f67ac3c8-dc12-4226-9d50-d7b3ff4939d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30495,f67ac3c8-dc12-4226-9d50-d7b3ff4939d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30490,bde92356-9d1d-486a-8fa9-bb5428197090,LIST_ACCOUNTS,hbciListAccounts,false +30491,bde92356-9d1d-486a-8fa9-bb5428197090,LIST_TRANSACTIONS,hbciListTransactions,false +30492,bde92356-9d1d-486a-8fa9-bb5428197090,AUTHORIZATION,,false +30493,bde92356-9d1d-486a-8fa9-bb5428197090,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30494,bde92356-9d1d-486a-8fa9-bb5428197090,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30495,bde92356-9d1d-486a-8fa9-bb5428197090,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30496,0399f175-0d87-4d74-90b5-205c5206a8fa,LIST_ACCOUNTS,xs2aListAccounts,true -30497,0399f175-0d87-4d74-90b5-205c5206a8fa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30497,0399f175-0d87-4d74-90b5-205c5206a8fa,LIST_TRANSACTIONS,xs2aListTransactions,true 30498,0399f175-0d87-4d74-90b5-205c5206a8fa,AUTHORIZATION,,true 30499,0399f175-0d87-4d74-90b5-205c5206a8fa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30500,0399f175-0d87-4d74-90b5-205c5206a8fa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30501,0399f175-0d87-4d74-90b5-205c5206a8fa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30502,d143670e-e166-44ec-ad33-fd765001eccd,LIST_ACCOUNTS,hbciListAccounts,false -30503,d143670e-e166-44ec-ad33-fd765001eccd,LIST_TRANSACTIONS,hbciListTransactions,false -30504,d143670e-e166-44ec-ad33-fd765001eccd,AUTHORIZATION,,false -30505,d143670e-e166-44ec-ad33-fd765001eccd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30506,d143670e-e166-44ec-ad33-fd765001eccd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30507,d143670e-e166-44ec-ad33-fd765001eccd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30502,191d27c4-76c9-4351-8ab9-1f7d055aeeae,LIST_ACCOUNTS,hbciListAccounts,false +30503,191d27c4-76c9-4351-8ab9-1f7d055aeeae,LIST_TRANSACTIONS,hbciListTransactions,false +30504,191d27c4-76c9-4351-8ab9-1f7d055aeeae,AUTHORIZATION,,false +30505,191d27c4-76c9-4351-8ab9-1f7d055aeeae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30506,191d27c4-76c9-4351-8ab9-1f7d055aeeae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30507,191d27c4-76c9-4351-8ab9-1f7d055aeeae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30508,975a4edf-3b69-4e1a-8206-2ab5eb6a3a83,LIST_ACCOUNTS,xs2aListAccounts,true -30509,975a4edf-3b69-4e1a-8206-2ab5eb6a3a83,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30509,975a4edf-3b69-4e1a-8206-2ab5eb6a3a83,LIST_TRANSACTIONS,xs2aListTransactions,true 30510,975a4edf-3b69-4e1a-8206-2ab5eb6a3a83,AUTHORIZATION,,true 30511,975a4edf-3b69-4e1a-8206-2ab5eb6a3a83,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30512,975a4edf-3b69-4e1a-8206-2ab5eb6a3a83,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30513,975a4edf-3b69-4e1a-8206-2ab5eb6a3a83,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30514,64b73a60-f13d-4478-9621-cf7939c76162,LIST_ACCOUNTS,hbciListAccounts,false -30515,64b73a60-f13d-4478-9621-cf7939c76162,LIST_TRANSACTIONS,hbciListTransactions,false -30516,64b73a60-f13d-4478-9621-cf7939c76162,AUTHORIZATION,,false -30517,64b73a60-f13d-4478-9621-cf7939c76162,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30518,64b73a60-f13d-4478-9621-cf7939c76162,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30519,64b73a60-f13d-4478-9621-cf7939c76162,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30514,b2e3a405-3eca-4b50-8b87-560d83edf5f1,LIST_ACCOUNTS,hbciListAccounts,false +30515,b2e3a405-3eca-4b50-8b87-560d83edf5f1,LIST_TRANSACTIONS,hbciListTransactions,false +30516,b2e3a405-3eca-4b50-8b87-560d83edf5f1,AUTHORIZATION,,false +30517,b2e3a405-3eca-4b50-8b87-560d83edf5f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30518,b2e3a405-3eca-4b50-8b87-560d83edf5f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30519,b2e3a405-3eca-4b50-8b87-560d83edf5f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30520,cb32bbf6-a9b5-4da4-a128-4fa8705a4b7d,LIST_ACCOUNTS,xs2aListAccounts,true -30521,cb32bbf6-a9b5-4da4-a128-4fa8705a4b7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30521,cb32bbf6-a9b5-4da4-a128-4fa8705a4b7d,LIST_TRANSACTIONS,xs2aListTransactions,true 30522,cb32bbf6-a9b5-4da4-a128-4fa8705a4b7d,AUTHORIZATION,,true 30523,cb32bbf6-a9b5-4da4-a128-4fa8705a4b7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30524,cb32bbf6-a9b5-4da4-a128-4fa8705a4b7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30525,cb32bbf6-a9b5-4da4-a128-4fa8705a4b7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30526,6d494446-4858-4329-b7eb-facaccc5964e,LIST_ACCOUNTS,hbciListAccounts,false -30527,6d494446-4858-4329-b7eb-facaccc5964e,LIST_TRANSACTIONS,hbciListTransactions,false -30528,6d494446-4858-4329-b7eb-facaccc5964e,AUTHORIZATION,,false -30529,6d494446-4858-4329-b7eb-facaccc5964e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30530,6d494446-4858-4329-b7eb-facaccc5964e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30531,6d494446-4858-4329-b7eb-facaccc5964e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30526,b7a245f2-6510-4214-8206-5019b938481b,LIST_ACCOUNTS,hbciListAccounts,false +30527,b7a245f2-6510-4214-8206-5019b938481b,LIST_TRANSACTIONS,hbciListTransactions,false +30528,b7a245f2-6510-4214-8206-5019b938481b,AUTHORIZATION,,false +30529,b7a245f2-6510-4214-8206-5019b938481b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30530,b7a245f2-6510-4214-8206-5019b938481b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30531,b7a245f2-6510-4214-8206-5019b938481b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30532,890410e4-a7eb-4f52-baf1-92d928b27f5a,LIST_ACCOUNTS,xs2aListAccounts,true -30533,890410e4-a7eb-4f52-baf1-92d928b27f5a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30533,890410e4-a7eb-4f52-baf1-92d928b27f5a,LIST_TRANSACTIONS,xs2aListTransactions,true 30534,890410e4-a7eb-4f52-baf1-92d928b27f5a,AUTHORIZATION,,true 30535,890410e4-a7eb-4f52-baf1-92d928b27f5a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30536,890410e4-a7eb-4f52-baf1-92d928b27f5a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30537,890410e4-a7eb-4f52-baf1-92d928b27f5a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30538,362fd203-3701-48e1-b20f-48d99be492d3,LIST_ACCOUNTS,hbciListAccounts,false -30539,362fd203-3701-48e1-b20f-48d99be492d3,LIST_TRANSACTIONS,hbciListTransactions,false -30540,362fd203-3701-48e1-b20f-48d99be492d3,AUTHORIZATION,,false -30541,362fd203-3701-48e1-b20f-48d99be492d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30542,362fd203-3701-48e1-b20f-48d99be492d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30543,362fd203-3701-48e1-b20f-48d99be492d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30538,c8b57335-b2b3-411c-bb55-e5fc4290dfdc,LIST_ACCOUNTS,hbciListAccounts,false +30539,c8b57335-b2b3-411c-bb55-e5fc4290dfdc,LIST_TRANSACTIONS,hbciListTransactions,false +30540,c8b57335-b2b3-411c-bb55-e5fc4290dfdc,AUTHORIZATION,,false +30541,c8b57335-b2b3-411c-bb55-e5fc4290dfdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30542,c8b57335-b2b3-411c-bb55-e5fc4290dfdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30543,c8b57335-b2b3-411c-bb55-e5fc4290dfdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30544,d1707b1d-e00b-454a-bb54-274696b9852b,LIST_ACCOUNTS,xs2aListAccounts,true -30545,d1707b1d-e00b-454a-bb54-274696b9852b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30545,d1707b1d-e00b-454a-bb54-274696b9852b,LIST_TRANSACTIONS,xs2aListTransactions,true 30546,d1707b1d-e00b-454a-bb54-274696b9852b,AUTHORIZATION,,true 30547,d1707b1d-e00b-454a-bb54-274696b9852b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30548,d1707b1d-e00b-454a-bb54-274696b9852b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30549,d1707b1d-e00b-454a-bb54-274696b9852b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30550,cf647e92-8b72-4d29-8696-717ab0662d2b,LIST_ACCOUNTS,hbciListAccounts,false -30551,cf647e92-8b72-4d29-8696-717ab0662d2b,LIST_TRANSACTIONS,hbciListTransactions,false -30552,cf647e92-8b72-4d29-8696-717ab0662d2b,AUTHORIZATION,,false -30553,cf647e92-8b72-4d29-8696-717ab0662d2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30554,cf647e92-8b72-4d29-8696-717ab0662d2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30555,cf647e92-8b72-4d29-8696-717ab0662d2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30550,8b437039-1487-48ae-bc76-f26e43fcb416,LIST_ACCOUNTS,hbciListAccounts,false +30551,8b437039-1487-48ae-bc76-f26e43fcb416,LIST_TRANSACTIONS,hbciListTransactions,false +30552,8b437039-1487-48ae-bc76-f26e43fcb416,AUTHORIZATION,,false +30553,8b437039-1487-48ae-bc76-f26e43fcb416,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30554,8b437039-1487-48ae-bc76-f26e43fcb416,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30555,8b437039-1487-48ae-bc76-f26e43fcb416,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30556,ac04abbc-5330-4df7-bcc9-8a5affce2049,LIST_ACCOUNTS,xs2aListAccounts,true -30557,ac04abbc-5330-4df7-bcc9-8a5affce2049,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30557,ac04abbc-5330-4df7-bcc9-8a5affce2049,LIST_TRANSACTIONS,xs2aListTransactions,true 30558,ac04abbc-5330-4df7-bcc9-8a5affce2049,AUTHORIZATION,,true 30559,ac04abbc-5330-4df7-bcc9-8a5affce2049,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30560,ac04abbc-5330-4df7-bcc9-8a5affce2049,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30561,ac04abbc-5330-4df7-bcc9-8a5affce2049,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30562,76efc5d8-967d-4fd6-8a1b-df1b4877fcd5,LIST_ACCOUNTS,hbciListAccounts,false -30563,76efc5d8-967d-4fd6-8a1b-df1b4877fcd5,LIST_TRANSACTIONS,hbciListTransactions,false -30564,76efc5d8-967d-4fd6-8a1b-df1b4877fcd5,AUTHORIZATION,,false -30565,76efc5d8-967d-4fd6-8a1b-df1b4877fcd5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30566,76efc5d8-967d-4fd6-8a1b-df1b4877fcd5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30567,76efc5d8-967d-4fd6-8a1b-df1b4877fcd5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30562,e279d235-3026-435b-ad9c-ac7b436f09a4,LIST_ACCOUNTS,hbciListAccounts,false +30563,e279d235-3026-435b-ad9c-ac7b436f09a4,LIST_TRANSACTIONS,hbciListTransactions,false +30564,e279d235-3026-435b-ad9c-ac7b436f09a4,AUTHORIZATION,,false +30565,e279d235-3026-435b-ad9c-ac7b436f09a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30566,e279d235-3026-435b-ad9c-ac7b436f09a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30567,e279d235-3026-435b-ad9c-ac7b436f09a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30568,2b1b34f4-b59a-4a41-aed0-4178c0152405,LIST_ACCOUNTS,xs2aListAccounts,true -30569,2b1b34f4-b59a-4a41-aed0-4178c0152405,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30569,2b1b34f4-b59a-4a41-aed0-4178c0152405,LIST_TRANSACTIONS,xs2aListTransactions,true 30570,2b1b34f4-b59a-4a41-aed0-4178c0152405,AUTHORIZATION,,true 30571,2b1b34f4-b59a-4a41-aed0-4178c0152405,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30572,2b1b34f4-b59a-4a41-aed0-4178c0152405,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30573,2b1b34f4-b59a-4a41-aed0-4178c0152405,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30574,3f60ccec-5ce8-43ea-8a8c-d3698255a5b9,LIST_ACCOUNTS,hbciListAccounts,false -30575,3f60ccec-5ce8-43ea-8a8c-d3698255a5b9,LIST_TRANSACTIONS,hbciListTransactions,false -30576,3f60ccec-5ce8-43ea-8a8c-d3698255a5b9,AUTHORIZATION,,false -30577,3f60ccec-5ce8-43ea-8a8c-d3698255a5b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30578,3f60ccec-5ce8-43ea-8a8c-d3698255a5b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30579,3f60ccec-5ce8-43ea-8a8c-d3698255a5b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30574,327d35aa-1bc7-4ea1-a669-ac705705499d,LIST_ACCOUNTS,hbciListAccounts,false +30575,327d35aa-1bc7-4ea1-a669-ac705705499d,LIST_TRANSACTIONS,hbciListTransactions,false +30576,327d35aa-1bc7-4ea1-a669-ac705705499d,AUTHORIZATION,,false +30577,327d35aa-1bc7-4ea1-a669-ac705705499d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30578,327d35aa-1bc7-4ea1-a669-ac705705499d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30579,327d35aa-1bc7-4ea1-a669-ac705705499d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30580,bad0ccc7-302d-41b7-ac63-b2b5f043bac5,LIST_ACCOUNTS,xs2aListAccounts,true -30581,bad0ccc7-302d-41b7-ac63-b2b5f043bac5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30581,bad0ccc7-302d-41b7-ac63-b2b5f043bac5,LIST_TRANSACTIONS,xs2aListTransactions,true 30582,bad0ccc7-302d-41b7-ac63-b2b5f043bac5,AUTHORIZATION,,true 30583,bad0ccc7-302d-41b7-ac63-b2b5f043bac5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30584,bad0ccc7-302d-41b7-ac63-b2b5f043bac5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30585,bad0ccc7-302d-41b7-ac63-b2b5f043bac5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30586,4f795767-ebbd-4218-8ec5-a505c3966566,LIST_ACCOUNTS,hbciListAccounts,false -30587,4f795767-ebbd-4218-8ec5-a505c3966566,LIST_TRANSACTIONS,hbciListTransactions,false -30588,4f795767-ebbd-4218-8ec5-a505c3966566,AUTHORIZATION,,false -30589,4f795767-ebbd-4218-8ec5-a505c3966566,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30590,4f795767-ebbd-4218-8ec5-a505c3966566,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30591,4f795767-ebbd-4218-8ec5-a505c3966566,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30586,47ec7a7d-9100-4181-a5a3-b77f853d3076,LIST_ACCOUNTS,hbciListAccounts,false +30587,47ec7a7d-9100-4181-a5a3-b77f853d3076,LIST_TRANSACTIONS,hbciListTransactions,false +30588,47ec7a7d-9100-4181-a5a3-b77f853d3076,AUTHORIZATION,,false +30589,47ec7a7d-9100-4181-a5a3-b77f853d3076,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30590,47ec7a7d-9100-4181-a5a3-b77f853d3076,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30591,47ec7a7d-9100-4181-a5a3-b77f853d3076,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30592,28ca935c-3492-4c41-8c1a-469b4b42c4ae,LIST_ACCOUNTS,xs2aListAccounts,true -30593,28ca935c-3492-4c41-8c1a-469b4b42c4ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30593,28ca935c-3492-4c41-8c1a-469b4b42c4ae,LIST_TRANSACTIONS,xs2aListTransactions,true 30594,28ca935c-3492-4c41-8c1a-469b4b42c4ae,AUTHORIZATION,,true 30595,28ca935c-3492-4c41-8c1a-469b4b42c4ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30596,28ca935c-3492-4c41-8c1a-469b4b42c4ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30597,28ca935c-3492-4c41-8c1a-469b4b42c4ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30598,d8c3d97c-20e5-4836-b4ab-49fd1699c90b,LIST_ACCOUNTS,hbciListAccounts,false -30599,d8c3d97c-20e5-4836-b4ab-49fd1699c90b,LIST_TRANSACTIONS,hbciListTransactions,false -30600,d8c3d97c-20e5-4836-b4ab-49fd1699c90b,AUTHORIZATION,,false -30601,d8c3d97c-20e5-4836-b4ab-49fd1699c90b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30602,d8c3d97c-20e5-4836-b4ab-49fd1699c90b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30603,d8c3d97c-20e5-4836-b4ab-49fd1699c90b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30598,3ebcc7ae-98dd-417c-b46e-12abab35cc67,LIST_ACCOUNTS,hbciListAccounts,false +30599,3ebcc7ae-98dd-417c-b46e-12abab35cc67,LIST_TRANSACTIONS,hbciListTransactions,false +30600,3ebcc7ae-98dd-417c-b46e-12abab35cc67,AUTHORIZATION,,false +30601,3ebcc7ae-98dd-417c-b46e-12abab35cc67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30602,3ebcc7ae-98dd-417c-b46e-12abab35cc67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30603,3ebcc7ae-98dd-417c-b46e-12abab35cc67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30604,1d136060-001b-4620-9ee1-e0e8315dcc8e,LIST_ACCOUNTS,xs2aListAccounts,true -30605,1d136060-001b-4620-9ee1-e0e8315dcc8e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30605,1d136060-001b-4620-9ee1-e0e8315dcc8e,LIST_TRANSACTIONS,xs2aListTransactions,true 30606,1d136060-001b-4620-9ee1-e0e8315dcc8e,AUTHORIZATION,,true 30607,1d136060-001b-4620-9ee1-e0e8315dcc8e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30608,1d136060-001b-4620-9ee1-e0e8315dcc8e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30609,1d136060-001b-4620-9ee1-e0e8315dcc8e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30610,8414f04a-a72b-4e9e-ab30-134a55b87bdc,LIST_ACCOUNTS,hbciListAccounts,false -30611,8414f04a-a72b-4e9e-ab30-134a55b87bdc,LIST_TRANSACTIONS,hbciListTransactions,false -30612,8414f04a-a72b-4e9e-ab30-134a55b87bdc,AUTHORIZATION,,false -30613,8414f04a-a72b-4e9e-ab30-134a55b87bdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30614,8414f04a-a72b-4e9e-ab30-134a55b87bdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30615,8414f04a-a72b-4e9e-ab30-134a55b87bdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30610,5c6d79b5-b4d2-46b5-9531-4df4facf8011,LIST_ACCOUNTS,hbciListAccounts,false +30611,5c6d79b5-b4d2-46b5-9531-4df4facf8011,LIST_TRANSACTIONS,hbciListTransactions,false +30612,5c6d79b5-b4d2-46b5-9531-4df4facf8011,AUTHORIZATION,,false +30613,5c6d79b5-b4d2-46b5-9531-4df4facf8011,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30614,5c6d79b5-b4d2-46b5-9531-4df4facf8011,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30615,5c6d79b5-b4d2-46b5-9531-4df4facf8011,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30616,ca5ce415-b30d-4ec6-887a-b1fb00b80d1f,LIST_ACCOUNTS,xs2aListAccounts,true -30617,ca5ce415-b30d-4ec6-887a-b1fb00b80d1f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30617,ca5ce415-b30d-4ec6-887a-b1fb00b80d1f,LIST_TRANSACTIONS,xs2aListTransactions,true 30618,ca5ce415-b30d-4ec6-887a-b1fb00b80d1f,AUTHORIZATION,,true 30619,ca5ce415-b30d-4ec6-887a-b1fb00b80d1f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30620,ca5ce415-b30d-4ec6-887a-b1fb00b80d1f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30621,ca5ce415-b30d-4ec6-887a-b1fb00b80d1f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30622,d46b1317-d620-4e15-b274-84a37af72e9f,LIST_ACCOUNTS,hbciListAccounts,false -30623,d46b1317-d620-4e15-b274-84a37af72e9f,LIST_TRANSACTIONS,hbciListTransactions,false -30624,d46b1317-d620-4e15-b274-84a37af72e9f,AUTHORIZATION,,false -30625,d46b1317-d620-4e15-b274-84a37af72e9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30626,d46b1317-d620-4e15-b274-84a37af72e9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30627,d46b1317-d620-4e15-b274-84a37af72e9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30622,b895becc-5d50-4a4b-a80d-8138510d3eae,LIST_ACCOUNTS,hbciListAccounts,false +30623,b895becc-5d50-4a4b-a80d-8138510d3eae,LIST_TRANSACTIONS,hbciListTransactions,false +30624,b895becc-5d50-4a4b-a80d-8138510d3eae,AUTHORIZATION,,false +30625,b895becc-5d50-4a4b-a80d-8138510d3eae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30626,b895becc-5d50-4a4b-a80d-8138510d3eae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30627,b895becc-5d50-4a4b-a80d-8138510d3eae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30628,cf52a642-7d84-499e-a11a-e816ab3a309d,LIST_ACCOUNTS,xs2aListAccounts,true -30629,cf52a642-7d84-499e-a11a-e816ab3a309d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30629,cf52a642-7d84-499e-a11a-e816ab3a309d,LIST_TRANSACTIONS,xs2aListTransactions,true 30630,cf52a642-7d84-499e-a11a-e816ab3a309d,AUTHORIZATION,,true 30631,cf52a642-7d84-499e-a11a-e816ab3a309d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30632,cf52a642-7d84-499e-a11a-e816ab3a309d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30633,cf52a642-7d84-499e-a11a-e816ab3a309d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30634,58324a8d-4923-42dc-aba2-209b4b015599,LIST_ACCOUNTS,hbciListAccounts,false -30635,58324a8d-4923-42dc-aba2-209b4b015599,LIST_TRANSACTIONS,hbciListTransactions,false -30636,58324a8d-4923-42dc-aba2-209b4b015599,AUTHORIZATION,,false -30637,58324a8d-4923-42dc-aba2-209b4b015599,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30638,58324a8d-4923-42dc-aba2-209b4b015599,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30639,58324a8d-4923-42dc-aba2-209b4b015599,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30634,4f7ee55a-dd1e-474c-a028-dcf15cfc705d,LIST_ACCOUNTS,hbciListAccounts,false +30635,4f7ee55a-dd1e-474c-a028-dcf15cfc705d,LIST_TRANSACTIONS,hbciListTransactions,false +30636,4f7ee55a-dd1e-474c-a028-dcf15cfc705d,AUTHORIZATION,,false +30637,4f7ee55a-dd1e-474c-a028-dcf15cfc705d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30638,4f7ee55a-dd1e-474c-a028-dcf15cfc705d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30639,4f7ee55a-dd1e-474c-a028-dcf15cfc705d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30640,c7fe6373-e16a-427b-bafa-476150bd2cb4,LIST_ACCOUNTS,xs2aListAccounts,true -30641,c7fe6373-e16a-427b-bafa-476150bd2cb4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30641,c7fe6373-e16a-427b-bafa-476150bd2cb4,LIST_TRANSACTIONS,xs2aListTransactions,true 30642,c7fe6373-e16a-427b-bafa-476150bd2cb4,AUTHORIZATION,,true 30643,c7fe6373-e16a-427b-bafa-476150bd2cb4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30644,c7fe6373-e16a-427b-bafa-476150bd2cb4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30645,c7fe6373-e16a-427b-bafa-476150bd2cb4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30646,cdf0938d-d726-497a-81f6-86a9dfd2c236,LIST_ACCOUNTS,hbciListAccounts,false -30647,cdf0938d-d726-497a-81f6-86a9dfd2c236,LIST_TRANSACTIONS,hbciListTransactions,false -30648,cdf0938d-d726-497a-81f6-86a9dfd2c236,AUTHORIZATION,,false -30649,cdf0938d-d726-497a-81f6-86a9dfd2c236,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30650,cdf0938d-d726-497a-81f6-86a9dfd2c236,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30651,cdf0938d-d726-497a-81f6-86a9dfd2c236,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30646,fb733b4d-0de4-4fd6-92cb-65427228240d,LIST_ACCOUNTS,hbciListAccounts,false +30647,fb733b4d-0de4-4fd6-92cb-65427228240d,LIST_TRANSACTIONS,hbciListTransactions,false +30648,fb733b4d-0de4-4fd6-92cb-65427228240d,AUTHORIZATION,,false +30649,fb733b4d-0de4-4fd6-92cb-65427228240d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30650,fb733b4d-0de4-4fd6-92cb-65427228240d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30651,fb733b4d-0de4-4fd6-92cb-65427228240d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30652,230c3e34-75db-46e7-9829-84139d1cf7b1,LIST_ACCOUNTS,xs2aListAccounts,true -30653,230c3e34-75db-46e7-9829-84139d1cf7b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30653,230c3e34-75db-46e7-9829-84139d1cf7b1,LIST_TRANSACTIONS,xs2aListTransactions,true 30654,230c3e34-75db-46e7-9829-84139d1cf7b1,AUTHORIZATION,,true 30655,230c3e34-75db-46e7-9829-84139d1cf7b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30656,230c3e34-75db-46e7-9829-84139d1cf7b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30657,230c3e34-75db-46e7-9829-84139d1cf7b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30658,d5e6fb9f-e0d0-4866-ae1c-f577197ccd36,LIST_ACCOUNTS,hbciListAccounts,false -30659,d5e6fb9f-e0d0-4866-ae1c-f577197ccd36,LIST_TRANSACTIONS,hbciListTransactions,false -30660,d5e6fb9f-e0d0-4866-ae1c-f577197ccd36,AUTHORIZATION,,false -30661,d5e6fb9f-e0d0-4866-ae1c-f577197ccd36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30662,d5e6fb9f-e0d0-4866-ae1c-f577197ccd36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30663,d5e6fb9f-e0d0-4866-ae1c-f577197ccd36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30658,b37234ea-e297-4846-aaa0-e9e43b40e0f4,LIST_ACCOUNTS,hbciListAccounts,false +30659,b37234ea-e297-4846-aaa0-e9e43b40e0f4,LIST_TRANSACTIONS,hbciListTransactions,false +30660,b37234ea-e297-4846-aaa0-e9e43b40e0f4,AUTHORIZATION,,false +30661,b37234ea-e297-4846-aaa0-e9e43b40e0f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30662,b37234ea-e297-4846-aaa0-e9e43b40e0f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30663,b37234ea-e297-4846-aaa0-e9e43b40e0f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30664,52accfb0-315c-4adb-9690-97e23f404529,LIST_ACCOUNTS,xs2aListAccounts,true -30665,52accfb0-315c-4adb-9690-97e23f404529,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30665,52accfb0-315c-4adb-9690-97e23f404529,LIST_TRANSACTIONS,xs2aListTransactions,true 30666,52accfb0-315c-4adb-9690-97e23f404529,AUTHORIZATION,,true 30667,52accfb0-315c-4adb-9690-97e23f404529,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30668,52accfb0-315c-4adb-9690-97e23f404529,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30669,52accfb0-315c-4adb-9690-97e23f404529,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30670,c09c7153-1006-4348-801d-afe6c1646b82,LIST_ACCOUNTS,hbciListAccounts,false -30671,c09c7153-1006-4348-801d-afe6c1646b82,LIST_TRANSACTIONS,hbciListTransactions,false -30672,c09c7153-1006-4348-801d-afe6c1646b82,AUTHORIZATION,,false -30673,c09c7153-1006-4348-801d-afe6c1646b82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30674,c09c7153-1006-4348-801d-afe6c1646b82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30675,c09c7153-1006-4348-801d-afe6c1646b82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30670,1247fc6c-644c-47b3-bff2-f12e35a306e6,LIST_ACCOUNTS,hbciListAccounts,false +30671,1247fc6c-644c-47b3-bff2-f12e35a306e6,LIST_TRANSACTIONS,hbciListTransactions,false +30672,1247fc6c-644c-47b3-bff2-f12e35a306e6,AUTHORIZATION,,false +30673,1247fc6c-644c-47b3-bff2-f12e35a306e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30674,1247fc6c-644c-47b3-bff2-f12e35a306e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30675,1247fc6c-644c-47b3-bff2-f12e35a306e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30676,c893d559-dfcf-4838-86cb-4b3b494ed79c,LIST_ACCOUNTS,xs2aListAccounts,true -30677,c893d559-dfcf-4838-86cb-4b3b494ed79c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30677,c893d559-dfcf-4838-86cb-4b3b494ed79c,LIST_TRANSACTIONS,xs2aListTransactions,true 30678,c893d559-dfcf-4838-86cb-4b3b494ed79c,AUTHORIZATION,,true 30679,c893d559-dfcf-4838-86cb-4b3b494ed79c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30680,c893d559-dfcf-4838-86cb-4b3b494ed79c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30681,c893d559-dfcf-4838-86cb-4b3b494ed79c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30682,c7a980b6-f14d-4af9-93c6-de2702061960,LIST_ACCOUNTS,hbciListAccounts,false -30683,c7a980b6-f14d-4af9-93c6-de2702061960,LIST_TRANSACTIONS,hbciListTransactions,false -30684,c7a980b6-f14d-4af9-93c6-de2702061960,AUTHORIZATION,,false -30685,c7a980b6-f14d-4af9-93c6-de2702061960,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30686,c7a980b6-f14d-4af9-93c6-de2702061960,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30687,c7a980b6-f14d-4af9-93c6-de2702061960,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30682,b43d5e6f-b2d8-47ce-b9e3-7cedb4b0a8e5,LIST_ACCOUNTS,hbciListAccounts,false +30683,b43d5e6f-b2d8-47ce-b9e3-7cedb4b0a8e5,LIST_TRANSACTIONS,hbciListTransactions,false +30684,b43d5e6f-b2d8-47ce-b9e3-7cedb4b0a8e5,AUTHORIZATION,,false +30685,b43d5e6f-b2d8-47ce-b9e3-7cedb4b0a8e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30686,b43d5e6f-b2d8-47ce-b9e3-7cedb4b0a8e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30687,b43d5e6f-b2d8-47ce-b9e3-7cedb4b0a8e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30688,c4cb75fe-60da-418b-a8b7-351c05203186,LIST_ACCOUNTS,xs2aListAccounts,true -30689,c4cb75fe-60da-418b-a8b7-351c05203186,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30689,c4cb75fe-60da-418b-a8b7-351c05203186,LIST_TRANSACTIONS,xs2aListTransactions,true 30690,c4cb75fe-60da-418b-a8b7-351c05203186,AUTHORIZATION,,true 30691,c4cb75fe-60da-418b-a8b7-351c05203186,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30692,c4cb75fe-60da-418b-a8b7-351c05203186,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30693,c4cb75fe-60da-418b-a8b7-351c05203186,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30694,65611597-5dea-4186-a310-df7e12d5b41b,LIST_ACCOUNTS,hbciListAccounts,false -30695,65611597-5dea-4186-a310-df7e12d5b41b,LIST_TRANSACTIONS,hbciListTransactions,false -30696,65611597-5dea-4186-a310-df7e12d5b41b,AUTHORIZATION,,false -30697,65611597-5dea-4186-a310-df7e12d5b41b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30698,65611597-5dea-4186-a310-df7e12d5b41b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30699,65611597-5dea-4186-a310-df7e12d5b41b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30694,95deae27-161b-4a24-b881-52487b060ac7,LIST_ACCOUNTS,hbciListAccounts,false +30695,95deae27-161b-4a24-b881-52487b060ac7,LIST_TRANSACTIONS,hbciListTransactions,false +30696,95deae27-161b-4a24-b881-52487b060ac7,AUTHORIZATION,,false +30697,95deae27-161b-4a24-b881-52487b060ac7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30698,95deae27-161b-4a24-b881-52487b060ac7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30699,95deae27-161b-4a24-b881-52487b060ac7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30700,4808094b-376f-4193-ba23-c82c72fba926,LIST_ACCOUNTS,xs2aListAccounts,true -30701,4808094b-376f-4193-ba23-c82c72fba926,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30701,4808094b-376f-4193-ba23-c82c72fba926,LIST_TRANSACTIONS,xs2aListTransactions,true 30702,4808094b-376f-4193-ba23-c82c72fba926,AUTHORIZATION,,true 30703,4808094b-376f-4193-ba23-c82c72fba926,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30704,4808094b-376f-4193-ba23-c82c72fba926,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30705,4808094b-376f-4193-ba23-c82c72fba926,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30706,cdb55d58-153e-45b6-aac8-84f5ac2c0452,LIST_ACCOUNTS,hbciListAccounts,false -30707,cdb55d58-153e-45b6-aac8-84f5ac2c0452,LIST_TRANSACTIONS,hbciListTransactions,false -30708,cdb55d58-153e-45b6-aac8-84f5ac2c0452,AUTHORIZATION,,false -30709,cdb55d58-153e-45b6-aac8-84f5ac2c0452,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30710,cdb55d58-153e-45b6-aac8-84f5ac2c0452,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30711,cdb55d58-153e-45b6-aac8-84f5ac2c0452,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30706,77b80057-1c49-49dd-ba3d-5f7f1de02f06,LIST_ACCOUNTS,hbciListAccounts,false +30707,77b80057-1c49-49dd-ba3d-5f7f1de02f06,LIST_TRANSACTIONS,hbciListTransactions,false +30708,77b80057-1c49-49dd-ba3d-5f7f1de02f06,AUTHORIZATION,,false +30709,77b80057-1c49-49dd-ba3d-5f7f1de02f06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30710,77b80057-1c49-49dd-ba3d-5f7f1de02f06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30711,77b80057-1c49-49dd-ba3d-5f7f1de02f06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30712,c9d92834-ef55-468f-90c7-972e6474f8a8,LIST_ACCOUNTS,xs2aListAccounts,true -30713,c9d92834-ef55-468f-90c7-972e6474f8a8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30713,c9d92834-ef55-468f-90c7-972e6474f8a8,LIST_TRANSACTIONS,xs2aListTransactions,true 30714,c9d92834-ef55-468f-90c7-972e6474f8a8,AUTHORIZATION,,true 30715,c9d92834-ef55-468f-90c7-972e6474f8a8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30716,c9d92834-ef55-468f-90c7-972e6474f8a8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30717,c9d92834-ef55-468f-90c7-972e6474f8a8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30718,915e1663-42d8-4964-8c33-2e387318fc93,LIST_ACCOUNTS,hbciListAccounts,false -30719,915e1663-42d8-4964-8c33-2e387318fc93,LIST_TRANSACTIONS,hbciListTransactions,false -30720,915e1663-42d8-4964-8c33-2e387318fc93,AUTHORIZATION,,false -30721,915e1663-42d8-4964-8c33-2e387318fc93,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30722,915e1663-42d8-4964-8c33-2e387318fc93,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30723,915e1663-42d8-4964-8c33-2e387318fc93,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30718,287c8892-1472-43aa-82eb-78e82b33c488,LIST_ACCOUNTS,hbciListAccounts,false +30719,287c8892-1472-43aa-82eb-78e82b33c488,LIST_TRANSACTIONS,hbciListTransactions,false +30720,287c8892-1472-43aa-82eb-78e82b33c488,AUTHORIZATION,,false +30721,287c8892-1472-43aa-82eb-78e82b33c488,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30722,287c8892-1472-43aa-82eb-78e82b33c488,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30723,287c8892-1472-43aa-82eb-78e82b33c488,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30724,c5dbd1c9-240e-44d7-bfa9-453764b29025,LIST_ACCOUNTS,xs2aListAccounts,true -30725,c5dbd1c9-240e-44d7-bfa9-453764b29025,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30725,c5dbd1c9-240e-44d7-bfa9-453764b29025,LIST_TRANSACTIONS,xs2aListTransactions,true 30726,c5dbd1c9-240e-44d7-bfa9-453764b29025,AUTHORIZATION,,true 30727,c5dbd1c9-240e-44d7-bfa9-453764b29025,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30728,c5dbd1c9-240e-44d7-bfa9-453764b29025,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30729,c5dbd1c9-240e-44d7-bfa9-453764b29025,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30730,f8880690-e881-4fc9-b931-f37e67da5e55,LIST_ACCOUNTS,hbciListAccounts,false -30731,f8880690-e881-4fc9-b931-f37e67da5e55,LIST_TRANSACTIONS,hbciListTransactions,false -30732,f8880690-e881-4fc9-b931-f37e67da5e55,AUTHORIZATION,,false -30733,f8880690-e881-4fc9-b931-f37e67da5e55,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30734,f8880690-e881-4fc9-b931-f37e67da5e55,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30735,f8880690-e881-4fc9-b931-f37e67da5e55,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30730,573ca01a-1641-4f1f-b6ea-e18881a7943b,LIST_ACCOUNTS,hbciListAccounts,false +30731,573ca01a-1641-4f1f-b6ea-e18881a7943b,LIST_TRANSACTIONS,hbciListTransactions,false +30732,573ca01a-1641-4f1f-b6ea-e18881a7943b,AUTHORIZATION,,false +30733,573ca01a-1641-4f1f-b6ea-e18881a7943b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30734,573ca01a-1641-4f1f-b6ea-e18881a7943b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30735,573ca01a-1641-4f1f-b6ea-e18881a7943b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30736,b70fdf56-fae4-4c27-9efa-f44f399f6c2c,LIST_ACCOUNTS,xs2aListAccounts,true -30737,b70fdf56-fae4-4c27-9efa-f44f399f6c2c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30737,b70fdf56-fae4-4c27-9efa-f44f399f6c2c,LIST_TRANSACTIONS,xs2aListTransactions,true 30738,b70fdf56-fae4-4c27-9efa-f44f399f6c2c,AUTHORIZATION,,true 30739,b70fdf56-fae4-4c27-9efa-f44f399f6c2c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30740,b70fdf56-fae4-4c27-9efa-f44f399f6c2c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30741,b70fdf56-fae4-4c27-9efa-f44f399f6c2c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30742,432fe3c8-e5c3-4232-879d-ab06c14b72dd,LIST_ACCOUNTS,hbciListAccounts,false -30743,432fe3c8-e5c3-4232-879d-ab06c14b72dd,LIST_TRANSACTIONS,hbciListTransactions,false -30744,432fe3c8-e5c3-4232-879d-ab06c14b72dd,AUTHORIZATION,,false -30745,432fe3c8-e5c3-4232-879d-ab06c14b72dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30746,432fe3c8-e5c3-4232-879d-ab06c14b72dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30747,432fe3c8-e5c3-4232-879d-ab06c14b72dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30742,8a9ea34e-566b-4174-ac85-f5c48e248790,LIST_ACCOUNTS,hbciListAccounts,false +30743,8a9ea34e-566b-4174-ac85-f5c48e248790,LIST_TRANSACTIONS,hbciListTransactions,false +30744,8a9ea34e-566b-4174-ac85-f5c48e248790,AUTHORIZATION,,false +30745,8a9ea34e-566b-4174-ac85-f5c48e248790,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30746,8a9ea34e-566b-4174-ac85-f5c48e248790,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30747,8a9ea34e-566b-4174-ac85-f5c48e248790,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30748,4f891c6a-6d2d-41c3-9beb-ebc42225bd39,LIST_ACCOUNTS,xs2aListAccounts,true -30749,4f891c6a-6d2d-41c3-9beb-ebc42225bd39,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30749,4f891c6a-6d2d-41c3-9beb-ebc42225bd39,LIST_TRANSACTIONS,xs2aListTransactions,true 30750,4f891c6a-6d2d-41c3-9beb-ebc42225bd39,AUTHORIZATION,,true 30751,4f891c6a-6d2d-41c3-9beb-ebc42225bd39,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30752,4f891c6a-6d2d-41c3-9beb-ebc42225bd39,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30753,4f891c6a-6d2d-41c3-9beb-ebc42225bd39,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30754,634167b7-3cb8-44b0-ae3e-ce4a1b40e1a9,LIST_ACCOUNTS,hbciListAccounts,false -30755,634167b7-3cb8-44b0-ae3e-ce4a1b40e1a9,LIST_TRANSACTIONS,hbciListTransactions,false -30756,634167b7-3cb8-44b0-ae3e-ce4a1b40e1a9,AUTHORIZATION,,false -30757,634167b7-3cb8-44b0-ae3e-ce4a1b40e1a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30758,634167b7-3cb8-44b0-ae3e-ce4a1b40e1a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30759,634167b7-3cb8-44b0-ae3e-ce4a1b40e1a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30754,a6c6bd64-f65d-4137-9a03-202dfd5a9eb0,LIST_ACCOUNTS,hbciListAccounts,false +30755,a6c6bd64-f65d-4137-9a03-202dfd5a9eb0,LIST_TRANSACTIONS,hbciListTransactions,false +30756,a6c6bd64-f65d-4137-9a03-202dfd5a9eb0,AUTHORIZATION,,false +30757,a6c6bd64-f65d-4137-9a03-202dfd5a9eb0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30758,a6c6bd64-f65d-4137-9a03-202dfd5a9eb0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30759,a6c6bd64-f65d-4137-9a03-202dfd5a9eb0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30760,8c438e26-bb78-4c89-8fce-6d5d7728ad14,LIST_ACCOUNTS,xs2aListAccounts,true -30761,8c438e26-bb78-4c89-8fce-6d5d7728ad14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30761,8c438e26-bb78-4c89-8fce-6d5d7728ad14,LIST_TRANSACTIONS,xs2aListTransactions,true 30762,8c438e26-bb78-4c89-8fce-6d5d7728ad14,AUTHORIZATION,,true 30763,8c438e26-bb78-4c89-8fce-6d5d7728ad14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30764,8c438e26-bb78-4c89-8fce-6d5d7728ad14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30765,8c438e26-bb78-4c89-8fce-6d5d7728ad14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30766,48b2cf47-b254-4280-863e-ec2a97a8b839,LIST_ACCOUNTS,hbciListAccounts,false -30767,48b2cf47-b254-4280-863e-ec2a97a8b839,LIST_TRANSACTIONS,hbciListTransactions,false -30768,48b2cf47-b254-4280-863e-ec2a97a8b839,AUTHORIZATION,,false -30769,48b2cf47-b254-4280-863e-ec2a97a8b839,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30770,48b2cf47-b254-4280-863e-ec2a97a8b839,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30771,48b2cf47-b254-4280-863e-ec2a97a8b839,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30766,fdc331ed-b81d-4bdc-b9c3-2e556dc96156,LIST_ACCOUNTS,hbciListAccounts,false +30767,fdc331ed-b81d-4bdc-b9c3-2e556dc96156,LIST_TRANSACTIONS,hbciListTransactions,false +30768,fdc331ed-b81d-4bdc-b9c3-2e556dc96156,AUTHORIZATION,,false +30769,fdc331ed-b81d-4bdc-b9c3-2e556dc96156,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30770,fdc331ed-b81d-4bdc-b9c3-2e556dc96156,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30771,fdc331ed-b81d-4bdc-b9c3-2e556dc96156,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30772,7208ae3c-0a53-431e-ac50-6fb53dfa6396,LIST_ACCOUNTS,xs2aListAccounts,true -30773,7208ae3c-0a53-431e-ac50-6fb53dfa6396,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30773,7208ae3c-0a53-431e-ac50-6fb53dfa6396,LIST_TRANSACTIONS,xs2aListTransactions,true 30774,7208ae3c-0a53-431e-ac50-6fb53dfa6396,AUTHORIZATION,,true 30775,7208ae3c-0a53-431e-ac50-6fb53dfa6396,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30776,7208ae3c-0a53-431e-ac50-6fb53dfa6396,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30777,7208ae3c-0a53-431e-ac50-6fb53dfa6396,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30778,fd4c801b-8c66-4cb3-a819-a501aac49f8d,LIST_ACCOUNTS,hbciListAccounts,false -30779,fd4c801b-8c66-4cb3-a819-a501aac49f8d,LIST_TRANSACTIONS,hbciListTransactions,false -30780,fd4c801b-8c66-4cb3-a819-a501aac49f8d,AUTHORIZATION,,false -30781,fd4c801b-8c66-4cb3-a819-a501aac49f8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30782,fd4c801b-8c66-4cb3-a819-a501aac49f8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30783,fd4c801b-8c66-4cb3-a819-a501aac49f8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30778,abc455d4-909d-4514-9fb2-0eb745af256d,LIST_ACCOUNTS,hbciListAccounts,false +30779,abc455d4-909d-4514-9fb2-0eb745af256d,LIST_TRANSACTIONS,hbciListTransactions,false +30780,abc455d4-909d-4514-9fb2-0eb745af256d,AUTHORIZATION,,false +30781,abc455d4-909d-4514-9fb2-0eb745af256d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30782,abc455d4-909d-4514-9fb2-0eb745af256d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30783,abc455d4-909d-4514-9fb2-0eb745af256d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30784,a2cf3b95-0c91-4491-b5a7-921d41be8f83,LIST_ACCOUNTS,xs2aListAccounts,true -30785,a2cf3b95-0c91-4491-b5a7-921d41be8f83,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30785,a2cf3b95-0c91-4491-b5a7-921d41be8f83,LIST_TRANSACTIONS,xs2aListTransactions,true 30786,a2cf3b95-0c91-4491-b5a7-921d41be8f83,AUTHORIZATION,,true 30787,a2cf3b95-0c91-4491-b5a7-921d41be8f83,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30788,a2cf3b95-0c91-4491-b5a7-921d41be8f83,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30789,a2cf3b95-0c91-4491-b5a7-921d41be8f83,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30790,e511ec32-13b1-4653-b698-94c411f805fd,LIST_ACCOUNTS,hbciListAccounts,false -30791,e511ec32-13b1-4653-b698-94c411f805fd,LIST_TRANSACTIONS,hbciListTransactions,false -30792,e511ec32-13b1-4653-b698-94c411f805fd,AUTHORIZATION,,false -30793,e511ec32-13b1-4653-b698-94c411f805fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30794,e511ec32-13b1-4653-b698-94c411f805fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30795,e511ec32-13b1-4653-b698-94c411f805fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30790,b76eaf7f-7c2c-4d93-b5ca-d3d02e3ffeea,LIST_ACCOUNTS,hbciListAccounts,false +30791,b76eaf7f-7c2c-4d93-b5ca-d3d02e3ffeea,LIST_TRANSACTIONS,hbciListTransactions,false +30792,b76eaf7f-7c2c-4d93-b5ca-d3d02e3ffeea,AUTHORIZATION,,false +30793,b76eaf7f-7c2c-4d93-b5ca-d3d02e3ffeea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30794,b76eaf7f-7c2c-4d93-b5ca-d3d02e3ffeea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30795,b76eaf7f-7c2c-4d93-b5ca-d3d02e3ffeea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30796,5889cd68-c81a-4c0d-944e-d8ae9dc6a6be,LIST_ACCOUNTS,xs2aListAccounts,true -30797,5889cd68-c81a-4c0d-944e-d8ae9dc6a6be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30797,5889cd68-c81a-4c0d-944e-d8ae9dc6a6be,LIST_TRANSACTIONS,xs2aListTransactions,true 30798,5889cd68-c81a-4c0d-944e-d8ae9dc6a6be,AUTHORIZATION,,true 30799,5889cd68-c81a-4c0d-944e-d8ae9dc6a6be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30800,5889cd68-c81a-4c0d-944e-d8ae9dc6a6be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30801,5889cd68-c81a-4c0d-944e-d8ae9dc6a6be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30802,ac204c17-53f0-4926-925b-f5cec593ca45,LIST_ACCOUNTS,hbciListAccounts,false -30803,ac204c17-53f0-4926-925b-f5cec593ca45,LIST_TRANSACTIONS,hbciListTransactions,false -30804,ac204c17-53f0-4926-925b-f5cec593ca45,AUTHORIZATION,,false -30805,ac204c17-53f0-4926-925b-f5cec593ca45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30806,ac204c17-53f0-4926-925b-f5cec593ca45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30807,ac204c17-53f0-4926-925b-f5cec593ca45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30802,53f2549f-9caa-4572-90b7-68cdab3562f2,LIST_ACCOUNTS,hbciListAccounts,false +30803,53f2549f-9caa-4572-90b7-68cdab3562f2,LIST_TRANSACTIONS,hbciListTransactions,false +30804,53f2549f-9caa-4572-90b7-68cdab3562f2,AUTHORIZATION,,false +30805,53f2549f-9caa-4572-90b7-68cdab3562f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30806,53f2549f-9caa-4572-90b7-68cdab3562f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30807,53f2549f-9caa-4572-90b7-68cdab3562f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30808,1b784986-9bdb-4b73-8e83-824a013b2f97,LIST_ACCOUNTS,xs2aListAccounts,true -30809,1b784986-9bdb-4b73-8e83-824a013b2f97,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30809,1b784986-9bdb-4b73-8e83-824a013b2f97,LIST_TRANSACTIONS,xs2aListTransactions,true 30810,1b784986-9bdb-4b73-8e83-824a013b2f97,AUTHORIZATION,,true 30811,1b784986-9bdb-4b73-8e83-824a013b2f97,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30812,1b784986-9bdb-4b73-8e83-824a013b2f97,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30813,1b784986-9bdb-4b73-8e83-824a013b2f97,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30814,9ba00f0e-23bb-464e-9cbe-008e9036569a,LIST_ACCOUNTS,hbciListAccounts,false -30815,9ba00f0e-23bb-464e-9cbe-008e9036569a,LIST_TRANSACTIONS,hbciListTransactions,false -30816,9ba00f0e-23bb-464e-9cbe-008e9036569a,AUTHORIZATION,,false -30817,9ba00f0e-23bb-464e-9cbe-008e9036569a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30818,9ba00f0e-23bb-464e-9cbe-008e9036569a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30819,9ba00f0e-23bb-464e-9cbe-008e9036569a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30814,e1534e60-9af7-416d-bd82-c573716c4306,LIST_ACCOUNTS,hbciListAccounts,false +30815,e1534e60-9af7-416d-bd82-c573716c4306,LIST_TRANSACTIONS,hbciListTransactions,false +30816,e1534e60-9af7-416d-bd82-c573716c4306,AUTHORIZATION,,false +30817,e1534e60-9af7-416d-bd82-c573716c4306,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30818,e1534e60-9af7-416d-bd82-c573716c4306,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30819,e1534e60-9af7-416d-bd82-c573716c4306,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30820,dada753c-9480-4e39-9220-4f4ac499b976,LIST_ACCOUNTS,xs2aListAccounts,true -30821,dada753c-9480-4e39-9220-4f4ac499b976,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30821,dada753c-9480-4e39-9220-4f4ac499b976,LIST_TRANSACTIONS,xs2aListTransactions,true 30822,dada753c-9480-4e39-9220-4f4ac499b976,AUTHORIZATION,,true 30823,dada753c-9480-4e39-9220-4f4ac499b976,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30824,dada753c-9480-4e39-9220-4f4ac499b976,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30825,dada753c-9480-4e39-9220-4f4ac499b976,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30826,d5151fb0-a244-4c44-9402-aa35845122b2,LIST_ACCOUNTS,hbciListAccounts,false -30827,d5151fb0-a244-4c44-9402-aa35845122b2,LIST_TRANSACTIONS,hbciListTransactions,false -30828,d5151fb0-a244-4c44-9402-aa35845122b2,AUTHORIZATION,,false -30829,d5151fb0-a244-4c44-9402-aa35845122b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30830,d5151fb0-a244-4c44-9402-aa35845122b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30831,d5151fb0-a244-4c44-9402-aa35845122b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30826,4ae70fc9-69ba-41dc-872a-f6383c7ab7c8,LIST_ACCOUNTS,hbciListAccounts,false +30827,4ae70fc9-69ba-41dc-872a-f6383c7ab7c8,LIST_TRANSACTIONS,hbciListTransactions,false +30828,4ae70fc9-69ba-41dc-872a-f6383c7ab7c8,AUTHORIZATION,,false +30829,4ae70fc9-69ba-41dc-872a-f6383c7ab7c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30830,4ae70fc9-69ba-41dc-872a-f6383c7ab7c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30831,4ae70fc9-69ba-41dc-872a-f6383c7ab7c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30832,6101e238-a992-438f-83d8-39d433ca4032,LIST_ACCOUNTS,xs2aListAccounts,true -30833,6101e238-a992-438f-83d8-39d433ca4032,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30833,6101e238-a992-438f-83d8-39d433ca4032,LIST_TRANSACTIONS,xs2aListTransactions,true 30834,6101e238-a992-438f-83d8-39d433ca4032,AUTHORIZATION,,true 30835,6101e238-a992-438f-83d8-39d433ca4032,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30836,6101e238-a992-438f-83d8-39d433ca4032,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30837,6101e238-a992-438f-83d8-39d433ca4032,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30838,203f5ae7-96f9-4488-ab0f-b041d5ccb817,LIST_ACCOUNTS,hbciListAccounts,false -30839,203f5ae7-96f9-4488-ab0f-b041d5ccb817,LIST_TRANSACTIONS,hbciListTransactions,false -30840,203f5ae7-96f9-4488-ab0f-b041d5ccb817,AUTHORIZATION,,false -30841,203f5ae7-96f9-4488-ab0f-b041d5ccb817,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30842,203f5ae7-96f9-4488-ab0f-b041d5ccb817,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30843,203f5ae7-96f9-4488-ab0f-b041d5ccb817,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30838,2553d56a-de49-49b9-85ad-fd3cd622c674,LIST_ACCOUNTS,hbciListAccounts,false +30839,2553d56a-de49-49b9-85ad-fd3cd622c674,LIST_TRANSACTIONS,hbciListTransactions,false +30840,2553d56a-de49-49b9-85ad-fd3cd622c674,AUTHORIZATION,,false +30841,2553d56a-de49-49b9-85ad-fd3cd622c674,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30842,2553d56a-de49-49b9-85ad-fd3cd622c674,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30843,2553d56a-de49-49b9-85ad-fd3cd622c674,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30844,b43d1603-7bd1-4caf-8b8a-5cd04952acf2,LIST_ACCOUNTS,xs2aListAccounts,true -30845,b43d1603-7bd1-4caf-8b8a-5cd04952acf2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30845,b43d1603-7bd1-4caf-8b8a-5cd04952acf2,LIST_TRANSACTIONS,xs2aListTransactions,true 30846,b43d1603-7bd1-4caf-8b8a-5cd04952acf2,AUTHORIZATION,,true 30847,b43d1603-7bd1-4caf-8b8a-5cd04952acf2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30848,b43d1603-7bd1-4caf-8b8a-5cd04952acf2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30849,b43d1603-7bd1-4caf-8b8a-5cd04952acf2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30850,74afa4ae-0e25-476c-bf2f-cfeb1a8f9d3a,LIST_ACCOUNTS,hbciListAccounts,false -30851,74afa4ae-0e25-476c-bf2f-cfeb1a8f9d3a,LIST_TRANSACTIONS,hbciListTransactions,false -30852,74afa4ae-0e25-476c-bf2f-cfeb1a8f9d3a,AUTHORIZATION,,false -30853,74afa4ae-0e25-476c-bf2f-cfeb1a8f9d3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30854,74afa4ae-0e25-476c-bf2f-cfeb1a8f9d3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30855,74afa4ae-0e25-476c-bf2f-cfeb1a8f9d3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30850,cac5e90a-5ebe-47da-8548-7e42919f99fc,LIST_ACCOUNTS,hbciListAccounts,false +30851,cac5e90a-5ebe-47da-8548-7e42919f99fc,LIST_TRANSACTIONS,hbciListTransactions,false +30852,cac5e90a-5ebe-47da-8548-7e42919f99fc,AUTHORIZATION,,false +30853,cac5e90a-5ebe-47da-8548-7e42919f99fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30854,cac5e90a-5ebe-47da-8548-7e42919f99fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30855,cac5e90a-5ebe-47da-8548-7e42919f99fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30856,ab69265f-b2cf-4207-a9b1-b49a7e3e71b2,LIST_ACCOUNTS,xs2aListAccounts,true -30857,ab69265f-b2cf-4207-a9b1-b49a7e3e71b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30857,ab69265f-b2cf-4207-a9b1-b49a7e3e71b2,LIST_TRANSACTIONS,xs2aListTransactions,true 30858,ab69265f-b2cf-4207-a9b1-b49a7e3e71b2,AUTHORIZATION,,true 30859,ab69265f-b2cf-4207-a9b1-b49a7e3e71b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30860,ab69265f-b2cf-4207-a9b1-b49a7e3e71b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30861,ab69265f-b2cf-4207-a9b1-b49a7e3e71b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30862,55170235-4493-4614-8713-683b96b52b84,LIST_ACCOUNTS,hbciListAccounts,false -30863,55170235-4493-4614-8713-683b96b52b84,LIST_TRANSACTIONS,hbciListTransactions,false -30864,55170235-4493-4614-8713-683b96b52b84,AUTHORIZATION,,false -30865,55170235-4493-4614-8713-683b96b52b84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30866,55170235-4493-4614-8713-683b96b52b84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30867,55170235-4493-4614-8713-683b96b52b84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30862,50765c47-fbac-40f6-8ef8-e55fb4556905,LIST_ACCOUNTS,hbciListAccounts,false +30863,50765c47-fbac-40f6-8ef8-e55fb4556905,LIST_TRANSACTIONS,hbciListTransactions,false +30864,50765c47-fbac-40f6-8ef8-e55fb4556905,AUTHORIZATION,,false +30865,50765c47-fbac-40f6-8ef8-e55fb4556905,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30866,50765c47-fbac-40f6-8ef8-e55fb4556905,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30867,50765c47-fbac-40f6-8ef8-e55fb4556905,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30868,4985150c-9b39-452c-bb39-e37a5af14be7,LIST_ACCOUNTS,xs2aListAccounts,true -30869,4985150c-9b39-452c-bb39-e37a5af14be7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30869,4985150c-9b39-452c-bb39-e37a5af14be7,LIST_TRANSACTIONS,xs2aListTransactions,true 30870,4985150c-9b39-452c-bb39-e37a5af14be7,AUTHORIZATION,,true 30871,4985150c-9b39-452c-bb39-e37a5af14be7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30872,4985150c-9b39-452c-bb39-e37a5af14be7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30873,4985150c-9b39-452c-bb39-e37a5af14be7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30874,be556da9-b00d-4202-ad3c-a2ea062ca4b4,LIST_ACCOUNTS,hbciListAccounts,false -30875,be556da9-b00d-4202-ad3c-a2ea062ca4b4,LIST_TRANSACTIONS,hbciListTransactions,false -30876,be556da9-b00d-4202-ad3c-a2ea062ca4b4,AUTHORIZATION,,false -30877,be556da9-b00d-4202-ad3c-a2ea062ca4b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30878,be556da9-b00d-4202-ad3c-a2ea062ca4b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30879,be556da9-b00d-4202-ad3c-a2ea062ca4b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30874,e10356ef-21d1-4fca-80b2-39aaa5ea8107,LIST_ACCOUNTS,hbciListAccounts,false +30875,e10356ef-21d1-4fca-80b2-39aaa5ea8107,LIST_TRANSACTIONS,hbciListTransactions,false +30876,e10356ef-21d1-4fca-80b2-39aaa5ea8107,AUTHORIZATION,,false +30877,e10356ef-21d1-4fca-80b2-39aaa5ea8107,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30878,e10356ef-21d1-4fca-80b2-39aaa5ea8107,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30879,e10356ef-21d1-4fca-80b2-39aaa5ea8107,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30880,98bc0233-c734-43f5-a376-b4c7cc563266,LIST_ACCOUNTS,xs2aListAccounts,true -30881,98bc0233-c734-43f5-a376-b4c7cc563266,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30881,98bc0233-c734-43f5-a376-b4c7cc563266,LIST_TRANSACTIONS,xs2aListTransactions,true 30882,98bc0233-c734-43f5-a376-b4c7cc563266,AUTHORIZATION,,true 30883,98bc0233-c734-43f5-a376-b4c7cc563266,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30884,98bc0233-c734-43f5-a376-b4c7cc563266,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30885,98bc0233-c734-43f5-a376-b4c7cc563266,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30886,cbb19bed-f388-4e6e-ab1a-48952cd1cb00,LIST_ACCOUNTS,hbciListAccounts,false -30887,cbb19bed-f388-4e6e-ab1a-48952cd1cb00,LIST_TRANSACTIONS,hbciListTransactions,false -30888,cbb19bed-f388-4e6e-ab1a-48952cd1cb00,AUTHORIZATION,,false -30889,cbb19bed-f388-4e6e-ab1a-48952cd1cb00,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30890,cbb19bed-f388-4e6e-ab1a-48952cd1cb00,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30891,cbb19bed-f388-4e6e-ab1a-48952cd1cb00,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30886,4df1572b-a075-435b-a176-168e2f6f25e5,LIST_ACCOUNTS,hbciListAccounts,false +30887,4df1572b-a075-435b-a176-168e2f6f25e5,LIST_TRANSACTIONS,hbciListTransactions,false +30888,4df1572b-a075-435b-a176-168e2f6f25e5,AUTHORIZATION,,false +30889,4df1572b-a075-435b-a176-168e2f6f25e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30890,4df1572b-a075-435b-a176-168e2f6f25e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30891,4df1572b-a075-435b-a176-168e2f6f25e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30892,3cfeb0f7-26d6-4598-af6a-5904eda50c5f,LIST_ACCOUNTS,xs2aListAccounts,true -30893,3cfeb0f7-26d6-4598-af6a-5904eda50c5f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30893,3cfeb0f7-26d6-4598-af6a-5904eda50c5f,LIST_TRANSACTIONS,xs2aListTransactions,true 30894,3cfeb0f7-26d6-4598-af6a-5904eda50c5f,AUTHORIZATION,,true 30895,3cfeb0f7-26d6-4598-af6a-5904eda50c5f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30896,3cfeb0f7-26d6-4598-af6a-5904eda50c5f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30897,3cfeb0f7-26d6-4598-af6a-5904eda50c5f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30898,5fcc125a-11db-4181-8097-654c96e7ff0f,LIST_ACCOUNTS,hbciListAccounts,false -30899,5fcc125a-11db-4181-8097-654c96e7ff0f,LIST_TRANSACTIONS,hbciListTransactions,false -30900,5fcc125a-11db-4181-8097-654c96e7ff0f,AUTHORIZATION,,false -30901,5fcc125a-11db-4181-8097-654c96e7ff0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30902,5fcc125a-11db-4181-8097-654c96e7ff0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30903,5fcc125a-11db-4181-8097-654c96e7ff0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30898,fdb78237-75e1-4a82-92f2-e8039dc70e4f,LIST_ACCOUNTS,hbciListAccounts,false +30899,fdb78237-75e1-4a82-92f2-e8039dc70e4f,LIST_TRANSACTIONS,hbciListTransactions,false +30900,fdb78237-75e1-4a82-92f2-e8039dc70e4f,AUTHORIZATION,,false +30901,fdb78237-75e1-4a82-92f2-e8039dc70e4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30902,fdb78237-75e1-4a82-92f2-e8039dc70e4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30903,fdb78237-75e1-4a82-92f2-e8039dc70e4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30904,e048e82d-12fe-49e4-89ce-a8725e2f54a6,LIST_ACCOUNTS,xs2aListAccounts,true -30905,e048e82d-12fe-49e4-89ce-a8725e2f54a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30905,e048e82d-12fe-49e4-89ce-a8725e2f54a6,LIST_TRANSACTIONS,xs2aListTransactions,true 30906,e048e82d-12fe-49e4-89ce-a8725e2f54a6,AUTHORIZATION,,true 30907,e048e82d-12fe-49e4-89ce-a8725e2f54a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30908,e048e82d-12fe-49e4-89ce-a8725e2f54a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30909,e048e82d-12fe-49e4-89ce-a8725e2f54a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30910,64c791c0-e3dc-43ca-9db6-b14983232568,LIST_ACCOUNTS,hbciListAccounts,false -30911,64c791c0-e3dc-43ca-9db6-b14983232568,LIST_TRANSACTIONS,hbciListTransactions,false -30912,64c791c0-e3dc-43ca-9db6-b14983232568,AUTHORIZATION,,false -30913,64c791c0-e3dc-43ca-9db6-b14983232568,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30914,64c791c0-e3dc-43ca-9db6-b14983232568,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30915,64c791c0-e3dc-43ca-9db6-b14983232568,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30910,04bb2ce9-7e79-43d8-9501-28aa4dfb0565,LIST_ACCOUNTS,hbciListAccounts,false +30911,04bb2ce9-7e79-43d8-9501-28aa4dfb0565,LIST_TRANSACTIONS,hbciListTransactions,false +30912,04bb2ce9-7e79-43d8-9501-28aa4dfb0565,AUTHORIZATION,,false +30913,04bb2ce9-7e79-43d8-9501-28aa4dfb0565,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30914,04bb2ce9-7e79-43d8-9501-28aa4dfb0565,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30915,04bb2ce9-7e79-43d8-9501-28aa4dfb0565,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30916,08cf31be-e900-4b64-8063-58f2b8be71ea,LIST_ACCOUNTS,xs2aListAccounts,true -30917,08cf31be-e900-4b64-8063-58f2b8be71ea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30917,08cf31be-e900-4b64-8063-58f2b8be71ea,LIST_TRANSACTIONS,xs2aListTransactions,true 30918,08cf31be-e900-4b64-8063-58f2b8be71ea,AUTHORIZATION,,true 30919,08cf31be-e900-4b64-8063-58f2b8be71ea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30920,08cf31be-e900-4b64-8063-58f2b8be71ea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30921,08cf31be-e900-4b64-8063-58f2b8be71ea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30922,68976004-3933-4abd-8dbe-94917cf87f26,LIST_ACCOUNTS,hbciListAccounts,false -30923,68976004-3933-4abd-8dbe-94917cf87f26,LIST_TRANSACTIONS,hbciListTransactions,false -30924,68976004-3933-4abd-8dbe-94917cf87f26,AUTHORIZATION,,false -30925,68976004-3933-4abd-8dbe-94917cf87f26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30926,68976004-3933-4abd-8dbe-94917cf87f26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30927,68976004-3933-4abd-8dbe-94917cf87f26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30922,45870bcd-2f9e-427e-9179-38a4d40cb956,LIST_ACCOUNTS,hbciListAccounts,false +30923,45870bcd-2f9e-427e-9179-38a4d40cb956,LIST_TRANSACTIONS,hbciListTransactions,false +30924,45870bcd-2f9e-427e-9179-38a4d40cb956,AUTHORIZATION,,false +30925,45870bcd-2f9e-427e-9179-38a4d40cb956,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30926,45870bcd-2f9e-427e-9179-38a4d40cb956,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30927,45870bcd-2f9e-427e-9179-38a4d40cb956,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30928,009435fc-3867-4123-aaa4-3381035bb0af,LIST_ACCOUNTS,xs2aListAccounts,true -30929,009435fc-3867-4123-aaa4-3381035bb0af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30929,009435fc-3867-4123-aaa4-3381035bb0af,LIST_TRANSACTIONS,xs2aListTransactions,true 30930,009435fc-3867-4123-aaa4-3381035bb0af,AUTHORIZATION,,true 30931,009435fc-3867-4123-aaa4-3381035bb0af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30932,009435fc-3867-4123-aaa4-3381035bb0af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30933,009435fc-3867-4123-aaa4-3381035bb0af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30934,355f218f-dfa4-4356-a8e3-22bac2a00a33,LIST_ACCOUNTS,hbciListAccounts,false -30935,355f218f-dfa4-4356-a8e3-22bac2a00a33,LIST_TRANSACTIONS,hbciListTransactions,false -30936,355f218f-dfa4-4356-a8e3-22bac2a00a33,AUTHORIZATION,,false -30937,355f218f-dfa4-4356-a8e3-22bac2a00a33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30938,355f218f-dfa4-4356-a8e3-22bac2a00a33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30939,355f218f-dfa4-4356-a8e3-22bac2a00a33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30934,8f8cc311-d503-4948-9027-dbc262dba5bd,LIST_ACCOUNTS,hbciListAccounts,false +30935,8f8cc311-d503-4948-9027-dbc262dba5bd,LIST_TRANSACTIONS,hbciListTransactions,false +30936,8f8cc311-d503-4948-9027-dbc262dba5bd,AUTHORIZATION,,false +30937,8f8cc311-d503-4948-9027-dbc262dba5bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30938,8f8cc311-d503-4948-9027-dbc262dba5bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30939,8f8cc311-d503-4948-9027-dbc262dba5bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30940,de115cfd-4f22-4973-82f5-cfd982ca08ff,LIST_ACCOUNTS,xs2aListAccounts,true -30941,de115cfd-4f22-4973-82f5-cfd982ca08ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30941,de115cfd-4f22-4973-82f5-cfd982ca08ff,LIST_TRANSACTIONS,xs2aListTransactions,true 30942,de115cfd-4f22-4973-82f5-cfd982ca08ff,AUTHORIZATION,,true 30943,de115cfd-4f22-4973-82f5-cfd982ca08ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30944,de115cfd-4f22-4973-82f5-cfd982ca08ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30945,de115cfd-4f22-4973-82f5-cfd982ca08ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30946,8a53205b-f558-42a0-9efd-c35e0c0847a0,LIST_ACCOUNTS,hbciListAccounts,false -30947,8a53205b-f558-42a0-9efd-c35e0c0847a0,LIST_TRANSACTIONS,hbciListTransactions,false -30948,8a53205b-f558-42a0-9efd-c35e0c0847a0,AUTHORIZATION,,false -30949,8a53205b-f558-42a0-9efd-c35e0c0847a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30950,8a53205b-f558-42a0-9efd-c35e0c0847a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30951,8a53205b-f558-42a0-9efd-c35e0c0847a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30946,3588da51-3432-4d5c-8fb6-d3e1572d763a,LIST_ACCOUNTS,hbciListAccounts,false +30947,3588da51-3432-4d5c-8fb6-d3e1572d763a,LIST_TRANSACTIONS,hbciListTransactions,false +30948,3588da51-3432-4d5c-8fb6-d3e1572d763a,AUTHORIZATION,,false +30949,3588da51-3432-4d5c-8fb6-d3e1572d763a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30950,3588da51-3432-4d5c-8fb6-d3e1572d763a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30951,3588da51-3432-4d5c-8fb6-d3e1572d763a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30952,c3e7d1b3-ebe9-494d-99d6-f0ac75440df3,LIST_ACCOUNTS,xs2aListAccounts,true -30953,c3e7d1b3-ebe9-494d-99d6-f0ac75440df3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30953,c3e7d1b3-ebe9-494d-99d6-f0ac75440df3,LIST_TRANSACTIONS,xs2aListTransactions,true 30954,c3e7d1b3-ebe9-494d-99d6-f0ac75440df3,AUTHORIZATION,,true 30955,c3e7d1b3-ebe9-494d-99d6-f0ac75440df3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30956,c3e7d1b3-ebe9-494d-99d6-f0ac75440df3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30957,c3e7d1b3-ebe9-494d-99d6-f0ac75440df3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30958,51d01cd5-3e66-4c4d-8a68-2d314d4a7348,LIST_ACCOUNTS,hbciListAccounts,false -30959,51d01cd5-3e66-4c4d-8a68-2d314d4a7348,LIST_TRANSACTIONS,hbciListTransactions,false -30960,51d01cd5-3e66-4c4d-8a68-2d314d4a7348,AUTHORIZATION,,false -30961,51d01cd5-3e66-4c4d-8a68-2d314d4a7348,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30962,51d01cd5-3e66-4c4d-8a68-2d314d4a7348,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30963,51d01cd5-3e66-4c4d-8a68-2d314d4a7348,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30958,9fc5d2b7-7fc2-424b-9b1e-54a3bfc7d72a,LIST_ACCOUNTS,hbciListAccounts,false +30959,9fc5d2b7-7fc2-424b-9b1e-54a3bfc7d72a,LIST_TRANSACTIONS,hbciListTransactions,false +30960,9fc5d2b7-7fc2-424b-9b1e-54a3bfc7d72a,AUTHORIZATION,,false +30961,9fc5d2b7-7fc2-424b-9b1e-54a3bfc7d72a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30962,9fc5d2b7-7fc2-424b-9b1e-54a3bfc7d72a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30963,9fc5d2b7-7fc2-424b-9b1e-54a3bfc7d72a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30964,37a21619-a3db-45c3-bf6a-18c269532c9d,LIST_ACCOUNTS,xs2aListAccounts,true -30965,37a21619-a3db-45c3-bf6a-18c269532c9d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30965,37a21619-a3db-45c3-bf6a-18c269532c9d,LIST_TRANSACTIONS,xs2aListTransactions,true 30966,37a21619-a3db-45c3-bf6a-18c269532c9d,AUTHORIZATION,,true 30967,37a21619-a3db-45c3-bf6a-18c269532c9d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30968,37a21619-a3db-45c3-bf6a-18c269532c9d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30969,37a21619-a3db-45c3-bf6a-18c269532c9d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30970,b4711eab-a8f6-4b98-8796-0a856d47024f,LIST_ACCOUNTS,hbciListAccounts,false -30971,b4711eab-a8f6-4b98-8796-0a856d47024f,LIST_TRANSACTIONS,hbciListTransactions,false -30972,b4711eab-a8f6-4b98-8796-0a856d47024f,AUTHORIZATION,,false -30973,b4711eab-a8f6-4b98-8796-0a856d47024f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30974,b4711eab-a8f6-4b98-8796-0a856d47024f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30975,b4711eab-a8f6-4b98-8796-0a856d47024f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30970,159caa21-b8e4-40c4-bf2b-ceccc243f171,LIST_ACCOUNTS,hbciListAccounts,false +30971,159caa21-b8e4-40c4-bf2b-ceccc243f171,LIST_TRANSACTIONS,hbciListTransactions,false +30972,159caa21-b8e4-40c4-bf2b-ceccc243f171,AUTHORIZATION,,false +30973,159caa21-b8e4-40c4-bf2b-ceccc243f171,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30974,159caa21-b8e4-40c4-bf2b-ceccc243f171,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30975,159caa21-b8e4-40c4-bf2b-ceccc243f171,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30976,d13f1159-a98a-4c52-b5e9-10d947352d0e,LIST_ACCOUNTS,xs2aListAccounts,true -30977,d13f1159-a98a-4c52-b5e9-10d947352d0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30977,d13f1159-a98a-4c52-b5e9-10d947352d0e,LIST_TRANSACTIONS,xs2aListTransactions,true 30978,d13f1159-a98a-4c52-b5e9-10d947352d0e,AUTHORIZATION,,true 30979,d13f1159-a98a-4c52-b5e9-10d947352d0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30980,d13f1159-a98a-4c52-b5e9-10d947352d0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30981,d13f1159-a98a-4c52-b5e9-10d947352d0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30982,c0fc2871-6d64-4e1f-8508-e8ff247bc8bc,LIST_ACCOUNTS,hbciListAccounts,false -30983,c0fc2871-6d64-4e1f-8508-e8ff247bc8bc,LIST_TRANSACTIONS,hbciListTransactions,false -30984,c0fc2871-6d64-4e1f-8508-e8ff247bc8bc,AUTHORIZATION,,false -30985,c0fc2871-6d64-4e1f-8508-e8ff247bc8bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30986,c0fc2871-6d64-4e1f-8508-e8ff247bc8bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30987,c0fc2871-6d64-4e1f-8508-e8ff247bc8bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30982,ab501c84-4149-4241-8307-0714f62fc066,LIST_ACCOUNTS,hbciListAccounts,false +30983,ab501c84-4149-4241-8307-0714f62fc066,LIST_TRANSACTIONS,hbciListTransactions,false +30984,ab501c84-4149-4241-8307-0714f62fc066,AUTHORIZATION,,false +30985,ab501c84-4149-4241-8307-0714f62fc066,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30986,ab501c84-4149-4241-8307-0714f62fc066,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30987,ab501c84-4149-4241-8307-0714f62fc066,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 30988,e75641c1-dc33-4770-9550-fdbb2041fdf9,LIST_ACCOUNTS,xs2aListAccounts,true -30989,e75641c1-dc33-4770-9550-fdbb2041fdf9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +30989,e75641c1-dc33-4770-9550-fdbb2041fdf9,LIST_TRANSACTIONS,xs2aListTransactions,true 30990,e75641c1-dc33-4770-9550-fdbb2041fdf9,AUTHORIZATION,,true 30991,e75641c1-dc33-4770-9550-fdbb2041fdf9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 30992,e75641c1-dc33-4770-9550-fdbb2041fdf9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 30993,e75641c1-dc33-4770-9550-fdbb2041fdf9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -30994,3f709833-d36d-4a39-95e4-5636bfe394d3,LIST_ACCOUNTS,hbciListAccounts,false -30995,3f709833-d36d-4a39-95e4-5636bfe394d3,LIST_TRANSACTIONS,hbciListTransactions,false -30996,3f709833-d36d-4a39-95e4-5636bfe394d3,AUTHORIZATION,,false -30997,3f709833-d36d-4a39-95e4-5636bfe394d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -30998,3f709833-d36d-4a39-95e4-5636bfe394d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -30999,3f709833-d36d-4a39-95e4-5636bfe394d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +30994,1cf0ccc1-0f9b-4e87-9d24-ace390264e8f,LIST_ACCOUNTS,hbciListAccounts,false +30995,1cf0ccc1-0f9b-4e87-9d24-ace390264e8f,LIST_TRANSACTIONS,hbciListTransactions,false +30996,1cf0ccc1-0f9b-4e87-9d24-ace390264e8f,AUTHORIZATION,,false +30997,1cf0ccc1-0f9b-4e87-9d24-ace390264e8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +30998,1cf0ccc1-0f9b-4e87-9d24-ace390264e8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +30999,1cf0ccc1-0f9b-4e87-9d24-ace390264e8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31000,d996e271-cb29-4c03-8de6-346d41d73f59,LIST_ACCOUNTS,xs2aListAccounts,true -31001,d996e271-cb29-4c03-8de6-346d41d73f59,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31001,d996e271-cb29-4c03-8de6-346d41d73f59,LIST_TRANSACTIONS,xs2aListTransactions,true 31002,d996e271-cb29-4c03-8de6-346d41d73f59,AUTHORIZATION,,true 31003,d996e271-cb29-4c03-8de6-346d41d73f59,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31004,d996e271-cb29-4c03-8de6-346d41d73f59,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31005,d996e271-cb29-4c03-8de6-346d41d73f59,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31006,1ab8967e-f950-4bce-92ac-80f706ea8a04,LIST_ACCOUNTS,hbciListAccounts,false -31007,1ab8967e-f950-4bce-92ac-80f706ea8a04,LIST_TRANSACTIONS,hbciListTransactions,false -31008,1ab8967e-f950-4bce-92ac-80f706ea8a04,AUTHORIZATION,,false -31009,1ab8967e-f950-4bce-92ac-80f706ea8a04,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31010,1ab8967e-f950-4bce-92ac-80f706ea8a04,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31011,1ab8967e-f950-4bce-92ac-80f706ea8a04,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31006,4c12a0a4-7a44-40d7-bbee-f4911cb5002f,LIST_ACCOUNTS,hbciListAccounts,false +31007,4c12a0a4-7a44-40d7-bbee-f4911cb5002f,LIST_TRANSACTIONS,hbciListTransactions,false +31008,4c12a0a4-7a44-40d7-bbee-f4911cb5002f,AUTHORIZATION,,false +31009,4c12a0a4-7a44-40d7-bbee-f4911cb5002f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31010,4c12a0a4-7a44-40d7-bbee-f4911cb5002f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31011,4c12a0a4-7a44-40d7-bbee-f4911cb5002f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31012,cfe5182e-d3d5-41d3-89a1-665f61deeaa0,LIST_ACCOUNTS,xs2aListAccounts,true -31013,cfe5182e-d3d5-41d3-89a1-665f61deeaa0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31013,cfe5182e-d3d5-41d3-89a1-665f61deeaa0,LIST_TRANSACTIONS,xs2aListTransactions,true 31014,cfe5182e-d3d5-41d3-89a1-665f61deeaa0,AUTHORIZATION,,true 31015,cfe5182e-d3d5-41d3-89a1-665f61deeaa0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31016,cfe5182e-d3d5-41d3-89a1-665f61deeaa0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31017,cfe5182e-d3d5-41d3-89a1-665f61deeaa0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31018,5c08e371-ab8f-45f8-a169-4caa3f8d4359,LIST_ACCOUNTS,hbciListAccounts,false -31019,5c08e371-ab8f-45f8-a169-4caa3f8d4359,LIST_TRANSACTIONS,hbciListTransactions,false -31020,5c08e371-ab8f-45f8-a169-4caa3f8d4359,AUTHORIZATION,,false -31021,5c08e371-ab8f-45f8-a169-4caa3f8d4359,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31022,5c08e371-ab8f-45f8-a169-4caa3f8d4359,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31023,5c08e371-ab8f-45f8-a169-4caa3f8d4359,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31018,10aff5cf-51f8-4881-ba1c-a834ab87cf21,LIST_ACCOUNTS,hbciListAccounts,false +31019,10aff5cf-51f8-4881-ba1c-a834ab87cf21,LIST_TRANSACTIONS,hbciListTransactions,false +31020,10aff5cf-51f8-4881-ba1c-a834ab87cf21,AUTHORIZATION,,false +31021,10aff5cf-51f8-4881-ba1c-a834ab87cf21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31022,10aff5cf-51f8-4881-ba1c-a834ab87cf21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31023,10aff5cf-51f8-4881-ba1c-a834ab87cf21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31024,0e20f5db-d11b-4839-96b5-20a1ea7acfac,LIST_ACCOUNTS,xs2aListAccounts,true -31025,0e20f5db-d11b-4839-96b5-20a1ea7acfac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31025,0e20f5db-d11b-4839-96b5-20a1ea7acfac,LIST_TRANSACTIONS,xs2aListTransactions,true 31026,0e20f5db-d11b-4839-96b5-20a1ea7acfac,AUTHORIZATION,,true 31027,0e20f5db-d11b-4839-96b5-20a1ea7acfac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31028,0e20f5db-d11b-4839-96b5-20a1ea7acfac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31029,0e20f5db-d11b-4839-96b5-20a1ea7acfac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31030,2737603b-4b24-427a-a57a-9f2e53e364c3,LIST_ACCOUNTS,hbciListAccounts,false -31031,2737603b-4b24-427a-a57a-9f2e53e364c3,LIST_TRANSACTIONS,hbciListTransactions,false -31032,2737603b-4b24-427a-a57a-9f2e53e364c3,AUTHORIZATION,,false -31033,2737603b-4b24-427a-a57a-9f2e53e364c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31034,2737603b-4b24-427a-a57a-9f2e53e364c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31035,2737603b-4b24-427a-a57a-9f2e53e364c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31030,f3f5f6bd-10cc-4c57-a08c-c2726e457bc5,LIST_ACCOUNTS,hbciListAccounts,false +31031,f3f5f6bd-10cc-4c57-a08c-c2726e457bc5,LIST_TRANSACTIONS,hbciListTransactions,false +31032,f3f5f6bd-10cc-4c57-a08c-c2726e457bc5,AUTHORIZATION,,false +31033,f3f5f6bd-10cc-4c57-a08c-c2726e457bc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31034,f3f5f6bd-10cc-4c57-a08c-c2726e457bc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31035,f3f5f6bd-10cc-4c57-a08c-c2726e457bc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31036,1ece0030-49c6-44a7-a186-43f3514479bd,LIST_ACCOUNTS,xs2aListAccounts,true -31037,1ece0030-49c6-44a7-a186-43f3514479bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31037,1ece0030-49c6-44a7-a186-43f3514479bd,LIST_TRANSACTIONS,xs2aListTransactions,true 31038,1ece0030-49c6-44a7-a186-43f3514479bd,AUTHORIZATION,,true 31039,1ece0030-49c6-44a7-a186-43f3514479bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31040,1ece0030-49c6-44a7-a186-43f3514479bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31041,1ece0030-49c6-44a7-a186-43f3514479bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31042,294c32fc-1a7c-45e8-a850-8884db09da01,LIST_ACCOUNTS,hbciListAccounts,false -31043,294c32fc-1a7c-45e8-a850-8884db09da01,LIST_TRANSACTIONS,hbciListTransactions,false -31044,294c32fc-1a7c-45e8-a850-8884db09da01,AUTHORIZATION,,false -31045,294c32fc-1a7c-45e8-a850-8884db09da01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31046,294c32fc-1a7c-45e8-a850-8884db09da01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31047,294c32fc-1a7c-45e8-a850-8884db09da01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31042,17352a01-4ddf-4849-b48a-6dc4675895dd,LIST_ACCOUNTS,hbciListAccounts,false +31043,17352a01-4ddf-4849-b48a-6dc4675895dd,LIST_TRANSACTIONS,hbciListTransactions,false +31044,17352a01-4ddf-4849-b48a-6dc4675895dd,AUTHORIZATION,,false +31045,17352a01-4ddf-4849-b48a-6dc4675895dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31046,17352a01-4ddf-4849-b48a-6dc4675895dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31047,17352a01-4ddf-4849-b48a-6dc4675895dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31048,21210d2e-bc76-4216-930c-3a9acf52ebbd,LIST_ACCOUNTS,xs2aListAccounts,true -31049,21210d2e-bc76-4216-930c-3a9acf52ebbd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31049,21210d2e-bc76-4216-930c-3a9acf52ebbd,LIST_TRANSACTIONS,xs2aListTransactions,true 31050,21210d2e-bc76-4216-930c-3a9acf52ebbd,AUTHORIZATION,,true 31051,21210d2e-bc76-4216-930c-3a9acf52ebbd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31052,21210d2e-bc76-4216-930c-3a9acf52ebbd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31053,21210d2e-bc76-4216-930c-3a9acf52ebbd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31054,c8fdd458-6fcc-4248-b869-2d556eeb1b98,LIST_ACCOUNTS,hbciListAccounts,false -31055,c8fdd458-6fcc-4248-b869-2d556eeb1b98,LIST_TRANSACTIONS,hbciListTransactions,false -31056,c8fdd458-6fcc-4248-b869-2d556eeb1b98,AUTHORIZATION,,false -31057,c8fdd458-6fcc-4248-b869-2d556eeb1b98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31058,c8fdd458-6fcc-4248-b869-2d556eeb1b98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31059,c8fdd458-6fcc-4248-b869-2d556eeb1b98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31054,6fc065eb-1136-4d88-953e-d1dfdb7e9342,LIST_ACCOUNTS,hbciListAccounts,false +31055,6fc065eb-1136-4d88-953e-d1dfdb7e9342,LIST_TRANSACTIONS,hbciListTransactions,false +31056,6fc065eb-1136-4d88-953e-d1dfdb7e9342,AUTHORIZATION,,false +31057,6fc065eb-1136-4d88-953e-d1dfdb7e9342,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31058,6fc065eb-1136-4d88-953e-d1dfdb7e9342,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31059,6fc065eb-1136-4d88-953e-d1dfdb7e9342,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31060,a1ba8985-e391-4b62-a9cf-d3acaea736ae,LIST_ACCOUNTS,xs2aListAccounts,true -31061,a1ba8985-e391-4b62-a9cf-d3acaea736ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31061,a1ba8985-e391-4b62-a9cf-d3acaea736ae,LIST_TRANSACTIONS,xs2aListTransactions,true 31062,a1ba8985-e391-4b62-a9cf-d3acaea736ae,AUTHORIZATION,,true 31063,a1ba8985-e391-4b62-a9cf-d3acaea736ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31064,a1ba8985-e391-4b62-a9cf-d3acaea736ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31065,a1ba8985-e391-4b62-a9cf-d3acaea736ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31066,0a2dcdd1-828a-4c3b-99cc-d07d39a8f374,LIST_ACCOUNTS,hbciListAccounts,false -31067,0a2dcdd1-828a-4c3b-99cc-d07d39a8f374,LIST_TRANSACTIONS,hbciListTransactions,false -31068,0a2dcdd1-828a-4c3b-99cc-d07d39a8f374,AUTHORIZATION,,false -31069,0a2dcdd1-828a-4c3b-99cc-d07d39a8f374,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31070,0a2dcdd1-828a-4c3b-99cc-d07d39a8f374,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31071,0a2dcdd1-828a-4c3b-99cc-d07d39a8f374,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31066,e3c25774-e3d6-45b4-9a60-3b18767e48cd,LIST_ACCOUNTS,hbciListAccounts,false +31067,e3c25774-e3d6-45b4-9a60-3b18767e48cd,LIST_TRANSACTIONS,hbciListTransactions,false +31068,e3c25774-e3d6-45b4-9a60-3b18767e48cd,AUTHORIZATION,,false +31069,e3c25774-e3d6-45b4-9a60-3b18767e48cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31070,e3c25774-e3d6-45b4-9a60-3b18767e48cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31071,e3c25774-e3d6-45b4-9a60-3b18767e48cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31072,1453e620-3adf-4f3b-8d6b-80610bdeda5b,LIST_ACCOUNTS,xs2aListAccounts,true -31073,1453e620-3adf-4f3b-8d6b-80610bdeda5b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31073,1453e620-3adf-4f3b-8d6b-80610bdeda5b,LIST_TRANSACTIONS,xs2aListTransactions,true 31074,1453e620-3adf-4f3b-8d6b-80610bdeda5b,AUTHORIZATION,,true 31075,1453e620-3adf-4f3b-8d6b-80610bdeda5b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31076,1453e620-3adf-4f3b-8d6b-80610bdeda5b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31077,1453e620-3adf-4f3b-8d6b-80610bdeda5b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31078,980971f7-63dc-4d79-8660-040838e830b7,LIST_ACCOUNTS,hbciListAccounts,false -31079,980971f7-63dc-4d79-8660-040838e830b7,LIST_TRANSACTIONS,hbciListTransactions,false -31080,980971f7-63dc-4d79-8660-040838e830b7,AUTHORIZATION,,false -31081,980971f7-63dc-4d79-8660-040838e830b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31082,980971f7-63dc-4d79-8660-040838e830b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31083,980971f7-63dc-4d79-8660-040838e830b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31078,cffd501c-d928-4f32-90da-70333e16c13c,LIST_ACCOUNTS,hbciListAccounts,false +31079,cffd501c-d928-4f32-90da-70333e16c13c,LIST_TRANSACTIONS,hbciListTransactions,false +31080,cffd501c-d928-4f32-90da-70333e16c13c,AUTHORIZATION,,false +31081,cffd501c-d928-4f32-90da-70333e16c13c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31082,cffd501c-d928-4f32-90da-70333e16c13c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31083,cffd501c-d928-4f32-90da-70333e16c13c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31084,4c6ddc90-a9f3-4a67-adc2-45a6ad886b23,LIST_ACCOUNTS,xs2aListAccounts,true -31085,4c6ddc90-a9f3-4a67-adc2-45a6ad886b23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31085,4c6ddc90-a9f3-4a67-adc2-45a6ad886b23,LIST_TRANSACTIONS,xs2aListTransactions,true 31086,4c6ddc90-a9f3-4a67-adc2-45a6ad886b23,AUTHORIZATION,,true 31087,4c6ddc90-a9f3-4a67-adc2-45a6ad886b23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31088,4c6ddc90-a9f3-4a67-adc2-45a6ad886b23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31089,4c6ddc90-a9f3-4a67-adc2-45a6ad886b23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31090,a34238c3-6c5b-4e3b-baca-c2592645d1ea,LIST_ACCOUNTS,hbciListAccounts,false -31091,a34238c3-6c5b-4e3b-baca-c2592645d1ea,LIST_TRANSACTIONS,hbciListTransactions,false -31092,a34238c3-6c5b-4e3b-baca-c2592645d1ea,AUTHORIZATION,,false -31093,a34238c3-6c5b-4e3b-baca-c2592645d1ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31094,a34238c3-6c5b-4e3b-baca-c2592645d1ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31095,a34238c3-6c5b-4e3b-baca-c2592645d1ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31090,2cd221bc-d3f8-4f48-950b-1f2722da09b7,LIST_ACCOUNTS,hbciListAccounts,false +31091,2cd221bc-d3f8-4f48-950b-1f2722da09b7,LIST_TRANSACTIONS,hbciListTransactions,false +31092,2cd221bc-d3f8-4f48-950b-1f2722da09b7,AUTHORIZATION,,false +31093,2cd221bc-d3f8-4f48-950b-1f2722da09b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31094,2cd221bc-d3f8-4f48-950b-1f2722da09b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31095,2cd221bc-d3f8-4f48-950b-1f2722da09b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31096,3fb474c9-e4da-41c8-95be-d1af33fbac75,LIST_ACCOUNTS,xs2aListAccounts,true -31097,3fb474c9-e4da-41c8-95be-d1af33fbac75,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31097,3fb474c9-e4da-41c8-95be-d1af33fbac75,LIST_TRANSACTIONS,xs2aListTransactions,true 31098,3fb474c9-e4da-41c8-95be-d1af33fbac75,AUTHORIZATION,,true 31099,3fb474c9-e4da-41c8-95be-d1af33fbac75,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31100,3fb474c9-e4da-41c8-95be-d1af33fbac75,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31101,3fb474c9-e4da-41c8-95be-d1af33fbac75,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31102,4b490c79-e655-423b-8426-783369c7d06e,LIST_ACCOUNTS,hbciListAccounts,false -31103,4b490c79-e655-423b-8426-783369c7d06e,LIST_TRANSACTIONS,hbciListTransactions,false -31104,4b490c79-e655-423b-8426-783369c7d06e,AUTHORIZATION,,false -31105,4b490c79-e655-423b-8426-783369c7d06e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31106,4b490c79-e655-423b-8426-783369c7d06e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31107,4b490c79-e655-423b-8426-783369c7d06e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31102,1737d623-2dae-4623-b3f7-68c5fe12948b,LIST_ACCOUNTS,hbciListAccounts,false +31103,1737d623-2dae-4623-b3f7-68c5fe12948b,LIST_TRANSACTIONS,hbciListTransactions,false +31104,1737d623-2dae-4623-b3f7-68c5fe12948b,AUTHORIZATION,,false +31105,1737d623-2dae-4623-b3f7-68c5fe12948b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31106,1737d623-2dae-4623-b3f7-68c5fe12948b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31107,1737d623-2dae-4623-b3f7-68c5fe12948b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31108,d6141ed9-3273-413e-9083-a5d79c4ff2a4,LIST_ACCOUNTS,xs2aListAccounts,true -31109,d6141ed9-3273-413e-9083-a5d79c4ff2a4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31109,d6141ed9-3273-413e-9083-a5d79c4ff2a4,LIST_TRANSACTIONS,xs2aListTransactions,true 31110,d6141ed9-3273-413e-9083-a5d79c4ff2a4,AUTHORIZATION,,true 31111,d6141ed9-3273-413e-9083-a5d79c4ff2a4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31112,d6141ed9-3273-413e-9083-a5d79c4ff2a4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31113,d6141ed9-3273-413e-9083-a5d79c4ff2a4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31114,373842ae-7861-4bdc-a6df-85a4a048a21f,LIST_ACCOUNTS,hbciListAccounts,false -31115,373842ae-7861-4bdc-a6df-85a4a048a21f,LIST_TRANSACTIONS,hbciListTransactions,false -31116,373842ae-7861-4bdc-a6df-85a4a048a21f,AUTHORIZATION,,false -31117,373842ae-7861-4bdc-a6df-85a4a048a21f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31118,373842ae-7861-4bdc-a6df-85a4a048a21f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31119,373842ae-7861-4bdc-a6df-85a4a048a21f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31114,a42a8c0d-500b-484c-87ca-ae0aa64ccb38,LIST_ACCOUNTS,hbciListAccounts,false +31115,a42a8c0d-500b-484c-87ca-ae0aa64ccb38,LIST_TRANSACTIONS,hbciListTransactions,false +31116,a42a8c0d-500b-484c-87ca-ae0aa64ccb38,AUTHORIZATION,,false +31117,a42a8c0d-500b-484c-87ca-ae0aa64ccb38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31118,a42a8c0d-500b-484c-87ca-ae0aa64ccb38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31119,a42a8c0d-500b-484c-87ca-ae0aa64ccb38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31120,f6a61f4f-9578-4225-90ee-a2d1da6ae08d,LIST_ACCOUNTS,xs2aListAccounts,true -31121,f6a61f4f-9578-4225-90ee-a2d1da6ae08d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31121,f6a61f4f-9578-4225-90ee-a2d1da6ae08d,LIST_TRANSACTIONS,xs2aListTransactions,true 31122,f6a61f4f-9578-4225-90ee-a2d1da6ae08d,AUTHORIZATION,,true 31123,f6a61f4f-9578-4225-90ee-a2d1da6ae08d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31124,f6a61f4f-9578-4225-90ee-a2d1da6ae08d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31125,f6a61f4f-9578-4225-90ee-a2d1da6ae08d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31126,3355ae73-81d3-4d1f-944e-b17309c65b58,LIST_ACCOUNTS,hbciListAccounts,false -31127,3355ae73-81d3-4d1f-944e-b17309c65b58,LIST_TRANSACTIONS,hbciListTransactions,false -31128,3355ae73-81d3-4d1f-944e-b17309c65b58,AUTHORIZATION,,false -31129,3355ae73-81d3-4d1f-944e-b17309c65b58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31130,3355ae73-81d3-4d1f-944e-b17309c65b58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31131,3355ae73-81d3-4d1f-944e-b17309c65b58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31126,9327a78f-32b8-43ac-bc9b-8d19e0f6e3c6,LIST_ACCOUNTS,hbciListAccounts,false +31127,9327a78f-32b8-43ac-bc9b-8d19e0f6e3c6,LIST_TRANSACTIONS,hbciListTransactions,false +31128,9327a78f-32b8-43ac-bc9b-8d19e0f6e3c6,AUTHORIZATION,,false +31129,9327a78f-32b8-43ac-bc9b-8d19e0f6e3c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31130,9327a78f-32b8-43ac-bc9b-8d19e0f6e3c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31131,9327a78f-32b8-43ac-bc9b-8d19e0f6e3c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31132,237ae651-9228-4e3c-be5d-5fe9d7ac842b,LIST_ACCOUNTS,xs2aListAccounts,true -31133,237ae651-9228-4e3c-be5d-5fe9d7ac842b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31133,237ae651-9228-4e3c-be5d-5fe9d7ac842b,LIST_TRANSACTIONS,xs2aListTransactions,true 31134,237ae651-9228-4e3c-be5d-5fe9d7ac842b,AUTHORIZATION,,true 31135,237ae651-9228-4e3c-be5d-5fe9d7ac842b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31136,237ae651-9228-4e3c-be5d-5fe9d7ac842b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31137,237ae651-9228-4e3c-be5d-5fe9d7ac842b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31138,12705888-ac3d-4d6c-acec-e1367fd68f5f,LIST_ACCOUNTS,hbciListAccounts,false -31139,12705888-ac3d-4d6c-acec-e1367fd68f5f,LIST_TRANSACTIONS,hbciListTransactions,false -31140,12705888-ac3d-4d6c-acec-e1367fd68f5f,AUTHORIZATION,,false -31141,12705888-ac3d-4d6c-acec-e1367fd68f5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31142,12705888-ac3d-4d6c-acec-e1367fd68f5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31143,12705888-ac3d-4d6c-acec-e1367fd68f5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31138,fd127ca8-beb0-42f9-80ec-ed18c0b0d3ee,LIST_ACCOUNTS,hbciListAccounts,false +31139,fd127ca8-beb0-42f9-80ec-ed18c0b0d3ee,LIST_TRANSACTIONS,hbciListTransactions,false +31140,fd127ca8-beb0-42f9-80ec-ed18c0b0d3ee,AUTHORIZATION,,false +31141,fd127ca8-beb0-42f9-80ec-ed18c0b0d3ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31142,fd127ca8-beb0-42f9-80ec-ed18c0b0d3ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31143,fd127ca8-beb0-42f9-80ec-ed18c0b0d3ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31144,b355b4f2-2d49-45c7-b1e6-448d7c32326a,LIST_ACCOUNTS,xs2aListAccounts,true -31145,b355b4f2-2d49-45c7-b1e6-448d7c32326a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31145,b355b4f2-2d49-45c7-b1e6-448d7c32326a,LIST_TRANSACTIONS,xs2aListTransactions,true 31146,b355b4f2-2d49-45c7-b1e6-448d7c32326a,AUTHORIZATION,,true 31147,b355b4f2-2d49-45c7-b1e6-448d7c32326a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31148,b355b4f2-2d49-45c7-b1e6-448d7c32326a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31149,b355b4f2-2d49-45c7-b1e6-448d7c32326a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31150,8522b804-7674-4463-89b5-e607d7426f3c,LIST_ACCOUNTS,hbciListAccounts,false -31151,8522b804-7674-4463-89b5-e607d7426f3c,LIST_TRANSACTIONS,hbciListTransactions,false -31152,8522b804-7674-4463-89b5-e607d7426f3c,AUTHORIZATION,,false -31153,8522b804-7674-4463-89b5-e607d7426f3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31154,8522b804-7674-4463-89b5-e607d7426f3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31155,8522b804-7674-4463-89b5-e607d7426f3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31150,d1660327-999a-42b9-a5c6-05b891c04cba,LIST_ACCOUNTS,hbciListAccounts,false +31151,d1660327-999a-42b9-a5c6-05b891c04cba,LIST_TRANSACTIONS,hbciListTransactions,false +31152,d1660327-999a-42b9-a5c6-05b891c04cba,AUTHORIZATION,,false +31153,d1660327-999a-42b9-a5c6-05b891c04cba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31154,d1660327-999a-42b9-a5c6-05b891c04cba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31155,d1660327-999a-42b9-a5c6-05b891c04cba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31156,e9743e33-f12c-42b6-9ecf-1ed64dd95287,LIST_ACCOUNTS,xs2aListAccounts,true -31157,e9743e33-f12c-42b6-9ecf-1ed64dd95287,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31157,e9743e33-f12c-42b6-9ecf-1ed64dd95287,LIST_TRANSACTIONS,xs2aListTransactions,true 31158,e9743e33-f12c-42b6-9ecf-1ed64dd95287,AUTHORIZATION,,true 31159,e9743e33-f12c-42b6-9ecf-1ed64dd95287,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31160,e9743e33-f12c-42b6-9ecf-1ed64dd95287,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31161,e9743e33-f12c-42b6-9ecf-1ed64dd95287,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31162,0b5a9b50-cdb6-48f0-9f51-dfab95881f16,LIST_ACCOUNTS,hbciListAccounts,false -31163,0b5a9b50-cdb6-48f0-9f51-dfab95881f16,LIST_TRANSACTIONS,hbciListTransactions,false -31164,0b5a9b50-cdb6-48f0-9f51-dfab95881f16,AUTHORIZATION,,false -31165,0b5a9b50-cdb6-48f0-9f51-dfab95881f16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31166,0b5a9b50-cdb6-48f0-9f51-dfab95881f16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31167,0b5a9b50-cdb6-48f0-9f51-dfab95881f16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31162,6bd93700-b87f-42e5-9511-4160e1ac0372,LIST_ACCOUNTS,hbciListAccounts,false +31163,6bd93700-b87f-42e5-9511-4160e1ac0372,LIST_TRANSACTIONS,hbciListTransactions,false +31164,6bd93700-b87f-42e5-9511-4160e1ac0372,AUTHORIZATION,,false +31165,6bd93700-b87f-42e5-9511-4160e1ac0372,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31166,6bd93700-b87f-42e5-9511-4160e1ac0372,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31167,6bd93700-b87f-42e5-9511-4160e1ac0372,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31168,0fe41bbb-23cb-4f55-ac2f-e0a21c80d835,LIST_ACCOUNTS,xs2aListAccounts,true -31169,0fe41bbb-23cb-4f55-ac2f-e0a21c80d835,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31169,0fe41bbb-23cb-4f55-ac2f-e0a21c80d835,LIST_TRANSACTIONS,xs2aListTransactions,true 31170,0fe41bbb-23cb-4f55-ac2f-e0a21c80d835,AUTHORIZATION,,true 31171,0fe41bbb-23cb-4f55-ac2f-e0a21c80d835,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31172,0fe41bbb-23cb-4f55-ac2f-e0a21c80d835,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31173,0fe41bbb-23cb-4f55-ac2f-e0a21c80d835,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31174,43162ca2-a348-4c7f-a1f3-7e3c66291737,LIST_ACCOUNTS,hbciListAccounts,false -31175,43162ca2-a348-4c7f-a1f3-7e3c66291737,LIST_TRANSACTIONS,hbciListTransactions,false -31176,43162ca2-a348-4c7f-a1f3-7e3c66291737,AUTHORIZATION,,false -31177,43162ca2-a348-4c7f-a1f3-7e3c66291737,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31178,43162ca2-a348-4c7f-a1f3-7e3c66291737,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31179,43162ca2-a348-4c7f-a1f3-7e3c66291737,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31174,58656305-be98-40e9-9edb-5df8b58e54fb,LIST_ACCOUNTS,hbciListAccounts,false +31175,58656305-be98-40e9-9edb-5df8b58e54fb,LIST_TRANSACTIONS,hbciListTransactions,false +31176,58656305-be98-40e9-9edb-5df8b58e54fb,AUTHORIZATION,,false +31177,58656305-be98-40e9-9edb-5df8b58e54fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31178,58656305-be98-40e9-9edb-5df8b58e54fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31179,58656305-be98-40e9-9edb-5df8b58e54fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31180,f7f62aa1-e321-415b-9b4e-e2326c77ac51,LIST_ACCOUNTS,xs2aListAccounts,true -31181,f7f62aa1-e321-415b-9b4e-e2326c77ac51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31181,f7f62aa1-e321-415b-9b4e-e2326c77ac51,LIST_TRANSACTIONS,xs2aListTransactions,true 31182,f7f62aa1-e321-415b-9b4e-e2326c77ac51,AUTHORIZATION,,true 31183,f7f62aa1-e321-415b-9b4e-e2326c77ac51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31184,f7f62aa1-e321-415b-9b4e-e2326c77ac51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31185,f7f62aa1-e321-415b-9b4e-e2326c77ac51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31186,ee791879-0564-4dff-8656-e6775334c910,LIST_ACCOUNTS,hbciListAccounts,false -31187,ee791879-0564-4dff-8656-e6775334c910,LIST_TRANSACTIONS,hbciListTransactions,false -31188,ee791879-0564-4dff-8656-e6775334c910,AUTHORIZATION,,false -31189,ee791879-0564-4dff-8656-e6775334c910,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31190,ee791879-0564-4dff-8656-e6775334c910,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31191,ee791879-0564-4dff-8656-e6775334c910,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31186,ea5e40db-ecd3-45d3-aa09-79fb08fccf17,LIST_ACCOUNTS,hbciListAccounts,false +31187,ea5e40db-ecd3-45d3-aa09-79fb08fccf17,LIST_TRANSACTIONS,hbciListTransactions,false +31188,ea5e40db-ecd3-45d3-aa09-79fb08fccf17,AUTHORIZATION,,false +31189,ea5e40db-ecd3-45d3-aa09-79fb08fccf17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31190,ea5e40db-ecd3-45d3-aa09-79fb08fccf17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31191,ea5e40db-ecd3-45d3-aa09-79fb08fccf17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31192,f264cd60-ae0d-475d-80c4-66810aa49e6d,LIST_ACCOUNTS,xs2aListAccounts,true -31193,f264cd60-ae0d-475d-80c4-66810aa49e6d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31193,f264cd60-ae0d-475d-80c4-66810aa49e6d,LIST_TRANSACTIONS,xs2aListTransactions,true 31194,f264cd60-ae0d-475d-80c4-66810aa49e6d,AUTHORIZATION,,true 31195,f264cd60-ae0d-475d-80c4-66810aa49e6d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31196,f264cd60-ae0d-475d-80c4-66810aa49e6d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31197,f264cd60-ae0d-475d-80c4-66810aa49e6d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31198,c24dc9a9-5f19-4d16-bc75-bcf484d4e2a7,LIST_ACCOUNTS,hbciListAccounts,false -31199,c24dc9a9-5f19-4d16-bc75-bcf484d4e2a7,LIST_TRANSACTIONS,hbciListTransactions,false -31200,c24dc9a9-5f19-4d16-bc75-bcf484d4e2a7,AUTHORIZATION,,false -31201,c24dc9a9-5f19-4d16-bc75-bcf484d4e2a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31202,c24dc9a9-5f19-4d16-bc75-bcf484d4e2a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31203,c24dc9a9-5f19-4d16-bc75-bcf484d4e2a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31198,284cba8f-0e37-422c-b51a-a5057f0fc466,LIST_ACCOUNTS,hbciListAccounts,false +31199,284cba8f-0e37-422c-b51a-a5057f0fc466,LIST_TRANSACTIONS,hbciListTransactions,false +31200,284cba8f-0e37-422c-b51a-a5057f0fc466,AUTHORIZATION,,false +31201,284cba8f-0e37-422c-b51a-a5057f0fc466,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31202,284cba8f-0e37-422c-b51a-a5057f0fc466,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31203,284cba8f-0e37-422c-b51a-a5057f0fc466,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31204,f264cc8a-b60e-46b7-bb05-40dd9579f79d,LIST_ACCOUNTS,xs2aListAccounts,true -31205,f264cc8a-b60e-46b7-bb05-40dd9579f79d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31205,f264cc8a-b60e-46b7-bb05-40dd9579f79d,LIST_TRANSACTIONS,xs2aListTransactions,true 31206,f264cc8a-b60e-46b7-bb05-40dd9579f79d,AUTHORIZATION,,true 31207,f264cc8a-b60e-46b7-bb05-40dd9579f79d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31208,f264cc8a-b60e-46b7-bb05-40dd9579f79d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31209,f264cc8a-b60e-46b7-bb05-40dd9579f79d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31210,a5956108-0c18-4203-9967-f3ca91218a07,LIST_ACCOUNTS,hbciListAccounts,false -31211,a5956108-0c18-4203-9967-f3ca91218a07,LIST_TRANSACTIONS,hbciListTransactions,false -31212,a5956108-0c18-4203-9967-f3ca91218a07,AUTHORIZATION,,false -31213,a5956108-0c18-4203-9967-f3ca91218a07,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31214,a5956108-0c18-4203-9967-f3ca91218a07,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31215,a5956108-0c18-4203-9967-f3ca91218a07,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31210,f44b42d6-c7c4-43e1-bcab-b1dc23d96074,LIST_ACCOUNTS,hbciListAccounts,false +31211,f44b42d6-c7c4-43e1-bcab-b1dc23d96074,LIST_TRANSACTIONS,hbciListTransactions,false +31212,f44b42d6-c7c4-43e1-bcab-b1dc23d96074,AUTHORIZATION,,false +31213,f44b42d6-c7c4-43e1-bcab-b1dc23d96074,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31214,f44b42d6-c7c4-43e1-bcab-b1dc23d96074,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31215,f44b42d6-c7c4-43e1-bcab-b1dc23d96074,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31216,8c6e7a8e-c137-4250-bbbf-140a1f1d9531,LIST_ACCOUNTS,xs2aListAccounts,true -31217,8c6e7a8e-c137-4250-bbbf-140a1f1d9531,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31217,8c6e7a8e-c137-4250-bbbf-140a1f1d9531,LIST_TRANSACTIONS,xs2aListTransactions,true 31218,8c6e7a8e-c137-4250-bbbf-140a1f1d9531,AUTHORIZATION,,true 31219,8c6e7a8e-c137-4250-bbbf-140a1f1d9531,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31220,8c6e7a8e-c137-4250-bbbf-140a1f1d9531,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31221,8c6e7a8e-c137-4250-bbbf-140a1f1d9531,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31222,1780bbda-5b0f-4326-b14d-d3a92a41d7f6,LIST_ACCOUNTS,hbciListAccounts,false -31223,1780bbda-5b0f-4326-b14d-d3a92a41d7f6,LIST_TRANSACTIONS,hbciListTransactions,false -31224,1780bbda-5b0f-4326-b14d-d3a92a41d7f6,AUTHORIZATION,,false -31225,1780bbda-5b0f-4326-b14d-d3a92a41d7f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31226,1780bbda-5b0f-4326-b14d-d3a92a41d7f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31227,1780bbda-5b0f-4326-b14d-d3a92a41d7f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31222,987e3cfe-017c-4c69-90c9-e5f216261ecf,LIST_ACCOUNTS,hbciListAccounts,false +31223,987e3cfe-017c-4c69-90c9-e5f216261ecf,LIST_TRANSACTIONS,hbciListTransactions,false +31224,987e3cfe-017c-4c69-90c9-e5f216261ecf,AUTHORIZATION,,false +31225,987e3cfe-017c-4c69-90c9-e5f216261ecf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31226,987e3cfe-017c-4c69-90c9-e5f216261ecf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31227,987e3cfe-017c-4c69-90c9-e5f216261ecf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31228,96bd6b30-308d-4055-97c0-d838a9423694,LIST_ACCOUNTS,xs2aListAccounts,true -31229,96bd6b30-308d-4055-97c0-d838a9423694,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31229,96bd6b30-308d-4055-97c0-d838a9423694,LIST_TRANSACTIONS,xs2aListTransactions,true 31230,96bd6b30-308d-4055-97c0-d838a9423694,AUTHORIZATION,,true 31231,96bd6b30-308d-4055-97c0-d838a9423694,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31232,96bd6b30-308d-4055-97c0-d838a9423694,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31233,96bd6b30-308d-4055-97c0-d838a9423694,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31234,bf48ea2d-2923-4ca3-b46e-161f8b5201f3,LIST_ACCOUNTS,hbciListAccounts,false -31235,bf48ea2d-2923-4ca3-b46e-161f8b5201f3,LIST_TRANSACTIONS,hbciListTransactions,false -31236,bf48ea2d-2923-4ca3-b46e-161f8b5201f3,AUTHORIZATION,,false -31237,bf48ea2d-2923-4ca3-b46e-161f8b5201f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31238,bf48ea2d-2923-4ca3-b46e-161f8b5201f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31239,bf48ea2d-2923-4ca3-b46e-161f8b5201f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31234,51a4ae35-12cd-4dbb-bdcd-8bf489c2a8d7,LIST_ACCOUNTS,hbciListAccounts,false +31235,51a4ae35-12cd-4dbb-bdcd-8bf489c2a8d7,LIST_TRANSACTIONS,hbciListTransactions,false +31236,51a4ae35-12cd-4dbb-bdcd-8bf489c2a8d7,AUTHORIZATION,,false +31237,51a4ae35-12cd-4dbb-bdcd-8bf489c2a8d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31238,51a4ae35-12cd-4dbb-bdcd-8bf489c2a8d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31239,51a4ae35-12cd-4dbb-bdcd-8bf489c2a8d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31240,6a061661-5348-44c1-ab02-8444da6282dc,LIST_ACCOUNTS,xs2aListAccounts,true -31241,6a061661-5348-44c1-ab02-8444da6282dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31241,6a061661-5348-44c1-ab02-8444da6282dc,LIST_TRANSACTIONS,xs2aListTransactions,true 31242,6a061661-5348-44c1-ab02-8444da6282dc,AUTHORIZATION,,true 31243,6a061661-5348-44c1-ab02-8444da6282dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31244,6a061661-5348-44c1-ab02-8444da6282dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31245,6a061661-5348-44c1-ab02-8444da6282dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31246,c23ab7bb-9948-4208-abb4-5d991df96603,LIST_ACCOUNTS,hbciListAccounts,false -31247,c23ab7bb-9948-4208-abb4-5d991df96603,LIST_TRANSACTIONS,hbciListTransactions,false -31248,c23ab7bb-9948-4208-abb4-5d991df96603,AUTHORIZATION,,false -31249,c23ab7bb-9948-4208-abb4-5d991df96603,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31250,c23ab7bb-9948-4208-abb4-5d991df96603,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31251,c23ab7bb-9948-4208-abb4-5d991df96603,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31246,8fb01d01-5b71-4c59-8932-3f0d024f3edd,LIST_ACCOUNTS,hbciListAccounts,false +31247,8fb01d01-5b71-4c59-8932-3f0d024f3edd,LIST_TRANSACTIONS,hbciListTransactions,false +31248,8fb01d01-5b71-4c59-8932-3f0d024f3edd,AUTHORIZATION,,false +31249,8fb01d01-5b71-4c59-8932-3f0d024f3edd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31250,8fb01d01-5b71-4c59-8932-3f0d024f3edd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31251,8fb01d01-5b71-4c59-8932-3f0d024f3edd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31252,fce933dc-8ffe-486d-902a-4c1293312c88,LIST_ACCOUNTS,xs2aListAccounts,true -31253,fce933dc-8ffe-486d-902a-4c1293312c88,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31253,fce933dc-8ffe-486d-902a-4c1293312c88,LIST_TRANSACTIONS,xs2aListTransactions,true 31254,fce933dc-8ffe-486d-902a-4c1293312c88,AUTHORIZATION,,true 31255,fce933dc-8ffe-486d-902a-4c1293312c88,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31256,fce933dc-8ffe-486d-902a-4c1293312c88,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31257,fce933dc-8ffe-486d-902a-4c1293312c88,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31258,49bf4a1c-b808-4fb0-8d98-0992f9feee76,LIST_ACCOUNTS,hbciListAccounts,false -31259,49bf4a1c-b808-4fb0-8d98-0992f9feee76,LIST_TRANSACTIONS,hbciListTransactions,false -31260,49bf4a1c-b808-4fb0-8d98-0992f9feee76,AUTHORIZATION,,false -31261,49bf4a1c-b808-4fb0-8d98-0992f9feee76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31262,49bf4a1c-b808-4fb0-8d98-0992f9feee76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31263,49bf4a1c-b808-4fb0-8d98-0992f9feee76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31258,4855b56d-0dbd-4e62-9728-dfe6a8175be9,LIST_ACCOUNTS,hbciListAccounts,false +31259,4855b56d-0dbd-4e62-9728-dfe6a8175be9,LIST_TRANSACTIONS,hbciListTransactions,false +31260,4855b56d-0dbd-4e62-9728-dfe6a8175be9,AUTHORIZATION,,false +31261,4855b56d-0dbd-4e62-9728-dfe6a8175be9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31262,4855b56d-0dbd-4e62-9728-dfe6a8175be9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31263,4855b56d-0dbd-4e62-9728-dfe6a8175be9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31264,249c19df-89ba-45c8-8066-cb0772fddc3f,LIST_ACCOUNTS,xs2aListAccounts,true -31265,249c19df-89ba-45c8-8066-cb0772fddc3f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31265,249c19df-89ba-45c8-8066-cb0772fddc3f,LIST_TRANSACTIONS,xs2aListTransactions,true 31266,249c19df-89ba-45c8-8066-cb0772fddc3f,AUTHORIZATION,,true 31267,249c19df-89ba-45c8-8066-cb0772fddc3f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31268,249c19df-89ba-45c8-8066-cb0772fddc3f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31269,249c19df-89ba-45c8-8066-cb0772fddc3f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31270,56a392fe-ed07-42d3-a3db-4168c10a73c7,LIST_ACCOUNTS,hbciListAccounts,false -31271,56a392fe-ed07-42d3-a3db-4168c10a73c7,LIST_TRANSACTIONS,hbciListTransactions,false -31272,56a392fe-ed07-42d3-a3db-4168c10a73c7,AUTHORIZATION,,false -31273,56a392fe-ed07-42d3-a3db-4168c10a73c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31274,56a392fe-ed07-42d3-a3db-4168c10a73c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31275,56a392fe-ed07-42d3-a3db-4168c10a73c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31270,935eb4c6-1b15-47ce-a372-b38b42134f1c,LIST_ACCOUNTS,hbciListAccounts,false +31271,935eb4c6-1b15-47ce-a372-b38b42134f1c,LIST_TRANSACTIONS,hbciListTransactions,false +31272,935eb4c6-1b15-47ce-a372-b38b42134f1c,AUTHORIZATION,,false +31273,935eb4c6-1b15-47ce-a372-b38b42134f1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31274,935eb4c6-1b15-47ce-a372-b38b42134f1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31275,935eb4c6-1b15-47ce-a372-b38b42134f1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31276,35d5f556-963e-43b0-ad7b-ed9425222c43,LIST_ACCOUNTS,xs2aListAccounts,true -31277,35d5f556-963e-43b0-ad7b-ed9425222c43,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31277,35d5f556-963e-43b0-ad7b-ed9425222c43,LIST_TRANSACTIONS,xs2aListTransactions,true 31278,35d5f556-963e-43b0-ad7b-ed9425222c43,AUTHORIZATION,,true 31279,35d5f556-963e-43b0-ad7b-ed9425222c43,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31280,35d5f556-963e-43b0-ad7b-ed9425222c43,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31281,35d5f556-963e-43b0-ad7b-ed9425222c43,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31282,cd0d7e7c-51b9-4733-884f-eb251ce41e08,LIST_ACCOUNTS,hbciListAccounts,false -31283,cd0d7e7c-51b9-4733-884f-eb251ce41e08,LIST_TRANSACTIONS,hbciListTransactions,false -31284,cd0d7e7c-51b9-4733-884f-eb251ce41e08,AUTHORIZATION,,false -31285,cd0d7e7c-51b9-4733-884f-eb251ce41e08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31286,cd0d7e7c-51b9-4733-884f-eb251ce41e08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31287,cd0d7e7c-51b9-4733-884f-eb251ce41e08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31282,6960f125-08ef-4d65-8c3d-537b7a34a0f9,LIST_ACCOUNTS,hbciListAccounts,false +31283,6960f125-08ef-4d65-8c3d-537b7a34a0f9,LIST_TRANSACTIONS,hbciListTransactions,false +31284,6960f125-08ef-4d65-8c3d-537b7a34a0f9,AUTHORIZATION,,false +31285,6960f125-08ef-4d65-8c3d-537b7a34a0f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31286,6960f125-08ef-4d65-8c3d-537b7a34a0f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31287,6960f125-08ef-4d65-8c3d-537b7a34a0f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31288,b71b39ca-090c-4a4b-b2b5-6dd2715dc909,LIST_ACCOUNTS,xs2aListAccounts,true -31289,b71b39ca-090c-4a4b-b2b5-6dd2715dc909,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31289,b71b39ca-090c-4a4b-b2b5-6dd2715dc909,LIST_TRANSACTIONS,xs2aListTransactions,true 31290,b71b39ca-090c-4a4b-b2b5-6dd2715dc909,AUTHORIZATION,,true 31291,b71b39ca-090c-4a4b-b2b5-6dd2715dc909,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31292,b71b39ca-090c-4a4b-b2b5-6dd2715dc909,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31293,b71b39ca-090c-4a4b-b2b5-6dd2715dc909,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31294,f1039a52-9d0b-4a14-917f-6e7fe6eb402c,LIST_ACCOUNTS,hbciListAccounts,false -31295,f1039a52-9d0b-4a14-917f-6e7fe6eb402c,LIST_TRANSACTIONS,hbciListTransactions,false -31296,f1039a52-9d0b-4a14-917f-6e7fe6eb402c,AUTHORIZATION,,false -31297,f1039a52-9d0b-4a14-917f-6e7fe6eb402c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31298,f1039a52-9d0b-4a14-917f-6e7fe6eb402c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31299,f1039a52-9d0b-4a14-917f-6e7fe6eb402c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31294,155031bd-30bb-4b9a-8806-a3df968e09e8,LIST_ACCOUNTS,hbciListAccounts,false +31295,155031bd-30bb-4b9a-8806-a3df968e09e8,LIST_TRANSACTIONS,hbciListTransactions,false +31296,155031bd-30bb-4b9a-8806-a3df968e09e8,AUTHORIZATION,,false +31297,155031bd-30bb-4b9a-8806-a3df968e09e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31298,155031bd-30bb-4b9a-8806-a3df968e09e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31299,155031bd-30bb-4b9a-8806-a3df968e09e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31300,5c9e2ceb-ed2f-41d1-93ed-fc9bec6ea063,LIST_ACCOUNTS,xs2aListAccounts,true -31301,5c9e2ceb-ed2f-41d1-93ed-fc9bec6ea063,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31301,5c9e2ceb-ed2f-41d1-93ed-fc9bec6ea063,LIST_TRANSACTIONS,xs2aListTransactions,true 31302,5c9e2ceb-ed2f-41d1-93ed-fc9bec6ea063,AUTHORIZATION,,true 31303,5c9e2ceb-ed2f-41d1-93ed-fc9bec6ea063,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31304,5c9e2ceb-ed2f-41d1-93ed-fc9bec6ea063,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31305,5c9e2ceb-ed2f-41d1-93ed-fc9bec6ea063,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31306,34e0d257-0070-4ea3-ac4e-a21081c8aab3,LIST_ACCOUNTS,hbciListAccounts,false -31307,34e0d257-0070-4ea3-ac4e-a21081c8aab3,LIST_TRANSACTIONS,hbciListTransactions,false -31308,34e0d257-0070-4ea3-ac4e-a21081c8aab3,AUTHORIZATION,,false -31309,34e0d257-0070-4ea3-ac4e-a21081c8aab3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31310,34e0d257-0070-4ea3-ac4e-a21081c8aab3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31311,34e0d257-0070-4ea3-ac4e-a21081c8aab3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31306,84b9e5f1-470d-451c-9528-f0fd344102d4,LIST_ACCOUNTS,hbciListAccounts,false +31307,84b9e5f1-470d-451c-9528-f0fd344102d4,LIST_TRANSACTIONS,hbciListTransactions,false +31308,84b9e5f1-470d-451c-9528-f0fd344102d4,AUTHORIZATION,,false +31309,84b9e5f1-470d-451c-9528-f0fd344102d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31310,84b9e5f1-470d-451c-9528-f0fd344102d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31311,84b9e5f1-470d-451c-9528-f0fd344102d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31312,4d5f7f69-de84-44ac-8f78-f2b1cef2b430,LIST_ACCOUNTS,xs2aListAccounts,true -31313,4d5f7f69-de84-44ac-8f78-f2b1cef2b430,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31313,4d5f7f69-de84-44ac-8f78-f2b1cef2b430,LIST_TRANSACTIONS,xs2aListTransactions,true 31314,4d5f7f69-de84-44ac-8f78-f2b1cef2b430,AUTHORIZATION,,true 31315,4d5f7f69-de84-44ac-8f78-f2b1cef2b430,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31316,4d5f7f69-de84-44ac-8f78-f2b1cef2b430,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31317,4d5f7f69-de84-44ac-8f78-f2b1cef2b430,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31318,86bb6dfa-b786-44b8-967a-963de50d2964,LIST_ACCOUNTS,hbciListAccounts,false -31319,86bb6dfa-b786-44b8-967a-963de50d2964,LIST_TRANSACTIONS,hbciListTransactions,false -31320,86bb6dfa-b786-44b8-967a-963de50d2964,AUTHORIZATION,,false -31321,86bb6dfa-b786-44b8-967a-963de50d2964,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31322,86bb6dfa-b786-44b8-967a-963de50d2964,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31323,86bb6dfa-b786-44b8-967a-963de50d2964,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31318,b03c693d-6af7-464f-9ad5-ab5cd4fb2327,LIST_ACCOUNTS,hbciListAccounts,false +31319,b03c693d-6af7-464f-9ad5-ab5cd4fb2327,LIST_TRANSACTIONS,hbciListTransactions,false +31320,b03c693d-6af7-464f-9ad5-ab5cd4fb2327,AUTHORIZATION,,false +31321,b03c693d-6af7-464f-9ad5-ab5cd4fb2327,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31322,b03c693d-6af7-464f-9ad5-ab5cd4fb2327,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31323,b03c693d-6af7-464f-9ad5-ab5cd4fb2327,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31324,ec20cdb7-7cfc-4dd2-83ab-828a158c12c8,LIST_ACCOUNTS,xs2aListAccounts,true -31325,ec20cdb7-7cfc-4dd2-83ab-828a158c12c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31325,ec20cdb7-7cfc-4dd2-83ab-828a158c12c8,LIST_TRANSACTIONS,xs2aListTransactions,true 31326,ec20cdb7-7cfc-4dd2-83ab-828a158c12c8,AUTHORIZATION,,true 31327,ec20cdb7-7cfc-4dd2-83ab-828a158c12c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31328,ec20cdb7-7cfc-4dd2-83ab-828a158c12c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31329,ec20cdb7-7cfc-4dd2-83ab-828a158c12c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31330,4f915293-bbf8-462c-ba5a-8f1da43ea5d8,LIST_ACCOUNTS,hbciListAccounts,false -31331,4f915293-bbf8-462c-ba5a-8f1da43ea5d8,LIST_TRANSACTIONS,hbciListTransactions,false -31332,4f915293-bbf8-462c-ba5a-8f1da43ea5d8,AUTHORIZATION,,false -31333,4f915293-bbf8-462c-ba5a-8f1da43ea5d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31334,4f915293-bbf8-462c-ba5a-8f1da43ea5d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31335,4f915293-bbf8-462c-ba5a-8f1da43ea5d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31330,cc85c906-f79a-498f-a64e-8018e3076289,LIST_ACCOUNTS,hbciListAccounts,false +31331,cc85c906-f79a-498f-a64e-8018e3076289,LIST_TRANSACTIONS,hbciListTransactions,false +31332,cc85c906-f79a-498f-a64e-8018e3076289,AUTHORIZATION,,false +31333,cc85c906-f79a-498f-a64e-8018e3076289,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31334,cc85c906-f79a-498f-a64e-8018e3076289,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31335,cc85c906-f79a-498f-a64e-8018e3076289,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31336,983504cb-f68a-460e-8e71-fc71f41d7a07,LIST_ACCOUNTS,xs2aListAccounts,true -31337,983504cb-f68a-460e-8e71-fc71f41d7a07,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31337,983504cb-f68a-460e-8e71-fc71f41d7a07,LIST_TRANSACTIONS,xs2aListTransactions,true 31338,983504cb-f68a-460e-8e71-fc71f41d7a07,AUTHORIZATION,,true 31339,983504cb-f68a-460e-8e71-fc71f41d7a07,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31340,983504cb-f68a-460e-8e71-fc71f41d7a07,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31341,983504cb-f68a-460e-8e71-fc71f41d7a07,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31342,5287c855-f0a9-47c8-9071-a54462bda59f,LIST_ACCOUNTS,hbciListAccounts,false -31343,5287c855-f0a9-47c8-9071-a54462bda59f,LIST_TRANSACTIONS,hbciListTransactions,false -31344,5287c855-f0a9-47c8-9071-a54462bda59f,AUTHORIZATION,,false -31345,5287c855-f0a9-47c8-9071-a54462bda59f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31346,5287c855-f0a9-47c8-9071-a54462bda59f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31347,5287c855-f0a9-47c8-9071-a54462bda59f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31342,dc95c978-0d32-4b46-b130-d6e689458ccf,LIST_ACCOUNTS,hbciListAccounts,false +31343,dc95c978-0d32-4b46-b130-d6e689458ccf,LIST_TRANSACTIONS,hbciListTransactions,false +31344,dc95c978-0d32-4b46-b130-d6e689458ccf,AUTHORIZATION,,false +31345,dc95c978-0d32-4b46-b130-d6e689458ccf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31346,dc95c978-0d32-4b46-b130-d6e689458ccf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31347,dc95c978-0d32-4b46-b130-d6e689458ccf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31348,0d1fc7e4-f7f2-468b-b519-0b40a9066d77,LIST_ACCOUNTS,xs2aListAccounts,true -31349,0d1fc7e4-f7f2-468b-b519-0b40a9066d77,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31349,0d1fc7e4-f7f2-468b-b519-0b40a9066d77,LIST_TRANSACTIONS,xs2aListTransactions,true 31350,0d1fc7e4-f7f2-468b-b519-0b40a9066d77,AUTHORIZATION,,true 31351,0d1fc7e4-f7f2-468b-b519-0b40a9066d77,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31352,0d1fc7e4-f7f2-468b-b519-0b40a9066d77,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31353,0d1fc7e4-f7f2-468b-b519-0b40a9066d77,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31354,38925ad6-7ad0-46c3-a3f9-a3c6876e0142,LIST_ACCOUNTS,hbciListAccounts,false -31355,38925ad6-7ad0-46c3-a3f9-a3c6876e0142,LIST_TRANSACTIONS,hbciListTransactions,false -31356,38925ad6-7ad0-46c3-a3f9-a3c6876e0142,AUTHORIZATION,,false -31357,38925ad6-7ad0-46c3-a3f9-a3c6876e0142,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31358,38925ad6-7ad0-46c3-a3f9-a3c6876e0142,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31359,38925ad6-7ad0-46c3-a3f9-a3c6876e0142,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31354,fda18f46-4b08-407b-9071-d4838695c5b8,LIST_ACCOUNTS,hbciListAccounts,false +31355,fda18f46-4b08-407b-9071-d4838695c5b8,LIST_TRANSACTIONS,hbciListTransactions,false +31356,fda18f46-4b08-407b-9071-d4838695c5b8,AUTHORIZATION,,false +31357,fda18f46-4b08-407b-9071-d4838695c5b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31358,fda18f46-4b08-407b-9071-d4838695c5b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31359,fda18f46-4b08-407b-9071-d4838695c5b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31360,3a9016c7-b541-431b-964d-ac19307759ca,LIST_ACCOUNTS,xs2aListAccounts,true -31361,3a9016c7-b541-431b-964d-ac19307759ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31361,3a9016c7-b541-431b-964d-ac19307759ca,LIST_TRANSACTIONS,xs2aListTransactions,true 31362,3a9016c7-b541-431b-964d-ac19307759ca,AUTHORIZATION,,true 31363,3a9016c7-b541-431b-964d-ac19307759ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31364,3a9016c7-b541-431b-964d-ac19307759ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31365,3a9016c7-b541-431b-964d-ac19307759ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31366,9a908268-db58-4d93-b07c-ee50b44d5bc9,LIST_ACCOUNTS,hbciListAccounts,false -31367,9a908268-db58-4d93-b07c-ee50b44d5bc9,LIST_TRANSACTIONS,hbciListTransactions,false -31368,9a908268-db58-4d93-b07c-ee50b44d5bc9,AUTHORIZATION,,false -31369,9a908268-db58-4d93-b07c-ee50b44d5bc9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31370,9a908268-db58-4d93-b07c-ee50b44d5bc9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31371,9a908268-db58-4d93-b07c-ee50b44d5bc9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31366,acaf8614-5c20-4eff-9b33-db75223979b1,LIST_ACCOUNTS,hbciListAccounts,false +31367,acaf8614-5c20-4eff-9b33-db75223979b1,LIST_TRANSACTIONS,hbciListTransactions,false +31368,acaf8614-5c20-4eff-9b33-db75223979b1,AUTHORIZATION,,false +31369,acaf8614-5c20-4eff-9b33-db75223979b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31370,acaf8614-5c20-4eff-9b33-db75223979b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31371,acaf8614-5c20-4eff-9b33-db75223979b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31372,84966f77-bc94-4022-a3b1-741e2fa2999a,LIST_ACCOUNTS,xs2aListAccounts,true -31373,84966f77-bc94-4022-a3b1-741e2fa2999a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31373,84966f77-bc94-4022-a3b1-741e2fa2999a,LIST_TRANSACTIONS,xs2aListTransactions,true 31374,84966f77-bc94-4022-a3b1-741e2fa2999a,AUTHORIZATION,,true 31375,84966f77-bc94-4022-a3b1-741e2fa2999a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31376,84966f77-bc94-4022-a3b1-741e2fa2999a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31377,84966f77-bc94-4022-a3b1-741e2fa2999a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31378,1dce9ba0-bdb5-4ff7-8789-15a876a88658,LIST_ACCOUNTS,hbciListAccounts,false -31379,1dce9ba0-bdb5-4ff7-8789-15a876a88658,LIST_TRANSACTIONS,hbciListTransactions,false -31380,1dce9ba0-bdb5-4ff7-8789-15a876a88658,AUTHORIZATION,,false -31381,1dce9ba0-bdb5-4ff7-8789-15a876a88658,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31382,1dce9ba0-bdb5-4ff7-8789-15a876a88658,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31383,1dce9ba0-bdb5-4ff7-8789-15a876a88658,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31378,634de065-a503-437e-86f3-2f0a62f62abe,LIST_ACCOUNTS,hbciListAccounts,false +31379,634de065-a503-437e-86f3-2f0a62f62abe,LIST_TRANSACTIONS,hbciListTransactions,false +31380,634de065-a503-437e-86f3-2f0a62f62abe,AUTHORIZATION,,false +31381,634de065-a503-437e-86f3-2f0a62f62abe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31382,634de065-a503-437e-86f3-2f0a62f62abe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31383,634de065-a503-437e-86f3-2f0a62f62abe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31384,0175f055-3b28-49c3-b8f7-6471ceea76c6,LIST_ACCOUNTS,xs2aListAccounts,true -31385,0175f055-3b28-49c3-b8f7-6471ceea76c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31385,0175f055-3b28-49c3-b8f7-6471ceea76c6,LIST_TRANSACTIONS,xs2aListTransactions,true 31386,0175f055-3b28-49c3-b8f7-6471ceea76c6,AUTHORIZATION,,true 31387,0175f055-3b28-49c3-b8f7-6471ceea76c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31388,0175f055-3b28-49c3-b8f7-6471ceea76c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31389,0175f055-3b28-49c3-b8f7-6471ceea76c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31390,69760075-3785-4a9b-b1dc-241a9a9b2959,LIST_ACCOUNTS,hbciListAccounts,false -31391,69760075-3785-4a9b-b1dc-241a9a9b2959,LIST_TRANSACTIONS,hbciListTransactions,false -31392,69760075-3785-4a9b-b1dc-241a9a9b2959,AUTHORIZATION,,false -31393,69760075-3785-4a9b-b1dc-241a9a9b2959,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31394,69760075-3785-4a9b-b1dc-241a9a9b2959,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31395,69760075-3785-4a9b-b1dc-241a9a9b2959,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31390,6315409b-e9ca-4315-aa1a-b647892cd450,LIST_ACCOUNTS,hbciListAccounts,false +31391,6315409b-e9ca-4315-aa1a-b647892cd450,LIST_TRANSACTIONS,hbciListTransactions,false +31392,6315409b-e9ca-4315-aa1a-b647892cd450,AUTHORIZATION,,false +31393,6315409b-e9ca-4315-aa1a-b647892cd450,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31394,6315409b-e9ca-4315-aa1a-b647892cd450,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31395,6315409b-e9ca-4315-aa1a-b647892cd450,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31396,0cdca1aa-15bf-4dd1-b666-eebc8d5cf6c8,LIST_ACCOUNTS,xs2aListAccounts,true -31397,0cdca1aa-15bf-4dd1-b666-eebc8d5cf6c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31397,0cdca1aa-15bf-4dd1-b666-eebc8d5cf6c8,LIST_TRANSACTIONS,xs2aListTransactions,true 31398,0cdca1aa-15bf-4dd1-b666-eebc8d5cf6c8,AUTHORIZATION,,true 31399,0cdca1aa-15bf-4dd1-b666-eebc8d5cf6c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31400,0cdca1aa-15bf-4dd1-b666-eebc8d5cf6c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31401,0cdca1aa-15bf-4dd1-b666-eebc8d5cf6c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31402,b28c401a-f22b-4848-8984-021c1c947eca,LIST_ACCOUNTS,hbciListAccounts,false -31403,b28c401a-f22b-4848-8984-021c1c947eca,LIST_TRANSACTIONS,hbciListTransactions,false -31404,b28c401a-f22b-4848-8984-021c1c947eca,AUTHORIZATION,,false -31405,b28c401a-f22b-4848-8984-021c1c947eca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31406,b28c401a-f22b-4848-8984-021c1c947eca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31407,b28c401a-f22b-4848-8984-021c1c947eca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31402,12900920-8ef1-4a0e-ac91-a17bc827ccc8,LIST_ACCOUNTS,hbciListAccounts,false +31403,12900920-8ef1-4a0e-ac91-a17bc827ccc8,LIST_TRANSACTIONS,hbciListTransactions,false +31404,12900920-8ef1-4a0e-ac91-a17bc827ccc8,AUTHORIZATION,,false +31405,12900920-8ef1-4a0e-ac91-a17bc827ccc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31406,12900920-8ef1-4a0e-ac91-a17bc827ccc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31407,12900920-8ef1-4a0e-ac91-a17bc827ccc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31408,f6dfb2bc-3c48-46de-a9b4-70a27cb306f3,LIST_ACCOUNTS,xs2aListAccounts,true -31409,f6dfb2bc-3c48-46de-a9b4-70a27cb306f3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31409,f6dfb2bc-3c48-46de-a9b4-70a27cb306f3,LIST_TRANSACTIONS,xs2aListTransactions,true 31410,f6dfb2bc-3c48-46de-a9b4-70a27cb306f3,AUTHORIZATION,,true 31411,f6dfb2bc-3c48-46de-a9b4-70a27cb306f3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31412,f6dfb2bc-3c48-46de-a9b4-70a27cb306f3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31413,f6dfb2bc-3c48-46de-a9b4-70a27cb306f3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31414,a220e46c-ed1b-4d81-baba-28835dacbde0,LIST_ACCOUNTS,hbciListAccounts,false -31415,a220e46c-ed1b-4d81-baba-28835dacbde0,LIST_TRANSACTIONS,hbciListTransactions,false -31416,a220e46c-ed1b-4d81-baba-28835dacbde0,AUTHORIZATION,,false -31417,a220e46c-ed1b-4d81-baba-28835dacbde0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31418,a220e46c-ed1b-4d81-baba-28835dacbde0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31419,a220e46c-ed1b-4d81-baba-28835dacbde0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31414,017c090e-839c-4e7b-aad5-4397459b98ef,LIST_ACCOUNTS,hbciListAccounts,false +31415,017c090e-839c-4e7b-aad5-4397459b98ef,LIST_TRANSACTIONS,hbciListTransactions,false +31416,017c090e-839c-4e7b-aad5-4397459b98ef,AUTHORIZATION,,false +31417,017c090e-839c-4e7b-aad5-4397459b98ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31418,017c090e-839c-4e7b-aad5-4397459b98ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31419,017c090e-839c-4e7b-aad5-4397459b98ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31420,48bec337-0fd0-41ce-9ab1-056fbc9b4f86,LIST_ACCOUNTS,xs2aListAccounts,true -31421,48bec337-0fd0-41ce-9ab1-056fbc9b4f86,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31421,48bec337-0fd0-41ce-9ab1-056fbc9b4f86,LIST_TRANSACTIONS,xs2aListTransactions,true 31422,48bec337-0fd0-41ce-9ab1-056fbc9b4f86,AUTHORIZATION,,true 31423,48bec337-0fd0-41ce-9ab1-056fbc9b4f86,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31424,48bec337-0fd0-41ce-9ab1-056fbc9b4f86,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31425,48bec337-0fd0-41ce-9ab1-056fbc9b4f86,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31426,7920fb64-4642-49bf-b4b4-9888f361e686,LIST_ACCOUNTS,hbciListAccounts,false -31427,7920fb64-4642-49bf-b4b4-9888f361e686,LIST_TRANSACTIONS,hbciListTransactions,false -31428,7920fb64-4642-49bf-b4b4-9888f361e686,AUTHORIZATION,,false -31429,7920fb64-4642-49bf-b4b4-9888f361e686,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31430,7920fb64-4642-49bf-b4b4-9888f361e686,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31431,7920fb64-4642-49bf-b4b4-9888f361e686,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31426,ed8c146d-cf00-4f8b-a55b-a23df942d970,LIST_ACCOUNTS,hbciListAccounts,false +31427,ed8c146d-cf00-4f8b-a55b-a23df942d970,LIST_TRANSACTIONS,hbciListTransactions,false +31428,ed8c146d-cf00-4f8b-a55b-a23df942d970,AUTHORIZATION,,false +31429,ed8c146d-cf00-4f8b-a55b-a23df942d970,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31430,ed8c146d-cf00-4f8b-a55b-a23df942d970,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31431,ed8c146d-cf00-4f8b-a55b-a23df942d970,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31432,341b4b63-d694-4a82-b15f-a36a7aff79c0,LIST_ACCOUNTS,xs2aListAccounts,true -31433,341b4b63-d694-4a82-b15f-a36a7aff79c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31433,341b4b63-d694-4a82-b15f-a36a7aff79c0,LIST_TRANSACTIONS,xs2aListTransactions,true 31434,341b4b63-d694-4a82-b15f-a36a7aff79c0,AUTHORIZATION,,true 31435,341b4b63-d694-4a82-b15f-a36a7aff79c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31436,341b4b63-d694-4a82-b15f-a36a7aff79c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31437,341b4b63-d694-4a82-b15f-a36a7aff79c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31438,6aa382d9-144f-400e-ba26-7e8174a0bbb7,LIST_ACCOUNTS,hbciListAccounts,false -31439,6aa382d9-144f-400e-ba26-7e8174a0bbb7,LIST_TRANSACTIONS,hbciListTransactions,false -31440,6aa382d9-144f-400e-ba26-7e8174a0bbb7,AUTHORIZATION,,false -31441,6aa382d9-144f-400e-ba26-7e8174a0bbb7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31442,6aa382d9-144f-400e-ba26-7e8174a0bbb7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31443,6aa382d9-144f-400e-ba26-7e8174a0bbb7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31438,99b5badb-26b5-4c8c-a1b3-5d278802cf6f,LIST_ACCOUNTS,hbciListAccounts,false +31439,99b5badb-26b5-4c8c-a1b3-5d278802cf6f,LIST_TRANSACTIONS,hbciListTransactions,false +31440,99b5badb-26b5-4c8c-a1b3-5d278802cf6f,AUTHORIZATION,,false +31441,99b5badb-26b5-4c8c-a1b3-5d278802cf6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31442,99b5badb-26b5-4c8c-a1b3-5d278802cf6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31443,99b5badb-26b5-4c8c-a1b3-5d278802cf6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31444,3e7b6cc6-61e6-4497-8be5-04d6bc7d1e34,LIST_ACCOUNTS,xs2aListAccounts,true -31445,3e7b6cc6-61e6-4497-8be5-04d6bc7d1e34,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31445,3e7b6cc6-61e6-4497-8be5-04d6bc7d1e34,LIST_TRANSACTIONS,xs2aListTransactions,true 31446,3e7b6cc6-61e6-4497-8be5-04d6bc7d1e34,AUTHORIZATION,,true 31447,3e7b6cc6-61e6-4497-8be5-04d6bc7d1e34,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31448,3e7b6cc6-61e6-4497-8be5-04d6bc7d1e34,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31449,3e7b6cc6-61e6-4497-8be5-04d6bc7d1e34,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31450,769b9e9d-400a-4ba4-8ec8-a3a3e957679c,LIST_ACCOUNTS,hbciListAccounts,false -31451,769b9e9d-400a-4ba4-8ec8-a3a3e957679c,LIST_TRANSACTIONS,hbciListTransactions,false -31452,769b9e9d-400a-4ba4-8ec8-a3a3e957679c,AUTHORIZATION,,false -31453,769b9e9d-400a-4ba4-8ec8-a3a3e957679c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31454,769b9e9d-400a-4ba4-8ec8-a3a3e957679c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31455,769b9e9d-400a-4ba4-8ec8-a3a3e957679c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31450,42f82512-03ad-42f3-91fa-dd6349c70242,LIST_ACCOUNTS,hbciListAccounts,false +31451,42f82512-03ad-42f3-91fa-dd6349c70242,LIST_TRANSACTIONS,hbciListTransactions,false +31452,42f82512-03ad-42f3-91fa-dd6349c70242,AUTHORIZATION,,false +31453,42f82512-03ad-42f3-91fa-dd6349c70242,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31454,42f82512-03ad-42f3-91fa-dd6349c70242,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31455,42f82512-03ad-42f3-91fa-dd6349c70242,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31456,e65d50ad-ba82-482e-a8c4-3b3072cf6402,LIST_ACCOUNTS,xs2aListAccounts,true -31457,e65d50ad-ba82-482e-a8c4-3b3072cf6402,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31457,e65d50ad-ba82-482e-a8c4-3b3072cf6402,LIST_TRANSACTIONS,xs2aListTransactions,true 31458,e65d50ad-ba82-482e-a8c4-3b3072cf6402,AUTHORIZATION,,true 31459,e65d50ad-ba82-482e-a8c4-3b3072cf6402,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31460,e65d50ad-ba82-482e-a8c4-3b3072cf6402,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31461,e65d50ad-ba82-482e-a8c4-3b3072cf6402,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31462,e44a08dd-5cdb-4299-8e12-80218867b77b,LIST_ACCOUNTS,hbciListAccounts,false -31463,e44a08dd-5cdb-4299-8e12-80218867b77b,LIST_TRANSACTIONS,hbciListTransactions,false -31464,e44a08dd-5cdb-4299-8e12-80218867b77b,AUTHORIZATION,,false -31465,e44a08dd-5cdb-4299-8e12-80218867b77b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31466,e44a08dd-5cdb-4299-8e12-80218867b77b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31467,e44a08dd-5cdb-4299-8e12-80218867b77b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31462,7cfde43b-bff5-4c3a-b97d-2f0689a7399f,LIST_ACCOUNTS,hbciListAccounts,false +31463,7cfde43b-bff5-4c3a-b97d-2f0689a7399f,LIST_TRANSACTIONS,hbciListTransactions,false +31464,7cfde43b-bff5-4c3a-b97d-2f0689a7399f,AUTHORIZATION,,false +31465,7cfde43b-bff5-4c3a-b97d-2f0689a7399f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31466,7cfde43b-bff5-4c3a-b97d-2f0689a7399f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31467,7cfde43b-bff5-4c3a-b97d-2f0689a7399f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31468,d91b302d-4e8d-478c-98c6-ae136ace56cd,LIST_ACCOUNTS,xs2aListAccounts,true -31469,d91b302d-4e8d-478c-98c6-ae136ace56cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31469,d91b302d-4e8d-478c-98c6-ae136ace56cd,LIST_TRANSACTIONS,xs2aListTransactions,true 31470,d91b302d-4e8d-478c-98c6-ae136ace56cd,AUTHORIZATION,,true 31471,d91b302d-4e8d-478c-98c6-ae136ace56cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31472,d91b302d-4e8d-478c-98c6-ae136ace56cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31473,d91b302d-4e8d-478c-98c6-ae136ace56cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31474,f142c2f9-dc68-45a3-a575-2b6243b92900,LIST_ACCOUNTS,hbciListAccounts,false -31475,f142c2f9-dc68-45a3-a575-2b6243b92900,LIST_TRANSACTIONS,hbciListTransactions,false -31476,f142c2f9-dc68-45a3-a575-2b6243b92900,AUTHORIZATION,,false -31477,f142c2f9-dc68-45a3-a575-2b6243b92900,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31478,f142c2f9-dc68-45a3-a575-2b6243b92900,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31479,f142c2f9-dc68-45a3-a575-2b6243b92900,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31474,652000ef-1b0e-4199-b48c-c5be5c311ba1,LIST_ACCOUNTS,hbciListAccounts,false +31475,652000ef-1b0e-4199-b48c-c5be5c311ba1,LIST_TRANSACTIONS,hbciListTransactions,false +31476,652000ef-1b0e-4199-b48c-c5be5c311ba1,AUTHORIZATION,,false +31477,652000ef-1b0e-4199-b48c-c5be5c311ba1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31478,652000ef-1b0e-4199-b48c-c5be5c311ba1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31479,652000ef-1b0e-4199-b48c-c5be5c311ba1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31480,e6c98454-b836-41f4-aa4e-c79ec53ece10,LIST_ACCOUNTS,xs2aListAccounts,true -31481,e6c98454-b836-41f4-aa4e-c79ec53ece10,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31481,e6c98454-b836-41f4-aa4e-c79ec53ece10,LIST_TRANSACTIONS,xs2aListTransactions,true 31482,e6c98454-b836-41f4-aa4e-c79ec53ece10,AUTHORIZATION,,true 31483,e6c98454-b836-41f4-aa4e-c79ec53ece10,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31484,e6c98454-b836-41f4-aa4e-c79ec53ece10,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31485,e6c98454-b836-41f4-aa4e-c79ec53ece10,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31486,74b710fc-6a12-4198-ad86-2bb17c553708,LIST_ACCOUNTS,hbciListAccounts,false -31487,74b710fc-6a12-4198-ad86-2bb17c553708,LIST_TRANSACTIONS,hbciListTransactions,false -31488,74b710fc-6a12-4198-ad86-2bb17c553708,AUTHORIZATION,,false -31489,74b710fc-6a12-4198-ad86-2bb17c553708,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31490,74b710fc-6a12-4198-ad86-2bb17c553708,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31491,74b710fc-6a12-4198-ad86-2bb17c553708,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31486,86f680b7-27dd-4754-a12c-f1eae9b80106,LIST_ACCOUNTS,hbciListAccounts,false +31487,86f680b7-27dd-4754-a12c-f1eae9b80106,LIST_TRANSACTIONS,hbciListTransactions,false +31488,86f680b7-27dd-4754-a12c-f1eae9b80106,AUTHORIZATION,,false +31489,86f680b7-27dd-4754-a12c-f1eae9b80106,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31490,86f680b7-27dd-4754-a12c-f1eae9b80106,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31491,86f680b7-27dd-4754-a12c-f1eae9b80106,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31492,15a255d2-1446-45c6-a8f2-9fd8b7daefe4,LIST_ACCOUNTS,xs2aListAccounts,true -31493,15a255d2-1446-45c6-a8f2-9fd8b7daefe4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31493,15a255d2-1446-45c6-a8f2-9fd8b7daefe4,LIST_TRANSACTIONS,xs2aListTransactions,true 31494,15a255d2-1446-45c6-a8f2-9fd8b7daefe4,AUTHORIZATION,,true 31495,15a255d2-1446-45c6-a8f2-9fd8b7daefe4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31496,15a255d2-1446-45c6-a8f2-9fd8b7daefe4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31497,15a255d2-1446-45c6-a8f2-9fd8b7daefe4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31498,73793ca3-c633-47ea-abb8-75db1b84c8a4,LIST_ACCOUNTS,hbciListAccounts,false -31499,73793ca3-c633-47ea-abb8-75db1b84c8a4,LIST_TRANSACTIONS,hbciListTransactions,false -31500,73793ca3-c633-47ea-abb8-75db1b84c8a4,AUTHORIZATION,,false -31501,73793ca3-c633-47ea-abb8-75db1b84c8a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31502,73793ca3-c633-47ea-abb8-75db1b84c8a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31503,73793ca3-c633-47ea-abb8-75db1b84c8a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31498,62760854-82cc-4ae3-af41-db13e8e093d9,LIST_ACCOUNTS,hbciListAccounts,false +31499,62760854-82cc-4ae3-af41-db13e8e093d9,LIST_TRANSACTIONS,hbciListTransactions,false +31500,62760854-82cc-4ae3-af41-db13e8e093d9,AUTHORIZATION,,false +31501,62760854-82cc-4ae3-af41-db13e8e093d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31502,62760854-82cc-4ae3-af41-db13e8e093d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31503,62760854-82cc-4ae3-af41-db13e8e093d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31504,f0e0f232-fdd3-4a6d-aa3c-0d455d90ff59,LIST_ACCOUNTS,xs2aListAccounts,true -31505,f0e0f232-fdd3-4a6d-aa3c-0d455d90ff59,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31505,f0e0f232-fdd3-4a6d-aa3c-0d455d90ff59,LIST_TRANSACTIONS,xs2aListTransactions,true 31506,f0e0f232-fdd3-4a6d-aa3c-0d455d90ff59,AUTHORIZATION,,true 31507,f0e0f232-fdd3-4a6d-aa3c-0d455d90ff59,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31508,f0e0f232-fdd3-4a6d-aa3c-0d455d90ff59,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31509,f0e0f232-fdd3-4a6d-aa3c-0d455d90ff59,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31510,798cf375-7d2e-4ed2-b3b7-624aededfabe,LIST_ACCOUNTS,hbciListAccounts,false -31511,798cf375-7d2e-4ed2-b3b7-624aededfabe,LIST_TRANSACTIONS,hbciListTransactions,false -31512,798cf375-7d2e-4ed2-b3b7-624aededfabe,AUTHORIZATION,,false -31513,798cf375-7d2e-4ed2-b3b7-624aededfabe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31514,798cf375-7d2e-4ed2-b3b7-624aededfabe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31515,798cf375-7d2e-4ed2-b3b7-624aededfabe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31510,6e1ec06e-5115-442d-bb73-07a8ca9d9c98,LIST_ACCOUNTS,hbciListAccounts,false +31511,6e1ec06e-5115-442d-bb73-07a8ca9d9c98,LIST_TRANSACTIONS,hbciListTransactions,false +31512,6e1ec06e-5115-442d-bb73-07a8ca9d9c98,AUTHORIZATION,,false +31513,6e1ec06e-5115-442d-bb73-07a8ca9d9c98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31514,6e1ec06e-5115-442d-bb73-07a8ca9d9c98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31515,6e1ec06e-5115-442d-bb73-07a8ca9d9c98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31516,a54170dc-7003-4809-b2a3-a8221c444e8c,LIST_ACCOUNTS,xs2aListAccounts,true -31517,a54170dc-7003-4809-b2a3-a8221c444e8c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31517,a54170dc-7003-4809-b2a3-a8221c444e8c,LIST_TRANSACTIONS,xs2aListTransactions,true 31518,a54170dc-7003-4809-b2a3-a8221c444e8c,AUTHORIZATION,,true 31519,a54170dc-7003-4809-b2a3-a8221c444e8c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31520,a54170dc-7003-4809-b2a3-a8221c444e8c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31521,a54170dc-7003-4809-b2a3-a8221c444e8c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31522,2bba0763-3178-4057-af31-f9528e43d247,LIST_ACCOUNTS,hbciListAccounts,false -31523,2bba0763-3178-4057-af31-f9528e43d247,LIST_TRANSACTIONS,hbciListTransactions,false -31524,2bba0763-3178-4057-af31-f9528e43d247,AUTHORIZATION,,false -31525,2bba0763-3178-4057-af31-f9528e43d247,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31526,2bba0763-3178-4057-af31-f9528e43d247,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31527,2bba0763-3178-4057-af31-f9528e43d247,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31522,51e3bef5-219b-4ca6-9b16-021867d3d978,LIST_ACCOUNTS,hbciListAccounts,false +31523,51e3bef5-219b-4ca6-9b16-021867d3d978,LIST_TRANSACTIONS,hbciListTransactions,false +31524,51e3bef5-219b-4ca6-9b16-021867d3d978,AUTHORIZATION,,false +31525,51e3bef5-219b-4ca6-9b16-021867d3d978,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31526,51e3bef5-219b-4ca6-9b16-021867d3d978,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31527,51e3bef5-219b-4ca6-9b16-021867d3d978,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31528,abb300af-2625-4932-b6bc-2a0c18f22be1,LIST_ACCOUNTS,xs2aListAccounts,true -31529,abb300af-2625-4932-b6bc-2a0c18f22be1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31529,abb300af-2625-4932-b6bc-2a0c18f22be1,LIST_TRANSACTIONS,xs2aListTransactions,true 31530,abb300af-2625-4932-b6bc-2a0c18f22be1,AUTHORIZATION,,true 31531,abb300af-2625-4932-b6bc-2a0c18f22be1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31532,abb300af-2625-4932-b6bc-2a0c18f22be1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31533,abb300af-2625-4932-b6bc-2a0c18f22be1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31534,255c3c4c-8640-4475-b809-c0d232a39066,LIST_ACCOUNTS,hbciListAccounts,false -31535,255c3c4c-8640-4475-b809-c0d232a39066,LIST_TRANSACTIONS,hbciListTransactions,false -31536,255c3c4c-8640-4475-b809-c0d232a39066,AUTHORIZATION,,false -31537,255c3c4c-8640-4475-b809-c0d232a39066,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31538,255c3c4c-8640-4475-b809-c0d232a39066,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31539,255c3c4c-8640-4475-b809-c0d232a39066,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31534,d1984b5f-ace3-49f5-8b4b-2d7a948a1443,LIST_ACCOUNTS,hbciListAccounts,false +31535,d1984b5f-ace3-49f5-8b4b-2d7a948a1443,LIST_TRANSACTIONS,hbciListTransactions,false +31536,d1984b5f-ace3-49f5-8b4b-2d7a948a1443,AUTHORIZATION,,false +31537,d1984b5f-ace3-49f5-8b4b-2d7a948a1443,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31538,d1984b5f-ace3-49f5-8b4b-2d7a948a1443,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31539,d1984b5f-ace3-49f5-8b4b-2d7a948a1443,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31540,0bf518b3-43c2-46d8-9797-1cb174b51e73,LIST_ACCOUNTS,xs2aListAccounts,true -31541,0bf518b3-43c2-46d8-9797-1cb174b51e73,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31541,0bf518b3-43c2-46d8-9797-1cb174b51e73,LIST_TRANSACTIONS,xs2aListTransactions,true 31542,0bf518b3-43c2-46d8-9797-1cb174b51e73,AUTHORIZATION,,true 31543,0bf518b3-43c2-46d8-9797-1cb174b51e73,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31544,0bf518b3-43c2-46d8-9797-1cb174b51e73,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31545,0bf518b3-43c2-46d8-9797-1cb174b51e73,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31546,7fc07b6e-8375-4908-ae67-f38a89c74e57,LIST_ACCOUNTS,hbciListAccounts,false -31547,7fc07b6e-8375-4908-ae67-f38a89c74e57,LIST_TRANSACTIONS,hbciListTransactions,false -31548,7fc07b6e-8375-4908-ae67-f38a89c74e57,AUTHORIZATION,,false -31549,7fc07b6e-8375-4908-ae67-f38a89c74e57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31550,7fc07b6e-8375-4908-ae67-f38a89c74e57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31551,7fc07b6e-8375-4908-ae67-f38a89c74e57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31546,899a4fe5-b005-486c-8707-e74b697ae2c3,LIST_ACCOUNTS,hbciListAccounts,false +31547,899a4fe5-b005-486c-8707-e74b697ae2c3,LIST_TRANSACTIONS,hbciListTransactions,false +31548,899a4fe5-b005-486c-8707-e74b697ae2c3,AUTHORIZATION,,false +31549,899a4fe5-b005-486c-8707-e74b697ae2c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31550,899a4fe5-b005-486c-8707-e74b697ae2c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31551,899a4fe5-b005-486c-8707-e74b697ae2c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31552,f5e2f1f2-20a7-44c5-ad4b-b2cf4aae78a5,LIST_ACCOUNTS,xs2aListAccounts,true -31553,f5e2f1f2-20a7-44c5-ad4b-b2cf4aae78a5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31553,f5e2f1f2-20a7-44c5-ad4b-b2cf4aae78a5,LIST_TRANSACTIONS,xs2aListTransactions,true 31554,f5e2f1f2-20a7-44c5-ad4b-b2cf4aae78a5,AUTHORIZATION,,true 31555,f5e2f1f2-20a7-44c5-ad4b-b2cf4aae78a5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31556,f5e2f1f2-20a7-44c5-ad4b-b2cf4aae78a5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31557,f5e2f1f2-20a7-44c5-ad4b-b2cf4aae78a5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31558,252cc893-d9f0-4d32-97bf-584d7472208e,LIST_ACCOUNTS,hbciListAccounts,false -31559,252cc893-d9f0-4d32-97bf-584d7472208e,LIST_TRANSACTIONS,hbciListTransactions,false -31560,252cc893-d9f0-4d32-97bf-584d7472208e,AUTHORIZATION,,false -31561,252cc893-d9f0-4d32-97bf-584d7472208e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31562,252cc893-d9f0-4d32-97bf-584d7472208e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31563,252cc893-d9f0-4d32-97bf-584d7472208e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31558,0b38804f-5190-44c4-86db-7e219444cb75,LIST_ACCOUNTS,hbciListAccounts,false +31559,0b38804f-5190-44c4-86db-7e219444cb75,LIST_TRANSACTIONS,hbciListTransactions,false +31560,0b38804f-5190-44c4-86db-7e219444cb75,AUTHORIZATION,,false +31561,0b38804f-5190-44c4-86db-7e219444cb75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31562,0b38804f-5190-44c4-86db-7e219444cb75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31563,0b38804f-5190-44c4-86db-7e219444cb75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31564,2de0a865-d216-4f99-8342-9c1f1a1c82c7,LIST_ACCOUNTS,xs2aListAccounts,true -31565,2de0a865-d216-4f99-8342-9c1f1a1c82c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31565,2de0a865-d216-4f99-8342-9c1f1a1c82c7,LIST_TRANSACTIONS,xs2aListTransactions,true 31566,2de0a865-d216-4f99-8342-9c1f1a1c82c7,AUTHORIZATION,,true 31567,2de0a865-d216-4f99-8342-9c1f1a1c82c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31568,2de0a865-d216-4f99-8342-9c1f1a1c82c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31569,2de0a865-d216-4f99-8342-9c1f1a1c82c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31570,adcb21ba-0dd1-4f53-933d-cb2f55ce9556,LIST_ACCOUNTS,hbciListAccounts,false -31571,adcb21ba-0dd1-4f53-933d-cb2f55ce9556,LIST_TRANSACTIONS,hbciListTransactions,false -31572,adcb21ba-0dd1-4f53-933d-cb2f55ce9556,AUTHORIZATION,,false -31573,adcb21ba-0dd1-4f53-933d-cb2f55ce9556,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31574,adcb21ba-0dd1-4f53-933d-cb2f55ce9556,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31575,adcb21ba-0dd1-4f53-933d-cb2f55ce9556,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31570,cf766fcc-cc91-4f63-aefa-894106b24150,LIST_ACCOUNTS,hbciListAccounts,false +31571,cf766fcc-cc91-4f63-aefa-894106b24150,LIST_TRANSACTIONS,hbciListTransactions,false +31572,cf766fcc-cc91-4f63-aefa-894106b24150,AUTHORIZATION,,false +31573,cf766fcc-cc91-4f63-aefa-894106b24150,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31574,cf766fcc-cc91-4f63-aefa-894106b24150,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31575,cf766fcc-cc91-4f63-aefa-894106b24150,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31576,55250f00-14c6-48a4-9b02-8d31afe338c0,LIST_ACCOUNTS,xs2aListAccounts,true -31577,55250f00-14c6-48a4-9b02-8d31afe338c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31577,55250f00-14c6-48a4-9b02-8d31afe338c0,LIST_TRANSACTIONS,xs2aListTransactions,true 31578,55250f00-14c6-48a4-9b02-8d31afe338c0,AUTHORIZATION,,true 31579,55250f00-14c6-48a4-9b02-8d31afe338c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31580,55250f00-14c6-48a4-9b02-8d31afe338c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31581,55250f00-14c6-48a4-9b02-8d31afe338c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31582,38a56161-f02d-4410-82c7-e91adcd6fd2d,LIST_ACCOUNTS,hbciListAccounts,false -31583,38a56161-f02d-4410-82c7-e91adcd6fd2d,LIST_TRANSACTIONS,hbciListTransactions,false -31584,38a56161-f02d-4410-82c7-e91adcd6fd2d,AUTHORIZATION,,false -31585,38a56161-f02d-4410-82c7-e91adcd6fd2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31586,38a56161-f02d-4410-82c7-e91adcd6fd2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31587,38a56161-f02d-4410-82c7-e91adcd6fd2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31582,5f191db3-453b-40f3-83cc-36250f5047b7,LIST_ACCOUNTS,hbciListAccounts,false +31583,5f191db3-453b-40f3-83cc-36250f5047b7,LIST_TRANSACTIONS,hbciListTransactions,false +31584,5f191db3-453b-40f3-83cc-36250f5047b7,AUTHORIZATION,,false +31585,5f191db3-453b-40f3-83cc-36250f5047b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31586,5f191db3-453b-40f3-83cc-36250f5047b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31587,5f191db3-453b-40f3-83cc-36250f5047b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31588,ff39fe7a-651d-4fdd-82c3-f7f1d508e819,LIST_ACCOUNTS,xs2aListAccounts,true -31589,ff39fe7a-651d-4fdd-82c3-f7f1d508e819,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31589,ff39fe7a-651d-4fdd-82c3-f7f1d508e819,LIST_TRANSACTIONS,xs2aListTransactions,true 31590,ff39fe7a-651d-4fdd-82c3-f7f1d508e819,AUTHORIZATION,,true 31591,ff39fe7a-651d-4fdd-82c3-f7f1d508e819,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31592,ff39fe7a-651d-4fdd-82c3-f7f1d508e819,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31593,ff39fe7a-651d-4fdd-82c3-f7f1d508e819,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31594,ef311903-fa58-4755-b790-9ec02a11c3d7,LIST_ACCOUNTS,hbciListAccounts,false -31595,ef311903-fa58-4755-b790-9ec02a11c3d7,LIST_TRANSACTIONS,hbciListTransactions,false -31596,ef311903-fa58-4755-b790-9ec02a11c3d7,AUTHORIZATION,,false -31597,ef311903-fa58-4755-b790-9ec02a11c3d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31598,ef311903-fa58-4755-b790-9ec02a11c3d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31599,ef311903-fa58-4755-b790-9ec02a11c3d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31594,364ce1f4-b817-45a7-9f0c-b30f074bb12c,LIST_ACCOUNTS,hbciListAccounts,false +31595,364ce1f4-b817-45a7-9f0c-b30f074bb12c,LIST_TRANSACTIONS,hbciListTransactions,false +31596,364ce1f4-b817-45a7-9f0c-b30f074bb12c,AUTHORIZATION,,false +31597,364ce1f4-b817-45a7-9f0c-b30f074bb12c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31598,364ce1f4-b817-45a7-9f0c-b30f074bb12c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31599,364ce1f4-b817-45a7-9f0c-b30f074bb12c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31600,65867902-5c6f-4896-9db5-7a69e12664b2,LIST_ACCOUNTS,xs2aListAccounts,true -31601,65867902-5c6f-4896-9db5-7a69e12664b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31601,65867902-5c6f-4896-9db5-7a69e12664b2,LIST_TRANSACTIONS,xs2aListTransactions,true 31602,65867902-5c6f-4896-9db5-7a69e12664b2,AUTHORIZATION,,true 31603,65867902-5c6f-4896-9db5-7a69e12664b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31604,65867902-5c6f-4896-9db5-7a69e12664b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31605,65867902-5c6f-4896-9db5-7a69e12664b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31606,ed14c900-8f7a-491f-97a7-db694d74098e,LIST_ACCOUNTS,hbciListAccounts,false -31607,ed14c900-8f7a-491f-97a7-db694d74098e,LIST_TRANSACTIONS,hbciListTransactions,false -31608,ed14c900-8f7a-491f-97a7-db694d74098e,AUTHORIZATION,,false -31609,ed14c900-8f7a-491f-97a7-db694d74098e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31610,ed14c900-8f7a-491f-97a7-db694d74098e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31611,ed14c900-8f7a-491f-97a7-db694d74098e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31606,2a947183-6c2b-4e1e-8f08-680d64cb8ccf,LIST_ACCOUNTS,hbciListAccounts,false +31607,2a947183-6c2b-4e1e-8f08-680d64cb8ccf,LIST_TRANSACTIONS,hbciListTransactions,false +31608,2a947183-6c2b-4e1e-8f08-680d64cb8ccf,AUTHORIZATION,,false +31609,2a947183-6c2b-4e1e-8f08-680d64cb8ccf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31610,2a947183-6c2b-4e1e-8f08-680d64cb8ccf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31611,2a947183-6c2b-4e1e-8f08-680d64cb8ccf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31612,c3afd0e1-d89c-4d8f-8608-66c344dc5a2a,LIST_ACCOUNTS,xs2aListAccounts,true -31613,c3afd0e1-d89c-4d8f-8608-66c344dc5a2a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31613,c3afd0e1-d89c-4d8f-8608-66c344dc5a2a,LIST_TRANSACTIONS,xs2aListTransactions,true 31614,c3afd0e1-d89c-4d8f-8608-66c344dc5a2a,AUTHORIZATION,,true 31615,c3afd0e1-d89c-4d8f-8608-66c344dc5a2a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31616,c3afd0e1-d89c-4d8f-8608-66c344dc5a2a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31617,c3afd0e1-d89c-4d8f-8608-66c344dc5a2a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31618,46c051f3-f1b7-4cf7-b6ab-152cf54644b5,LIST_ACCOUNTS,hbciListAccounts,false -31619,46c051f3-f1b7-4cf7-b6ab-152cf54644b5,LIST_TRANSACTIONS,hbciListTransactions,false -31620,46c051f3-f1b7-4cf7-b6ab-152cf54644b5,AUTHORIZATION,,false -31621,46c051f3-f1b7-4cf7-b6ab-152cf54644b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31622,46c051f3-f1b7-4cf7-b6ab-152cf54644b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31623,46c051f3-f1b7-4cf7-b6ab-152cf54644b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31618,e9f25b2e-5eb5-4d15-8026-7bf358b7971d,LIST_ACCOUNTS,hbciListAccounts,false +31619,e9f25b2e-5eb5-4d15-8026-7bf358b7971d,LIST_TRANSACTIONS,hbciListTransactions,false +31620,e9f25b2e-5eb5-4d15-8026-7bf358b7971d,AUTHORIZATION,,false +31621,e9f25b2e-5eb5-4d15-8026-7bf358b7971d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31622,e9f25b2e-5eb5-4d15-8026-7bf358b7971d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31623,e9f25b2e-5eb5-4d15-8026-7bf358b7971d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31624,cd46b35f-7528-4fb1-b0d1-c26682061186,LIST_ACCOUNTS,xs2aListAccounts,true -31625,cd46b35f-7528-4fb1-b0d1-c26682061186,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31625,cd46b35f-7528-4fb1-b0d1-c26682061186,LIST_TRANSACTIONS,xs2aListTransactions,true 31626,cd46b35f-7528-4fb1-b0d1-c26682061186,AUTHORIZATION,,true 31627,cd46b35f-7528-4fb1-b0d1-c26682061186,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31628,cd46b35f-7528-4fb1-b0d1-c26682061186,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31629,cd46b35f-7528-4fb1-b0d1-c26682061186,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31630,70161e36-7663-4d13-8a7b-fb756e1db7d3,LIST_ACCOUNTS,hbciListAccounts,false -31631,70161e36-7663-4d13-8a7b-fb756e1db7d3,LIST_TRANSACTIONS,hbciListTransactions,false -31632,70161e36-7663-4d13-8a7b-fb756e1db7d3,AUTHORIZATION,,false -31633,70161e36-7663-4d13-8a7b-fb756e1db7d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31634,70161e36-7663-4d13-8a7b-fb756e1db7d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31635,70161e36-7663-4d13-8a7b-fb756e1db7d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31630,7545eeed-a926-439a-b244-bb305774b9d9,LIST_ACCOUNTS,hbciListAccounts,false +31631,7545eeed-a926-439a-b244-bb305774b9d9,LIST_TRANSACTIONS,hbciListTransactions,false +31632,7545eeed-a926-439a-b244-bb305774b9d9,AUTHORIZATION,,false +31633,7545eeed-a926-439a-b244-bb305774b9d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31634,7545eeed-a926-439a-b244-bb305774b9d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31635,7545eeed-a926-439a-b244-bb305774b9d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31636,7a07084c-5a15-43fb-ba91-1cb0b06cae93,LIST_ACCOUNTS,xs2aListAccounts,true -31637,7a07084c-5a15-43fb-ba91-1cb0b06cae93,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31637,7a07084c-5a15-43fb-ba91-1cb0b06cae93,LIST_TRANSACTIONS,xs2aListTransactions,true 31638,7a07084c-5a15-43fb-ba91-1cb0b06cae93,AUTHORIZATION,,true 31639,7a07084c-5a15-43fb-ba91-1cb0b06cae93,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31640,7a07084c-5a15-43fb-ba91-1cb0b06cae93,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31641,7a07084c-5a15-43fb-ba91-1cb0b06cae93,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31642,67063f53-9611-4fd6-b191-ebd32bcee002,LIST_ACCOUNTS,hbciListAccounts,false -31643,67063f53-9611-4fd6-b191-ebd32bcee002,LIST_TRANSACTIONS,hbciListTransactions,false -31644,67063f53-9611-4fd6-b191-ebd32bcee002,AUTHORIZATION,,false -31645,67063f53-9611-4fd6-b191-ebd32bcee002,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31646,67063f53-9611-4fd6-b191-ebd32bcee002,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31647,67063f53-9611-4fd6-b191-ebd32bcee002,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31642,5418e43a-49fa-44da-ae51-3c0fc899054b,LIST_ACCOUNTS,hbciListAccounts,false +31643,5418e43a-49fa-44da-ae51-3c0fc899054b,LIST_TRANSACTIONS,hbciListTransactions,false +31644,5418e43a-49fa-44da-ae51-3c0fc899054b,AUTHORIZATION,,false +31645,5418e43a-49fa-44da-ae51-3c0fc899054b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31646,5418e43a-49fa-44da-ae51-3c0fc899054b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31647,5418e43a-49fa-44da-ae51-3c0fc899054b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31648,9a4a190f-dbff-4e8f-bc7f-bd94a00424c0,LIST_ACCOUNTS,xs2aListAccounts,true -31649,9a4a190f-dbff-4e8f-bc7f-bd94a00424c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31649,9a4a190f-dbff-4e8f-bc7f-bd94a00424c0,LIST_TRANSACTIONS,xs2aListTransactions,true 31650,9a4a190f-dbff-4e8f-bc7f-bd94a00424c0,AUTHORIZATION,,true 31651,9a4a190f-dbff-4e8f-bc7f-bd94a00424c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31652,9a4a190f-dbff-4e8f-bc7f-bd94a00424c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31653,9a4a190f-dbff-4e8f-bc7f-bd94a00424c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31654,d5adf7bb-8ba2-4170-a441-3a88f5d9dfef,LIST_ACCOUNTS,hbciListAccounts,false -31655,d5adf7bb-8ba2-4170-a441-3a88f5d9dfef,LIST_TRANSACTIONS,hbciListTransactions,false -31656,d5adf7bb-8ba2-4170-a441-3a88f5d9dfef,AUTHORIZATION,,false -31657,d5adf7bb-8ba2-4170-a441-3a88f5d9dfef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31658,d5adf7bb-8ba2-4170-a441-3a88f5d9dfef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31659,d5adf7bb-8ba2-4170-a441-3a88f5d9dfef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31654,691307f5-63d4-4f12-92e2-44a543093040,LIST_ACCOUNTS,hbciListAccounts,false +31655,691307f5-63d4-4f12-92e2-44a543093040,LIST_TRANSACTIONS,hbciListTransactions,false +31656,691307f5-63d4-4f12-92e2-44a543093040,AUTHORIZATION,,false +31657,691307f5-63d4-4f12-92e2-44a543093040,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31658,691307f5-63d4-4f12-92e2-44a543093040,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31659,691307f5-63d4-4f12-92e2-44a543093040,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31660,3374a831-2b0d-4a53-9628-97cc94d2f26e,LIST_ACCOUNTS,xs2aListAccounts,true -31661,3374a831-2b0d-4a53-9628-97cc94d2f26e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31661,3374a831-2b0d-4a53-9628-97cc94d2f26e,LIST_TRANSACTIONS,xs2aListTransactions,true 31662,3374a831-2b0d-4a53-9628-97cc94d2f26e,AUTHORIZATION,,true 31663,3374a831-2b0d-4a53-9628-97cc94d2f26e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31664,3374a831-2b0d-4a53-9628-97cc94d2f26e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31665,3374a831-2b0d-4a53-9628-97cc94d2f26e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31666,5fc8d3e5-7204-4b16-b236-634d525ad237,LIST_ACCOUNTS,hbciListAccounts,false -31667,5fc8d3e5-7204-4b16-b236-634d525ad237,LIST_TRANSACTIONS,hbciListTransactions,false -31668,5fc8d3e5-7204-4b16-b236-634d525ad237,AUTHORIZATION,,false -31669,5fc8d3e5-7204-4b16-b236-634d525ad237,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31670,5fc8d3e5-7204-4b16-b236-634d525ad237,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31671,5fc8d3e5-7204-4b16-b236-634d525ad237,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31666,e1d12008-291a-4153-a35b-c244e330b05f,LIST_ACCOUNTS,hbciListAccounts,false +31667,e1d12008-291a-4153-a35b-c244e330b05f,LIST_TRANSACTIONS,hbciListTransactions,false +31668,e1d12008-291a-4153-a35b-c244e330b05f,AUTHORIZATION,,false +31669,e1d12008-291a-4153-a35b-c244e330b05f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31670,e1d12008-291a-4153-a35b-c244e330b05f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31671,e1d12008-291a-4153-a35b-c244e330b05f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31672,faaf9e82-ef16-4b25-a4c5-24be57733c8f,LIST_ACCOUNTS,xs2aListAccounts,true -31673,faaf9e82-ef16-4b25-a4c5-24be57733c8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31673,faaf9e82-ef16-4b25-a4c5-24be57733c8f,LIST_TRANSACTIONS,xs2aListTransactions,true 31674,faaf9e82-ef16-4b25-a4c5-24be57733c8f,AUTHORIZATION,,true 31675,faaf9e82-ef16-4b25-a4c5-24be57733c8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31676,faaf9e82-ef16-4b25-a4c5-24be57733c8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31677,faaf9e82-ef16-4b25-a4c5-24be57733c8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31678,0a44deb7-33ff-4bdf-8d01-627089403a6a,LIST_ACCOUNTS,hbciListAccounts,false -31679,0a44deb7-33ff-4bdf-8d01-627089403a6a,LIST_TRANSACTIONS,hbciListTransactions,false -31680,0a44deb7-33ff-4bdf-8d01-627089403a6a,AUTHORIZATION,,false -31681,0a44deb7-33ff-4bdf-8d01-627089403a6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31682,0a44deb7-33ff-4bdf-8d01-627089403a6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31683,0a44deb7-33ff-4bdf-8d01-627089403a6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31678,b4c14421-ed65-467d-9c30-b2a7c0d89e0b,LIST_ACCOUNTS,hbciListAccounts,false +31679,b4c14421-ed65-467d-9c30-b2a7c0d89e0b,LIST_TRANSACTIONS,hbciListTransactions,false +31680,b4c14421-ed65-467d-9c30-b2a7c0d89e0b,AUTHORIZATION,,false +31681,b4c14421-ed65-467d-9c30-b2a7c0d89e0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31682,b4c14421-ed65-467d-9c30-b2a7c0d89e0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31683,b4c14421-ed65-467d-9c30-b2a7c0d89e0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31684,65111395-9170-43e2-b0c1-d0ef7358a676,LIST_ACCOUNTS,xs2aListAccounts,true -31685,65111395-9170-43e2-b0c1-d0ef7358a676,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31685,65111395-9170-43e2-b0c1-d0ef7358a676,LIST_TRANSACTIONS,xs2aListTransactions,true 31686,65111395-9170-43e2-b0c1-d0ef7358a676,AUTHORIZATION,,true 31687,65111395-9170-43e2-b0c1-d0ef7358a676,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31688,65111395-9170-43e2-b0c1-d0ef7358a676,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31689,65111395-9170-43e2-b0c1-d0ef7358a676,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31690,e1a22955-5082-4795-9340-4357d3fdc5fc,LIST_ACCOUNTS,hbciListAccounts,false -31691,e1a22955-5082-4795-9340-4357d3fdc5fc,LIST_TRANSACTIONS,hbciListTransactions,false -31692,e1a22955-5082-4795-9340-4357d3fdc5fc,AUTHORIZATION,,false -31693,e1a22955-5082-4795-9340-4357d3fdc5fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31694,e1a22955-5082-4795-9340-4357d3fdc5fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31695,e1a22955-5082-4795-9340-4357d3fdc5fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31690,06842448-e34c-4004-82df-503474802fea,LIST_ACCOUNTS,hbciListAccounts,false +31691,06842448-e34c-4004-82df-503474802fea,LIST_TRANSACTIONS,hbciListTransactions,false +31692,06842448-e34c-4004-82df-503474802fea,AUTHORIZATION,,false +31693,06842448-e34c-4004-82df-503474802fea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31694,06842448-e34c-4004-82df-503474802fea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31695,06842448-e34c-4004-82df-503474802fea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31696,8fddf4f0-0357-41a8-817b-1bec3f6d68d2,LIST_ACCOUNTS,xs2aListAccounts,true -31697,8fddf4f0-0357-41a8-817b-1bec3f6d68d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31697,8fddf4f0-0357-41a8-817b-1bec3f6d68d2,LIST_TRANSACTIONS,xs2aListTransactions,true 31698,8fddf4f0-0357-41a8-817b-1bec3f6d68d2,AUTHORIZATION,,true 31699,8fddf4f0-0357-41a8-817b-1bec3f6d68d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31700,8fddf4f0-0357-41a8-817b-1bec3f6d68d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31701,8fddf4f0-0357-41a8-817b-1bec3f6d68d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31702,1e2494e6-3239-471c-a926-d930d807288e,LIST_ACCOUNTS,hbciListAccounts,false -31703,1e2494e6-3239-471c-a926-d930d807288e,LIST_TRANSACTIONS,hbciListTransactions,false -31704,1e2494e6-3239-471c-a926-d930d807288e,AUTHORIZATION,,false -31705,1e2494e6-3239-471c-a926-d930d807288e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31706,1e2494e6-3239-471c-a926-d930d807288e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31707,1e2494e6-3239-471c-a926-d930d807288e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31702,2b6566a3-aa4d-4ff8-a78f-3e325afcea1e,LIST_ACCOUNTS,hbciListAccounts,false +31703,2b6566a3-aa4d-4ff8-a78f-3e325afcea1e,LIST_TRANSACTIONS,hbciListTransactions,false +31704,2b6566a3-aa4d-4ff8-a78f-3e325afcea1e,AUTHORIZATION,,false +31705,2b6566a3-aa4d-4ff8-a78f-3e325afcea1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31706,2b6566a3-aa4d-4ff8-a78f-3e325afcea1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31707,2b6566a3-aa4d-4ff8-a78f-3e325afcea1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31708,e880912d-dd5f-465c-8ffa-f20a0a36494b,LIST_ACCOUNTS,xs2aListAccounts,true -31709,e880912d-dd5f-465c-8ffa-f20a0a36494b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31709,e880912d-dd5f-465c-8ffa-f20a0a36494b,LIST_TRANSACTIONS,xs2aListTransactions,true 31710,e880912d-dd5f-465c-8ffa-f20a0a36494b,AUTHORIZATION,,true 31711,e880912d-dd5f-465c-8ffa-f20a0a36494b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31712,e880912d-dd5f-465c-8ffa-f20a0a36494b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31713,e880912d-dd5f-465c-8ffa-f20a0a36494b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31714,60953cc8-10b7-498d-88d5-bca6ff1838da,LIST_ACCOUNTS,hbciListAccounts,false -31715,60953cc8-10b7-498d-88d5-bca6ff1838da,LIST_TRANSACTIONS,hbciListTransactions,false -31716,60953cc8-10b7-498d-88d5-bca6ff1838da,AUTHORIZATION,,false -31717,60953cc8-10b7-498d-88d5-bca6ff1838da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31718,60953cc8-10b7-498d-88d5-bca6ff1838da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31719,60953cc8-10b7-498d-88d5-bca6ff1838da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31714,d852b417-2714-455a-9434-ef65bfbef167,LIST_ACCOUNTS,hbciListAccounts,false +31715,d852b417-2714-455a-9434-ef65bfbef167,LIST_TRANSACTIONS,hbciListTransactions,false +31716,d852b417-2714-455a-9434-ef65bfbef167,AUTHORIZATION,,false +31717,d852b417-2714-455a-9434-ef65bfbef167,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31718,d852b417-2714-455a-9434-ef65bfbef167,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31719,d852b417-2714-455a-9434-ef65bfbef167,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31720,3f6943da-41de-4dc1-aeab-9df883118cb3,LIST_ACCOUNTS,xs2aListAccounts,true -31721,3f6943da-41de-4dc1-aeab-9df883118cb3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31721,3f6943da-41de-4dc1-aeab-9df883118cb3,LIST_TRANSACTIONS,xs2aListTransactions,true 31722,3f6943da-41de-4dc1-aeab-9df883118cb3,AUTHORIZATION,,true 31723,3f6943da-41de-4dc1-aeab-9df883118cb3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31724,3f6943da-41de-4dc1-aeab-9df883118cb3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31725,3f6943da-41de-4dc1-aeab-9df883118cb3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31726,2805f6ed-cc29-40e2-981c-f847183ce3fe,LIST_ACCOUNTS,hbciListAccounts,false -31727,2805f6ed-cc29-40e2-981c-f847183ce3fe,LIST_TRANSACTIONS,hbciListTransactions,false -31728,2805f6ed-cc29-40e2-981c-f847183ce3fe,AUTHORIZATION,,false -31729,2805f6ed-cc29-40e2-981c-f847183ce3fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31730,2805f6ed-cc29-40e2-981c-f847183ce3fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31731,2805f6ed-cc29-40e2-981c-f847183ce3fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31726,1380a431-e887-4b5d-8e19-ff11fa2d76a1,LIST_ACCOUNTS,hbciListAccounts,false +31727,1380a431-e887-4b5d-8e19-ff11fa2d76a1,LIST_TRANSACTIONS,hbciListTransactions,false +31728,1380a431-e887-4b5d-8e19-ff11fa2d76a1,AUTHORIZATION,,false +31729,1380a431-e887-4b5d-8e19-ff11fa2d76a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31730,1380a431-e887-4b5d-8e19-ff11fa2d76a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31731,1380a431-e887-4b5d-8e19-ff11fa2d76a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31732,03296455-7c01-438b-bde8-0c11d7c88233,LIST_ACCOUNTS,xs2aListAccounts,true -31733,03296455-7c01-438b-bde8-0c11d7c88233,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31733,03296455-7c01-438b-bde8-0c11d7c88233,LIST_TRANSACTIONS,xs2aListTransactions,true 31734,03296455-7c01-438b-bde8-0c11d7c88233,AUTHORIZATION,,true 31735,03296455-7c01-438b-bde8-0c11d7c88233,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31736,03296455-7c01-438b-bde8-0c11d7c88233,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31737,03296455-7c01-438b-bde8-0c11d7c88233,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31738,eed7cfcb-c26a-4b67-8b82-6200f815df0d,LIST_ACCOUNTS,hbciListAccounts,false -31739,eed7cfcb-c26a-4b67-8b82-6200f815df0d,LIST_TRANSACTIONS,hbciListTransactions,false -31740,eed7cfcb-c26a-4b67-8b82-6200f815df0d,AUTHORIZATION,,false -31741,eed7cfcb-c26a-4b67-8b82-6200f815df0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31742,eed7cfcb-c26a-4b67-8b82-6200f815df0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31743,eed7cfcb-c26a-4b67-8b82-6200f815df0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31738,3eb2db88-3ed6-4d6e-a5e1-f487cb55985e,LIST_ACCOUNTS,hbciListAccounts,false +31739,3eb2db88-3ed6-4d6e-a5e1-f487cb55985e,LIST_TRANSACTIONS,hbciListTransactions,false +31740,3eb2db88-3ed6-4d6e-a5e1-f487cb55985e,AUTHORIZATION,,false +31741,3eb2db88-3ed6-4d6e-a5e1-f487cb55985e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31742,3eb2db88-3ed6-4d6e-a5e1-f487cb55985e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31743,3eb2db88-3ed6-4d6e-a5e1-f487cb55985e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31744,14093299-b4f7-447b-95bd-3d29b5230d11,LIST_ACCOUNTS,xs2aListAccounts,true -31745,14093299-b4f7-447b-95bd-3d29b5230d11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31745,14093299-b4f7-447b-95bd-3d29b5230d11,LIST_TRANSACTIONS,xs2aListTransactions,true 31746,14093299-b4f7-447b-95bd-3d29b5230d11,AUTHORIZATION,,true 31747,14093299-b4f7-447b-95bd-3d29b5230d11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31748,14093299-b4f7-447b-95bd-3d29b5230d11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31749,14093299-b4f7-447b-95bd-3d29b5230d11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31750,03994c77-3a8b-4e26-af09-fe72e91f017f,LIST_ACCOUNTS,hbciListAccounts,false -31751,03994c77-3a8b-4e26-af09-fe72e91f017f,LIST_TRANSACTIONS,hbciListTransactions,false -31752,03994c77-3a8b-4e26-af09-fe72e91f017f,AUTHORIZATION,,false -31753,03994c77-3a8b-4e26-af09-fe72e91f017f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31754,03994c77-3a8b-4e26-af09-fe72e91f017f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31755,03994c77-3a8b-4e26-af09-fe72e91f017f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31750,06b77cd9-e8a4-47f4-b560-ab2d6ca05aff,LIST_ACCOUNTS,hbciListAccounts,false +31751,06b77cd9-e8a4-47f4-b560-ab2d6ca05aff,LIST_TRANSACTIONS,hbciListTransactions,false +31752,06b77cd9-e8a4-47f4-b560-ab2d6ca05aff,AUTHORIZATION,,false +31753,06b77cd9-e8a4-47f4-b560-ab2d6ca05aff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31754,06b77cd9-e8a4-47f4-b560-ab2d6ca05aff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31755,06b77cd9-e8a4-47f4-b560-ab2d6ca05aff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31756,d03e5f2b-083a-41ca-8f57-cd086ab01df2,LIST_ACCOUNTS,xs2aListAccounts,true -31757,d03e5f2b-083a-41ca-8f57-cd086ab01df2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31757,d03e5f2b-083a-41ca-8f57-cd086ab01df2,LIST_TRANSACTIONS,xs2aListTransactions,true 31758,d03e5f2b-083a-41ca-8f57-cd086ab01df2,AUTHORIZATION,,true 31759,d03e5f2b-083a-41ca-8f57-cd086ab01df2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31760,d03e5f2b-083a-41ca-8f57-cd086ab01df2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31761,d03e5f2b-083a-41ca-8f57-cd086ab01df2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31762,874e2fef-f997-406c-9e09-b977f77912bb,LIST_ACCOUNTS,hbciListAccounts,false -31763,874e2fef-f997-406c-9e09-b977f77912bb,LIST_TRANSACTIONS,hbciListTransactions,false -31764,874e2fef-f997-406c-9e09-b977f77912bb,AUTHORIZATION,,false -31765,874e2fef-f997-406c-9e09-b977f77912bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31766,874e2fef-f997-406c-9e09-b977f77912bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31767,874e2fef-f997-406c-9e09-b977f77912bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31762,a2ed261e-41dc-46dc-aae9-fd7429cfdc2e,LIST_ACCOUNTS,hbciListAccounts,false +31763,a2ed261e-41dc-46dc-aae9-fd7429cfdc2e,LIST_TRANSACTIONS,hbciListTransactions,false +31764,a2ed261e-41dc-46dc-aae9-fd7429cfdc2e,AUTHORIZATION,,false +31765,a2ed261e-41dc-46dc-aae9-fd7429cfdc2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31766,a2ed261e-41dc-46dc-aae9-fd7429cfdc2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31767,a2ed261e-41dc-46dc-aae9-fd7429cfdc2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31768,363c77ab-0889-46eb-a617-7c4e49dbcaa0,LIST_ACCOUNTS,xs2aListAccounts,true -31769,363c77ab-0889-46eb-a617-7c4e49dbcaa0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31769,363c77ab-0889-46eb-a617-7c4e49dbcaa0,LIST_TRANSACTIONS,xs2aListTransactions,true 31770,363c77ab-0889-46eb-a617-7c4e49dbcaa0,AUTHORIZATION,,true 31771,363c77ab-0889-46eb-a617-7c4e49dbcaa0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31772,363c77ab-0889-46eb-a617-7c4e49dbcaa0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31773,363c77ab-0889-46eb-a617-7c4e49dbcaa0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31774,bcf15377-096e-49f0-98f8-a2caac437776,LIST_ACCOUNTS,hbciListAccounts,false -31775,bcf15377-096e-49f0-98f8-a2caac437776,LIST_TRANSACTIONS,hbciListTransactions,false -31776,bcf15377-096e-49f0-98f8-a2caac437776,AUTHORIZATION,,false -31777,bcf15377-096e-49f0-98f8-a2caac437776,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31778,bcf15377-096e-49f0-98f8-a2caac437776,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31779,bcf15377-096e-49f0-98f8-a2caac437776,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31774,cda72b75-59e7-42d1-89b7-777571a07543,LIST_ACCOUNTS,hbciListAccounts,false +31775,cda72b75-59e7-42d1-89b7-777571a07543,LIST_TRANSACTIONS,hbciListTransactions,false +31776,cda72b75-59e7-42d1-89b7-777571a07543,AUTHORIZATION,,false +31777,cda72b75-59e7-42d1-89b7-777571a07543,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31778,cda72b75-59e7-42d1-89b7-777571a07543,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31779,cda72b75-59e7-42d1-89b7-777571a07543,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31780,b4678ac3-4dec-4eb1-82b0-2c6cdaa58e4f,LIST_ACCOUNTS,xs2aListAccounts,true -31781,b4678ac3-4dec-4eb1-82b0-2c6cdaa58e4f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31781,b4678ac3-4dec-4eb1-82b0-2c6cdaa58e4f,LIST_TRANSACTIONS,xs2aListTransactions,true 31782,b4678ac3-4dec-4eb1-82b0-2c6cdaa58e4f,AUTHORIZATION,,true 31783,b4678ac3-4dec-4eb1-82b0-2c6cdaa58e4f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31784,b4678ac3-4dec-4eb1-82b0-2c6cdaa58e4f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31785,b4678ac3-4dec-4eb1-82b0-2c6cdaa58e4f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31786,168591e2-1d0e-40fe-8f3d-200e769a59fa,LIST_ACCOUNTS,hbciListAccounts,false -31787,168591e2-1d0e-40fe-8f3d-200e769a59fa,LIST_TRANSACTIONS,hbciListTransactions,false -31788,168591e2-1d0e-40fe-8f3d-200e769a59fa,AUTHORIZATION,,false -31789,168591e2-1d0e-40fe-8f3d-200e769a59fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31790,168591e2-1d0e-40fe-8f3d-200e769a59fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31791,168591e2-1d0e-40fe-8f3d-200e769a59fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31786,38ce7678-44bf-43a6-a927-3bc67e3d44e6,LIST_ACCOUNTS,hbciListAccounts,false +31787,38ce7678-44bf-43a6-a927-3bc67e3d44e6,LIST_TRANSACTIONS,hbciListTransactions,false +31788,38ce7678-44bf-43a6-a927-3bc67e3d44e6,AUTHORIZATION,,false +31789,38ce7678-44bf-43a6-a927-3bc67e3d44e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31790,38ce7678-44bf-43a6-a927-3bc67e3d44e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31791,38ce7678-44bf-43a6-a927-3bc67e3d44e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31792,39fae347-73e1-477c-9bbe-01c380478873,LIST_ACCOUNTS,xs2aListAccounts,true -31793,39fae347-73e1-477c-9bbe-01c380478873,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31793,39fae347-73e1-477c-9bbe-01c380478873,LIST_TRANSACTIONS,xs2aListTransactions,true 31794,39fae347-73e1-477c-9bbe-01c380478873,AUTHORIZATION,,true 31795,39fae347-73e1-477c-9bbe-01c380478873,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31796,39fae347-73e1-477c-9bbe-01c380478873,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31797,39fae347-73e1-477c-9bbe-01c380478873,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31798,0f7d231f-3cec-43a9-9f6b-c7bdbfb90af4,LIST_ACCOUNTS,hbciListAccounts,false -31799,0f7d231f-3cec-43a9-9f6b-c7bdbfb90af4,LIST_TRANSACTIONS,hbciListTransactions,false -31800,0f7d231f-3cec-43a9-9f6b-c7bdbfb90af4,AUTHORIZATION,,false -31801,0f7d231f-3cec-43a9-9f6b-c7bdbfb90af4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31802,0f7d231f-3cec-43a9-9f6b-c7bdbfb90af4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31803,0f7d231f-3cec-43a9-9f6b-c7bdbfb90af4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31798,82efb766-e912-42f5-8d5e-c0970f8b5585,LIST_ACCOUNTS,hbciListAccounts,false +31799,82efb766-e912-42f5-8d5e-c0970f8b5585,LIST_TRANSACTIONS,hbciListTransactions,false +31800,82efb766-e912-42f5-8d5e-c0970f8b5585,AUTHORIZATION,,false +31801,82efb766-e912-42f5-8d5e-c0970f8b5585,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31802,82efb766-e912-42f5-8d5e-c0970f8b5585,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31803,82efb766-e912-42f5-8d5e-c0970f8b5585,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31804,920d54bd-2dda-4201-ac3f-ad31eef1d297,LIST_ACCOUNTS,xs2aListAccounts,true -31805,920d54bd-2dda-4201-ac3f-ad31eef1d297,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31805,920d54bd-2dda-4201-ac3f-ad31eef1d297,LIST_TRANSACTIONS,xs2aListTransactions,true 31806,920d54bd-2dda-4201-ac3f-ad31eef1d297,AUTHORIZATION,,true 31807,920d54bd-2dda-4201-ac3f-ad31eef1d297,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31808,920d54bd-2dda-4201-ac3f-ad31eef1d297,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31809,920d54bd-2dda-4201-ac3f-ad31eef1d297,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31810,6f3a246a-9ad2-4af7-801e-967bf44aac2b,LIST_ACCOUNTS,hbciListAccounts,false -31811,6f3a246a-9ad2-4af7-801e-967bf44aac2b,LIST_TRANSACTIONS,hbciListTransactions,false -31812,6f3a246a-9ad2-4af7-801e-967bf44aac2b,AUTHORIZATION,,false -31813,6f3a246a-9ad2-4af7-801e-967bf44aac2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31814,6f3a246a-9ad2-4af7-801e-967bf44aac2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31815,6f3a246a-9ad2-4af7-801e-967bf44aac2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31810,ad65579e-a49b-4e2b-b623-4cb2b38ce7fe,LIST_ACCOUNTS,hbciListAccounts,false +31811,ad65579e-a49b-4e2b-b623-4cb2b38ce7fe,LIST_TRANSACTIONS,hbciListTransactions,false +31812,ad65579e-a49b-4e2b-b623-4cb2b38ce7fe,AUTHORIZATION,,false +31813,ad65579e-a49b-4e2b-b623-4cb2b38ce7fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31814,ad65579e-a49b-4e2b-b623-4cb2b38ce7fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31815,ad65579e-a49b-4e2b-b623-4cb2b38ce7fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31816,74ceb760-931f-45e2-8044-9aa8a55f25a0,LIST_ACCOUNTS,xs2aListAccounts,true -31817,74ceb760-931f-45e2-8044-9aa8a55f25a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31817,74ceb760-931f-45e2-8044-9aa8a55f25a0,LIST_TRANSACTIONS,xs2aListTransactions,true 31818,74ceb760-931f-45e2-8044-9aa8a55f25a0,AUTHORIZATION,,true 31819,74ceb760-931f-45e2-8044-9aa8a55f25a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31820,74ceb760-931f-45e2-8044-9aa8a55f25a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31821,74ceb760-931f-45e2-8044-9aa8a55f25a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31822,d13ebc5a-9848-4b5d-a42d-35a7f319e29c,LIST_ACCOUNTS,hbciListAccounts,false -31823,d13ebc5a-9848-4b5d-a42d-35a7f319e29c,LIST_TRANSACTIONS,hbciListTransactions,false -31824,d13ebc5a-9848-4b5d-a42d-35a7f319e29c,AUTHORIZATION,,false -31825,d13ebc5a-9848-4b5d-a42d-35a7f319e29c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31826,d13ebc5a-9848-4b5d-a42d-35a7f319e29c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31827,d13ebc5a-9848-4b5d-a42d-35a7f319e29c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31822,2703f3dc-1c2a-4b81-b1d4-5cdc96124187,LIST_ACCOUNTS,hbciListAccounts,false +31823,2703f3dc-1c2a-4b81-b1d4-5cdc96124187,LIST_TRANSACTIONS,hbciListTransactions,false +31824,2703f3dc-1c2a-4b81-b1d4-5cdc96124187,AUTHORIZATION,,false +31825,2703f3dc-1c2a-4b81-b1d4-5cdc96124187,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31826,2703f3dc-1c2a-4b81-b1d4-5cdc96124187,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31827,2703f3dc-1c2a-4b81-b1d4-5cdc96124187,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31828,94722ea0-168a-41e4-9422-dc7c3e27f43d,LIST_ACCOUNTS,xs2aListAccounts,true -31829,94722ea0-168a-41e4-9422-dc7c3e27f43d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31829,94722ea0-168a-41e4-9422-dc7c3e27f43d,LIST_TRANSACTIONS,xs2aListTransactions,true 31830,94722ea0-168a-41e4-9422-dc7c3e27f43d,AUTHORIZATION,,true 31831,94722ea0-168a-41e4-9422-dc7c3e27f43d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31832,94722ea0-168a-41e4-9422-dc7c3e27f43d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31833,94722ea0-168a-41e4-9422-dc7c3e27f43d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31834,b4e011b0-1474-4a61-b537-a1c2c5697944,LIST_ACCOUNTS,hbciListAccounts,false -31835,b4e011b0-1474-4a61-b537-a1c2c5697944,LIST_TRANSACTIONS,hbciListTransactions,false -31836,b4e011b0-1474-4a61-b537-a1c2c5697944,AUTHORIZATION,,false -31837,b4e011b0-1474-4a61-b537-a1c2c5697944,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31838,b4e011b0-1474-4a61-b537-a1c2c5697944,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31839,b4e011b0-1474-4a61-b537-a1c2c5697944,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31834,7ae67f8b-1a43-489e-92ac-f591a956c82a,LIST_ACCOUNTS,hbciListAccounts,false +31835,7ae67f8b-1a43-489e-92ac-f591a956c82a,LIST_TRANSACTIONS,hbciListTransactions,false +31836,7ae67f8b-1a43-489e-92ac-f591a956c82a,AUTHORIZATION,,false +31837,7ae67f8b-1a43-489e-92ac-f591a956c82a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31838,7ae67f8b-1a43-489e-92ac-f591a956c82a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31839,7ae67f8b-1a43-489e-92ac-f591a956c82a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31840,326f3cfb-7a83-4579-a8ca-e1f58a9ad548,LIST_ACCOUNTS,xs2aListAccounts,true -31841,326f3cfb-7a83-4579-a8ca-e1f58a9ad548,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31841,326f3cfb-7a83-4579-a8ca-e1f58a9ad548,LIST_TRANSACTIONS,xs2aListTransactions,true 31842,326f3cfb-7a83-4579-a8ca-e1f58a9ad548,AUTHORIZATION,,true 31843,326f3cfb-7a83-4579-a8ca-e1f58a9ad548,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31844,326f3cfb-7a83-4579-a8ca-e1f58a9ad548,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31845,326f3cfb-7a83-4579-a8ca-e1f58a9ad548,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31846,a533bee6-1f61-4138-ad7d-931b5d77168c,LIST_ACCOUNTS,hbciListAccounts,false -31847,a533bee6-1f61-4138-ad7d-931b5d77168c,LIST_TRANSACTIONS,hbciListTransactions,false -31848,a533bee6-1f61-4138-ad7d-931b5d77168c,AUTHORIZATION,,false -31849,a533bee6-1f61-4138-ad7d-931b5d77168c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31850,a533bee6-1f61-4138-ad7d-931b5d77168c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31851,a533bee6-1f61-4138-ad7d-931b5d77168c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31846,46a1c1b4-3127-466f-81c1-a6c178dccb33,LIST_ACCOUNTS,hbciListAccounts,false +31847,46a1c1b4-3127-466f-81c1-a6c178dccb33,LIST_TRANSACTIONS,hbciListTransactions,false +31848,46a1c1b4-3127-466f-81c1-a6c178dccb33,AUTHORIZATION,,false +31849,46a1c1b4-3127-466f-81c1-a6c178dccb33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31850,46a1c1b4-3127-466f-81c1-a6c178dccb33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31851,46a1c1b4-3127-466f-81c1-a6c178dccb33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31852,4923cd58-5d92-4aab-a3a0-6dc0ed087cf6,LIST_ACCOUNTS,xs2aListAccounts,true -31853,4923cd58-5d92-4aab-a3a0-6dc0ed087cf6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31853,4923cd58-5d92-4aab-a3a0-6dc0ed087cf6,LIST_TRANSACTIONS,xs2aListTransactions,true 31854,4923cd58-5d92-4aab-a3a0-6dc0ed087cf6,AUTHORIZATION,,true 31855,4923cd58-5d92-4aab-a3a0-6dc0ed087cf6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31856,4923cd58-5d92-4aab-a3a0-6dc0ed087cf6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31857,4923cd58-5d92-4aab-a3a0-6dc0ed087cf6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31858,ec8bf279-1b02-408a-b33d-a4c4da377e7c,LIST_ACCOUNTS,hbciListAccounts,false -31859,ec8bf279-1b02-408a-b33d-a4c4da377e7c,LIST_TRANSACTIONS,hbciListTransactions,false -31860,ec8bf279-1b02-408a-b33d-a4c4da377e7c,AUTHORIZATION,,false -31861,ec8bf279-1b02-408a-b33d-a4c4da377e7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31862,ec8bf279-1b02-408a-b33d-a4c4da377e7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31863,ec8bf279-1b02-408a-b33d-a4c4da377e7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31858,3a2d900b-4934-46db-84e6-2834f1adbd3d,LIST_ACCOUNTS,hbciListAccounts,false +31859,3a2d900b-4934-46db-84e6-2834f1adbd3d,LIST_TRANSACTIONS,hbciListTransactions,false +31860,3a2d900b-4934-46db-84e6-2834f1adbd3d,AUTHORIZATION,,false +31861,3a2d900b-4934-46db-84e6-2834f1adbd3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31862,3a2d900b-4934-46db-84e6-2834f1adbd3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31863,3a2d900b-4934-46db-84e6-2834f1adbd3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31864,f8e53077-fc31-4ddb-a826-b4f15d81edc9,LIST_ACCOUNTS,xs2aListAccounts,true -31865,f8e53077-fc31-4ddb-a826-b4f15d81edc9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31865,f8e53077-fc31-4ddb-a826-b4f15d81edc9,LIST_TRANSACTIONS,xs2aListTransactions,true 31866,f8e53077-fc31-4ddb-a826-b4f15d81edc9,AUTHORIZATION,,true 31867,f8e53077-fc31-4ddb-a826-b4f15d81edc9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31868,f8e53077-fc31-4ddb-a826-b4f15d81edc9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31869,f8e53077-fc31-4ddb-a826-b4f15d81edc9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31870,e9edd534-f028-475b-8e79-24e30dc59625,LIST_ACCOUNTS,hbciListAccounts,false -31871,e9edd534-f028-475b-8e79-24e30dc59625,LIST_TRANSACTIONS,hbciListTransactions,false -31872,e9edd534-f028-475b-8e79-24e30dc59625,AUTHORIZATION,,false -31873,e9edd534-f028-475b-8e79-24e30dc59625,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31874,e9edd534-f028-475b-8e79-24e30dc59625,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31875,e9edd534-f028-475b-8e79-24e30dc59625,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31870,c89c3f5b-e961-4786-8bc5-f2758bd16f54,LIST_ACCOUNTS,hbciListAccounts,false +31871,c89c3f5b-e961-4786-8bc5-f2758bd16f54,LIST_TRANSACTIONS,hbciListTransactions,false +31872,c89c3f5b-e961-4786-8bc5-f2758bd16f54,AUTHORIZATION,,false +31873,c89c3f5b-e961-4786-8bc5-f2758bd16f54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31874,c89c3f5b-e961-4786-8bc5-f2758bd16f54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31875,c89c3f5b-e961-4786-8bc5-f2758bd16f54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31876,2a69c5ae-aedb-47d6-b477-70ad97315ec4,LIST_ACCOUNTS,xs2aListAccounts,true -31877,2a69c5ae-aedb-47d6-b477-70ad97315ec4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31877,2a69c5ae-aedb-47d6-b477-70ad97315ec4,LIST_TRANSACTIONS,xs2aListTransactions,true 31878,2a69c5ae-aedb-47d6-b477-70ad97315ec4,AUTHORIZATION,,true 31879,2a69c5ae-aedb-47d6-b477-70ad97315ec4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31880,2a69c5ae-aedb-47d6-b477-70ad97315ec4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31881,2a69c5ae-aedb-47d6-b477-70ad97315ec4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31882,42fb7521-8b8e-421b-9b83-3ed36143651b,LIST_ACCOUNTS,hbciListAccounts,false -31883,42fb7521-8b8e-421b-9b83-3ed36143651b,LIST_TRANSACTIONS,hbciListTransactions,false -31884,42fb7521-8b8e-421b-9b83-3ed36143651b,AUTHORIZATION,,false -31885,42fb7521-8b8e-421b-9b83-3ed36143651b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31886,42fb7521-8b8e-421b-9b83-3ed36143651b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31887,42fb7521-8b8e-421b-9b83-3ed36143651b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31882,16c80b72-97d1-467d-bb8e-58d6755b9054,LIST_ACCOUNTS,hbciListAccounts,false +31883,16c80b72-97d1-467d-bb8e-58d6755b9054,LIST_TRANSACTIONS,hbciListTransactions,false +31884,16c80b72-97d1-467d-bb8e-58d6755b9054,AUTHORIZATION,,false +31885,16c80b72-97d1-467d-bb8e-58d6755b9054,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31886,16c80b72-97d1-467d-bb8e-58d6755b9054,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31887,16c80b72-97d1-467d-bb8e-58d6755b9054,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31888,dfee4aa1-112f-4c32-90ce-5cbdff311535,LIST_ACCOUNTS,xs2aListAccounts,true -31889,dfee4aa1-112f-4c32-90ce-5cbdff311535,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31889,dfee4aa1-112f-4c32-90ce-5cbdff311535,LIST_TRANSACTIONS,xs2aListTransactions,true 31890,dfee4aa1-112f-4c32-90ce-5cbdff311535,AUTHORIZATION,,true 31891,dfee4aa1-112f-4c32-90ce-5cbdff311535,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31892,dfee4aa1-112f-4c32-90ce-5cbdff311535,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31893,dfee4aa1-112f-4c32-90ce-5cbdff311535,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31894,c4e2bb4e-6241-4086-9587-d01c8b1f9ab8,LIST_ACCOUNTS,hbciListAccounts,false -31895,c4e2bb4e-6241-4086-9587-d01c8b1f9ab8,LIST_TRANSACTIONS,hbciListTransactions,false -31896,c4e2bb4e-6241-4086-9587-d01c8b1f9ab8,AUTHORIZATION,,false -31897,c4e2bb4e-6241-4086-9587-d01c8b1f9ab8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31898,c4e2bb4e-6241-4086-9587-d01c8b1f9ab8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31899,c4e2bb4e-6241-4086-9587-d01c8b1f9ab8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31894,7a3dd4da-90a4-4a85-978f-0f85d88412d1,LIST_ACCOUNTS,hbciListAccounts,false +31895,7a3dd4da-90a4-4a85-978f-0f85d88412d1,LIST_TRANSACTIONS,hbciListTransactions,false +31896,7a3dd4da-90a4-4a85-978f-0f85d88412d1,AUTHORIZATION,,false +31897,7a3dd4da-90a4-4a85-978f-0f85d88412d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31898,7a3dd4da-90a4-4a85-978f-0f85d88412d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31899,7a3dd4da-90a4-4a85-978f-0f85d88412d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31900,045e4e6a-55de-4a72-9755-19b75453ac8a,LIST_ACCOUNTS,xs2aListAccounts,true -31901,045e4e6a-55de-4a72-9755-19b75453ac8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31901,045e4e6a-55de-4a72-9755-19b75453ac8a,LIST_TRANSACTIONS,xs2aListTransactions,true 31902,045e4e6a-55de-4a72-9755-19b75453ac8a,AUTHORIZATION,,true 31903,045e4e6a-55de-4a72-9755-19b75453ac8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31904,045e4e6a-55de-4a72-9755-19b75453ac8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31905,045e4e6a-55de-4a72-9755-19b75453ac8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31906,95735800-9599-4371-a2f7-930f7c1dac5d,LIST_ACCOUNTS,hbciListAccounts,false -31907,95735800-9599-4371-a2f7-930f7c1dac5d,LIST_TRANSACTIONS,hbciListTransactions,false -31908,95735800-9599-4371-a2f7-930f7c1dac5d,AUTHORIZATION,,false -31909,95735800-9599-4371-a2f7-930f7c1dac5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31910,95735800-9599-4371-a2f7-930f7c1dac5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31911,95735800-9599-4371-a2f7-930f7c1dac5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31906,f58742d0-c650-4b77-9824-c179fcb9a20f,LIST_ACCOUNTS,hbciListAccounts,false +31907,f58742d0-c650-4b77-9824-c179fcb9a20f,LIST_TRANSACTIONS,hbciListTransactions,false +31908,f58742d0-c650-4b77-9824-c179fcb9a20f,AUTHORIZATION,,false +31909,f58742d0-c650-4b77-9824-c179fcb9a20f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31910,f58742d0-c650-4b77-9824-c179fcb9a20f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31911,f58742d0-c650-4b77-9824-c179fcb9a20f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31912,5dac117b-0b4c-41e4-8e85-00243f054b2e,LIST_ACCOUNTS,xs2aListAccounts,true -31913,5dac117b-0b4c-41e4-8e85-00243f054b2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31913,5dac117b-0b4c-41e4-8e85-00243f054b2e,LIST_TRANSACTIONS,xs2aListTransactions,true 31914,5dac117b-0b4c-41e4-8e85-00243f054b2e,AUTHORIZATION,,true 31915,5dac117b-0b4c-41e4-8e85-00243f054b2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31916,5dac117b-0b4c-41e4-8e85-00243f054b2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31917,5dac117b-0b4c-41e4-8e85-00243f054b2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31918,ab575aa4-7fdc-40be-8c0c-3fa112be8df1,LIST_ACCOUNTS,hbciListAccounts,false -31919,ab575aa4-7fdc-40be-8c0c-3fa112be8df1,LIST_TRANSACTIONS,hbciListTransactions,false -31920,ab575aa4-7fdc-40be-8c0c-3fa112be8df1,AUTHORIZATION,,false -31921,ab575aa4-7fdc-40be-8c0c-3fa112be8df1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31922,ab575aa4-7fdc-40be-8c0c-3fa112be8df1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31923,ab575aa4-7fdc-40be-8c0c-3fa112be8df1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31918,2db69d31-32c4-493f-87d0-b19ba37366c4,LIST_ACCOUNTS,hbciListAccounts,false +31919,2db69d31-32c4-493f-87d0-b19ba37366c4,LIST_TRANSACTIONS,hbciListTransactions,false +31920,2db69d31-32c4-493f-87d0-b19ba37366c4,AUTHORIZATION,,false +31921,2db69d31-32c4-493f-87d0-b19ba37366c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31922,2db69d31-32c4-493f-87d0-b19ba37366c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31923,2db69d31-32c4-493f-87d0-b19ba37366c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31924,f36099a2-0361-4dcb-8b05-f98c855c4fdf,LIST_ACCOUNTS,xs2aListAccounts,true -31925,f36099a2-0361-4dcb-8b05-f98c855c4fdf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31925,f36099a2-0361-4dcb-8b05-f98c855c4fdf,LIST_TRANSACTIONS,xs2aListTransactions,true 31926,f36099a2-0361-4dcb-8b05-f98c855c4fdf,AUTHORIZATION,,true 31927,f36099a2-0361-4dcb-8b05-f98c855c4fdf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31928,f36099a2-0361-4dcb-8b05-f98c855c4fdf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31929,f36099a2-0361-4dcb-8b05-f98c855c4fdf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31930,9c0e3fff-8061-4261-a15b-c39f9cd80414,LIST_ACCOUNTS,hbciListAccounts,false -31931,9c0e3fff-8061-4261-a15b-c39f9cd80414,LIST_TRANSACTIONS,hbciListTransactions,false -31932,9c0e3fff-8061-4261-a15b-c39f9cd80414,AUTHORIZATION,,false -31933,9c0e3fff-8061-4261-a15b-c39f9cd80414,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31934,9c0e3fff-8061-4261-a15b-c39f9cd80414,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31935,9c0e3fff-8061-4261-a15b-c39f9cd80414,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31930,ec924735-a487-41af-858a-4a9a8416f915,LIST_ACCOUNTS,hbciListAccounts,false +31931,ec924735-a487-41af-858a-4a9a8416f915,LIST_TRANSACTIONS,hbciListTransactions,false +31932,ec924735-a487-41af-858a-4a9a8416f915,AUTHORIZATION,,false +31933,ec924735-a487-41af-858a-4a9a8416f915,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31934,ec924735-a487-41af-858a-4a9a8416f915,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31935,ec924735-a487-41af-858a-4a9a8416f915,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31936,0dcd67b4-0b30-4f6a-b63f-e7b3f6c6a6cf,LIST_ACCOUNTS,xs2aListAccounts,true -31937,0dcd67b4-0b30-4f6a-b63f-e7b3f6c6a6cf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31937,0dcd67b4-0b30-4f6a-b63f-e7b3f6c6a6cf,LIST_TRANSACTIONS,xs2aListTransactions,true 31938,0dcd67b4-0b30-4f6a-b63f-e7b3f6c6a6cf,AUTHORIZATION,,true 31939,0dcd67b4-0b30-4f6a-b63f-e7b3f6c6a6cf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31940,0dcd67b4-0b30-4f6a-b63f-e7b3f6c6a6cf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31941,0dcd67b4-0b30-4f6a-b63f-e7b3f6c6a6cf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31942,5f009043-51a8-4ad8-b547-86e10a657761,LIST_ACCOUNTS,hbciListAccounts,false -31943,5f009043-51a8-4ad8-b547-86e10a657761,LIST_TRANSACTIONS,hbciListTransactions,false -31944,5f009043-51a8-4ad8-b547-86e10a657761,AUTHORIZATION,,false -31945,5f009043-51a8-4ad8-b547-86e10a657761,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31946,5f009043-51a8-4ad8-b547-86e10a657761,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31947,5f009043-51a8-4ad8-b547-86e10a657761,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31942,61e13e29-0bfd-42bc-92e5-e73b5b316e92,LIST_ACCOUNTS,hbciListAccounts,false +31943,61e13e29-0bfd-42bc-92e5-e73b5b316e92,LIST_TRANSACTIONS,hbciListTransactions,false +31944,61e13e29-0bfd-42bc-92e5-e73b5b316e92,AUTHORIZATION,,false +31945,61e13e29-0bfd-42bc-92e5-e73b5b316e92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31946,61e13e29-0bfd-42bc-92e5-e73b5b316e92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31947,61e13e29-0bfd-42bc-92e5-e73b5b316e92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31948,341bb278-8d39-4a02-a588-7807abc93859,LIST_ACCOUNTS,xs2aListAccounts,true -31949,341bb278-8d39-4a02-a588-7807abc93859,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31949,341bb278-8d39-4a02-a588-7807abc93859,LIST_TRANSACTIONS,xs2aListTransactions,true 31950,341bb278-8d39-4a02-a588-7807abc93859,AUTHORIZATION,,true 31951,341bb278-8d39-4a02-a588-7807abc93859,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31952,341bb278-8d39-4a02-a588-7807abc93859,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31953,341bb278-8d39-4a02-a588-7807abc93859,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31954,095e9370-b6b3-4f6e-9a2a-b229a241ec0d,LIST_ACCOUNTS,hbciListAccounts,false -31955,095e9370-b6b3-4f6e-9a2a-b229a241ec0d,LIST_TRANSACTIONS,hbciListTransactions,false -31956,095e9370-b6b3-4f6e-9a2a-b229a241ec0d,AUTHORIZATION,,false -31957,095e9370-b6b3-4f6e-9a2a-b229a241ec0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31958,095e9370-b6b3-4f6e-9a2a-b229a241ec0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31959,095e9370-b6b3-4f6e-9a2a-b229a241ec0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31954,78d9829b-f214-4261-a36c-eb09f3845ddd,LIST_ACCOUNTS,hbciListAccounts,false +31955,78d9829b-f214-4261-a36c-eb09f3845ddd,LIST_TRANSACTIONS,hbciListTransactions,false +31956,78d9829b-f214-4261-a36c-eb09f3845ddd,AUTHORIZATION,,false +31957,78d9829b-f214-4261-a36c-eb09f3845ddd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31958,78d9829b-f214-4261-a36c-eb09f3845ddd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31959,78d9829b-f214-4261-a36c-eb09f3845ddd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31960,941ef83a-65b5-429f-b06b-2a0576df6960,LIST_ACCOUNTS,xs2aListAccounts,true -31961,941ef83a-65b5-429f-b06b-2a0576df6960,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31961,941ef83a-65b5-429f-b06b-2a0576df6960,LIST_TRANSACTIONS,xs2aListTransactions,true 31962,941ef83a-65b5-429f-b06b-2a0576df6960,AUTHORIZATION,,true 31963,941ef83a-65b5-429f-b06b-2a0576df6960,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31964,941ef83a-65b5-429f-b06b-2a0576df6960,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31965,941ef83a-65b5-429f-b06b-2a0576df6960,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31966,95ad9811-6fdc-4a8f-aca5-8a0d7b068b58,LIST_ACCOUNTS,hbciListAccounts,false -31967,95ad9811-6fdc-4a8f-aca5-8a0d7b068b58,LIST_TRANSACTIONS,hbciListTransactions,false -31968,95ad9811-6fdc-4a8f-aca5-8a0d7b068b58,AUTHORIZATION,,false -31969,95ad9811-6fdc-4a8f-aca5-8a0d7b068b58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31970,95ad9811-6fdc-4a8f-aca5-8a0d7b068b58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31971,95ad9811-6fdc-4a8f-aca5-8a0d7b068b58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31966,d9143590-c574-4586-91df-709a5be8d460,LIST_ACCOUNTS,hbciListAccounts,false +31967,d9143590-c574-4586-91df-709a5be8d460,LIST_TRANSACTIONS,hbciListTransactions,false +31968,d9143590-c574-4586-91df-709a5be8d460,AUTHORIZATION,,false +31969,d9143590-c574-4586-91df-709a5be8d460,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31970,d9143590-c574-4586-91df-709a5be8d460,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31971,d9143590-c574-4586-91df-709a5be8d460,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31972,c4fcc978-2dce-43ba-9b78-3eeb89fc93f5,LIST_ACCOUNTS,xs2aListAccounts,true -31973,c4fcc978-2dce-43ba-9b78-3eeb89fc93f5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31973,c4fcc978-2dce-43ba-9b78-3eeb89fc93f5,LIST_TRANSACTIONS,xs2aListTransactions,true 31974,c4fcc978-2dce-43ba-9b78-3eeb89fc93f5,AUTHORIZATION,,true 31975,c4fcc978-2dce-43ba-9b78-3eeb89fc93f5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31976,c4fcc978-2dce-43ba-9b78-3eeb89fc93f5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31977,c4fcc978-2dce-43ba-9b78-3eeb89fc93f5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31978,9140e3ca-69f4-4e82-8790-649eb5073887,LIST_ACCOUNTS,hbciListAccounts,false -31979,9140e3ca-69f4-4e82-8790-649eb5073887,LIST_TRANSACTIONS,hbciListTransactions,false -31980,9140e3ca-69f4-4e82-8790-649eb5073887,AUTHORIZATION,,false -31981,9140e3ca-69f4-4e82-8790-649eb5073887,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31982,9140e3ca-69f4-4e82-8790-649eb5073887,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31983,9140e3ca-69f4-4e82-8790-649eb5073887,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31978,1314db24-4cd1-49dc-91a9-f22352551247,LIST_ACCOUNTS,hbciListAccounts,false +31979,1314db24-4cd1-49dc-91a9-f22352551247,LIST_TRANSACTIONS,hbciListTransactions,false +31980,1314db24-4cd1-49dc-91a9-f22352551247,AUTHORIZATION,,false +31981,1314db24-4cd1-49dc-91a9-f22352551247,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31982,1314db24-4cd1-49dc-91a9-f22352551247,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31983,1314db24-4cd1-49dc-91a9-f22352551247,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31984,c913070d-6787-499e-a873-336c4e93df14,LIST_ACCOUNTS,xs2aListAccounts,true -31985,c913070d-6787-499e-a873-336c4e93df14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31985,c913070d-6787-499e-a873-336c4e93df14,LIST_TRANSACTIONS,xs2aListTransactions,true 31986,c913070d-6787-499e-a873-336c4e93df14,AUTHORIZATION,,true 31987,c913070d-6787-499e-a873-336c4e93df14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 31988,c913070d-6787-499e-a873-336c4e93df14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 31989,c913070d-6787-499e-a873-336c4e93df14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -31990,563c1c56-c49b-4c63-b26a-2a4ad1b3f26e,LIST_ACCOUNTS,hbciListAccounts,false -31991,563c1c56-c49b-4c63-b26a-2a4ad1b3f26e,LIST_TRANSACTIONS,hbciListTransactions,false -31992,563c1c56-c49b-4c63-b26a-2a4ad1b3f26e,AUTHORIZATION,,false -31993,563c1c56-c49b-4c63-b26a-2a4ad1b3f26e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -31994,563c1c56-c49b-4c63-b26a-2a4ad1b3f26e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -31995,563c1c56-c49b-4c63-b26a-2a4ad1b3f26e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +31990,74b95f04-61ea-44df-8a63-8277f5c88493,LIST_ACCOUNTS,hbciListAccounts,false +31991,74b95f04-61ea-44df-8a63-8277f5c88493,LIST_TRANSACTIONS,hbciListTransactions,false +31992,74b95f04-61ea-44df-8a63-8277f5c88493,AUTHORIZATION,,false +31993,74b95f04-61ea-44df-8a63-8277f5c88493,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +31994,74b95f04-61ea-44df-8a63-8277f5c88493,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +31995,74b95f04-61ea-44df-8a63-8277f5c88493,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 31996,e5fb1d62-ba81-49b2-aac1-ec31be1f70f6,LIST_ACCOUNTS,xs2aListAccounts,true -31997,e5fb1d62-ba81-49b2-aac1-ec31be1f70f6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +31997,e5fb1d62-ba81-49b2-aac1-ec31be1f70f6,LIST_TRANSACTIONS,xs2aListTransactions,true 31998,e5fb1d62-ba81-49b2-aac1-ec31be1f70f6,AUTHORIZATION,,true 31999,e5fb1d62-ba81-49b2-aac1-ec31be1f70f6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32000,e5fb1d62-ba81-49b2-aac1-ec31be1f70f6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32001,e5fb1d62-ba81-49b2-aac1-ec31be1f70f6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32002,18c695c9-5062-4b93-aa3f-3aecc1f2a3d9,LIST_ACCOUNTS,hbciListAccounts,false -32003,18c695c9-5062-4b93-aa3f-3aecc1f2a3d9,LIST_TRANSACTIONS,hbciListTransactions,false -32004,18c695c9-5062-4b93-aa3f-3aecc1f2a3d9,AUTHORIZATION,,false -32005,18c695c9-5062-4b93-aa3f-3aecc1f2a3d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32006,18c695c9-5062-4b93-aa3f-3aecc1f2a3d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32007,18c695c9-5062-4b93-aa3f-3aecc1f2a3d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32002,cb795563-30f9-4e02-b4d1-30aadae405b6,LIST_ACCOUNTS,hbciListAccounts,false +32003,cb795563-30f9-4e02-b4d1-30aadae405b6,LIST_TRANSACTIONS,hbciListTransactions,false +32004,cb795563-30f9-4e02-b4d1-30aadae405b6,AUTHORIZATION,,false +32005,cb795563-30f9-4e02-b4d1-30aadae405b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32006,cb795563-30f9-4e02-b4d1-30aadae405b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32007,cb795563-30f9-4e02-b4d1-30aadae405b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32008,37bdaf5b-514e-4328-bc34-84250c9293de,LIST_ACCOUNTS,xs2aListAccounts,true -32009,37bdaf5b-514e-4328-bc34-84250c9293de,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32009,37bdaf5b-514e-4328-bc34-84250c9293de,LIST_TRANSACTIONS,xs2aListTransactions,true 32010,37bdaf5b-514e-4328-bc34-84250c9293de,AUTHORIZATION,,true 32011,37bdaf5b-514e-4328-bc34-84250c9293de,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32012,37bdaf5b-514e-4328-bc34-84250c9293de,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32013,37bdaf5b-514e-4328-bc34-84250c9293de,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32014,85954e9a-ec49-4c22-bfca-5d2a5378fff3,LIST_ACCOUNTS,hbciListAccounts,false -32015,85954e9a-ec49-4c22-bfca-5d2a5378fff3,LIST_TRANSACTIONS,hbciListTransactions,false -32016,85954e9a-ec49-4c22-bfca-5d2a5378fff3,AUTHORIZATION,,false -32017,85954e9a-ec49-4c22-bfca-5d2a5378fff3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32018,85954e9a-ec49-4c22-bfca-5d2a5378fff3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32019,85954e9a-ec49-4c22-bfca-5d2a5378fff3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32014,be3947cd-e1b5-4ded-923f-f6b13a124511,LIST_ACCOUNTS,hbciListAccounts,false +32015,be3947cd-e1b5-4ded-923f-f6b13a124511,LIST_TRANSACTIONS,hbciListTransactions,false +32016,be3947cd-e1b5-4ded-923f-f6b13a124511,AUTHORIZATION,,false +32017,be3947cd-e1b5-4ded-923f-f6b13a124511,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32018,be3947cd-e1b5-4ded-923f-f6b13a124511,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32019,be3947cd-e1b5-4ded-923f-f6b13a124511,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32020,e5b4baae-5560-40c7-b886-2fd7da11b870,LIST_ACCOUNTS,xs2aListAccounts,true -32021,e5b4baae-5560-40c7-b886-2fd7da11b870,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32021,e5b4baae-5560-40c7-b886-2fd7da11b870,LIST_TRANSACTIONS,xs2aListTransactions,true 32022,e5b4baae-5560-40c7-b886-2fd7da11b870,AUTHORIZATION,,true 32023,e5b4baae-5560-40c7-b886-2fd7da11b870,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32024,e5b4baae-5560-40c7-b886-2fd7da11b870,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32025,e5b4baae-5560-40c7-b886-2fd7da11b870,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32026,31a08d50-57c4-4bc1-a3fb-1899ccc231c0,LIST_ACCOUNTS,hbciListAccounts,false -32027,31a08d50-57c4-4bc1-a3fb-1899ccc231c0,LIST_TRANSACTIONS,hbciListTransactions,false -32028,31a08d50-57c4-4bc1-a3fb-1899ccc231c0,AUTHORIZATION,,false -32029,31a08d50-57c4-4bc1-a3fb-1899ccc231c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32030,31a08d50-57c4-4bc1-a3fb-1899ccc231c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32031,31a08d50-57c4-4bc1-a3fb-1899ccc231c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32026,77a5c4fd-59c7-4010-807f-44fc1067aa2b,LIST_ACCOUNTS,hbciListAccounts,false +32027,77a5c4fd-59c7-4010-807f-44fc1067aa2b,LIST_TRANSACTIONS,hbciListTransactions,false +32028,77a5c4fd-59c7-4010-807f-44fc1067aa2b,AUTHORIZATION,,false +32029,77a5c4fd-59c7-4010-807f-44fc1067aa2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32030,77a5c4fd-59c7-4010-807f-44fc1067aa2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32031,77a5c4fd-59c7-4010-807f-44fc1067aa2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32032,485940bd-baad-41ed-b2d0-265b811d2d3e,LIST_ACCOUNTS,xs2aListAccounts,true -32033,485940bd-baad-41ed-b2d0-265b811d2d3e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32033,485940bd-baad-41ed-b2d0-265b811d2d3e,LIST_TRANSACTIONS,xs2aListTransactions,true 32034,485940bd-baad-41ed-b2d0-265b811d2d3e,AUTHORIZATION,,true 32035,485940bd-baad-41ed-b2d0-265b811d2d3e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32036,485940bd-baad-41ed-b2d0-265b811d2d3e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32037,485940bd-baad-41ed-b2d0-265b811d2d3e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32038,6071739d-10b9-4302-ae9a-26483b4a6dc4,LIST_ACCOUNTS,hbciListAccounts,false -32039,6071739d-10b9-4302-ae9a-26483b4a6dc4,LIST_TRANSACTIONS,hbciListTransactions,false -32040,6071739d-10b9-4302-ae9a-26483b4a6dc4,AUTHORIZATION,,false -32041,6071739d-10b9-4302-ae9a-26483b4a6dc4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32042,6071739d-10b9-4302-ae9a-26483b4a6dc4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32043,6071739d-10b9-4302-ae9a-26483b4a6dc4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32038,27a5816e-d738-4acc-a750-40de2151ba1a,LIST_ACCOUNTS,hbciListAccounts,false +32039,27a5816e-d738-4acc-a750-40de2151ba1a,LIST_TRANSACTIONS,hbciListTransactions,false +32040,27a5816e-d738-4acc-a750-40de2151ba1a,AUTHORIZATION,,false +32041,27a5816e-d738-4acc-a750-40de2151ba1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32042,27a5816e-d738-4acc-a750-40de2151ba1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32043,27a5816e-d738-4acc-a750-40de2151ba1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32044,0f9ec63f-1d20-492c-bc02-f95e35eb6d6d,LIST_ACCOUNTS,xs2aListAccounts,true -32045,0f9ec63f-1d20-492c-bc02-f95e35eb6d6d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32045,0f9ec63f-1d20-492c-bc02-f95e35eb6d6d,LIST_TRANSACTIONS,xs2aListTransactions,true 32046,0f9ec63f-1d20-492c-bc02-f95e35eb6d6d,AUTHORIZATION,,true 32047,0f9ec63f-1d20-492c-bc02-f95e35eb6d6d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32048,0f9ec63f-1d20-492c-bc02-f95e35eb6d6d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32049,0f9ec63f-1d20-492c-bc02-f95e35eb6d6d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32050,086c41e2-5005-4cd7-b857-4a490c131e7f,LIST_ACCOUNTS,hbciListAccounts,false -32051,086c41e2-5005-4cd7-b857-4a490c131e7f,LIST_TRANSACTIONS,hbciListTransactions,false -32052,086c41e2-5005-4cd7-b857-4a490c131e7f,AUTHORIZATION,,false -32053,086c41e2-5005-4cd7-b857-4a490c131e7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32054,086c41e2-5005-4cd7-b857-4a490c131e7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32055,086c41e2-5005-4cd7-b857-4a490c131e7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32050,15d6e1db-8782-4baf-ba3d-db4fa3d8e2a6,LIST_ACCOUNTS,hbciListAccounts,false +32051,15d6e1db-8782-4baf-ba3d-db4fa3d8e2a6,LIST_TRANSACTIONS,hbciListTransactions,false +32052,15d6e1db-8782-4baf-ba3d-db4fa3d8e2a6,AUTHORIZATION,,false +32053,15d6e1db-8782-4baf-ba3d-db4fa3d8e2a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32054,15d6e1db-8782-4baf-ba3d-db4fa3d8e2a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32055,15d6e1db-8782-4baf-ba3d-db4fa3d8e2a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32056,8855c095-4d1d-48ce-ade9-80326e013304,LIST_ACCOUNTS,xs2aListAccounts,true -32057,8855c095-4d1d-48ce-ade9-80326e013304,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32057,8855c095-4d1d-48ce-ade9-80326e013304,LIST_TRANSACTIONS,xs2aListTransactions,true 32058,8855c095-4d1d-48ce-ade9-80326e013304,AUTHORIZATION,,true 32059,8855c095-4d1d-48ce-ade9-80326e013304,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32060,8855c095-4d1d-48ce-ade9-80326e013304,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32061,8855c095-4d1d-48ce-ade9-80326e013304,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32062,ba17f663-cd95-4888-83d7-f2b10710951d,LIST_ACCOUNTS,hbciListAccounts,false -32063,ba17f663-cd95-4888-83d7-f2b10710951d,LIST_TRANSACTIONS,hbciListTransactions,false -32064,ba17f663-cd95-4888-83d7-f2b10710951d,AUTHORIZATION,,false -32065,ba17f663-cd95-4888-83d7-f2b10710951d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32066,ba17f663-cd95-4888-83d7-f2b10710951d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32067,ba17f663-cd95-4888-83d7-f2b10710951d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32062,dc7fccf2-8c17-4135-b80d-526de9b60ccb,LIST_ACCOUNTS,hbciListAccounts,false +32063,dc7fccf2-8c17-4135-b80d-526de9b60ccb,LIST_TRANSACTIONS,hbciListTransactions,false +32064,dc7fccf2-8c17-4135-b80d-526de9b60ccb,AUTHORIZATION,,false +32065,dc7fccf2-8c17-4135-b80d-526de9b60ccb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32066,dc7fccf2-8c17-4135-b80d-526de9b60ccb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32067,dc7fccf2-8c17-4135-b80d-526de9b60ccb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32068,03445f22-682b-412e-9e5b-727fc97ce8e1,LIST_ACCOUNTS,xs2aListAccounts,true -32069,03445f22-682b-412e-9e5b-727fc97ce8e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32069,03445f22-682b-412e-9e5b-727fc97ce8e1,LIST_TRANSACTIONS,xs2aListTransactions,true 32070,03445f22-682b-412e-9e5b-727fc97ce8e1,AUTHORIZATION,,true 32071,03445f22-682b-412e-9e5b-727fc97ce8e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32072,03445f22-682b-412e-9e5b-727fc97ce8e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32073,03445f22-682b-412e-9e5b-727fc97ce8e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32074,7a5b14ab-97cf-4a97-8b34-c3577a05d9f4,LIST_ACCOUNTS,hbciListAccounts,false -32075,7a5b14ab-97cf-4a97-8b34-c3577a05d9f4,LIST_TRANSACTIONS,hbciListTransactions,false -32076,7a5b14ab-97cf-4a97-8b34-c3577a05d9f4,AUTHORIZATION,,false -32077,7a5b14ab-97cf-4a97-8b34-c3577a05d9f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32078,7a5b14ab-97cf-4a97-8b34-c3577a05d9f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32079,7a5b14ab-97cf-4a97-8b34-c3577a05d9f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32074,cd1cadd8-608d-47bd-9b75-cfdb920e7cec,LIST_ACCOUNTS,hbciListAccounts,false +32075,cd1cadd8-608d-47bd-9b75-cfdb920e7cec,LIST_TRANSACTIONS,hbciListTransactions,false +32076,cd1cadd8-608d-47bd-9b75-cfdb920e7cec,AUTHORIZATION,,false +32077,cd1cadd8-608d-47bd-9b75-cfdb920e7cec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32078,cd1cadd8-608d-47bd-9b75-cfdb920e7cec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32079,cd1cadd8-608d-47bd-9b75-cfdb920e7cec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32080,ae14ebf2-171d-4239-bcc9-76f07673f854,LIST_ACCOUNTS,xs2aListAccounts,true -32081,ae14ebf2-171d-4239-bcc9-76f07673f854,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32081,ae14ebf2-171d-4239-bcc9-76f07673f854,LIST_TRANSACTIONS,xs2aListTransactions,true 32082,ae14ebf2-171d-4239-bcc9-76f07673f854,AUTHORIZATION,,true 32083,ae14ebf2-171d-4239-bcc9-76f07673f854,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32084,ae14ebf2-171d-4239-bcc9-76f07673f854,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32085,ae14ebf2-171d-4239-bcc9-76f07673f854,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32086,8d73bf5f-ac31-42a1-9f48-543eef698251,LIST_ACCOUNTS,hbciListAccounts,false -32087,8d73bf5f-ac31-42a1-9f48-543eef698251,LIST_TRANSACTIONS,hbciListTransactions,false -32088,8d73bf5f-ac31-42a1-9f48-543eef698251,AUTHORIZATION,,false -32089,8d73bf5f-ac31-42a1-9f48-543eef698251,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32090,8d73bf5f-ac31-42a1-9f48-543eef698251,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32091,8d73bf5f-ac31-42a1-9f48-543eef698251,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32086,7f8849fd-c2f8-481b-93f1-6f0d42c2e978,LIST_ACCOUNTS,hbciListAccounts,false +32087,7f8849fd-c2f8-481b-93f1-6f0d42c2e978,LIST_TRANSACTIONS,hbciListTransactions,false +32088,7f8849fd-c2f8-481b-93f1-6f0d42c2e978,AUTHORIZATION,,false +32089,7f8849fd-c2f8-481b-93f1-6f0d42c2e978,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32090,7f8849fd-c2f8-481b-93f1-6f0d42c2e978,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32091,7f8849fd-c2f8-481b-93f1-6f0d42c2e978,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32092,84b27bed-d1d0-43ad-a2a3-6519c6021e9f,LIST_ACCOUNTS,xs2aListAccounts,true -32093,84b27bed-d1d0-43ad-a2a3-6519c6021e9f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32093,84b27bed-d1d0-43ad-a2a3-6519c6021e9f,LIST_TRANSACTIONS,xs2aListTransactions,true 32094,84b27bed-d1d0-43ad-a2a3-6519c6021e9f,AUTHORIZATION,,true 32095,84b27bed-d1d0-43ad-a2a3-6519c6021e9f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32096,84b27bed-d1d0-43ad-a2a3-6519c6021e9f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32097,84b27bed-d1d0-43ad-a2a3-6519c6021e9f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32098,28638d56-54f8-490a-b620-65de6cf18c70,LIST_ACCOUNTS,hbciListAccounts,false -32099,28638d56-54f8-490a-b620-65de6cf18c70,LIST_TRANSACTIONS,hbciListTransactions,false -32100,28638d56-54f8-490a-b620-65de6cf18c70,AUTHORIZATION,,false -32101,28638d56-54f8-490a-b620-65de6cf18c70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32102,28638d56-54f8-490a-b620-65de6cf18c70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32103,28638d56-54f8-490a-b620-65de6cf18c70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32098,9390cbfa-10a6-4c37-9449-40ff4e898577,LIST_ACCOUNTS,hbciListAccounts,false +32099,9390cbfa-10a6-4c37-9449-40ff4e898577,LIST_TRANSACTIONS,hbciListTransactions,false +32100,9390cbfa-10a6-4c37-9449-40ff4e898577,AUTHORIZATION,,false +32101,9390cbfa-10a6-4c37-9449-40ff4e898577,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32102,9390cbfa-10a6-4c37-9449-40ff4e898577,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32103,9390cbfa-10a6-4c37-9449-40ff4e898577,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32104,09414993-eda5-4f18-a96c-c5474eff82be,LIST_ACCOUNTS,xs2aListAccounts,true -32105,09414993-eda5-4f18-a96c-c5474eff82be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32105,09414993-eda5-4f18-a96c-c5474eff82be,LIST_TRANSACTIONS,xs2aListTransactions,true 32106,09414993-eda5-4f18-a96c-c5474eff82be,AUTHORIZATION,,true 32107,09414993-eda5-4f18-a96c-c5474eff82be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32108,09414993-eda5-4f18-a96c-c5474eff82be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32109,09414993-eda5-4f18-a96c-c5474eff82be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32110,ee3ee4fa-13a8-4682-a4fd-6135fca36c70,LIST_ACCOUNTS,hbciListAccounts,false -32111,ee3ee4fa-13a8-4682-a4fd-6135fca36c70,LIST_TRANSACTIONS,hbciListTransactions,false -32112,ee3ee4fa-13a8-4682-a4fd-6135fca36c70,AUTHORIZATION,,false -32113,ee3ee4fa-13a8-4682-a4fd-6135fca36c70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32114,ee3ee4fa-13a8-4682-a4fd-6135fca36c70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32115,ee3ee4fa-13a8-4682-a4fd-6135fca36c70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32110,ed1bdd70-e512-4815-92ca-e9001ecda90f,LIST_ACCOUNTS,hbciListAccounts,false +32111,ed1bdd70-e512-4815-92ca-e9001ecda90f,LIST_TRANSACTIONS,hbciListTransactions,false +32112,ed1bdd70-e512-4815-92ca-e9001ecda90f,AUTHORIZATION,,false +32113,ed1bdd70-e512-4815-92ca-e9001ecda90f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32114,ed1bdd70-e512-4815-92ca-e9001ecda90f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32115,ed1bdd70-e512-4815-92ca-e9001ecda90f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32116,dc55fe1a-a3cf-473d-963c-16a6e9d1edd3,LIST_ACCOUNTS,xs2aListAccounts,true -32117,dc55fe1a-a3cf-473d-963c-16a6e9d1edd3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32117,dc55fe1a-a3cf-473d-963c-16a6e9d1edd3,LIST_TRANSACTIONS,xs2aListTransactions,true 32118,dc55fe1a-a3cf-473d-963c-16a6e9d1edd3,AUTHORIZATION,,true 32119,dc55fe1a-a3cf-473d-963c-16a6e9d1edd3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32120,dc55fe1a-a3cf-473d-963c-16a6e9d1edd3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32121,dc55fe1a-a3cf-473d-963c-16a6e9d1edd3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32122,9b9504cd-5308-440b-9ca7-70c25232e94c,LIST_ACCOUNTS,hbciListAccounts,false -32123,9b9504cd-5308-440b-9ca7-70c25232e94c,LIST_TRANSACTIONS,hbciListTransactions,false -32124,9b9504cd-5308-440b-9ca7-70c25232e94c,AUTHORIZATION,,false -32125,9b9504cd-5308-440b-9ca7-70c25232e94c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32126,9b9504cd-5308-440b-9ca7-70c25232e94c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32127,9b9504cd-5308-440b-9ca7-70c25232e94c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32122,abe0afda-09da-48be-b726-8dbaab668649,LIST_ACCOUNTS,hbciListAccounts,false +32123,abe0afda-09da-48be-b726-8dbaab668649,LIST_TRANSACTIONS,hbciListTransactions,false +32124,abe0afda-09da-48be-b726-8dbaab668649,AUTHORIZATION,,false +32125,abe0afda-09da-48be-b726-8dbaab668649,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32126,abe0afda-09da-48be-b726-8dbaab668649,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32127,abe0afda-09da-48be-b726-8dbaab668649,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32128,9919e137-cfc2-4125-8836-f8ee3cb89b62,LIST_ACCOUNTS,xs2aListAccounts,true -32129,9919e137-cfc2-4125-8836-f8ee3cb89b62,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32129,9919e137-cfc2-4125-8836-f8ee3cb89b62,LIST_TRANSACTIONS,xs2aListTransactions,true 32130,9919e137-cfc2-4125-8836-f8ee3cb89b62,AUTHORIZATION,,true 32131,9919e137-cfc2-4125-8836-f8ee3cb89b62,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32132,9919e137-cfc2-4125-8836-f8ee3cb89b62,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32133,9919e137-cfc2-4125-8836-f8ee3cb89b62,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32134,66cbc7bd-356d-42ce-90e9-b5a8204e77dc,LIST_ACCOUNTS,hbciListAccounts,false -32135,66cbc7bd-356d-42ce-90e9-b5a8204e77dc,LIST_TRANSACTIONS,hbciListTransactions,false -32136,66cbc7bd-356d-42ce-90e9-b5a8204e77dc,AUTHORIZATION,,false -32137,66cbc7bd-356d-42ce-90e9-b5a8204e77dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32138,66cbc7bd-356d-42ce-90e9-b5a8204e77dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32139,66cbc7bd-356d-42ce-90e9-b5a8204e77dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32134,455baf9f-1541-4712-b517-803c6c5f485b,LIST_ACCOUNTS,hbciListAccounts,false +32135,455baf9f-1541-4712-b517-803c6c5f485b,LIST_TRANSACTIONS,hbciListTransactions,false +32136,455baf9f-1541-4712-b517-803c6c5f485b,AUTHORIZATION,,false +32137,455baf9f-1541-4712-b517-803c6c5f485b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32138,455baf9f-1541-4712-b517-803c6c5f485b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32139,455baf9f-1541-4712-b517-803c6c5f485b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32140,1c5e9392-edc2-447a-9af9-4827eaa26bf2,LIST_ACCOUNTS,xs2aListAccounts,true -32141,1c5e9392-edc2-447a-9af9-4827eaa26bf2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32141,1c5e9392-edc2-447a-9af9-4827eaa26bf2,LIST_TRANSACTIONS,xs2aListTransactions,true 32142,1c5e9392-edc2-447a-9af9-4827eaa26bf2,AUTHORIZATION,,true 32143,1c5e9392-edc2-447a-9af9-4827eaa26bf2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32144,1c5e9392-edc2-447a-9af9-4827eaa26bf2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32145,1c5e9392-edc2-447a-9af9-4827eaa26bf2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32146,d29111e8-72c0-4b75-8a1a-bc41806115ad,LIST_ACCOUNTS,hbciListAccounts,false -32147,d29111e8-72c0-4b75-8a1a-bc41806115ad,LIST_TRANSACTIONS,hbciListTransactions,false -32148,d29111e8-72c0-4b75-8a1a-bc41806115ad,AUTHORIZATION,,false -32149,d29111e8-72c0-4b75-8a1a-bc41806115ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32150,d29111e8-72c0-4b75-8a1a-bc41806115ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32151,d29111e8-72c0-4b75-8a1a-bc41806115ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32146,128a353f-af6a-4882-8960-5052c1c0490f,LIST_ACCOUNTS,hbciListAccounts,false +32147,128a353f-af6a-4882-8960-5052c1c0490f,LIST_TRANSACTIONS,hbciListTransactions,false +32148,128a353f-af6a-4882-8960-5052c1c0490f,AUTHORIZATION,,false +32149,128a353f-af6a-4882-8960-5052c1c0490f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32150,128a353f-af6a-4882-8960-5052c1c0490f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32151,128a353f-af6a-4882-8960-5052c1c0490f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32152,be7ab354-7dae-4823-bc3a-bb1a5d9534c7,LIST_ACCOUNTS,xs2aListAccounts,true -32153,be7ab354-7dae-4823-bc3a-bb1a5d9534c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32153,be7ab354-7dae-4823-bc3a-bb1a5d9534c7,LIST_TRANSACTIONS,xs2aListTransactions,true 32154,be7ab354-7dae-4823-bc3a-bb1a5d9534c7,AUTHORIZATION,,true 32155,be7ab354-7dae-4823-bc3a-bb1a5d9534c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32156,be7ab354-7dae-4823-bc3a-bb1a5d9534c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32157,be7ab354-7dae-4823-bc3a-bb1a5d9534c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32158,e7b2d9ae-3de8-4f1f-98e8-e9d6586aca7f,LIST_ACCOUNTS,hbciListAccounts,false -32159,e7b2d9ae-3de8-4f1f-98e8-e9d6586aca7f,LIST_TRANSACTIONS,hbciListTransactions,false -32160,e7b2d9ae-3de8-4f1f-98e8-e9d6586aca7f,AUTHORIZATION,,false -32161,e7b2d9ae-3de8-4f1f-98e8-e9d6586aca7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32162,e7b2d9ae-3de8-4f1f-98e8-e9d6586aca7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32163,e7b2d9ae-3de8-4f1f-98e8-e9d6586aca7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32158,845637c4-0b40-48cf-b3a0-5a84da868497,LIST_ACCOUNTS,hbciListAccounts,false +32159,845637c4-0b40-48cf-b3a0-5a84da868497,LIST_TRANSACTIONS,hbciListTransactions,false +32160,845637c4-0b40-48cf-b3a0-5a84da868497,AUTHORIZATION,,false +32161,845637c4-0b40-48cf-b3a0-5a84da868497,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32162,845637c4-0b40-48cf-b3a0-5a84da868497,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32163,845637c4-0b40-48cf-b3a0-5a84da868497,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32164,94039166-d852-447f-95bb-e72a59e5b4c4,LIST_ACCOUNTS,xs2aListAccounts,true -32165,94039166-d852-447f-95bb-e72a59e5b4c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32165,94039166-d852-447f-95bb-e72a59e5b4c4,LIST_TRANSACTIONS,xs2aListTransactions,true 32166,94039166-d852-447f-95bb-e72a59e5b4c4,AUTHORIZATION,,true 32167,94039166-d852-447f-95bb-e72a59e5b4c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32168,94039166-d852-447f-95bb-e72a59e5b4c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32169,94039166-d852-447f-95bb-e72a59e5b4c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32170,f82c9528-16b6-43c0-821e-439862d791dc,LIST_ACCOUNTS,hbciListAccounts,false -32171,f82c9528-16b6-43c0-821e-439862d791dc,LIST_TRANSACTIONS,hbciListTransactions,false -32172,f82c9528-16b6-43c0-821e-439862d791dc,AUTHORIZATION,,false -32173,f82c9528-16b6-43c0-821e-439862d791dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32174,f82c9528-16b6-43c0-821e-439862d791dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32175,f82c9528-16b6-43c0-821e-439862d791dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32170,34b45ee1-44fa-4833-8968-a53a2fe58682,LIST_ACCOUNTS,hbciListAccounts,false +32171,34b45ee1-44fa-4833-8968-a53a2fe58682,LIST_TRANSACTIONS,hbciListTransactions,false +32172,34b45ee1-44fa-4833-8968-a53a2fe58682,AUTHORIZATION,,false +32173,34b45ee1-44fa-4833-8968-a53a2fe58682,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32174,34b45ee1-44fa-4833-8968-a53a2fe58682,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32175,34b45ee1-44fa-4833-8968-a53a2fe58682,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32176,2d6d1042-8262-4fad-af03-156324a941c6,LIST_ACCOUNTS,xs2aListAccounts,true -32177,2d6d1042-8262-4fad-af03-156324a941c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32177,2d6d1042-8262-4fad-af03-156324a941c6,LIST_TRANSACTIONS,xs2aListTransactions,true 32178,2d6d1042-8262-4fad-af03-156324a941c6,AUTHORIZATION,,true 32179,2d6d1042-8262-4fad-af03-156324a941c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32180,2d6d1042-8262-4fad-af03-156324a941c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32181,2d6d1042-8262-4fad-af03-156324a941c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32182,db8203dc-6d29-40a7-a0b7-a6aecb99c559,LIST_ACCOUNTS,hbciListAccounts,false -32183,db8203dc-6d29-40a7-a0b7-a6aecb99c559,LIST_TRANSACTIONS,hbciListTransactions,false -32184,db8203dc-6d29-40a7-a0b7-a6aecb99c559,AUTHORIZATION,,false -32185,db8203dc-6d29-40a7-a0b7-a6aecb99c559,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32186,db8203dc-6d29-40a7-a0b7-a6aecb99c559,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32187,db8203dc-6d29-40a7-a0b7-a6aecb99c559,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32182,6dab4564-6e7a-418a-8dda-3557c7a525a9,LIST_ACCOUNTS,hbciListAccounts,false +32183,6dab4564-6e7a-418a-8dda-3557c7a525a9,LIST_TRANSACTIONS,hbciListTransactions,false +32184,6dab4564-6e7a-418a-8dda-3557c7a525a9,AUTHORIZATION,,false +32185,6dab4564-6e7a-418a-8dda-3557c7a525a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32186,6dab4564-6e7a-418a-8dda-3557c7a525a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32187,6dab4564-6e7a-418a-8dda-3557c7a525a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32188,d5bf09be-72ef-4ce0-91b7-e30dc1bd74c7,LIST_ACCOUNTS,xs2aListAccounts,true -32189,d5bf09be-72ef-4ce0-91b7-e30dc1bd74c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32189,d5bf09be-72ef-4ce0-91b7-e30dc1bd74c7,LIST_TRANSACTIONS,xs2aListTransactions,true 32190,d5bf09be-72ef-4ce0-91b7-e30dc1bd74c7,AUTHORIZATION,,true 32191,d5bf09be-72ef-4ce0-91b7-e30dc1bd74c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32192,d5bf09be-72ef-4ce0-91b7-e30dc1bd74c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32193,d5bf09be-72ef-4ce0-91b7-e30dc1bd74c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32194,02071d91-545a-43ac-af6c-d744f03c193d,LIST_ACCOUNTS,hbciListAccounts,false -32195,02071d91-545a-43ac-af6c-d744f03c193d,LIST_TRANSACTIONS,hbciListTransactions,false -32196,02071d91-545a-43ac-af6c-d744f03c193d,AUTHORIZATION,,false -32197,02071d91-545a-43ac-af6c-d744f03c193d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32198,02071d91-545a-43ac-af6c-d744f03c193d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32199,02071d91-545a-43ac-af6c-d744f03c193d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32194,ab46baa5-0baa-4b62-a0b8-d462c3f61ea4,LIST_ACCOUNTS,hbciListAccounts,false +32195,ab46baa5-0baa-4b62-a0b8-d462c3f61ea4,LIST_TRANSACTIONS,hbciListTransactions,false +32196,ab46baa5-0baa-4b62-a0b8-d462c3f61ea4,AUTHORIZATION,,false +32197,ab46baa5-0baa-4b62-a0b8-d462c3f61ea4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32198,ab46baa5-0baa-4b62-a0b8-d462c3f61ea4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32199,ab46baa5-0baa-4b62-a0b8-d462c3f61ea4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32200,ad7137ec-e27d-4573-bcf4-2b9bcac10e8e,LIST_ACCOUNTS,xs2aListAccounts,true -32201,ad7137ec-e27d-4573-bcf4-2b9bcac10e8e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32201,ad7137ec-e27d-4573-bcf4-2b9bcac10e8e,LIST_TRANSACTIONS,xs2aListTransactions,true 32202,ad7137ec-e27d-4573-bcf4-2b9bcac10e8e,AUTHORIZATION,,true 32203,ad7137ec-e27d-4573-bcf4-2b9bcac10e8e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32204,ad7137ec-e27d-4573-bcf4-2b9bcac10e8e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32205,ad7137ec-e27d-4573-bcf4-2b9bcac10e8e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32206,0fc7c4b7-b6e6-42d3-984d-87cb572df84b,LIST_ACCOUNTS,hbciListAccounts,false -32207,0fc7c4b7-b6e6-42d3-984d-87cb572df84b,LIST_TRANSACTIONS,hbciListTransactions,false -32208,0fc7c4b7-b6e6-42d3-984d-87cb572df84b,AUTHORIZATION,,false -32209,0fc7c4b7-b6e6-42d3-984d-87cb572df84b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32210,0fc7c4b7-b6e6-42d3-984d-87cb572df84b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32211,0fc7c4b7-b6e6-42d3-984d-87cb572df84b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32206,9d8eb9b4-8549-467a-a130-f057ef2d40cd,LIST_ACCOUNTS,hbciListAccounts,false +32207,9d8eb9b4-8549-467a-a130-f057ef2d40cd,LIST_TRANSACTIONS,hbciListTransactions,false +32208,9d8eb9b4-8549-467a-a130-f057ef2d40cd,AUTHORIZATION,,false +32209,9d8eb9b4-8549-467a-a130-f057ef2d40cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32210,9d8eb9b4-8549-467a-a130-f057ef2d40cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32211,9d8eb9b4-8549-467a-a130-f057ef2d40cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32212,322b86b9-561c-4e98-849d-bde1c9dafaa0,LIST_ACCOUNTS,xs2aListAccounts,true -32213,322b86b9-561c-4e98-849d-bde1c9dafaa0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32213,322b86b9-561c-4e98-849d-bde1c9dafaa0,LIST_TRANSACTIONS,xs2aListTransactions,true 32214,322b86b9-561c-4e98-849d-bde1c9dafaa0,AUTHORIZATION,,true 32215,322b86b9-561c-4e98-849d-bde1c9dafaa0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32216,322b86b9-561c-4e98-849d-bde1c9dafaa0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32217,322b86b9-561c-4e98-849d-bde1c9dafaa0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32218,dc11dff0-72c5-4fc5-b5c9-1801e1768527,LIST_ACCOUNTS,hbciListAccounts,false -32219,dc11dff0-72c5-4fc5-b5c9-1801e1768527,LIST_TRANSACTIONS,hbciListTransactions,false -32220,dc11dff0-72c5-4fc5-b5c9-1801e1768527,AUTHORIZATION,,false -32221,dc11dff0-72c5-4fc5-b5c9-1801e1768527,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32222,dc11dff0-72c5-4fc5-b5c9-1801e1768527,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32223,dc11dff0-72c5-4fc5-b5c9-1801e1768527,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32218,08fed855-6a66-4cfe-9f8c-46e510d5ed04,LIST_ACCOUNTS,hbciListAccounts,false +32219,08fed855-6a66-4cfe-9f8c-46e510d5ed04,LIST_TRANSACTIONS,hbciListTransactions,false +32220,08fed855-6a66-4cfe-9f8c-46e510d5ed04,AUTHORIZATION,,false +32221,08fed855-6a66-4cfe-9f8c-46e510d5ed04,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32222,08fed855-6a66-4cfe-9f8c-46e510d5ed04,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32223,08fed855-6a66-4cfe-9f8c-46e510d5ed04,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32224,703092b6-d4bb-4fdd-afb4-efbaa9aaf811,LIST_ACCOUNTS,xs2aListAccounts,true -32225,703092b6-d4bb-4fdd-afb4-efbaa9aaf811,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32225,703092b6-d4bb-4fdd-afb4-efbaa9aaf811,LIST_TRANSACTIONS,xs2aListTransactions,true 32226,703092b6-d4bb-4fdd-afb4-efbaa9aaf811,AUTHORIZATION,,true 32227,703092b6-d4bb-4fdd-afb4-efbaa9aaf811,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32228,703092b6-d4bb-4fdd-afb4-efbaa9aaf811,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32229,703092b6-d4bb-4fdd-afb4-efbaa9aaf811,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32230,78a351e0-1b0c-42fa-9782-5ddcc629a1c8,LIST_ACCOUNTS,hbciListAccounts,false -32231,78a351e0-1b0c-42fa-9782-5ddcc629a1c8,LIST_TRANSACTIONS,hbciListTransactions,false -32232,78a351e0-1b0c-42fa-9782-5ddcc629a1c8,AUTHORIZATION,,false -32233,78a351e0-1b0c-42fa-9782-5ddcc629a1c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32234,78a351e0-1b0c-42fa-9782-5ddcc629a1c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32235,78a351e0-1b0c-42fa-9782-5ddcc629a1c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32230,512a913b-4fa9-4519-a57f-5bb219956fcc,LIST_ACCOUNTS,hbciListAccounts,false +32231,512a913b-4fa9-4519-a57f-5bb219956fcc,LIST_TRANSACTIONS,hbciListTransactions,false +32232,512a913b-4fa9-4519-a57f-5bb219956fcc,AUTHORIZATION,,false +32233,512a913b-4fa9-4519-a57f-5bb219956fcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32234,512a913b-4fa9-4519-a57f-5bb219956fcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32235,512a913b-4fa9-4519-a57f-5bb219956fcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32236,82409c74-2585-44eb-a148-b11959a6ff7d,LIST_ACCOUNTS,xs2aListAccounts,true -32237,82409c74-2585-44eb-a148-b11959a6ff7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32237,82409c74-2585-44eb-a148-b11959a6ff7d,LIST_TRANSACTIONS,xs2aListTransactions,true 32238,82409c74-2585-44eb-a148-b11959a6ff7d,AUTHORIZATION,,true 32239,82409c74-2585-44eb-a148-b11959a6ff7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32240,82409c74-2585-44eb-a148-b11959a6ff7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32241,82409c74-2585-44eb-a148-b11959a6ff7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32242,b54deabb-9743-451e-a6bb-64c79675b67f,LIST_ACCOUNTS,hbciListAccounts,false -32243,b54deabb-9743-451e-a6bb-64c79675b67f,LIST_TRANSACTIONS,hbciListTransactions,false -32244,b54deabb-9743-451e-a6bb-64c79675b67f,AUTHORIZATION,,false -32245,b54deabb-9743-451e-a6bb-64c79675b67f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32246,b54deabb-9743-451e-a6bb-64c79675b67f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32247,b54deabb-9743-451e-a6bb-64c79675b67f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32242,457c3feb-b2e8-443b-ad45-1404a87ee918,LIST_ACCOUNTS,hbciListAccounts,false +32243,457c3feb-b2e8-443b-ad45-1404a87ee918,LIST_TRANSACTIONS,hbciListTransactions,false +32244,457c3feb-b2e8-443b-ad45-1404a87ee918,AUTHORIZATION,,false +32245,457c3feb-b2e8-443b-ad45-1404a87ee918,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32246,457c3feb-b2e8-443b-ad45-1404a87ee918,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32247,457c3feb-b2e8-443b-ad45-1404a87ee918,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32248,a9558001-79fb-4aa4-8f96-f3d405797e63,LIST_ACCOUNTS,xs2aListAccounts,true -32249,a9558001-79fb-4aa4-8f96-f3d405797e63,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32249,a9558001-79fb-4aa4-8f96-f3d405797e63,LIST_TRANSACTIONS,xs2aListTransactions,true 32250,a9558001-79fb-4aa4-8f96-f3d405797e63,AUTHORIZATION,,true 32251,a9558001-79fb-4aa4-8f96-f3d405797e63,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32252,a9558001-79fb-4aa4-8f96-f3d405797e63,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32253,a9558001-79fb-4aa4-8f96-f3d405797e63,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32254,8d26b806-4536-4734-96a3-34b79911f708,LIST_ACCOUNTS,hbciListAccounts,false -32255,8d26b806-4536-4734-96a3-34b79911f708,LIST_TRANSACTIONS,hbciListTransactions,false -32256,8d26b806-4536-4734-96a3-34b79911f708,AUTHORIZATION,,false -32257,8d26b806-4536-4734-96a3-34b79911f708,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32258,8d26b806-4536-4734-96a3-34b79911f708,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32259,8d26b806-4536-4734-96a3-34b79911f708,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32254,ceb79357-476c-44e5-9909-bdd83471e7f0,LIST_ACCOUNTS,hbciListAccounts,false +32255,ceb79357-476c-44e5-9909-bdd83471e7f0,LIST_TRANSACTIONS,hbciListTransactions,false +32256,ceb79357-476c-44e5-9909-bdd83471e7f0,AUTHORIZATION,,false +32257,ceb79357-476c-44e5-9909-bdd83471e7f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32258,ceb79357-476c-44e5-9909-bdd83471e7f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32259,ceb79357-476c-44e5-9909-bdd83471e7f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32260,9feb85a3-eb69-4767-98ed-f5f7ed543bc6,LIST_ACCOUNTS,xs2aListAccounts,true -32261,9feb85a3-eb69-4767-98ed-f5f7ed543bc6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32261,9feb85a3-eb69-4767-98ed-f5f7ed543bc6,LIST_TRANSACTIONS,xs2aListTransactions,true 32262,9feb85a3-eb69-4767-98ed-f5f7ed543bc6,AUTHORIZATION,,true 32263,9feb85a3-eb69-4767-98ed-f5f7ed543bc6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32264,9feb85a3-eb69-4767-98ed-f5f7ed543bc6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32265,9feb85a3-eb69-4767-98ed-f5f7ed543bc6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32266,58d168cd-da21-45c7-9329-8e784ad83280,LIST_ACCOUNTS,hbciListAccounts,false -32267,58d168cd-da21-45c7-9329-8e784ad83280,LIST_TRANSACTIONS,hbciListTransactions,false -32268,58d168cd-da21-45c7-9329-8e784ad83280,AUTHORIZATION,,false -32269,58d168cd-da21-45c7-9329-8e784ad83280,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32270,58d168cd-da21-45c7-9329-8e784ad83280,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32271,58d168cd-da21-45c7-9329-8e784ad83280,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32266,d65617d1-5ec6-46b8-b888-b1073916a92e,LIST_ACCOUNTS,hbciListAccounts,false +32267,d65617d1-5ec6-46b8-b888-b1073916a92e,LIST_TRANSACTIONS,hbciListTransactions,false +32268,d65617d1-5ec6-46b8-b888-b1073916a92e,AUTHORIZATION,,false +32269,d65617d1-5ec6-46b8-b888-b1073916a92e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32270,d65617d1-5ec6-46b8-b888-b1073916a92e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32271,d65617d1-5ec6-46b8-b888-b1073916a92e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32272,64c155d7-227d-4324-84aa-ca5b528a6e16,LIST_ACCOUNTS,xs2aListAccounts,true -32273,64c155d7-227d-4324-84aa-ca5b528a6e16,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32273,64c155d7-227d-4324-84aa-ca5b528a6e16,LIST_TRANSACTIONS,xs2aListTransactions,true 32274,64c155d7-227d-4324-84aa-ca5b528a6e16,AUTHORIZATION,,true 32275,64c155d7-227d-4324-84aa-ca5b528a6e16,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32276,64c155d7-227d-4324-84aa-ca5b528a6e16,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32277,64c155d7-227d-4324-84aa-ca5b528a6e16,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32278,b0e8a80c-d370-4674-9151-94526a944491,LIST_ACCOUNTS,hbciListAccounts,false -32279,b0e8a80c-d370-4674-9151-94526a944491,LIST_TRANSACTIONS,hbciListTransactions,false -32280,b0e8a80c-d370-4674-9151-94526a944491,AUTHORIZATION,,false -32281,b0e8a80c-d370-4674-9151-94526a944491,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32282,b0e8a80c-d370-4674-9151-94526a944491,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32283,b0e8a80c-d370-4674-9151-94526a944491,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32278,acd18a75-f690-4c54-9bb8-3f917b2a9c7d,LIST_ACCOUNTS,hbciListAccounts,false +32279,acd18a75-f690-4c54-9bb8-3f917b2a9c7d,LIST_TRANSACTIONS,hbciListTransactions,false +32280,acd18a75-f690-4c54-9bb8-3f917b2a9c7d,AUTHORIZATION,,false +32281,acd18a75-f690-4c54-9bb8-3f917b2a9c7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32282,acd18a75-f690-4c54-9bb8-3f917b2a9c7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32283,acd18a75-f690-4c54-9bb8-3f917b2a9c7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32284,acd5e8d2-f97b-4c5a-8bd4-8a2cc193d823,LIST_ACCOUNTS,xs2aListAccounts,true -32285,acd5e8d2-f97b-4c5a-8bd4-8a2cc193d823,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32285,acd5e8d2-f97b-4c5a-8bd4-8a2cc193d823,LIST_TRANSACTIONS,xs2aListTransactions,true 32286,acd5e8d2-f97b-4c5a-8bd4-8a2cc193d823,AUTHORIZATION,,true 32287,acd5e8d2-f97b-4c5a-8bd4-8a2cc193d823,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32288,acd5e8d2-f97b-4c5a-8bd4-8a2cc193d823,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32289,acd5e8d2-f97b-4c5a-8bd4-8a2cc193d823,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32290,732e55b3-324c-4d72-abc2-27c3d739a18d,LIST_ACCOUNTS,hbciListAccounts,false -32291,732e55b3-324c-4d72-abc2-27c3d739a18d,LIST_TRANSACTIONS,hbciListTransactions,false -32292,732e55b3-324c-4d72-abc2-27c3d739a18d,AUTHORIZATION,,false -32293,732e55b3-324c-4d72-abc2-27c3d739a18d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32294,732e55b3-324c-4d72-abc2-27c3d739a18d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32295,732e55b3-324c-4d72-abc2-27c3d739a18d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32290,e94ee510-9d36-4037-92c6-0d2cd2e9b81b,LIST_ACCOUNTS,hbciListAccounts,false +32291,e94ee510-9d36-4037-92c6-0d2cd2e9b81b,LIST_TRANSACTIONS,hbciListTransactions,false +32292,e94ee510-9d36-4037-92c6-0d2cd2e9b81b,AUTHORIZATION,,false +32293,e94ee510-9d36-4037-92c6-0d2cd2e9b81b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32294,e94ee510-9d36-4037-92c6-0d2cd2e9b81b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32295,e94ee510-9d36-4037-92c6-0d2cd2e9b81b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32296,3079d6e6-6632-4b4a-bb2d-8eb006bcaefc,LIST_ACCOUNTS,xs2aListAccounts,true -32297,3079d6e6-6632-4b4a-bb2d-8eb006bcaefc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32297,3079d6e6-6632-4b4a-bb2d-8eb006bcaefc,LIST_TRANSACTIONS,xs2aListTransactions,true 32298,3079d6e6-6632-4b4a-bb2d-8eb006bcaefc,AUTHORIZATION,,true 32299,3079d6e6-6632-4b4a-bb2d-8eb006bcaefc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32300,3079d6e6-6632-4b4a-bb2d-8eb006bcaefc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32301,3079d6e6-6632-4b4a-bb2d-8eb006bcaefc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32302,77e1de46-a058-47db-95b8-09332ea81a32,LIST_ACCOUNTS,hbciListAccounts,false -32303,77e1de46-a058-47db-95b8-09332ea81a32,LIST_TRANSACTIONS,hbciListTransactions,false -32304,77e1de46-a058-47db-95b8-09332ea81a32,AUTHORIZATION,,false -32305,77e1de46-a058-47db-95b8-09332ea81a32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32306,77e1de46-a058-47db-95b8-09332ea81a32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32307,77e1de46-a058-47db-95b8-09332ea81a32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32302,52716baf-7844-4b90-916e-31d605598a01,LIST_ACCOUNTS,hbciListAccounts,false +32303,52716baf-7844-4b90-916e-31d605598a01,LIST_TRANSACTIONS,hbciListTransactions,false +32304,52716baf-7844-4b90-916e-31d605598a01,AUTHORIZATION,,false +32305,52716baf-7844-4b90-916e-31d605598a01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32306,52716baf-7844-4b90-916e-31d605598a01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32307,52716baf-7844-4b90-916e-31d605598a01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32308,43265f6e-244a-40e3-8025-f211036f0e1f,LIST_ACCOUNTS,xs2aListAccounts,true -32309,43265f6e-244a-40e3-8025-f211036f0e1f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32309,43265f6e-244a-40e3-8025-f211036f0e1f,LIST_TRANSACTIONS,xs2aListTransactions,true 32310,43265f6e-244a-40e3-8025-f211036f0e1f,AUTHORIZATION,,true 32311,43265f6e-244a-40e3-8025-f211036f0e1f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32312,43265f6e-244a-40e3-8025-f211036f0e1f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32313,43265f6e-244a-40e3-8025-f211036f0e1f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32314,af4de221-8840-42fa-9b6b-5e4a0aa10b03,LIST_ACCOUNTS,hbciListAccounts,false -32315,af4de221-8840-42fa-9b6b-5e4a0aa10b03,LIST_TRANSACTIONS,hbciListTransactions,false -32316,af4de221-8840-42fa-9b6b-5e4a0aa10b03,AUTHORIZATION,,false -32317,af4de221-8840-42fa-9b6b-5e4a0aa10b03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32318,af4de221-8840-42fa-9b6b-5e4a0aa10b03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32319,af4de221-8840-42fa-9b6b-5e4a0aa10b03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32314,22d37ca1-319c-4186-aad4-4a141270db6a,LIST_ACCOUNTS,hbciListAccounts,false +32315,22d37ca1-319c-4186-aad4-4a141270db6a,LIST_TRANSACTIONS,hbciListTransactions,false +32316,22d37ca1-319c-4186-aad4-4a141270db6a,AUTHORIZATION,,false +32317,22d37ca1-319c-4186-aad4-4a141270db6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32318,22d37ca1-319c-4186-aad4-4a141270db6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32319,22d37ca1-319c-4186-aad4-4a141270db6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32320,f4fba4cf-d5f7-4033-8cc6-72239f778233,LIST_ACCOUNTS,xs2aListAccounts,true -32321,f4fba4cf-d5f7-4033-8cc6-72239f778233,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32321,f4fba4cf-d5f7-4033-8cc6-72239f778233,LIST_TRANSACTIONS,xs2aListTransactions,true 32322,f4fba4cf-d5f7-4033-8cc6-72239f778233,AUTHORIZATION,,true 32323,f4fba4cf-d5f7-4033-8cc6-72239f778233,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32324,f4fba4cf-d5f7-4033-8cc6-72239f778233,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32325,f4fba4cf-d5f7-4033-8cc6-72239f778233,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32326,4a399794-b31f-4f80-9a54-d8b6e67c65b7,LIST_ACCOUNTS,hbciListAccounts,false -32327,4a399794-b31f-4f80-9a54-d8b6e67c65b7,LIST_TRANSACTIONS,hbciListTransactions,false -32328,4a399794-b31f-4f80-9a54-d8b6e67c65b7,AUTHORIZATION,,false -32329,4a399794-b31f-4f80-9a54-d8b6e67c65b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32330,4a399794-b31f-4f80-9a54-d8b6e67c65b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32331,4a399794-b31f-4f80-9a54-d8b6e67c65b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32326,8596c171-617e-4978-bb99-6a4e815cab14,LIST_ACCOUNTS,hbciListAccounts,false +32327,8596c171-617e-4978-bb99-6a4e815cab14,LIST_TRANSACTIONS,hbciListTransactions,false +32328,8596c171-617e-4978-bb99-6a4e815cab14,AUTHORIZATION,,false +32329,8596c171-617e-4978-bb99-6a4e815cab14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32330,8596c171-617e-4978-bb99-6a4e815cab14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32331,8596c171-617e-4978-bb99-6a4e815cab14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32332,9c7dee33-ef93-44be-aba0-d5567d79df04,LIST_ACCOUNTS,xs2aListAccounts,true -32333,9c7dee33-ef93-44be-aba0-d5567d79df04,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32333,9c7dee33-ef93-44be-aba0-d5567d79df04,LIST_TRANSACTIONS,xs2aListTransactions,true 32334,9c7dee33-ef93-44be-aba0-d5567d79df04,AUTHORIZATION,,true 32335,9c7dee33-ef93-44be-aba0-d5567d79df04,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32336,9c7dee33-ef93-44be-aba0-d5567d79df04,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32337,9c7dee33-ef93-44be-aba0-d5567d79df04,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32338,c3c8ac4a-c9e1-4310-abaa-089d76bab313,LIST_ACCOUNTS,hbciListAccounts,false -32339,c3c8ac4a-c9e1-4310-abaa-089d76bab313,LIST_TRANSACTIONS,hbciListTransactions,false -32340,c3c8ac4a-c9e1-4310-abaa-089d76bab313,AUTHORIZATION,,false -32341,c3c8ac4a-c9e1-4310-abaa-089d76bab313,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32342,c3c8ac4a-c9e1-4310-abaa-089d76bab313,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32343,c3c8ac4a-c9e1-4310-abaa-089d76bab313,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32338,33c52951-a910-4e98-a8ba-85490a3e8a50,LIST_ACCOUNTS,hbciListAccounts,false +32339,33c52951-a910-4e98-a8ba-85490a3e8a50,LIST_TRANSACTIONS,hbciListTransactions,false +32340,33c52951-a910-4e98-a8ba-85490a3e8a50,AUTHORIZATION,,false +32341,33c52951-a910-4e98-a8ba-85490a3e8a50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32342,33c52951-a910-4e98-a8ba-85490a3e8a50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32343,33c52951-a910-4e98-a8ba-85490a3e8a50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32344,dc2f10b7-904c-45d9-a534-bad1afb1f2ee,LIST_ACCOUNTS,xs2aListAccounts,true -32345,dc2f10b7-904c-45d9-a534-bad1afb1f2ee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32345,dc2f10b7-904c-45d9-a534-bad1afb1f2ee,LIST_TRANSACTIONS,xs2aListTransactions,true 32346,dc2f10b7-904c-45d9-a534-bad1afb1f2ee,AUTHORIZATION,,true 32347,dc2f10b7-904c-45d9-a534-bad1afb1f2ee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32348,dc2f10b7-904c-45d9-a534-bad1afb1f2ee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32349,dc2f10b7-904c-45d9-a534-bad1afb1f2ee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32350,002bdf69-542d-4da2-87c9-739a4dde7919,LIST_ACCOUNTS,hbciListAccounts,false -32351,002bdf69-542d-4da2-87c9-739a4dde7919,LIST_TRANSACTIONS,hbciListTransactions,false -32352,002bdf69-542d-4da2-87c9-739a4dde7919,AUTHORIZATION,,false -32353,002bdf69-542d-4da2-87c9-739a4dde7919,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32354,002bdf69-542d-4da2-87c9-739a4dde7919,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32355,002bdf69-542d-4da2-87c9-739a4dde7919,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32350,fb61e50b-bff6-468a-bf9d-1e4f6c9a58a8,LIST_ACCOUNTS,hbciListAccounts,false +32351,fb61e50b-bff6-468a-bf9d-1e4f6c9a58a8,LIST_TRANSACTIONS,hbciListTransactions,false +32352,fb61e50b-bff6-468a-bf9d-1e4f6c9a58a8,AUTHORIZATION,,false +32353,fb61e50b-bff6-468a-bf9d-1e4f6c9a58a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32354,fb61e50b-bff6-468a-bf9d-1e4f6c9a58a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32355,fb61e50b-bff6-468a-bf9d-1e4f6c9a58a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32356,5a71a998-8094-43a9-8a01-3fb3008d1629,LIST_ACCOUNTS,xs2aListAccounts,true -32357,5a71a998-8094-43a9-8a01-3fb3008d1629,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32357,5a71a998-8094-43a9-8a01-3fb3008d1629,LIST_TRANSACTIONS,xs2aListTransactions,true 32358,5a71a998-8094-43a9-8a01-3fb3008d1629,AUTHORIZATION,,true 32359,5a71a998-8094-43a9-8a01-3fb3008d1629,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32360,5a71a998-8094-43a9-8a01-3fb3008d1629,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32361,5a71a998-8094-43a9-8a01-3fb3008d1629,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32362,4087e5f8-13fa-41d2-94b5-676a5c308272,LIST_ACCOUNTS,hbciListAccounts,false -32363,4087e5f8-13fa-41d2-94b5-676a5c308272,LIST_TRANSACTIONS,hbciListTransactions,false -32364,4087e5f8-13fa-41d2-94b5-676a5c308272,AUTHORIZATION,,false -32365,4087e5f8-13fa-41d2-94b5-676a5c308272,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32366,4087e5f8-13fa-41d2-94b5-676a5c308272,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32367,4087e5f8-13fa-41d2-94b5-676a5c308272,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32362,3060f3f5-70ed-41d4-a1ef-2c0de33990df,LIST_ACCOUNTS,hbciListAccounts,false +32363,3060f3f5-70ed-41d4-a1ef-2c0de33990df,LIST_TRANSACTIONS,hbciListTransactions,false +32364,3060f3f5-70ed-41d4-a1ef-2c0de33990df,AUTHORIZATION,,false +32365,3060f3f5-70ed-41d4-a1ef-2c0de33990df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32366,3060f3f5-70ed-41d4-a1ef-2c0de33990df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32367,3060f3f5-70ed-41d4-a1ef-2c0de33990df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32368,1b881e76-7e30-447a-9f0a-7064efa02ed7,LIST_ACCOUNTS,xs2aListAccounts,true -32369,1b881e76-7e30-447a-9f0a-7064efa02ed7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32369,1b881e76-7e30-447a-9f0a-7064efa02ed7,LIST_TRANSACTIONS,xs2aListTransactions,true 32370,1b881e76-7e30-447a-9f0a-7064efa02ed7,AUTHORIZATION,,true 32371,1b881e76-7e30-447a-9f0a-7064efa02ed7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32372,1b881e76-7e30-447a-9f0a-7064efa02ed7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32373,1b881e76-7e30-447a-9f0a-7064efa02ed7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32374,67560fcc-79ce-49d9-a137-10d05cf55596,LIST_ACCOUNTS,hbciListAccounts,false -32375,67560fcc-79ce-49d9-a137-10d05cf55596,LIST_TRANSACTIONS,hbciListTransactions,false -32376,67560fcc-79ce-49d9-a137-10d05cf55596,AUTHORIZATION,,false -32377,67560fcc-79ce-49d9-a137-10d05cf55596,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32378,67560fcc-79ce-49d9-a137-10d05cf55596,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32379,67560fcc-79ce-49d9-a137-10d05cf55596,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32374,47d7e691-dac0-4532-a574-a0085ca3cdf6,LIST_ACCOUNTS,hbciListAccounts,false +32375,47d7e691-dac0-4532-a574-a0085ca3cdf6,LIST_TRANSACTIONS,hbciListTransactions,false +32376,47d7e691-dac0-4532-a574-a0085ca3cdf6,AUTHORIZATION,,false +32377,47d7e691-dac0-4532-a574-a0085ca3cdf6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32378,47d7e691-dac0-4532-a574-a0085ca3cdf6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32379,47d7e691-dac0-4532-a574-a0085ca3cdf6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32380,b87f6617-5ba2-4b43-9340-48003a221356,LIST_ACCOUNTS,xs2aListAccounts,true -32381,b87f6617-5ba2-4b43-9340-48003a221356,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32381,b87f6617-5ba2-4b43-9340-48003a221356,LIST_TRANSACTIONS,xs2aListTransactions,true 32382,b87f6617-5ba2-4b43-9340-48003a221356,AUTHORIZATION,,true 32383,b87f6617-5ba2-4b43-9340-48003a221356,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32384,b87f6617-5ba2-4b43-9340-48003a221356,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32385,b87f6617-5ba2-4b43-9340-48003a221356,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32386,42f6ab8e-65c7-4677-b293-3fd301fc4bd3,LIST_ACCOUNTS,hbciListAccounts,false -32387,42f6ab8e-65c7-4677-b293-3fd301fc4bd3,LIST_TRANSACTIONS,hbciListTransactions,false -32388,42f6ab8e-65c7-4677-b293-3fd301fc4bd3,AUTHORIZATION,,false -32389,42f6ab8e-65c7-4677-b293-3fd301fc4bd3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32390,42f6ab8e-65c7-4677-b293-3fd301fc4bd3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32391,42f6ab8e-65c7-4677-b293-3fd301fc4bd3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32386,28558b2e-ae5d-47a2-8ef6-5fba401058b4,LIST_ACCOUNTS,hbciListAccounts,false +32387,28558b2e-ae5d-47a2-8ef6-5fba401058b4,LIST_TRANSACTIONS,hbciListTransactions,false +32388,28558b2e-ae5d-47a2-8ef6-5fba401058b4,AUTHORIZATION,,false +32389,28558b2e-ae5d-47a2-8ef6-5fba401058b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32390,28558b2e-ae5d-47a2-8ef6-5fba401058b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32391,28558b2e-ae5d-47a2-8ef6-5fba401058b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32392,9bbbacc9-7b43-4cae-8437-a0d031f891c4,LIST_ACCOUNTS,xs2aListAccounts,true -32393,9bbbacc9-7b43-4cae-8437-a0d031f891c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32393,9bbbacc9-7b43-4cae-8437-a0d031f891c4,LIST_TRANSACTIONS,xs2aListTransactions,true 32394,9bbbacc9-7b43-4cae-8437-a0d031f891c4,AUTHORIZATION,,true 32395,9bbbacc9-7b43-4cae-8437-a0d031f891c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32396,9bbbacc9-7b43-4cae-8437-a0d031f891c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32397,9bbbacc9-7b43-4cae-8437-a0d031f891c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32398,85b15e53-56ec-47b4-979a-0f45719de79e,LIST_ACCOUNTS,hbciListAccounts,false -32399,85b15e53-56ec-47b4-979a-0f45719de79e,LIST_TRANSACTIONS,hbciListTransactions,false -32400,85b15e53-56ec-47b4-979a-0f45719de79e,AUTHORIZATION,,false -32401,85b15e53-56ec-47b4-979a-0f45719de79e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32402,85b15e53-56ec-47b4-979a-0f45719de79e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32403,85b15e53-56ec-47b4-979a-0f45719de79e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32398,d8cdb0a7-173b-4568-8617-230c8d7d8e0d,LIST_ACCOUNTS,hbciListAccounts,false +32399,d8cdb0a7-173b-4568-8617-230c8d7d8e0d,LIST_TRANSACTIONS,hbciListTransactions,false +32400,d8cdb0a7-173b-4568-8617-230c8d7d8e0d,AUTHORIZATION,,false +32401,d8cdb0a7-173b-4568-8617-230c8d7d8e0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32402,d8cdb0a7-173b-4568-8617-230c8d7d8e0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32403,d8cdb0a7-173b-4568-8617-230c8d7d8e0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32404,9de36917-29f3-4e05-8009-da9860fe2e1b,LIST_ACCOUNTS,xs2aListAccounts,true -32405,9de36917-29f3-4e05-8009-da9860fe2e1b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32405,9de36917-29f3-4e05-8009-da9860fe2e1b,LIST_TRANSACTIONS,xs2aListTransactions,true 32406,9de36917-29f3-4e05-8009-da9860fe2e1b,AUTHORIZATION,,true 32407,9de36917-29f3-4e05-8009-da9860fe2e1b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32408,9de36917-29f3-4e05-8009-da9860fe2e1b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32409,9de36917-29f3-4e05-8009-da9860fe2e1b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32410,1b669fec-321b-4767-b03a-e3789413a4e4,LIST_ACCOUNTS,hbciListAccounts,false -32411,1b669fec-321b-4767-b03a-e3789413a4e4,LIST_TRANSACTIONS,hbciListTransactions,false -32412,1b669fec-321b-4767-b03a-e3789413a4e4,AUTHORIZATION,,false -32413,1b669fec-321b-4767-b03a-e3789413a4e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32414,1b669fec-321b-4767-b03a-e3789413a4e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32415,1b669fec-321b-4767-b03a-e3789413a4e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32410,97514630-b838-4697-80e4-085f45f095fa,LIST_ACCOUNTS,hbciListAccounts,false +32411,97514630-b838-4697-80e4-085f45f095fa,LIST_TRANSACTIONS,hbciListTransactions,false +32412,97514630-b838-4697-80e4-085f45f095fa,AUTHORIZATION,,false +32413,97514630-b838-4697-80e4-085f45f095fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32414,97514630-b838-4697-80e4-085f45f095fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32415,97514630-b838-4697-80e4-085f45f095fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32416,0626f3c2-802e-4f28-a7b2-2b9bd23fadc7,LIST_ACCOUNTS,xs2aListAccounts,true -32417,0626f3c2-802e-4f28-a7b2-2b9bd23fadc7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32417,0626f3c2-802e-4f28-a7b2-2b9bd23fadc7,LIST_TRANSACTIONS,xs2aListTransactions,true 32418,0626f3c2-802e-4f28-a7b2-2b9bd23fadc7,AUTHORIZATION,,true 32419,0626f3c2-802e-4f28-a7b2-2b9bd23fadc7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32420,0626f3c2-802e-4f28-a7b2-2b9bd23fadc7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32421,0626f3c2-802e-4f28-a7b2-2b9bd23fadc7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32422,3dac30a7-88bb-4e48-b34c-77a39008bad8,LIST_ACCOUNTS,hbciListAccounts,false -32423,3dac30a7-88bb-4e48-b34c-77a39008bad8,LIST_TRANSACTIONS,hbciListTransactions,false -32424,3dac30a7-88bb-4e48-b34c-77a39008bad8,AUTHORIZATION,,false -32425,3dac30a7-88bb-4e48-b34c-77a39008bad8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32426,3dac30a7-88bb-4e48-b34c-77a39008bad8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32427,3dac30a7-88bb-4e48-b34c-77a39008bad8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32422,e5516d01-5250-41ce-806c-f5b7362bff67,LIST_ACCOUNTS,hbciListAccounts,false +32423,e5516d01-5250-41ce-806c-f5b7362bff67,LIST_TRANSACTIONS,hbciListTransactions,false +32424,e5516d01-5250-41ce-806c-f5b7362bff67,AUTHORIZATION,,false +32425,e5516d01-5250-41ce-806c-f5b7362bff67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32426,e5516d01-5250-41ce-806c-f5b7362bff67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32427,e5516d01-5250-41ce-806c-f5b7362bff67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32428,cb035b50-b3c6-47f5-88b5-c4fcb941b67d,LIST_ACCOUNTS,xs2aListAccounts,true -32429,cb035b50-b3c6-47f5-88b5-c4fcb941b67d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32429,cb035b50-b3c6-47f5-88b5-c4fcb941b67d,LIST_TRANSACTIONS,xs2aListTransactions,true 32430,cb035b50-b3c6-47f5-88b5-c4fcb941b67d,AUTHORIZATION,,true 32431,cb035b50-b3c6-47f5-88b5-c4fcb941b67d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32432,cb035b50-b3c6-47f5-88b5-c4fcb941b67d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32433,cb035b50-b3c6-47f5-88b5-c4fcb941b67d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32434,03b523dc-305d-4587-8cfd-291cb041dee6,LIST_ACCOUNTS,hbciListAccounts,false -32435,03b523dc-305d-4587-8cfd-291cb041dee6,LIST_TRANSACTIONS,hbciListTransactions,false -32436,03b523dc-305d-4587-8cfd-291cb041dee6,AUTHORIZATION,,false -32437,03b523dc-305d-4587-8cfd-291cb041dee6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32438,03b523dc-305d-4587-8cfd-291cb041dee6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32439,03b523dc-305d-4587-8cfd-291cb041dee6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32434,89801ebe-ff4f-4a8f-ab6e-049429287f16,LIST_ACCOUNTS,hbciListAccounts,false +32435,89801ebe-ff4f-4a8f-ab6e-049429287f16,LIST_TRANSACTIONS,hbciListTransactions,false +32436,89801ebe-ff4f-4a8f-ab6e-049429287f16,AUTHORIZATION,,false +32437,89801ebe-ff4f-4a8f-ab6e-049429287f16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32438,89801ebe-ff4f-4a8f-ab6e-049429287f16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32439,89801ebe-ff4f-4a8f-ab6e-049429287f16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32440,ae84b7c5-5040-45c9-bf76-c65de291b014,LIST_ACCOUNTS,xs2aListAccounts,true -32441,ae84b7c5-5040-45c9-bf76-c65de291b014,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32441,ae84b7c5-5040-45c9-bf76-c65de291b014,LIST_TRANSACTIONS,xs2aListTransactions,true 32442,ae84b7c5-5040-45c9-bf76-c65de291b014,AUTHORIZATION,,true 32443,ae84b7c5-5040-45c9-bf76-c65de291b014,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32444,ae84b7c5-5040-45c9-bf76-c65de291b014,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32445,ae84b7c5-5040-45c9-bf76-c65de291b014,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32446,953f480a-0f1b-4f8c-aaa0-088473cc746a,LIST_ACCOUNTS,hbciListAccounts,false -32447,953f480a-0f1b-4f8c-aaa0-088473cc746a,LIST_TRANSACTIONS,hbciListTransactions,false -32448,953f480a-0f1b-4f8c-aaa0-088473cc746a,AUTHORIZATION,,false -32449,953f480a-0f1b-4f8c-aaa0-088473cc746a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32450,953f480a-0f1b-4f8c-aaa0-088473cc746a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32451,953f480a-0f1b-4f8c-aaa0-088473cc746a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32446,4696e407-8792-4315-83d9-e3669c1c5e64,LIST_ACCOUNTS,hbciListAccounts,false +32447,4696e407-8792-4315-83d9-e3669c1c5e64,LIST_TRANSACTIONS,hbciListTransactions,false +32448,4696e407-8792-4315-83d9-e3669c1c5e64,AUTHORIZATION,,false +32449,4696e407-8792-4315-83d9-e3669c1c5e64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32450,4696e407-8792-4315-83d9-e3669c1c5e64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32451,4696e407-8792-4315-83d9-e3669c1c5e64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32452,32990a72-2afb-4564-848d-2f108dc19592,LIST_ACCOUNTS,xs2aListAccounts,true -32453,32990a72-2afb-4564-848d-2f108dc19592,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32453,32990a72-2afb-4564-848d-2f108dc19592,LIST_TRANSACTIONS,xs2aListTransactions,true 32454,32990a72-2afb-4564-848d-2f108dc19592,AUTHORIZATION,,true 32455,32990a72-2afb-4564-848d-2f108dc19592,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32456,32990a72-2afb-4564-848d-2f108dc19592,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32457,32990a72-2afb-4564-848d-2f108dc19592,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32458,2c7f4155-9f6c-4d00-a1fb-3cf61b1f5b9f,LIST_ACCOUNTS,hbciListAccounts,false -32459,2c7f4155-9f6c-4d00-a1fb-3cf61b1f5b9f,LIST_TRANSACTIONS,hbciListTransactions,false -32460,2c7f4155-9f6c-4d00-a1fb-3cf61b1f5b9f,AUTHORIZATION,,false -32461,2c7f4155-9f6c-4d00-a1fb-3cf61b1f5b9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32462,2c7f4155-9f6c-4d00-a1fb-3cf61b1f5b9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32463,2c7f4155-9f6c-4d00-a1fb-3cf61b1f5b9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32458,9cb7c517-3840-4d7a-8e19-bdc39a16650b,LIST_ACCOUNTS,hbciListAccounts,false +32459,9cb7c517-3840-4d7a-8e19-bdc39a16650b,LIST_TRANSACTIONS,hbciListTransactions,false +32460,9cb7c517-3840-4d7a-8e19-bdc39a16650b,AUTHORIZATION,,false +32461,9cb7c517-3840-4d7a-8e19-bdc39a16650b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32462,9cb7c517-3840-4d7a-8e19-bdc39a16650b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32463,9cb7c517-3840-4d7a-8e19-bdc39a16650b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32464,b041fdb8-f212-4596-8aa1-4cedf3ef9379,LIST_ACCOUNTS,xs2aListAccounts,true -32465,b041fdb8-f212-4596-8aa1-4cedf3ef9379,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32465,b041fdb8-f212-4596-8aa1-4cedf3ef9379,LIST_TRANSACTIONS,xs2aListTransactions,true 32466,b041fdb8-f212-4596-8aa1-4cedf3ef9379,AUTHORIZATION,,true 32467,b041fdb8-f212-4596-8aa1-4cedf3ef9379,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32468,b041fdb8-f212-4596-8aa1-4cedf3ef9379,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32469,b041fdb8-f212-4596-8aa1-4cedf3ef9379,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32470,699cc36d-58b2-401b-8c96-5bfdc2e0b003,LIST_ACCOUNTS,hbciListAccounts,false -32471,699cc36d-58b2-401b-8c96-5bfdc2e0b003,LIST_TRANSACTIONS,hbciListTransactions,false -32472,699cc36d-58b2-401b-8c96-5bfdc2e0b003,AUTHORIZATION,,false -32473,699cc36d-58b2-401b-8c96-5bfdc2e0b003,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32474,699cc36d-58b2-401b-8c96-5bfdc2e0b003,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32475,699cc36d-58b2-401b-8c96-5bfdc2e0b003,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32470,887e07fc-1ada-4708-a145-0b14cde9b0f7,LIST_ACCOUNTS,hbciListAccounts,false +32471,887e07fc-1ada-4708-a145-0b14cde9b0f7,LIST_TRANSACTIONS,hbciListTransactions,false +32472,887e07fc-1ada-4708-a145-0b14cde9b0f7,AUTHORIZATION,,false +32473,887e07fc-1ada-4708-a145-0b14cde9b0f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32474,887e07fc-1ada-4708-a145-0b14cde9b0f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32475,887e07fc-1ada-4708-a145-0b14cde9b0f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32476,0218c3db-2ed6-4cf6-982e-1c183a4b3253,LIST_ACCOUNTS,xs2aListAccounts,true -32477,0218c3db-2ed6-4cf6-982e-1c183a4b3253,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32477,0218c3db-2ed6-4cf6-982e-1c183a4b3253,LIST_TRANSACTIONS,xs2aListTransactions,true 32478,0218c3db-2ed6-4cf6-982e-1c183a4b3253,AUTHORIZATION,,true 32479,0218c3db-2ed6-4cf6-982e-1c183a4b3253,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32480,0218c3db-2ed6-4cf6-982e-1c183a4b3253,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32481,0218c3db-2ed6-4cf6-982e-1c183a4b3253,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32482,be66f792-1917-4473-a4e6-26c10426f8f3,LIST_ACCOUNTS,hbciListAccounts,false -32483,be66f792-1917-4473-a4e6-26c10426f8f3,LIST_TRANSACTIONS,hbciListTransactions,false -32484,be66f792-1917-4473-a4e6-26c10426f8f3,AUTHORIZATION,,false -32485,be66f792-1917-4473-a4e6-26c10426f8f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32486,be66f792-1917-4473-a4e6-26c10426f8f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32487,be66f792-1917-4473-a4e6-26c10426f8f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32482,6405b4e8-fde6-43ea-8cae-99c05447bb19,LIST_ACCOUNTS,hbciListAccounts,false +32483,6405b4e8-fde6-43ea-8cae-99c05447bb19,LIST_TRANSACTIONS,hbciListTransactions,false +32484,6405b4e8-fde6-43ea-8cae-99c05447bb19,AUTHORIZATION,,false +32485,6405b4e8-fde6-43ea-8cae-99c05447bb19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32486,6405b4e8-fde6-43ea-8cae-99c05447bb19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32487,6405b4e8-fde6-43ea-8cae-99c05447bb19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32488,828ff4ec-7248-4f3b-8018-b9cf5bbec51d,LIST_ACCOUNTS,xs2aListAccounts,true -32489,828ff4ec-7248-4f3b-8018-b9cf5bbec51d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32489,828ff4ec-7248-4f3b-8018-b9cf5bbec51d,LIST_TRANSACTIONS,xs2aListTransactions,true 32490,828ff4ec-7248-4f3b-8018-b9cf5bbec51d,AUTHORIZATION,,true 32491,828ff4ec-7248-4f3b-8018-b9cf5bbec51d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32492,828ff4ec-7248-4f3b-8018-b9cf5bbec51d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32493,828ff4ec-7248-4f3b-8018-b9cf5bbec51d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32494,a378ee32-0c17-4ce3-be54-263d8055ee1f,LIST_ACCOUNTS,hbciListAccounts,false -32495,a378ee32-0c17-4ce3-be54-263d8055ee1f,LIST_TRANSACTIONS,hbciListTransactions,false -32496,a378ee32-0c17-4ce3-be54-263d8055ee1f,AUTHORIZATION,,false -32497,a378ee32-0c17-4ce3-be54-263d8055ee1f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32498,a378ee32-0c17-4ce3-be54-263d8055ee1f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32499,a378ee32-0c17-4ce3-be54-263d8055ee1f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32494,107110a5-e4f3-4a2b-8681-715ed35b48b8,LIST_ACCOUNTS,hbciListAccounts,false +32495,107110a5-e4f3-4a2b-8681-715ed35b48b8,LIST_TRANSACTIONS,hbciListTransactions,false +32496,107110a5-e4f3-4a2b-8681-715ed35b48b8,AUTHORIZATION,,false +32497,107110a5-e4f3-4a2b-8681-715ed35b48b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32498,107110a5-e4f3-4a2b-8681-715ed35b48b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32499,107110a5-e4f3-4a2b-8681-715ed35b48b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32500,55eaede2-318d-4eee-b79d-15cf60a20eb1,LIST_ACCOUNTS,xs2aListAccounts,true -32501,55eaede2-318d-4eee-b79d-15cf60a20eb1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32501,55eaede2-318d-4eee-b79d-15cf60a20eb1,LIST_TRANSACTIONS,xs2aListTransactions,true 32502,55eaede2-318d-4eee-b79d-15cf60a20eb1,AUTHORIZATION,,true 32503,55eaede2-318d-4eee-b79d-15cf60a20eb1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32504,55eaede2-318d-4eee-b79d-15cf60a20eb1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32505,55eaede2-318d-4eee-b79d-15cf60a20eb1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32506,1c5d3029-e7f3-439e-b271-d137d396f896,LIST_ACCOUNTS,hbciListAccounts,false -32507,1c5d3029-e7f3-439e-b271-d137d396f896,LIST_TRANSACTIONS,hbciListTransactions,false -32508,1c5d3029-e7f3-439e-b271-d137d396f896,AUTHORIZATION,,false -32509,1c5d3029-e7f3-439e-b271-d137d396f896,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32510,1c5d3029-e7f3-439e-b271-d137d396f896,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32511,1c5d3029-e7f3-439e-b271-d137d396f896,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32506,ce17bdcd-fa19-4fc7-bac8-a37dc28cb53d,LIST_ACCOUNTS,hbciListAccounts,false +32507,ce17bdcd-fa19-4fc7-bac8-a37dc28cb53d,LIST_TRANSACTIONS,hbciListTransactions,false +32508,ce17bdcd-fa19-4fc7-bac8-a37dc28cb53d,AUTHORIZATION,,false +32509,ce17bdcd-fa19-4fc7-bac8-a37dc28cb53d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32510,ce17bdcd-fa19-4fc7-bac8-a37dc28cb53d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32511,ce17bdcd-fa19-4fc7-bac8-a37dc28cb53d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32512,ad5803f0-acef-435b-9fd2-fe1afefa1703,LIST_ACCOUNTS,xs2aListAccounts,true -32513,ad5803f0-acef-435b-9fd2-fe1afefa1703,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32513,ad5803f0-acef-435b-9fd2-fe1afefa1703,LIST_TRANSACTIONS,xs2aListTransactions,true 32514,ad5803f0-acef-435b-9fd2-fe1afefa1703,AUTHORIZATION,,true 32515,ad5803f0-acef-435b-9fd2-fe1afefa1703,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32516,ad5803f0-acef-435b-9fd2-fe1afefa1703,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32517,ad5803f0-acef-435b-9fd2-fe1afefa1703,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32518,77c42e80-cdd8-4362-a566-2735ad23311a,LIST_ACCOUNTS,hbciListAccounts,false -32519,77c42e80-cdd8-4362-a566-2735ad23311a,LIST_TRANSACTIONS,hbciListTransactions,false -32520,77c42e80-cdd8-4362-a566-2735ad23311a,AUTHORIZATION,,false -32521,77c42e80-cdd8-4362-a566-2735ad23311a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32522,77c42e80-cdd8-4362-a566-2735ad23311a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32523,77c42e80-cdd8-4362-a566-2735ad23311a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32518,9259ce1e-08e2-47b7-8751-b38c00edf1ef,LIST_ACCOUNTS,hbciListAccounts,false +32519,9259ce1e-08e2-47b7-8751-b38c00edf1ef,LIST_TRANSACTIONS,hbciListTransactions,false +32520,9259ce1e-08e2-47b7-8751-b38c00edf1ef,AUTHORIZATION,,false +32521,9259ce1e-08e2-47b7-8751-b38c00edf1ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32522,9259ce1e-08e2-47b7-8751-b38c00edf1ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32523,9259ce1e-08e2-47b7-8751-b38c00edf1ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32524,adb4ffcf-6775-452e-be54-dc52f5aa807f,LIST_ACCOUNTS,xs2aListAccounts,true -32525,adb4ffcf-6775-452e-be54-dc52f5aa807f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32525,adb4ffcf-6775-452e-be54-dc52f5aa807f,LIST_TRANSACTIONS,xs2aListTransactions,true 32526,adb4ffcf-6775-452e-be54-dc52f5aa807f,AUTHORIZATION,,true 32527,adb4ffcf-6775-452e-be54-dc52f5aa807f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32528,adb4ffcf-6775-452e-be54-dc52f5aa807f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32529,adb4ffcf-6775-452e-be54-dc52f5aa807f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32530,68739dd8-55ff-43b5-a823-232ee353dfaa,LIST_ACCOUNTS,hbciListAccounts,false -32531,68739dd8-55ff-43b5-a823-232ee353dfaa,LIST_TRANSACTIONS,hbciListTransactions,false -32532,68739dd8-55ff-43b5-a823-232ee353dfaa,AUTHORIZATION,,false -32533,68739dd8-55ff-43b5-a823-232ee353dfaa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32534,68739dd8-55ff-43b5-a823-232ee353dfaa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32535,68739dd8-55ff-43b5-a823-232ee353dfaa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32530,172d21b7-8580-4231-b2c9-e187eb831f41,LIST_ACCOUNTS,hbciListAccounts,false +32531,172d21b7-8580-4231-b2c9-e187eb831f41,LIST_TRANSACTIONS,hbciListTransactions,false +32532,172d21b7-8580-4231-b2c9-e187eb831f41,AUTHORIZATION,,false +32533,172d21b7-8580-4231-b2c9-e187eb831f41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32534,172d21b7-8580-4231-b2c9-e187eb831f41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32535,172d21b7-8580-4231-b2c9-e187eb831f41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32536,214b7620-568f-48f7-89e3-b6874e617266,LIST_ACCOUNTS,xs2aListAccounts,true -32537,214b7620-568f-48f7-89e3-b6874e617266,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32537,214b7620-568f-48f7-89e3-b6874e617266,LIST_TRANSACTIONS,xs2aListTransactions,true 32538,214b7620-568f-48f7-89e3-b6874e617266,AUTHORIZATION,,true 32539,214b7620-568f-48f7-89e3-b6874e617266,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32540,214b7620-568f-48f7-89e3-b6874e617266,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32541,214b7620-568f-48f7-89e3-b6874e617266,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32542,10fe87b7-238c-463e-9709-82ea36474b51,LIST_ACCOUNTS,hbciListAccounts,false -32543,10fe87b7-238c-463e-9709-82ea36474b51,LIST_TRANSACTIONS,hbciListTransactions,false -32544,10fe87b7-238c-463e-9709-82ea36474b51,AUTHORIZATION,,false -32545,10fe87b7-238c-463e-9709-82ea36474b51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32546,10fe87b7-238c-463e-9709-82ea36474b51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32547,10fe87b7-238c-463e-9709-82ea36474b51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32542,347f52e1-2420-4c75-9bb5-60fdc38af5ed,LIST_ACCOUNTS,hbciListAccounts,false +32543,347f52e1-2420-4c75-9bb5-60fdc38af5ed,LIST_TRANSACTIONS,hbciListTransactions,false +32544,347f52e1-2420-4c75-9bb5-60fdc38af5ed,AUTHORIZATION,,false +32545,347f52e1-2420-4c75-9bb5-60fdc38af5ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32546,347f52e1-2420-4c75-9bb5-60fdc38af5ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32547,347f52e1-2420-4c75-9bb5-60fdc38af5ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32548,363f82cc-9a4c-4b9a-a410-f1227a270355,LIST_ACCOUNTS,xs2aListAccounts,true -32549,363f82cc-9a4c-4b9a-a410-f1227a270355,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32549,363f82cc-9a4c-4b9a-a410-f1227a270355,LIST_TRANSACTIONS,xs2aListTransactions,true 32550,363f82cc-9a4c-4b9a-a410-f1227a270355,AUTHORIZATION,,true 32551,363f82cc-9a4c-4b9a-a410-f1227a270355,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32552,363f82cc-9a4c-4b9a-a410-f1227a270355,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32553,363f82cc-9a4c-4b9a-a410-f1227a270355,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32554,d864c7c1-86e7-4672-beaa-cf39038b495e,LIST_ACCOUNTS,hbciListAccounts,false -32555,d864c7c1-86e7-4672-beaa-cf39038b495e,LIST_TRANSACTIONS,hbciListTransactions,false -32556,d864c7c1-86e7-4672-beaa-cf39038b495e,AUTHORIZATION,,false -32557,d864c7c1-86e7-4672-beaa-cf39038b495e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32558,d864c7c1-86e7-4672-beaa-cf39038b495e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32559,d864c7c1-86e7-4672-beaa-cf39038b495e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32554,594a816b-3cd1-4e27-99ba-dce960699a7f,LIST_ACCOUNTS,hbciListAccounts,false +32555,594a816b-3cd1-4e27-99ba-dce960699a7f,LIST_TRANSACTIONS,hbciListTransactions,false +32556,594a816b-3cd1-4e27-99ba-dce960699a7f,AUTHORIZATION,,false +32557,594a816b-3cd1-4e27-99ba-dce960699a7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32558,594a816b-3cd1-4e27-99ba-dce960699a7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32559,594a816b-3cd1-4e27-99ba-dce960699a7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32560,e551090c-3768-4622-94c7-82df06246ce9,LIST_ACCOUNTS,xs2aListAccounts,true -32561,e551090c-3768-4622-94c7-82df06246ce9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32561,e551090c-3768-4622-94c7-82df06246ce9,LIST_TRANSACTIONS,xs2aListTransactions,true 32562,e551090c-3768-4622-94c7-82df06246ce9,AUTHORIZATION,,true 32563,e551090c-3768-4622-94c7-82df06246ce9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32564,e551090c-3768-4622-94c7-82df06246ce9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32565,e551090c-3768-4622-94c7-82df06246ce9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32566,aea8fe93-966b-4d6f-9df5-594e5f72962d,LIST_ACCOUNTS,hbciListAccounts,false -32567,aea8fe93-966b-4d6f-9df5-594e5f72962d,LIST_TRANSACTIONS,hbciListTransactions,false -32568,aea8fe93-966b-4d6f-9df5-594e5f72962d,AUTHORIZATION,,false -32569,aea8fe93-966b-4d6f-9df5-594e5f72962d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32570,aea8fe93-966b-4d6f-9df5-594e5f72962d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32571,aea8fe93-966b-4d6f-9df5-594e5f72962d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32566,508eab60-d7dd-4c45-a253-a8dbb9336c4e,LIST_ACCOUNTS,hbciListAccounts,false +32567,508eab60-d7dd-4c45-a253-a8dbb9336c4e,LIST_TRANSACTIONS,hbciListTransactions,false +32568,508eab60-d7dd-4c45-a253-a8dbb9336c4e,AUTHORIZATION,,false +32569,508eab60-d7dd-4c45-a253-a8dbb9336c4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32570,508eab60-d7dd-4c45-a253-a8dbb9336c4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32571,508eab60-d7dd-4c45-a253-a8dbb9336c4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32572,06396f71-8d5b-4ea8-9964-4dd38c34edeb,LIST_ACCOUNTS,xs2aListAccounts,true -32573,06396f71-8d5b-4ea8-9964-4dd38c34edeb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32573,06396f71-8d5b-4ea8-9964-4dd38c34edeb,LIST_TRANSACTIONS,xs2aListTransactions,true 32574,06396f71-8d5b-4ea8-9964-4dd38c34edeb,AUTHORIZATION,,true 32575,06396f71-8d5b-4ea8-9964-4dd38c34edeb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32576,06396f71-8d5b-4ea8-9964-4dd38c34edeb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32577,06396f71-8d5b-4ea8-9964-4dd38c34edeb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32578,4e14ac9b-a369-4855-baf8-309a209f874c,LIST_ACCOUNTS,hbciListAccounts,false -32579,4e14ac9b-a369-4855-baf8-309a209f874c,LIST_TRANSACTIONS,hbciListTransactions,false -32580,4e14ac9b-a369-4855-baf8-309a209f874c,AUTHORIZATION,,false -32581,4e14ac9b-a369-4855-baf8-309a209f874c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32582,4e14ac9b-a369-4855-baf8-309a209f874c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32583,4e14ac9b-a369-4855-baf8-309a209f874c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32578,414436de-6467-405b-9a89-b20a6370cdc3,LIST_ACCOUNTS,hbciListAccounts,false +32579,414436de-6467-405b-9a89-b20a6370cdc3,LIST_TRANSACTIONS,hbciListTransactions,false +32580,414436de-6467-405b-9a89-b20a6370cdc3,AUTHORIZATION,,false +32581,414436de-6467-405b-9a89-b20a6370cdc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32582,414436de-6467-405b-9a89-b20a6370cdc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32583,414436de-6467-405b-9a89-b20a6370cdc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32584,6b9fcccd-fde8-4cdd-b120-8b4db7518b0a,LIST_ACCOUNTS,xs2aListAccounts,true -32585,6b9fcccd-fde8-4cdd-b120-8b4db7518b0a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32585,6b9fcccd-fde8-4cdd-b120-8b4db7518b0a,LIST_TRANSACTIONS,xs2aListTransactions,true 32586,6b9fcccd-fde8-4cdd-b120-8b4db7518b0a,AUTHORIZATION,,true 32587,6b9fcccd-fde8-4cdd-b120-8b4db7518b0a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32588,6b9fcccd-fde8-4cdd-b120-8b4db7518b0a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32589,6b9fcccd-fde8-4cdd-b120-8b4db7518b0a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32590,1a90f7b9-9cb0-4808-8c9a-ab431ed066a6,LIST_ACCOUNTS,hbciListAccounts,false -32591,1a90f7b9-9cb0-4808-8c9a-ab431ed066a6,LIST_TRANSACTIONS,hbciListTransactions,false -32592,1a90f7b9-9cb0-4808-8c9a-ab431ed066a6,AUTHORIZATION,,false -32593,1a90f7b9-9cb0-4808-8c9a-ab431ed066a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32594,1a90f7b9-9cb0-4808-8c9a-ab431ed066a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32595,1a90f7b9-9cb0-4808-8c9a-ab431ed066a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32590,6eed3832-d98d-4225-8ec3-b8f2b6bc6759,LIST_ACCOUNTS,hbciListAccounts,false +32591,6eed3832-d98d-4225-8ec3-b8f2b6bc6759,LIST_TRANSACTIONS,hbciListTransactions,false +32592,6eed3832-d98d-4225-8ec3-b8f2b6bc6759,AUTHORIZATION,,false +32593,6eed3832-d98d-4225-8ec3-b8f2b6bc6759,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32594,6eed3832-d98d-4225-8ec3-b8f2b6bc6759,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32595,6eed3832-d98d-4225-8ec3-b8f2b6bc6759,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32596,58d2683e-43f8-48f9-a9cf-74962f1701bd,LIST_ACCOUNTS,xs2aListAccounts,true -32597,58d2683e-43f8-48f9-a9cf-74962f1701bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32597,58d2683e-43f8-48f9-a9cf-74962f1701bd,LIST_TRANSACTIONS,xs2aListTransactions,true 32598,58d2683e-43f8-48f9-a9cf-74962f1701bd,AUTHORIZATION,,true 32599,58d2683e-43f8-48f9-a9cf-74962f1701bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32600,58d2683e-43f8-48f9-a9cf-74962f1701bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32601,58d2683e-43f8-48f9-a9cf-74962f1701bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32602,bdc37316-ed22-4a8e-9771-294dd3ffd820,LIST_ACCOUNTS,hbciListAccounts,false -32603,bdc37316-ed22-4a8e-9771-294dd3ffd820,LIST_TRANSACTIONS,hbciListTransactions,false -32604,bdc37316-ed22-4a8e-9771-294dd3ffd820,AUTHORIZATION,,false -32605,bdc37316-ed22-4a8e-9771-294dd3ffd820,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32606,bdc37316-ed22-4a8e-9771-294dd3ffd820,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32607,bdc37316-ed22-4a8e-9771-294dd3ffd820,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32602,e833ef67-fb90-43c5-87a4-41b5a52991b1,LIST_ACCOUNTS,hbciListAccounts,false +32603,e833ef67-fb90-43c5-87a4-41b5a52991b1,LIST_TRANSACTIONS,hbciListTransactions,false +32604,e833ef67-fb90-43c5-87a4-41b5a52991b1,AUTHORIZATION,,false +32605,e833ef67-fb90-43c5-87a4-41b5a52991b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32606,e833ef67-fb90-43c5-87a4-41b5a52991b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32607,e833ef67-fb90-43c5-87a4-41b5a52991b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32608,5558221f-416c-4908-b13f-a3b44c6a427c,LIST_ACCOUNTS,xs2aListAccounts,true -32609,5558221f-416c-4908-b13f-a3b44c6a427c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32609,5558221f-416c-4908-b13f-a3b44c6a427c,LIST_TRANSACTIONS,xs2aListTransactions,true 32610,5558221f-416c-4908-b13f-a3b44c6a427c,AUTHORIZATION,,true 32611,5558221f-416c-4908-b13f-a3b44c6a427c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32612,5558221f-416c-4908-b13f-a3b44c6a427c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32613,5558221f-416c-4908-b13f-a3b44c6a427c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32614,022d3751-9cde-44cf-a6d4-40d4da9c8fc3,LIST_ACCOUNTS,hbciListAccounts,false -32615,022d3751-9cde-44cf-a6d4-40d4da9c8fc3,LIST_TRANSACTIONS,hbciListTransactions,false -32616,022d3751-9cde-44cf-a6d4-40d4da9c8fc3,AUTHORIZATION,,false -32617,022d3751-9cde-44cf-a6d4-40d4da9c8fc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32618,022d3751-9cde-44cf-a6d4-40d4da9c8fc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32619,022d3751-9cde-44cf-a6d4-40d4da9c8fc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32614,3fccae6f-3ee3-48a8-86b8-b1acd786c6fc,LIST_ACCOUNTS,hbciListAccounts,false +32615,3fccae6f-3ee3-48a8-86b8-b1acd786c6fc,LIST_TRANSACTIONS,hbciListTransactions,false +32616,3fccae6f-3ee3-48a8-86b8-b1acd786c6fc,AUTHORIZATION,,false +32617,3fccae6f-3ee3-48a8-86b8-b1acd786c6fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32618,3fccae6f-3ee3-48a8-86b8-b1acd786c6fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32619,3fccae6f-3ee3-48a8-86b8-b1acd786c6fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32620,f7bb41c2-509d-4325-b726-6da878dbf150,LIST_ACCOUNTS,xs2aListAccounts,true -32621,f7bb41c2-509d-4325-b726-6da878dbf150,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32621,f7bb41c2-509d-4325-b726-6da878dbf150,LIST_TRANSACTIONS,xs2aListTransactions,true 32622,f7bb41c2-509d-4325-b726-6da878dbf150,AUTHORIZATION,,true 32623,f7bb41c2-509d-4325-b726-6da878dbf150,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32624,f7bb41c2-509d-4325-b726-6da878dbf150,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32625,f7bb41c2-509d-4325-b726-6da878dbf150,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32626,8d58e87d-de3f-4876-ab16-2c110ebfef49,LIST_ACCOUNTS,hbciListAccounts,false -32627,8d58e87d-de3f-4876-ab16-2c110ebfef49,LIST_TRANSACTIONS,hbciListTransactions,false -32628,8d58e87d-de3f-4876-ab16-2c110ebfef49,AUTHORIZATION,,false -32629,8d58e87d-de3f-4876-ab16-2c110ebfef49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32630,8d58e87d-de3f-4876-ab16-2c110ebfef49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32631,8d58e87d-de3f-4876-ab16-2c110ebfef49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32626,c7b9bdd8-5f84-4d2e-84e9-049079a7788d,LIST_ACCOUNTS,hbciListAccounts,false +32627,c7b9bdd8-5f84-4d2e-84e9-049079a7788d,LIST_TRANSACTIONS,hbciListTransactions,false +32628,c7b9bdd8-5f84-4d2e-84e9-049079a7788d,AUTHORIZATION,,false +32629,c7b9bdd8-5f84-4d2e-84e9-049079a7788d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32630,c7b9bdd8-5f84-4d2e-84e9-049079a7788d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32631,c7b9bdd8-5f84-4d2e-84e9-049079a7788d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32632,f15743fd-74fd-4c4b-b3fa-657193b23c1f,LIST_ACCOUNTS,xs2aListAccounts,true -32633,f15743fd-74fd-4c4b-b3fa-657193b23c1f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32633,f15743fd-74fd-4c4b-b3fa-657193b23c1f,LIST_TRANSACTIONS,xs2aListTransactions,true 32634,f15743fd-74fd-4c4b-b3fa-657193b23c1f,AUTHORIZATION,,true 32635,f15743fd-74fd-4c4b-b3fa-657193b23c1f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32636,f15743fd-74fd-4c4b-b3fa-657193b23c1f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32637,f15743fd-74fd-4c4b-b3fa-657193b23c1f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32638,b777cdff-4a62-498a-93e7-c990ad5f93d3,LIST_ACCOUNTS,hbciListAccounts,false -32639,b777cdff-4a62-498a-93e7-c990ad5f93d3,LIST_TRANSACTIONS,hbciListTransactions,false -32640,b777cdff-4a62-498a-93e7-c990ad5f93d3,AUTHORIZATION,,false -32641,b777cdff-4a62-498a-93e7-c990ad5f93d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32642,b777cdff-4a62-498a-93e7-c990ad5f93d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32643,b777cdff-4a62-498a-93e7-c990ad5f93d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32638,f3e92455-5c24-4f74-bb8f-ffd2fb3c84b6,LIST_ACCOUNTS,hbciListAccounts,false +32639,f3e92455-5c24-4f74-bb8f-ffd2fb3c84b6,LIST_TRANSACTIONS,hbciListTransactions,false +32640,f3e92455-5c24-4f74-bb8f-ffd2fb3c84b6,AUTHORIZATION,,false +32641,f3e92455-5c24-4f74-bb8f-ffd2fb3c84b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32642,f3e92455-5c24-4f74-bb8f-ffd2fb3c84b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32643,f3e92455-5c24-4f74-bb8f-ffd2fb3c84b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32644,43d29987-10e8-4a0d-9c1d-4969e1b37b38,LIST_ACCOUNTS,xs2aListAccounts,true -32645,43d29987-10e8-4a0d-9c1d-4969e1b37b38,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32645,43d29987-10e8-4a0d-9c1d-4969e1b37b38,LIST_TRANSACTIONS,xs2aListTransactions,true 32646,43d29987-10e8-4a0d-9c1d-4969e1b37b38,AUTHORIZATION,,true 32647,43d29987-10e8-4a0d-9c1d-4969e1b37b38,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32648,43d29987-10e8-4a0d-9c1d-4969e1b37b38,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32649,43d29987-10e8-4a0d-9c1d-4969e1b37b38,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32650,67df5971-66ef-4446-9c4c-f18624b020c0,LIST_ACCOUNTS,hbciListAccounts,false -32651,67df5971-66ef-4446-9c4c-f18624b020c0,LIST_TRANSACTIONS,hbciListTransactions,false -32652,67df5971-66ef-4446-9c4c-f18624b020c0,AUTHORIZATION,,false -32653,67df5971-66ef-4446-9c4c-f18624b020c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32654,67df5971-66ef-4446-9c4c-f18624b020c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32655,67df5971-66ef-4446-9c4c-f18624b020c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32650,536d0a9c-b232-4abe-9cc2-0afef88f52a1,LIST_ACCOUNTS,hbciListAccounts,false +32651,536d0a9c-b232-4abe-9cc2-0afef88f52a1,LIST_TRANSACTIONS,hbciListTransactions,false +32652,536d0a9c-b232-4abe-9cc2-0afef88f52a1,AUTHORIZATION,,false +32653,536d0a9c-b232-4abe-9cc2-0afef88f52a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32654,536d0a9c-b232-4abe-9cc2-0afef88f52a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32655,536d0a9c-b232-4abe-9cc2-0afef88f52a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32656,f24997d1-8de8-4bf5-8ddd-be1bb1ba8d36,LIST_ACCOUNTS,xs2aListAccounts,true -32657,f24997d1-8de8-4bf5-8ddd-be1bb1ba8d36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32657,f24997d1-8de8-4bf5-8ddd-be1bb1ba8d36,LIST_TRANSACTIONS,xs2aListTransactions,true 32658,f24997d1-8de8-4bf5-8ddd-be1bb1ba8d36,AUTHORIZATION,,true 32659,f24997d1-8de8-4bf5-8ddd-be1bb1ba8d36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32660,f24997d1-8de8-4bf5-8ddd-be1bb1ba8d36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32661,f24997d1-8de8-4bf5-8ddd-be1bb1ba8d36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32662,a7a973bc-aefc-4c13-856c-f9a9f0cf1b60,LIST_ACCOUNTS,hbciListAccounts,false -32663,a7a973bc-aefc-4c13-856c-f9a9f0cf1b60,LIST_TRANSACTIONS,hbciListTransactions,false -32664,a7a973bc-aefc-4c13-856c-f9a9f0cf1b60,AUTHORIZATION,,false -32665,a7a973bc-aefc-4c13-856c-f9a9f0cf1b60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32666,a7a973bc-aefc-4c13-856c-f9a9f0cf1b60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32667,a7a973bc-aefc-4c13-856c-f9a9f0cf1b60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32662,33381d7b-d706-4431-939d-cc331d4a3a81,LIST_ACCOUNTS,hbciListAccounts,false +32663,33381d7b-d706-4431-939d-cc331d4a3a81,LIST_TRANSACTIONS,hbciListTransactions,false +32664,33381d7b-d706-4431-939d-cc331d4a3a81,AUTHORIZATION,,false +32665,33381d7b-d706-4431-939d-cc331d4a3a81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32666,33381d7b-d706-4431-939d-cc331d4a3a81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32667,33381d7b-d706-4431-939d-cc331d4a3a81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32668,eff6db25-fd41-4c66-845d-f22b14708c2b,LIST_ACCOUNTS,xs2aListAccounts,true -32669,eff6db25-fd41-4c66-845d-f22b14708c2b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32669,eff6db25-fd41-4c66-845d-f22b14708c2b,LIST_TRANSACTIONS,xs2aListTransactions,true 32670,eff6db25-fd41-4c66-845d-f22b14708c2b,AUTHORIZATION,,true 32671,eff6db25-fd41-4c66-845d-f22b14708c2b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32672,eff6db25-fd41-4c66-845d-f22b14708c2b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32673,eff6db25-fd41-4c66-845d-f22b14708c2b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32674,8b487506-fe76-4d41-84c3-96903688f628,LIST_ACCOUNTS,hbciListAccounts,false -32675,8b487506-fe76-4d41-84c3-96903688f628,LIST_TRANSACTIONS,hbciListTransactions,false -32676,8b487506-fe76-4d41-84c3-96903688f628,AUTHORIZATION,,false -32677,8b487506-fe76-4d41-84c3-96903688f628,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32678,8b487506-fe76-4d41-84c3-96903688f628,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32679,8b487506-fe76-4d41-84c3-96903688f628,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32674,e08dcd47-f78a-438e-8593-b4ca227e2d75,LIST_ACCOUNTS,hbciListAccounts,false +32675,e08dcd47-f78a-438e-8593-b4ca227e2d75,LIST_TRANSACTIONS,hbciListTransactions,false +32676,e08dcd47-f78a-438e-8593-b4ca227e2d75,AUTHORIZATION,,false +32677,e08dcd47-f78a-438e-8593-b4ca227e2d75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32678,e08dcd47-f78a-438e-8593-b4ca227e2d75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32679,e08dcd47-f78a-438e-8593-b4ca227e2d75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32680,4585e191-6929-47c3-b870-1399072c6a13,LIST_ACCOUNTS,xs2aListAccounts,true -32681,4585e191-6929-47c3-b870-1399072c6a13,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32681,4585e191-6929-47c3-b870-1399072c6a13,LIST_TRANSACTIONS,xs2aListTransactions,true 32682,4585e191-6929-47c3-b870-1399072c6a13,AUTHORIZATION,,true 32683,4585e191-6929-47c3-b870-1399072c6a13,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32684,4585e191-6929-47c3-b870-1399072c6a13,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32685,4585e191-6929-47c3-b870-1399072c6a13,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32686,2a51b210-d3de-46b6-8d51-bf8dd8b15827,LIST_ACCOUNTS,hbciListAccounts,false -32687,2a51b210-d3de-46b6-8d51-bf8dd8b15827,LIST_TRANSACTIONS,hbciListTransactions,false -32688,2a51b210-d3de-46b6-8d51-bf8dd8b15827,AUTHORIZATION,,false -32689,2a51b210-d3de-46b6-8d51-bf8dd8b15827,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32690,2a51b210-d3de-46b6-8d51-bf8dd8b15827,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32691,2a51b210-d3de-46b6-8d51-bf8dd8b15827,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32686,ec839dfc-32fb-49b9-9fe3-2752cbc26c6f,LIST_ACCOUNTS,hbciListAccounts,false +32687,ec839dfc-32fb-49b9-9fe3-2752cbc26c6f,LIST_TRANSACTIONS,hbciListTransactions,false +32688,ec839dfc-32fb-49b9-9fe3-2752cbc26c6f,AUTHORIZATION,,false +32689,ec839dfc-32fb-49b9-9fe3-2752cbc26c6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32690,ec839dfc-32fb-49b9-9fe3-2752cbc26c6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32691,ec839dfc-32fb-49b9-9fe3-2752cbc26c6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32692,d8ba548c-1079-49f6-94b8-c3594fcc0033,LIST_ACCOUNTS,xs2aListAccounts,true -32693,d8ba548c-1079-49f6-94b8-c3594fcc0033,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32693,d8ba548c-1079-49f6-94b8-c3594fcc0033,LIST_TRANSACTIONS,xs2aListTransactions,true 32694,d8ba548c-1079-49f6-94b8-c3594fcc0033,AUTHORIZATION,,true 32695,d8ba548c-1079-49f6-94b8-c3594fcc0033,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32696,d8ba548c-1079-49f6-94b8-c3594fcc0033,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32697,d8ba548c-1079-49f6-94b8-c3594fcc0033,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32698,d4809ee9-5178-42a0-adf7-5e2928f0c851,LIST_ACCOUNTS,hbciListAccounts,false -32699,d4809ee9-5178-42a0-adf7-5e2928f0c851,LIST_TRANSACTIONS,hbciListTransactions,false -32700,d4809ee9-5178-42a0-adf7-5e2928f0c851,AUTHORIZATION,,false -32701,d4809ee9-5178-42a0-adf7-5e2928f0c851,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32702,d4809ee9-5178-42a0-adf7-5e2928f0c851,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32703,d4809ee9-5178-42a0-adf7-5e2928f0c851,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32698,9d46bff6-7ad5-493e-bb48-71d39944248e,LIST_ACCOUNTS,hbciListAccounts,false +32699,9d46bff6-7ad5-493e-bb48-71d39944248e,LIST_TRANSACTIONS,hbciListTransactions,false +32700,9d46bff6-7ad5-493e-bb48-71d39944248e,AUTHORIZATION,,false +32701,9d46bff6-7ad5-493e-bb48-71d39944248e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32702,9d46bff6-7ad5-493e-bb48-71d39944248e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32703,9d46bff6-7ad5-493e-bb48-71d39944248e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32704,e79d4208-9e60-4e6a-9b96-1dab11f73c10,LIST_ACCOUNTS,xs2aListAccounts,true -32705,e79d4208-9e60-4e6a-9b96-1dab11f73c10,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32705,e79d4208-9e60-4e6a-9b96-1dab11f73c10,LIST_TRANSACTIONS,xs2aListTransactions,true 32706,e79d4208-9e60-4e6a-9b96-1dab11f73c10,AUTHORIZATION,,true 32707,e79d4208-9e60-4e6a-9b96-1dab11f73c10,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32708,e79d4208-9e60-4e6a-9b96-1dab11f73c10,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32709,e79d4208-9e60-4e6a-9b96-1dab11f73c10,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32710,1a828827-92db-4dc4-9779-bc9b68dee364,LIST_ACCOUNTS,hbciListAccounts,false -32711,1a828827-92db-4dc4-9779-bc9b68dee364,LIST_TRANSACTIONS,hbciListTransactions,false -32712,1a828827-92db-4dc4-9779-bc9b68dee364,AUTHORIZATION,,false -32713,1a828827-92db-4dc4-9779-bc9b68dee364,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32714,1a828827-92db-4dc4-9779-bc9b68dee364,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32715,1a828827-92db-4dc4-9779-bc9b68dee364,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32710,04aff837-680b-44ae-be74-c6c48755b09e,LIST_ACCOUNTS,hbciListAccounts,false +32711,04aff837-680b-44ae-be74-c6c48755b09e,LIST_TRANSACTIONS,hbciListTransactions,false +32712,04aff837-680b-44ae-be74-c6c48755b09e,AUTHORIZATION,,false +32713,04aff837-680b-44ae-be74-c6c48755b09e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32714,04aff837-680b-44ae-be74-c6c48755b09e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32715,04aff837-680b-44ae-be74-c6c48755b09e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32716,6b79746b-6dac-48b0-85ff-21b118078541,LIST_ACCOUNTS,xs2aListAccounts,true -32717,6b79746b-6dac-48b0-85ff-21b118078541,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32717,6b79746b-6dac-48b0-85ff-21b118078541,LIST_TRANSACTIONS,xs2aListTransactions,true 32718,6b79746b-6dac-48b0-85ff-21b118078541,AUTHORIZATION,,true 32719,6b79746b-6dac-48b0-85ff-21b118078541,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32720,6b79746b-6dac-48b0-85ff-21b118078541,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32721,6b79746b-6dac-48b0-85ff-21b118078541,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32722,b511d71a-791e-404c-8657-94dec23b052f,LIST_ACCOUNTS,hbciListAccounts,false -32723,b511d71a-791e-404c-8657-94dec23b052f,LIST_TRANSACTIONS,hbciListTransactions,false -32724,b511d71a-791e-404c-8657-94dec23b052f,AUTHORIZATION,,false -32725,b511d71a-791e-404c-8657-94dec23b052f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32726,b511d71a-791e-404c-8657-94dec23b052f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32727,b511d71a-791e-404c-8657-94dec23b052f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32722,759661ce-5525-40ee-88d6-97290fe9c61e,LIST_ACCOUNTS,hbciListAccounts,false +32723,759661ce-5525-40ee-88d6-97290fe9c61e,LIST_TRANSACTIONS,hbciListTransactions,false +32724,759661ce-5525-40ee-88d6-97290fe9c61e,AUTHORIZATION,,false +32725,759661ce-5525-40ee-88d6-97290fe9c61e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32726,759661ce-5525-40ee-88d6-97290fe9c61e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32727,759661ce-5525-40ee-88d6-97290fe9c61e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32728,387dbd82-c651-406a-b64c-c268b4deb795,LIST_ACCOUNTS,xs2aListAccounts,true -32729,387dbd82-c651-406a-b64c-c268b4deb795,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32729,387dbd82-c651-406a-b64c-c268b4deb795,LIST_TRANSACTIONS,xs2aListTransactions,true 32730,387dbd82-c651-406a-b64c-c268b4deb795,AUTHORIZATION,,true 32731,387dbd82-c651-406a-b64c-c268b4deb795,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32732,387dbd82-c651-406a-b64c-c268b4deb795,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32733,387dbd82-c651-406a-b64c-c268b4deb795,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32734,632f05f5-80ae-4cfb-b010-13137d96aea7,LIST_ACCOUNTS,hbciListAccounts,false -32735,632f05f5-80ae-4cfb-b010-13137d96aea7,LIST_TRANSACTIONS,hbciListTransactions,false -32736,632f05f5-80ae-4cfb-b010-13137d96aea7,AUTHORIZATION,,false -32737,632f05f5-80ae-4cfb-b010-13137d96aea7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32738,632f05f5-80ae-4cfb-b010-13137d96aea7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32739,632f05f5-80ae-4cfb-b010-13137d96aea7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32734,05b36e09-2fe6-44be-89c2-4086c5640ecd,LIST_ACCOUNTS,hbciListAccounts,false +32735,05b36e09-2fe6-44be-89c2-4086c5640ecd,LIST_TRANSACTIONS,hbciListTransactions,false +32736,05b36e09-2fe6-44be-89c2-4086c5640ecd,AUTHORIZATION,,false +32737,05b36e09-2fe6-44be-89c2-4086c5640ecd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32738,05b36e09-2fe6-44be-89c2-4086c5640ecd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32739,05b36e09-2fe6-44be-89c2-4086c5640ecd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32740,31107c54-f214-4730-b09b-4b36ef1a72c3,LIST_ACCOUNTS,xs2aListAccounts,true -32741,31107c54-f214-4730-b09b-4b36ef1a72c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32741,31107c54-f214-4730-b09b-4b36ef1a72c3,LIST_TRANSACTIONS,xs2aListTransactions,true 32742,31107c54-f214-4730-b09b-4b36ef1a72c3,AUTHORIZATION,,true 32743,31107c54-f214-4730-b09b-4b36ef1a72c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32744,31107c54-f214-4730-b09b-4b36ef1a72c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32745,31107c54-f214-4730-b09b-4b36ef1a72c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32746,1eaa5e4b-af04-4424-bae0-51d6e88fa62b,LIST_ACCOUNTS,hbciListAccounts,false -32747,1eaa5e4b-af04-4424-bae0-51d6e88fa62b,LIST_TRANSACTIONS,hbciListTransactions,false -32748,1eaa5e4b-af04-4424-bae0-51d6e88fa62b,AUTHORIZATION,,false -32749,1eaa5e4b-af04-4424-bae0-51d6e88fa62b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32750,1eaa5e4b-af04-4424-bae0-51d6e88fa62b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32751,1eaa5e4b-af04-4424-bae0-51d6e88fa62b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32746,4113377b-47e6-4ed1-8306-2ca23e4cc7b0,LIST_ACCOUNTS,hbciListAccounts,false +32747,4113377b-47e6-4ed1-8306-2ca23e4cc7b0,LIST_TRANSACTIONS,hbciListTransactions,false +32748,4113377b-47e6-4ed1-8306-2ca23e4cc7b0,AUTHORIZATION,,false +32749,4113377b-47e6-4ed1-8306-2ca23e4cc7b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32750,4113377b-47e6-4ed1-8306-2ca23e4cc7b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32751,4113377b-47e6-4ed1-8306-2ca23e4cc7b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32752,2411fa8c-b258-4164-bd99-1760db6cd53c,LIST_ACCOUNTS,xs2aListAccounts,true -32753,2411fa8c-b258-4164-bd99-1760db6cd53c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32753,2411fa8c-b258-4164-bd99-1760db6cd53c,LIST_TRANSACTIONS,xs2aListTransactions,true 32754,2411fa8c-b258-4164-bd99-1760db6cd53c,AUTHORIZATION,,true 32755,2411fa8c-b258-4164-bd99-1760db6cd53c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32756,2411fa8c-b258-4164-bd99-1760db6cd53c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32757,2411fa8c-b258-4164-bd99-1760db6cd53c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32758,119fe25c-fee3-486d-99c0-7500cb749366,LIST_ACCOUNTS,hbciListAccounts,false -32759,119fe25c-fee3-486d-99c0-7500cb749366,LIST_TRANSACTIONS,hbciListTransactions,false -32760,119fe25c-fee3-486d-99c0-7500cb749366,AUTHORIZATION,,false -32761,119fe25c-fee3-486d-99c0-7500cb749366,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32762,119fe25c-fee3-486d-99c0-7500cb749366,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32763,119fe25c-fee3-486d-99c0-7500cb749366,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32758,33edecba-be48-47d6-b89e-3a2a9c74bad9,LIST_ACCOUNTS,hbciListAccounts,false +32759,33edecba-be48-47d6-b89e-3a2a9c74bad9,LIST_TRANSACTIONS,hbciListTransactions,false +32760,33edecba-be48-47d6-b89e-3a2a9c74bad9,AUTHORIZATION,,false +32761,33edecba-be48-47d6-b89e-3a2a9c74bad9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32762,33edecba-be48-47d6-b89e-3a2a9c74bad9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32763,33edecba-be48-47d6-b89e-3a2a9c74bad9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32764,bab19739-fc11-405b-a0e2-b3d8d4a687c7,LIST_ACCOUNTS,xs2aListAccounts,true -32765,bab19739-fc11-405b-a0e2-b3d8d4a687c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32765,bab19739-fc11-405b-a0e2-b3d8d4a687c7,LIST_TRANSACTIONS,xs2aListTransactions,true 32766,bab19739-fc11-405b-a0e2-b3d8d4a687c7,AUTHORIZATION,,true 32767,bab19739-fc11-405b-a0e2-b3d8d4a687c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32768,bab19739-fc11-405b-a0e2-b3d8d4a687c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32769,bab19739-fc11-405b-a0e2-b3d8d4a687c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32770,778a4c35-abd6-496c-a55a-8f9b86387de4,LIST_ACCOUNTS,hbciListAccounts,false -32771,778a4c35-abd6-496c-a55a-8f9b86387de4,LIST_TRANSACTIONS,hbciListTransactions,false -32772,778a4c35-abd6-496c-a55a-8f9b86387de4,AUTHORIZATION,,false -32773,778a4c35-abd6-496c-a55a-8f9b86387de4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32774,778a4c35-abd6-496c-a55a-8f9b86387de4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32775,778a4c35-abd6-496c-a55a-8f9b86387de4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32770,a2432114-7e14-4b9b-aeac-41fed038acde,LIST_ACCOUNTS,hbciListAccounts,false +32771,a2432114-7e14-4b9b-aeac-41fed038acde,LIST_TRANSACTIONS,hbciListTransactions,false +32772,a2432114-7e14-4b9b-aeac-41fed038acde,AUTHORIZATION,,false +32773,a2432114-7e14-4b9b-aeac-41fed038acde,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32774,a2432114-7e14-4b9b-aeac-41fed038acde,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32775,a2432114-7e14-4b9b-aeac-41fed038acde,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32776,e23c066e-8bf1-4dd5-af40-295b48369f4e,LIST_ACCOUNTS,xs2aListAccounts,true -32777,e23c066e-8bf1-4dd5-af40-295b48369f4e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32777,e23c066e-8bf1-4dd5-af40-295b48369f4e,LIST_TRANSACTIONS,xs2aListTransactions,true 32778,e23c066e-8bf1-4dd5-af40-295b48369f4e,AUTHORIZATION,,true 32779,e23c066e-8bf1-4dd5-af40-295b48369f4e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32780,e23c066e-8bf1-4dd5-af40-295b48369f4e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32781,e23c066e-8bf1-4dd5-af40-295b48369f4e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32782,4e51f130-d103-4491-b7f5-901718ac9760,LIST_ACCOUNTS,hbciListAccounts,false -32783,4e51f130-d103-4491-b7f5-901718ac9760,LIST_TRANSACTIONS,hbciListTransactions,false -32784,4e51f130-d103-4491-b7f5-901718ac9760,AUTHORIZATION,,false -32785,4e51f130-d103-4491-b7f5-901718ac9760,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32786,4e51f130-d103-4491-b7f5-901718ac9760,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32787,4e51f130-d103-4491-b7f5-901718ac9760,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32782,5e634037-f407-4e33-9a0d-1c0e683eeab3,LIST_ACCOUNTS,hbciListAccounts,false +32783,5e634037-f407-4e33-9a0d-1c0e683eeab3,LIST_TRANSACTIONS,hbciListTransactions,false +32784,5e634037-f407-4e33-9a0d-1c0e683eeab3,AUTHORIZATION,,false +32785,5e634037-f407-4e33-9a0d-1c0e683eeab3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32786,5e634037-f407-4e33-9a0d-1c0e683eeab3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32787,5e634037-f407-4e33-9a0d-1c0e683eeab3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32788,25cf35d4-6a1b-4e25-8611-bcb42b9d4f50,LIST_ACCOUNTS,xs2aListAccounts,true -32789,25cf35d4-6a1b-4e25-8611-bcb42b9d4f50,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32789,25cf35d4-6a1b-4e25-8611-bcb42b9d4f50,LIST_TRANSACTIONS,xs2aListTransactions,true 32790,25cf35d4-6a1b-4e25-8611-bcb42b9d4f50,AUTHORIZATION,,true 32791,25cf35d4-6a1b-4e25-8611-bcb42b9d4f50,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32792,25cf35d4-6a1b-4e25-8611-bcb42b9d4f50,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32793,25cf35d4-6a1b-4e25-8611-bcb42b9d4f50,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32794,45fb349c-3c29-4252-86f4-125a58e70300,LIST_ACCOUNTS,hbciListAccounts,false -32795,45fb349c-3c29-4252-86f4-125a58e70300,LIST_TRANSACTIONS,hbciListTransactions,false -32796,45fb349c-3c29-4252-86f4-125a58e70300,AUTHORIZATION,,false -32797,45fb349c-3c29-4252-86f4-125a58e70300,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32798,45fb349c-3c29-4252-86f4-125a58e70300,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32799,45fb349c-3c29-4252-86f4-125a58e70300,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32794,dd8fe9c5-3329-4cf2-bea7-5c38379dfa0b,LIST_ACCOUNTS,hbciListAccounts,false +32795,dd8fe9c5-3329-4cf2-bea7-5c38379dfa0b,LIST_TRANSACTIONS,hbciListTransactions,false +32796,dd8fe9c5-3329-4cf2-bea7-5c38379dfa0b,AUTHORIZATION,,false +32797,dd8fe9c5-3329-4cf2-bea7-5c38379dfa0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32798,dd8fe9c5-3329-4cf2-bea7-5c38379dfa0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32799,dd8fe9c5-3329-4cf2-bea7-5c38379dfa0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32800,240520c7-7194-4b8c-9d71-a3ce50bfd698,LIST_ACCOUNTS,xs2aListAccounts,true -32801,240520c7-7194-4b8c-9d71-a3ce50bfd698,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32801,240520c7-7194-4b8c-9d71-a3ce50bfd698,LIST_TRANSACTIONS,xs2aListTransactions,true 32802,240520c7-7194-4b8c-9d71-a3ce50bfd698,AUTHORIZATION,,true 32803,240520c7-7194-4b8c-9d71-a3ce50bfd698,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32804,240520c7-7194-4b8c-9d71-a3ce50bfd698,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32805,240520c7-7194-4b8c-9d71-a3ce50bfd698,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32806,ede06b63-c741-4a52-a060-bc78302d95d9,LIST_ACCOUNTS,hbciListAccounts,false -32807,ede06b63-c741-4a52-a060-bc78302d95d9,LIST_TRANSACTIONS,hbciListTransactions,false -32808,ede06b63-c741-4a52-a060-bc78302d95d9,AUTHORIZATION,,false -32809,ede06b63-c741-4a52-a060-bc78302d95d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32810,ede06b63-c741-4a52-a060-bc78302d95d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32811,ede06b63-c741-4a52-a060-bc78302d95d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32806,ad165af3-93bb-429b-a38a-817cb699a380,LIST_ACCOUNTS,hbciListAccounts,false +32807,ad165af3-93bb-429b-a38a-817cb699a380,LIST_TRANSACTIONS,hbciListTransactions,false +32808,ad165af3-93bb-429b-a38a-817cb699a380,AUTHORIZATION,,false +32809,ad165af3-93bb-429b-a38a-817cb699a380,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32810,ad165af3-93bb-429b-a38a-817cb699a380,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32811,ad165af3-93bb-429b-a38a-817cb699a380,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32812,e8d41011-c1b0-4003-9c72-552dbac2ba60,LIST_ACCOUNTS,xs2aListAccounts,true -32813,e8d41011-c1b0-4003-9c72-552dbac2ba60,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32813,e8d41011-c1b0-4003-9c72-552dbac2ba60,LIST_TRANSACTIONS,xs2aListTransactions,true 32814,e8d41011-c1b0-4003-9c72-552dbac2ba60,AUTHORIZATION,,true 32815,e8d41011-c1b0-4003-9c72-552dbac2ba60,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32816,e8d41011-c1b0-4003-9c72-552dbac2ba60,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32817,e8d41011-c1b0-4003-9c72-552dbac2ba60,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32818,96264e37-0e07-41c8-b039-054b10235418,LIST_ACCOUNTS,hbciListAccounts,false -32819,96264e37-0e07-41c8-b039-054b10235418,LIST_TRANSACTIONS,hbciListTransactions,false -32820,96264e37-0e07-41c8-b039-054b10235418,AUTHORIZATION,,false -32821,96264e37-0e07-41c8-b039-054b10235418,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32822,96264e37-0e07-41c8-b039-054b10235418,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32823,96264e37-0e07-41c8-b039-054b10235418,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32818,4d3d7738-729c-4144-84aa-1eaf8fdc03e5,LIST_ACCOUNTS,hbciListAccounts,false +32819,4d3d7738-729c-4144-84aa-1eaf8fdc03e5,LIST_TRANSACTIONS,hbciListTransactions,false +32820,4d3d7738-729c-4144-84aa-1eaf8fdc03e5,AUTHORIZATION,,false +32821,4d3d7738-729c-4144-84aa-1eaf8fdc03e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32822,4d3d7738-729c-4144-84aa-1eaf8fdc03e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32823,4d3d7738-729c-4144-84aa-1eaf8fdc03e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32824,a2b8e802-f316-4a9c-b5bc-d0e2eeda106e,LIST_ACCOUNTS,xs2aListAccounts,true -32825,a2b8e802-f316-4a9c-b5bc-d0e2eeda106e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32825,a2b8e802-f316-4a9c-b5bc-d0e2eeda106e,LIST_TRANSACTIONS,xs2aListTransactions,true 32826,a2b8e802-f316-4a9c-b5bc-d0e2eeda106e,AUTHORIZATION,,true 32827,a2b8e802-f316-4a9c-b5bc-d0e2eeda106e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32828,a2b8e802-f316-4a9c-b5bc-d0e2eeda106e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32829,a2b8e802-f316-4a9c-b5bc-d0e2eeda106e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32830,8955a5af-ae1a-49ed-85b1-8edb5bbf7fdd,LIST_ACCOUNTS,hbciListAccounts,false -32831,8955a5af-ae1a-49ed-85b1-8edb5bbf7fdd,LIST_TRANSACTIONS,hbciListTransactions,false -32832,8955a5af-ae1a-49ed-85b1-8edb5bbf7fdd,AUTHORIZATION,,false -32833,8955a5af-ae1a-49ed-85b1-8edb5bbf7fdd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32834,8955a5af-ae1a-49ed-85b1-8edb5bbf7fdd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32835,8955a5af-ae1a-49ed-85b1-8edb5bbf7fdd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32830,8d1f418c-8f78-4f19-8f14-fd22c60bd861,LIST_ACCOUNTS,hbciListAccounts,false +32831,8d1f418c-8f78-4f19-8f14-fd22c60bd861,LIST_TRANSACTIONS,hbciListTransactions,false +32832,8d1f418c-8f78-4f19-8f14-fd22c60bd861,AUTHORIZATION,,false +32833,8d1f418c-8f78-4f19-8f14-fd22c60bd861,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32834,8d1f418c-8f78-4f19-8f14-fd22c60bd861,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32835,8d1f418c-8f78-4f19-8f14-fd22c60bd861,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32836,6c1ef2ce-8bd1-48e0-ab48-7067672219c7,LIST_ACCOUNTS,xs2aListAccounts,true -32837,6c1ef2ce-8bd1-48e0-ab48-7067672219c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32837,6c1ef2ce-8bd1-48e0-ab48-7067672219c7,LIST_TRANSACTIONS,xs2aListTransactions,true 32838,6c1ef2ce-8bd1-48e0-ab48-7067672219c7,AUTHORIZATION,,true 32839,6c1ef2ce-8bd1-48e0-ab48-7067672219c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32840,6c1ef2ce-8bd1-48e0-ab48-7067672219c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32841,6c1ef2ce-8bd1-48e0-ab48-7067672219c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32842,2745fd5e-73b2-4dc4-99f1-d4330ba05bfb,LIST_ACCOUNTS,hbciListAccounts,false -32843,2745fd5e-73b2-4dc4-99f1-d4330ba05bfb,LIST_TRANSACTIONS,hbciListTransactions,false -32844,2745fd5e-73b2-4dc4-99f1-d4330ba05bfb,AUTHORIZATION,,false -32845,2745fd5e-73b2-4dc4-99f1-d4330ba05bfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32846,2745fd5e-73b2-4dc4-99f1-d4330ba05bfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32847,2745fd5e-73b2-4dc4-99f1-d4330ba05bfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32842,06f0670f-614b-45b5-b2e7-e1f9eb846f70,LIST_ACCOUNTS,hbciListAccounts,false +32843,06f0670f-614b-45b5-b2e7-e1f9eb846f70,LIST_TRANSACTIONS,hbciListTransactions,false +32844,06f0670f-614b-45b5-b2e7-e1f9eb846f70,AUTHORIZATION,,false +32845,06f0670f-614b-45b5-b2e7-e1f9eb846f70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32846,06f0670f-614b-45b5-b2e7-e1f9eb846f70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32847,06f0670f-614b-45b5-b2e7-e1f9eb846f70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32848,1a44b5e7-04f0-4e38-89d3-859ad6590b90,LIST_ACCOUNTS,xs2aListAccounts,true -32849,1a44b5e7-04f0-4e38-89d3-859ad6590b90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32849,1a44b5e7-04f0-4e38-89d3-859ad6590b90,LIST_TRANSACTIONS,xs2aListTransactions,true 32850,1a44b5e7-04f0-4e38-89d3-859ad6590b90,AUTHORIZATION,,true 32851,1a44b5e7-04f0-4e38-89d3-859ad6590b90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32852,1a44b5e7-04f0-4e38-89d3-859ad6590b90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32853,1a44b5e7-04f0-4e38-89d3-859ad6590b90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32854,90b75ad8-eb5c-4ca3-8015-24f60b205161,LIST_ACCOUNTS,hbciListAccounts,false -32855,90b75ad8-eb5c-4ca3-8015-24f60b205161,LIST_TRANSACTIONS,hbciListTransactions,false -32856,90b75ad8-eb5c-4ca3-8015-24f60b205161,AUTHORIZATION,,false -32857,90b75ad8-eb5c-4ca3-8015-24f60b205161,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32858,90b75ad8-eb5c-4ca3-8015-24f60b205161,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32859,90b75ad8-eb5c-4ca3-8015-24f60b205161,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32854,2101786e-4339-4365-bf97-478f22991a49,LIST_ACCOUNTS,hbciListAccounts,false +32855,2101786e-4339-4365-bf97-478f22991a49,LIST_TRANSACTIONS,hbciListTransactions,false +32856,2101786e-4339-4365-bf97-478f22991a49,AUTHORIZATION,,false +32857,2101786e-4339-4365-bf97-478f22991a49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32858,2101786e-4339-4365-bf97-478f22991a49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32859,2101786e-4339-4365-bf97-478f22991a49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32860,6ffd6b75-81be-4dc3-8c78-fa10652ac2c2,LIST_ACCOUNTS,xs2aListAccounts,true -32861,6ffd6b75-81be-4dc3-8c78-fa10652ac2c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32861,6ffd6b75-81be-4dc3-8c78-fa10652ac2c2,LIST_TRANSACTIONS,xs2aListTransactions,true 32862,6ffd6b75-81be-4dc3-8c78-fa10652ac2c2,AUTHORIZATION,,true 32863,6ffd6b75-81be-4dc3-8c78-fa10652ac2c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32864,6ffd6b75-81be-4dc3-8c78-fa10652ac2c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32865,6ffd6b75-81be-4dc3-8c78-fa10652ac2c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32866,166453f8-00df-4bc4-9860-a407ade25569,LIST_ACCOUNTS,hbciListAccounts,false -32867,166453f8-00df-4bc4-9860-a407ade25569,LIST_TRANSACTIONS,hbciListTransactions,false -32868,166453f8-00df-4bc4-9860-a407ade25569,AUTHORIZATION,,false -32869,166453f8-00df-4bc4-9860-a407ade25569,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32870,166453f8-00df-4bc4-9860-a407ade25569,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32871,166453f8-00df-4bc4-9860-a407ade25569,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32866,cf90b167-43e1-4090-b177-317e5d326e2e,LIST_ACCOUNTS,hbciListAccounts,false +32867,cf90b167-43e1-4090-b177-317e5d326e2e,LIST_TRANSACTIONS,hbciListTransactions,false +32868,cf90b167-43e1-4090-b177-317e5d326e2e,AUTHORIZATION,,false +32869,cf90b167-43e1-4090-b177-317e5d326e2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32870,cf90b167-43e1-4090-b177-317e5d326e2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32871,cf90b167-43e1-4090-b177-317e5d326e2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32872,997f33d3-f106-4689-a58a-8e5b9e904b91,LIST_ACCOUNTS,xs2aListAccounts,true -32873,997f33d3-f106-4689-a58a-8e5b9e904b91,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32873,997f33d3-f106-4689-a58a-8e5b9e904b91,LIST_TRANSACTIONS,xs2aListTransactions,true 32874,997f33d3-f106-4689-a58a-8e5b9e904b91,AUTHORIZATION,,true 32875,997f33d3-f106-4689-a58a-8e5b9e904b91,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32876,997f33d3-f106-4689-a58a-8e5b9e904b91,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32877,997f33d3-f106-4689-a58a-8e5b9e904b91,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32878,6ce64182-2381-453f-9fe4-ed9b353cb28d,LIST_ACCOUNTS,hbciListAccounts,false -32879,6ce64182-2381-453f-9fe4-ed9b353cb28d,LIST_TRANSACTIONS,hbciListTransactions,false -32880,6ce64182-2381-453f-9fe4-ed9b353cb28d,AUTHORIZATION,,false -32881,6ce64182-2381-453f-9fe4-ed9b353cb28d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32882,6ce64182-2381-453f-9fe4-ed9b353cb28d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32883,6ce64182-2381-453f-9fe4-ed9b353cb28d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32878,b3ccace1-3d46-4e8e-8d6f-d8feb963e21a,LIST_ACCOUNTS,hbciListAccounts,false +32879,b3ccace1-3d46-4e8e-8d6f-d8feb963e21a,LIST_TRANSACTIONS,hbciListTransactions,false +32880,b3ccace1-3d46-4e8e-8d6f-d8feb963e21a,AUTHORIZATION,,false +32881,b3ccace1-3d46-4e8e-8d6f-d8feb963e21a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32882,b3ccace1-3d46-4e8e-8d6f-d8feb963e21a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32883,b3ccace1-3d46-4e8e-8d6f-d8feb963e21a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32884,acfa9439-08e6-4e0a-ab90-e75082d865bf,LIST_ACCOUNTS,xs2aListAccounts,true -32885,acfa9439-08e6-4e0a-ab90-e75082d865bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32885,acfa9439-08e6-4e0a-ab90-e75082d865bf,LIST_TRANSACTIONS,xs2aListTransactions,true 32886,acfa9439-08e6-4e0a-ab90-e75082d865bf,AUTHORIZATION,,true 32887,acfa9439-08e6-4e0a-ab90-e75082d865bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32888,acfa9439-08e6-4e0a-ab90-e75082d865bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32889,acfa9439-08e6-4e0a-ab90-e75082d865bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32890,2d209338-898d-4839-8963-e7fa383beec7,LIST_ACCOUNTS,hbciListAccounts,false -32891,2d209338-898d-4839-8963-e7fa383beec7,LIST_TRANSACTIONS,hbciListTransactions,false -32892,2d209338-898d-4839-8963-e7fa383beec7,AUTHORIZATION,,false -32893,2d209338-898d-4839-8963-e7fa383beec7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32894,2d209338-898d-4839-8963-e7fa383beec7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32895,2d209338-898d-4839-8963-e7fa383beec7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32890,a8c6b81c-0c67-4647-87be-f10da58f94b9,LIST_ACCOUNTS,hbciListAccounts,false +32891,a8c6b81c-0c67-4647-87be-f10da58f94b9,LIST_TRANSACTIONS,hbciListTransactions,false +32892,a8c6b81c-0c67-4647-87be-f10da58f94b9,AUTHORIZATION,,false +32893,a8c6b81c-0c67-4647-87be-f10da58f94b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32894,a8c6b81c-0c67-4647-87be-f10da58f94b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32895,a8c6b81c-0c67-4647-87be-f10da58f94b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32896,8c8da7fa-0d69-4065-90db-e8c93a33220b,LIST_ACCOUNTS,xs2aListAccounts,true -32897,8c8da7fa-0d69-4065-90db-e8c93a33220b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32897,8c8da7fa-0d69-4065-90db-e8c93a33220b,LIST_TRANSACTIONS,xs2aListTransactions,true 32898,8c8da7fa-0d69-4065-90db-e8c93a33220b,AUTHORIZATION,,true 32899,8c8da7fa-0d69-4065-90db-e8c93a33220b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32900,8c8da7fa-0d69-4065-90db-e8c93a33220b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32901,8c8da7fa-0d69-4065-90db-e8c93a33220b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32902,d9ca54e4-6747-410d-8b8b-fdec94e39a15,LIST_ACCOUNTS,hbciListAccounts,false -32903,d9ca54e4-6747-410d-8b8b-fdec94e39a15,LIST_TRANSACTIONS,hbciListTransactions,false -32904,d9ca54e4-6747-410d-8b8b-fdec94e39a15,AUTHORIZATION,,false -32905,d9ca54e4-6747-410d-8b8b-fdec94e39a15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32906,d9ca54e4-6747-410d-8b8b-fdec94e39a15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32907,d9ca54e4-6747-410d-8b8b-fdec94e39a15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32902,d2a8e274-9c8a-4a03-9094-0108180999fc,LIST_ACCOUNTS,hbciListAccounts,false +32903,d2a8e274-9c8a-4a03-9094-0108180999fc,LIST_TRANSACTIONS,hbciListTransactions,false +32904,d2a8e274-9c8a-4a03-9094-0108180999fc,AUTHORIZATION,,false +32905,d2a8e274-9c8a-4a03-9094-0108180999fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32906,d2a8e274-9c8a-4a03-9094-0108180999fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32907,d2a8e274-9c8a-4a03-9094-0108180999fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32908,7e4b8694-1a9a-4cb9-aa77-3c21ff5225f9,LIST_ACCOUNTS,xs2aListAccounts,true -32909,7e4b8694-1a9a-4cb9-aa77-3c21ff5225f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32909,7e4b8694-1a9a-4cb9-aa77-3c21ff5225f9,LIST_TRANSACTIONS,xs2aListTransactions,true 32910,7e4b8694-1a9a-4cb9-aa77-3c21ff5225f9,AUTHORIZATION,,true 32911,7e4b8694-1a9a-4cb9-aa77-3c21ff5225f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32912,7e4b8694-1a9a-4cb9-aa77-3c21ff5225f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32913,7e4b8694-1a9a-4cb9-aa77-3c21ff5225f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32914,9f22ea8f-0311-405c-956d-b5a9dd136900,LIST_ACCOUNTS,hbciListAccounts,false -32915,9f22ea8f-0311-405c-956d-b5a9dd136900,LIST_TRANSACTIONS,hbciListTransactions,false -32916,9f22ea8f-0311-405c-956d-b5a9dd136900,AUTHORIZATION,,false -32917,9f22ea8f-0311-405c-956d-b5a9dd136900,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32918,9f22ea8f-0311-405c-956d-b5a9dd136900,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32919,9f22ea8f-0311-405c-956d-b5a9dd136900,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32914,4430978b-fef2-4123-a521-6867c343776b,LIST_ACCOUNTS,hbciListAccounts,false +32915,4430978b-fef2-4123-a521-6867c343776b,LIST_TRANSACTIONS,hbciListTransactions,false +32916,4430978b-fef2-4123-a521-6867c343776b,AUTHORIZATION,,false +32917,4430978b-fef2-4123-a521-6867c343776b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32918,4430978b-fef2-4123-a521-6867c343776b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32919,4430978b-fef2-4123-a521-6867c343776b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32920,6ccf4bb9-329a-43ac-885d-b72051747c3c,LIST_ACCOUNTS,xs2aListAccounts,true -32921,6ccf4bb9-329a-43ac-885d-b72051747c3c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32921,6ccf4bb9-329a-43ac-885d-b72051747c3c,LIST_TRANSACTIONS,xs2aListTransactions,true 32922,6ccf4bb9-329a-43ac-885d-b72051747c3c,AUTHORIZATION,,true 32923,6ccf4bb9-329a-43ac-885d-b72051747c3c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32924,6ccf4bb9-329a-43ac-885d-b72051747c3c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32925,6ccf4bb9-329a-43ac-885d-b72051747c3c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32926,72c7764f-dc65-49f8-850c-ad3ff7a2238b,LIST_ACCOUNTS,hbciListAccounts,false -32927,72c7764f-dc65-49f8-850c-ad3ff7a2238b,LIST_TRANSACTIONS,hbciListTransactions,false -32928,72c7764f-dc65-49f8-850c-ad3ff7a2238b,AUTHORIZATION,,false -32929,72c7764f-dc65-49f8-850c-ad3ff7a2238b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32930,72c7764f-dc65-49f8-850c-ad3ff7a2238b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32931,72c7764f-dc65-49f8-850c-ad3ff7a2238b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32926,804094db-e6e8-4ce6-ba92-206f39942429,LIST_ACCOUNTS,hbciListAccounts,false +32927,804094db-e6e8-4ce6-ba92-206f39942429,LIST_TRANSACTIONS,hbciListTransactions,false +32928,804094db-e6e8-4ce6-ba92-206f39942429,AUTHORIZATION,,false +32929,804094db-e6e8-4ce6-ba92-206f39942429,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32930,804094db-e6e8-4ce6-ba92-206f39942429,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32931,804094db-e6e8-4ce6-ba92-206f39942429,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32932,7826ecd7-dc02-473f-a990-ec4aa6ebb2a9,LIST_ACCOUNTS,xs2aListAccounts,true -32933,7826ecd7-dc02-473f-a990-ec4aa6ebb2a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32933,7826ecd7-dc02-473f-a990-ec4aa6ebb2a9,LIST_TRANSACTIONS,xs2aListTransactions,true 32934,7826ecd7-dc02-473f-a990-ec4aa6ebb2a9,AUTHORIZATION,,true 32935,7826ecd7-dc02-473f-a990-ec4aa6ebb2a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32936,7826ecd7-dc02-473f-a990-ec4aa6ebb2a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32937,7826ecd7-dc02-473f-a990-ec4aa6ebb2a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32938,4e55156f-beba-4abd-b7c3-1975713d8b7e,LIST_ACCOUNTS,hbciListAccounts,false -32939,4e55156f-beba-4abd-b7c3-1975713d8b7e,LIST_TRANSACTIONS,hbciListTransactions,false -32940,4e55156f-beba-4abd-b7c3-1975713d8b7e,AUTHORIZATION,,false -32941,4e55156f-beba-4abd-b7c3-1975713d8b7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32942,4e55156f-beba-4abd-b7c3-1975713d8b7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32943,4e55156f-beba-4abd-b7c3-1975713d8b7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32938,7ec4474e-3a43-4e5b-b1a3-51cddefbbaf2,LIST_ACCOUNTS,hbciListAccounts,false +32939,7ec4474e-3a43-4e5b-b1a3-51cddefbbaf2,LIST_TRANSACTIONS,hbciListTransactions,false +32940,7ec4474e-3a43-4e5b-b1a3-51cddefbbaf2,AUTHORIZATION,,false +32941,7ec4474e-3a43-4e5b-b1a3-51cddefbbaf2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32942,7ec4474e-3a43-4e5b-b1a3-51cddefbbaf2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32943,7ec4474e-3a43-4e5b-b1a3-51cddefbbaf2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32944,986fcaad-dbe0-4564-992f-17086958e5ed,LIST_ACCOUNTS,xs2aListAccounts,true -32945,986fcaad-dbe0-4564-992f-17086958e5ed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32945,986fcaad-dbe0-4564-992f-17086958e5ed,LIST_TRANSACTIONS,xs2aListTransactions,true 32946,986fcaad-dbe0-4564-992f-17086958e5ed,AUTHORIZATION,,true 32947,986fcaad-dbe0-4564-992f-17086958e5ed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32948,986fcaad-dbe0-4564-992f-17086958e5ed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32949,986fcaad-dbe0-4564-992f-17086958e5ed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32950,76a197cc-703f-4126-a622-7371f7a4465a,LIST_ACCOUNTS,hbciListAccounts,false -32951,76a197cc-703f-4126-a622-7371f7a4465a,LIST_TRANSACTIONS,hbciListTransactions,false -32952,76a197cc-703f-4126-a622-7371f7a4465a,AUTHORIZATION,,false -32953,76a197cc-703f-4126-a622-7371f7a4465a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32954,76a197cc-703f-4126-a622-7371f7a4465a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32955,76a197cc-703f-4126-a622-7371f7a4465a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32950,dbeeedc7-6d59-4194-b229-5f5b9ff9a93f,LIST_ACCOUNTS,hbciListAccounts,false +32951,dbeeedc7-6d59-4194-b229-5f5b9ff9a93f,LIST_TRANSACTIONS,hbciListTransactions,false +32952,dbeeedc7-6d59-4194-b229-5f5b9ff9a93f,AUTHORIZATION,,false +32953,dbeeedc7-6d59-4194-b229-5f5b9ff9a93f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32954,dbeeedc7-6d59-4194-b229-5f5b9ff9a93f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32955,dbeeedc7-6d59-4194-b229-5f5b9ff9a93f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32956,9c8cea81-710e-467d-9e1c-4f212b760a45,LIST_ACCOUNTS,xs2aListAccounts,true -32957,9c8cea81-710e-467d-9e1c-4f212b760a45,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32957,9c8cea81-710e-467d-9e1c-4f212b760a45,LIST_TRANSACTIONS,xs2aListTransactions,true 32958,9c8cea81-710e-467d-9e1c-4f212b760a45,AUTHORIZATION,,true 32959,9c8cea81-710e-467d-9e1c-4f212b760a45,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32960,9c8cea81-710e-467d-9e1c-4f212b760a45,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32961,9c8cea81-710e-467d-9e1c-4f212b760a45,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32962,cd652ef3-f499-4922-a1f0-b2bab8912e65,LIST_ACCOUNTS,hbciListAccounts,false -32963,cd652ef3-f499-4922-a1f0-b2bab8912e65,LIST_TRANSACTIONS,hbciListTransactions,false -32964,cd652ef3-f499-4922-a1f0-b2bab8912e65,AUTHORIZATION,,false -32965,cd652ef3-f499-4922-a1f0-b2bab8912e65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32966,cd652ef3-f499-4922-a1f0-b2bab8912e65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32967,cd652ef3-f499-4922-a1f0-b2bab8912e65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32962,99573620-927c-4171-81b7-105d6d286503,LIST_ACCOUNTS,hbciListAccounts,false +32963,99573620-927c-4171-81b7-105d6d286503,LIST_TRANSACTIONS,hbciListTransactions,false +32964,99573620-927c-4171-81b7-105d6d286503,AUTHORIZATION,,false +32965,99573620-927c-4171-81b7-105d6d286503,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32966,99573620-927c-4171-81b7-105d6d286503,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32967,99573620-927c-4171-81b7-105d6d286503,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32968,d43e8ff8-dbe6-4d55-bfec-51a96f678ab7,LIST_ACCOUNTS,xs2aListAccounts,true -32969,d43e8ff8-dbe6-4d55-bfec-51a96f678ab7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32969,d43e8ff8-dbe6-4d55-bfec-51a96f678ab7,LIST_TRANSACTIONS,xs2aListTransactions,true 32970,d43e8ff8-dbe6-4d55-bfec-51a96f678ab7,AUTHORIZATION,,true 32971,d43e8ff8-dbe6-4d55-bfec-51a96f678ab7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32972,d43e8ff8-dbe6-4d55-bfec-51a96f678ab7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32973,d43e8ff8-dbe6-4d55-bfec-51a96f678ab7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32974,279af378-d4da-4cf3-b901-c1186469f325,LIST_ACCOUNTS,hbciListAccounts,false -32975,279af378-d4da-4cf3-b901-c1186469f325,LIST_TRANSACTIONS,hbciListTransactions,false -32976,279af378-d4da-4cf3-b901-c1186469f325,AUTHORIZATION,,false -32977,279af378-d4da-4cf3-b901-c1186469f325,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32978,279af378-d4da-4cf3-b901-c1186469f325,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32979,279af378-d4da-4cf3-b901-c1186469f325,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32974,de6e8c68-3616-4a85-a04a-09c335c5f51f,LIST_ACCOUNTS,hbciListAccounts,false +32975,de6e8c68-3616-4a85-a04a-09c335c5f51f,LIST_TRANSACTIONS,hbciListTransactions,false +32976,de6e8c68-3616-4a85-a04a-09c335c5f51f,AUTHORIZATION,,false +32977,de6e8c68-3616-4a85-a04a-09c335c5f51f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32978,de6e8c68-3616-4a85-a04a-09c335c5f51f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32979,de6e8c68-3616-4a85-a04a-09c335c5f51f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32980,21b85e58-58e1-4821-aa5e-3d8ce3ab92e5,LIST_ACCOUNTS,xs2aListAccounts,true -32981,21b85e58-58e1-4821-aa5e-3d8ce3ab92e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32981,21b85e58-58e1-4821-aa5e-3d8ce3ab92e5,LIST_TRANSACTIONS,xs2aListTransactions,true 32982,21b85e58-58e1-4821-aa5e-3d8ce3ab92e5,AUTHORIZATION,,true 32983,21b85e58-58e1-4821-aa5e-3d8ce3ab92e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32984,21b85e58-58e1-4821-aa5e-3d8ce3ab92e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32985,21b85e58-58e1-4821-aa5e-3d8ce3ab92e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32986,446f3734-8d01-48ce-bc3c-c1edddd314d2,LIST_ACCOUNTS,hbciListAccounts,false -32987,446f3734-8d01-48ce-bc3c-c1edddd314d2,LIST_TRANSACTIONS,hbciListTransactions,false -32988,446f3734-8d01-48ce-bc3c-c1edddd314d2,AUTHORIZATION,,false -32989,446f3734-8d01-48ce-bc3c-c1edddd314d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -32990,446f3734-8d01-48ce-bc3c-c1edddd314d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -32991,446f3734-8d01-48ce-bc3c-c1edddd314d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32986,f7dd0425-d827-4a8a-840a-d008449ecb63,LIST_ACCOUNTS,hbciListAccounts,false +32987,f7dd0425-d827-4a8a-840a-d008449ecb63,LIST_TRANSACTIONS,hbciListTransactions,false +32988,f7dd0425-d827-4a8a-840a-d008449ecb63,AUTHORIZATION,,false +32989,f7dd0425-d827-4a8a-840a-d008449ecb63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +32990,f7dd0425-d827-4a8a-840a-d008449ecb63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +32991,f7dd0425-d827-4a8a-840a-d008449ecb63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 32992,0166e802-4be5-4ce1-88b6-207dc2d6ffbb,LIST_ACCOUNTS,xs2aListAccounts,true -32993,0166e802-4be5-4ce1-88b6-207dc2d6ffbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +32993,0166e802-4be5-4ce1-88b6-207dc2d6ffbb,LIST_TRANSACTIONS,xs2aListTransactions,true 32994,0166e802-4be5-4ce1-88b6-207dc2d6ffbb,AUTHORIZATION,,true 32995,0166e802-4be5-4ce1-88b6-207dc2d6ffbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 32996,0166e802-4be5-4ce1-88b6-207dc2d6ffbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 32997,0166e802-4be5-4ce1-88b6-207dc2d6ffbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -32998,a2e37c10-f7e5-4c60-aa66-34b1ab7ac97e,LIST_ACCOUNTS,hbciListAccounts,false -32999,a2e37c10-f7e5-4c60-aa66-34b1ab7ac97e,LIST_TRANSACTIONS,hbciListTransactions,false -33000,a2e37c10-f7e5-4c60-aa66-34b1ab7ac97e,AUTHORIZATION,,false -33001,a2e37c10-f7e5-4c60-aa66-34b1ab7ac97e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33002,a2e37c10-f7e5-4c60-aa66-34b1ab7ac97e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33003,a2e37c10-f7e5-4c60-aa66-34b1ab7ac97e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +32998,d46653aa-046a-427a-a781-ae80536a94b6,LIST_ACCOUNTS,hbciListAccounts,false +32999,d46653aa-046a-427a-a781-ae80536a94b6,LIST_TRANSACTIONS,hbciListTransactions,false +33000,d46653aa-046a-427a-a781-ae80536a94b6,AUTHORIZATION,,false +33001,d46653aa-046a-427a-a781-ae80536a94b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33002,d46653aa-046a-427a-a781-ae80536a94b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33003,d46653aa-046a-427a-a781-ae80536a94b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33004,619107cf-94db-4844-b8d5-bd512f55e234,LIST_ACCOUNTS,xs2aListAccounts,true -33005,619107cf-94db-4844-b8d5-bd512f55e234,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33005,619107cf-94db-4844-b8d5-bd512f55e234,LIST_TRANSACTIONS,xs2aListTransactions,true 33006,619107cf-94db-4844-b8d5-bd512f55e234,AUTHORIZATION,,true 33007,619107cf-94db-4844-b8d5-bd512f55e234,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33008,619107cf-94db-4844-b8d5-bd512f55e234,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33009,619107cf-94db-4844-b8d5-bd512f55e234,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33010,058c9f1d-8803-40c5-8b77-397a1d9fcc0a,LIST_ACCOUNTS,hbciListAccounts,false -33011,058c9f1d-8803-40c5-8b77-397a1d9fcc0a,LIST_TRANSACTIONS,hbciListTransactions,false -33012,058c9f1d-8803-40c5-8b77-397a1d9fcc0a,AUTHORIZATION,,false -33013,058c9f1d-8803-40c5-8b77-397a1d9fcc0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33014,058c9f1d-8803-40c5-8b77-397a1d9fcc0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33015,058c9f1d-8803-40c5-8b77-397a1d9fcc0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33010,e4dc84a1-2adb-45e1-bdb1-d584023bd6ae,LIST_ACCOUNTS,hbciListAccounts,false +33011,e4dc84a1-2adb-45e1-bdb1-d584023bd6ae,LIST_TRANSACTIONS,hbciListTransactions,false +33012,e4dc84a1-2adb-45e1-bdb1-d584023bd6ae,AUTHORIZATION,,false +33013,e4dc84a1-2adb-45e1-bdb1-d584023bd6ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33014,e4dc84a1-2adb-45e1-bdb1-d584023bd6ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33015,e4dc84a1-2adb-45e1-bdb1-d584023bd6ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33016,2393f8db-067e-4b44-a01a-6f17009fc729,LIST_ACCOUNTS,xs2aListAccounts,true -33017,2393f8db-067e-4b44-a01a-6f17009fc729,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33017,2393f8db-067e-4b44-a01a-6f17009fc729,LIST_TRANSACTIONS,xs2aListTransactions,true 33018,2393f8db-067e-4b44-a01a-6f17009fc729,AUTHORIZATION,,true 33019,2393f8db-067e-4b44-a01a-6f17009fc729,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33020,2393f8db-067e-4b44-a01a-6f17009fc729,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33021,2393f8db-067e-4b44-a01a-6f17009fc729,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33022,cf8e704b-a655-4e50-b293-8fefb987851d,LIST_ACCOUNTS,hbciListAccounts,false -33023,cf8e704b-a655-4e50-b293-8fefb987851d,LIST_TRANSACTIONS,hbciListTransactions,false -33024,cf8e704b-a655-4e50-b293-8fefb987851d,AUTHORIZATION,,false -33025,cf8e704b-a655-4e50-b293-8fefb987851d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33026,cf8e704b-a655-4e50-b293-8fefb987851d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33027,cf8e704b-a655-4e50-b293-8fefb987851d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33022,daa0f172-ec12-4770-b43d-3ff22baa3eb1,LIST_ACCOUNTS,hbciListAccounts,false +33023,daa0f172-ec12-4770-b43d-3ff22baa3eb1,LIST_TRANSACTIONS,hbciListTransactions,false +33024,daa0f172-ec12-4770-b43d-3ff22baa3eb1,AUTHORIZATION,,false +33025,daa0f172-ec12-4770-b43d-3ff22baa3eb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33026,daa0f172-ec12-4770-b43d-3ff22baa3eb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33027,daa0f172-ec12-4770-b43d-3ff22baa3eb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33028,59d67731-bbf9-4340-94c3-6fd6e1970b7e,LIST_ACCOUNTS,xs2aListAccounts,true -33029,59d67731-bbf9-4340-94c3-6fd6e1970b7e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33029,59d67731-bbf9-4340-94c3-6fd6e1970b7e,LIST_TRANSACTIONS,xs2aListTransactions,true 33030,59d67731-bbf9-4340-94c3-6fd6e1970b7e,AUTHORIZATION,,true 33031,59d67731-bbf9-4340-94c3-6fd6e1970b7e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33032,59d67731-bbf9-4340-94c3-6fd6e1970b7e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33033,59d67731-bbf9-4340-94c3-6fd6e1970b7e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33034,5cfcb7f0-0574-4294-be78-e4fedc0826b8,LIST_ACCOUNTS,hbciListAccounts,false -33035,5cfcb7f0-0574-4294-be78-e4fedc0826b8,LIST_TRANSACTIONS,hbciListTransactions,false -33036,5cfcb7f0-0574-4294-be78-e4fedc0826b8,AUTHORIZATION,,false -33037,5cfcb7f0-0574-4294-be78-e4fedc0826b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33038,5cfcb7f0-0574-4294-be78-e4fedc0826b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33039,5cfcb7f0-0574-4294-be78-e4fedc0826b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33034,a36c0854-e94a-4daf-87a5-00e207aad9f5,LIST_ACCOUNTS,hbciListAccounts,false +33035,a36c0854-e94a-4daf-87a5-00e207aad9f5,LIST_TRANSACTIONS,hbciListTransactions,false +33036,a36c0854-e94a-4daf-87a5-00e207aad9f5,AUTHORIZATION,,false +33037,a36c0854-e94a-4daf-87a5-00e207aad9f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33038,a36c0854-e94a-4daf-87a5-00e207aad9f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33039,a36c0854-e94a-4daf-87a5-00e207aad9f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33040,1f4f2572-7d48-42e6-b0a3-2dce4a1f32cc,LIST_ACCOUNTS,xs2aListAccounts,true -33041,1f4f2572-7d48-42e6-b0a3-2dce4a1f32cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33041,1f4f2572-7d48-42e6-b0a3-2dce4a1f32cc,LIST_TRANSACTIONS,xs2aListTransactions,true 33042,1f4f2572-7d48-42e6-b0a3-2dce4a1f32cc,AUTHORIZATION,,true 33043,1f4f2572-7d48-42e6-b0a3-2dce4a1f32cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33044,1f4f2572-7d48-42e6-b0a3-2dce4a1f32cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33045,1f4f2572-7d48-42e6-b0a3-2dce4a1f32cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33046,0c047330-e046-43db-b0fd-50d70a2c9c11,LIST_ACCOUNTS,hbciListAccounts,false -33047,0c047330-e046-43db-b0fd-50d70a2c9c11,LIST_TRANSACTIONS,hbciListTransactions,false -33048,0c047330-e046-43db-b0fd-50d70a2c9c11,AUTHORIZATION,,false -33049,0c047330-e046-43db-b0fd-50d70a2c9c11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33050,0c047330-e046-43db-b0fd-50d70a2c9c11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33051,0c047330-e046-43db-b0fd-50d70a2c9c11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33046,3bb8673f-cdb5-4319-9706-5799fb69933e,LIST_ACCOUNTS,hbciListAccounts,false +33047,3bb8673f-cdb5-4319-9706-5799fb69933e,LIST_TRANSACTIONS,hbciListTransactions,false +33048,3bb8673f-cdb5-4319-9706-5799fb69933e,AUTHORIZATION,,false +33049,3bb8673f-cdb5-4319-9706-5799fb69933e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33050,3bb8673f-cdb5-4319-9706-5799fb69933e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33051,3bb8673f-cdb5-4319-9706-5799fb69933e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33052,70db6e6d-231d-4f90-be89-363192de6a42,LIST_ACCOUNTS,xs2aListAccounts,true -33053,70db6e6d-231d-4f90-be89-363192de6a42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33053,70db6e6d-231d-4f90-be89-363192de6a42,LIST_TRANSACTIONS,xs2aListTransactions,true 33054,70db6e6d-231d-4f90-be89-363192de6a42,AUTHORIZATION,,true 33055,70db6e6d-231d-4f90-be89-363192de6a42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33056,70db6e6d-231d-4f90-be89-363192de6a42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33057,70db6e6d-231d-4f90-be89-363192de6a42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33058,e9e6afb6-ee47-4157-b09e-ad19357b26be,LIST_ACCOUNTS,hbciListAccounts,false -33059,e9e6afb6-ee47-4157-b09e-ad19357b26be,LIST_TRANSACTIONS,hbciListTransactions,false -33060,e9e6afb6-ee47-4157-b09e-ad19357b26be,AUTHORIZATION,,false -33061,e9e6afb6-ee47-4157-b09e-ad19357b26be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33062,e9e6afb6-ee47-4157-b09e-ad19357b26be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33063,e9e6afb6-ee47-4157-b09e-ad19357b26be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33058,9963914a-2027-4bd3-9a8e-ab5fba7f28fe,LIST_ACCOUNTS,hbciListAccounts,false +33059,9963914a-2027-4bd3-9a8e-ab5fba7f28fe,LIST_TRANSACTIONS,hbciListTransactions,false +33060,9963914a-2027-4bd3-9a8e-ab5fba7f28fe,AUTHORIZATION,,false +33061,9963914a-2027-4bd3-9a8e-ab5fba7f28fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33062,9963914a-2027-4bd3-9a8e-ab5fba7f28fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33063,9963914a-2027-4bd3-9a8e-ab5fba7f28fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33064,9ec99143-c6a6-44a3-b9d7-8a5e232245dc,LIST_ACCOUNTS,xs2aListAccounts,true -33065,9ec99143-c6a6-44a3-b9d7-8a5e232245dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33065,9ec99143-c6a6-44a3-b9d7-8a5e232245dc,LIST_TRANSACTIONS,xs2aListTransactions,true 33066,9ec99143-c6a6-44a3-b9d7-8a5e232245dc,AUTHORIZATION,,true 33067,9ec99143-c6a6-44a3-b9d7-8a5e232245dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33068,9ec99143-c6a6-44a3-b9d7-8a5e232245dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33069,9ec99143-c6a6-44a3-b9d7-8a5e232245dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33070,4530f17b-a9a5-4453-b5d2-580fee7aeb49,LIST_ACCOUNTS,hbciListAccounts,false -33071,4530f17b-a9a5-4453-b5d2-580fee7aeb49,LIST_TRANSACTIONS,hbciListTransactions,false -33072,4530f17b-a9a5-4453-b5d2-580fee7aeb49,AUTHORIZATION,,false -33073,4530f17b-a9a5-4453-b5d2-580fee7aeb49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33074,4530f17b-a9a5-4453-b5d2-580fee7aeb49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33075,4530f17b-a9a5-4453-b5d2-580fee7aeb49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33070,7d3095cd-3663-4b5d-9d08-b93e4854d03b,LIST_ACCOUNTS,hbciListAccounts,false +33071,7d3095cd-3663-4b5d-9d08-b93e4854d03b,LIST_TRANSACTIONS,hbciListTransactions,false +33072,7d3095cd-3663-4b5d-9d08-b93e4854d03b,AUTHORIZATION,,false +33073,7d3095cd-3663-4b5d-9d08-b93e4854d03b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33074,7d3095cd-3663-4b5d-9d08-b93e4854d03b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33075,7d3095cd-3663-4b5d-9d08-b93e4854d03b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33076,f2baaa19-5bb5-48b3-ab33-f714e5e0810c,LIST_ACCOUNTS,xs2aListAccounts,true -33077,f2baaa19-5bb5-48b3-ab33-f714e5e0810c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33077,f2baaa19-5bb5-48b3-ab33-f714e5e0810c,LIST_TRANSACTIONS,xs2aListTransactions,true 33078,f2baaa19-5bb5-48b3-ab33-f714e5e0810c,AUTHORIZATION,,true 33079,f2baaa19-5bb5-48b3-ab33-f714e5e0810c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33080,f2baaa19-5bb5-48b3-ab33-f714e5e0810c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33081,f2baaa19-5bb5-48b3-ab33-f714e5e0810c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33082,9166bb95-4d9c-4ae2-959a-226e652f82d5,LIST_ACCOUNTS,hbciListAccounts,false -33083,9166bb95-4d9c-4ae2-959a-226e652f82d5,LIST_TRANSACTIONS,hbciListTransactions,false -33084,9166bb95-4d9c-4ae2-959a-226e652f82d5,AUTHORIZATION,,false -33085,9166bb95-4d9c-4ae2-959a-226e652f82d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33086,9166bb95-4d9c-4ae2-959a-226e652f82d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33087,9166bb95-4d9c-4ae2-959a-226e652f82d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33082,9b3b8135-aabf-4d08-a7e8-11ac983c223c,LIST_ACCOUNTS,hbciListAccounts,false +33083,9b3b8135-aabf-4d08-a7e8-11ac983c223c,LIST_TRANSACTIONS,hbciListTransactions,false +33084,9b3b8135-aabf-4d08-a7e8-11ac983c223c,AUTHORIZATION,,false +33085,9b3b8135-aabf-4d08-a7e8-11ac983c223c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33086,9b3b8135-aabf-4d08-a7e8-11ac983c223c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33087,9b3b8135-aabf-4d08-a7e8-11ac983c223c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33088,a2c22112-b413-4acb-81e6-4e0914449075,LIST_ACCOUNTS,xs2aListAccounts,true -33089,a2c22112-b413-4acb-81e6-4e0914449075,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33089,a2c22112-b413-4acb-81e6-4e0914449075,LIST_TRANSACTIONS,xs2aListTransactions,true 33090,a2c22112-b413-4acb-81e6-4e0914449075,AUTHORIZATION,,true 33091,a2c22112-b413-4acb-81e6-4e0914449075,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33092,a2c22112-b413-4acb-81e6-4e0914449075,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33093,a2c22112-b413-4acb-81e6-4e0914449075,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33094,cdfeda98-207e-4ae0-98c1-94428c38e0d4,LIST_ACCOUNTS,hbciListAccounts,false -33095,cdfeda98-207e-4ae0-98c1-94428c38e0d4,LIST_TRANSACTIONS,hbciListTransactions,false -33096,cdfeda98-207e-4ae0-98c1-94428c38e0d4,AUTHORIZATION,,false -33097,cdfeda98-207e-4ae0-98c1-94428c38e0d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33098,cdfeda98-207e-4ae0-98c1-94428c38e0d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33099,cdfeda98-207e-4ae0-98c1-94428c38e0d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33094,4cc21aff-1f3f-4c1c-80ff-d57ac8bf0e66,LIST_ACCOUNTS,hbciListAccounts,false +33095,4cc21aff-1f3f-4c1c-80ff-d57ac8bf0e66,LIST_TRANSACTIONS,hbciListTransactions,false +33096,4cc21aff-1f3f-4c1c-80ff-d57ac8bf0e66,AUTHORIZATION,,false +33097,4cc21aff-1f3f-4c1c-80ff-d57ac8bf0e66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33098,4cc21aff-1f3f-4c1c-80ff-d57ac8bf0e66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33099,4cc21aff-1f3f-4c1c-80ff-d57ac8bf0e66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33100,012cc2f9-823b-4dcd-b365-3244a03e3802,LIST_ACCOUNTS,xs2aListAccounts,true -33101,012cc2f9-823b-4dcd-b365-3244a03e3802,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33101,012cc2f9-823b-4dcd-b365-3244a03e3802,LIST_TRANSACTIONS,xs2aListTransactions,true 33102,012cc2f9-823b-4dcd-b365-3244a03e3802,AUTHORIZATION,,true 33103,012cc2f9-823b-4dcd-b365-3244a03e3802,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33104,012cc2f9-823b-4dcd-b365-3244a03e3802,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33105,012cc2f9-823b-4dcd-b365-3244a03e3802,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33106,5fea603b-77d3-4d50-9d63-55f2dfc8b328,LIST_ACCOUNTS,hbciListAccounts,false -33107,5fea603b-77d3-4d50-9d63-55f2dfc8b328,LIST_TRANSACTIONS,hbciListTransactions,false -33108,5fea603b-77d3-4d50-9d63-55f2dfc8b328,AUTHORIZATION,,false -33109,5fea603b-77d3-4d50-9d63-55f2dfc8b328,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33110,5fea603b-77d3-4d50-9d63-55f2dfc8b328,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33111,5fea603b-77d3-4d50-9d63-55f2dfc8b328,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33106,bf43785c-cf65-4850-b4e0-224c43e8d51d,LIST_ACCOUNTS,hbciListAccounts,false +33107,bf43785c-cf65-4850-b4e0-224c43e8d51d,LIST_TRANSACTIONS,hbciListTransactions,false +33108,bf43785c-cf65-4850-b4e0-224c43e8d51d,AUTHORIZATION,,false +33109,bf43785c-cf65-4850-b4e0-224c43e8d51d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33110,bf43785c-cf65-4850-b4e0-224c43e8d51d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33111,bf43785c-cf65-4850-b4e0-224c43e8d51d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33112,fd238f66-6cb5-42ca-86e6-b62085aaaa43,LIST_ACCOUNTS,xs2aListAccounts,true -33113,fd238f66-6cb5-42ca-86e6-b62085aaaa43,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33113,fd238f66-6cb5-42ca-86e6-b62085aaaa43,LIST_TRANSACTIONS,xs2aListTransactions,true 33114,fd238f66-6cb5-42ca-86e6-b62085aaaa43,AUTHORIZATION,,true 33115,fd238f66-6cb5-42ca-86e6-b62085aaaa43,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33116,fd238f66-6cb5-42ca-86e6-b62085aaaa43,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33117,fd238f66-6cb5-42ca-86e6-b62085aaaa43,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33118,fc11c4df-88bd-4804-acda-4057233bf57e,LIST_ACCOUNTS,hbciListAccounts,false -33119,fc11c4df-88bd-4804-acda-4057233bf57e,LIST_TRANSACTIONS,hbciListTransactions,false -33120,fc11c4df-88bd-4804-acda-4057233bf57e,AUTHORIZATION,,false -33121,fc11c4df-88bd-4804-acda-4057233bf57e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33122,fc11c4df-88bd-4804-acda-4057233bf57e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33123,fc11c4df-88bd-4804-acda-4057233bf57e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33118,15849250-4659-42c8-b5c0-e541c24ce610,LIST_ACCOUNTS,hbciListAccounts,false +33119,15849250-4659-42c8-b5c0-e541c24ce610,LIST_TRANSACTIONS,hbciListTransactions,false +33120,15849250-4659-42c8-b5c0-e541c24ce610,AUTHORIZATION,,false +33121,15849250-4659-42c8-b5c0-e541c24ce610,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33122,15849250-4659-42c8-b5c0-e541c24ce610,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33123,15849250-4659-42c8-b5c0-e541c24ce610,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33124,6f88955e-a5ce-4a48-8dee-fd62ce556ed2,LIST_ACCOUNTS,xs2aListAccounts,true -33125,6f88955e-a5ce-4a48-8dee-fd62ce556ed2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33125,6f88955e-a5ce-4a48-8dee-fd62ce556ed2,LIST_TRANSACTIONS,xs2aListTransactions,true 33126,6f88955e-a5ce-4a48-8dee-fd62ce556ed2,AUTHORIZATION,,true 33127,6f88955e-a5ce-4a48-8dee-fd62ce556ed2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33128,6f88955e-a5ce-4a48-8dee-fd62ce556ed2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33129,6f88955e-a5ce-4a48-8dee-fd62ce556ed2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33130,03ba285a-ce26-473b-b047-172f6031a230,LIST_ACCOUNTS,hbciListAccounts,false -33131,03ba285a-ce26-473b-b047-172f6031a230,LIST_TRANSACTIONS,hbciListTransactions,false -33132,03ba285a-ce26-473b-b047-172f6031a230,AUTHORIZATION,,false -33133,03ba285a-ce26-473b-b047-172f6031a230,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33134,03ba285a-ce26-473b-b047-172f6031a230,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33135,03ba285a-ce26-473b-b047-172f6031a230,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33130,0998afee-4d27-46dd-a137-084110162887,LIST_ACCOUNTS,hbciListAccounts,false +33131,0998afee-4d27-46dd-a137-084110162887,LIST_TRANSACTIONS,hbciListTransactions,false +33132,0998afee-4d27-46dd-a137-084110162887,AUTHORIZATION,,false +33133,0998afee-4d27-46dd-a137-084110162887,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33134,0998afee-4d27-46dd-a137-084110162887,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33135,0998afee-4d27-46dd-a137-084110162887,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33136,2d383f38-e55c-4812-ad80-4fdbc7b63929,LIST_ACCOUNTS,xs2aListAccounts,true -33137,2d383f38-e55c-4812-ad80-4fdbc7b63929,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33137,2d383f38-e55c-4812-ad80-4fdbc7b63929,LIST_TRANSACTIONS,xs2aListTransactions,true 33138,2d383f38-e55c-4812-ad80-4fdbc7b63929,AUTHORIZATION,,true 33139,2d383f38-e55c-4812-ad80-4fdbc7b63929,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33140,2d383f38-e55c-4812-ad80-4fdbc7b63929,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33141,2d383f38-e55c-4812-ad80-4fdbc7b63929,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33142,4e5c4066-f266-43f7-8a11-2f895fc490a0,LIST_ACCOUNTS,hbciListAccounts,false -33143,4e5c4066-f266-43f7-8a11-2f895fc490a0,LIST_TRANSACTIONS,hbciListTransactions,false -33144,4e5c4066-f266-43f7-8a11-2f895fc490a0,AUTHORIZATION,,false -33145,4e5c4066-f266-43f7-8a11-2f895fc490a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33146,4e5c4066-f266-43f7-8a11-2f895fc490a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33147,4e5c4066-f266-43f7-8a11-2f895fc490a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33142,df4bd86b-dbee-47ca-b604-cffba4fdff73,LIST_ACCOUNTS,hbciListAccounts,false +33143,df4bd86b-dbee-47ca-b604-cffba4fdff73,LIST_TRANSACTIONS,hbciListTransactions,false +33144,df4bd86b-dbee-47ca-b604-cffba4fdff73,AUTHORIZATION,,false +33145,df4bd86b-dbee-47ca-b604-cffba4fdff73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33146,df4bd86b-dbee-47ca-b604-cffba4fdff73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33147,df4bd86b-dbee-47ca-b604-cffba4fdff73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33148,5b35e3af-0479-4262-a047-f9ac66540967,LIST_ACCOUNTS,xs2aListAccounts,true -33149,5b35e3af-0479-4262-a047-f9ac66540967,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33149,5b35e3af-0479-4262-a047-f9ac66540967,LIST_TRANSACTIONS,xs2aListTransactions,true 33150,5b35e3af-0479-4262-a047-f9ac66540967,AUTHORIZATION,,true 33151,5b35e3af-0479-4262-a047-f9ac66540967,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33152,5b35e3af-0479-4262-a047-f9ac66540967,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33153,5b35e3af-0479-4262-a047-f9ac66540967,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33154,2ff97ecd-43a5-430e-b114-65e7336fb350,LIST_ACCOUNTS,hbciListAccounts,false -33155,2ff97ecd-43a5-430e-b114-65e7336fb350,LIST_TRANSACTIONS,hbciListTransactions,false -33156,2ff97ecd-43a5-430e-b114-65e7336fb350,AUTHORIZATION,,false -33157,2ff97ecd-43a5-430e-b114-65e7336fb350,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33158,2ff97ecd-43a5-430e-b114-65e7336fb350,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33159,2ff97ecd-43a5-430e-b114-65e7336fb350,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33154,ba3425f5-8f58-4110-ae4e-8c0626691601,LIST_ACCOUNTS,hbciListAccounts,false +33155,ba3425f5-8f58-4110-ae4e-8c0626691601,LIST_TRANSACTIONS,hbciListTransactions,false +33156,ba3425f5-8f58-4110-ae4e-8c0626691601,AUTHORIZATION,,false +33157,ba3425f5-8f58-4110-ae4e-8c0626691601,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33158,ba3425f5-8f58-4110-ae4e-8c0626691601,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33159,ba3425f5-8f58-4110-ae4e-8c0626691601,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33160,cff35e47-b6b9-4181-a9c9-e293a49790c2,LIST_ACCOUNTS,xs2aListAccounts,true -33161,cff35e47-b6b9-4181-a9c9-e293a49790c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33161,cff35e47-b6b9-4181-a9c9-e293a49790c2,LIST_TRANSACTIONS,xs2aListTransactions,true 33162,cff35e47-b6b9-4181-a9c9-e293a49790c2,AUTHORIZATION,,true 33163,cff35e47-b6b9-4181-a9c9-e293a49790c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33164,cff35e47-b6b9-4181-a9c9-e293a49790c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33165,cff35e47-b6b9-4181-a9c9-e293a49790c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33166,d495fa96-ee56-4604-b105-c2ce93465b85,LIST_ACCOUNTS,hbciListAccounts,false -33167,d495fa96-ee56-4604-b105-c2ce93465b85,LIST_TRANSACTIONS,hbciListTransactions,false -33168,d495fa96-ee56-4604-b105-c2ce93465b85,AUTHORIZATION,,false -33169,d495fa96-ee56-4604-b105-c2ce93465b85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33170,d495fa96-ee56-4604-b105-c2ce93465b85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33171,d495fa96-ee56-4604-b105-c2ce93465b85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33166,3118d0b0-1708-4045-b111-2c2d4c9d9a17,LIST_ACCOUNTS,hbciListAccounts,false +33167,3118d0b0-1708-4045-b111-2c2d4c9d9a17,LIST_TRANSACTIONS,hbciListTransactions,false +33168,3118d0b0-1708-4045-b111-2c2d4c9d9a17,AUTHORIZATION,,false +33169,3118d0b0-1708-4045-b111-2c2d4c9d9a17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33170,3118d0b0-1708-4045-b111-2c2d4c9d9a17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33171,3118d0b0-1708-4045-b111-2c2d4c9d9a17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33172,3576e552-462c-4c5a-959c-4191850b3193,LIST_ACCOUNTS,xs2aListAccounts,true -33173,3576e552-462c-4c5a-959c-4191850b3193,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33173,3576e552-462c-4c5a-959c-4191850b3193,LIST_TRANSACTIONS,xs2aListTransactions,true 33174,3576e552-462c-4c5a-959c-4191850b3193,AUTHORIZATION,,true 33175,3576e552-462c-4c5a-959c-4191850b3193,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33176,3576e552-462c-4c5a-959c-4191850b3193,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33177,3576e552-462c-4c5a-959c-4191850b3193,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33178,607871c9-58de-46ce-91c4-3eb67a854b5a,LIST_ACCOUNTS,hbciListAccounts,false -33179,607871c9-58de-46ce-91c4-3eb67a854b5a,LIST_TRANSACTIONS,hbciListTransactions,false -33180,607871c9-58de-46ce-91c4-3eb67a854b5a,AUTHORIZATION,,false -33181,607871c9-58de-46ce-91c4-3eb67a854b5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33182,607871c9-58de-46ce-91c4-3eb67a854b5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33183,607871c9-58de-46ce-91c4-3eb67a854b5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33178,c6ea2fb0-7751-41c4-aced-09d13a55caf8,LIST_ACCOUNTS,hbciListAccounts,false +33179,c6ea2fb0-7751-41c4-aced-09d13a55caf8,LIST_TRANSACTIONS,hbciListTransactions,false +33180,c6ea2fb0-7751-41c4-aced-09d13a55caf8,AUTHORIZATION,,false +33181,c6ea2fb0-7751-41c4-aced-09d13a55caf8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33182,c6ea2fb0-7751-41c4-aced-09d13a55caf8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33183,c6ea2fb0-7751-41c4-aced-09d13a55caf8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33184,0b20fe55-a9e2-4bb5-956d-401f1e7a6fcf,LIST_ACCOUNTS,xs2aListAccounts,true -33185,0b20fe55-a9e2-4bb5-956d-401f1e7a6fcf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33185,0b20fe55-a9e2-4bb5-956d-401f1e7a6fcf,LIST_TRANSACTIONS,xs2aListTransactions,true 33186,0b20fe55-a9e2-4bb5-956d-401f1e7a6fcf,AUTHORIZATION,,true 33187,0b20fe55-a9e2-4bb5-956d-401f1e7a6fcf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33188,0b20fe55-a9e2-4bb5-956d-401f1e7a6fcf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33189,0b20fe55-a9e2-4bb5-956d-401f1e7a6fcf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33190,353ae4c7-7f6a-4eed-a02a-2d2da562442c,LIST_ACCOUNTS,hbciListAccounts,false -33191,353ae4c7-7f6a-4eed-a02a-2d2da562442c,LIST_TRANSACTIONS,hbciListTransactions,false -33192,353ae4c7-7f6a-4eed-a02a-2d2da562442c,AUTHORIZATION,,false -33193,353ae4c7-7f6a-4eed-a02a-2d2da562442c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33194,353ae4c7-7f6a-4eed-a02a-2d2da562442c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33195,353ae4c7-7f6a-4eed-a02a-2d2da562442c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33190,a5a885d8-98a2-47d3-b47e-9577c0c894b3,LIST_ACCOUNTS,hbciListAccounts,false +33191,a5a885d8-98a2-47d3-b47e-9577c0c894b3,LIST_TRANSACTIONS,hbciListTransactions,false +33192,a5a885d8-98a2-47d3-b47e-9577c0c894b3,AUTHORIZATION,,false +33193,a5a885d8-98a2-47d3-b47e-9577c0c894b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33194,a5a885d8-98a2-47d3-b47e-9577c0c894b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33195,a5a885d8-98a2-47d3-b47e-9577c0c894b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33196,74b79333-ae94-43b9-9830-a97ca436bfb5,LIST_ACCOUNTS,xs2aListAccounts,true -33197,74b79333-ae94-43b9-9830-a97ca436bfb5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33197,74b79333-ae94-43b9-9830-a97ca436bfb5,LIST_TRANSACTIONS,xs2aListTransactions,true 33198,74b79333-ae94-43b9-9830-a97ca436bfb5,AUTHORIZATION,,true 33199,74b79333-ae94-43b9-9830-a97ca436bfb5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33200,74b79333-ae94-43b9-9830-a97ca436bfb5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33201,74b79333-ae94-43b9-9830-a97ca436bfb5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33202,26c3a807-e367-4a54-8f66-0b6de9bacae5,LIST_ACCOUNTS,hbciListAccounts,false -33203,26c3a807-e367-4a54-8f66-0b6de9bacae5,LIST_TRANSACTIONS,hbciListTransactions,false -33204,26c3a807-e367-4a54-8f66-0b6de9bacae5,AUTHORIZATION,,false -33205,26c3a807-e367-4a54-8f66-0b6de9bacae5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33206,26c3a807-e367-4a54-8f66-0b6de9bacae5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33207,26c3a807-e367-4a54-8f66-0b6de9bacae5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33202,c42d707e-399c-4c89-9482-7e8727bde86c,LIST_ACCOUNTS,hbciListAccounts,false +33203,c42d707e-399c-4c89-9482-7e8727bde86c,LIST_TRANSACTIONS,hbciListTransactions,false +33204,c42d707e-399c-4c89-9482-7e8727bde86c,AUTHORIZATION,,false +33205,c42d707e-399c-4c89-9482-7e8727bde86c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33206,c42d707e-399c-4c89-9482-7e8727bde86c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33207,c42d707e-399c-4c89-9482-7e8727bde86c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33208,1c2b2a45-b9bd-4644-bff7-4f1742b5ccfa,LIST_ACCOUNTS,xs2aListAccounts,true -33209,1c2b2a45-b9bd-4644-bff7-4f1742b5ccfa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33209,1c2b2a45-b9bd-4644-bff7-4f1742b5ccfa,LIST_TRANSACTIONS,xs2aListTransactions,true 33210,1c2b2a45-b9bd-4644-bff7-4f1742b5ccfa,AUTHORIZATION,,true 33211,1c2b2a45-b9bd-4644-bff7-4f1742b5ccfa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33212,1c2b2a45-b9bd-4644-bff7-4f1742b5ccfa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33213,1c2b2a45-b9bd-4644-bff7-4f1742b5ccfa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33214,37ef8e91-0feb-4ee5-acb5-83eec46fec17,LIST_ACCOUNTS,hbciListAccounts,false -33215,37ef8e91-0feb-4ee5-acb5-83eec46fec17,LIST_TRANSACTIONS,hbciListTransactions,false -33216,37ef8e91-0feb-4ee5-acb5-83eec46fec17,AUTHORIZATION,,false -33217,37ef8e91-0feb-4ee5-acb5-83eec46fec17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33218,37ef8e91-0feb-4ee5-acb5-83eec46fec17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33219,37ef8e91-0feb-4ee5-acb5-83eec46fec17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33214,9d6b06a2-6eaf-4730-8cf4-8330e756de2b,LIST_ACCOUNTS,hbciListAccounts,false +33215,9d6b06a2-6eaf-4730-8cf4-8330e756de2b,LIST_TRANSACTIONS,hbciListTransactions,false +33216,9d6b06a2-6eaf-4730-8cf4-8330e756de2b,AUTHORIZATION,,false +33217,9d6b06a2-6eaf-4730-8cf4-8330e756de2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33218,9d6b06a2-6eaf-4730-8cf4-8330e756de2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33219,9d6b06a2-6eaf-4730-8cf4-8330e756de2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33220,af3ecc4a-e032-42c3-a32d-05418da3939b,LIST_ACCOUNTS,xs2aListAccounts,true -33221,af3ecc4a-e032-42c3-a32d-05418da3939b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33221,af3ecc4a-e032-42c3-a32d-05418da3939b,LIST_TRANSACTIONS,xs2aListTransactions,true 33222,af3ecc4a-e032-42c3-a32d-05418da3939b,AUTHORIZATION,,true 33223,af3ecc4a-e032-42c3-a32d-05418da3939b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33224,af3ecc4a-e032-42c3-a32d-05418da3939b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33225,af3ecc4a-e032-42c3-a32d-05418da3939b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33226,9b673723-3a86-40ee-80de-09b2fb7a0560,LIST_ACCOUNTS,hbciListAccounts,false -33227,9b673723-3a86-40ee-80de-09b2fb7a0560,LIST_TRANSACTIONS,hbciListTransactions,false -33228,9b673723-3a86-40ee-80de-09b2fb7a0560,AUTHORIZATION,,false -33229,9b673723-3a86-40ee-80de-09b2fb7a0560,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33230,9b673723-3a86-40ee-80de-09b2fb7a0560,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33231,9b673723-3a86-40ee-80de-09b2fb7a0560,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33226,3c002d5a-c7f0-40fd-9c03-d6779e994b37,LIST_ACCOUNTS,hbciListAccounts,false +33227,3c002d5a-c7f0-40fd-9c03-d6779e994b37,LIST_TRANSACTIONS,hbciListTransactions,false +33228,3c002d5a-c7f0-40fd-9c03-d6779e994b37,AUTHORIZATION,,false +33229,3c002d5a-c7f0-40fd-9c03-d6779e994b37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33230,3c002d5a-c7f0-40fd-9c03-d6779e994b37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33231,3c002d5a-c7f0-40fd-9c03-d6779e994b37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33232,c98bddef-30a3-40ef-a642-41e4b7ffecee,LIST_ACCOUNTS,xs2aListAccounts,true -33233,c98bddef-30a3-40ef-a642-41e4b7ffecee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33233,c98bddef-30a3-40ef-a642-41e4b7ffecee,LIST_TRANSACTIONS,xs2aListTransactions,true 33234,c98bddef-30a3-40ef-a642-41e4b7ffecee,AUTHORIZATION,,true 33235,c98bddef-30a3-40ef-a642-41e4b7ffecee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33236,c98bddef-30a3-40ef-a642-41e4b7ffecee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33237,c98bddef-30a3-40ef-a642-41e4b7ffecee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33238,ad3b9a8d-621d-4500-9178-8bdf508c0223,LIST_ACCOUNTS,hbciListAccounts,false -33239,ad3b9a8d-621d-4500-9178-8bdf508c0223,LIST_TRANSACTIONS,hbciListTransactions,false -33240,ad3b9a8d-621d-4500-9178-8bdf508c0223,AUTHORIZATION,,false -33241,ad3b9a8d-621d-4500-9178-8bdf508c0223,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33242,ad3b9a8d-621d-4500-9178-8bdf508c0223,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33243,ad3b9a8d-621d-4500-9178-8bdf508c0223,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33238,731a3c7a-23f2-42c6-bb0f-d8de2cc9a4e0,LIST_ACCOUNTS,hbciListAccounts,false +33239,731a3c7a-23f2-42c6-bb0f-d8de2cc9a4e0,LIST_TRANSACTIONS,hbciListTransactions,false +33240,731a3c7a-23f2-42c6-bb0f-d8de2cc9a4e0,AUTHORIZATION,,false +33241,731a3c7a-23f2-42c6-bb0f-d8de2cc9a4e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33242,731a3c7a-23f2-42c6-bb0f-d8de2cc9a4e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33243,731a3c7a-23f2-42c6-bb0f-d8de2cc9a4e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33244,d519b38d-5683-4860-9017-bd767e770d1a,LIST_ACCOUNTS,xs2aListAccounts,true -33245,d519b38d-5683-4860-9017-bd767e770d1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33245,d519b38d-5683-4860-9017-bd767e770d1a,LIST_TRANSACTIONS,xs2aListTransactions,true 33246,d519b38d-5683-4860-9017-bd767e770d1a,AUTHORIZATION,,true 33247,d519b38d-5683-4860-9017-bd767e770d1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33248,d519b38d-5683-4860-9017-bd767e770d1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33249,d519b38d-5683-4860-9017-bd767e770d1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33250,4ef6f98c-3b97-4f48-861e-4dd1ec5949ba,LIST_ACCOUNTS,hbciListAccounts,false -33251,4ef6f98c-3b97-4f48-861e-4dd1ec5949ba,LIST_TRANSACTIONS,hbciListTransactions,false -33252,4ef6f98c-3b97-4f48-861e-4dd1ec5949ba,AUTHORIZATION,,false -33253,4ef6f98c-3b97-4f48-861e-4dd1ec5949ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33254,4ef6f98c-3b97-4f48-861e-4dd1ec5949ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33255,4ef6f98c-3b97-4f48-861e-4dd1ec5949ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33250,43f4c5ac-0cac-4edf-be9a-57774f884d1e,LIST_ACCOUNTS,hbciListAccounts,false +33251,43f4c5ac-0cac-4edf-be9a-57774f884d1e,LIST_TRANSACTIONS,hbciListTransactions,false +33252,43f4c5ac-0cac-4edf-be9a-57774f884d1e,AUTHORIZATION,,false +33253,43f4c5ac-0cac-4edf-be9a-57774f884d1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33254,43f4c5ac-0cac-4edf-be9a-57774f884d1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33255,43f4c5ac-0cac-4edf-be9a-57774f884d1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33256,d08932a2-00b2-4992-8e16-661c8b17b768,LIST_ACCOUNTS,xs2aListAccounts,true -33257,d08932a2-00b2-4992-8e16-661c8b17b768,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33257,d08932a2-00b2-4992-8e16-661c8b17b768,LIST_TRANSACTIONS,xs2aListTransactions,true 33258,d08932a2-00b2-4992-8e16-661c8b17b768,AUTHORIZATION,,true 33259,d08932a2-00b2-4992-8e16-661c8b17b768,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33260,d08932a2-00b2-4992-8e16-661c8b17b768,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33261,d08932a2-00b2-4992-8e16-661c8b17b768,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33262,dce3c208-6aa6-4058-a4a3-04e42be12f81,LIST_ACCOUNTS,hbciListAccounts,false -33263,dce3c208-6aa6-4058-a4a3-04e42be12f81,LIST_TRANSACTIONS,hbciListTransactions,false -33264,dce3c208-6aa6-4058-a4a3-04e42be12f81,AUTHORIZATION,,false -33265,dce3c208-6aa6-4058-a4a3-04e42be12f81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33266,dce3c208-6aa6-4058-a4a3-04e42be12f81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33267,dce3c208-6aa6-4058-a4a3-04e42be12f81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33262,e6ad8eb5-9963-4eff-bd61-e0bb4b286bce,LIST_ACCOUNTS,hbciListAccounts,false +33263,e6ad8eb5-9963-4eff-bd61-e0bb4b286bce,LIST_TRANSACTIONS,hbciListTransactions,false +33264,e6ad8eb5-9963-4eff-bd61-e0bb4b286bce,AUTHORIZATION,,false +33265,e6ad8eb5-9963-4eff-bd61-e0bb4b286bce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33266,e6ad8eb5-9963-4eff-bd61-e0bb4b286bce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33267,e6ad8eb5-9963-4eff-bd61-e0bb4b286bce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33268,dc899dbd-17d7-4d33-a9db-c86672d3fa22,LIST_ACCOUNTS,xs2aListAccounts,true -33269,dc899dbd-17d7-4d33-a9db-c86672d3fa22,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33269,dc899dbd-17d7-4d33-a9db-c86672d3fa22,LIST_TRANSACTIONS,xs2aListTransactions,true 33270,dc899dbd-17d7-4d33-a9db-c86672d3fa22,AUTHORIZATION,,true 33271,dc899dbd-17d7-4d33-a9db-c86672d3fa22,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33272,dc899dbd-17d7-4d33-a9db-c86672d3fa22,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33273,dc899dbd-17d7-4d33-a9db-c86672d3fa22,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33274,0a23df7d-e666-46d7-bb11-c4c003a376ed,LIST_ACCOUNTS,hbciListAccounts,false -33275,0a23df7d-e666-46d7-bb11-c4c003a376ed,LIST_TRANSACTIONS,hbciListTransactions,false -33276,0a23df7d-e666-46d7-bb11-c4c003a376ed,AUTHORIZATION,,false -33277,0a23df7d-e666-46d7-bb11-c4c003a376ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33278,0a23df7d-e666-46d7-bb11-c4c003a376ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33279,0a23df7d-e666-46d7-bb11-c4c003a376ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33274,012d0760-5c18-455e-bb27-27d5c4af7870,LIST_ACCOUNTS,hbciListAccounts,false +33275,012d0760-5c18-455e-bb27-27d5c4af7870,LIST_TRANSACTIONS,hbciListTransactions,false +33276,012d0760-5c18-455e-bb27-27d5c4af7870,AUTHORIZATION,,false +33277,012d0760-5c18-455e-bb27-27d5c4af7870,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33278,012d0760-5c18-455e-bb27-27d5c4af7870,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33279,012d0760-5c18-455e-bb27-27d5c4af7870,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33280,a1fd6109-5988-4766-af71-fc92b3276a0c,LIST_ACCOUNTS,xs2aListAccounts,true -33281,a1fd6109-5988-4766-af71-fc92b3276a0c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33281,a1fd6109-5988-4766-af71-fc92b3276a0c,LIST_TRANSACTIONS,xs2aListTransactions,true 33282,a1fd6109-5988-4766-af71-fc92b3276a0c,AUTHORIZATION,,true 33283,a1fd6109-5988-4766-af71-fc92b3276a0c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33284,a1fd6109-5988-4766-af71-fc92b3276a0c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33285,a1fd6109-5988-4766-af71-fc92b3276a0c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33286,0faacce7-8690-4ed8-8215-2ac40b161884,LIST_ACCOUNTS,hbciListAccounts,false -33287,0faacce7-8690-4ed8-8215-2ac40b161884,LIST_TRANSACTIONS,hbciListTransactions,false -33288,0faacce7-8690-4ed8-8215-2ac40b161884,AUTHORIZATION,,false -33289,0faacce7-8690-4ed8-8215-2ac40b161884,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33290,0faacce7-8690-4ed8-8215-2ac40b161884,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33291,0faacce7-8690-4ed8-8215-2ac40b161884,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33286,97758a31-4b65-4117-ae21-f97b22337643,LIST_ACCOUNTS,hbciListAccounts,false +33287,97758a31-4b65-4117-ae21-f97b22337643,LIST_TRANSACTIONS,hbciListTransactions,false +33288,97758a31-4b65-4117-ae21-f97b22337643,AUTHORIZATION,,false +33289,97758a31-4b65-4117-ae21-f97b22337643,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33290,97758a31-4b65-4117-ae21-f97b22337643,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33291,97758a31-4b65-4117-ae21-f97b22337643,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33292,09014055-8ebf-4719-9b40-b2cdadc71ef9,LIST_ACCOUNTS,xs2aListAccounts,true -33293,09014055-8ebf-4719-9b40-b2cdadc71ef9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33293,09014055-8ebf-4719-9b40-b2cdadc71ef9,LIST_TRANSACTIONS,xs2aListTransactions,true 33294,09014055-8ebf-4719-9b40-b2cdadc71ef9,AUTHORIZATION,,true 33295,09014055-8ebf-4719-9b40-b2cdadc71ef9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33296,09014055-8ebf-4719-9b40-b2cdadc71ef9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33297,09014055-8ebf-4719-9b40-b2cdadc71ef9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33298,f2ab0481-1962-44d0-8f1c-3abc35350307,LIST_ACCOUNTS,hbciListAccounts,false -33299,f2ab0481-1962-44d0-8f1c-3abc35350307,LIST_TRANSACTIONS,hbciListTransactions,false -33300,f2ab0481-1962-44d0-8f1c-3abc35350307,AUTHORIZATION,,false -33301,f2ab0481-1962-44d0-8f1c-3abc35350307,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33302,f2ab0481-1962-44d0-8f1c-3abc35350307,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33303,f2ab0481-1962-44d0-8f1c-3abc35350307,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33298,968bb9e3-212d-4fc7-830c-e666937aaa5b,LIST_ACCOUNTS,hbciListAccounts,false +33299,968bb9e3-212d-4fc7-830c-e666937aaa5b,LIST_TRANSACTIONS,hbciListTransactions,false +33300,968bb9e3-212d-4fc7-830c-e666937aaa5b,AUTHORIZATION,,false +33301,968bb9e3-212d-4fc7-830c-e666937aaa5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33302,968bb9e3-212d-4fc7-830c-e666937aaa5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33303,968bb9e3-212d-4fc7-830c-e666937aaa5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33304,49957b48-d816-4a87-bfeb-fa10aab96375,LIST_ACCOUNTS,xs2aListAccounts,true -33305,49957b48-d816-4a87-bfeb-fa10aab96375,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33305,49957b48-d816-4a87-bfeb-fa10aab96375,LIST_TRANSACTIONS,xs2aListTransactions,true 33306,49957b48-d816-4a87-bfeb-fa10aab96375,AUTHORIZATION,,true 33307,49957b48-d816-4a87-bfeb-fa10aab96375,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33308,49957b48-d816-4a87-bfeb-fa10aab96375,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33309,49957b48-d816-4a87-bfeb-fa10aab96375,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33310,ce857127-0fca-4350-96ec-f0b4c3290b24,LIST_ACCOUNTS,hbciListAccounts,false -33311,ce857127-0fca-4350-96ec-f0b4c3290b24,LIST_TRANSACTIONS,hbciListTransactions,false -33312,ce857127-0fca-4350-96ec-f0b4c3290b24,AUTHORIZATION,,false -33313,ce857127-0fca-4350-96ec-f0b4c3290b24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33314,ce857127-0fca-4350-96ec-f0b4c3290b24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33315,ce857127-0fca-4350-96ec-f0b4c3290b24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33310,cf3f1137-2bcb-4ca4-a848-7da2541308fa,LIST_ACCOUNTS,hbciListAccounts,false +33311,cf3f1137-2bcb-4ca4-a848-7da2541308fa,LIST_TRANSACTIONS,hbciListTransactions,false +33312,cf3f1137-2bcb-4ca4-a848-7da2541308fa,AUTHORIZATION,,false +33313,cf3f1137-2bcb-4ca4-a848-7da2541308fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33314,cf3f1137-2bcb-4ca4-a848-7da2541308fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33315,cf3f1137-2bcb-4ca4-a848-7da2541308fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33316,18e017f8-79dc-41e9-97b0-cbb95547cf4d,LIST_ACCOUNTS,xs2aListAccounts,true -33317,18e017f8-79dc-41e9-97b0-cbb95547cf4d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33317,18e017f8-79dc-41e9-97b0-cbb95547cf4d,LIST_TRANSACTIONS,xs2aListTransactions,true 33318,18e017f8-79dc-41e9-97b0-cbb95547cf4d,AUTHORIZATION,,true 33319,18e017f8-79dc-41e9-97b0-cbb95547cf4d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33320,18e017f8-79dc-41e9-97b0-cbb95547cf4d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33321,18e017f8-79dc-41e9-97b0-cbb95547cf4d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33322,95559ceb-6c5a-461a-a4ac-b95c8b12963b,LIST_ACCOUNTS,hbciListAccounts,false -33323,95559ceb-6c5a-461a-a4ac-b95c8b12963b,LIST_TRANSACTIONS,hbciListTransactions,false -33324,95559ceb-6c5a-461a-a4ac-b95c8b12963b,AUTHORIZATION,,false -33325,95559ceb-6c5a-461a-a4ac-b95c8b12963b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33326,95559ceb-6c5a-461a-a4ac-b95c8b12963b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33327,95559ceb-6c5a-461a-a4ac-b95c8b12963b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33322,2e749270-eab3-42a1-a4b2-3e7237f5d2cc,LIST_ACCOUNTS,hbciListAccounts,false +33323,2e749270-eab3-42a1-a4b2-3e7237f5d2cc,LIST_TRANSACTIONS,hbciListTransactions,false +33324,2e749270-eab3-42a1-a4b2-3e7237f5d2cc,AUTHORIZATION,,false +33325,2e749270-eab3-42a1-a4b2-3e7237f5d2cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33326,2e749270-eab3-42a1-a4b2-3e7237f5d2cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33327,2e749270-eab3-42a1-a4b2-3e7237f5d2cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33328,1bff63bc-5ea3-4842-bddc-96077ee688e7,LIST_ACCOUNTS,xs2aListAccounts,true -33329,1bff63bc-5ea3-4842-bddc-96077ee688e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33329,1bff63bc-5ea3-4842-bddc-96077ee688e7,LIST_TRANSACTIONS,xs2aListTransactions,true 33330,1bff63bc-5ea3-4842-bddc-96077ee688e7,AUTHORIZATION,,true 33331,1bff63bc-5ea3-4842-bddc-96077ee688e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33332,1bff63bc-5ea3-4842-bddc-96077ee688e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33333,1bff63bc-5ea3-4842-bddc-96077ee688e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33334,8f930609-de66-4ab6-aa3e-c32ff53cea33,LIST_ACCOUNTS,hbciListAccounts,false -33335,8f930609-de66-4ab6-aa3e-c32ff53cea33,LIST_TRANSACTIONS,hbciListTransactions,false -33336,8f930609-de66-4ab6-aa3e-c32ff53cea33,AUTHORIZATION,,false -33337,8f930609-de66-4ab6-aa3e-c32ff53cea33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33338,8f930609-de66-4ab6-aa3e-c32ff53cea33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33339,8f930609-de66-4ab6-aa3e-c32ff53cea33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33334,8985aa8e-8502-4114-addf-96670d027cff,LIST_ACCOUNTS,hbciListAccounts,false +33335,8985aa8e-8502-4114-addf-96670d027cff,LIST_TRANSACTIONS,hbciListTransactions,false +33336,8985aa8e-8502-4114-addf-96670d027cff,AUTHORIZATION,,false +33337,8985aa8e-8502-4114-addf-96670d027cff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33338,8985aa8e-8502-4114-addf-96670d027cff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33339,8985aa8e-8502-4114-addf-96670d027cff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33340,0494d1ca-c8fc-4353-87e6-0fe44b4bfe80,LIST_ACCOUNTS,xs2aListAccounts,true -33341,0494d1ca-c8fc-4353-87e6-0fe44b4bfe80,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33341,0494d1ca-c8fc-4353-87e6-0fe44b4bfe80,LIST_TRANSACTIONS,xs2aListTransactions,true 33342,0494d1ca-c8fc-4353-87e6-0fe44b4bfe80,AUTHORIZATION,,true 33343,0494d1ca-c8fc-4353-87e6-0fe44b4bfe80,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33344,0494d1ca-c8fc-4353-87e6-0fe44b4bfe80,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33345,0494d1ca-c8fc-4353-87e6-0fe44b4bfe80,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33346,d0388c27-f8de-4549-9b74-0fc8da2de5d8,LIST_ACCOUNTS,hbciListAccounts,false -33347,d0388c27-f8de-4549-9b74-0fc8da2de5d8,LIST_TRANSACTIONS,hbciListTransactions,false -33348,d0388c27-f8de-4549-9b74-0fc8da2de5d8,AUTHORIZATION,,false -33349,d0388c27-f8de-4549-9b74-0fc8da2de5d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33350,d0388c27-f8de-4549-9b74-0fc8da2de5d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33351,d0388c27-f8de-4549-9b74-0fc8da2de5d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33346,b4013b4c-c8ee-456a-b462-dae570fca44a,LIST_ACCOUNTS,hbciListAccounts,false +33347,b4013b4c-c8ee-456a-b462-dae570fca44a,LIST_TRANSACTIONS,hbciListTransactions,false +33348,b4013b4c-c8ee-456a-b462-dae570fca44a,AUTHORIZATION,,false +33349,b4013b4c-c8ee-456a-b462-dae570fca44a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33350,b4013b4c-c8ee-456a-b462-dae570fca44a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33351,b4013b4c-c8ee-456a-b462-dae570fca44a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33352,712df80c-19a5-4ebe-8d83-a2055378c324,LIST_ACCOUNTS,xs2aListAccounts,true -33353,712df80c-19a5-4ebe-8d83-a2055378c324,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33353,712df80c-19a5-4ebe-8d83-a2055378c324,LIST_TRANSACTIONS,xs2aListTransactions,true 33354,712df80c-19a5-4ebe-8d83-a2055378c324,AUTHORIZATION,,true 33355,712df80c-19a5-4ebe-8d83-a2055378c324,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33356,712df80c-19a5-4ebe-8d83-a2055378c324,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33357,712df80c-19a5-4ebe-8d83-a2055378c324,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33358,c18d1561-4de7-411d-8eed-a7489846e212,LIST_ACCOUNTS,hbciListAccounts,false -33359,c18d1561-4de7-411d-8eed-a7489846e212,LIST_TRANSACTIONS,hbciListTransactions,false -33360,c18d1561-4de7-411d-8eed-a7489846e212,AUTHORIZATION,,false -33361,c18d1561-4de7-411d-8eed-a7489846e212,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33362,c18d1561-4de7-411d-8eed-a7489846e212,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33363,c18d1561-4de7-411d-8eed-a7489846e212,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33358,23ea4bd7-b232-48c8-bb91-0dd5768b4fb6,LIST_ACCOUNTS,hbciListAccounts,false +33359,23ea4bd7-b232-48c8-bb91-0dd5768b4fb6,LIST_TRANSACTIONS,hbciListTransactions,false +33360,23ea4bd7-b232-48c8-bb91-0dd5768b4fb6,AUTHORIZATION,,false +33361,23ea4bd7-b232-48c8-bb91-0dd5768b4fb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33362,23ea4bd7-b232-48c8-bb91-0dd5768b4fb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33363,23ea4bd7-b232-48c8-bb91-0dd5768b4fb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33364,5c71b5a4-5621-4681-b65a-21af025b0d66,LIST_ACCOUNTS,xs2aListAccounts,true -33365,5c71b5a4-5621-4681-b65a-21af025b0d66,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33365,5c71b5a4-5621-4681-b65a-21af025b0d66,LIST_TRANSACTIONS,xs2aListTransactions,true 33366,5c71b5a4-5621-4681-b65a-21af025b0d66,AUTHORIZATION,,true 33367,5c71b5a4-5621-4681-b65a-21af025b0d66,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33368,5c71b5a4-5621-4681-b65a-21af025b0d66,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33369,5c71b5a4-5621-4681-b65a-21af025b0d66,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33370,8a458e6c-124e-4a45-b4d1-056806ff03e2,LIST_ACCOUNTS,hbciListAccounts,false -33371,8a458e6c-124e-4a45-b4d1-056806ff03e2,LIST_TRANSACTIONS,hbciListTransactions,false -33372,8a458e6c-124e-4a45-b4d1-056806ff03e2,AUTHORIZATION,,false -33373,8a458e6c-124e-4a45-b4d1-056806ff03e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33374,8a458e6c-124e-4a45-b4d1-056806ff03e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33375,8a458e6c-124e-4a45-b4d1-056806ff03e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33370,e3817446-851b-4798-85b9-9a0420eda681,LIST_ACCOUNTS,hbciListAccounts,false +33371,e3817446-851b-4798-85b9-9a0420eda681,LIST_TRANSACTIONS,hbciListTransactions,false +33372,e3817446-851b-4798-85b9-9a0420eda681,AUTHORIZATION,,false +33373,e3817446-851b-4798-85b9-9a0420eda681,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33374,e3817446-851b-4798-85b9-9a0420eda681,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33375,e3817446-851b-4798-85b9-9a0420eda681,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33376,c5bc40c4-36b1-45c0-af9d-f015b5e36b1f,LIST_ACCOUNTS,xs2aListAccounts,true -33377,c5bc40c4-36b1-45c0-af9d-f015b5e36b1f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33377,c5bc40c4-36b1-45c0-af9d-f015b5e36b1f,LIST_TRANSACTIONS,xs2aListTransactions,true 33378,c5bc40c4-36b1-45c0-af9d-f015b5e36b1f,AUTHORIZATION,,true 33379,c5bc40c4-36b1-45c0-af9d-f015b5e36b1f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33380,c5bc40c4-36b1-45c0-af9d-f015b5e36b1f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33381,c5bc40c4-36b1-45c0-af9d-f015b5e36b1f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33382,65f76e21-5c8e-4708-8dff-8f5b37a6f778,LIST_ACCOUNTS,hbciListAccounts,false -33383,65f76e21-5c8e-4708-8dff-8f5b37a6f778,LIST_TRANSACTIONS,hbciListTransactions,false -33384,65f76e21-5c8e-4708-8dff-8f5b37a6f778,AUTHORIZATION,,false -33385,65f76e21-5c8e-4708-8dff-8f5b37a6f778,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33386,65f76e21-5c8e-4708-8dff-8f5b37a6f778,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33387,65f76e21-5c8e-4708-8dff-8f5b37a6f778,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33382,db899456-ffb7-4c48-91dd-758107851fee,LIST_ACCOUNTS,hbciListAccounts,false +33383,db899456-ffb7-4c48-91dd-758107851fee,LIST_TRANSACTIONS,hbciListTransactions,false +33384,db899456-ffb7-4c48-91dd-758107851fee,AUTHORIZATION,,false +33385,db899456-ffb7-4c48-91dd-758107851fee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33386,db899456-ffb7-4c48-91dd-758107851fee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33387,db899456-ffb7-4c48-91dd-758107851fee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33388,67705730-60da-41c8-92aa-0096491114c9,LIST_ACCOUNTS,xs2aListAccounts,true -33389,67705730-60da-41c8-92aa-0096491114c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33389,67705730-60da-41c8-92aa-0096491114c9,LIST_TRANSACTIONS,xs2aListTransactions,true 33390,67705730-60da-41c8-92aa-0096491114c9,AUTHORIZATION,,true 33391,67705730-60da-41c8-92aa-0096491114c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33392,67705730-60da-41c8-92aa-0096491114c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33393,67705730-60da-41c8-92aa-0096491114c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33394,ec094c26-8252-4097-8a10-4c81ae9fa77e,LIST_ACCOUNTS,hbciListAccounts,false -33395,ec094c26-8252-4097-8a10-4c81ae9fa77e,LIST_TRANSACTIONS,hbciListTransactions,false -33396,ec094c26-8252-4097-8a10-4c81ae9fa77e,AUTHORIZATION,,false -33397,ec094c26-8252-4097-8a10-4c81ae9fa77e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33398,ec094c26-8252-4097-8a10-4c81ae9fa77e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33399,ec094c26-8252-4097-8a10-4c81ae9fa77e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33394,8f0c1139-41b3-4134-bef7-43b045f3574e,LIST_ACCOUNTS,hbciListAccounts,false +33395,8f0c1139-41b3-4134-bef7-43b045f3574e,LIST_TRANSACTIONS,hbciListTransactions,false +33396,8f0c1139-41b3-4134-bef7-43b045f3574e,AUTHORIZATION,,false +33397,8f0c1139-41b3-4134-bef7-43b045f3574e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33398,8f0c1139-41b3-4134-bef7-43b045f3574e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33399,8f0c1139-41b3-4134-bef7-43b045f3574e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33400,d863689d-b861-4bc2-858a-e6c269f42d11,LIST_ACCOUNTS,xs2aListAccounts,true -33401,d863689d-b861-4bc2-858a-e6c269f42d11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33401,d863689d-b861-4bc2-858a-e6c269f42d11,LIST_TRANSACTIONS,xs2aListTransactions,true 33402,d863689d-b861-4bc2-858a-e6c269f42d11,AUTHORIZATION,,true 33403,d863689d-b861-4bc2-858a-e6c269f42d11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33404,d863689d-b861-4bc2-858a-e6c269f42d11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33405,d863689d-b861-4bc2-858a-e6c269f42d11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33406,bc8ce078-e8f9-4972-9c9c-d01585d3cca5,LIST_ACCOUNTS,hbciListAccounts,false -33407,bc8ce078-e8f9-4972-9c9c-d01585d3cca5,LIST_TRANSACTIONS,hbciListTransactions,false -33408,bc8ce078-e8f9-4972-9c9c-d01585d3cca5,AUTHORIZATION,,false -33409,bc8ce078-e8f9-4972-9c9c-d01585d3cca5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33410,bc8ce078-e8f9-4972-9c9c-d01585d3cca5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33411,bc8ce078-e8f9-4972-9c9c-d01585d3cca5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33406,249ccbde-dbb1-4b16-a8f0-92181005eab5,LIST_ACCOUNTS,hbciListAccounts,false +33407,249ccbde-dbb1-4b16-a8f0-92181005eab5,LIST_TRANSACTIONS,hbciListTransactions,false +33408,249ccbde-dbb1-4b16-a8f0-92181005eab5,AUTHORIZATION,,false +33409,249ccbde-dbb1-4b16-a8f0-92181005eab5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33410,249ccbde-dbb1-4b16-a8f0-92181005eab5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33411,249ccbde-dbb1-4b16-a8f0-92181005eab5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33412,433d7d9f-6dda-4ab7-aefe-4f440b3aebf3,LIST_ACCOUNTS,xs2aListAccounts,true -33413,433d7d9f-6dda-4ab7-aefe-4f440b3aebf3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33413,433d7d9f-6dda-4ab7-aefe-4f440b3aebf3,LIST_TRANSACTIONS,xs2aListTransactions,true 33414,433d7d9f-6dda-4ab7-aefe-4f440b3aebf3,AUTHORIZATION,,true 33415,433d7d9f-6dda-4ab7-aefe-4f440b3aebf3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33416,433d7d9f-6dda-4ab7-aefe-4f440b3aebf3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33417,433d7d9f-6dda-4ab7-aefe-4f440b3aebf3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33418,1b3c8688-16bc-4510-b843-f318c29cb1d5,LIST_ACCOUNTS,hbciListAccounts,false -33419,1b3c8688-16bc-4510-b843-f318c29cb1d5,LIST_TRANSACTIONS,hbciListTransactions,false -33420,1b3c8688-16bc-4510-b843-f318c29cb1d5,AUTHORIZATION,,false -33421,1b3c8688-16bc-4510-b843-f318c29cb1d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33422,1b3c8688-16bc-4510-b843-f318c29cb1d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33423,1b3c8688-16bc-4510-b843-f318c29cb1d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33418,648a011a-c422-4ce0-b897-825f815332f5,LIST_ACCOUNTS,hbciListAccounts,false +33419,648a011a-c422-4ce0-b897-825f815332f5,LIST_TRANSACTIONS,hbciListTransactions,false +33420,648a011a-c422-4ce0-b897-825f815332f5,AUTHORIZATION,,false +33421,648a011a-c422-4ce0-b897-825f815332f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33422,648a011a-c422-4ce0-b897-825f815332f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33423,648a011a-c422-4ce0-b897-825f815332f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33424,ba3893bd-70c8-4b1d-a626-e47e7470bce5,LIST_ACCOUNTS,xs2aListAccounts,true -33425,ba3893bd-70c8-4b1d-a626-e47e7470bce5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33425,ba3893bd-70c8-4b1d-a626-e47e7470bce5,LIST_TRANSACTIONS,xs2aListTransactions,true 33426,ba3893bd-70c8-4b1d-a626-e47e7470bce5,AUTHORIZATION,,true 33427,ba3893bd-70c8-4b1d-a626-e47e7470bce5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33428,ba3893bd-70c8-4b1d-a626-e47e7470bce5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33429,ba3893bd-70c8-4b1d-a626-e47e7470bce5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33430,2e702e6a-fb8f-4fbc-9784-5113decb964c,LIST_ACCOUNTS,hbciListAccounts,false -33431,2e702e6a-fb8f-4fbc-9784-5113decb964c,LIST_TRANSACTIONS,hbciListTransactions,false -33432,2e702e6a-fb8f-4fbc-9784-5113decb964c,AUTHORIZATION,,false -33433,2e702e6a-fb8f-4fbc-9784-5113decb964c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33434,2e702e6a-fb8f-4fbc-9784-5113decb964c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33435,2e702e6a-fb8f-4fbc-9784-5113decb964c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33430,a5aa9aaf-5b40-4166-877b-9a88ac94a0c5,LIST_ACCOUNTS,hbciListAccounts,false +33431,a5aa9aaf-5b40-4166-877b-9a88ac94a0c5,LIST_TRANSACTIONS,hbciListTransactions,false +33432,a5aa9aaf-5b40-4166-877b-9a88ac94a0c5,AUTHORIZATION,,false +33433,a5aa9aaf-5b40-4166-877b-9a88ac94a0c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33434,a5aa9aaf-5b40-4166-877b-9a88ac94a0c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33435,a5aa9aaf-5b40-4166-877b-9a88ac94a0c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33436,31187202-7462-42bc-9bbf-80561515b751,LIST_ACCOUNTS,xs2aListAccounts,true -33437,31187202-7462-42bc-9bbf-80561515b751,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33437,31187202-7462-42bc-9bbf-80561515b751,LIST_TRANSACTIONS,xs2aListTransactions,true 33438,31187202-7462-42bc-9bbf-80561515b751,AUTHORIZATION,,true 33439,31187202-7462-42bc-9bbf-80561515b751,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33440,31187202-7462-42bc-9bbf-80561515b751,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33441,31187202-7462-42bc-9bbf-80561515b751,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33442,514e6277-4156-4186-8311-c23cdc47bb09,LIST_ACCOUNTS,hbciListAccounts,false -33443,514e6277-4156-4186-8311-c23cdc47bb09,LIST_TRANSACTIONS,hbciListTransactions,false -33444,514e6277-4156-4186-8311-c23cdc47bb09,AUTHORIZATION,,false -33445,514e6277-4156-4186-8311-c23cdc47bb09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33446,514e6277-4156-4186-8311-c23cdc47bb09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33447,514e6277-4156-4186-8311-c23cdc47bb09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33442,37e9c9c5-b41e-421b-9081-cee4e88f2a28,LIST_ACCOUNTS,hbciListAccounts,false +33443,37e9c9c5-b41e-421b-9081-cee4e88f2a28,LIST_TRANSACTIONS,hbciListTransactions,false +33444,37e9c9c5-b41e-421b-9081-cee4e88f2a28,AUTHORIZATION,,false +33445,37e9c9c5-b41e-421b-9081-cee4e88f2a28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33446,37e9c9c5-b41e-421b-9081-cee4e88f2a28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33447,37e9c9c5-b41e-421b-9081-cee4e88f2a28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33448,81022945-236c-4824-9420-25a47312a0c3,LIST_ACCOUNTS,xs2aListAccounts,true -33449,81022945-236c-4824-9420-25a47312a0c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33449,81022945-236c-4824-9420-25a47312a0c3,LIST_TRANSACTIONS,xs2aListTransactions,true 33450,81022945-236c-4824-9420-25a47312a0c3,AUTHORIZATION,,true 33451,81022945-236c-4824-9420-25a47312a0c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33452,81022945-236c-4824-9420-25a47312a0c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33453,81022945-236c-4824-9420-25a47312a0c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33454,e71e615b-5a44-48ac-ab85-78e56cb233ad,LIST_ACCOUNTS,hbciListAccounts,false -33455,e71e615b-5a44-48ac-ab85-78e56cb233ad,LIST_TRANSACTIONS,hbciListTransactions,false -33456,e71e615b-5a44-48ac-ab85-78e56cb233ad,AUTHORIZATION,,false -33457,e71e615b-5a44-48ac-ab85-78e56cb233ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33458,e71e615b-5a44-48ac-ab85-78e56cb233ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33459,e71e615b-5a44-48ac-ab85-78e56cb233ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33454,4de974c6-b1de-4497-b4d7-06e614a0440e,LIST_ACCOUNTS,hbciListAccounts,false +33455,4de974c6-b1de-4497-b4d7-06e614a0440e,LIST_TRANSACTIONS,hbciListTransactions,false +33456,4de974c6-b1de-4497-b4d7-06e614a0440e,AUTHORIZATION,,false +33457,4de974c6-b1de-4497-b4d7-06e614a0440e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33458,4de974c6-b1de-4497-b4d7-06e614a0440e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33459,4de974c6-b1de-4497-b4d7-06e614a0440e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33460,31c6a589-33f9-4033-b52e-a5073923503e,LIST_ACCOUNTS,xs2aListAccounts,true -33461,31c6a589-33f9-4033-b52e-a5073923503e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33461,31c6a589-33f9-4033-b52e-a5073923503e,LIST_TRANSACTIONS,xs2aListTransactions,true 33462,31c6a589-33f9-4033-b52e-a5073923503e,AUTHORIZATION,,true 33463,31c6a589-33f9-4033-b52e-a5073923503e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33464,31c6a589-33f9-4033-b52e-a5073923503e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33465,31c6a589-33f9-4033-b52e-a5073923503e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33466,d297d80e-ada6-45b6-b297-311c1d9d334c,LIST_ACCOUNTS,hbciListAccounts,false -33467,d297d80e-ada6-45b6-b297-311c1d9d334c,LIST_TRANSACTIONS,hbciListTransactions,false -33468,d297d80e-ada6-45b6-b297-311c1d9d334c,AUTHORIZATION,,false -33469,d297d80e-ada6-45b6-b297-311c1d9d334c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33470,d297d80e-ada6-45b6-b297-311c1d9d334c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33471,d297d80e-ada6-45b6-b297-311c1d9d334c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33466,b56e20ea-53cf-472c-9904-ba23134a4316,LIST_ACCOUNTS,hbciListAccounts,false +33467,b56e20ea-53cf-472c-9904-ba23134a4316,LIST_TRANSACTIONS,hbciListTransactions,false +33468,b56e20ea-53cf-472c-9904-ba23134a4316,AUTHORIZATION,,false +33469,b56e20ea-53cf-472c-9904-ba23134a4316,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33470,b56e20ea-53cf-472c-9904-ba23134a4316,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33471,b56e20ea-53cf-472c-9904-ba23134a4316,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33472,23d78d1a-784f-4e51-ac1a-81d35520d742,LIST_ACCOUNTS,xs2aListAccounts,true -33473,23d78d1a-784f-4e51-ac1a-81d35520d742,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33473,23d78d1a-784f-4e51-ac1a-81d35520d742,LIST_TRANSACTIONS,xs2aListTransactions,true 33474,23d78d1a-784f-4e51-ac1a-81d35520d742,AUTHORIZATION,,true 33475,23d78d1a-784f-4e51-ac1a-81d35520d742,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33476,23d78d1a-784f-4e51-ac1a-81d35520d742,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33477,23d78d1a-784f-4e51-ac1a-81d35520d742,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33478,80e9fc49-7b45-4756-876e-c40334c1cb40,LIST_ACCOUNTS,hbciListAccounts,false -33479,80e9fc49-7b45-4756-876e-c40334c1cb40,LIST_TRANSACTIONS,hbciListTransactions,false -33480,80e9fc49-7b45-4756-876e-c40334c1cb40,AUTHORIZATION,,false -33481,80e9fc49-7b45-4756-876e-c40334c1cb40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33482,80e9fc49-7b45-4756-876e-c40334c1cb40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33483,80e9fc49-7b45-4756-876e-c40334c1cb40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33478,c1cb55c9-7c57-4969-8469-dbc9ea08dd85,LIST_ACCOUNTS,hbciListAccounts,false +33479,c1cb55c9-7c57-4969-8469-dbc9ea08dd85,LIST_TRANSACTIONS,hbciListTransactions,false +33480,c1cb55c9-7c57-4969-8469-dbc9ea08dd85,AUTHORIZATION,,false +33481,c1cb55c9-7c57-4969-8469-dbc9ea08dd85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33482,c1cb55c9-7c57-4969-8469-dbc9ea08dd85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33483,c1cb55c9-7c57-4969-8469-dbc9ea08dd85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33484,b2a1d4b9-a0a3-4c22-89a1-2d7abbe77f37,LIST_ACCOUNTS,xs2aListAccounts,true -33485,b2a1d4b9-a0a3-4c22-89a1-2d7abbe77f37,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33485,b2a1d4b9-a0a3-4c22-89a1-2d7abbe77f37,LIST_TRANSACTIONS,xs2aListTransactions,true 33486,b2a1d4b9-a0a3-4c22-89a1-2d7abbe77f37,AUTHORIZATION,,true 33487,b2a1d4b9-a0a3-4c22-89a1-2d7abbe77f37,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33488,b2a1d4b9-a0a3-4c22-89a1-2d7abbe77f37,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33489,b2a1d4b9-a0a3-4c22-89a1-2d7abbe77f37,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33490,e821e787-3f24-4735-bad0-3fc71738255c,LIST_ACCOUNTS,hbciListAccounts,false -33491,e821e787-3f24-4735-bad0-3fc71738255c,LIST_TRANSACTIONS,hbciListTransactions,false -33492,e821e787-3f24-4735-bad0-3fc71738255c,AUTHORIZATION,,false -33493,e821e787-3f24-4735-bad0-3fc71738255c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33494,e821e787-3f24-4735-bad0-3fc71738255c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33495,e821e787-3f24-4735-bad0-3fc71738255c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33490,d1a48c6c-c9c8-47f8-964c-2b1db109a6b0,LIST_ACCOUNTS,hbciListAccounts,false +33491,d1a48c6c-c9c8-47f8-964c-2b1db109a6b0,LIST_TRANSACTIONS,hbciListTransactions,false +33492,d1a48c6c-c9c8-47f8-964c-2b1db109a6b0,AUTHORIZATION,,false +33493,d1a48c6c-c9c8-47f8-964c-2b1db109a6b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33494,d1a48c6c-c9c8-47f8-964c-2b1db109a6b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33495,d1a48c6c-c9c8-47f8-964c-2b1db109a6b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33496,9582967b-00f9-435a-bb4e-34f88505d744,LIST_ACCOUNTS,xs2aListAccounts,true -33497,9582967b-00f9-435a-bb4e-34f88505d744,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33497,9582967b-00f9-435a-bb4e-34f88505d744,LIST_TRANSACTIONS,xs2aListTransactions,true 33498,9582967b-00f9-435a-bb4e-34f88505d744,AUTHORIZATION,,true 33499,9582967b-00f9-435a-bb4e-34f88505d744,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33500,9582967b-00f9-435a-bb4e-34f88505d744,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33501,9582967b-00f9-435a-bb4e-34f88505d744,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33502,3419be0c-3a2e-459e-b80b-02181ab9bf6f,LIST_ACCOUNTS,hbciListAccounts,false -33503,3419be0c-3a2e-459e-b80b-02181ab9bf6f,LIST_TRANSACTIONS,hbciListTransactions,false -33504,3419be0c-3a2e-459e-b80b-02181ab9bf6f,AUTHORIZATION,,false -33505,3419be0c-3a2e-459e-b80b-02181ab9bf6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33506,3419be0c-3a2e-459e-b80b-02181ab9bf6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33507,3419be0c-3a2e-459e-b80b-02181ab9bf6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33502,3cc3c0f9-65ac-4990-9ec8-d159a3483a4b,LIST_ACCOUNTS,hbciListAccounts,false +33503,3cc3c0f9-65ac-4990-9ec8-d159a3483a4b,LIST_TRANSACTIONS,hbciListTransactions,false +33504,3cc3c0f9-65ac-4990-9ec8-d159a3483a4b,AUTHORIZATION,,false +33505,3cc3c0f9-65ac-4990-9ec8-d159a3483a4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33506,3cc3c0f9-65ac-4990-9ec8-d159a3483a4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33507,3cc3c0f9-65ac-4990-9ec8-d159a3483a4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33508,9b575e0d-a69d-4bed-8836-8d72bcd16ec2,LIST_ACCOUNTS,xs2aListAccounts,true -33509,9b575e0d-a69d-4bed-8836-8d72bcd16ec2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33509,9b575e0d-a69d-4bed-8836-8d72bcd16ec2,LIST_TRANSACTIONS,xs2aListTransactions,true 33510,9b575e0d-a69d-4bed-8836-8d72bcd16ec2,AUTHORIZATION,,true 33511,9b575e0d-a69d-4bed-8836-8d72bcd16ec2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33512,9b575e0d-a69d-4bed-8836-8d72bcd16ec2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33513,9b575e0d-a69d-4bed-8836-8d72bcd16ec2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33514,cf49b96e-afd7-45fd-bc06-e1c295b656b8,LIST_ACCOUNTS,hbciListAccounts,false -33515,cf49b96e-afd7-45fd-bc06-e1c295b656b8,LIST_TRANSACTIONS,hbciListTransactions,false -33516,cf49b96e-afd7-45fd-bc06-e1c295b656b8,AUTHORIZATION,,false -33517,cf49b96e-afd7-45fd-bc06-e1c295b656b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33518,cf49b96e-afd7-45fd-bc06-e1c295b656b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33519,cf49b96e-afd7-45fd-bc06-e1c295b656b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33514,80edd127-80bd-4cd7-9b52-de5afb541109,LIST_ACCOUNTS,hbciListAccounts,false +33515,80edd127-80bd-4cd7-9b52-de5afb541109,LIST_TRANSACTIONS,hbciListTransactions,false +33516,80edd127-80bd-4cd7-9b52-de5afb541109,AUTHORIZATION,,false +33517,80edd127-80bd-4cd7-9b52-de5afb541109,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33518,80edd127-80bd-4cd7-9b52-de5afb541109,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33519,80edd127-80bd-4cd7-9b52-de5afb541109,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33520,742f99aa-6067-44a6-93a0-2265810d9e4c,LIST_ACCOUNTS,xs2aListAccounts,true -33521,742f99aa-6067-44a6-93a0-2265810d9e4c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33521,742f99aa-6067-44a6-93a0-2265810d9e4c,LIST_TRANSACTIONS,xs2aListTransactions,true 33522,742f99aa-6067-44a6-93a0-2265810d9e4c,AUTHORIZATION,,true 33523,742f99aa-6067-44a6-93a0-2265810d9e4c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33524,742f99aa-6067-44a6-93a0-2265810d9e4c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33525,742f99aa-6067-44a6-93a0-2265810d9e4c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33526,87e1ed00-ea44-488d-868e-c7199c312bba,LIST_ACCOUNTS,hbciListAccounts,false -33527,87e1ed00-ea44-488d-868e-c7199c312bba,LIST_TRANSACTIONS,hbciListTransactions,false -33528,87e1ed00-ea44-488d-868e-c7199c312bba,AUTHORIZATION,,false -33529,87e1ed00-ea44-488d-868e-c7199c312bba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33530,87e1ed00-ea44-488d-868e-c7199c312bba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33531,87e1ed00-ea44-488d-868e-c7199c312bba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33526,e9763405-807d-4133-9266-ac0705aa5e9f,LIST_ACCOUNTS,hbciListAccounts,false +33527,e9763405-807d-4133-9266-ac0705aa5e9f,LIST_TRANSACTIONS,hbciListTransactions,false +33528,e9763405-807d-4133-9266-ac0705aa5e9f,AUTHORIZATION,,false +33529,e9763405-807d-4133-9266-ac0705aa5e9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33530,e9763405-807d-4133-9266-ac0705aa5e9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33531,e9763405-807d-4133-9266-ac0705aa5e9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33532,f9a93ac7-02f7-4f20-b59f-ec4e52796016,LIST_ACCOUNTS,xs2aListAccounts,true -33533,f9a93ac7-02f7-4f20-b59f-ec4e52796016,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33533,f9a93ac7-02f7-4f20-b59f-ec4e52796016,LIST_TRANSACTIONS,xs2aListTransactions,true 33534,f9a93ac7-02f7-4f20-b59f-ec4e52796016,AUTHORIZATION,,true 33535,f9a93ac7-02f7-4f20-b59f-ec4e52796016,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33536,f9a93ac7-02f7-4f20-b59f-ec4e52796016,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33537,f9a93ac7-02f7-4f20-b59f-ec4e52796016,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33538,720f1692-d913-4390-9836-c0ce5712f8c9,LIST_ACCOUNTS,hbciListAccounts,false -33539,720f1692-d913-4390-9836-c0ce5712f8c9,LIST_TRANSACTIONS,hbciListTransactions,false -33540,720f1692-d913-4390-9836-c0ce5712f8c9,AUTHORIZATION,,false -33541,720f1692-d913-4390-9836-c0ce5712f8c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33542,720f1692-d913-4390-9836-c0ce5712f8c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33543,720f1692-d913-4390-9836-c0ce5712f8c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33538,80eaabf8-7fab-4ae8-95a0-a051ee4cdfe7,LIST_ACCOUNTS,hbciListAccounts,false +33539,80eaabf8-7fab-4ae8-95a0-a051ee4cdfe7,LIST_TRANSACTIONS,hbciListTransactions,false +33540,80eaabf8-7fab-4ae8-95a0-a051ee4cdfe7,AUTHORIZATION,,false +33541,80eaabf8-7fab-4ae8-95a0-a051ee4cdfe7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33542,80eaabf8-7fab-4ae8-95a0-a051ee4cdfe7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33543,80eaabf8-7fab-4ae8-95a0-a051ee4cdfe7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33544,4e2689a3-e015-47d2-aaf4-6020429a0be9,LIST_ACCOUNTS,xs2aListAccounts,true -33545,4e2689a3-e015-47d2-aaf4-6020429a0be9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33545,4e2689a3-e015-47d2-aaf4-6020429a0be9,LIST_TRANSACTIONS,xs2aListTransactions,true 33546,4e2689a3-e015-47d2-aaf4-6020429a0be9,AUTHORIZATION,,true 33547,4e2689a3-e015-47d2-aaf4-6020429a0be9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33548,4e2689a3-e015-47d2-aaf4-6020429a0be9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33549,4e2689a3-e015-47d2-aaf4-6020429a0be9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33550,0a47a420-b518-413a-b2bc-2b628416a54b,LIST_ACCOUNTS,hbciListAccounts,false -33551,0a47a420-b518-413a-b2bc-2b628416a54b,LIST_TRANSACTIONS,hbciListTransactions,false -33552,0a47a420-b518-413a-b2bc-2b628416a54b,AUTHORIZATION,,false -33553,0a47a420-b518-413a-b2bc-2b628416a54b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33554,0a47a420-b518-413a-b2bc-2b628416a54b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33555,0a47a420-b518-413a-b2bc-2b628416a54b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33550,6e191eb5-d07e-4c98-9a07-a07a0ff12384,LIST_ACCOUNTS,hbciListAccounts,false +33551,6e191eb5-d07e-4c98-9a07-a07a0ff12384,LIST_TRANSACTIONS,hbciListTransactions,false +33552,6e191eb5-d07e-4c98-9a07-a07a0ff12384,AUTHORIZATION,,false +33553,6e191eb5-d07e-4c98-9a07-a07a0ff12384,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33554,6e191eb5-d07e-4c98-9a07-a07a0ff12384,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33555,6e191eb5-d07e-4c98-9a07-a07a0ff12384,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33556,da902f8f-1f41-476e-b74b-f650b62bdb90,LIST_ACCOUNTS,xs2aListAccounts,true -33557,da902f8f-1f41-476e-b74b-f650b62bdb90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33557,da902f8f-1f41-476e-b74b-f650b62bdb90,LIST_TRANSACTIONS,xs2aListTransactions,true 33558,da902f8f-1f41-476e-b74b-f650b62bdb90,AUTHORIZATION,,true 33559,da902f8f-1f41-476e-b74b-f650b62bdb90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33560,da902f8f-1f41-476e-b74b-f650b62bdb90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33561,da902f8f-1f41-476e-b74b-f650b62bdb90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33562,e96bfeb7-9bb1-40d2-8e8b-5064a0364d97,LIST_ACCOUNTS,hbciListAccounts,false -33563,e96bfeb7-9bb1-40d2-8e8b-5064a0364d97,LIST_TRANSACTIONS,hbciListTransactions,false -33564,e96bfeb7-9bb1-40d2-8e8b-5064a0364d97,AUTHORIZATION,,false -33565,e96bfeb7-9bb1-40d2-8e8b-5064a0364d97,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33566,e96bfeb7-9bb1-40d2-8e8b-5064a0364d97,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33567,e96bfeb7-9bb1-40d2-8e8b-5064a0364d97,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33562,61d8fe97-02a6-41d6-9192-e7913855cb3c,LIST_ACCOUNTS,hbciListAccounts,false +33563,61d8fe97-02a6-41d6-9192-e7913855cb3c,LIST_TRANSACTIONS,hbciListTransactions,false +33564,61d8fe97-02a6-41d6-9192-e7913855cb3c,AUTHORIZATION,,false +33565,61d8fe97-02a6-41d6-9192-e7913855cb3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33566,61d8fe97-02a6-41d6-9192-e7913855cb3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33567,61d8fe97-02a6-41d6-9192-e7913855cb3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33568,371b120a-30af-4730-807f-118cae0bdb01,LIST_ACCOUNTS,xs2aListAccounts,true -33569,371b120a-30af-4730-807f-118cae0bdb01,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33569,371b120a-30af-4730-807f-118cae0bdb01,LIST_TRANSACTIONS,xs2aListTransactions,true 33570,371b120a-30af-4730-807f-118cae0bdb01,AUTHORIZATION,,true 33571,371b120a-30af-4730-807f-118cae0bdb01,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33572,371b120a-30af-4730-807f-118cae0bdb01,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33573,371b120a-30af-4730-807f-118cae0bdb01,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33574,ab177ea1-9703-4092-8da7-ab7e9e31fd4c,LIST_ACCOUNTS,hbciListAccounts,false -33575,ab177ea1-9703-4092-8da7-ab7e9e31fd4c,LIST_TRANSACTIONS,hbciListTransactions,false -33576,ab177ea1-9703-4092-8da7-ab7e9e31fd4c,AUTHORIZATION,,false -33577,ab177ea1-9703-4092-8da7-ab7e9e31fd4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33578,ab177ea1-9703-4092-8da7-ab7e9e31fd4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33579,ab177ea1-9703-4092-8da7-ab7e9e31fd4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33574,ab19a8e8-b822-4b59-8fcf-30b324741a8a,LIST_ACCOUNTS,hbciListAccounts,false +33575,ab19a8e8-b822-4b59-8fcf-30b324741a8a,LIST_TRANSACTIONS,hbciListTransactions,false +33576,ab19a8e8-b822-4b59-8fcf-30b324741a8a,AUTHORIZATION,,false +33577,ab19a8e8-b822-4b59-8fcf-30b324741a8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33578,ab19a8e8-b822-4b59-8fcf-30b324741a8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33579,ab19a8e8-b822-4b59-8fcf-30b324741a8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33580,02229f9c-1e48-4b0b-aac3-094fe49d986e,LIST_ACCOUNTS,xs2aListAccounts,true -33581,02229f9c-1e48-4b0b-aac3-094fe49d986e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33581,02229f9c-1e48-4b0b-aac3-094fe49d986e,LIST_TRANSACTIONS,xs2aListTransactions,true 33582,02229f9c-1e48-4b0b-aac3-094fe49d986e,AUTHORIZATION,,true 33583,02229f9c-1e48-4b0b-aac3-094fe49d986e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33584,02229f9c-1e48-4b0b-aac3-094fe49d986e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33585,02229f9c-1e48-4b0b-aac3-094fe49d986e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33586,12ff125f-940d-4488-aaf0-73cdb9020927,LIST_ACCOUNTS,hbciListAccounts,false -33587,12ff125f-940d-4488-aaf0-73cdb9020927,LIST_TRANSACTIONS,hbciListTransactions,false -33588,12ff125f-940d-4488-aaf0-73cdb9020927,AUTHORIZATION,,false -33589,12ff125f-940d-4488-aaf0-73cdb9020927,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33590,12ff125f-940d-4488-aaf0-73cdb9020927,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33591,12ff125f-940d-4488-aaf0-73cdb9020927,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33586,15cb9ed8-3654-4bd9-af57-26500a8953cf,LIST_ACCOUNTS,hbciListAccounts,false +33587,15cb9ed8-3654-4bd9-af57-26500a8953cf,LIST_TRANSACTIONS,hbciListTransactions,false +33588,15cb9ed8-3654-4bd9-af57-26500a8953cf,AUTHORIZATION,,false +33589,15cb9ed8-3654-4bd9-af57-26500a8953cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33590,15cb9ed8-3654-4bd9-af57-26500a8953cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33591,15cb9ed8-3654-4bd9-af57-26500a8953cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33592,a619731c-408b-4f09-8278-998fee192945,LIST_ACCOUNTS,xs2aListAccounts,true -33593,a619731c-408b-4f09-8278-998fee192945,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33593,a619731c-408b-4f09-8278-998fee192945,LIST_TRANSACTIONS,xs2aListTransactions,true 33594,a619731c-408b-4f09-8278-998fee192945,AUTHORIZATION,,true 33595,a619731c-408b-4f09-8278-998fee192945,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33596,a619731c-408b-4f09-8278-998fee192945,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33597,a619731c-408b-4f09-8278-998fee192945,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33598,2490c2e5-f88d-417c-8176-abbfd862f7aa,LIST_ACCOUNTS,hbciListAccounts,false -33599,2490c2e5-f88d-417c-8176-abbfd862f7aa,LIST_TRANSACTIONS,hbciListTransactions,false -33600,2490c2e5-f88d-417c-8176-abbfd862f7aa,AUTHORIZATION,,false -33601,2490c2e5-f88d-417c-8176-abbfd862f7aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33602,2490c2e5-f88d-417c-8176-abbfd862f7aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33603,2490c2e5-f88d-417c-8176-abbfd862f7aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33598,beaae48a-27e1-4bed-a10b-da0e9a2545ab,LIST_ACCOUNTS,hbciListAccounts,false +33599,beaae48a-27e1-4bed-a10b-da0e9a2545ab,LIST_TRANSACTIONS,hbciListTransactions,false +33600,beaae48a-27e1-4bed-a10b-da0e9a2545ab,AUTHORIZATION,,false +33601,beaae48a-27e1-4bed-a10b-da0e9a2545ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33602,beaae48a-27e1-4bed-a10b-da0e9a2545ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33603,beaae48a-27e1-4bed-a10b-da0e9a2545ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33604,23015357-4011-43b4-8174-112d4030a11d,LIST_ACCOUNTS,xs2aListAccounts,true -33605,23015357-4011-43b4-8174-112d4030a11d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33605,23015357-4011-43b4-8174-112d4030a11d,LIST_TRANSACTIONS,xs2aListTransactions,true 33606,23015357-4011-43b4-8174-112d4030a11d,AUTHORIZATION,,true 33607,23015357-4011-43b4-8174-112d4030a11d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33608,23015357-4011-43b4-8174-112d4030a11d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33609,23015357-4011-43b4-8174-112d4030a11d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33610,5c512163-4357-43f9-befb-383d9c3c877c,LIST_ACCOUNTS,hbciListAccounts,false -33611,5c512163-4357-43f9-befb-383d9c3c877c,LIST_TRANSACTIONS,hbciListTransactions,false -33612,5c512163-4357-43f9-befb-383d9c3c877c,AUTHORIZATION,,false -33613,5c512163-4357-43f9-befb-383d9c3c877c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33614,5c512163-4357-43f9-befb-383d9c3c877c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33615,5c512163-4357-43f9-befb-383d9c3c877c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33610,72113050-ffbb-45ee-9226-af080d35806f,LIST_ACCOUNTS,hbciListAccounts,false +33611,72113050-ffbb-45ee-9226-af080d35806f,LIST_TRANSACTIONS,hbciListTransactions,false +33612,72113050-ffbb-45ee-9226-af080d35806f,AUTHORIZATION,,false +33613,72113050-ffbb-45ee-9226-af080d35806f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33614,72113050-ffbb-45ee-9226-af080d35806f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33615,72113050-ffbb-45ee-9226-af080d35806f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33616,40f46220-9a55-417e-9a82-8e2a59b4594a,LIST_ACCOUNTS,xs2aListAccounts,true -33617,40f46220-9a55-417e-9a82-8e2a59b4594a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33617,40f46220-9a55-417e-9a82-8e2a59b4594a,LIST_TRANSACTIONS,xs2aListTransactions,true 33618,40f46220-9a55-417e-9a82-8e2a59b4594a,AUTHORIZATION,,true 33619,40f46220-9a55-417e-9a82-8e2a59b4594a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33620,40f46220-9a55-417e-9a82-8e2a59b4594a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33621,40f46220-9a55-417e-9a82-8e2a59b4594a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33622,9e5701ba-1c52-4de4-9e4a-c05b35657bf0,LIST_ACCOUNTS,hbciListAccounts,false -33623,9e5701ba-1c52-4de4-9e4a-c05b35657bf0,LIST_TRANSACTIONS,hbciListTransactions,false -33624,9e5701ba-1c52-4de4-9e4a-c05b35657bf0,AUTHORIZATION,,false -33625,9e5701ba-1c52-4de4-9e4a-c05b35657bf0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33626,9e5701ba-1c52-4de4-9e4a-c05b35657bf0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33627,9e5701ba-1c52-4de4-9e4a-c05b35657bf0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33622,a5635594-e281-4f28-8b32-40b92809ffed,LIST_ACCOUNTS,hbciListAccounts,false +33623,a5635594-e281-4f28-8b32-40b92809ffed,LIST_TRANSACTIONS,hbciListTransactions,false +33624,a5635594-e281-4f28-8b32-40b92809ffed,AUTHORIZATION,,false +33625,a5635594-e281-4f28-8b32-40b92809ffed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33626,a5635594-e281-4f28-8b32-40b92809ffed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33627,a5635594-e281-4f28-8b32-40b92809ffed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33628,b94056a7-146d-44fe-9234-9a42062375d8,LIST_ACCOUNTS,xs2aListAccounts,true -33629,b94056a7-146d-44fe-9234-9a42062375d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33629,b94056a7-146d-44fe-9234-9a42062375d8,LIST_TRANSACTIONS,xs2aListTransactions,true 33630,b94056a7-146d-44fe-9234-9a42062375d8,AUTHORIZATION,,true 33631,b94056a7-146d-44fe-9234-9a42062375d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33632,b94056a7-146d-44fe-9234-9a42062375d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33633,b94056a7-146d-44fe-9234-9a42062375d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33634,09f8606c-7295-4e45-9781-52148350a3a5,LIST_ACCOUNTS,hbciListAccounts,false -33635,09f8606c-7295-4e45-9781-52148350a3a5,LIST_TRANSACTIONS,hbciListTransactions,false -33636,09f8606c-7295-4e45-9781-52148350a3a5,AUTHORIZATION,,false -33637,09f8606c-7295-4e45-9781-52148350a3a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33638,09f8606c-7295-4e45-9781-52148350a3a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33639,09f8606c-7295-4e45-9781-52148350a3a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33634,8b956f04-7a24-4c38-9f8d-8d84da427f56,LIST_ACCOUNTS,hbciListAccounts,false +33635,8b956f04-7a24-4c38-9f8d-8d84da427f56,LIST_TRANSACTIONS,hbciListTransactions,false +33636,8b956f04-7a24-4c38-9f8d-8d84da427f56,AUTHORIZATION,,false +33637,8b956f04-7a24-4c38-9f8d-8d84da427f56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33638,8b956f04-7a24-4c38-9f8d-8d84da427f56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33639,8b956f04-7a24-4c38-9f8d-8d84da427f56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33640,d7e5dcaf-ea64-4a87-a8fe-c3aa9d69be00,LIST_ACCOUNTS,xs2aListAccounts,true -33641,d7e5dcaf-ea64-4a87-a8fe-c3aa9d69be00,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33641,d7e5dcaf-ea64-4a87-a8fe-c3aa9d69be00,LIST_TRANSACTIONS,xs2aListTransactions,true 33642,d7e5dcaf-ea64-4a87-a8fe-c3aa9d69be00,AUTHORIZATION,,true 33643,d7e5dcaf-ea64-4a87-a8fe-c3aa9d69be00,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33644,d7e5dcaf-ea64-4a87-a8fe-c3aa9d69be00,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33645,d7e5dcaf-ea64-4a87-a8fe-c3aa9d69be00,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33646,67e8d293-9f5a-44d8-a62d-0f1e0d1dbb5b,LIST_ACCOUNTS,hbciListAccounts,false -33647,67e8d293-9f5a-44d8-a62d-0f1e0d1dbb5b,LIST_TRANSACTIONS,hbciListTransactions,false -33648,67e8d293-9f5a-44d8-a62d-0f1e0d1dbb5b,AUTHORIZATION,,false -33649,67e8d293-9f5a-44d8-a62d-0f1e0d1dbb5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33650,67e8d293-9f5a-44d8-a62d-0f1e0d1dbb5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33651,67e8d293-9f5a-44d8-a62d-0f1e0d1dbb5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33646,acd2522f-6aa9-4240-9f86-aa2443173a77,LIST_ACCOUNTS,hbciListAccounts,false +33647,acd2522f-6aa9-4240-9f86-aa2443173a77,LIST_TRANSACTIONS,hbciListTransactions,false +33648,acd2522f-6aa9-4240-9f86-aa2443173a77,AUTHORIZATION,,false +33649,acd2522f-6aa9-4240-9f86-aa2443173a77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33650,acd2522f-6aa9-4240-9f86-aa2443173a77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33651,acd2522f-6aa9-4240-9f86-aa2443173a77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33652,9386484f-8d92-470e-a307-e01b9ae50bd8,LIST_ACCOUNTS,xs2aListAccounts,true -33653,9386484f-8d92-470e-a307-e01b9ae50bd8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33653,9386484f-8d92-470e-a307-e01b9ae50bd8,LIST_TRANSACTIONS,xs2aListTransactions,true 33654,9386484f-8d92-470e-a307-e01b9ae50bd8,AUTHORIZATION,,true 33655,9386484f-8d92-470e-a307-e01b9ae50bd8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33656,9386484f-8d92-470e-a307-e01b9ae50bd8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33657,9386484f-8d92-470e-a307-e01b9ae50bd8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33658,7ad8c4f4-661b-43c0-8ce7-3cd56ec1727b,LIST_ACCOUNTS,hbciListAccounts,false -33659,7ad8c4f4-661b-43c0-8ce7-3cd56ec1727b,LIST_TRANSACTIONS,hbciListTransactions,false -33660,7ad8c4f4-661b-43c0-8ce7-3cd56ec1727b,AUTHORIZATION,,false -33661,7ad8c4f4-661b-43c0-8ce7-3cd56ec1727b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33662,7ad8c4f4-661b-43c0-8ce7-3cd56ec1727b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33663,7ad8c4f4-661b-43c0-8ce7-3cd56ec1727b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33658,4280968e-2014-4546-99f4-92c8bb1fbc7b,LIST_ACCOUNTS,hbciListAccounts,false +33659,4280968e-2014-4546-99f4-92c8bb1fbc7b,LIST_TRANSACTIONS,hbciListTransactions,false +33660,4280968e-2014-4546-99f4-92c8bb1fbc7b,AUTHORIZATION,,false +33661,4280968e-2014-4546-99f4-92c8bb1fbc7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33662,4280968e-2014-4546-99f4-92c8bb1fbc7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33663,4280968e-2014-4546-99f4-92c8bb1fbc7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33664,aa2dd8b6-484b-4fb5-ae04-33b3a43a5208,LIST_ACCOUNTS,xs2aListAccounts,true -33665,aa2dd8b6-484b-4fb5-ae04-33b3a43a5208,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33665,aa2dd8b6-484b-4fb5-ae04-33b3a43a5208,LIST_TRANSACTIONS,xs2aListTransactions,true 33666,aa2dd8b6-484b-4fb5-ae04-33b3a43a5208,AUTHORIZATION,,true 33667,aa2dd8b6-484b-4fb5-ae04-33b3a43a5208,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33668,aa2dd8b6-484b-4fb5-ae04-33b3a43a5208,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33669,aa2dd8b6-484b-4fb5-ae04-33b3a43a5208,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33670,da4eadb8-1d41-4cb0-ad91-cb8cc4a21322,LIST_ACCOUNTS,hbciListAccounts,false -33671,da4eadb8-1d41-4cb0-ad91-cb8cc4a21322,LIST_TRANSACTIONS,hbciListTransactions,false -33672,da4eadb8-1d41-4cb0-ad91-cb8cc4a21322,AUTHORIZATION,,false -33673,da4eadb8-1d41-4cb0-ad91-cb8cc4a21322,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33674,da4eadb8-1d41-4cb0-ad91-cb8cc4a21322,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33675,da4eadb8-1d41-4cb0-ad91-cb8cc4a21322,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33670,4673d063-0aeb-4769-89f4-9231e71187b0,LIST_ACCOUNTS,hbciListAccounts,false +33671,4673d063-0aeb-4769-89f4-9231e71187b0,LIST_TRANSACTIONS,hbciListTransactions,false +33672,4673d063-0aeb-4769-89f4-9231e71187b0,AUTHORIZATION,,false +33673,4673d063-0aeb-4769-89f4-9231e71187b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33674,4673d063-0aeb-4769-89f4-9231e71187b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33675,4673d063-0aeb-4769-89f4-9231e71187b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33676,6e27fb9c-bbf8-4f2c-8823-5518bf2e69cd,LIST_ACCOUNTS,xs2aListAccounts,true -33677,6e27fb9c-bbf8-4f2c-8823-5518bf2e69cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33677,6e27fb9c-bbf8-4f2c-8823-5518bf2e69cd,LIST_TRANSACTIONS,xs2aListTransactions,true 33678,6e27fb9c-bbf8-4f2c-8823-5518bf2e69cd,AUTHORIZATION,,true 33679,6e27fb9c-bbf8-4f2c-8823-5518bf2e69cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33680,6e27fb9c-bbf8-4f2c-8823-5518bf2e69cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33681,6e27fb9c-bbf8-4f2c-8823-5518bf2e69cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33682,e090f2c0-83d7-45ff-a9a7-b583a2509a88,LIST_ACCOUNTS,hbciListAccounts,false -33683,e090f2c0-83d7-45ff-a9a7-b583a2509a88,LIST_TRANSACTIONS,hbciListTransactions,false -33684,e090f2c0-83d7-45ff-a9a7-b583a2509a88,AUTHORIZATION,,false -33685,e090f2c0-83d7-45ff-a9a7-b583a2509a88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33686,e090f2c0-83d7-45ff-a9a7-b583a2509a88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33687,e090f2c0-83d7-45ff-a9a7-b583a2509a88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33682,dbd7dbdf-2d38-4237-8aef-9e527f8d6304,LIST_ACCOUNTS,hbciListAccounts,false +33683,dbd7dbdf-2d38-4237-8aef-9e527f8d6304,LIST_TRANSACTIONS,hbciListTransactions,false +33684,dbd7dbdf-2d38-4237-8aef-9e527f8d6304,AUTHORIZATION,,false +33685,dbd7dbdf-2d38-4237-8aef-9e527f8d6304,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33686,dbd7dbdf-2d38-4237-8aef-9e527f8d6304,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33687,dbd7dbdf-2d38-4237-8aef-9e527f8d6304,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33688,47d83be2-9b67-4f72-8f5d-3328a8fdf22b,LIST_ACCOUNTS,xs2aListAccounts,true -33689,47d83be2-9b67-4f72-8f5d-3328a8fdf22b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33689,47d83be2-9b67-4f72-8f5d-3328a8fdf22b,LIST_TRANSACTIONS,xs2aListTransactions,true 33690,47d83be2-9b67-4f72-8f5d-3328a8fdf22b,AUTHORIZATION,,true 33691,47d83be2-9b67-4f72-8f5d-3328a8fdf22b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33692,47d83be2-9b67-4f72-8f5d-3328a8fdf22b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33693,47d83be2-9b67-4f72-8f5d-3328a8fdf22b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33694,77635484-630b-4ab3-a43e-a0bdb0404cc5,LIST_ACCOUNTS,hbciListAccounts,false -33695,77635484-630b-4ab3-a43e-a0bdb0404cc5,LIST_TRANSACTIONS,hbciListTransactions,false -33696,77635484-630b-4ab3-a43e-a0bdb0404cc5,AUTHORIZATION,,false -33697,77635484-630b-4ab3-a43e-a0bdb0404cc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33698,77635484-630b-4ab3-a43e-a0bdb0404cc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33699,77635484-630b-4ab3-a43e-a0bdb0404cc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33694,dace0ff1-8eab-4ca8-8f83-df63efc79391,LIST_ACCOUNTS,hbciListAccounts,false +33695,dace0ff1-8eab-4ca8-8f83-df63efc79391,LIST_TRANSACTIONS,hbciListTransactions,false +33696,dace0ff1-8eab-4ca8-8f83-df63efc79391,AUTHORIZATION,,false +33697,dace0ff1-8eab-4ca8-8f83-df63efc79391,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33698,dace0ff1-8eab-4ca8-8f83-df63efc79391,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33699,dace0ff1-8eab-4ca8-8f83-df63efc79391,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33700,55a2c46b-a932-44ec-9fcb-c2cc5496b52b,LIST_ACCOUNTS,xs2aListAccounts,true -33701,55a2c46b-a932-44ec-9fcb-c2cc5496b52b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33701,55a2c46b-a932-44ec-9fcb-c2cc5496b52b,LIST_TRANSACTIONS,xs2aListTransactions,true 33702,55a2c46b-a932-44ec-9fcb-c2cc5496b52b,AUTHORIZATION,,true 33703,55a2c46b-a932-44ec-9fcb-c2cc5496b52b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33704,55a2c46b-a932-44ec-9fcb-c2cc5496b52b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33705,55a2c46b-a932-44ec-9fcb-c2cc5496b52b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33706,c07e1f56-0298-45ac-b6bd-9c6eb0b6637d,LIST_ACCOUNTS,hbciListAccounts,false -33707,c07e1f56-0298-45ac-b6bd-9c6eb0b6637d,LIST_TRANSACTIONS,hbciListTransactions,false -33708,c07e1f56-0298-45ac-b6bd-9c6eb0b6637d,AUTHORIZATION,,false -33709,c07e1f56-0298-45ac-b6bd-9c6eb0b6637d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33710,c07e1f56-0298-45ac-b6bd-9c6eb0b6637d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33711,c07e1f56-0298-45ac-b6bd-9c6eb0b6637d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33706,e9ffbf0a-1436-4a88-924f-368e48102cac,LIST_ACCOUNTS,hbciListAccounts,false +33707,e9ffbf0a-1436-4a88-924f-368e48102cac,LIST_TRANSACTIONS,hbciListTransactions,false +33708,e9ffbf0a-1436-4a88-924f-368e48102cac,AUTHORIZATION,,false +33709,e9ffbf0a-1436-4a88-924f-368e48102cac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33710,e9ffbf0a-1436-4a88-924f-368e48102cac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33711,e9ffbf0a-1436-4a88-924f-368e48102cac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33712,4dbddc76-74ac-4f9d-8ec6-688890cb4a53,LIST_ACCOUNTS,xs2aListAccounts,true -33713,4dbddc76-74ac-4f9d-8ec6-688890cb4a53,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33713,4dbddc76-74ac-4f9d-8ec6-688890cb4a53,LIST_TRANSACTIONS,xs2aListTransactions,true 33714,4dbddc76-74ac-4f9d-8ec6-688890cb4a53,AUTHORIZATION,,true 33715,4dbddc76-74ac-4f9d-8ec6-688890cb4a53,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33716,4dbddc76-74ac-4f9d-8ec6-688890cb4a53,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33717,4dbddc76-74ac-4f9d-8ec6-688890cb4a53,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33718,ccf8f0a1-982e-4bb3-ada4-b8845c96a8f2,LIST_ACCOUNTS,hbciListAccounts,false -33719,ccf8f0a1-982e-4bb3-ada4-b8845c96a8f2,LIST_TRANSACTIONS,hbciListTransactions,false -33720,ccf8f0a1-982e-4bb3-ada4-b8845c96a8f2,AUTHORIZATION,,false -33721,ccf8f0a1-982e-4bb3-ada4-b8845c96a8f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33722,ccf8f0a1-982e-4bb3-ada4-b8845c96a8f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33723,ccf8f0a1-982e-4bb3-ada4-b8845c96a8f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33718,1e6d5cab-3463-4cc3-8f32-494ee8c3ec55,LIST_ACCOUNTS,hbciListAccounts,false +33719,1e6d5cab-3463-4cc3-8f32-494ee8c3ec55,LIST_TRANSACTIONS,hbciListTransactions,false +33720,1e6d5cab-3463-4cc3-8f32-494ee8c3ec55,AUTHORIZATION,,false +33721,1e6d5cab-3463-4cc3-8f32-494ee8c3ec55,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33722,1e6d5cab-3463-4cc3-8f32-494ee8c3ec55,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33723,1e6d5cab-3463-4cc3-8f32-494ee8c3ec55,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33724,9bd21dfe-1045-4c5a-8cec-82195e3dee62,LIST_ACCOUNTS,xs2aListAccounts,true -33725,9bd21dfe-1045-4c5a-8cec-82195e3dee62,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33725,9bd21dfe-1045-4c5a-8cec-82195e3dee62,LIST_TRANSACTIONS,xs2aListTransactions,true 33726,9bd21dfe-1045-4c5a-8cec-82195e3dee62,AUTHORIZATION,,true 33727,9bd21dfe-1045-4c5a-8cec-82195e3dee62,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33728,9bd21dfe-1045-4c5a-8cec-82195e3dee62,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33729,9bd21dfe-1045-4c5a-8cec-82195e3dee62,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33730,8e40ede0-4898-41d6-b8c8-4a18155858a3,LIST_ACCOUNTS,hbciListAccounts,false -33731,8e40ede0-4898-41d6-b8c8-4a18155858a3,LIST_TRANSACTIONS,hbciListTransactions,false -33732,8e40ede0-4898-41d6-b8c8-4a18155858a3,AUTHORIZATION,,false -33733,8e40ede0-4898-41d6-b8c8-4a18155858a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33734,8e40ede0-4898-41d6-b8c8-4a18155858a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33735,8e40ede0-4898-41d6-b8c8-4a18155858a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33730,fa46d413-f324-4cbc-b8ae-51c73d544e98,LIST_ACCOUNTS,hbciListAccounts,false +33731,fa46d413-f324-4cbc-b8ae-51c73d544e98,LIST_TRANSACTIONS,hbciListTransactions,false +33732,fa46d413-f324-4cbc-b8ae-51c73d544e98,AUTHORIZATION,,false +33733,fa46d413-f324-4cbc-b8ae-51c73d544e98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33734,fa46d413-f324-4cbc-b8ae-51c73d544e98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33735,fa46d413-f324-4cbc-b8ae-51c73d544e98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33736,9134db47-6600-431c-84c8-ccd54b84de36,LIST_ACCOUNTS,xs2aListAccounts,true -33737,9134db47-6600-431c-84c8-ccd54b84de36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33737,9134db47-6600-431c-84c8-ccd54b84de36,LIST_TRANSACTIONS,xs2aListTransactions,true 33738,9134db47-6600-431c-84c8-ccd54b84de36,AUTHORIZATION,,true 33739,9134db47-6600-431c-84c8-ccd54b84de36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33740,9134db47-6600-431c-84c8-ccd54b84de36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33741,9134db47-6600-431c-84c8-ccd54b84de36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33742,3518a208-95b0-44e3-9cb4-62ead7b6d8f5,LIST_ACCOUNTS,hbciListAccounts,false -33743,3518a208-95b0-44e3-9cb4-62ead7b6d8f5,LIST_TRANSACTIONS,hbciListTransactions,false -33744,3518a208-95b0-44e3-9cb4-62ead7b6d8f5,AUTHORIZATION,,false -33745,3518a208-95b0-44e3-9cb4-62ead7b6d8f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33746,3518a208-95b0-44e3-9cb4-62ead7b6d8f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33747,3518a208-95b0-44e3-9cb4-62ead7b6d8f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33742,e273cce5-b191-4adb-b59e-b1b3a93de6a8,LIST_ACCOUNTS,hbciListAccounts,false +33743,e273cce5-b191-4adb-b59e-b1b3a93de6a8,LIST_TRANSACTIONS,hbciListTransactions,false +33744,e273cce5-b191-4adb-b59e-b1b3a93de6a8,AUTHORIZATION,,false +33745,e273cce5-b191-4adb-b59e-b1b3a93de6a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33746,e273cce5-b191-4adb-b59e-b1b3a93de6a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33747,e273cce5-b191-4adb-b59e-b1b3a93de6a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33748,5bd9cf30-569c-4f5f-8560-65f45d1c9207,LIST_ACCOUNTS,xs2aListAccounts,true -33749,5bd9cf30-569c-4f5f-8560-65f45d1c9207,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33749,5bd9cf30-569c-4f5f-8560-65f45d1c9207,LIST_TRANSACTIONS,xs2aListTransactions,true 33750,5bd9cf30-569c-4f5f-8560-65f45d1c9207,AUTHORIZATION,,true 33751,5bd9cf30-569c-4f5f-8560-65f45d1c9207,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33752,5bd9cf30-569c-4f5f-8560-65f45d1c9207,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33753,5bd9cf30-569c-4f5f-8560-65f45d1c9207,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33754,01e3dffe-bf33-4a02-9454-1ce126a8aee1,LIST_ACCOUNTS,hbciListAccounts,false -33755,01e3dffe-bf33-4a02-9454-1ce126a8aee1,LIST_TRANSACTIONS,hbciListTransactions,false -33756,01e3dffe-bf33-4a02-9454-1ce126a8aee1,AUTHORIZATION,,false -33757,01e3dffe-bf33-4a02-9454-1ce126a8aee1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33758,01e3dffe-bf33-4a02-9454-1ce126a8aee1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33759,01e3dffe-bf33-4a02-9454-1ce126a8aee1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33754,50fad751-3afc-4769-9172-6f111967db09,LIST_ACCOUNTS,hbciListAccounts,false +33755,50fad751-3afc-4769-9172-6f111967db09,LIST_TRANSACTIONS,hbciListTransactions,false +33756,50fad751-3afc-4769-9172-6f111967db09,AUTHORIZATION,,false +33757,50fad751-3afc-4769-9172-6f111967db09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33758,50fad751-3afc-4769-9172-6f111967db09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33759,50fad751-3afc-4769-9172-6f111967db09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33760,15fdebc6-b441-497e-9034-5bccc3d044e6,LIST_ACCOUNTS,xs2aListAccounts,true -33761,15fdebc6-b441-497e-9034-5bccc3d044e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33761,15fdebc6-b441-497e-9034-5bccc3d044e6,LIST_TRANSACTIONS,xs2aListTransactions,true 33762,15fdebc6-b441-497e-9034-5bccc3d044e6,AUTHORIZATION,,true 33763,15fdebc6-b441-497e-9034-5bccc3d044e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33764,15fdebc6-b441-497e-9034-5bccc3d044e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33765,15fdebc6-b441-497e-9034-5bccc3d044e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33766,37ff34e1-e669-43a2-9829-fe5b139f969e,LIST_ACCOUNTS,hbciListAccounts,false -33767,37ff34e1-e669-43a2-9829-fe5b139f969e,LIST_TRANSACTIONS,hbciListTransactions,false -33768,37ff34e1-e669-43a2-9829-fe5b139f969e,AUTHORIZATION,,false -33769,37ff34e1-e669-43a2-9829-fe5b139f969e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33770,37ff34e1-e669-43a2-9829-fe5b139f969e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33771,37ff34e1-e669-43a2-9829-fe5b139f969e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33766,d130ec55-5cf9-4090-bdb7-163d61a995c7,LIST_ACCOUNTS,hbciListAccounts,false +33767,d130ec55-5cf9-4090-bdb7-163d61a995c7,LIST_TRANSACTIONS,hbciListTransactions,false +33768,d130ec55-5cf9-4090-bdb7-163d61a995c7,AUTHORIZATION,,false +33769,d130ec55-5cf9-4090-bdb7-163d61a995c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33770,d130ec55-5cf9-4090-bdb7-163d61a995c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33771,d130ec55-5cf9-4090-bdb7-163d61a995c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33772,05791cca-8c20-479b-880d-78aa13f73426,LIST_ACCOUNTS,xs2aListAccounts,true -33773,05791cca-8c20-479b-880d-78aa13f73426,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33773,05791cca-8c20-479b-880d-78aa13f73426,LIST_TRANSACTIONS,xs2aListTransactions,true 33774,05791cca-8c20-479b-880d-78aa13f73426,AUTHORIZATION,,true 33775,05791cca-8c20-479b-880d-78aa13f73426,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33776,05791cca-8c20-479b-880d-78aa13f73426,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33777,05791cca-8c20-479b-880d-78aa13f73426,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33778,da405b31-773e-4630-b3fa-03be8c4fb847,LIST_ACCOUNTS,hbciListAccounts,false -33779,da405b31-773e-4630-b3fa-03be8c4fb847,LIST_TRANSACTIONS,hbciListTransactions,false -33780,da405b31-773e-4630-b3fa-03be8c4fb847,AUTHORIZATION,,false -33781,da405b31-773e-4630-b3fa-03be8c4fb847,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33782,da405b31-773e-4630-b3fa-03be8c4fb847,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33783,da405b31-773e-4630-b3fa-03be8c4fb847,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33778,514d08ba-b0a7-4902-aba2-4e1d5ec500c9,LIST_ACCOUNTS,hbciListAccounts,false +33779,514d08ba-b0a7-4902-aba2-4e1d5ec500c9,LIST_TRANSACTIONS,hbciListTransactions,false +33780,514d08ba-b0a7-4902-aba2-4e1d5ec500c9,AUTHORIZATION,,false +33781,514d08ba-b0a7-4902-aba2-4e1d5ec500c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33782,514d08ba-b0a7-4902-aba2-4e1d5ec500c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33783,514d08ba-b0a7-4902-aba2-4e1d5ec500c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33784,4b8e0d14-c1a4-4921-82f3-1db726771c4f,LIST_ACCOUNTS,xs2aListAccounts,true -33785,4b8e0d14-c1a4-4921-82f3-1db726771c4f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33785,4b8e0d14-c1a4-4921-82f3-1db726771c4f,LIST_TRANSACTIONS,xs2aListTransactions,true 33786,4b8e0d14-c1a4-4921-82f3-1db726771c4f,AUTHORIZATION,,true 33787,4b8e0d14-c1a4-4921-82f3-1db726771c4f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33788,4b8e0d14-c1a4-4921-82f3-1db726771c4f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33789,4b8e0d14-c1a4-4921-82f3-1db726771c4f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33790,45453f97-e6e2-445c-ac71-26c973297a45,LIST_ACCOUNTS,hbciListAccounts,false -33791,45453f97-e6e2-445c-ac71-26c973297a45,LIST_TRANSACTIONS,hbciListTransactions,false -33792,45453f97-e6e2-445c-ac71-26c973297a45,AUTHORIZATION,,false -33793,45453f97-e6e2-445c-ac71-26c973297a45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33794,45453f97-e6e2-445c-ac71-26c973297a45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33795,45453f97-e6e2-445c-ac71-26c973297a45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33790,31f7a404-9e1a-41b6-9252-ca0c8191bbec,LIST_ACCOUNTS,hbciListAccounts,false +33791,31f7a404-9e1a-41b6-9252-ca0c8191bbec,LIST_TRANSACTIONS,hbciListTransactions,false +33792,31f7a404-9e1a-41b6-9252-ca0c8191bbec,AUTHORIZATION,,false +33793,31f7a404-9e1a-41b6-9252-ca0c8191bbec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33794,31f7a404-9e1a-41b6-9252-ca0c8191bbec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33795,31f7a404-9e1a-41b6-9252-ca0c8191bbec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33796,6df4a094-4b8a-4c33-86e6-2574780a4af9,LIST_ACCOUNTS,xs2aListAccounts,true -33797,6df4a094-4b8a-4c33-86e6-2574780a4af9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33797,6df4a094-4b8a-4c33-86e6-2574780a4af9,LIST_TRANSACTIONS,xs2aListTransactions,true 33798,6df4a094-4b8a-4c33-86e6-2574780a4af9,AUTHORIZATION,,true 33799,6df4a094-4b8a-4c33-86e6-2574780a4af9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33800,6df4a094-4b8a-4c33-86e6-2574780a4af9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33801,6df4a094-4b8a-4c33-86e6-2574780a4af9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33802,1137aaec-2841-4ac7-9008-dc8252295209,LIST_ACCOUNTS,hbciListAccounts,false -33803,1137aaec-2841-4ac7-9008-dc8252295209,LIST_TRANSACTIONS,hbciListTransactions,false -33804,1137aaec-2841-4ac7-9008-dc8252295209,AUTHORIZATION,,false -33805,1137aaec-2841-4ac7-9008-dc8252295209,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33806,1137aaec-2841-4ac7-9008-dc8252295209,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33807,1137aaec-2841-4ac7-9008-dc8252295209,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33802,73e6e5ce-b7e3-4d2a-aecb-70372bd6488a,LIST_ACCOUNTS,hbciListAccounts,false +33803,73e6e5ce-b7e3-4d2a-aecb-70372bd6488a,LIST_TRANSACTIONS,hbciListTransactions,false +33804,73e6e5ce-b7e3-4d2a-aecb-70372bd6488a,AUTHORIZATION,,false +33805,73e6e5ce-b7e3-4d2a-aecb-70372bd6488a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33806,73e6e5ce-b7e3-4d2a-aecb-70372bd6488a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33807,73e6e5ce-b7e3-4d2a-aecb-70372bd6488a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33808,88259bf9-0172-409d-a114-8ab0e787324d,LIST_ACCOUNTS,xs2aListAccounts,true -33809,88259bf9-0172-409d-a114-8ab0e787324d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33809,88259bf9-0172-409d-a114-8ab0e787324d,LIST_TRANSACTIONS,xs2aListTransactions,true 33810,88259bf9-0172-409d-a114-8ab0e787324d,AUTHORIZATION,,true 33811,88259bf9-0172-409d-a114-8ab0e787324d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33812,88259bf9-0172-409d-a114-8ab0e787324d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33813,88259bf9-0172-409d-a114-8ab0e787324d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33814,a9a3aa51-f59f-4fd2-8747-103abbea4871,LIST_ACCOUNTS,hbciListAccounts,false -33815,a9a3aa51-f59f-4fd2-8747-103abbea4871,LIST_TRANSACTIONS,hbciListTransactions,false -33816,a9a3aa51-f59f-4fd2-8747-103abbea4871,AUTHORIZATION,,false -33817,a9a3aa51-f59f-4fd2-8747-103abbea4871,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33818,a9a3aa51-f59f-4fd2-8747-103abbea4871,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33819,a9a3aa51-f59f-4fd2-8747-103abbea4871,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33814,08fbf36d-3f36-4dfd-9de4-6cfcc10d7243,LIST_ACCOUNTS,hbciListAccounts,false +33815,08fbf36d-3f36-4dfd-9de4-6cfcc10d7243,LIST_TRANSACTIONS,hbciListTransactions,false +33816,08fbf36d-3f36-4dfd-9de4-6cfcc10d7243,AUTHORIZATION,,false +33817,08fbf36d-3f36-4dfd-9de4-6cfcc10d7243,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33818,08fbf36d-3f36-4dfd-9de4-6cfcc10d7243,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33819,08fbf36d-3f36-4dfd-9de4-6cfcc10d7243,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33820,ab785aa1-8bdd-406f-96d3-231217ed127d,LIST_ACCOUNTS,xs2aListAccounts,true -33821,ab785aa1-8bdd-406f-96d3-231217ed127d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33821,ab785aa1-8bdd-406f-96d3-231217ed127d,LIST_TRANSACTIONS,xs2aListTransactions,true 33822,ab785aa1-8bdd-406f-96d3-231217ed127d,AUTHORIZATION,,true 33823,ab785aa1-8bdd-406f-96d3-231217ed127d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33824,ab785aa1-8bdd-406f-96d3-231217ed127d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33825,ab785aa1-8bdd-406f-96d3-231217ed127d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33826,b2386c40-401d-4e48-9fdc-b9c94dbc9b15,LIST_ACCOUNTS,hbciListAccounts,false -33827,b2386c40-401d-4e48-9fdc-b9c94dbc9b15,LIST_TRANSACTIONS,hbciListTransactions,false -33828,b2386c40-401d-4e48-9fdc-b9c94dbc9b15,AUTHORIZATION,,false -33829,b2386c40-401d-4e48-9fdc-b9c94dbc9b15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33830,b2386c40-401d-4e48-9fdc-b9c94dbc9b15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33831,b2386c40-401d-4e48-9fdc-b9c94dbc9b15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33826,607b7e27-608c-4e97-9098-3f81cb4c0df7,LIST_ACCOUNTS,hbciListAccounts,false +33827,607b7e27-608c-4e97-9098-3f81cb4c0df7,LIST_TRANSACTIONS,hbciListTransactions,false +33828,607b7e27-608c-4e97-9098-3f81cb4c0df7,AUTHORIZATION,,false +33829,607b7e27-608c-4e97-9098-3f81cb4c0df7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33830,607b7e27-608c-4e97-9098-3f81cb4c0df7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33831,607b7e27-608c-4e97-9098-3f81cb4c0df7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33832,ac009d6a-fd91-4d3a-9121-a4c303197bbe,LIST_ACCOUNTS,xs2aListAccounts,true -33833,ac009d6a-fd91-4d3a-9121-a4c303197bbe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33833,ac009d6a-fd91-4d3a-9121-a4c303197bbe,LIST_TRANSACTIONS,xs2aListTransactions,true 33834,ac009d6a-fd91-4d3a-9121-a4c303197bbe,AUTHORIZATION,,true 33835,ac009d6a-fd91-4d3a-9121-a4c303197bbe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33836,ac009d6a-fd91-4d3a-9121-a4c303197bbe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33837,ac009d6a-fd91-4d3a-9121-a4c303197bbe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33838,e6493426-7524-43eb-b5ec-3790392f2cde,LIST_ACCOUNTS,hbciListAccounts,false -33839,e6493426-7524-43eb-b5ec-3790392f2cde,LIST_TRANSACTIONS,hbciListTransactions,false -33840,e6493426-7524-43eb-b5ec-3790392f2cde,AUTHORIZATION,,false -33841,e6493426-7524-43eb-b5ec-3790392f2cde,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33842,e6493426-7524-43eb-b5ec-3790392f2cde,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33843,e6493426-7524-43eb-b5ec-3790392f2cde,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33838,a3ce721c-1125-4419-9704-ae05eb477c28,LIST_ACCOUNTS,hbciListAccounts,false +33839,a3ce721c-1125-4419-9704-ae05eb477c28,LIST_TRANSACTIONS,hbciListTransactions,false +33840,a3ce721c-1125-4419-9704-ae05eb477c28,AUTHORIZATION,,false +33841,a3ce721c-1125-4419-9704-ae05eb477c28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33842,a3ce721c-1125-4419-9704-ae05eb477c28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33843,a3ce721c-1125-4419-9704-ae05eb477c28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33844,62e5b89a-1048-408e-8f41-4968c8a55090,LIST_ACCOUNTS,xs2aListAccounts,true -33845,62e5b89a-1048-408e-8f41-4968c8a55090,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33845,62e5b89a-1048-408e-8f41-4968c8a55090,LIST_TRANSACTIONS,xs2aListTransactions,true 33846,62e5b89a-1048-408e-8f41-4968c8a55090,AUTHORIZATION,,true 33847,62e5b89a-1048-408e-8f41-4968c8a55090,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33848,62e5b89a-1048-408e-8f41-4968c8a55090,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33849,62e5b89a-1048-408e-8f41-4968c8a55090,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33850,cd49da14-43bf-4e02-bcd9-189c10e9eb80,LIST_ACCOUNTS,hbciListAccounts,false -33851,cd49da14-43bf-4e02-bcd9-189c10e9eb80,LIST_TRANSACTIONS,hbciListTransactions,false -33852,cd49da14-43bf-4e02-bcd9-189c10e9eb80,AUTHORIZATION,,false -33853,cd49da14-43bf-4e02-bcd9-189c10e9eb80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33854,cd49da14-43bf-4e02-bcd9-189c10e9eb80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33855,cd49da14-43bf-4e02-bcd9-189c10e9eb80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33850,85e5d33e-b5bd-468d-8b84-79225dbbbf71,LIST_ACCOUNTS,hbciListAccounts,false +33851,85e5d33e-b5bd-468d-8b84-79225dbbbf71,LIST_TRANSACTIONS,hbciListTransactions,false +33852,85e5d33e-b5bd-468d-8b84-79225dbbbf71,AUTHORIZATION,,false +33853,85e5d33e-b5bd-468d-8b84-79225dbbbf71,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33854,85e5d33e-b5bd-468d-8b84-79225dbbbf71,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33855,85e5d33e-b5bd-468d-8b84-79225dbbbf71,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33856,9208054b-cca1-446f-8e04-c44047e3a19d,LIST_ACCOUNTS,xs2aListAccounts,true -33857,9208054b-cca1-446f-8e04-c44047e3a19d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33857,9208054b-cca1-446f-8e04-c44047e3a19d,LIST_TRANSACTIONS,xs2aListTransactions,true 33858,9208054b-cca1-446f-8e04-c44047e3a19d,AUTHORIZATION,,true 33859,9208054b-cca1-446f-8e04-c44047e3a19d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33860,9208054b-cca1-446f-8e04-c44047e3a19d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33861,9208054b-cca1-446f-8e04-c44047e3a19d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33862,2cea53f3-1fb6-4e5b-bbd1-d66318ac2e19,LIST_ACCOUNTS,hbciListAccounts,false -33863,2cea53f3-1fb6-4e5b-bbd1-d66318ac2e19,LIST_TRANSACTIONS,hbciListTransactions,false -33864,2cea53f3-1fb6-4e5b-bbd1-d66318ac2e19,AUTHORIZATION,,false -33865,2cea53f3-1fb6-4e5b-bbd1-d66318ac2e19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33866,2cea53f3-1fb6-4e5b-bbd1-d66318ac2e19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33867,2cea53f3-1fb6-4e5b-bbd1-d66318ac2e19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33862,07b5d55c-a444-4ff3-ab58-4888cfde2e9a,LIST_ACCOUNTS,hbciListAccounts,false +33863,07b5d55c-a444-4ff3-ab58-4888cfde2e9a,LIST_TRANSACTIONS,hbciListTransactions,false +33864,07b5d55c-a444-4ff3-ab58-4888cfde2e9a,AUTHORIZATION,,false +33865,07b5d55c-a444-4ff3-ab58-4888cfde2e9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33866,07b5d55c-a444-4ff3-ab58-4888cfde2e9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33867,07b5d55c-a444-4ff3-ab58-4888cfde2e9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33868,21ebe48a-545d-4854-b518-72415f7409d2,LIST_ACCOUNTS,xs2aListAccounts,true -33869,21ebe48a-545d-4854-b518-72415f7409d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33869,21ebe48a-545d-4854-b518-72415f7409d2,LIST_TRANSACTIONS,xs2aListTransactions,true 33870,21ebe48a-545d-4854-b518-72415f7409d2,AUTHORIZATION,,true 33871,21ebe48a-545d-4854-b518-72415f7409d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33872,21ebe48a-545d-4854-b518-72415f7409d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33873,21ebe48a-545d-4854-b518-72415f7409d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33874,d32409fd-9499-4620-b5e4-497c7413fb1f,LIST_ACCOUNTS,hbciListAccounts,false -33875,d32409fd-9499-4620-b5e4-497c7413fb1f,LIST_TRANSACTIONS,hbciListTransactions,false -33876,d32409fd-9499-4620-b5e4-497c7413fb1f,AUTHORIZATION,,false -33877,d32409fd-9499-4620-b5e4-497c7413fb1f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33878,d32409fd-9499-4620-b5e4-497c7413fb1f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33879,d32409fd-9499-4620-b5e4-497c7413fb1f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33874,d523c372-3b51-4ef3-ad4c-1909f13fb6ad,LIST_ACCOUNTS,hbciListAccounts,false +33875,d523c372-3b51-4ef3-ad4c-1909f13fb6ad,LIST_TRANSACTIONS,hbciListTransactions,false +33876,d523c372-3b51-4ef3-ad4c-1909f13fb6ad,AUTHORIZATION,,false +33877,d523c372-3b51-4ef3-ad4c-1909f13fb6ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33878,d523c372-3b51-4ef3-ad4c-1909f13fb6ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33879,d523c372-3b51-4ef3-ad4c-1909f13fb6ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33880,fb57efe9-0025-4c33-aeab-7bcf74c49746,LIST_ACCOUNTS,xs2aListAccounts,true -33881,fb57efe9-0025-4c33-aeab-7bcf74c49746,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33881,fb57efe9-0025-4c33-aeab-7bcf74c49746,LIST_TRANSACTIONS,xs2aListTransactions,true 33882,fb57efe9-0025-4c33-aeab-7bcf74c49746,AUTHORIZATION,,true 33883,fb57efe9-0025-4c33-aeab-7bcf74c49746,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33884,fb57efe9-0025-4c33-aeab-7bcf74c49746,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33885,fb57efe9-0025-4c33-aeab-7bcf74c49746,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33886,078cf98d-fcad-4f85-aeaf-13502322a23e,LIST_ACCOUNTS,hbciListAccounts,false -33887,078cf98d-fcad-4f85-aeaf-13502322a23e,LIST_TRANSACTIONS,hbciListTransactions,false -33888,078cf98d-fcad-4f85-aeaf-13502322a23e,AUTHORIZATION,,false -33889,078cf98d-fcad-4f85-aeaf-13502322a23e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33890,078cf98d-fcad-4f85-aeaf-13502322a23e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33891,078cf98d-fcad-4f85-aeaf-13502322a23e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33886,afe35b0d-09be-4a19-ac0a-e0d15d135869,LIST_ACCOUNTS,hbciListAccounts,false +33887,afe35b0d-09be-4a19-ac0a-e0d15d135869,LIST_TRANSACTIONS,hbciListTransactions,false +33888,afe35b0d-09be-4a19-ac0a-e0d15d135869,AUTHORIZATION,,false +33889,afe35b0d-09be-4a19-ac0a-e0d15d135869,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33890,afe35b0d-09be-4a19-ac0a-e0d15d135869,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33891,afe35b0d-09be-4a19-ac0a-e0d15d135869,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33892,84440687-6be2-45a4-8d62-efe233f8635d,LIST_ACCOUNTS,xs2aListAccounts,true -33893,84440687-6be2-45a4-8d62-efe233f8635d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33893,84440687-6be2-45a4-8d62-efe233f8635d,LIST_TRANSACTIONS,xs2aListTransactions,true 33894,84440687-6be2-45a4-8d62-efe233f8635d,AUTHORIZATION,,true 33895,84440687-6be2-45a4-8d62-efe233f8635d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33896,84440687-6be2-45a4-8d62-efe233f8635d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33897,84440687-6be2-45a4-8d62-efe233f8635d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33898,e0be4a06-08ee-4d9d-878c-03f1f583e333,LIST_ACCOUNTS,hbciListAccounts,false -33899,e0be4a06-08ee-4d9d-878c-03f1f583e333,LIST_TRANSACTIONS,hbciListTransactions,false -33900,e0be4a06-08ee-4d9d-878c-03f1f583e333,AUTHORIZATION,,false -33901,e0be4a06-08ee-4d9d-878c-03f1f583e333,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33902,e0be4a06-08ee-4d9d-878c-03f1f583e333,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33903,e0be4a06-08ee-4d9d-878c-03f1f583e333,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33898,b2ba4d2a-a659-470a-abe6-ad14480f966d,LIST_ACCOUNTS,hbciListAccounts,false +33899,b2ba4d2a-a659-470a-abe6-ad14480f966d,LIST_TRANSACTIONS,hbciListTransactions,false +33900,b2ba4d2a-a659-470a-abe6-ad14480f966d,AUTHORIZATION,,false +33901,b2ba4d2a-a659-470a-abe6-ad14480f966d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33902,b2ba4d2a-a659-470a-abe6-ad14480f966d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33903,b2ba4d2a-a659-470a-abe6-ad14480f966d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33904,abbf5c7b-3597-4206-909f-ca0a766a1c51,LIST_ACCOUNTS,xs2aListAccounts,true -33905,abbf5c7b-3597-4206-909f-ca0a766a1c51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33905,abbf5c7b-3597-4206-909f-ca0a766a1c51,LIST_TRANSACTIONS,xs2aListTransactions,true 33906,abbf5c7b-3597-4206-909f-ca0a766a1c51,AUTHORIZATION,,true 33907,abbf5c7b-3597-4206-909f-ca0a766a1c51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33908,abbf5c7b-3597-4206-909f-ca0a766a1c51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33909,abbf5c7b-3597-4206-909f-ca0a766a1c51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33910,9e4d938b-1936-4dc5-a533-dd9c32f68951,LIST_ACCOUNTS,hbciListAccounts,false -33911,9e4d938b-1936-4dc5-a533-dd9c32f68951,LIST_TRANSACTIONS,hbciListTransactions,false -33912,9e4d938b-1936-4dc5-a533-dd9c32f68951,AUTHORIZATION,,false -33913,9e4d938b-1936-4dc5-a533-dd9c32f68951,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33914,9e4d938b-1936-4dc5-a533-dd9c32f68951,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33915,9e4d938b-1936-4dc5-a533-dd9c32f68951,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33910,2cdda97f-983f-44f3-9815-ce6cc7216d65,LIST_ACCOUNTS,hbciListAccounts,false +33911,2cdda97f-983f-44f3-9815-ce6cc7216d65,LIST_TRANSACTIONS,hbciListTransactions,false +33912,2cdda97f-983f-44f3-9815-ce6cc7216d65,AUTHORIZATION,,false +33913,2cdda97f-983f-44f3-9815-ce6cc7216d65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33914,2cdda97f-983f-44f3-9815-ce6cc7216d65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33915,2cdda97f-983f-44f3-9815-ce6cc7216d65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33916,91466893-b896-4682-8edd-10ca0c552758,LIST_ACCOUNTS,xs2aListAccounts,true -33917,91466893-b896-4682-8edd-10ca0c552758,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33917,91466893-b896-4682-8edd-10ca0c552758,LIST_TRANSACTIONS,xs2aListTransactions,true 33918,91466893-b896-4682-8edd-10ca0c552758,AUTHORIZATION,,true 33919,91466893-b896-4682-8edd-10ca0c552758,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33920,91466893-b896-4682-8edd-10ca0c552758,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33921,91466893-b896-4682-8edd-10ca0c552758,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33922,9399cc26-eb06-4fbd-b0b7-d14bb07fe50f,LIST_ACCOUNTS,hbciListAccounts,false -33923,9399cc26-eb06-4fbd-b0b7-d14bb07fe50f,LIST_TRANSACTIONS,hbciListTransactions,false -33924,9399cc26-eb06-4fbd-b0b7-d14bb07fe50f,AUTHORIZATION,,false -33925,9399cc26-eb06-4fbd-b0b7-d14bb07fe50f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33926,9399cc26-eb06-4fbd-b0b7-d14bb07fe50f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33927,9399cc26-eb06-4fbd-b0b7-d14bb07fe50f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33922,d70792c0-75ae-48d1-9bc8-d7279ed9b09f,LIST_ACCOUNTS,hbciListAccounts,false +33923,d70792c0-75ae-48d1-9bc8-d7279ed9b09f,LIST_TRANSACTIONS,hbciListTransactions,false +33924,d70792c0-75ae-48d1-9bc8-d7279ed9b09f,AUTHORIZATION,,false +33925,d70792c0-75ae-48d1-9bc8-d7279ed9b09f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33926,d70792c0-75ae-48d1-9bc8-d7279ed9b09f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33927,d70792c0-75ae-48d1-9bc8-d7279ed9b09f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33928,6a69f9ca-b80b-4c7f-8578-90060138657d,LIST_ACCOUNTS,xs2aListAccounts,true -33929,6a69f9ca-b80b-4c7f-8578-90060138657d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33929,6a69f9ca-b80b-4c7f-8578-90060138657d,LIST_TRANSACTIONS,xs2aListTransactions,true 33930,6a69f9ca-b80b-4c7f-8578-90060138657d,AUTHORIZATION,,true 33931,6a69f9ca-b80b-4c7f-8578-90060138657d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33932,6a69f9ca-b80b-4c7f-8578-90060138657d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33933,6a69f9ca-b80b-4c7f-8578-90060138657d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33934,aad32b61-a2ac-44b6-86db-bd67871820ca,LIST_ACCOUNTS,hbciListAccounts,false -33935,aad32b61-a2ac-44b6-86db-bd67871820ca,LIST_TRANSACTIONS,hbciListTransactions,false -33936,aad32b61-a2ac-44b6-86db-bd67871820ca,AUTHORIZATION,,false -33937,aad32b61-a2ac-44b6-86db-bd67871820ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33938,aad32b61-a2ac-44b6-86db-bd67871820ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33939,aad32b61-a2ac-44b6-86db-bd67871820ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33934,197b79de-178e-4236-879c-335e7795a92f,LIST_ACCOUNTS,hbciListAccounts,false +33935,197b79de-178e-4236-879c-335e7795a92f,LIST_TRANSACTIONS,hbciListTransactions,false +33936,197b79de-178e-4236-879c-335e7795a92f,AUTHORIZATION,,false +33937,197b79de-178e-4236-879c-335e7795a92f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33938,197b79de-178e-4236-879c-335e7795a92f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33939,197b79de-178e-4236-879c-335e7795a92f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33940,a65c2551-6bb4-473b-9ac7-3030b503da2f,LIST_ACCOUNTS,xs2aListAccounts,true -33941,a65c2551-6bb4-473b-9ac7-3030b503da2f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33941,a65c2551-6bb4-473b-9ac7-3030b503da2f,LIST_TRANSACTIONS,xs2aListTransactions,true 33942,a65c2551-6bb4-473b-9ac7-3030b503da2f,AUTHORIZATION,,true 33943,a65c2551-6bb4-473b-9ac7-3030b503da2f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33944,a65c2551-6bb4-473b-9ac7-3030b503da2f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33945,a65c2551-6bb4-473b-9ac7-3030b503da2f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33946,6301fdeb-7c44-45fe-92c2-a7e0c57d0770,LIST_ACCOUNTS,hbciListAccounts,false -33947,6301fdeb-7c44-45fe-92c2-a7e0c57d0770,LIST_TRANSACTIONS,hbciListTransactions,false -33948,6301fdeb-7c44-45fe-92c2-a7e0c57d0770,AUTHORIZATION,,false -33949,6301fdeb-7c44-45fe-92c2-a7e0c57d0770,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33950,6301fdeb-7c44-45fe-92c2-a7e0c57d0770,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33951,6301fdeb-7c44-45fe-92c2-a7e0c57d0770,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33946,5178a287-4640-457b-94ea-c6b23a7c1e84,LIST_ACCOUNTS,hbciListAccounts,false +33947,5178a287-4640-457b-94ea-c6b23a7c1e84,LIST_TRANSACTIONS,hbciListTransactions,false +33948,5178a287-4640-457b-94ea-c6b23a7c1e84,AUTHORIZATION,,false +33949,5178a287-4640-457b-94ea-c6b23a7c1e84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33950,5178a287-4640-457b-94ea-c6b23a7c1e84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33951,5178a287-4640-457b-94ea-c6b23a7c1e84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33952,d9fe22bf-f4d5-47b2-8004-e95359e1f00b,LIST_ACCOUNTS,xs2aListAccounts,true -33953,d9fe22bf-f4d5-47b2-8004-e95359e1f00b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33953,d9fe22bf-f4d5-47b2-8004-e95359e1f00b,LIST_TRANSACTIONS,xs2aListTransactions,true 33954,d9fe22bf-f4d5-47b2-8004-e95359e1f00b,AUTHORIZATION,,true 33955,d9fe22bf-f4d5-47b2-8004-e95359e1f00b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33956,d9fe22bf-f4d5-47b2-8004-e95359e1f00b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33957,d9fe22bf-f4d5-47b2-8004-e95359e1f00b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33958,ce75ea61-cda1-4ed4-8a8a-9b0263df3762,LIST_ACCOUNTS,hbciListAccounts,false -33959,ce75ea61-cda1-4ed4-8a8a-9b0263df3762,LIST_TRANSACTIONS,hbciListTransactions,false -33960,ce75ea61-cda1-4ed4-8a8a-9b0263df3762,AUTHORIZATION,,false -33961,ce75ea61-cda1-4ed4-8a8a-9b0263df3762,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33962,ce75ea61-cda1-4ed4-8a8a-9b0263df3762,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33963,ce75ea61-cda1-4ed4-8a8a-9b0263df3762,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33958,3ce51d8d-b3b0-47f8-b236-3033dc60346c,LIST_ACCOUNTS,hbciListAccounts,false +33959,3ce51d8d-b3b0-47f8-b236-3033dc60346c,LIST_TRANSACTIONS,hbciListTransactions,false +33960,3ce51d8d-b3b0-47f8-b236-3033dc60346c,AUTHORIZATION,,false +33961,3ce51d8d-b3b0-47f8-b236-3033dc60346c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33962,3ce51d8d-b3b0-47f8-b236-3033dc60346c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33963,3ce51d8d-b3b0-47f8-b236-3033dc60346c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33964,7b2bb7c1-54a0-432d-b535-bafb02d63693,LIST_ACCOUNTS,xs2aListAccounts,true -33965,7b2bb7c1-54a0-432d-b535-bafb02d63693,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33965,7b2bb7c1-54a0-432d-b535-bafb02d63693,LIST_TRANSACTIONS,xs2aListTransactions,true 33966,7b2bb7c1-54a0-432d-b535-bafb02d63693,AUTHORIZATION,,true 33967,7b2bb7c1-54a0-432d-b535-bafb02d63693,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33968,7b2bb7c1-54a0-432d-b535-bafb02d63693,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33969,7b2bb7c1-54a0-432d-b535-bafb02d63693,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33970,a16b73df-5222-4ea5-9bad-b075d2cf79c8,LIST_ACCOUNTS,hbciListAccounts,false -33971,a16b73df-5222-4ea5-9bad-b075d2cf79c8,LIST_TRANSACTIONS,hbciListTransactions,false -33972,a16b73df-5222-4ea5-9bad-b075d2cf79c8,AUTHORIZATION,,false -33973,a16b73df-5222-4ea5-9bad-b075d2cf79c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33974,a16b73df-5222-4ea5-9bad-b075d2cf79c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33975,a16b73df-5222-4ea5-9bad-b075d2cf79c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33970,cc2aaccc-d0db-4fa7-9454-b3acccc793bb,LIST_ACCOUNTS,hbciListAccounts,false +33971,cc2aaccc-d0db-4fa7-9454-b3acccc793bb,LIST_TRANSACTIONS,hbciListTransactions,false +33972,cc2aaccc-d0db-4fa7-9454-b3acccc793bb,AUTHORIZATION,,false +33973,cc2aaccc-d0db-4fa7-9454-b3acccc793bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33974,cc2aaccc-d0db-4fa7-9454-b3acccc793bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33975,cc2aaccc-d0db-4fa7-9454-b3acccc793bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33976,e9ba905e-ad93-4920-a047-870b31069fa7,LIST_ACCOUNTS,xs2aListAccounts,true -33977,e9ba905e-ad93-4920-a047-870b31069fa7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33977,e9ba905e-ad93-4920-a047-870b31069fa7,LIST_TRANSACTIONS,xs2aListTransactions,true 33978,e9ba905e-ad93-4920-a047-870b31069fa7,AUTHORIZATION,,true 33979,e9ba905e-ad93-4920-a047-870b31069fa7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33980,e9ba905e-ad93-4920-a047-870b31069fa7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33981,e9ba905e-ad93-4920-a047-870b31069fa7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33982,d8abf524-407f-47b8-a63a-ed4cd80de15b,LIST_ACCOUNTS,hbciListAccounts,false -33983,d8abf524-407f-47b8-a63a-ed4cd80de15b,LIST_TRANSACTIONS,hbciListTransactions,false -33984,d8abf524-407f-47b8-a63a-ed4cd80de15b,AUTHORIZATION,,false -33985,d8abf524-407f-47b8-a63a-ed4cd80de15b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33986,d8abf524-407f-47b8-a63a-ed4cd80de15b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33987,d8abf524-407f-47b8-a63a-ed4cd80de15b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33982,f486425d-214a-4ee5-87d3-ca3759988115,LIST_ACCOUNTS,hbciListAccounts,false +33983,f486425d-214a-4ee5-87d3-ca3759988115,LIST_TRANSACTIONS,hbciListTransactions,false +33984,f486425d-214a-4ee5-87d3-ca3759988115,AUTHORIZATION,,false +33985,f486425d-214a-4ee5-87d3-ca3759988115,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33986,f486425d-214a-4ee5-87d3-ca3759988115,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33987,f486425d-214a-4ee5-87d3-ca3759988115,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 33988,24e870d5-205d-4467-9126-b36e6d549e58,LIST_ACCOUNTS,xs2aListAccounts,true -33989,24e870d5-205d-4467-9126-b36e6d549e58,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +33989,24e870d5-205d-4467-9126-b36e6d549e58,LIST_TRANSACTIONS,xs2aListTransactions,true 33990,24e870d5-205d-4467-9126-b36e6d549e58,AUTHORIZATION,,true 33991,24e870d5-205d-4467-9126-b36e6d549e58,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 33992,24e870d5-205d-4467-9126-b36e6d549e58,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 33993,24e870d5-205d-4467-9126-b36e6d549e58,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -33994,6f00239f-0bc7-415e-95be-e25a7aea6c21,LIST_ACCOUNTS,hbciListAccounts,false -33995,6f00239f-0bc7-415e-95be-e25a7aea6c21,LIST_TRANSACTIONS,hbciListTransactions,false -33996,6f00239f-0bc7-415e-95be-e25a7aea6c21,AUTHORIZATION,,false -33997,6f00239f-0bc7-415e-95be-e25a7aea6c21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -33998,6f00239f-0bc7-415e-95be-e25a7aea6c21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -33999,6f00239f-0bc7-415e-95be-e25a7aea6c21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +33994,208aacf4-d8ca-4ced-b55b-71acf67b25bf,LIST_ACCOUNTS,hbciListAccounts,false +33995,208aacf4-d8ca-4ced-b55b-71acf67b25bf,LIST_TRANSACTIONS,hbciListTransactions,false +33996,208aacf4-d8ca-4ced-b55b-71acf67b25bf,AUTHORIZATION,,false +33997,208aacf4-d8ca-4ced-b55b-71acf67b25bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +33998,208aacf4-d8ca-4ced-b55b-71acf67b25bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +33999,208aacf4-d8ca-4ced-b55b-71acf67b25bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34000,4113780e-2705-460e-9a3a-1aeab4312fc8,LIST_ACCOUNTS,xs2aListAccounts,true -34001,4113780e-2705-460e-9a3a-1aeab4312fc8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34001,4113780e-2705-460e-9a3a-1aeab4312fc8,LIST_TRANSACTIONS,xs2aListTransactions,true 34002,4113780e-2705-460e-9a3a-1aeab4312fc8,AUTHORIZATION,,true 34003,4113780e-2705-460e-9a3a-1aeab4312fc8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34004,4113780e-2705-460e-9a3a-1aeab4312fc8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34005,4113780e-2705-460e-9a3a-1aeab4312fc8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34006,b58b468b-aa8a-479c-bd23-95519db6d2d9,LIST_ACCOUNTS,hbciListAccounts,false -34007,b58b468b-aa8a-479c-bd23-95519db6d2d9,LIST_TRANSACTIONS,hbciListTransactions,false -34008,b58b468b-aa8a-479c-bd23-95519db6d2d9,AUTHORIZATION,,false -34009,b58b468b-aa8a-479c-bd23-95519db6d2d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34010,b58b468b-aa8a-479c-bd23-95519db6d2d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34011,b58b468b-aa8a-479c-bd23-95519db6d2d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34006,a5590751-87b0-468e-a169-83e3a909aa32,LIST_ACCOUNTS,hbciListAccounts,false +34007,a5590751-87b0-468e-a169-83e3a909aa32,LIST_TRANSACTIONS,hbciListTransactions,false +34008,a5590751-87b0-468e-a169-83e3a909aa32,AUTHORIZATION,,false +34009,a5590751-87b0-468e-a169-83e3a909aa32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34010,a5590751-87b0-468e-a169-83e3a909aa32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34011,a5590751-87b0-468e-a169-83e3a909aa32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34012,5fe41654-051e-4ab7-90c8-3fddab50f580,LIST_ACCOUNTS,xs2aListAccounts,true -34013,5fe41654-051e-4ab7-90c8-3fddab50f580,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34013,5fe41654-051e-4ab7-90c8-3fddab50f580,LIST_TRANSACTIONS,xs2aListTransactions,true 34014,5fe41654-051e-4ab7-90c8-3fddab50f580,AUTHORIZATION,,true 34015,5fe41654-051e-4ab7-90c8-3fddab50f580,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34016,5fe41654-051e-4ab7-90c8-3fddab50f580,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34017,5fe41654-051e-4ab7-90c8-3fddab50f580,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34018,0a8d1c40-6360-4e0b-ae13-fc3748004e3f,LIST_ACCOUNTS,hbciListAccounts,false -34019,0a8d1c40-6360-4e0b-ae13-fc3748004e3f,LIST_TRANSACTIONS,hbciListTransactions,false -34020,0a8d1c40-6360-4e0b-ae13-fc3748004e3f,AUTHORIZATION,,false -34021,0a8d1c40-6360-4e0b-ae13-fc3748004e3f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34022,0a8d1c40-6360-4e0b-ae13-fc3748004e3f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34023,0a8d1c40-6360-4e0b-ae13-fc3748004e3f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34018,07ac835a-5f13-4cfe-aed8-3688ef438f6c,LIST_ACCOUNTS,hbciListAccounts,false +34019,07ac835a-5f13-4cfe-aed8-3688ef438f6c,LIST_TRANSACTIONS,hbciListTransactions,false +34020,07ac835a-5f13-4cfe-aed8-3688ef438f6c,AUTHORIZATION,,false +34021,07ac835a-5f13-4cfe-aed8-3688ef438f6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34022,07ac835a-5f13-4cfe-aed8-3688ef438f6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34023,07ac835a-5f13-4cfe-aed8-3688ef438f6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34024,e8a339b3-a33f-4833-9bd7-3948df75fbfe,LIST_ACCOUNTS,xs2aListAccounts,true -34025,e8a339b3-a33f-4833-9bd7-3948df75fbfe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34025,e8a339b3-a33f-4833-9bd7-3948df75fbfe,LIST_TRANSACTIONS,xs2aListTransactions,true 34026,e8a339b3-a33f-4833-9bd7-3948df75fbfe,AUTHORIZATION,,true 34027,e8a339b3-a33f-4833-9bd7-3948df75fbfe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34028,e8a339b3-a33f-4833-9bd7-3948df75fbfe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34029,e8a339b3-a33f-4833-9bd7-3948df75fbfe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34030,1fdfb608-8c5d-4276-84f3-2d50f0be2e5f,LIST_ACCOUNTS,hbciListAccounts,false -34031,1fdfb608-8c5d-4276-84f3-2d50f0be2e5f,LIST_TRANSACTIONS,hbciListTransactions,false -34032,1fdfb608-8c5d-4276-84f3-2d50f0be2e5f,AUTHORIZATION,,false -34033,1fdfb608-8c5d-4276-84f3-2d50f0be2e5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34034,1fdfb608-8c5d-4276-84f3-2d50f0be2e5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34035,1fdfb608-8c5d-4276-84f3-2d50f0be2e5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34030,c073a541-47c7-4d21-bd7f-c0111e229dce,LIST_ACCOUNTS,hbciListAccounts,false +34031,c073a541-47c7-4d21-bd7f-c0111e229dce,LIST_TRANSACTIONS,hbciListTransactions,false +34032,c073a541-47c7-4d21-bd7f-c0111e229dce,AUTHORIZATION,,false +34033,c073a541-47c7-4d21-bd7f-c0111e229dce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34034,c073a541-47c7-4d21-bd7f-c0111e229dce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34035,c073a541-47c7-4d21-bd7f-c0111e229dce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34036,c63a0e4a-a9dd-426f-98b1-cb3f4bda6fe6,LIST_ACCOUNTS,xs2aListAccounts,true -34037,c63a0e4a-a9dd-426f-98b1-cb3f4bda6fe6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34037,c63a0e4a-a9dd-426f-98b1-cb3f4bda6fe6,LIST_TRANSACTIONS,xs2aListTransactions,true 34038,c63a0e4a-a9dd-426f-98b1-cb3f4bda6fe6,AUTHORIZATION,,true 34039,c63a0e4a-a9dd-426f-98b1-cb3f4bda6fe6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34040,c63a0e4a-a9dd-426f-98b1-cb3f4bda6fe6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34041,c63a0e4a-a9dd-426f-98b1-cb3f4bda6fe6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34042,1de6f25e-f10c-4dcd-be74-1f67b84a1874,LIST_ACCOUNTS,hbciListAccounts,false -34043,1de6f25e-f10c-4dcd-be74-1f67b84a1874,LIST_TRANSACTIONS,hbciListTransactions,false -34044,1de6f25e-f10c-4dcd-be74-1f67b84a1874,AUTHORIZATION,,false -34045,1de6f25e-f10c-4dcd-be74-1f67b84a1874,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34046,1de6f25e-f10c-4dcd-be74-1f67b84a1874,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34047,1de6f25e-f10c-4dcd-be74-1f67b84a1874,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34042,f0ba2677-af56-4788-b869-5eed16c1bb27,LIST_ACCOUNTS,hbciListAccounts,false +34043,f0ba2677-af56-4788-b869-5eed16c1bb27,LIST_TRANSACTIONS,hbciListTransactions,false +34044,f0ba2677-af56-4788-b869-5eed16c1bb27,AUTHORIZATION,,false +34045,f0ba2677-af56-4788-b869-5eed16c1bb27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34046,f0ba2677-af56-4788-b869-5eed16c1bb27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34047,f0ba2677-af56-4788-b869-5eed16c1bb27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34048,69a901a7-7489-444c-9b14-106ad1835548,LIST_ACCOUNTS,xs2aListAccounts,true -34049,69a901a7-7489-444c-9b14-106ad1835548,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34049,69a901a7-7489-444c-9b14-106ad1835548,LIST_TRANSACTIONS,xs2aListTransactions,true 34050,69a901a7-7489-444c-9b14-106ad1835548,AUTHORIZATION,,true 34051,69a901a7-7489-444c-9b14-106ad1835548,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34052,69a901a7-7489-444c-9b14-106ad1835548,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34053,69a901a7-7489-444c-9b14-106ad1835548,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34054,2b0eb7b5-75c2-4d66-9332-1e110954dc03,LIST_ACCOUNTS,hbciListAccounts,false -34055,2b0eb7b5-75c2-4d66-9332-1e110954dc03,LIST_TRANSACTIONS,hbciListTransactions,false -34056,2b0eb7b5-75c2-4d66-9332-1e110954dc03,AUTHORIZATION,,false -34057,2b0eb7b5-75c2-4d66-9332-1e110954dc03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34058,2b0eb7b5-75c2-4d66-9332-1e110954dc03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34059,2b0eb7b5-75c2-4d66-9332-1e110954dc03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34054,e44aa237-d01c-4ba8-8199-73bc2e7f030b,LIST_ACCOUNTS,hbciListAccounts,false +34055,e44aa237-d01c-4ba8-8199-73bc2e7f030b,LIST_TRANSACTIONS,hbciListTransactions,false +34056,e44aa237-d01c-4ba8-8199-73bc2e7f030b,AUTHORIZATION,,false +34057,e44aa237-d01c-4ba8-8199-73bc2e7f030b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34058,e44aa237-d01c-4ba8-8199-73bc2e7f030b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34059,e44aa237-d01c-4ba8-8199-73bc2e7f030b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34060,0414650d-05a7-4f9d-bd8b-91f699bad073,LIST_ACCOUNTS,xs2aListAccounts,true -34061,0414650d-05a7-4f9d-bd8b-91f699bad073,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34061,0414650d-05a7-4f9d-bd8b-91f699bad073,LIST_TRANSACTIONS,xs2aListTransactions,true 34062,0414650d-05a7-4f9d-bd8b-91f699bad073,AUTHORIZATION,,true 34063,0414650d-05a7-4f9d-bd8b-91f699bad073,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34064,0414650d-05a7-4f9d-bd8b-91f699bad073,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34065,0414650d-05a7-4f9d-bd8b-91f699bad073,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34066,0c03d84d-9a55-446f-a194-df51979d05b5,LIST_ACCOUNTS,hbciListAccounts,false -34067,0c03d84d-9a55-446f-a194-df51979d05b5,LIST_TRANSACTIONS,hbciListTransactions,false -34068,0c03d84d-9a55-446f-a194-df51979d05b5,AUTHORIZATION,,false -34069,0c03d84d-9a55-446f-a194-df51979d05b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34070,0c03d84d-9a55-446f-a194-df51979d05b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34071,0c03d84d-9a55-446f-a194-df51979d05b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34066,f7b313c8-ec0c-4524-b181-4cde673689be,LIST_ACCOUNTS,hbciListAccounts,false +34067,f7b313c8-ec0c-4524-b181-4cde673689be,LIST_TRANSACTIONS,hbciListTransactions,false +34068,f7b313c8-ec0c-4524-b181-4cde673689be,AUTHORIZATION,,false +34069,f7b313c8-ec0c-4524-b181-4cde673689be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34070,f7b313c8-ec0c-4524-b181-4cde673689be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34071,f7b313c8-ec0c-4524-b181-4cde673689be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34072,a2094977-aab4-4891-a306-88e48f8181c2,LIST_ACCOUNTS,xs2aListAccounts,true -34073,a2094977-aab4-4891-a306-88e48f8181c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34073,a2094977-aab4-4891-a306-88e48f8181c2,LIST_TRANSACTIONS,xs2aListTransactions,true 34074,a2094977-aab4-4891-a306-88e48f8181c2,AUTHORIZATION,,true 34075,a2094977-aab4-4891-a306-88e48f8181c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34076,a2094977-aab4-4891-a306-88e48f8181c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34077,a2094977-aab4-4891-a306-88e48f8181c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34078,4a108ae6-b1e4-403c-a7e2-82eb9ad96352,LIST_ACCOUNTS,hbciListAccounts,false -34079,4a108ae6-b1e4-403c-a7e2-82eb9ad96352,LIST_TRANSACTIONS,hbciListTransactions,false -34080,4a108ae6-b1e4-403c-a7e2-82eb9ad96352,AUTHORIZATION,,false -34081,4a108ae6-b1e4-403c-a7e2-82eb9ad96352,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34082,4a108ae6-b1e4-403c-a7e2-82eb9ad96352,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34083,4a108ae6-b1e4-403c-a7e2-82eb9ad96352,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34078,038aff88-c1ac-4020-83b8-b470dc46aaba,LIST_ACCOUNTS,hbciListAccounts,false +34079,038aff88-c1ac-4020-83b8-b470dc46aaba,LIST_TRANSACTIONS,hbciListTransactions,false +34080,038aff88-c1ac-4020-83b8-b470dc46aaba,AUTHORIZATION,,false +34081,038aff88-c1ac-4020-83b8-b470dc46aaba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34082,038aff88-c1ac-4020-83b8-b470dc46aaba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34083,038aff88-c1ac-4020-83b8-b470dc46aaba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34084,ebc9baf0-cbfc-4868-9145-9ac75b5eeb0f,LIST_ACCOUNTS,xs2aListAccounts,true -34085,ebc9baf0-cbfc-4868-9145-9ac75b5eeb0f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34085,ebc9baf0-cbfc-4868-9145-9ac75b5eeb0f,LIST_TRANSACTIONS,xs2aListTransactions,true 34086,ebc9baf0-cbfc-4868-9145-9ac75b5eeb0f,AUTHORIZATION,,true 34087,ebc9baf0-cbfc-4868-9145-9ac75b5eeb0f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34088,ebc9baf0-cbfc-4868-9145-9ac75b5eeb0f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34089,ebc9baf0-cbfc-4868-9145-9ac75b5eeb0f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34090,a0f7b000-fb10-4477-ac80-21d22eb432ef,LIST_ACCOUNTS,hbciListAccounts,false -34091,a0f7b000-fb10-4477-ac80-21d22eb432ef,LIST_TRANSACTIONS,hbciListTransactions,false -34092,a0f7b000-fb10-4477-ac80-21d22eb432ef,AUTHORIZATION,,false -34093,a0f7b000-fb10-4477-ac80-21d22eb432ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34094,a0f7b000-fb10-4477-ac80-21d22eb432ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34095,a0f7b000-fb10-4477-ac80-21d22eb432ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34090,02cc69a3-a1aa-44d7-b032-315480c36d12,LIST_ACCOUNTS,hbciListAccounts,false +34091,02cc69a3-a1aa-44d7-b032-315480c36d12,LIST_TRANSACTIONS,hbciListTransactions,false +34092,02cc69a3-a1aa-44d7-b032-315480c36d12,AUTHORIZATION,,false +34093,02cc69a3-a1aa-44d7-b032-315480c36d12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34094,02cc69a3-a1aa-44d7-b032-315480c36d12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34095,02cc69a3-a1aa-44d7-b032-315480c36d12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34096,5994b5e2-026b-4eb2-8a61-93832d08f7bd,LIST_ACCOUNTS,xs2aListAccounts,true -34097,5994b5e2-026b-4eb2-8a61-93832d08f7bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34097,5994b5e2-026b-4eb2-8a61-93832d08f7bd,LIST_TRANSACTIONS,xs2aListTransactions,true 34098,5994b5e2-026b-4eb2-8a61-93832d08f7bd,AUTHORIZATION,,true 34099,5994b5e2-026b-4eb2-8a61-93832d08f7bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34100,5994b5e2-026b-4eb2-8a61-93832d08f7bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34101,5994b5e2-026b-4eb2-8a61-93832d08f7bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34102,57ea1aa1-f088-4451-944f-08d5db89380e,LIST_ACCOUNTS,hbciListAccounts,false -34103,57ea1aa1-f088-4451-944f-08d5db89380e,LIST_TRANSACTIONS,hbciListTransactions,false -34104,57ea1aa1-f088-4451-944f-08d5db89380e,AUTHORIZATION,,false -34105,57ea1aa1-f088-4451-944f-08d5db89380e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34106,57ea1aa1-f088-4451-944f-08d5db89380e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34107,57ea1aa1-f088-4451-944f-08d5db89380e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34102,3ae86fd2-9cb4-4913-a05f-6b1576cd4019,LIST_ACCOUNTS,hbciListAccounts,false +34103,3ae86fd2-9cb4-4913-a05f-6b1576cd4019,LIST_TRANSACTIONS,hbciListTransactions,false +34104,3ae86fd2-9cb4-4913-a05f-6b1576cd4019,AUTHORIZATION,,false +34105,3ae86fd2-9cb4-4913-a05f-6b1576cd4019,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34106,3ae86fd2-9cb4-4913-a05f-6b1576cd4019,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34107,3ae86fd2-9cb4-4913-a05f-6b1576cd4019,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34108,2a74aebc-f648-47fe-bcd4-226ef54b70f1,LIST_ACCOUNTS,xs2aListAccounts,true -34109,2a74aebc-f648-47fe-bcd4-226ef54b70f1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34109,2a74aebc-f648-47fe-bcd4-226ef54b70f1,LIST_TRANSACTIONS,xs2aListTransactions,true 34110,2a74aebc-f648-47fe-bcd4-226ef54b70f1,AUTHORIZATION,,true 34111,2a74aebc-f648-47fe-bcd4-226ef54b70f1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34112,2a74aebc-f648-47fe-bcd4-226ef54b70f1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34113,2a74aebc-f648-47fe-bcd4-226ef54b70f1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34114,f09dad44-15a1-4d24-af1a-23301bf54a5b,LIST_ACCOUNTS,hbciListAccounts,false -34115,f09dad44-15a1-4d24-af1a-23301bf54a5b,LIST_TRANSACTIONS,hbciListTransactions,false -34116,f09dad44-15a1-4d24-af1a-23301bf54a5b,AUTHORIZATION,,false -34117,f09dad44-15a1-4d24-af1a-23301bf54a5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34118,f09dad44-15a1-4d24-af1a-23301bf54a5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34119,f09dad44-15a1-4d24-af1a-23301bf54a5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34114,b87de5a3-509f-430f-b537-759728823489,LIST_ACCOUNTS,hbciListAccounts,false +34115,b87de5a3-509f-430f-b537-759728823489,LIST_TRANSACTIONS,hbciListTransactions,false +34116,b87de5a3-509f-430f-b537-759728823489,AUTHORIZATION,,false +34117,b87de5a3-509f-430f-b537-759728823489,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34118,b87de5a3-509f-430f-b537-759728823489,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34119,b87de5a3-509f-430f-b537-759728823489,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34120,78ac9ed7-3bd8-4876-86fd-f2586946cc11,LIST_ACCOUNTS,xs2aListAccounts,true -34121,78ac9ed7-3bd8-4876-86fd-f2586946cc11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34121,78ac9ed7-3bd8-4876-86fd-f2586946cc11,LIST_TRANSACTIONS,xs2aListTransactions,true 34122,78ac9ed7-3bd8-4876-86fd-f2586946cc11,AUTHORIZATION,,true 34123,78ac9ed7-3bd8-4876-86fd-f2586946cc11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34124,78ac9ed7-3bd8-4876-86fd-f2586946cc11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34125,78ac9ed7-3bd8-4876-86fd-f2586946cc11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34126,1b35b89c-ba07-4741-a06c-e5e8129b4feb,LIST_ACCOUNTS,hbciListAccounts,false -34127,1b35b89c-ba07-4741-a06c-e5e8129b4feb,LIST_TRANSACTIONS,hbciListTransactions,false -34128,1b35b89c-ba07-4741-a06c-e5e8129b4feb,AUTHORIZATION,,false -34129,1b35b89c-ba07-4741-a06c-e5e8129b4feb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34130,1b35b89c-ba07-4741-a06c-e5e8129b4feb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34131,1b35b89c-ba07-4741-a06c-e5e8129b4feb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34126,dec4456a-95dd-4de3-ac18-931830c62135,LIST_ACCOUNTS,hbciListAccounts,false +34127,dec4456a-95dd-4de3-ac18-931830c62135,LIST_TRANSACTIONS,hbciListTransactions,false +34128,dec4456a-95dd-4de3-ac18-931830c62135,AUTHORIZATION,,false +34129,dec4456a-95dd-4de3-ac18-931830c62135,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34130,dec4456a-95dd-4de3-ac18-931830c62135,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34131,dec4456a-95dd-4de3-ac18-931830c62135,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34132,c1621ea3-79e6-4546-8b78-99d4ac26ca54,LIST_ACCOUNTS,xs2aListAccounts,true -34133,c1621ea3-79e6-4546-8b78-99d4ac26ca54,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34133,c1621ea3-79e6-4546-8b78-99d4ac26ca54,LIST_TRANSACTIONS,xs2aListTransactions,true 34134,c1621ea3-79e6-4546-8b78-99d4ac26ca54,AUTHORIZATION,,true 34135,c1621ea3-79e6-4546-8b78-99d4ac26ca54,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34136,c1621ea3-79e6-4546-8b78-99d4ac26ca54,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34137,c1621ea3-79e6-4546-8b78-99d4ac26ca54,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34138,11aef4fc-dfcf-4451-8b5f-938e86ed4948,LIST_ACCOUNTS,hbciListAccounts,false -34139,11aef4fc-dfcf-4451-8b5f-938e86ed4948,LIST_TRANSACTIONS,hbciListTransactions,false -34140,11aef4fc-dfcf-4451-8b5f-938e86ed4948,AUTHORIZATION,,false -34141,11aef4fc-dfcf-4451-8b5f-938e86ed4948,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34142,11aef4fc-dfcf-4451-8b5f-938e86ed4948,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34143,11aef4fc-dfcf-4451-8b5f-938e86ed4948,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34138,3326c0ab-f207-48db-89fd-293c7c0b5a11,LIST_ACCOUNTS,hbciListAccounts,false +34139,3326c0ab-f207-48db-89fd-293c7c0b5a11,LIST_TRANSACTIONS,hbciListTransactions,false +34140,3326c0ab-f207-48db-89fd-293c7c0b5a11,AUTHORIZATION,,false +34141,3326c0ab-f207-48db-89fd-293c7c0b5a11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34142,3326c0ab-f207-48db-89fd-293c7c0b5a11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34143,3326c0ab-f207-48db-89fd-293c7c0b5a11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34144,92786de5-2bbc-40d7-8377-38e281d594c7,LIST_ACCOUNTS,xs2aListAccounts,true -34145,92786de5-2bbc-40d7-8377-38e281d594c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34145,92786de5-2bbc-40d7-8377-38e281d594c7,LIST_TRANSACTIONS,xs2aListTransactions,true 34146,92786de5-2bbc-40d7-8377-38e281d594c7,AUTHORIZATION,,true 34147,92786de5-2bbc-40d7-8377-38e281d594c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34148,92786de5-2bbc-40d7-8377-38e281d594c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34149,92786de5-2bbc-40d7-8377-38e281d594c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34150,b5957a70-e4f6-496a-be77-4e35a36934f2,LIST_ACCOUNTS,hbciListAccounts,false -34151,b5957a70-e4f6-496a-be77-4e35a36934f2,LIST_TRANSACTIONS,hbciListTransactions,false -34152,b5957a70-e4f6-496a-be77-4e35a36934f2,AUTHORIZATION,,false -34153,b5957a70-e4f6-496a-be77-4e35a36934f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34154,b5957a70-e4f6-496a-be77-4e35a36934f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34155,b5957a70-e4f6-496a-be77-4e35a36934f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34150,78b2986b-2ad4-4979-aeaf-923d8ecb05a7,LIST_ACCOUNTS,hbciListAccounts,false +34151,78b2986b-2ad4-4979-aeaf-923d8ecb05a7,LIST_TRANSACTIONS,hbciListTransactions,false +34152,78b2986b-2ad4-4979-aeaf-923d8ecb05a7,AUTHORIZATION,,false +34153,78b2986b-2ad4-4979-aeaf-923d8ecb05a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34154,78b2986b-2ad4-4979-aeaf-923d8ecb05a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34155,78b2986b-2ad4-4979-aeaf-923d8ecb05a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34156,c6180f82-325c-44fd-bf5b-e029eded6652,LIST_ACCOUNTS,xs2aListAccounts,true -34157,c6180f82-325c-44fd-bf5b-e029eded6652,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34157,c6180f82-325c-44fd-bf5b-e029eded6652,LIST_TRANSACTIONS,xs2aListTransactions,true 34158,c6180f82-325c-44fd-bf5b-e029eded6652,AUTHORIZATION,,true 34159,c6180f82-325c-44fd-bf5b-e029eded6652,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34160,c6180f82-325c-44fd-bf5b-e029eded6652,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34161,c6180f82-325c-44fd-bf5b-e029eded6652,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34162,ff866b36-867c-4fb3-821e-a11d33dd1f9b,LIST_ACCOUNTS,hbciListAccounts,false -34163,ff866b36-867c-4fb3-821e-a11d33dd1f9b,LIST_TRANSACTIONS,hbciListTransactions,false -34164,ff866b36-867c-4fb3-821e-a11d33dd1f9b,AUTHORIZATION,,false -34165,ff866b36-867c-4fb3-821e-a11d33dd1f9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34166,ff866b36-867c-4fb3-821e-a11d33dd1f9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34167,ff866b36-867c-4fb3-821e-a11d33dd1f9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34162,2a46d650-97d2-475c-b00b-0283f8b20acd,LIST_ACCOUNTS,hbciListAccounts,false +34163,2a46d650-97d2-475c-b00b-0283f8b20acd,LIST_TRANSACTIONS,hbciListTransactions,false +34164,2a46d650-97d2-475c-b00b-0283f8b20acd,AUTHORIZATION,,false +34165,2a46d650-97d2-475c-b00b-0283f8b20acd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34166,2a46d650-97d2-475c-b00b-0283f8b20acd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34167,2a46d650-97d2-475c-b00b-0283f8b20acd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34168,2d652c7a-948e-45c5-a9c8-b24a8243e195,LIST_ACCOUNTS,xs2aListAccounts,true -34169,2d652c7a-948e-45c5-a9c8-b24a8243e195,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34169,2d652c7a-948e-45c5-a9c8-b24a8243e195,LIST_TRANSACTIONS,xs2aListTransactions,true 34170,2d652c7a-948e-45c5-a9c8-b24a8243e195,AUTHORIZATION,,true 34171,2d652c7a-948e-45c5-a9c8-b24a8243e195,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34172,2d652c7a-948e-45c5-a9c8-b24a8243e195,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34173,2d652c7a-948e-45c5-a9c8-b24a8243e195,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34174,eaef8e44-cbb4-4e32-bd8b-2d6045b813e2,LIST_ACCOUNTS,hbciListAccounts,false -34175,eaef8e44-cbb4-4e32-bd8b-2d6045b813e2,LIST_TRANSACTIONS,hbciListTransactions,false -34176,eaef8e44-cbb4-4e32-bd8b-2d6045b813e2,AUTHORIZATION,,false -34177,eaef8e44-cbb4-4e32-bd8b-2d6045b813e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34178,eaef8e44-cbb4-4e32-bd8b-2d6045b813e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34179,eaef8e44-cbb4-4e32-bd8b-2d6045b813e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34174,c8f0e6ce-62c1-4d59-ba94-ec5c6af875ba,LIST_ACCOUNTS,hbciListAccounts,false +34175,c8f0e6ce-62c1-4d59-ba94-ec5c6af875ba,LIST_TRANSACTIONS,hbciListTransactions,false +34176,c8f0e6ce-62c1-4d59-ba94-ec5c6af875ba,AUTHORIZATION,,false +34177,c8f0e6ce-62c1-4d59-ba94-ec5c6af875ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34178,c8f0e6ce-62c1-4d59-ba94-ec5c6af875ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34179,c8f0e6ce-62c1-4d59-ba94-ec5c6af875ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34180,d21d0112-7864-474f-a147-f29b82b6bb98,LIST_ACCOUNTS,xs2aListAccounts,true -34181,d21d0112-7864-474f-a147-f29b82b6bb98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34181,d21d0112-7864-474f-a147-f29b82b6bb98,LIST_TRANSACTIONS,xs2aListTransactions,true 34182,d21d0112-7864-474f-a147-f29b82b6bb98,AUTHORIZATION,,true 34183,d21d0112-7864-474f-a147-f29b82b6bb98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34184,d21d0112-7864-474f-a147-f29b82b6bb98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34185,d21d0112-7864-474f-a147-f29b82b6bb98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34186,d4feab35-5d66-40c6-931e-4f40219e523d,LIST_ACCOUNTS,hbciListAccounts,false -34187,d4feab35-5d66-40c6-931e-4f40219e523d,LIST_TRANSACTIONS,hbciListTransactions,false -34188,d4feab35-5d66-40c6-931e-4f40219e523d,AUTHORIZATION,,false -34189,d4feab35-5d66-40c6-931e-4f40219e523d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34190,d4feab35-5d66-40c6-931e-4f40219e523d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34191,d4feab35-5d66-40c6-931e-4f40219e523d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34186,7ef60ab1-3b23-4f58-9800-648842e4d169,LIST_ACCOUNTS,hbciListAccounts,false +34187,7ef60ab1-3b23-4f58-9800-648842e4d169,LIST_TRANSACTIONS,hbciListTransactions,false +34188,7ef60ab1-3b23-4f58-9800-648842e4d169,AUTHORIZATION,,false +34189,7ef60ab1-3b23-4f58-9800-648842e4d169,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34190,7ef60ab1-3b23-4f58-9800-648842e4d169,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34191,7ef60ab1-3b23-4f58-9800-648842e4d169,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34192,d18a9b9f-228a-4f7e-b8eb-832d8c1ce9eb,LIST_ACCOUNTS,xs2aListAccounts,true -34193,d18a9b9f-228a-4f7e-b8eb-832d8c1ce9eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34193,d18a9b9f-228a-4f7e-b8eb-832d8c1ce9eb,LIST_TRANSACTIONS,xs2aListTransactions,true 34194,d18a9b9f-228a-4f7e-b8eb-832d8c1ce9eb,AUTHORIZATION,,true 34195,d18a9b9f-228a-4f7e-b8eb-832d8c1ce9eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34196,d18a9b9f-228a-4f7e-b8eb-832d8c1ce9eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34197,d18a9b9f-228a-4f7e-b8eb-832d8c1ce9eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34198,52121046-301f-4215-bd2f-acf1138926ba,LIST_ACCOUNTS,hbciListAccounts,false -34199,52121046-301f-4215-bd2f-acf1138926ba,LIST_TRANSACTIONS,hbciListTransactions,false -34200,52121046-301f-4215-bd2f-acf1138926ba,AUTHORIZATION,,false -34201,52121046-301f-4215-bd2f-acf1138926ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34202,52121046-301f-4215-bd2f-acf1138926ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34203,52121046-301f-4215-bd2f-acf1138926ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34198,986655c9-8648-46d8-a6c6-ca98133881d4,LIST_ACCOUNTS,hbciListAccounts,false +34199,986655c9-8648-46d8-a6c6-ca98133881d4,LIST_TRANSACTIONS,hbciListTransactions,false +34200,986655c9-8648-46d8-a6c6-ca98133881d4,AUTHORIZATION,,false +34201,986655c9-8648-46d8-a6c6-ca98133881d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34202,986655c9-8648-46d8-a6c6-ca98133881d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34203,986655c9-8648-46d8-a6c6-ca98133881d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34204,3984ba6b-88ea-473a-b212-2133674a9f34,LIST_ACCOUNTS,xs2aListAccounts,true -34205,3984ba6b-88ea-473a-b212-2133674a9f34,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34205,3984ba6b-88ea-473a-b212-2133674a9f34,LIST_TRANSACTIONS,xs2aListTransactions,true 34206,3984ba6b-88ea-473a-b212-2133674a9f34,AUTHORIZATION,,true 34207,3984ba6b-88ea-473a-b212-2133674a9f34,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34208,3984ba6b-88ea-473a-b212-2133674a9f34,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34209,3984ba6b-88ea-473a-b212-2133674a9f34,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34210,10c80ddd-90f4-4d75-bda4-f9705d1bb071,LIST_ACCOUNTS,hbciListAccounts,false -34211,10c80ddd-90f4-4d75-bda4-f9705d1bb071,LIST_TRANSACTIONS,hbciListTransactions,false -34212,10c80ddd-90f4-4d75-bda4-f9705d1bb071,AUTHORIZATION,,false -34213,10c80ddd-90f4-4d75-bda4-f9705d1bb071,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34214,10c80ddd-90f4-4d75-bda4-f9705d1bb071,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34215,10c80ddd-90f4-4d75-bda4-f9705d1bb071,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34210,803b7d70-ebe8-41ba-94cf-e3f6a85b7bb9,LIST_ACCOUNTS,hbciListAccounts,false +34211,803b7d70-ebe8-41ba-94cf-e3f6a85b7bb9,LIST_TRANSACTIONS,hbciListTransactions,false +34212,803b7d70-ebe8-41ba-94cf-e3f6a85b7bb9,AUTHORIZATION,,false +34213,803b7d70-ebe8-41ba-94cf-e3f6a85b7bb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34214,803b7d70-ebe8-41ba-94cf-e3f6a85b7bb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34215,803b7d70-ebe8-41ba-94cf-e3f6a85b7bb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34216,57af5b23-3c06-46fb-a3c1-679dbc97a828,LIST_ACCOUNTS,xs2aListAccounts,true -34217,57af5b23-3c06-46fb-a3c1-679dbc97a828,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34217,57af5b23-3c06-46fb-a3c1-679dbc97a828,LIST_TRANSACTIONS,xs2aListTransactions,true 34218,57af5b23-3c06-46fb-a3c1-679dbc97a828,AUTHORIZATION,,true 34219,57af5b23-3c06-46fb-a3c1-679dbc97a828,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34220,57af5b23-3c06-46fb-a3c1-679dbc97a828,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34221,57af5b23-3c06-46fb-a3c1-679dbc97a828,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34222,d526710d-e183-4411-92f2-b139b85d69bc,LIST_ACCOUNTS,hbciListAccounts,false -34223,d526710d-e183-4411-92f2-b139b85d69bc,LIST_TRANSACTIONS,hbciListTransactions,false -34224,d526710d-e183-4411-92f2-b139b85d69bc,AUTHORIZATION,,false -34225,d526710d-e183-4411-92f2-b139b85d69bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34226,d526710d-e183-4411-92f2-b139b85d69bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34227,d526710d-e183-4411-92f2-b139b85d69bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34222,9b00e585-c19f-4f47-ad70-df3ff8df0dfc,LIST_ACCOUNTS,hbciListAccounts,false +34223,9b00e585-c19f-4f47-ad70-df3ff8df0dfc,LIST_TRANSACTIONS,hbciListTransactions,false +34224,9b00e585-c19f-4f47-ad70-df3ff8df0dfc,AUTHORIZATION,,false +34225,9b00e585-c19f-4f47-ad70-df3ff8df0dfc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34226,9b00e585-c19f-4f47-ad70-df3ff8df0dfc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34227,9b00e585-c19f-4f47-ad70-df3ff8df0dfc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34228,9a6e96e4-3356-4553-942b-4263c0ef2a9a,LIST_ACCOUNTS,xs2aListAccounts,true -34229,9a6e96e4-3356-4553-942b-4263c0ef2a9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34229,9a6e96e4-3356-4553-942b-4263c0ef2a9a,LIST_TRANSACTIONS,xs2aListTransactions,true 34230,9a6e96e4-3356-4553-942b-4263c0ef2a9a,AUTHORIZATION,,true 34231,9a6e96e4-3356-4553-942b-4263c0ef2a9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34232,9a6e96e4-3356-4553-942b-4263c0ef2a9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34233,9a6e96e4-3356-4553-942b-4263c0ef2a9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34234,5e302572-97ed-404a-9637-57965c71ab40,LIST_ACCOUNTS,hbciListAccounts,false -34235,5e302572-97ed-404a-9637-57965c71ab40,LIST_TRANSACTIONS,hbciListTransactions,false -34236,5e302572-97ed-404a-9637-57965c71ab40,AUTHORIZATION,,false -34237,5e302572-97ed-404a-9637-57965c71ab40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34238,5e302572-97ed-404a-9637-57965c71ab40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34239,5e302572-97ed-404a-9637-57965c71ab40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34234,472d0900-33ec-490e-81de-ad5d2e9b3214,LIST_ACCOUNTS,hbciListAccounts,false +34235,472d0900-33ec-490e-81de-ad5d2e9b3214,LIST_TRANSACTIONS,hbciListTransactions,false +34236,472d0900-33ec-490e-81de-ad5d2e9b3214,AUTHORIZATION,,false +34237,472d0900-33ec-490e-81de-ad5d2e9b3214,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34238,472d0900-33ec-490e-81de-ad5d2e9b3214,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34239,472d0900-33ec-490e-81de-ad5d2e9b3214,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34240,85d357d5-2f3a-4c5c-a4b9-ab55beb28199,LIST_ACCOUNTS,xs2aListAccounts,true -34241,85d357d5-2f3a-4c5c-a4b9-ab55beb28199,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34241,85d357d5-2f3a-4c5c-a4b9-ab55beb28199,LIST_TRANSACTIONS,xs2aListTransactions,true 34242,85d357d5-2f3a-4c5c-a4b9-ab55beb28199,AUTHORIZATION,,true 34243,85d357d5-2f3a-4c5c-a4b9-ab55beb28199,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34244,85d357d5-2f3a-4c5c-a4b9-ab55beb28199,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34245,85d357d5-2f3a-4c5c-a4b9-ab55beb28199,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34246,7d704a2c-2499-4346-a7e1-e91f21450a29,LIST_ACCOUNTS,hbciListAccounts,false -34247,7d704a2c-2499-4346-a7e1-e91f21450a29,LIST_TRANSACTIONS,hbciListTransactions,false -34248,7d704a2c-2499-4346-a7e1-e91f21450a29,AUTHORIZATION,,false -34249,7d704a2c-2499-4346-a7e1-e91f21450a29,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34250,7d704a2c-2499-4346-a7e1-e91f21450a29,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34251,7d704a2c-2499-4346-a7e1-e91f21450a29,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34246,732cd635-1364-492a-b499-cf85a8c6f36a,LIST_ACCOUNTS,hbciListAccounts,false +34247,732cd635-1364-492a-b499-cf85a8c6f36a,LIST_TRANSACTIONS,hbciListTransactions,false +34248,732cd635-1364-492a-b499-cf85a8c6f36a,AUTHORIZATION,,false +34249,732cd635-1364-492a-b499-cf85a8c6f36a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34250,732cd635-1364-492a-b499-cf85a8c6f36a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34251,732cd635-1364-492a-b499-cf85a8c6f36a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34252,3e1ee53d-f9a6-4c66-97d9-74bfd46ec747,LIST_ACCOUNTS,xs2aListAccounts,true -34253,3e1ee53d-f9a6-4c66-97d9-74bfd46ec747,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34253,3e1ee53d-f9a6-4c66-97d9-74bfd46ec747,LIST_TRANSACTIONS,xs2aListTransactions,true 34254,3e1ee53d-f9a6-4c66-97d9-74bfd46ec747,AUTHORIZATION,,true 34255,3e1ee53d-f9a6-4c66-97d9-74bfd46ec747,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34256,3e1ee53d-f9a6-4c66-97d9-74bfd46ec747,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34257,3e1ee53d-f9a6-4c66-97d9-74bfd46ec747,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34258,5e18fe55-0399-4aac-a695-a149418a5795,LIST_ACCOUNTS,hbciListAccounts,false -34259,5e18fe55-0399-4aac-a695-a149418a5795,LIST_TRANSACTIONS,hbciListTransactions,false -34260,5e18fe55-0399-4aac-a695-a149418a5795,AUTHORIZATION,,false -34261,5e18fe55-0399-4aac-a695-a149418a5795,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34262,5e18fe55-0399-4aac-a695-a149418a5795,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34263,5e18fe55-0399-4aac-a695-a149418a5795,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34258,b80c5d32-5f06-4598-9cdd-fd2a6018c937,LIST_ACCOUNTS,hbciListAccounts,false +34259,b80c5d32-5f06-4598-9cdd-fd2a6018c937,LIST_TRANSACTIONS,hbciListTransactions,false +34260,b80c5d32-5f06-4598-9cdd-fd2a6018c937,AUTHORIZATION,,false +34261,b80c5d32-5f06-4598-9cdd-fd2a6018c937,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34262,b80c5d32-5f06-4598-9cdd-fd2a6018c937,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34263,b80c5d32-5f06-4598-9cdd-fd2a6018c937,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34264,450e09df-795a-4ef6-962f-9f4bcc9250e5,LIST_ACCOUNTS,xs2aListAccounts,true -34265,450e09df-795a-4ef6-962f-9f4bcc9250e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34265,450e09df-795a-4ef6-962f-9f4bcc9250e5,LIST_TRANSACTIONS,xs2aListTransactions,true 34266,450e09df-795a-4ef6-962f-9f4bcc9250e5,AUTHORIZATION,,true 34267,450e09df-795a-4ef6-962f-9f4bcc9250e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34268,450e09df-795a-4ef6-962f-9f4bcc9250e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34269,450e09df-795a-4ef6-962f-9f4bcc9250e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34270,91d22917-e735-425a-bf7b-a0e653318a0d,LIST_ACCOUNTS,hbciListAccounts,false -34271,91d22917-e735-425a-bf7b-a0e653318a0d,LIST_TRANSACTIONS,hbciListTransactions,false -34272,91d22917-e735-425a-bf7b-a0e653318a0d,AUTHORIZATION,,false -34273,91d22917-e735-425a-bf7b-a0e653318a0d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34274,91d22917-e735-425a-bf7b-a0e653318a0d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34275,91d22917-e735-425a-bf7b-a0e653318a0d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34270,b29a25cd-b84c-45e6-a723-2daafba49a0f,LIST_ACCOUNTS,hbciListAccounts,false +34271,b29a25cd-b84c-45e6-a723-2daafba49a0f,LIST_TRANSACTIONS,hbciListTransactions,false +34272,b29a25cd-b84c-45e6-a723-2daafba49a0f,AUTHORIZATION,,false +34273,b29a25cd-b84c-45e6-a723-2daafba49a0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34274,b29a25cd-b84c-45e6-a723-2daafba49a0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34275,b29a25cd-b84c-45e6-a723-2daafba49a0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34276,3957af4f-f541-4e7a-9bfe-a74d6e696977,LIST_ACCOUNTS,xs2aListAccounts,true -34277,3957af4f-f541-4e7a-9bfe-a74d6e696977,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34277,3957af4f-f541-4e7a-9bfe-a74d6e696977,LIST_TRANSACTIONS,xs2aListTransactions,true 34278,3957af4f-f541-4e7a-9bfe-a74d6e696977,AUTHORIZATION,,true 34279,3957af4f-f541-4e7a-9bfe-a74d6e696977,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34280,3957af4f-f541-4e7a-9bfe-a74d6e696977,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34281,3957af4f-f541-4e7a-9bfe-a74d6e696977,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34282,2f7c3af5-e39b-4e48-a8dc-b59d735b489a,LIST_ACCOUNTS,hbciListAccounts,false -34283,2f7c3af5-e39b-4e48-a8dc-b59d735b489a,LIST_TRANSACTIONS,hbciListTransactions,false -34284,2f7c3af5-e39b-4e48-a8dc-b59d735b489a,AUTHORIZATION,,false -34285,2f7c3af5-e39b-4e48-a8dc-b59d735b489a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34286,2f7c3af5-e39b-4e48-a8dc-b59d735b489a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34287,2f7c3af5-e39b-4e48-a8dc-b59d735b489a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34282,f386887d-763b-43f2-a6b2-3de2e2a721dc,LIST_ACCOUNTS,hbciListAccounts,false +34283,f386887d-763b-43f2-a6b2-3de2e2a721dc,LIST_TRANSACTIONS,hbciListTransactions,false +34284,f386887d-763b-43f2-a6b2-3de2e2a721dc,AUTHORIZATION,,false +34285,f386887d-763b-43f2-a6b2-3de2e2a721dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34286,f386887d-763b-43f2-a6b2-3de2e2a721dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34287,f386887d-763b-43f2-a6b2-3de2e2a721dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34288,b4f4441c-07ee-49af-98fe-6544886ffde5,LIST_ACCOUNTS,xs2aListAccounts,true -34289,b4f4441c-07ee-49af-98fe-6544886ffde5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34289,b4f4441c-07ee-49af-98fe-6544886ffde5,LIST_TRANSACTIONS,xs2aListTransactions,true 34290,b4f4441c-07ee-49af-98fe-6544886ffde5,AUTHORIZATION,,true 34291,b4f4441c-07ee-49af-98fe-6544886ffde5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34292,b4f4441c-07ee-49af-98fe-6544886ffde5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34293,b4f4441c-07ee-49af-98fe-6544886ffde5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34294,c0a53218-e5d5-4f35-94ce-ce50101a80a9,LIST_ACCOUNTS,hbciListAccounts,false -34295,c0a53218-e5d5-4f35-94ce-ce50101a80a9,LIST_TRANSACTIONS,hbciListTransactions,false -34296,c0a53218-e5d5-4f35-94ce-ce50101a80a9,AUTHORIZATION,,false -34297,c0a53218-e5d5-4f35-94ce-ce50101a80a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34298,c0a53218-e5d5-4f35-94ce-ce50101a80a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34299,c0a53218-e5d5-4f35-94ce-ce50101a80a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34294,8720b48a-90a2-4ad0-a4bb-97ab0b90c429,LIST_ACCOUNTS,hbciListAccounts,false +34295,8720b48a-90a2-4ad0-a4bb-97ab0b90c429,LIST_TRANSACTIONS,hbciListTransactions,false +34296,8720b48a-90a2-4ad0-a4bb-97ab0b90c429,AUTHORIZATION,,false +34297,8720b48a-90a2-4ad0-a4bb-97ab0b90c429,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34298,8720b48a-90a2-4ad0-a4bb-97ab0b90c429,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34299,8720b48a-90a2-4ad0-a4bb-97ab0b90c429,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34300,8e48f52b-ab8e-4c5a-b67c-1d6541b7096b,LIST_ACCOUNTS,xs2aListAccounts,true -34301,8e48f52b-ab8e-4c5a-b67c-1d6541b7096b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34301,8e48f52b-ab8e-4c5a-b67c-1d6541b7096b,LIST_TRANSACTIONS,xs2aListTransactions,true 34302,8e48f52b-ab8e-4c5a-b67c-1d6541b7096b,AUTHORIZATION,,true 34303,8e48f52b-ab8e-4c5a-b67c-1d6541b7096b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34304,8e48f52b-ab8e-4c5a-b67c-1d6541b7096b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34305,8e48f52b-ab8e-4c5a-b67c-1d6541b7096b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34306,2cec00af-ee6c-4a89-ac7e-64fd59d18792,LIST_ACCOUNTS,hbciListAccounts,false -34307,2cec00af-ee6c-4a89-ac7e-64fd59d18792,LIST_TRANSACTIONS,hbciListTransactions,false -34308,2cec00af-ee6c-4a89-ac7e-64fd59d18792,AUTHORIZATION,,false -34309,2cec00af-ee6c-4a89-ac7e-64fd59d18792,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34310,2cec00af-ee6c-4a89-ac7e-64fd59d18792,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34311,2cec00af-ee6c-4a89-ac7e-64fd59d18792,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34306,65729ed5-21ed-44e6-94ff-f92c439f608d,LIST_ACCOUNTS,hbciListAccounts,false +34307,65729ed5-21ed-44e6-94ff-f92c439f608d,LIST_TRANSACTIONS,hbciListTransactions,false +34308,65729ed5-21ed-44e6-94ff-f92c439f608d,AUTHORIZATION,,false +34309,65729ed5-21ed-44e6-94ff-f92c439f608d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34310,65729ed5-21ed-44e6-94ff-f92c439f608d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34311,65729ed5-21ed-44e6-94ff-f92c439f608d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34312,36abc301-13b9-4ed7-89b0-d0f2c3d7f661,LIST_ACCOUNTS,xs2aListAccounts,true -34313,36abc301-13b9-4ed7-89b0-d0f2c3d7f661,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34313,36abc301-13b9-4ed7-89b0-d0f2c3d7f661,LIST_TRANSACTIONS,xs2aListTransactions,true 34314,36abc301-13b9-4ed7-89b0-d0f2c3d7f661,AUTHORIZATION,,true 34315,36abc301-13b9-4ed7-89b0-d0f2c3d7f661,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34316,36abc301-13b9-4ed7-89b0-d0f2c3d7f661,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34317,36abc301-13b9-4ed7-89b0-d0f2c3d7f661,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34318,c3f4092a-1d97-4b09-85de-b80c931526ab,LIST_ACCOUNTS,hbciListAccounts,false -34319,c3f4092a-1d97-4b09-85de-b80c931526ab,LIST_TRANSACTIONS,hbciListTransactions,false -34320,c3f4092a-1d97-4b09-85de-b80c931526ab,AUTHORIZATION,,false -34321,c3f4092a-1d97-4b09-85de-b80c931526ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34322,c3f4092a-1d97-4b09-85de-b80c931526ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34323,c3f4092a-1d97-4b09-85de-b80c931526ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34318,a9d3af67-adc5-48da-95a7-b7c7e480fb5f,LIST_ACCOUNTS,hbciListAccounts,false +34319,a9d3af67-adc5-48da-95a7-b7c7e480fb5f,LIST_TRANSACTIONS,hbciListTransactions,false +34320,a9d3af67-adc5-48da-95a7-b7c7e480fb5f,AUTHORIZATION,,false +34321,a9d3af67-adc5-48da-95a7-b7c7e480fb5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34322,a9d3af67-adc5-48da-95a7-b7c7e480fb5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34323,a9d3af67-adc5-48da-95a7-b7c7e480fb5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34324,1db08a04-45d7-4fbb-8da7-da7c148a09b7,LIST_ACCOUNTS,xs2aListAccounts,true -34325,1db08a04-45d7-4fbb-8da7-da7c148a09b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34325,1db08a04-45d7-4fbb-8da7-da7c148a09b7,LIST_TRANSACTIONS,xs2aListTransactions,true 34326,1db08a04-45d7-4fbb-8da7-da7c148a09b7,AUTHORIZATION,,true 34327,1db08a04-45d7-4fbb-8da7-da7c148a09b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34328,1db08a04-45d7-4fbb-8da7-da7c148a09b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34329,1db08a04-45d7-4fbb-8da7-da7c148a09b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34330,219e2482-9005-4aca-8150-b7af020ff1dc,LIST_ACCOUNTS,hbciListAccounts,false -34331,219e2482-9005-4aca-8150-b7af020ff1dc,LIST_TRANSACTIONS,hbciListTransactions,false -34332,219e2482-9005-4aca-8150-b7af020ff1dc,AUTHORIZATION,,false -34333,219e2482-9005-4aca-8150-b7af020ff1dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34334,219e2482-9005-4aca-8150-b7af020ff1dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34335,219e2482-9005-4aca-8150-b7af020ff1dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34330,ced72164-7d20-4b85-b6ad-cc085de9e3b6,LIST_ACCOUNTS,hbciListAccounts,false +34331,ced72164-7d20-4b85-b6ad-cc085de9e3b6,LIST_TRANSACTIONS,hbciListTransactions,false +34332,ced72164-7d20-4b85-b6ad-cc085de9e3b6,AUTHORIZATION,,false +34333,ced72164-7d20-4b85-b6ad-cc085de9e3b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34334,ced72164-7d20-4b85-b6ad-cc085de9e3b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34335,ced72164-7d20-4b85-b6ad-cc085de9e3b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34336,932f36b0-2717-4eb1-bdb3-d7e6a269b22c,LIST_ACCOUNTS,xs2aListAccounts,true -34337,932f36b0-2717-4eb1-bdb3-d7e6a269b22c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34337,932f36b0-2717-4eb1-bdb3-d7e6a269b22c,LIST_TRANSACTIONS,xs2aListTransactions,true 34338,932f36b0-2717-4eb1-bdb3-d7e6a269b22c,AUTHORIZATION,,true 34339,932f36b0-2717-4eb1-bdb3-d7e6a269b22c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34340,932f36b0-2717-4eb1-bdb3-d7e6a269b22c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34341,932f36b0-2717-4eb1-bdb3-d7e6a269b22c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34342,ca2cc712-874b-4dd5-8fd0-9ba96ef2cfce,LIST_ACCOUNTS,hbciListAccounts,false -34343,ca2cc712-874b-4dd5-8fd0-9ba96ef2cfce,LIST_TRANSACTIONS,hbciListTransactions,false -34344,ca2cc712-874b-4dd5-8fd0-9ba96ef2cfce,AUTHORIZATION,,false -34345,ca2cc712-874b-4dd5-8fd0-9ba96ef2cfce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34346,ca2cc712-874b-4dd5-8fd0-9ba96ef2cfce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34347,ca2cc712-874b-4dd5-8fd0-9ba96ef2cfce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34342,27db5618-e650-47de-b064-60aafe32f7a2,LIST_ACCOUNTS,hbciListAccounts,false +34343,27db5618-e650-47de-b064-60aafe32f7a2,LIST_TRANSACTIONS,hbciListTransactions,false +34344,27db5618-e650-47de-b064-60aafe32f7a2,AUTHORIZATION,,false +34345,27db5618-e650-47de-b064-60aafe32f7a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34346,27db5618-e650-47de-b064-60aafe32f7a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34347,27db5618-e650-47de-b064-60aafe32f7a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34348,2907d1dc-360f-4b86-ba5f-ef0a33155ac1,LIST_ACCOUNTS,xs2aListAccounts,true -34349,2907d1dc-360f-4b86-ba5f-ef0a33155ac1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34349,2907d1dc-360f-4b86-ba5f-ef0a33155ac1,LIST_TRANSACTIONS,xs2aListTransactions,true 34350,2907d1dc-360f-4b86-ba5f-ef0a33155ac1,AUTHORIZATION,,true 34351,2907d1dc-360f-4b86-ba5f-ef0a33155ac1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34352,2907d1dc-360f-4b86-ba5f-ef0a33155ac1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34353,2907d1dc-360f-4b86-ba5f-ef0a33155ac1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34354,b9a517bd-fe5e-4c36-bd12-48f5bb957e88,LIST_ACCOUNTS,hbciListAccounts,false -34355,b9a517bd-fe5e-4c36-bd12-48f5bb957e88,LIST_TRANSACTIONS,hbciListTransactions,false -34356,b9a517bd-fe5e-4c36-bd12-48f5bb957e88,AUTHORIZATION,,false -34357,b9a517bd-fe5e-4c36-bd12-48f5bb957e88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34358,b9a517bd-fe5e-4c36-bd12-48f5bb957e88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34359,b9a517bd-fe5e-4c36-bd12-48f5bb957e88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34354,af38ae7f-0dea-47f8-8b9f-f696b9de62ef,LIST_ACCOUNTS,hbciListAccounts,false +34355,af38ae7f-0dea-47f8-8b9f-f696b9de62ef,LIST_TRANSACTIONS,hbciListTransactions,false +34356,af38ae7f-0dea-47f8-8b9f-f696b9de62ef,AUTHORIZATION,,false +34357,af38ae7f-0dea-47f8-8b9f-f696b9de62ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34358,af38ae7f-0dea-47f8-8b9f-f696b9de62ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34359,af38ae7f-0dea-47f8-8b9f-f696b9de62ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34360,394c5664-6ad5-4945-be6a-22dd59b48de8,LIST_ACCOUNTS,xs2aListAccounts,true -34361,394c5664-6ad5-4945-be6a-22dd59b48de8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34361,394c5664-6ad5-4945-be6a-22dd59b48de8,LIST_TRANSACTIONS,xs2aListTransactions,true 34362,394c5664-6ad5-4945-be6a-22dd59b48de8,AUTHORIZATION,,true 34363,394c5664-6ad5-4945-be6a-22dd59b48de8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34364,394c5664-6ad5-4945-be6a-22dd59b48de8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34365,394c5664-6ad5-4945-be6a-22dd59b48de8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34366,011970a1-bf80-4d74-8cf6-26372fd39299,LIST_ACCOUNTS,hbciListAccounts,false -34367,011970a1-bf80-4d74-8cf6-26372fd39299,LIST_TRANSACTIONS,hbciListTransactions,false -34368,011970a1-bf80-4d74-8cf6-26372fd39299,AUTHORIZATION,,false -34369,011970a1-bf80-4d74-8cf6-26372fd39299,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34370,011970a1-bf80-4d74-8cf6-26372fd39299,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34371,011970a1-bf80-4d74-8cf6-26372fd39299,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34366,7d2a405f-92c7-4380-bdaa-4a15aa0623dd,LIST_ACCOUNTS,hbciListAccounts,false +34367,7d2a405f-92c7-4380-bdaa-4a15aa0623dd,LIST_TRANSACTIONS,hbciListTransactions,false +34368,7d2a405f-92c7-4380-bdaa-4a15aa0623dd,AUTHORIZATION,,false +34369,7d2a405f-92c7-4380-bdaa-4a15aa0623dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34370,7d2a405f-92c7-4380-bdaa-4a15aa0623dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34371,7d2a405f-92c7-4380-bdaa-4a15aa0623dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34372,a53842dd-340a-470a-92de-e37ab9bc11c2,LIST_ACCOUNTS,xs2aListAccounts,true -34373,a53842dd-340a-470a-92de-e37ab9bc11c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34373,a53842dd-340a-470a-92de-e37ab9bc11c2,LIST_TRANSACTIONS,xs2aListTransactions,true 34374,a53842dd-340a-470a-92de-e37ab9bc11c2,AUTHORIZATION,,true 34375,a53842dd-340a-470a-92de-e37ab9bc11c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34376,a53842dd-340a-470a-92de-e37ab9bc11c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34377,a53842dd-340a-470a-92de-e37ab9bc11c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34378,494276e0-3b89-4c9a-819a-0b8daf38db54,LIST_ACCOUNTS,hbciListAccounts,false -34379,494276e0-3b89-4c9a-819a-0b8daf38db54,LIST_TRANSACTIONS,hbciListTransactions,false -34380,494276e0-3b89-4c9a-819a-0b8daf38db54,AUTHORIZATION,,false -34381,494276e0-3b89-4c9a-819a-0b8daf38db54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34382,494276e0-3b89-4c9a-819a-0b8daf38db54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34383,494276e0-3b89-4c9a-819a-0b8daf38db54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34378,55b51236-279c-4d5d-a1f0-e8431d770b67,LIST_ACCOUNTS,hbciListAccounts,false +34379,55b51236-279c-4d5d-a1f0-e8431d770b67,LIST_TRANSACTIONS,hbciListTransactions,false +34380,55b51236-279c-4d5d-a1f0-e8431d770b67,AUTHORIZATION,,false +34381,55b51236-279c-4d5d-a1f0-e8431d770b67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34382,55b51236-279c-4d5d-a1f0-e8431d770b67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34383,55b51236-279c-4d5d-a1f0-e8431d770b67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34384,8eca9636-2893-4c14-83cf-8d00d41589c1,LIST_ACCOUNTS,xs2aListAccounts,true -34385,8eca9636-2893-4c14-83cf-8d00d41589c1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34385,8eca9636-2893-4c14-83cf-8d00d41589c1,LIST_TRANSACTIONS,xs2aListTransactions,true 34386,8eca9636-2893-4c14-83cf-8d00d41589c1,AUTHORIZATION,,true 34387,8eca9636-2893-4c14-83cf-8d00d41589c1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34388,8eca9636-2893-4c14-83cf-8d00d41589c1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34389,8eca9636-2893-4c14-83cf-8d00d41589c1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34390,a2104517-5e17-41d5-9591-106e1c57086d,LIST_ACCOUNTS,hbciListAccounts,false -34391,a2104517-5e17-41d5-9591-106e1c57086d,LIST_TRANSACTIONS,hbciListTransactions,false -34392,a2104517-5e17-41d5-9591-106e1c57086d,AUTHORIZATION,,false -34393,a2104517-5e17-41d5-9591-106e1c57086d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34394,a2104517-5e17-41d5-9591-106e1c57086d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34395,a2104517-5e17-41d5-9591-106e1c57086d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34390,796b1870-0d5f-4b9d-b376-c788b0dd0252,LIST_ACCOUNTS,hbciListAccounts,false +34391,796b1870-0d5f-4b9d-b376-c788b0dd0252,LIST_TRANSACTIONS,hbciListTransactions,false +34392,796b1870-0d5f-4b9d-b376-c788b0dd0252,AUTHORIZATION,,false +34393,796b1870-0d5f-4b9d-b376-c788b0dd0252,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34394,796b1870-0d5f-4b9d-b376-c788b0dd0252,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34395,796b1870-0d5f-4b9d-b376-c788b0dd0252,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34396,a32f1658-2239-4180-a82d-f1e32c0d3e43,LIST_ACCOUNTS,xs2aListAccounts,true -34397,a32f1658-2239-4180-a82d-f1e32c0d3e43,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34397,a32f1658-2239-4180-a82d-f1e32c0d3e43,LIST_TRANSACTIONS,xs2aListTransactions,true 34398,a32f1658-2239-4180-a82d-f1e32c0d3e43,AUTHORIZATION,,true 34399,a32f1658-2239-4180-a82d-f1e32c0d3e43,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34400,a32f1658-2239-4180-a82d-f1e32c0d3e43,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34401,a32f1658-2239-4180-a82d-f1e32c0d3e43,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34402,66f04040-3780-4f55-aa16-0e1ab4ee1359,LIST_ACCOUNTS,hbciListAccounts,false -34403,66f04040-3780-4f55-aa16-0e1ab4ee1359,LIST_TRANSACTIONS,hbciListTransactions,false -34404,66f04040-3780-4f55-aa16-0e1ab4ee1359,AUTHORIZATION,,false -34405,66f04040-3780-4f55-aa16-0e1ab4ee1359,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34406,66f04040-3780-4f55-aa16-0e1ab4ee1359,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34407,66f04040-3780-4f55-aa16-0e1ab4ee1359,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34402,9f546e59-6099-4dbe-8f7b-96b27dd5e8a1,LIST_ACCOUNTS,hbciListAccounts,false +34403,9f546e59-6099-4dbe-8f7b-96b27dd5e8a1,LIST_TRANSACTIONS,hbciListTransactions,false +34404,9f546e59-6099-4dbe-8f7b-96b27dd5e8a1,AUTHORIZATION,,false +34405,9f546e59-6099-4dbe-8f7b-96b27dd5e8a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34406,9f546e59-6099-4dbe-8f7b-96b27dd5e8a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34407,9f546e59-6099-4dbe-8f7b-96b27dd5e8a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34408,c2a33a38-bdaf-4fc7-a03a-7656421e07f9,LIST_ACCOUNTS,xs2aListAccounts,true -34409,c2a33a38-bdaf-4fc7-a03a-7656421e07f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34409,c2a33a38-bdaf-4fc7-a03a-7656421e07f9,LIST_TRANSACTIONS,xs2aListTransactions,true 34410,c2a33a38-bdaf-4fc7-a03a-7656421e07f9,AUTHORIZATION,,true 34411,c2a33a38-bdaf-4fc7-a03a-7656421e07f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34412,c2a33a38-bdaf-4fc7-a03a-7656421e07f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34413,c2a33a38-bdaf-4fc7-a03a-7656421e07f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34414,1e6f8aed-abab-4bfb-814e-2fb65135064a,LIST_ACCOUNTS,hbciListAccounts,false -34415,1e6f8aed-abab-4bfb-814e-2fb65135064a,LIST_TRANSACTIONS,hbciListTransactions,false -34416,1e6f8aed-abab-4bfb-814e-2fb65135064a,AUTHORIZATION,,false -34417,1e6f8aed-abab-4bfb-814e-2fb65135064a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34418,1e6f8aed-abab-4bfb-814e-2fb65135064a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34419,1e6f8aed-abab-4bfb-814e-2fb65135064a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34414,6d30c1e5-3cec-4e13-ac2a-53dc83c5e4f4,LIST_ACCOUNTS,hbciListAccounts,false +34415,6d30c1e5-3cec-4e13-ac2a-53dc83c5e4f4,LIST_TRANSACTIONS,hbciListTransactions,false +34416,6d30c1e5-3cec-4e13-ac2a-53dc83c5e4f4,AUTHORIZATION,,false +34417,6d30c1e5-3cec-4e13-ac2a-53dc83c5e4f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34418,6d30c1e5-3cec-4e13-ac2a-53dc83c5e4f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34419,6d30c1e5-3cec-4e13-ac2a-53dc83c5e4f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34420,9779b0fd-6e29-4d02-a156-77d3968f9f41,LIST_ACCOUNTS,xs2aListAccounts,true -34421,9779b0fd-6e29-4d02-a156-77d3968f9f41,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34421,9779b0fd-6e29-4d02-a156-77d3968f9f41,LIST_TRANSACTIONS,xs2aListTransactions,true 34422,9779b0fd-6e29-4d02-a156-77d3968f9f41,AUTHORIZATION,,true 34423,9779b0fd-6e29-4d02-a156-77d3968f9f41,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34424,9779b0fd-6e29-4d02-a156-77d3968f9f41,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34425,9779b0fd-6e29-4d02-a156-77d3968f9f41,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34426,518ccda9-a932-4cd8-a179-ed31a39caced,LIST_ACCOUNTS,hbciListAccounts,false -34427,518ccda9-a932-4cd8-a179-ed31a39caced,LIST_TRANSACTIONS,hbciListTransactions,false -34428,518ccda9-a932-4cd8-a179-ed31a39caced,AUTHORIZATION,,false -34429,518ccda9-a932-4cd8-a179-ed31a39caced,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34430,518ccda9-a932-4cd8-a179-ed31a39caced,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34431,518ccda9-a932-4cd8-a179-ed31a39caced,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34426,0e8f02e3-69f9-4878-bd35-6f2c7eb5b84e,LIST_ACCOUNTS,hbciListAccounts,false +34427,0e8f02e3-69f9-4878-bd35-6f2c7eb5b84e,LIST_TRANSACTIONS,hbciListTransactions,false +34428,0e8f02e3-69f9-4878-bd35-6f2c7eb5b84e,AUTHORIZATION,,false +34429,0e8f02e3-69f9-4878-bd35-6f2c7eb5b84e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34430,0e8f02e3-69f9-4878-bd35-6f2c7eb5b84e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34431,0e8f02e3-69f9-4878-bd35-6f2c7eb5b84e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34432,de12b123-4915-49a0-9df1-a6881e029517,LIST_ACCOUNTS,xs2aListAccounts,true -34433,de12b123-4915-49a0-9df1-a6881e029517,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34433,de12b123-4915-49a0-9df1-a6881e029517,LIST_TRANSACTIONS,xs2aListTransactions,true 34434,de12b123-4915-49a0-9df1-a6881e029517,AUTHORIZATION,,true 34435,de12b123-4915-49a0-9df1-a6881e029517,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34436,de12b123-4915-49a0-9df1-a6881e029517,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34437,de12b123-4915-49a0-9df1-a6881e029517,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34438,b0b5098a-1f59-4ac7-9f9e-6175111900e7,LIST_ACCOUNTS,hbciListAccounts,false -34439,b0b5098a-1f59-4ac7-9f9e-6175111900e7,LIST_TRANSACTIONS,hbciListTransactions,false -34440,b0b5098a-1f59-4ac7-9f9e-6175111900e7,AUTHORIZATION,,false -34441,b0b5098a-1f59-4ac7-9f9e-6175111900e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34442,b0b5098a-1f59-4ac7-9f9e-6175111900e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34443,b0b5098a-1f59-4ac7-9f9e-6175111900e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34438,c6f94662-f55a-4ccc-8837-2028b6ddb0bb,LIST_ACCOUNTS,hbciListAccounts,false +34439,c6f94662-f55a-4ccc-8837-2028b6ddb0bb,LIST_TRANSACTIONS,hbciListTransactions,false +34440,c6f94662-f55a-4ccc-8837-2028b6ddb0bb,AUTHORIZATION,,false +34441,c6f94662-f55a-4ccc-8837-2028b6ddb0bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34442,c6f94662-f55a-4ccc-8837-2028b6ddb0bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34443,c6f94662-f55a-4ccc-8837-2028b6ddb0bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34444,280d0b58-759a-40e9-9e3a-bcb583d63eaf,LIST_ACCOUNTS,xs2aListAccounts,true -34445,280d0b58-759a-40e9-9e3a-bcb583d63eaf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34445,280d0b58-759a-40e9-9e3a-bcb583d63eaf,LIST_TRANSACTIONS,xs2aListTransactions,true 34446,280d0b58-759a-40e9-9e3a-bcb583d63eaf,AUTHORIZATION,,true 34447,280d0b58-759a-40e9-9e3a-bcb583d63eaf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34448,280d0b58-759a-40e9-9e3a-bcb583d63eaf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34449,280d0b58-759a-40e9-9e3a-bcb583d63eaf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34450,f6dcd736-df76-430f-a452-caf5f295e642,LIST_ACCOUNTS,hbciListAccounts,false -34451,f6dcd736-df76-430f-a452-caf5f295e642,LIST_TRANSACTIONS,hbciListTransactions,false -34452,f6dcd736-df76-430f-a452-caf5f295e642,AUTHORIZATION,,false -34453,f6dcd736-df76-430f-a452-caf5f295e642,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34454,f6dcd736-df76-430f-a452-caf5f295e642,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34455,f6dcd736-df76-430f-a452-caf5f295e642,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34450,e2842535-ef51-41b2-a1b8-2156ea92d4e6,LIST_ACCOUNTS,hbciListAccounts,false +34451,e2842535-ef51-41b2-a1b8-2156ea92d4e6,LIST_TRANSACTIONS,hbciListTransactions,false +34452,e2842535-ef51-41b2-a1b8-2156ea92d4e6,AUTHORIZATION,,false +34453,e2842535-ef51-41b2-a1b8-2156ea92d4e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34454,e2842535-ef51-41b2-a1b8-2156ea92d4e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34455,e2842535-ef51-41b2-a1b8-2156ea92d4e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34456,54af88ce-a7b1-426f-a6ce-e850ab08525b,LIST_ACCOUNTS,xs2aListAccounts,true -34457,54af88ce-a7b1-426f-a6ce-e850ab08525b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34457,54af88ce-a7b1-426f-a6ce-e850ab08525b,LIST_TRANSACTIONS,xs2aListTransactions,true 34458,54af88ce-a7b1-426f-a6ce-e850ab08525b,AUTHORIZATION,,true 34459,54af88ce-a7b1-426f-a6ce-e850ab08525b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34460,54af88ce-a7b1-426f-a6ce-e850ab08525b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34461,54af88ce-a7b1-426f-a6ce-e850ab08525b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34462,c481219a-94ab-4181-b354-9c6f23b65804,LIST_ACCOUNTS,hbciListAccounts,false -34463,c481219a-94ab-4181-b354-9c6f23b65804,LIST_TRANSACTIONS,hbciListTransactions,false -34464,c481219a-94ab-4181-b354-9c6f23b65804,AUTHORIZATION,,false -34465,c481219a-94ab-4181-b354-9c6f23b65804,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34466,c481219a-94ab-4181-b354-9c6f23b65804,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34467,c481219a-94ab-4181-b354-9c6f23b65804,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34462,f1e99e66-ded5-4f43-94b7-e6bb15721116,LIST_ACCOUNTS,hbciListAccounts,false +34463,f1e99e66-ded5-4f43-94b7-e6bb15721116,LIST_TRANSACTIONS,hbciListTransactions,false +34464,f1e99e66-ded5-4f43-94b7-e6bb15721116,AUTHORIZATION,,false +34465,f1e99e66-ded5-4f43-94b7-e6bb15721116,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34466,f1e99e66-ded5-4f43-94b7-e6bb15721116,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34467,f1e99e66-ded5-4f43-94b7-e6bb15721116,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34468,80cdea6b-4b17-404b-b243-8a65b284297c,LIST_ACCOUNTS,xs2aListAccounts,true -34469,80cdea6b-4b17-404b-b243-8a65b284297c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34469,80cdea6b-4b17-404b-b243-8a65b284297c,LIST_TRANSACTIONS,xs2aListTransactions,true 34470,80cdea6b-4b17-404b-b243-8a65b284297c,AUTHORIZATION,,true 34471,80cdea6b-4b17-404b-b243-8a65b284297c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34472,80cdea6b-4b17-404b-b243-8a65b284297c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34473,80cdea6b-4b17-404b-b243-8a65b284297c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34474,2bae600a-48a5-4ba3-ad30-3ce5bb839c08,LIST_ACCOUNTS,hbciListAccounts,false -34475,2bae600a-48a5-4ba3-ad30-3ce5bb839c08,LIST_TRANSACTIONS,hbciListTransactions,false -34476,2bae600a-48a5-4ba3-ad30-3ce5bb839c08,AUTHORIZATION,,false -34477,2bae600a-48a5-4ba3-ad30-3ce5bb839c08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34478,2bae600a-48a5-4ba3-ad30-3ce5bb839c08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34479,2bae600a-48a5-4ba3-ad30-3ce5bb839c08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34474,6ecf8ea0-9cee-4590-85cd-33326e4748fe,LIST_ACCOUNTS,hbciListAccounts,false +34475,6ecf8ea0-9cee-4590-85cd-33326e4748fe,LIST_TRANSACTIONS,hbciListTransactions,false +34476,6ecf8ea0-9cee-4590-85cd-33326e4748fe,AUTHORIZATION,,false +34477,6ecf8ea0-9cee-4590-85cd-33326e4748fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34478,6ecf8ea0-9cee-4590-85cd-33326e4748fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34479,6ecf8ea0-9cee-4590-85cd-33326e4748fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34480,e106064e-9294-49da-b354-88821acb38c0,LIST_ACCOUNTS,xs2aListAccounts,true -34481,e106064e-9294-49da-b354-88821acb38c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34481,e106064e-9294-49da-b354-88821acb38c0,LIST_TRANSACTIONS,xs2aListTransactions,true 34482,e106064e-9294-49da-b354-88821acb38c0,AUTHORIZATION,,true 34483,e106064e-9294-49da-b354-88821acb38c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34484,e106064e-9294-49da-b354-88821acb38c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34485,e106064e-9294-49da-b354-88821acb38c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34486,a63f8247-98c6-455a-a5d1-ad966fc33836,LIST_ACCOUNTS,hbciListAccounts,false -34487,a63f8247-98c6-455a-a5d1-ad966fc33836,LIST_TRANSACTIONS,hbciListTransactions,false -34488,a63f8247-98c6-455a-a5d1-ad966fc33836,AUTHORIZATION,,false -34489,a63f8247-98c6-455a-a5d1-ad966fc33836,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34490,a63f8247-98c6-455a-a5d1-ad966fc33836,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34491,a63f8247-98c6-455a-a5d1-ad966fc33836,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34486,5ca11393-0644-430d-9bd3-cd4de32dc5f5,LIST_ACCOUNTS,hbciListAccounts,false +34487,5ca11393-0644-430d-9bd3-cd4de32dc5f5,LIST_TRANSACTIONS,hbciListTransactions,false +34488,5ca11393-0644-430d-9bd3-cd4de32dc5f5,AUTHORIZATION,,false +34489,5ca11393-0644-430d-9bd3-cd4de32dc5f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34490,5ca11393-0644-430d-9bd3-cd4de32dc5f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34491,5ca11393-0644-430d-9bd3-cd4de32dc5f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34492,8fdfe0d7-e3b5-4584-834b-5d2e93030062,LIST_ACCOUNTS,xs2aListAccounts,true -34493,8fdfe0d7-e3b5-4584-834b-5d2e93030062,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34493,8fdfe0d7-e3b5-4584-834b-5d2e93030062,LIST_TRANSACTIONS,xs2aListTransactions,true 34494,8fdfe0d7-e3b5-4584-834b-5d2e93030062,AUTHORIZATION,,true 34495,8fdfe0d7-e3b5-4584-834b-5d2e93030062,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34496,8fdfe0d7-e3b5-4584-834b-5d2e93030062,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34497,8fdfe0d7-e3b5-4584-834b-5d2e93030062,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34498,e3456275-8f71-4c94-9a58-ec77152f0761,LIST_ACCOUNTS,hbciListAccounts,false -34499,e3456275-8f71-4c94-9a58-ec77152f0761,LIST_TRANSACTIONS,hbciListTransactions,false -34500,e3456275-8f71-4c94-9a58-ec77152f0761,AUTHORIZATION,,false -34501,e3456275-8f71-4c94-9a58-ec77152f0761,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34502,e3456275-8f71-4c94-9a58-ec77152f0761,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34503,e3456275-8f71-4c94-9a58-ec77152f0761,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34498,0e1c80f8-57a1-4c36-a0e2-8d0d68a58fe2,LIST_ACCOUNTS,hbciListAccounts,false +34499,0e1c80f8-57a1-4c36-a0e2-8d0d68a58fe2,LIST_TRANSACTIONS,hbciListTransactions,false +34500,0e1c80f8-57a1-4c36-a0e2-8d0d68a58fe2,AUTHORIZATION,,false +34501,0e1c80f8-57a1-4c36-a0e2-8d0d68a58fe2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34502,0e1c80f8-57a1-4c36-a0e2-8d0d68a58fe2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34503,0e1c80f8-57a1-4c36-a0e2-8d0d68a58fe2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34504,4ca30b8d-8c4c-47e4-a7c8-cc321f163d0a,LIST_ACCOUNTS,xs2aListAccounts,true -34505,4ca30b8d-8c4c-47e4-a7c8-cc321f163d0a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34505,4ca30b8d-8c4c-47e4-a7c8-cc321f163d0a,LIST_TRANSACTIONS,xs2aListTransactions,true 34506,4ca30b8d-8c4c-47e4-a7c8-cc321f163d0a,AUTHORIZATION,,true 34507,4ca30b8d-8c4c-47e4-a7c8-cc321f163d0a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34508,4ca30b8d-8c4c-47e4-a7c8-cc321f163d0a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34509,4ca30b8d-8c4c-47e4-a7c8-cc321f163d0a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34510,e5c86d05-29fd-43c6-8c20-74083628c75c,LIST_ACCOUNTS,hbciListAccounts,false -34511,e5c86d05-29fd-43c6-8c20-74083628c75c,LIST_TRANSACTIONS,hbciListTransactions,false -34512,e5c86d05-29fd-43c6-8c20-74083628c75c,AUTHORIZATION,,false -34513,e5c86d05-29fd-43c6-8c20-74083628c75c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34514,e5c86d05-29fd-43c6-8c20-74083628c75c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34515,e5c86d05-29fd-43c6-8c20-74083628c75c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34510,e819155d-7227-4e0a-9ea4-c80ff7c1763b,LIST_ACCOUNTS,hbciListAccounts,false +34511,e819155d-7227-4e0a-9ea4-c80ff7c1763b,LIST_TRANSACTIONS,hbciListTransactions,false +34512,e819155d-7227-4e0a-9ea4-c80ff7c1763b,AUTHORIZATION,,false +34513,e819155d-7227-4e0a-9ea4-c80ff7c1763b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34514,e819155d-7227-4e0a-9ea4-c80ff7c1763b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34515,e819155d-7227-4e0a-9ea4-c80ff7c1763b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34516,0d89eebd-0755-400b-8b9f-8b5c33a5e576,LIST_ACCOUNTS,xs2aListAccounts,true -34517,0d89eebd-0755-400b-8b9f-8b5c33a5e576,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34517,0d89eebd-0755-400b-8b9f-8b5c33a5e576,LIST_TRANSACTIONS,xs2aListTransactions,true 34518,0d89eebd-0755-400b-8b9f-8b5c33a5e576,AUTHORIZATION,,true 34519,0d89eebd-0755-400b-8b9f-8b5c33a5e576,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34520,0d89eebd-0755-400b-8b9f-8b5c33a5e576,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34521,0d89eebd-0755-400b-8b9f-8b5c33a5e576,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34522,e5e7723d-f335-430d-a39c-a68735f970f6,LIST_ACCOUNTS,hbciListAccounts,false -34523,e5e7723d-f335-430d-a39c-a68735f970f6,LIST_TRANSACTIONS,hbciListTransactions,false -34524,e5e7723d-f335-430d-a39c-a68735f970f6,AUTHORIZATION,,false -34525,e5e7723d-f335-430d-a39c-a68735f970f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34526,e5e7723d-f335-430d-a39c-a68735f970f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34527,e5e7723d-f335-430d-a39c-a68735f970f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34522,1521a964-540e-4058-87f5-557b9863ea49,LIST_ACCOUNTS,hbciListAccounts,false +34523,1521a964-540e-4058-87f5-557b9863ea49,LIST_TRANSACTIONS,hbciListTransactions,false +34524,1521a964-540e-4058-87f5-557b9863ea49,AUTHORIZATION,,false +34525,1521a964-540e-4058-87f5-557b9863ea49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34526,1521a964-540e-4058-87f5-557b9863ea49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34527,1521a964-540e-4058-87f5-557b9863ea49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34528,823bfeb9-a9b7-49f5-b76f-eb9e7c15e815,LIST_ACCOUNTS,xs2aListAccounts,true -34529,823bfeb9-a9b7-49f5-b76f-eb9e7c15e815,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34529,823bfeb9-a9b7-49f5-b76f-eb9e7c15e815,LIST_TRANSACTIONS,xs2aListTransactions,true 34530,823bfeb9-a9b7-49f5-b76f-eb9e7c15e815,AUTHORIZATION,,true 34531,823bfeb9-a9b7-49f5-b76f-eb9e7c15e815,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34532,823bfeb9-a9b7-49f5-b76f-eb9e7c15e815,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34533,823bfeb9-a9b7-49f5-b76f-eb9e7c15e815,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34534,d056aac8-a7e2-4747-a94c-afc739bf2a51,LIST_ACCOUNTS,hbciListAccounts,false -34535,d056aac8-a7e2-4747-a94c-afc739bf2a51,LIST_TRANSACTIONS,hbciListTransactions,false -34536,d056aac8-a7e2-4747-a94c-afc739bf2a51,AUTHORIZATION,,false -34537,d056aac8-a7e2-4747-a94c-afc739bf2a51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34538,d056aac8-a7e2-4747-a94c-afc739bf2a51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34539,d056aac8-a7e2-4747-a94c-afc739bf2a51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34534,5abc7773-0a21-4590-a433-d84556079ce5,LIST_ACCOUNTS,hbciListAccounts,false +34535,5abc7773-0a21-4590-a433-d84556079ce5,LIST_TRANSACTIONS,hbciListTransactions,false +34536,5abc7773-0a21-4590-a433-d84556079ce5,AUTHORIZATION,,false +34537,5abc7773-0a21-4590-a433-d84556079ce5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34538,5abc7773-0a21-4590-a433-d84556079ce5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34539,5abc7773-0a21-4590-a433-d84556079ce5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34540,ad33d2a4-4969-49a9-8bc8-d5a61644f42a,LIST_ACCOUNTS,xs2aListAccounts,true -34541,ad33d2a4-4969-49a9-8bc8-d5a61644f42a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34541,ad33d2a4-4969-49a9-8bc8-d5a61644f42a,LIST_TRANSACTIONS,xs2aListTransactions,true 34542,ad33d2a4-4969-49a9-8bc8-d5a61644f42a,AUTHORIZATION,,true 34543,ad33d2a4-4969-49a9-8bc8-d5a61644f42a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34544,ad33d2a4-4969-49a9-8bc8-d5a61644f42a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34545,ad33d2a4-4969-49a9-8bc8-d5a61644f42a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34546,f1589b50-2b04-4aa3-8e46-8b337fc18689,LIST_ACCOUNTS,hbciListAccounts,false -34547,f1589b50-2b04-4aa3-8e46-8b337fc18689,LIST_TRANSACTIONS,hbciListTransactions,false -34548,f1589b50-2b04-4aa3-8e46-8b337fc18689,AUTHORIZATION,,false -34549,f1589b50-2b04-4aa3-8e46-8b337fc18689,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34550,f1589b50-2b04-4aa3-8e46-8b337fc18689,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34551,f1589b50-2b04-4aa3-8e46-8b337fc18689,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34546,7ebb80a4-bb7d-4aa7-b10e-f97ca028b061,LIST_ACCOUNTS,hbciListAccounts,false +34547,7ebb80a4-bb7d-4aa7-b10e-f97ca028b061,LIST_TRANSACTIONS,hbciListTransactions,false +34548,7ebb80a4-bb7d-4aa7-b10e-f97ca028b061,AUTHORIZATION,,false +34549,7ebb80a4-bb7d-4aa7-b10e-f97ca028b061,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34550,7ebb80a4-bb7d-4aa7-b10e-f97ca028b061,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34551,7ebb80a4-bb7d-4aa7-b10e-f97ca028b061,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34552,6d7e70f0-cd4d-480c-9741-659da9fcfe17,LIST_ACCOUNTS,xs2aListAccounts,true -34553,6d7e70f0-cd4d-480c-9741-659da9fcfe17,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34553,6d7e70f0-cd4d-480c-9741-659da9fcfe17,LIST_TRANSACTIONS,xs2aListTransactions,true 34554,6d7e70f0-cd4d-480c-9741-659da9fcfe17,AUTHORIZATION,,true 34555,6d7e70f0-cd4d-480c-9741-659da9fcfe17,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34556,6d7e70f0-cd4d-480c-9741-659da9fcfe17,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34557,6d7e70f0-cd4d-480c-9741-659da9fcfe17,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34558,51afc8c3-bfce-4798-a3c9-c9a8e65f0d2b,LIST_ACCOUNTS,hbciListAccounts,false -34559,51afc8c3-bfce-4798-a3c9-c9a8e65f0d2b,LIST_TRANSACTIONS,hbciListTransactions,false -34560,51afc8c3-bfce-4798-a3c9-c9a8e65f0d2b,AUTHORIZATION,,false -34561,51afc8c3-bfce-4798-a3c9-c9a8e65f0d2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34562,51afc8c3-bfce-4798-a3c9-c9a8e65f0d2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34563,51afc8c3-bfce-4798-a3c9-c9a8e65f0d2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34558,bad79995-8cfb-4005-a86d-4e2ead5ba3df,LIST_ACCOUNTS,hbciListAccounts,false +34559,bad79995-8cfb-4005-a86d-4e2ead5ba3df,LIST_TRANSACTIONS,hbciListTransactions,false +34560,bad79995-8cfb-4005-a86d-4e2ead5ba3df,AUTHORIZATION,,false +34561,bad79995-8cfb-4005-a86d-4e2ead5ba3df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34562,bad79995-8cfb-4005-a86d-4e2ead5ba3df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34563,bad79995-8cfb-4005-a86d-4e2ead5ba3df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34564,7303eb5b-23fe-4add-88c7-34533964c26e,LIST_ACCOUNTS,xs2aListAccounts,true -34565,7303eb5b-23fe-4add-88c7-34533964c26e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34565,7303eb5b-23fe-4add-88c7-34533964c26e,LIST_TRANSACTIONS,xs2aListTransactions,true 34566,7303eb5b-23fe-4add-88c7-34533964c26e,AUTHORIZATION,,true 34567,7303eb5b-23fe-4add-88c7-34533964c26e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34568,7303eb5b-23fe-4add-88c7-34533964c26e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34569,7303eb5b-23fe-4add-88c7-34533964c26e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34570,7bde73db-8ac3-4ffd-b81b-f49db2c7c1bf,LIST_ACCOUNTS,hbciListAccounts,false -34571,7bde73db-8ac3-4ffd-b81b-f49db2c7c1bf,LIST_TRANSACTIONS,hbciListTransactions,false -34572,7bde73db-8ac3-4ffd-b81b-f49db2c7c1bf,AUTHORIZATION,,false -34573,7bde73db-8ac3-4ffd-b81b-f49db2c7c1bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34574,7bde73db-8ac3-4ffd-b81b-f49db2c7c1bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34575,7bde73db-8ac3-4ffd-b81b-f49db2c7c1bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34570,6330539a-9b31-4683-8702-9b5a994c063b,LIST_ACCOUNTS,hbciListAccounts,false +34571,6330539a-9b31-4683-8702-9b5a994c063b,LIST_TRANSACTIONS,hbciListTransactions,false +34572,6330539a-9b31-4683-8702-9b5a994c063b,AUTHORIZATION,,false +34573,6330539a-9b31-4683-8702-9b5a994c063b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34574,6330539a-9b31-4683-8702-9b5a994c063b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34575,6330539a-9b31-4683-8702-9b5a994c063b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34576,93fcdc88-a8a7-4ea0-9181-df504b8950b6,LIST_ACCOUNTS,xs2aListAccounts,true -34577,93fcdc88-a8a7-4ea0-9181-df504b8950b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34577,93fcdc88-a8a7-4ea0-9181-df504b8950b6,LIST_TRANSACTIONS,xs2aListTransactions,true 34578,93fcdc88-a8a7-4ea0-9181-df504b8950b6,AUTHORIZATION,,true 34579,93fcdc88-a8a7-4ea0-9181-df504b8950b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34580,93fcdc88-a8a7-4ea0-9181-df504b8950b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34581,93fcdc88-a8a7-4ea0-9181-df504b8950b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34582,d50df787-3086-47f1-9003-c5db9cb8831f,LIST_ACCOUNTS,hbciListAccounts,false -34583,d50df787-3086-47f1-9003-c5db9cb8831f,LIST_TRANSACTIONS,hbciListTransactions,false -34584,d50df787-3086-47f1-9003-c5db9cb8831f,AUTHORIZATION,,false -34585,d50df787-3086-47f1-9003-c5db9cb8831f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34586,d50df787-3086-47f1-9003-c5db9cb8831f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34587,d50df787-3086-47f1-9003-c5db9cb8831f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34582,76974b10-2b90-4afc-8de7-1f625a510d10,LIST_ACCOUNTS,hbciListAccounts,false +34583,76974b10-2b90-4afc-8de7-1f625a510d10,LIST_TRANSACTIONS,hbciListTransactions,false +34584,76974b10-2b90-4afc-8de7-1f625a510d10,AUTHORIZATION,,false +34585,76974b10-2b90-4afc-8de7-1f625a510d10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34586,76974b10-2b90-4afc-8de7-1f625a510d10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34587,76974b10-2b90-4afc-8de7-1f625a510d10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34588,19618827-d70f-4818-9a3d-3eb01a73f4c0,LIST_ACCOUNTS,xs2aListAccounts,true -34589,19618827-d70f-4818-9a3d-3eb01a73f4c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34589,19618827-d70f-4818-9a3d-3eb01a73f4c0,LIST_TRANSACTIONS,xs2aListTransactions,true 34590,19618827-d70f-4818-9a3d-3eb01a73f4c0,AUTHORIZATION,,true 34591,19618827-d70f-4818-9a3d-3eb01a73f4c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34592,19618827-d70f-4818-9a3d-3eb01a73f4c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34593,19618827-d70f-4818-9a3d-3eb01a73f4c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34594,74509a3b-f124-4d62-83b2-7c64cebd201e,LIST_ACCOUNTS,hbciListAccounts,false -34595,74509a3b-f124-4d62-83b2-7c64cebd201e,LIST_TRANSACTIONS,hbciListTransactions,false -34596,74509a3b-f124-4d62-83b2-7c64cebd201e,AUTHORIZATION,,false -34597,74509a3b-f124-4d62-83b2-7c64cebd201e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34598,74509a3b-f124-4d62-83b2-7c64cebd201e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34599,74509a3b-f124-4d62-83b2-7c64cebd201e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34594,c76b39de-3af2-473f-81bb-74029bcb0570,LIST_ACCOUNTS,hbciListAccounts,false +34595,c76b39de-3af2-473f-81bb-74029bcb0570,LIST_TRANSACTIONS,hbciListTransactions,false +34596,c76b39de-3af2-473f-81bb-74029bcb0570,AUTHORIZATION,,false +34597,c76b39de-3af2-473f-81bb-74029bcb0570,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34598,c76b39de-3af2-473f-81bb-74029bcb0570,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34599,c76b39de-3af2-473f-81bb-74029bcb0570,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34600,2f8a1fbb-2ff0-4175-a560-10516df1a8c4,LIST_ACCOUNTS,xs2aListAccounts,true -34601,2f8a1fbb-2ff0-4175-a560-10516df1a8c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34601,2f8a1fbb-2ff0-4175-a560-10516df1a8c4,LIST_TRANSACTIONS,xs2aListTransactions,true 34602,2f8a1fbb-2ff0-4175-a560-10516df1a8c4,AUTHORIZATION,,true 34603,2f8a1fbb-2ff0-4175-a560-10516df1a8c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34604,2f8a1fbb-2ff0-4175-a560-10516df1a8c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34605,2f8a1fbb-2ff0-4175-a560-10516df1a8c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34606,0beb3722-3bc9-4779-a5c8-193fb19aa313,LIST_ACCOUNTS,hbciListAccounts,false -34607,0beb3722-3bc9-4779-a5c8-193fb19aa313,LIST_TRANSACTIONS,hbciListTransactions,false -34608,0beb3722-3bc9-4779-a5c8-193fb19aa313,AUTHORIZATION,,false -34609,0beb3722-3bc9-4779-a5c8-193fb19aa313,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34610,0beb3722-3bc9-4779-a5c8-193fb19aa313,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34611,0beb3722-3bc9-4779-a5c8-193fb19aa313,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34606,8c1611aa-9bcf-4685-83a7-9ed59db87abf,LIST_ACCOUNTS,hbciListAccounts,false +34607,8c1611aa-9bcf-4685-83a7-9ed59db87abf,LIST_TRANSACTIONS,hbciListTransactions,false +34608,8c1611aa-9bcf-4685-83a7-9ed59db87abf,AUTHORIZATION,,false +34609,8c1611aa-9bcf-4685-83a7-9ed59db87abf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34610,8c1611aa-9bcf-4685-83a7-9ed59db87abf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34611,8c1611aa-9bcf-4685-83a7-9ed59db87abf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34612,005efee1-ba89-4756-8d80-72f03e158024,LIST_ACCOUNTS,xs2aListAccounts,true -34613,005efee1-ba89-4756-8d80-72f03e158024,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34613,005efee1-ba89-4756-8d80-72f03e158024,LIST_TRANSACTIONS,xs2aListTransactions,true 34614,005efee1-ba89-4756-8d80-72f03e158024,AUTHORIZATION,,true 34615,005efee1-ba89-4756-8d80-72f03e158024,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34616,005efee1-ba89-4756-8d80-72f03e158024,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34617,005efee1-ba89-4756-8d80-72f03e158024,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34618,c8564b33-01e2-468d-9524-cd7d783f7c96,LIST_ACCOUNTS,hbciListAccounts,false -34619,c8564b33-01e2-468d-9524-cd7d783f7c96,LIST_TRANSACTIONS,hbciListTransactions,false -34620,c8564b33-01e2-468d-9524-cd7d783f7c96,AUTHORIZATION,,false -34621,c8564b33-01e2-468d-9524-cd7d783f7c96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34622,c8564b33-01e2-468d-9524-cd7d783f7c96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34623,c8564b33-01e2-468d-9524-cd7d783f7c96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34618,abfba1f8-655e-4b5c-bdc5-adbb1ba6acd0,LIST_ACCOUNTS,hbciListAccounts,false +34619,abfba1f8-655e-4b5c-bdc5-adbb1ba6acd0,LIST_TRANSACTIONS,hbciListTransactions,false +34620,abfba1f8-655e-4b5c-bdc5-adbb1ba6acd0,AUTHORIZATION,,false +34621,abfba1f8-655e-4b5c-bdc5-adbb1ba6acd0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34622,abfba1f8-655e-4b5c-bdc5-adbb1ba6acd0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34623,abfba1f8-655e-4b5c-bdc5-adbb1ba6acd0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34624,d1258960-0e36-49df-baa0-39948c912d9c,LIST_ACCOUNTS,xs2aListAccounts,true -34625,d1258960-0e36-49df-baa0-39948c912d9c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34625,d1258960-0e36-49df-baa0-39948c912d9c,LIST_TRANSACTIONS,xs2aListTransactions,true 34626,d1258960-0e36-49df-baa0-39948c912d9c,AUTHORIZATION,,true 34627,d1258960-0e36-49df-baa0-39948c912d9c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34628,d1258960-0e36-49df-baa0-39948c912d9c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34629,d1258960-0e36-49df-baa0-39948c912d9c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34630,77e6799f-80db-4ca9-a112-84daaaeb1638,LIST_ACCOUNTS,hbciListAccounts,false -34631,77e6799f-80db-4ca9-a112-84daaaeb1638,LIST_TRANSACTIONS,hbciListTransactions,false -34632,77e6799f-80db-4ca9-a112-84daaaeb1638,AUTHORIZATION,,false -34633,77e6799f-80db-4ca9-a112-84daaaeb1638,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34634,77e6799f-80db-4ca9-a112-84daaaeb1638,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34635,77e6799f-80db-4ca9-a112-84daaaeb1638,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34630,f220d193-6cd3-4076-9444-aad6bfcb54be,LIST_ACCOUNTS,hbciListAccounts,false +34631,f220d193-6cd3-4076-9444-aad6bfcb54be,LIST_TRANSACTIONS,hbciListTransactions,false +34632,f220d193-6cd3-4076-9444-aad6bfcb54be,AUTHORIZATION,,false +34633,f220d193-6cd3-4076-9444-aad6bfcb54be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34634,f220d193-6cd3-4076-9444-aad6bfcb54be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34635,f220d193-6cd3-4076-9444-aad6bfcb54be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34636,20f79ee1-aa02-4aa9-b75f-d8f264e8f72d,LIST_ACCOUNTS,xs2aListAccounts,true -34637,20f79ee1-aa02-4aa9-b75f-d8f264e8f72d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34637,20f79ee1-aa02-4aa9-b75f-d8f264e8f72d,LIST_TRANSACTIONS,xs2aListTransactions,true 34638,20f79ee1-aa02-4aa9-b75f-d8f264e8f72d,AUTHORIZATION,,true 34639,20f79ee1-aa02-4aa9-b75f-d8f264e8f72d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34640,20f79ee1-aa02-4aa9-b75f-d8f264e8f72d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34641,20f79ee1-aa02-4aa9-b75f-d8f264e8f72d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34642,8ad7bbbf-2f58-41af-a191-3f79344bbac2,LIST_ACCOUNTS,hbciListAccounts,false -34643,8ad7bbbf-2f58-41af-a191-3f79344bbac2,LIST_TRANSACTIONS,hbciListTransactions,false -34644,8ad7bbbf-2f58-41af-a191-3f79344bbac2,AUTHORIZATION,,false -34645,8ad7bbbf-2f58-41af-a191-3f79344bbac2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34646,8ad7bbbf-2f58-41af-a191-3f79344bbac2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34647,8ad7bbbf-2f58-41af-a191-3f79344bbac2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34642,1b2cdf6e-2107-443e-be9d-ad1778b59110,LIST_ACCOUNTS,hbciListAccounts,false +34643,1b2cdf6e-2107-443e-be9d-ad1778b59110,LIST_TRANSACTIONS,hbciListTransactions,false +34644,1b2cdf6e-2107-443e-be9d-ad1778b59110,AUTHORIZATION,,false +34645,1b2cdf6e-2107-443e-be9d-ad1778b59110,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34646,1b2cdf6e-2107-443e-be9d-ad1778b59110,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34647,1b2cdf6e-2107-443e-be9d-ad1778b59110,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34648,f80a05f3-ece1-49a1-9fac-655ca309ad20,LIST_ACCOUNTS,xs2aListAccounts,true -34649,f80a05f3-ece1-49a1-9fac-655ca309ad20,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34649,f80a05f3-ece1-49a1-9fac-655ca309ad20,LIST_TRANSACTIONS,xs2aListTransactions,true 34650,f80a05f3-ece1-49a1-9fac-655ca309ad20,AUTHORIZATION,,true 34651,f80a05f3-ece1-49a1-9fac-655ca309ad20,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34652,f80a05f3-ece1-49a1-9fac-655ca309ad20,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34653,f80a05f3-ece1-49a1-9fac-655ca309ad20,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34654,497d7fb6-e5fa-4716-a4ad-764bff66d1b7,LIST_ACCOUNTS,hbciListAccounts,false -34655,497d7fb6-e5fa-4716-a4ad-764bff66d1b7,LIST_TRANSACTIONS,hbciListTransactions,false -34656,497d7fb6-e5fa-4716-a4ad-764bff66d1b7,AUTHORIZATION,,false -34657,497d7fb6-e5fa-4716-a4ad-764bff66d1b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34658,497d7fb6-e5fa-4716-a4ad-764bff66d1b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34659,497d7fb6-e5fa-4716-a4ad-764bff66d1b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34654,5192c228-d5d7-49b1-9508-bfb6904f1bdb,LIST_ACCOUNTS,hbciListAccounts,false +34655,5192c228-d5d7-49b1-9508-bfb6904f1bdb,LIST_TRANSACTIONS,hbciListTransactions,false +34656,5192c228-d5d7-49b1-9508-bfb6904f1bdb,AUTHORIZATION,,false +34657,5192c228-d5d7-49b1-9508-bfb6904f1bdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34658,5192c228-d5d7-49b1-9508-bfb6904f1bdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34659,5192c228-d5d7-49b1-9508-bfb6904f1bdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34660,0741e5f3-bf80-4519-900c-9a83a83b0bde,LIST_ACCOUNTS,xs2aListAccounts,true -34661,0741e5f3-bf80-4519-900c-9a83a83b0bde,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34661,0741e5f3-bf80-4519-900c-9a83a83b0bde,LIST_TRANSACTIONS,xs2aListTransactions,true 34662,0741e5f3-bf80-4519-900c-9a83a83b0bde,AUTHORIZATION,,true 34663,0741e5f3-bf80-4519-900c-9a83a83b0bde,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34664,0741e5f3-bf80-4519-900c-9a83a83b0bde,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34665,0741e5f3-bf80-4519-900c-9a83a83b0bde,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34666,8b29a620-b716-4fa1-87c6-19582296716d,LIST_ACCOUNTS,hbciListAccounts,false -34667,8b29a620-b716-4fa1-87c6-19582296716d,LIST_TRANSACTIONS,hbciListTransactions,false -34668,8b29a620-b716-4fa1-87c6-19582296716d,AUTHORIZATION,,false -34669,8b29a620-b716-4fa1-87c6-19582296716d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34670,8b29a620-b716-4fa1-87c6-19582296716d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34671,8b29a620-b716-4fa1-87c6-19582296716d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34666,08bc0f67-01dd-410f-81f1-9484d60f4a01,LIST_ACCOUNTS,hbciListAccounts,false +34667,08bc0f67-01dd-410f-81f1-9484d60f4a01,LIST_TRANSACTIONS,hbciListTransactions,false +34668,08bc0f67-01dd-410f-81f1-9484d60f4a01,AUTHORIZATION,,false +34669,08bc0f67-01dd-410f-81f1-9484d60f4a01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34670,08bc0f67-01dd-410f-81f1-9484d60f4a01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34671,08bc0f67-01dd-410f-81f1-9484d60f4a01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34672,f90ac786-3171-4a68-85e5-07a0f5ac4895,LIST_ACCOUNTS,xs2aListAccounts,true -34673,f90ac786-3171-4a68-85e5-07a0f5ac4895,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34673,f90ac786-3171-4a68-85e5-07a0f5ac4895,LIST_TRANSACTIONS,xs2aListTransactions,true 34674,f90ac786-3171-4a68-85e5-07a0f5ac4895,AUTHORIZATION,,true 34675,f90ac786-3171-4a68-85e5-07a0f5ac4895,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34676,f90ac786-3171-4a68-85e5-07a0f5ac4895,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34677,f90ac786-3171-4a68-85e5-07a0f5ac4895,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34678,5559f526-68d3-4990-847b-e6718a0aa22a,LIST_ACCOUNTS,hbciListAccounts,false -34679,5559f526-68d3-4990-847b-e6718a0aa22a,LIST_TRANSACTIONS,hbciListTransactions,false -34680,5559f526-68d3-4990-847b-e6718a0aa22a,AUTHORIZATION,,false -34681,5559f526-68d3-4990-847b-e6718a0aa22a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34682,5559f526-68d3-4990-847b-e6718a0aa22a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34683,5559f526-68d3-4990-847b-e6718a0aa22a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34678,5fcd4cc5-efac-44bb-b23a-c42424067fb0,LIST_ACCOUNTS,hbciListAccounts,false +34679,5fcd4cc5-efac-44bb-b23a-c42424067fb0,LIST_TRANSACTIONS,hbciListTransactions,false +34680,5fcd4cc5-efac-44bb-b23a-c42424067fb0,AUTHORIZATION,,false +34681,5fcd4cc5-efac-44bb-b23a-c42424067fb0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34682,5fcd4cc5-efac-44bb-b23a-c42424067fb0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34683,5fcd4cc5-efac-44bb-b23a-c42424067fb0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34684,96f7162b-bd37-4847-b860-bbaca984f91c,LIST_ACCOUNTS,xs2aListAccounts,true -34685,96f7162b-bd37-4847-b860-bbaca984f91c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34685,96f7162b-bd37-4847-b860-bbaca984f91c,LIST_TRANSACTIONS,xs2aListTransactions,true 34686,96f7162b-bd37-4847-b860-bbaca984f91c,AUTHORIZATION,,true 34687,96f7162b-bd37-4847-b860-bbaca984f91c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34688,96f7162b-bd37-4847-b860-bbaca984f91c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34689,96f7162b-bd37-4847-b860-bbaca984f91c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34690,af8b89d4-a63f-4272-bc06-aaac4a62ef21,LIST_ACCOUNTS,hbciListAccounts,false -34691,af8b89d4-a63f-4272-bc06-aaac4a62ef21,LIST_TRANSACTIONS,hbciListTransactions,false -34692,af8b89d4-a63f-4272-bc06-aaac4a62ef21,AUTHORIZATION,,false -34693,af8b89d4-a63f-4272-bc06-aaac4a62ef21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34694,af8b89d4-a63f-4272-bc06-aaac4a62ef21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34695,af8b89d4-a63f-4272-bc06-aaac4a62ef21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34690,392b2ee3-9a74-4c6d-a68d-69efb2e01041,LIST_ACCOUNTS,hbciListAccounts,false +34691,392b2ee3-9a74-4c6d-a68d-69efb2e01041,LIST_TRANSACTIONS,hbciListTransactions,false +34692,392b2ee3-9a74-4c6d-a68d-69efb2e01041,AUTHORIZATION,,false +34693,392b2ee3-9a74-4c6d-a68d-69efb2e01041,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34694,392b2ee3-9a74-4c6d-a68d-69efb2e01041,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34695,392b2ee3-9a74-4c6d-a68d-69efb2e01041,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34696,6bf682fd-be78-44c9-8f3d-aa2243c948c2,LIST_ACCOUNTS,xs2aListAccounts,true -34697,6bf682fd-be78-44c9-8f3d-aa2243c948c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34697,6bf682fd-be78-44c9-8f3d-aa2243c948c2,LIST_TRANSACTIONS,xs2aListTransactions,true 34698,6bf682fd-be78-44c9-8f3d-aa2243c948c2,AUTHORIZATION,,true 34699,6bf682fd-be78-44c9-8f3d-aa2243c948c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34700,6bf682fd-be78-44c9-8f3d-aa2243c948c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34701,6bf682fd-be78-44c9-8f3d-aa2243c948c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34702,02130304-16b8-4b2c-8f08-e5a4956f0d20,LIST_ACCOUNTS,hbciListAccounts,false -34703,02130304-16b8-4b2c-8f08-e5a4956f0d20,LIST_TRANSACTIONS,hbciListTransactions,false -34704,02130304-16b8-4b2c-8f08-e5a4956f0d20,AUTHORIZATION,,false -34705,02130304-16b8-4b2c-8f08-e5a4956f0d20,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34706,02130304-16b8-4b2c-8f08-e5a4956f0d20,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34707,02130304-16b8-4b2c-8f08-e5a4956f0d20,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34702,759c0d5d-5509-40da-a38e-55632838890c,LIST_ACCOUNTS,hbciListAccounts,false +34703,759c0d5d-5509-40da-a38e-55632838890c,LIST_TRANSACTIONS,hbciListTransactions,false +34704,759c0d5d-5509-40da-a38e-55632838890c,AUTHORIZATION,,false +34705,759c0d5d-5509-40da-a38e-55632838890c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34706,759c0d5d-5509-40da-a38e-55632838890c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34707,759c0d5d-5509-40da-a38e-55632838890c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34708,d1c54040-ff71-4688-9dc5-1152d6d4146f,LIST_ACCOUNTS,xs2aListAccounts,true -34709,d1c54040-ff71-4688-9dc5-1152d6d4146f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34709,d1c54040-ff71-4688-9dc5-1152d6d4146f,LIST_TRANSACTIONS,xs2aListTransactions,true 34710,d1c54040-ff71-4688-9dc5-1152d6d4146f,AUTHORIZATION,,true 34711,d1c54040-ff71-4688-9dc5-1152d6d4146f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34712,d1c54040-ff71-4688-9dc5-1152d6d4146f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34713,d1c54040-ff71-4688-9dc5-1152d6d4146f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34714,f973c8a7-85c2-4538-ae1f-c67168ec414a,LIST_ACCOUNTS,hbciListAccounts,false -34715,f973c8a7-85c2-4538-ae1f-c67168ec414a,LIST_TRANSACTIONS,hbciListTransactions,false -34716,f973c8a7-85c2-4538-ae1f-c67168ec414a,AUTHORIZATION,,false -34717,f973c8a7-85c2-4538-ae1f-c67168ec414a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34718,f973c8a7-85c2-4538-ae1f-c67168ec414a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34719,f973c8a7-85c2-4538-ae1f-c67168ec414a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34714,2788c2f5-506c-4387-b8c6-fd940d0ceac7,LIST_ACCOUNTS,hbciListAccounts,false +34715,2788c2f5-506c-4387-b8c6-fd940d0ceac7,LIST_TRANSACTIONS,hbciListTransactions,false +34716,2788c2f5-506c-4387-b8c6-fd940d0ceac7,AUTHORIZATION,,false +34717,2788c2f5-506c-4387-b8c6-fd940d0ceac7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34718,2788c2f5-506c-4387-b8c6-fd940d0ceac7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34719,2788c2f5-506c-4387-b8c6-fd940d0ceac7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34720,5ebdc07a-38ae-455f-af54-2317ba08045c,LIST_ACCOUNTS,xs2aListAccounts,true -34721,5ebdc07a-38ae-455f-af54-2317ba08045c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34721,5ebdc07a-38ae-455f-af54-2317ba08045c,LIST_TRANSACTIONS,xs2aListTransactions,true 34722,5ebdc07a-38ae-455f-af54-2317ba08045c,AUTHORIZATION,,true 34723,5ebdc07a-38ae-455f-af54-2317ba08045c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34724,5ebdc07a-38ae-455f-af54-2317ba08045c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34725,5ebdc07a-38ae-455f-af54-2317ba08045c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34726,d7633c67-31c1-4fe1-b357-829cdfec6c36,LIST_ACCOUNTS,hbciListAccounts,false -34727,d7633c67-31c1-4fe1-b357-829cdfec6c36,LIST_TRANSACTIONS,hbciListTransactions,false -34728,d7633c67-31c1-4fe1-b357-829cdfec6c36,AUTHORIZATION,,false -34729,d7633c67-31c1-4fe1-b357-829cdfec6c36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34730,d7633c67-31c1-4fe1-b357-829cdfec6c36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34731,d7633c67-31c1-4fe1-b357-829cdfec6c36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34726,7447363f-13d8-4f55-ae0f-bebd90c8f28a,LIST_ACCOUNTS,hbciListAccounts,false +34727,7447363f-13d8-4f55-ae0f-bebd90c8f28a,LIST_TRANSACTIONS,hbciListTransactions,false +34728,7447363f-13d8-4f55-ae0f-bebd90c8f28a,AUTHORIZATION,,false +34729,7447363f-13d8-4f55-ae0f-bebd90c8f28a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34730,7447363f-13d8-4f55-ae0f-bebd90c8f28a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34731,7447363f-13d8-4f55-ae0f-bebd90c8f28a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34732,29b87cf5-1298-4c29-8fa1-2fc65a4d65e5,LIST_ACCOUNTS,xs2aListAccounts,true -34733,29b87cf5-1298-4c29-8fa1-2fc65a4d65e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34733,29b87cf5-1298-4c29-8fa1-2fc65a4d65e5,LIST_TRANSACTIONS,xs2aListTransactions,true 34734,29b87cf5-1298-4c29-8fa1-2fc65a4d65e5,AUTHORIZATION,,true 34735,29b87cf5-1298-4c29-8fa1-2fc65a4d65e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34736,29b87cf5-1298-4c29-8fa1-2fc65a4d65e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34737,29b87cf5-1298-4c29-8fa1-2fc65a4d65e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34738,47ddd92a-0990-45e2-8af2-2b0f66b90458,LIST_ACCOUNTS,hbciListAccounts,false -34739,47ddd92a-0990-45e2-8af2-2b0f66b90458,LIST_TRANSACTIONS,hbciListTransactions,false -34740,47ddd92a-0990-45e2-8af2-2b0f66b90458,AUTHORIZATION,,false -34741,47ddd92a-0990-45e2-8af2-2b0f66b90458,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34742,47ddd92a-0990-45e2-8af2-2b0f66b90458,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34743,47ddd92a-0990-45e2-8af2-2b0f66b90458,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34738,d5593e67-ddd8-4814-aa8a-2616386d01bb,LIST_ACCOUNTS,hbciListAccounts,false +34739,d5593e67-ddd8-4814-aa8a-2616386d01bb,LIST_TRANSACTIONS,hbciListTransactions,false +34740,d5593e67-ddd8-4814-aa8a-2616386d01bb,AUTHORIZATION,,false +34741,d5593e67-ddd8-4814-aa8a-2616386d01bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34742,d5593e67-ddd8-4814-aa8a-2616386d01bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34743,d5593e67-ddd8-4814-aa8a-2616386d01bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34744,d5566e72-cd3a-4dc3-8584-f75b02125774,LIST_ACCOUNTS,xs2aListAccounts,true -34745,d5566e72-cd3a-4dc3-8584-f75b02125774,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34745,d5566e72-cd3a-4dc3-8584-f75b02125774,LIST_TRANSACTIONS,xs2aListTransactions,true 34746,d5566e72-cd3a-4dc3-8584-f75b02125774,AUTHORIZATION,,true 34747,d5566e72-cd3a-4dc3-8584-f75b02125774,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34748,d5566e72-cd3a-4dc3-8584-f75b02125774,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34749,d5566e72-cd3a-4dc3-8584-f75b02125774,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34750,3c0ab3f4-bc6b-4674-9f94-6ceb2598c981,LIST_ACCOUNTS,hbciListAccounts,false -34751,3c0ab3f4-bc6b-4674-9f94-6ceb2598c981,LIST_TRANSACTIONS,hbciListTransactions,false -34752,3c0ab3f4-bc6b-4674-9f94-6ceb2598c981,AUTHORIZATION,,false -34753,3c0ab3f4-bc6b-4674-9f94-6ceb2598c981,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34754,3c0ab3f4-bc6b-4674-9f94-6ceb2598c981,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34755,3c0ab3f4-bc6b-4674-9f94-6ceb2598c981,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34750,8f682a82-5c75-402c-8426-3859b2eeaada,LIST_ACCOUNTS,hbciListAccounts,false +34751,8f682a82-5c75-402c-8426-3859b2eeaada,LIST_TRANSACTIONS,hbciListTransactions,false +34752,8f682a82-5c75-402c-8426-3859b2eeaada,AUTHORIZATION,,false +34753,8f682a82-5c75-402c-8426-3859b2eeaada,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34754,8f682a82-5c75-402c-8426-3859b2eeaada,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34755,8f682a82-5c75-402c-8426-3859b2eeaada,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34756,dbf64ee9-6c03-4816-8e74-907e5dced0c5,LIST_ACCOUNTS,xs2aListAccounts,true -34757,dbf64ee9-6c03-4816-8e74-907e5dced0c5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34757,dbf64ee9-6c03-4816-8e74-907e5dced0c5,LIST_TRANSACTIONS,xs2aListTransactions,true 34758,dbf64ee9-6c03-4816-8e74-907e5dced0c5,AUTHORIZATION,,true 34759,dbf64ee9-6c03-4816-8e74-907e5dced0c5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34760,dbf64ee9-6c03-4816-8e74-907e5dced0c5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34761,dbf64ee9-6c03-4816-8e74-907e5dced0c5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34762,3c304a23-ab6a-403f-96d4-79f6c36e776a,LIST_ACCOUNTS,hbciListAccounts,false -34763,3c304a23-ab6a-403f-96d4-79f6c36e776a,LIST_TRANSACTIONS,hbciListTransactions,false -34764,3c304a23-ab6a-403f-96d4-79f6c36e776a,AUTHORIZATION,,false -34765,3c304a23-ab6a-403f-96d4-79f6c36e776a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34766,3c304a23-ab6a-403f-96d4-79f6c36e776a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34767,3c304a23-ab6a-403f-96d4-79f6c36e776a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34762,102d4c24-5939-40d5-b613-ff145720b943,LIST_ACCOUNTS,hbciListAccounts,false +34763,102d4c24-5939-40d5-b613-ff145720b943,LIST_TRANSACTIONS,hbciListTransactions,false +34764,102d4c24-5939-40d5-b613-ff145720b943,AUTHORIZATION,,false +34765,102d4c24-5939-40d5-b613-ff145720b943,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34766,102d4c24-5939-40d5-b613-ff145720b943,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34767,102d4c24-5939-40d5-b613-ff145720b943,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34768,b8edaa71-434e-47dd-8eed-a49978f37ca7,LIST_ACCOUNTS,xs2aListAccounts,true -34769,b8edaa71-434e-47dd-8eed-a49978f37ca7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34769,b8edaa71-434e-47dd-8eed-a49978f37ca7,LIST_TRANSACTIONS,xs2aListTransactions,true 34770,b8edaa71-434e-47dd-8eed-a49978f37ca7,AUTHORIZATION,,true 34771,b8edaa71-434e-47dd-8eed-a49978f37ca7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34772,b8edaa71-434e-47dd-8eed-a49978f37ca7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34773,b8edaa71-434e-47dd-8eed-a49978f37ca7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34774,8d8e7384-b951-4403-a0f6-ff1afe5e44ab,LIST_ACCOUNTS,hbciListAccounts,false -34775,8d8e7384-b951-4403-a0f6-ff1afe5e44ab,LIST_TRANSACTIONS,hbciListTransactions,false -34776,8d8e7384-b951-4403-a0f6-ff1afe5e44ab,AUTHORIZATION,,false -34777,8d8e7384-b951-4403-a0f6-ff1afe5e44ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34778,8d8e7384-b951-4403-a0f6-ff1afe5e44ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34779,8d8e7384-b951-4403-a0f6-ff1afe5e44ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34774,f363aaaa-c5e8-48c0-853a-2d2b5dc4dd21,LIST_ACCOUNTS,hbciListAccounts,false +34775,f363aaaa-c5e8-48c0-853a-2d2b5dc4dd21,LIST_TRANSACTIONS,hbciListTransactions,false +34776,f363aaaa-c5e8-48c0-853a-2d2b5dc4dd21,AUTHORIZATION,,false +34777,f363aaaa-c5e8-48c0-853a-2d2b5dc4dd21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34778,f363aaaa-c5e8-48c0-853a-2d2b5dc4dd21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34779,f363aaaa-c5e8-48c0-853a-2d2b5dc4dd21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34780,522ca4d9-6a49-43fd-9164-aa02415e2c4b,LIST_ACCOUNTS,xs2aListAccounts,true -34781,522ca4d9-6a49-43fd-9164-aa02415e2c4b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34781,522ca4d9-6a49-43fd-9164-aa02415e2c4b,LIST_TRANSACTIONS,xs2aListTransactions,true 34782,522ca4d9-6a49-43fd-9164-aa02415e2c4b,AUTHORIZATION,,true 34783,522ca4d9-6a49-43fd-9164-aa02415e2c4b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34784,522ca4d9-6a49-43fd-9164-aa02415e2c4b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34785,522ca4d9-6a49-43fd-9164-aa02415e2c4b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34786,d2621d96-4daa-451d-8884-0654d6075e84,LIST_ACCOUNTS,hbciListAccounts,false -34787,d2621d96-4daa-451d-8884-0654d6075e84,LIST_TRANSACTIONS,hbciListTransactions,false -34788,d2621d96-4daa-451d-8884-0654d6075e84,AUTHORIZATION,,false -34789,d2621d96-4daa-451d-8884-0654d6075e84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34790,d2621d96-4daa-451d-8884-0654d6075e84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34791,d2621d96-4daa-451d-8884-0654d6075e84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34786,1c9387ea-dcd3-4141-a09c-b68fd4a8ca84,LIST_ACCOUNTS,hbciListAccounts,false +34787,1c9387ea-dcd3-4141-a09c-b68fd4a8ca84,LIST_TRANSACTIONS,hbciListTransactions,false +34788,1c9387ea-dcd3-4141-a09c-b68fd4a8ca84,AUTHORIZATION,,false +34789,1c9387ea-dcd3-4141-a09c-b68fd4a8ca84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34790,1c9387ea-dcd3-4141-a09c-b68fd4a8ca84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34791,1c9387ea-dcd3-4141-a09c-b68fd4a8ca84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34792,75c85cc5-faad-4abd-b738-abd084ada2f6,LIST_ACCOUNTS,xs2aListAccounts,true -34793,75c85cc5-faad-4abd-b738-abd084ada2f6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34793,75c85cc5-faad-4abd-b738-abd084ada2f6,LIST_TRANSACTIONS,xs2aListTransactions,true 34794,75c85cc5-faad-4abd-b738-abd084ada2f6,AUTHORIZATION,,true 34795,75c85cc5-faad-4abd-b738-abd084ada2f6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34796,75c85cc5-faad-4abd-b738-abd084ada2f6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34797,75c85cc5-faad-4abd-b738-abd084ada2f6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34798,9f045d03-75db-4850-bf0b-dc6d4d68f15f,LIST_ACCOUNTS,hbciListAccounts,false -34799,9f045d03-75db-4850-bf0b-dc6d4d68f15f,LIST_TRANSACTIONS,hbciListTransactions,false -34800,9f045d03-75db-4850-bf0b-dc6d4d68f15f,AUTHORIZATION,,false -34801,9f045d03-75db-4850-bf0b-dc6d4d68f15f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34802,9f045d03-75db-4850-bf0b-dc6d4d68f15f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34803,9f045d03-75db-4850-bf0b-dc6d4d68f15f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34798,cd4c7a6e-0133-4930-9049-b8fe5d09739c,LIST_ACCOUNTS,hbciListAccounts,false +34799,cd4c7a6e-0133-4930-9049-b8fe5d09739c,LIST_TRANSACTIONS,hbciListTransactions,false +34800,cd4c7a6e-0133-4930-9049-b8fe5d09739c,AUTHORIZATION,,false +34801,cd4c7a6e-0133-4930-9049-b8fe5d09739c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34802,cd4c7a6e-0133-4930-9049-b8fe5d09739c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34803,cd4c7a6e-0133-4930-9049-b8fe5d09739c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34804,376f6ea3-2376-47cb-a75c-279b340c4975,LIST_ACCOUNTS,xs2aListAccounts,true -34805,376f6ea3-2376-47cb-a75c-279b340c4975,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34805,376f6ea3-2376-47cb-a75c-279b340c4975,LIST_TRANSACTIONS,xs2aListTransactions,true 34806,376f6ea3-2376-47cb-a75c-279b340c4975,AUTHORIZATION,,true 34807,376f6ea3-2376-47cb-a75c-279b340c4975,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34808,376f6ea3-2376-47cb-a75c-279b340c4975,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34809,376f6ea3-2376-47cb-a75c-279b340c4975,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34810,ab940282-20f2-4da0-8565-77774727d115,LIST_ACCOUNTS,hbciListAccounts,false -34811,ab940282-20f2-4da0-8565-77774727d115,LIST_TRANSACTIONS,hbciListTransactions,false -34812,ab940282-20f2-4da0-8565-77774727d115,AUTHORIZATION,,false -34813,ab940282-20f2-4da0-8565-77774727d115,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34814,ab940282-20f2-4da0-8565-77774727d115,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34815,ab940282-20f2-4da0-8565-77774727d115,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34810,4966e821-687e-42ff-8c78-bca77a1a69ea,LIST_ACCOUNTS,hbciListAccounts,false +34811,4966e821-687e-42ff-8c78-bca77a1a69ea,LIST_TRANSACTIONS,hbciListTransactions,false +34812,4966e821-687e-42ff-8c78-bca77a1a69ea,AUTHORIZATION,,false +34813,4966e821-687e-42ff-8c78-bca77a1a69ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34814,4966e821-687e-42ff-8c78-bca77a1a69ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34815,4966e821-687e-42ff-8c78-bca77a1a69ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34816,33e36153-2b8e-48b0-8eca-b91cd80c5914,LIST_ACCOUNTS,xs2aListAccounts,true -34817,33e36153-2b8e-48b0-8eca-b91cd80c5914,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34817,33e36153-2b8e-48b0-8eca-b91cd80c5914,LIST_TRANSACTIONS,xs2aListTransactions,true 34818,33e36153-2b8e-48b0-8eca-b91cd80c5914,AUTHORIZATION,,true 34819,33e36153-2b8e-48b0-8eca-b91cd80c5914,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34820,33e36153-2b8e-48b0-8eca-b91cd80c5914,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34821,33e36153-2b8e-48b0-8eca-b91cd80c5914,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34822,e52d3e97-c8bf-4a41-9502-5339becfde90,LIST_ACCOUNTS,hbciListAccounts,false -34823,e52d3e97-c8bf-4a41-9502-5339becfde90,LIST_TRANSACTIONS,hbciListTransactions,false -34824,e52d3e97-c8bf-4a41-9502-5339becfde90,AUTHORIZATION,,false -34825,e52d3e97-c8bf-4a41-9502-5339becfde90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34826,e52d3e97-c8bf-4a41-9502-5339becfde90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34827,e52d3e97-c8bf-4a41-9502-5339becfde90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34822,b082f974-abf1-4c85-be30-43a3bcd8ca43,LIST_ACCOUNTS,hbciListAccounts,false +34823,b082f974-abf1-4c85-be30-43a3bcd8ca43,LIST_TRANSACTIONS,hbciListTransactions,false +34824,b082f974-abf1-4c85-be30-43a3bcd8ca43,AUTHORIZATION,,false +34825,b082f974-abf1-4c85-be30-43a3bcd8ca43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34826,b082f974-abf1-4c85-be30-43a3bcd8ca43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34827,b082f974-abf1-4c85-be30-43a3bcd8ca43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34828,69bff8f5-fc04-46e4-a72e-2c4eebebf014,LIST_ACCOUNTS,xs2aListAccounts,true -34829,69bff8f5-fc04-46e4-a72e-2c4eebebf014,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34829,69bff8f5-fc04-46e4-a72e-2c4eebebf014,LIST_TRANSACTIONS,xs2aListTransactions,true 34830,69bff8f5-fc04-46e4-a72e-2c4eebebf014,AUTHORIZATION,,true 34831,69bff8f5-fc04-46e4-a72e-2c4eebebf014,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34832,69bff8f5-fc04-46e4-a72e-2c4eebebf014,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34833,69bff8f5-fc04-46e4-a72e-2c4eebebf014,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34834,ef887bee-9d56-4c4e-bf4f-7122274711b4,LIST_ACCOUNTS,hbciListAccounts,false -34835,ef887bee-9d56-4c4e-bf4f-7122274711b4,LIST_TRANSACTIONS,hbciListTransactions,false -34836,ef887bee-9d56-4c4e-bf4f-7122274711b4,AUTHORIZATION,,false -34837,ef887bee-9d56-4c4e-bf4f-7122274711b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34838,ef887bee-9d56-4c4e-bf4f-7122274711b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34839,ef887bee-9d56-4c4e-bf4f-7122274711b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34834,e1939f30-9748-42f6-97a9-3e4a04c99194,LIST_ACCOUNTS,hbciListAccounts,false +34835,e1939f30-9748-42f6-97a9-3e4a04c99194,LIST_TRANSACTIONS,hbciListTransactions,false +34836,e1939f30-9748-42f6-97a9-3e4a04c99194,AUTHORIZATION,,false +34837,e1939f30-9748-42f6-97a9-3e4a04c99194,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34838,e1939f30-9748-42f6-97a9-3e4a04c99194,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34839,e1939f30-9748-42f6-97a9-3e4a04c99194,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34840,c1ca24b0-a66e-4561-8930-e9ee5a00b1a0,LIST_ACCOUNTS,xs2aListAccounts,true -34841,c1ca24b0-a66e-4561-8930-e9ee5a00b1a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34841,c1ca24b0-a66e-4561-8930-e9ee5a00b1a0,LIST_TRANSACTIONS,xs2aListTransactions,true 34842,c1ca24b0-a66e-4561-8930-e9ee5a00b1a0,AUTHORIZATION,,true 34843,c1ca24b0-a66e-4561-8930-e9ee5a00b1a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34844,c1ca24b0-a66e-4561-8930-e9ee5a00b1a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34845,c1ca24b0-a66e-4561-8930-e9ee5a00b1a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34846,3add8d04-3059-4c38-8585-250f354a3fb7,LIST_ACCOUNTS,hbciListAccounts,false -34847,3add8d04-3059-4c38-8585-250f354a3fb7,LIST_TRANSACTIONS,hbciListTransactions,false -34848,3add8d04-3059-4c38-8585-250f354a3fb7,AUTHORIZATION,,false -34849,3add8d04-3059-4c38-8585-250f354a3fb7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34850,3add8d04-3059-4c38-8585-250f354a3fb7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34851,3add8d04-3059-4c38-8585-250f354a3fb7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34846,51ad4772-e1b9-41ea-8548-0abe3b504c25,LIST_ACCOUNTS,hbciListAccounts,false +34847,51ad4772-e1b9-41ea-8548-0abe3b504c25,LIST_TRANSACTIONS,hbciListTransactions,false +34848,51ad4772-e1b9-41ea-8548-0abe3b504c25,AUTHORIZATION,,false +34849,51ad4772-e1b9-41ea-8548-0abe3b504c25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34850,51ad4772-e1b9-41ea-8548-0abe3b504c25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34851,51ad4772-e1b9-41ea-8548-0abe3b504c25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34852,111fd58f-319b-40ba-b88e-d27c889c371c,LIST_ACCOUNTS,xs2aListAccounts,true -34853,111fd58f-319b-40ba-b88e-d27c889c371c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34853,111fd58f-319b-40ba-b88e-d27c889c371c,LIST_TRANSACTIONS,xs2aListTransactions,true 34854,111fd58f-319b-40ba-b88e-d27c889c371c,AUTHORIZATION,,true 34855,111fd58f-319b-40ba-b88e-d27c889c371c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34856,111fd58f-319b-40ba-b88e-d27c889c371c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34857,111fd58f-319b-40ba-b88e-d27c889c371c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34858,a5558122-7617-4a1d-a665-cfdf97fdd1ce,LIST_ACCOUNTS,hbciListAccounts,false -34859,a5558122-7617-4a1d-a665-cfdf97fdd1ce,LIST_TRANSACTIONS,hbciListTransactions,false -34860,a5558122-7617-4a1d-a665-cfdf97fdd1ce,AUTHORIZATION,,false -34861,a5558122-7617-4a1d-a665-cfdf97fdd1ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34862,a5558122-7617-4a1d-a665-cfdf97fdd1ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34863,a5558122-7617-4a1d-a665-cfdf97fdd1ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34858,a4c05ba4-0d2d-477b-a935-d64627242044,LIST_ACCOUNTS,hbciListAccounts,false +34859,a4c05ba4-0d2d-477b-a935-d64627242044,LIST_TRANSACTIONS,hbciListTransactions,false +34860,a4c05ba4-0d2d-477b-a935-d64627242044,AUTHORIZATION,,false +34861,a4c05ba4-0d2d-477b-a935-d64627242044,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34862,a4c05ba4-0d2d-477b-a935-d64627242044,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34863,a4c05ba4-0d2d-477b-a935-d64627242044,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34864,3b669a2f-de77-4446-a05c-8f8707f6eb31,LIST_ACCOUNTS,xs2aListAccounts,true -34865,3b669a2f-de77-4446-a05c-8f8707f6eb31,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34865,3b669a2f-de77-4446-a05c-8f8707f6eb31,LIST_TRANSACTIONS,xs2aListTransactions,true 34866,3b669a2f-de77-4446-a05c-8f8707f6eb31,AUTHORIZATION,,true 34867,3b669a2f-de77-4446-a05c-8f8707f6eb31,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34868,3b669a2f-de77-4446-a05c-8f8707f6eb31,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34869,3b669a2f-de77-4446-a05c-8f8707f6eb31,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34870,00343d42-aea2-4ee0-8034-519f5c2121eb,LIST_ACCOUNTS,hbciListAccounts,false -34871,00343d42-aea2-4ee0-8034-519f5c2121eb,LIST_TRANSACTIONS,hbciListTransactions,false -34872,00343d42-aea2-4ee0-8034-519f5c2121eb,AUTHORIZATION,,false -34873,00343d42-aea2-4ee0-8034-519f5c2121eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34874,00343d42-aea2-4ee0-8034-519f5c2121eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34875,00343d42-aea2-4ee0-8034-519f5c2121eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34870,21320eb1-460d-4c32-b093-4519acfd0f51,LIST_ACCOUNTS,hbciListAccounts,false +34871,21320eb1-460d-4c32-b093-4519acfd0f51,LIST_TRANSACTIONS,hbciListTransactions,false +34872,21320eb1-460d-4c32-b093-4519acfd0f51,AUTHORIZATION,,false +34873,21320eb1-460d-4c32-b093-4519acfd0f51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34874,21320eb1-460d-4c32-b093-4519acfd0f51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34875,21320eb1-460d-4c32-b093-4519acfd0f51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34876,dd2fa008-1607-4f09-8b8f-e75e2016a5fc,LIST_ACCOUNTS,xs2aListAccounts,true -34877,dd2fa008-1607-4f09-8b8f-e75e2016a5fc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34877,dd2fa008-1607-4f09-8b8f-e75e2016a5fc,LIST_TRANSACTIONS,xs2aListTransactions,true 34878,dd2fa008-1607-4f09-8b8f-e75e2016a5fc,AUTHORIZATION,,true 34879,dd2fa008-1607-4f09-8b8f-e75e2016a5fc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34880,dd2fa008-1607-4f09-8b8f-e75e2016a5fc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34881,dd2fa008-1607-4f09-8b8f-e75e2016a5fc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34882,ad5a6640-0683-40e0-8c4a-c60933453d95,LIST_ACCOUNTS,hbciListAccounts,false -34883,ad5a6640-0683-40e0-8c4a-c60933453d95,LIST_TRANSACTIONS,hbciListTransactions,false -34884,ad5a6640-0683-40e0-8c4a-c60933453d95,AUTHORIZATION,,false -34885,ad5a6640-0683-40e0-8c4a-c60933453d95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34886,ad5a6640-0683-40e0-8c4a-c60933453d95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34887,ad5a6640-0683-40e0-8c4a-c60933453d95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34882,d07f5231-6398-46ac-85ca-6a8443cf7d72,LIST_ACCOUNTS,hbciListAccounts,false +34883,d07f5231-6398-46ac-85ca-6a8443cf7d72,LIST_TRANSACTIONS,hbciListTransactions,false +34884,d07f5231-6398-46ac-85ca-6a8443cf7d72,AUTHORIZATION,,false +34885,d07f5231-6398-46ac-85ca-6a8443cf7d72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34886,d07f5231-6398-46ac-85ca-6a8443cf7d72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34887,d07f5231-6398-46ac-85ca-6a8443cf7d72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34888,61405c7d-6227-4c9f-9cce-2245c0ea4266,LIST_ACCOUNTS,xs2aListAccounts,true -34889,61405c7d-6227-4c9f-9cce-2245c0ea4266,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34889,61405c7d-6227-4c9f-9cce-2245c0ea4266,LIST_TRANSACTIONS,xs2aListTransactions,true 34890,61405c7d-6227-4c9f-9cce-2245c0ea4266,AUTHORIZATION,,true 34891,61405c7d-6227-4c9f-9cce-2245c0ea4266,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34892,61405c7d-6227-4c9f-9cce-2245c0ea4266,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34893,61405c7d-6227-4c9f-9cce-2245c0ea4266,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34894,f26b3ad0-50e6-49ad-b061-b87b66fad3ec,LIST_ACCOUNTS,hbciListAccounts,false -34895,f26b3ad0-50e6-49ad-b061-b87b66fad3ec,LIST_TRANSACTIONS,hbciListTransactions,false -34896,f26b3ad0-50e6-49ad-b061-b87b66fad3ec,AUTHORIZATION,,false -34897,f26b3ad0-50e6-49ad-b061-b87b66fad3ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34898,f26b3ad0-50e6-49ad-b061-b87b66fad3ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34899,f26b3ad0-50e6-49ad-b061-b87b66fad3ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34894,73a12adb-f62b-4ee4-84e6-b200d7e8b09b,LIST_ACCOUNTS,hbciListAccounts,false +34895,73a12adb-f62b-4ee4-84e6-b200d7e8b09b,LIST_TRANSACTIONS,hbciListTransactions,false +34896,73a12adb-f62b-4ee4-84e6-b200d7e8b09b,AUTHORIZATION,,false +34897,73a12adb-f62b-4ee4-84e6-b200d7e8b09b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34898,73a12adb-f62b-4ee4-84e6-b200d7e8b09b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34899,73a12adb-f62b-4ee4-84e6-b200d7e8b09b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34900,58be120d-d31a-4169-9fd5-a299641f5b89,LIST_ACCOUNTS,xs2aListAccounts,true -34901,58be120d-d31a-4169-9fd5-a299641f5b89,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34901,58be120d-d31a-4169-9fd5-a299641f5b89,LIST_TRANSACTIONS,xs2aListTransactions,true 34902,58be120d-d31a-4169-9fd5-a299641f5b89,AUTHORIZATION,,true 34903,58be120d-d31a-4169-9fd5-a299641f5b89,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34904,58be120d-d31a-4169-9fd5-a299641f5b89,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34905,58be120d-d31a-4169-9fd5-a299641f5b89,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34906,9bac3446-7bc2-4876-995a-f2f90f3f9087,LIST_ACCOUNTS,hbciListAccounts,false -34907,9bac3446-7bc2-4876-995a-f2f90f3f9087,LIST_TRANSACTIONS,hbciListTransactions,false -34908,9bac3446-7bc2-4876-995a-f2f90f3f9087,AUTHORIZATION,,false -34909,9bac3446-7bc2-4876-995a-f2f90f3f9087,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34910,9bac3446-7bc2-4876-995a-f2f90f3f9087,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34911,9bac3446-7bc2-4876-995a-f2f90f3f9087,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34906,06fd657b-c4ee-44a9-919f-565671b84bf7,LIST_ACCOUNTS,hbciListAccounts,false +34907,06fd657b-c4ee-44a9-919f-565671b84bf7,LIST_TRANSACTIONS,hbciListTransactions,false +34908,06fd657b-c4ee-44a9-919f-565671b84bf7,AUTHORIZATION,,false +34909,06fd657b-c4ee-44a9-919f-565671b84bf7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34910,06fd657b-c4ee-44a9-919f-565671b84bf7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34911,06fd657b-c4ee-44a9-919f-565671b84bf7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34912,5d2850b4-596c-43d6-867b-142489bb75a6,LIST_ACCOUNTS,xs2aListAccounts,true -34913,5d2850b4-596c-43d6-867b-142489bb75a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34913,5d2850b4-596c-43d6-867b-142489bb75a6,LIST_TRANSACTIONS,xs2aListTransactions,true 34914,5d2850b4-596c-43d6-867b-142489bb75a6,AUTHORIZATION,,true 34915,5d2850b4-596c-43d6-867b-142489bb75a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34916,5d2850b4-596c-43d6-867b-142489bb75a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34917,5d2850b4-596c-43d6-867b-142489bb75a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34918,030447be-b39e-4664-a662-41bb45adf012,LIST_ACCOUNTS,hbciListAccounts,false -34919,030447be-b39e-4664-a662-41bb45adf012,LIST_TRANSACTIONS,hbciListTransactions,false -34920,030447be-b39e-4664-a662-41bb45adf012,AUTHORIZATION,,false -34921,030447be-b39e-4664-a662-41bb45adf012,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34922,030447be-b39e-4664-a662-41bb45adf012,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34923,030447be-b39e-4664-a662-41bb45adf012,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34918,980c83c5-64a0-4813-97b3-d41a6f6d729f,LIST_ACCOUNTS,hbciListAccounts,false +34919,980c83c5-64a0-4813-97b3-d41a6f6d729f,LIST_TRANSACTIONS,hbciListTransactions,false +34920,980c83c5-64a0-4813-97b3-d41a6f6d729f,AUTHORIZATION,,false +34921,980c83c5-64a0-4813-97b3-d41a6f6d729f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34922,980c83c5-64a0-4813-97b3-d41a6f6d729f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34923,980c83c5-64a0-4813-97b3-d41a6f6d729f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34924,ff6e3cdb-58da-40d1-8873-c36ef7bef361,LIST_ACCOUNTS,xs2aListAccounts,true -34925,ff6e3cdb-58da-40d1-8873-c36ef7bef361,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34925,ff6e3cdb-58da-40d1-8873-c36ef7bef361,LIST_TRANSACTIONS,xs2aListTransactions,true 34926,ff6e3cdb-58da-40d1-8873-c36ef7bef361,AUTHORIZATION,,true 34927,ff6e3cdb-58da-40d1-8873-c36ef7bef361,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34928,ff6e3cdb-58da-40d1-8873-c36ef7bef361,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34929,ff6e3cdb-58da-40d1-8873-c36ef7bef361,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34930,47490e3c-709d-4cf2-96ea-d508fbb9f693,LIST_ACCOUNTS,hbciListAccounts,false -34931,47490e3c-709d-4cf2-96ea-d508fbb9f693,LIST_TRANSACTIONS,hbciListTransactions,false -34932,47490e3c-709d-4cf2-96ea-d508fbb9f693,AUTHORIZATION,,false -34933,47490e3c-709d-4cf2-96ea-d508fbb9f693,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34934,47490e3c-709d-4cf2-96ea-d508fbb9f693,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34935,47490e3c-709d-4cf2-96ea-d508fbb9f693,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34930,7dcc37dd-4641-4e4e-b95f-64ebbbb28c9e,LIST_ACCOUNTS,hbciListAccounts,false +34931,7dcc37dd-4641-4e4e-b95f-64ebbbb28c9e,LIST_TRANSACTIONS,hbciListTransactions,false +34932,7dcc37dd-4641-4e4e-b95f-64ebbbb28c9e,AUTHORIZATION,,false +34933,7dcc37dd-4641-4e4e-b95f-64ebbbb28c9e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34934,7dcc37dd-4641-4e4e-b95f-64ebbbb28c9e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34935,7dcc37dd-4641-4e4e-b95f-64ebbbb28c9e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34936,47d58a47-55cc-444c-8490-4dc9e2e5cf00,LIST_ACCOUNTS,xs2aListAccounts,true -34937,47d58a47-55cc-444c-8490-4dc9e2e5cf00,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34937,47d58a47-55cc-444c-8490-4dc9e2e5cf00,LIST_TRANSACTIONS,xs2aListTransactions,true 34938,47d58a47-55cc-444c-8490-4dc9e2e5cf00,AUTHORIZATION,,true 34939,47d58a47-55cc-444c-8490-4dc9e2e5cf00,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34940,47d58a47-55cc-444c-8490-4dc9e2e5cf00,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34941,47d58a47-55cc-444c-8490-4dc9e2e5cf00,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34942,b8f5d3cb-a481-4766-a381-d4ad6ad4d856,LIST_ACCOUNTS,hbciListAccounts,false -34943,b8f5d3cb-a481-4766-a381-d4ad6ad4d856,LIST_TRANSACTIONS,hbciListTransactions,false -34944,b8f5d3cb-a481-4766-a381-d4ad6ad4d856,AUTHORIZATION,,false -34945,b8f5d3cb-a481-4766-a381-d4ad6ad4d856,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34946,b8f5d3cb-a481-4766-a381-d4ad6ad4d856,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34947,b8f5d3cb-a481-4766-a381-d4ad6ad4d856,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34942,97c5ba9a-6913-49fc-8900-69ef73baa862,LIST_ACCOUNTS,hbciListAccounts,false +34943,97c5ba9a-6913-49fc-8900-69ef73baa862,LIST_TRANSACTIONS,hbciListTransactions,false +34944,97c5ba9a-6913-49fc-8900-69ef73baa862,AUTHORIZATION,,false +34945,97c5ba9a-6913-49fc-8900-69ef73baa862,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34946,97c5ba9a-6913-49fc-8900-69ef73baa862,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34947,97c5ba9a-6913-49fc-8900-69ef73baa862,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34948,37fd6efa-c12e-483e-953a-9752a8ea884c,LIST_ACCOUNTS,xs2aListAccounts,true -34949,37fd6efa-c12e-483e-953a-9752a8ea884c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34949,37fd6efa-c12e-483e-953a-9752a8ea884c,LIST_TRANSACTIONS,xs2aListTransactions,true 34950,37fd6efa-c12e-483e-953a-9752a8ea884c,AUTHORIZATION,,true 34951,37fd6efa-c12e-483e-953a-9752a8ea884c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34952,37fd6efa-c12e-483e-953a-9752a8ea884c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34953,37fd6efa-c12e-483e-953a-9752a8ea884c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34954,44d47f06-f790-4ec4-8189-069ad78d443b,LIST_ACCOUNTS,hbciListAccounts,false -34955,44d47f06-f790-4ec4-8189-069ad78d443b,LIST_TRANSACTIONS,hbciListTransactions,false -34956,44d47f06-f790-4ec4-8189-069ad78d443b,AUTHORIZATION,,false -34957,44d47f06-f790-4ec4-8189-069ad78d443b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34958,44d47f06-f790-4ec4-8189-069ad78d443b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34959,44d47f06-f790-4ec4-8189-069ad78d443b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34954,312ca533-3ff7-43b6-a27b-165ab917a2a0,LIST_ACCOUNTS,hbciListAccounts,false +34955,312ca533-3ff7-43b6-a27b-165ab917a2a0,LIST_TRANSACTIONS,hbciListTransactions,false +34956,312ca533-3ff7-43b6-a27b-165ab917a2a0,AUTHORIZATION,,false +34957,312ca533-3ff7-43b6-a27b-165ab917a2a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34958,312ca533-3ff7-43b6-a27b-165ab917a2a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34959,312ca533-3ff7-43b6-a27b-165ab917a2a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34960,cf17d7d5-a4e1-4bf4-9b82-9beaf9ea9a2e,LIST_ACCOUNTS,xs2aListAccounts,true -34961,cf17d7d5-a4e1-4bf4-9b82-9beaf9ea9a2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34961,cf17d7d5-a4e1-4bf4-9b82-9beaf9ea9a2e,LIST_TRANSACTIONS,xs2aListTransactions,true 34962,cf17d7d5-a4e1-4bf4-9b82-9beaf9ea9a2e,AUTHORIZATION,,true 34963,cf17d7d5-a4e1-4bf4-9b82-9beaf9ea9a2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34964,cf17d7d5-a4e1-4bf4-9b82-9beaf9ea9a2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34965,cf17d7d5-a4e1-4bf4-9b82-9beaf9ea9a2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34966,6ab13401-1a53-4257-9833-f634cd4fdbf1,LIST_ACCOUNTS,hbciListAccounts,false -34967,6ab13401-1a53-4257-9833-f634cd4fdbf1,LIST_TRANSACTIONS,hbciListTransactions,false -34968,6ab13401-1a53-4257-9833-f634cd4fdbf1,AUTHORIZATION,,false -34969,6ab13401-1a53-4257-9833-f634cd4fdbf1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34970,6ab13401-1a53-4257-9833-f634cd4fdbf1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34971,6ab13401-1a53-4257-9833-f634cd4fdbf1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34966,0ac8cef1-dfe8-4583-b054-0962c1cd1a61,LIST_ACCOUNTS,hbciListAccounts,false +34967,0ac8cef1-dfe8-4583-b054-0962c1cd1a61,LIST_TRANSACTIONS,hbciListTransactions,false +34968,0ac8cef1-dfe8-4583-b054-0962c1cd1a61,AUTHORIZATION,,false +34969,0ac8cef1-dfe8-4583-b054-0962c1cd1a61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34970,0ac8cef1-dfe8-4583-b054-0962c1cd1a61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34971,0ac8cef1-dfe8-4583-b054-0962c1cd1a61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34972,6dd7e28f-e150-4d9c-97e3-ae40941fc217,LIST_ACCOUNTS,xs2aListAccounts,true -34973,6dd7e28f-e150-4d9c-97e3-ae40941fc217,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34973,6dd7e28f-e150-4d9c-97e3-ae40941fc217,LIST_TRANSACTIONS,xs2aListTransactions,true 34974,6dd7e28f-e150-4d9c-97e3-ae40941fc217,AUTHORIZATION,,true 34975,6dd7e28f-e150-4d9c-97e3-ae40941fc217,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34976,6dd7e28f-e150-4d9c-97e3-ae40941fc217,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34977,6dd7e28f-e150-4d9c-97e3-ae40941fc217,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34978,1ca2a25f-62c5-4e2c-9f33-adb195760121,LIST_ACCOUNTS,hbciListAccounts,false -34979,1ca2a25f-62c5-4e2c-9f33-adb195760121,LIST_TRANSACTIONS,hbciListTransactions,false -34980,1ca2a25f-62c5-4e2c-9f33-adb195760121,AUTHORIZATION,,false -34981,1ca2a25f-62c5-4e2c-9f33-adb195760121,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34982,1ca2a25f-62c5-4e2c-9f33-adb195760121,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34983,1ca2a25f-62c5-4e2c-9f33-adb195760121,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34978,874a69be-a2b5-47d6-a1b1-989d25a8afc2,LIST_ACCOUNTS,hbciListAccounts,false +34979,874a69be-a2b5-47d6-a1b1-989d25a8afc2,LIST_TRANSACTIONS,hbciListTransactions,false +34980,874a69be-a2b5-47d6-a1b1-989d25a8afc2,AUTHORIZATION,,false +34981,874a69be-a2b5-47d6-a1b1-989d25a8afc2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34982,874a69be-a2b5-47d6-a1b1-989d25a8afc2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34983,874a69be-a2b5-47d6-a1b1-989d25a8afc2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34984,a8ccdcd5-6fc7-4652-8882-556d37b39f09,LIST_ACCOUNTS,xs2aListAccounts,true -34985,a8ccdcd5-6fc7-4652-8882-556d37b39f09,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34985,a8ccdcd5-6fc7-4652-8882-556d37b39f09,LIST_TRANSACTIONS,xs2aListTransactions,true 34986,a8ccdcd5-6fc7-4652-8882-556d37b39f09,AUTHORIZATION,,true 34987,a8ccdcd5-6fc7-4652-8882-556d37b39f09,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 34988,a8ccdcd5-6fc7-4652-8882-556d37b39f09,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 34989,a8ccdcd5-6fc7-4652-8882-556d37b39f09,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -34990,e8942c4b-950d-472c-ac04-327032bdbb5b,LIST_ACCOUNTS,hbciListAccounts,false -34991,e8942c4b-950d-472c-ac04-327032bdbb5b,LIST_TRANSACTIONS,hbciListTransactions,false -34992,e8942c4b-950d-472c-ac04-327032bdbb5b,AUTHORIZATION,,false -34993,e8942c4b-950d-472c-ac04-327032bdbb5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -34994,e8942c4b-950d-472c-ac04-327032bdbb5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -34995,e8942c4b-950d-472c-ac04-327032bdbb5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +34990,3da5668b-72bb-4a09-8f85-aa350bd31aa6,LIST_ACCOUNTS,hbciListAccounts,false +34991,3da5668b-72bb-4a09-8f85-aa350bd31aa6,LIST_TRANSACTIONS,hbciListTransactions,false +34992,3da5668b-72bb-4a09-8f85-aa350bd31aa6,AUTHORIZATION,,false +34993,3da5668b-72bb-4a09-8f85-aa350bd31aa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +34994,3da5668b-72bb-4a09-8f85-aa350bd31aa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +34995,3da5668b-72bb-4a09-8f85-aa350bd31aa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 34996,1a0e8649-e5f6-4094-860a-8ae6437eb511,LIST_ACCOUNTS,xs2aListAccounts,true -34997,1a0e8649-e5f6-4094-860a-8ae6437eb511,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +34997,1a0e8649-e5f6-4094-860a-8ae6437eb511,LIST_TRANSACTIONS,xs2aListTransactions,true 34998,1a0e8649-e5f6-4094-860a-8ae6437eb511,AUTHORIZATION,,true 34999,1a0e8649-e5f6-4094-860a-8ae6437eb511,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35000,1a0e8649-e5f6-4094-860a-8ae6437eb511,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35001,1a0e8649-e5f6-4094-860a-8ae6437eb511,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35002,7d39c6ad-0144-417a-ac0e-b032eb9763e8,LIST_ACCOUNTS,hbciListAccounts,false -35003,7d39c6ad-0144-417a-ac0e-b032eb9763e8,LIST_TRANSACTIONS,hbciListTransactions,false -35004,7d39c6ad-0144-417a-ac0e-b032eb9763e8,AUTHORIZATION,,false -35005,7d39c6ad-0144-417a-ac0e-b032eb9763e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35006,7d39c6ad-0144-417a-ac0e-b032eb9763e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35007,7d39c6ad-0144-417a-ac0e-b032eb9763e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35002,10e326eb-d59d-4078-8c02-8289e57eb57d,LIST_ACCOUNTS,hbciListAccounts,false +35003,10e326eb-d59d-4078-8c02-8289e57eb57d,LIST_TRANSACTIONS,hbciListTransactions,false +35004,10e326eb-d59d-4078-8c02-8289e57eb57d,AUTHORIZATION,,false +35005,10e326eb-d59d-4078-8c02-8289e57eb57d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35006,10e326eb-d59d-4078-8c02-8289e57eb57d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35007,10e326eb-d59d-4078-8c02-8289e57eb57d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35008,72f0f2e0-04d4-40ee-b62c-37eb6dacdfc4,LIST_ACCOUNTS,xs2aListAccounts,true -35009,72f0f2e0-04d4-40ee-b62c-37eb6dacdfc4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35009,72f0f2e0-04d4-40ee-b62c-37eb6dacdfc4,LIST_TRANSACTIONS,xs2aListTransactions,true 35010,72f0f2e0-04d4-40ee-b62c-37eb6dacdfc4,AUTHORIZATION,,true 35011,72f0f2e0-04d4-40ee-b62c-37eb6dacdfc4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35012,72f0f2e0-04d4-40ee-b62c-37eb6dacdfc4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35013,72f0f2e0-04d4-40ee-b62c-37eb6dacdfc4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35014,e3453c2b-0697-44c8-aecd-e760c396e4ef,LIST_ACCOUNTS,hbciListAccounts,false -35015,e3453c2b-0697-44c8-aecd-e760c396e4ef,LIST_TRANSACTIONS,hbciListTransactions,false -35016,e3453c2b-0697-44c8-aecd-e760c396e4ef,AUTHORIZATION,,false -35017,e3453c2b-0697-44c8-aecd-e760c396e4ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35018,e3453c2b-0697-44c8-aecd-e760c396e4ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35019,e3453c2b-0697-44c8-aecd-e760c396e4ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35014,439e478b-1058-4d18-b5ab-40c2e664782b,LIST_ACCOUNTS,hbciListAccounts,false +35015,439e478b-1058-4d18-b5ab-40c2e664782b,LIST_TRANSACTIONS,hbciListTransactions,false +35016,439e478b-1058-4d18-b5ab-40c2e664782b,AUTHORIZATION,,false +35017,439e478b-1058-4d18-b5ab-40c2e664782b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35018,439e478b-1058-4d18-b5ab-40c2e664782b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35019,439e478b-1058-4d18-b5ab-40c2e664782b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35020,0898441e-adae-43fe-9f1a-7bd844e585f1,LIST_ACCOUNTS,xs2aListAccounts,true -35021,0898441e-adae-43fe-9f1a-7bd844e585f1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35021,0898441e-adae-43fe-9f1a-7bd844e585f1,LIST_TRANSACTIONS,xs2aListTransactions,true 35022,0898441e-adae-43fe-9f1a-7bd844e585f1,AUTHORIZATION,,true 35023,0898441e-adae-43fe-9f1a-7bd844e585f1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35024,0898441e-adae-43fe-9f1a-7bd844e585f1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35025,0898441e-adae-43fe-9f1a-7bd844e585f1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35026,017d374d-d487-4253-a8d4-c7ddf5a99a64,LIST_ACCOUNTS,hbciListAccounts,false -35027,017d374d-d487-4253-a8d4-c7ddf5a99a64,LIST_TRANSACTIONS,hbciListTransactions,false -35028,017d374d-d487-4253-a8d4-c7ddf5a99a64,AUTHORIZATION,,false -35029,017d374d-d487-4253-a8d4-c7ddf5a99a64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35030,017d374d-d487-4253-a8d4-c7ddf5a99a64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35031,017d374d-d487-4253-a8d4-c7ddf5a99a64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35026,37a865ba-98df-43fd-8188-bd6ee6d3fbe0,LIST_ACCOUNTS,hbciListAccounts,false +35027,37a865ba-98df-43fd-8188-bd6ee6d3fbe0,LIST_TRANSACTIONS,hbciListTransactions,false +35028,37a865ba-98df-43fd-8188-bd6ee6d3fbe0,AUTHORIZATION,,false +35029,37a865ba-98df-43fd-8188-bd6ee6d3fbe0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35030,37a865ba-98df-43fd-8188-bd6ee6d3fbe0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35031,37a865ba-98df-43fd-8188-bd6ee6d3fbe0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35032,5d8f2aa4-cc24-43bd-9418-85b7703c3a5a,LIST_ACCOUNTS,xs2aListAccounts,true -35033,5d8f2aa4-cc24-43bd-9418-85b7703c3a5a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35033,5d8f2aa4-cc24-43bd-9418-85b7703c3a5a,LIST_TRANSACTIONS,xs2aListTransactions,true 35034,5d8f2aa4-cc24-43bd-9418-85b7703c3a5a,AUTHORIZATION,,true 35035,5d8f2aa4-cc24-43bd-9418-85b7703c3a5a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35036,5d8f2aa4-cc24-43bd-9418-85b7703c3a5a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35037,5d8f2aa4-cc24-43bd-9418-85b7703c3a5a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35038,db607ad8-52a4-41b6-9a6a-458155dc7e38,LIST_ACCOUNTS,hbciListAccounts,false -35039,db607ad8-52a4-41b6-9a6a-458155dc7e38,LIST_TRANSACTIONS,hbciListTransactions,false -35040,db607ad8-52a4-41b6-9a6a-458155dc7e38,AUTHORIZATION,,false -35041,db607ad8-52a4-41b6-9a6a-458155dc7e38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35042,db607ad8-52a4-41b6-9a6a-458155dc7e38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35043,db607ad8-52a4-41b6-9a6a-458155dc7e38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35038,1a72533b-07f7-420f-93dc-c1ee2ddd3295,LIST_ACCOUNTS,hbciListAccounts,false +35039,1a72533b-07f7-420f-93dc-c1ee2ddd3295,LIST_TRANSACTIONS,hbciListTransactions,false +35040,1a72533b-07f7-420f-93dc-c1ee2ddd3295,AUTHORIZATION,,false +35041,1a72533b-07f7-420f-93dc-c1ee2ddd3295,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35042,1a72533b-07f7-420f-93dc-c1ee2ddd3295,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35043,1a72533b-07f7-420f-93dc-c1ee2ddd3295,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35044,330fc950-9464-42c6-ac87-fa2000e35494,LIST_ACCOUNTS,xs2aListAccounts,true -35045,330fc950-9464-42c6-ac87-fa2000e35494,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35045,330fc950-9464-42c6-ac87-fa2000e35494,LIST_TRANSACTIONS,xs2aListTransactions,true 35046,330fc950-9464-42c6-ac87-fa2000e35494,AUTHORIZATION,,true 35047,330fc950-9464-42c6-ac87-fa2000e35494,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35048,330fc950-9464-42c6-ac87-fa2000e35494,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35049,330fc950-9464-42c6-ac87-fa2000e35494,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35050,85d5da2a-0c68-4e7b-abf1-727e7a9ccd2e,LIST_ACCOUNTS,hbciListAccounts,false -35051,85d5da2a-0c68-4e7b-abf1-727e7a9ccd2e,LIST_TRANSACTIONS,hbciListTransactions,false -35052,85d5da2a-0c68-4e7b-abf1-727e7a9ccd2e,AUTHORIZATION,,false -35053,85d5da2a-0c68-4e7b-abf1-727e7a9ccd2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35054,85d5da2a-0c68-4e7b-abf1-727e7a9ccd2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35055,85d5da2a-0c68-4e7b-abf1-727e7a9ccd2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35050,1ff08f69-13b8-4f14-86b0-84f04676c886,LIST_ACCOUNTS,hbciListAccounts,false +35051,1ff08f69-13b8-4f14-86b0-84f04676c886,LIST_TRANSACTIONS,hbciListTransactions,false +35052,1ff08f69-13b8-4f14-86b0-84f04676c886,AUTHORIZATION,,false +35053,1ff08f69-13b8-4f14-86b0-84f04676c886,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35054,1ff08f69-13b8-4f14-86b0-84f04676c886,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35055,1ff08f69-13b8-4f14-86b0-84f04676c886,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35056,51533fab-d814-4ef5-a4ed-39fe1df6dd72,LIST_ACCOUNTS,xs2aListAccounts,true -35057,51533fab-d814-4ef5-a4ed-39fe1df6dd72,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35057,51533fab-d814-4ef5-a4ed-39fe1df6dd72,LIST_TRANSACTIONS,xs2aListTransactions,true 35058,51533fab-d814-4ef5-a4ed-39fe1df6dd72,AUTHORIZATION,,true 35059,51533fab-d814-4ef5-a4ed-39fe1df6dd72,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35060,51533fab-d814-4ef5-a4ed-39fe1df6dd72,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35061,51533fab-d814-4ef5-a4ed-39fe1df6dd72,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35062,4484e745-000e-4137-a03a-da9316545a1a,LIST_ACCOUNTS,hbciListAccounts,false -35063,4484e745-000e-4137-a03a-da9316545a1a,LIST_TRANSACTIONS,hbciListTransactions,false -35064,4484e745-000e-4137-a03a-da9316545a1a,AUTHORIZATION,,false -35065,4484e745-000e-4137-a03a-da9316545a1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35066,4484e745-000e-4137-a03a-da9316545a1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35067,4484e745-000e-4137-a03a-da9316545a1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35062,aa5bee6e-ccc2-4556-8118-7c2391ed0444,LIST_ACCOUNTS,hbciListAccounts,false +35063,aa5bee6e-ccc2-4556-8118-7c2391ed0444,LIST_TRANSACTIONS,hbciListTransactions,false +35064,aa5bee6e-ccc2-4556-8118-7c2391ed0444,AUTHORIZATION,,false +35065,aa5bee6e-ccc2-4556-8118-7c2391ed0444,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35066,aa5bee6e-ccc2-4556-8118-7c2391ed0444,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35067,aa5bee6e-ccc2-4556-8118-7c2391ed0444,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35068,969b50f7-6e3b-49af-a30f-2bfc8c679c38,LIST_ACCOUNTS,xs2aListAccounts,true -35069,969b50f7-6e3b-49af-a30f-2bfc8c679c38,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35069,969b50f7-6e3b-49af-a30f-2bfc8c679c38,LIST_TRANSACTIONS,xs2aListTransactions,true 35070,969b50f7-6e3b-49af-a30f-2bfc8c679c38,AUTHORIZATION,,true 35071,969b50f7-6e3b-49af-a30f-2bfc8c679c38,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35072,969b50f7-6e3b-49af-a30f-2bfc8c679c38,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35073,969b50f7-6e3b-49af-a30f-2bfc8c679c38,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35074,d0bcc6d3-30cd-4fea-a590-644527a6c954,LIST_ACCOUNTS,hbciListAccounts,false -35075,d0bcc6d3-30cd-4fea-a590-644527a6c954,LIST_TRANSACTIONS,hbciListTransactions,false -35076,d0bcc6d3-30cd-4fea-a590-644527a6c954,AUTHORIZATION,,false -35077,d0bcc6d3-30cd-4fea-a590-644527a6c954,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35078,d0bcc6d3-30cd-4fea-a590-644527a6c954,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35079,d0bcc6d3-30cd-4fea-a590-644527a6c954,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35074,9c57ccf4-b116-4b95-b9c2-fed7b8d2e232,LIST_ACCOUNTS,hbciListAccounts,false +35075,9c57ccf4-b116-4b95-b9c2-fed7b8d2e232,LIST_TRANSACTIONS,hbciListTransactions,false +35076,9c57ccf4-b116-4b95-b9c2-fed7b8d2e232,AUTHORIZATION,,false +35077,9c57ccf4-b116-4b95-b9c2-fed7b8d2e232,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35078,9c57ccf4-b116-4b95-b9c2-fed7b8d2e232,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35079,9c57ccf4-b116-4b95-b9c2-fed7b8d2e232,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35080,6677ea3c-88ce-41c2-b603-fe62ce65b122,LIST_ACCOUNTS,xs2aListAccounts,true -35081,6677ea3c-88ce-41c2-b603-fe62ce65b122,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35081,6677ea3c-88ce-41c2-b603-fe62ce65b122,LIST_TRANSACTIONS,xs2aListTransactions,true 35082,6677ea3c-88ce-41c2-b603-fe62ce65b122,AUTHORIZATION,,true 35083,6677ea3c-88ce-41c2-b603-fe62ce65b122,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35084,6677ea3c-88ce-41c2-b603-fe62ce65b122,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35085,6677ea3c-88ce-41c2-b603-fe62ce65b122,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35086,5f045273-c8d5-4902-b876-4ef68f05eeb6,LIST_ACCOUNTS,hbciListAccounts,false -35087,5f045273-c8d5-4902-b876-4ef68f05eeb6,LIST_TRANSACTIONS,hbciListTransactions,false -35088,5f045273-c8d5-4902-b876-4ef68f05eeb6,AUTHORIZATION,,false -35089,5f045273-c8d5-4902-b876-4ef68f05eeb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35090,5f045273-c8d5-4902-b876-4ef68f05eeb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35091,5f045273-c8d5-4902-b876-4ef68f05eeb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35086,36e1e7d6-ff70-4198-a888-204664539053,LIST_ACCOUNTS,hbciListAccounts,false +35087,36e1e7d6-ff70-4198-a888-204664539053,LIST_TRANSACTIONS,hbciListTransactions,false +35088,36e1e7d6-ff70-4198-a888-204664539053,AUTHORIZATION,,false +35089,36e1e7d6-ff70-4198-a888-204664539053,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35090,36e1e7d6-ff70-4198-a888-204664539053,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35091,36e1e7d6-ff70-4198-a888-204664539053,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35092,fe8c96d3-1761-4c65-b454-75ef663a20e3,LIST_ACCOUNTS,xs2aListAccounts,true -35093,fe8c96d3-1761-4c65-b454-75ef663a20e3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35093,fe8c96d3-1761-4c65-b454-75ef663a20e3,LIST_TRANSACTIONS,xs2aListTransactions,true 35094,fe8c96d3-1761-4c65-b454-75ef663a20e3,AUTHORIZATION,,true 35095,fe8c96d3-1761-4c65-b454-75ef663a20e3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35096,fe8c96d3-1761-4c65-b454-75ef663a20e3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35097,fe8c96d3-1761-4c65-b454-75ef663a20e3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35098,65bed199-ffb0-4715-845a-45e501d6d2e2,LIST_ACCOUNTS,hbciListAccounts,false -35099,65bed199-ffb0-4715-845a-45e501d6d2e2,LIST_TRANSACTIONS,hbciListTransactions,false -35100,65bed199-ffb0-4715-845a-45e501d6d2e2,AUTHORIZATION,,false -35101,65bed199-ffb0-4715-845a-45e501d6d2e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35102,65bed199-ffb0-4715-845a-45e501d6d2e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35103,65bed199-ffb0-4715-845a-45e501d6d2e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35098,9e466be6-c76f-49d0-aa0a-c5508a598942,LIST_ACCOUNTS,hbciListAccounts,false +35099,9e466be6-c76f-49d0-aa0a-c5508a598942,LIST_TRANSACTIONS,hbciListTransactions,false +35100,9e466be6-c76f-49d0-aa0a-c5508a598942,AUTHORIZATION,,false +35101,9e466be6-c76f-49d0-aa0a-c5508a598942,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35102,9e466be6-c76f-49d0-aa0a-c5508a598942,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35103,9e466be6-c76f-49d0-aa0a-c5508a598942,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35104,eff7a255-2df1-465c-81e4-075876564ddb,LIST_ACCOUNTS,xs2aListAccounts,true -35105,eff7a255-2df1-465c-81e4-075876564ddb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35105,eff7a255-2df1-465c-81e4-075876564ddb,LIST_TRANSACTIONS,xs2aListTransactions,true 35106,eff7a255-2df1-465c-81e4-075876564ddb,AUTHORIZATION,,true 35107,eff7a255-2df1-465c-81e4-075876564ddb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35108,eff7a255-2df1-465c-81e4-075876564ddb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35109,eff7a255-2df1-465c-81e4-075876564ddb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35110,63785cbe-8d07-476f-aab1-46d29f370ec1,LIST_ACCOUNTS,hbciListAccounts,false -35111,63785cbe-8d07-476f-aab1-46d29f370ec1,LIST_TRANSACTIONS,hbciListTransactions,false -35112,63785cbe-8d07-476f-aab1-46d29f370ec1,AUTHORIZATION,,false -35113,63785cbe-8d07-476f-aab1-46d29f370ec1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35114,63785cbe-8d07-476f-aab1-46d29f370ec1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35115,63785cbe-8d07-476f-aab1-46d29f370ec1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35110,0a169cc5-7187-45a6-b4ec-142bc009d0b8,LIST_ACCOUNTS,hbciListAccounts,false +35111,0a169cc5-7187-45a6-b4ec-142bc009d0b8,LIST_TRANSACTIONS,hbciListTransactions,false +35112,0a169cc5-7187-45a6-b4ec-142bc009d0b8,AUTHORIZATION,,false +35113,0a169cc5-7187-45a6-b4ec-142bc009d0b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35114,0a169cc5-7187-45a6-b4ec-142bc009d0b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35115,0a169cc5-7187-45a6-b4ec-142bc009d0b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35116,31c8d506-6d3d-430e-aaf9-d6c3623bad4f,LIST_ACCOUNTS,xs2aListAccounts,true -35117,31c8d506-6d3d-430e-aaf9-d6c3623bad4f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35117,31c8d506-6d3d-430e-aaf9-d6c3623bad4f,LIST_TRANSACTIONS,xs2aListTransactions,true 35118,31c8d506-6d3d-430e-aaf9-d6c3623bad4f,AUTHORIZATION,,true 35119,31c8d506-6d3d-430e-aaf9-d6c3623bad4f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35120,31c8d506-6d3d-430e-aaf9-d6c3623bad4f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35121,31c8d506-6d3d-430e-aaf9-d6c3623bad4f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35122,25d9b9c2-2e34-43b3-8fc9-83d6b95026fe,LIST_ACCOUNTS,hbciListAccounts,false -35123,25d9b9c2-2e34-43b3-8fc9-83d6b95026fe,LIST_TRANSACTIONS,hbciListTransactions,false -35124,25d9b9c2-2e34-43b3-8fc9-83d6b95026fe,AUTHORIZATION,,false -35125,25d9b9c2-2e34-43b3-8fc9-83d6b95026fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35126,25d9b9c2-2e34-43b3-8fc9-83d6b95026fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35127,25d9b9c2-2e34-43b3-8fc9-83d6b95026fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35122,87a79464-0abe-49e1-b6f1-660b6e4b8dbd,LIST_ACCOUNTS,hbciListAccounts,false +35123,87a79464-0abe-49e1-b6f1-660b6e4b8dbd,LIST_TRANSACTIONS,hbciListTransactions,false +35124,87a79464-0abe-49e1-b6f1-660b6e4b8dbd,AUTHORIZATION,,false +35125,87a79464-0abe-49e1-b6f1-660b6e4b8dbd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35126,87a79464-0abe-49e1-b6f1-660b6e4b8dbd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35127,87a79464-0abe-49e1-b6f1-660b6e4b8dbd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35128,23439450-694f-45d0-b768-b2981debc76b,LIST_ACCOUNTS,xs2aListAccounts,true -35129,23439450-694f-45d0-b768-b2981debc76b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35129,23439450-694f-45d0-b768-b2981debc76b,LIST_TRANSACTIONS,xs2aListTransactions,true 35130,23439450-694f-45d0-b768-b2981debc76b,AUTHORIZATION,,true 35131,23439450-694f-45d0-b768-b2981debc76b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35132,23439450-694f-45d0-b768-b2981debc76b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35133,23439450-694f-45d0-b768-b2981debc76b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35134,8f5fa8d8-c12c-4c5d-9938-77faed63f942,LIST_ACCOUNTS,hbciListAccounts,false -35135,8f5fa8d8-c12c-4c5d-9938-77faed63f942,LIST_TRANSACTIONS,hbciListTransactions,false -35136,8f5fa8d8-c12c-4c5d-9938-77faed63f942,AUTHORIZATION,,false -35137,8f5fa8d8-c12c-4c5d-9938-77faed63f942,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35138,8f5fa8d8-c12c-4c5d-9938-77faed63f942,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35139,8f5fa8d8-c12c-4c5d-9938-77faed63f942,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35134,87a338cb-cf80-4694-bd36-2e956ba27439,LIST_ACCOUNTS,hbciListAccounts,false +35135,87a338cb-cf80-4694-bd36-2e956ba27439,LIST_TRANSACTIONS,hbciListTransactions,false +35136,87a338cb-cf80-4694-bd36-2e956ba27439,AUTHORIZATION,,false +35137,87a338cb-cf80-4694-bd36-2e956ba27439,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35138,87a338cb-cf80-4694-bd36-2e956ba27439,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35139,87a338cb-cf80-4694-bd36-2e956ba27439,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35140,cea3e813-3ce1-47b4-9261-3a24c480064e,LIST_ACCOUNTS,xs2aListAccounts,true -35141,cea3e813-3ce1-47b4-9261-3a24c480064e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35141,cea3e813-3ce1-47b4-9261-3a24c480064e,LIST_TRANSACTIONS,xs2aListTransactions,true 35142,cea3e813-3ce1-47b4-9261-3a24c480064e,AUTHORIZATION,,true 35143,cea3e813-3ce1-47b4-9261-3a24c480064e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35144,cea3e813-3ce1-47b4-9261-3a24c480064e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35145,cea3e813-3ce1-47b4-9261-3a24c480064e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35146,ebb4bd3c-29d0-4321-8226-b6231b6c2ee6,LIST_ACCOUNTS,hbciListAccounts,false -35147,ebb4bd3c-29d0-4321-8226-b6231b6c2ee6,LIST_TRANSACTIONS,hbciListTransactions,false -35148,ebb4bd3c-29d0-4321-8226-b6231b6c2ee6,AUTHORIZATION,,false -35149,ebb4bd3c-29d0-4321-8226-b6231b6c2ee6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35150,ebb4bd3c-29d0-4321-8226-b6231b6c2ee6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35151,ebb4bd3c-29d0-4321-8226-b6231b6c2ee6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35146,d572cd62-1e61-43b3-b95a-49afe9b5a898,LIST_ACCOUNTS,hbciListAccounts,false +35147,d572cd62-1e61-43b3-b95a-49afe9b5a898,LIST_TRANSACTIONS,hbciListTransactions,false +35148,d572cd62-1e61-43b3-b95a-49afe9b5a898,AUTHORIZATION,,false +35149,d572cd62-1e61-43b3-b95a-49afe9b5a898,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35150,d572cd62-1e61-43b3-b95a-49afe9b5a898,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35151,d572cd62-1e61-43b3-b95a-49afe9b5a898,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35152,d7c81740-fd06-4b2a-9152-a8679b508eb5,LIST_ACCOUNTS,xs2aListAccounts,true -35153,d7c81740-fd06-4b2a-9152-a8679b508eb5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35153,d7c81740-fd06-4b2a-9152-a8679b508eb5,LIST_TRANSACTIONS,xs2aListTransactions,true 35154,d7c81740-fd06-4b2a-9152-a8679b508eb5,AUTHORIZATION,,true 35155,d7c81740-fd06-4b2a-9152-a8679b508eb5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35156,d7c81740-fd06-4b2a-9152-a8679b508eb5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35157,d7c81740-fd06-4b2a-9152-a8679b508eb5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35158,9ed39761-80fa-4cbb-85c4-29416e4b59db,LIST_ACCOUNTS,hbciListAccounts,false -35159,9ed39761-80fa-4cbb-85c4-29416e4b59db,LIST_TRANSACTIONS,hbciListTransactions,false -35160,9ed39761-80fa-4cbb-85c4-29416e4b59db,AUTHORIZATION,,false -35161,9ed39761-80fa-4cbb-85c4-29416e4b59db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35162,9ed39761-80fa-4cbb-85c4-29416e4b59db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35163,9ed39761-80fa-4cbb-85c4-29416e4b59db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35158,08557592-54fc-4523-8bf2-f62162116062,LIST_ACCOUNTS,hbciListAccounts,false +35159,08557592-54fc-4523-8bf2-f62162116062,LIST_TRANSACTIONS,hbciListTransactions,false +35160,08557592-54fc-4523-8bf2-f62162116062,AUTHORIZATION,,false +35161,08557592-54fc-4523-8bf2-f62162116062,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35162,08557592-54fc-4523-8bf2-f62162116062,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35163,08557592-54fc-4523-8bf2-f62162116062,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35164,278691bb-bcff-42e2-a881-c4cb07f8cce9,LIST_ACCOUNTS,xs2aListAccounts,true -35165,278691bb-bcff-42e2-a881-c4cb07f8cce9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35165,278691bb-bcff-42e2-a881-c4cb07f8cce9,LIST_TRANSACTIONS,xs2aListTransactions,true 35166,278691bb-bcff-42e2-a881-c4cb07f8cce9,AUTHORIZATION,,true 35167,278691bb-bcff-42e2-a881-c4cb07f8cce9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35168,278691bb-bcff-42e2-a881-c4cb07f8cce9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35169,278691bb-bcff-42e2-a881-c4cb07f8cce9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35170,90e3c389-f7fc-4f98-b57d-7f3ea9cad227,LIST_ACCOUNTS,hbciListAccounts,false -35171,90e3c389-f7fc-4f98-b57d-7f3ea9cad227,LIST_TRANSACTIONS,hbciListTransactions,false -35172,90e3c389-f7fc-4f98-b57d-7f3ea9cad227,AUTHORIZATION,,false -35173,90e3c389-f7fc-4f98-b57d-7f3ea9cad227,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35174,90e3c389-f7fc-4f98-b57d-7f3ea9cad227,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35175,90e3c389-f7fc-4f98-b57d-7f3ea9cad227,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35170,e8f49fb3-6c41-4631-b2aa-cbe39d8aafbf,LIST_ACCOUNTS,hbciListAccounts,false +35171,e8f49fb3-6c41-4631-b2aa-cbe39d8aafbf,LIST_TRANSACTIONS,hbciListTransactions,false +35172,e8f49fb3-6c41-4631-b2aa-cbe39d8aafbf,AUTHORIZATION,,false +35173,e8f49fb3-6c41-4631-b2aa-cbe39d8aafbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35174,e8f49fb3-6c41-4631-b2aa-cbe39d8aafbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35175,e8f49fb3-6c41-4631-b2aa-cbe39d8aafbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35176,a0af56ac-884e-4b2c-a55c-b1a8fccec69a,LIST_ACCOUNTS,xs2aListAccounts,true -35177,a0af56ac-884e-4b2c-a55c-b1a8fccec69a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35177,a0af56ac-884e-4b2c-a55c-b1a8fccec69a,LIST_TRANSACTIONS,xs2aListTransactions,true 35178,a0af56ac-884e-4b2c-a55c-b1a8fccec69a,AUTHORIZATION,,true 35179,a0af56ac-884e-4b2c-a55c-b1a8fccec69a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35180,a0af56ac-884e-4b2c-a55c-b1a8fccec69a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35181,a0af56ac-884e-4b2c-a55c-b1a8fccec69a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35182,6034d8de-4423-483b-9180-99a1715c9f62,LIST_ACCOUNTS,hbciListAccounts,false -35183,6034d8de-4423-483b-9180-99a1715c9f62,LIST_TRANSACTIONS,hbciListTransactions,false -35184,6034d8de-4423-483b-9180-99a1715c9f62,AUTHORIZATION,,false -35185,6034d8de-4423-483b-9180-99a1715c9f62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35186,6034d8de-4423-483b-9180-99a1715c9f62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35187,6034d8de-4423-483b-9180-99a1715c9f62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35182,4dae8b43-4f3e-4812-a58e-ac8c66265445,LIST_ACCOUNTS,hbciListAccounts,false +35183,4dae8b43-4f3e-4812-a58e-ac8c66265445,LIST_TRANSACTIONS,hbciListTransactions,false +35184,4dae8b43-4f3e-4812-a58e-ac8c66265445,AUTHORIZATION,,false +35185,4dae8b43-4f3e-4812-a58e-ac8c66265445,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35186,4dae8b43-4f3e-4812-a58e-ac8c66265445,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35187,4dae8b43-4f3e-4812-a58e-ac8c66265445,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35188,74c223d8-e76f-4471-a91f-5613e08d8a89,LIST_ACCOUNTS,xs2aListAccounts,true -35189,74c223d8-e76f-4471-a91f-5613e08d8a89,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35189,74c223d8-e76f-4471-a91f-5613e08d8a89,LIST_TRANSACTIONS,xs2aListTransactions,true 35190,74c223d8-e76f-4471-a91f-5613e08d8a89,AUTHORIZATION,,true 35191,74c223d8-e76f-4471-a91f-5613e08d8a89,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35192,74c223d8-e76f-4471-a91f-5613e08d8a89,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35193,74c223d8-e76f-4471-a91f-5613e08d8a89,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35194,5a07cab0-322c-4fd6-aa3d-ad13ae82bda6,LIST_ACCOUNTS,hbciListAccounts,false -35195,5a07cab0-322c-4fd6-aa3d-ad13ae82bda6,LIST_TRANSACTIONS,hbciListTransactions,false -35196,5a07cab0-322c-4fd6-aa3d-ad13ae82bda6,AUTHORIZATION,,false -35197,5a07cab0-322c-4fd6-aa3d-ad13ae82bda6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35198,5a07cab0-322c-4fd6-aa3d-ad13ae82bda6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35199,5a07cab0-322c-4fd6-aa3d-ad13ae82bda6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35194,910ee6a4-5b44-440b-9bfa-31422c6c7a2c,LIST_ACCOUNTS,hbciListAccounts,false +35195,910ee6a4-5b44-440b-9bfa-31422c6c7a2c,LIST_TRANSACTIONS,hbciListTransactions,false +35196,910ee6a4-5b44-440b-9bfa-31422c6c7a2c,AUTHORIZATION,,false +35197,910ee6a4-5b44-440b-9bfa-31422c6c7a2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35198,910ee6a4-5b44-440b-9bfa-31422c6c7a2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35199,910ee6a4-5b44-440b-9bfa-31422c6c7a2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35200,0cbe73ae-97b6-4b1e-8dbe-2222643fc392,LIST_ACCOUNTS,xs2aListAccounts,true -35201,0cbe73ae-97b6-4b1e-8dbe-2222643fc392,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35201,0cbe73ae-97b6-4b1e-8dbe-2222643fc392,LIST_TRANSACTIONS,xs2aListTransactions,true 35202,0cbe73ae-97b6-4b1e-8dbe-2222643fc392,AUTHORIZATION,,true 35203,0cbe73ae-97b6-4b1e-8dbe-2222643fc392,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35204,0cbe73ae-97b6-4b1e-8dbe-2222643fc392,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35205,0cbe73ae-97b6-4b1e-8dbe-2222643fc392,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35206,397c8d35-da89-4b8e-8f44-c50fb0d29d6b,LIST_ACCOUNTS,hbciListAccounts,false -35207,397c8d35-da89-4b8e-8f44-c50fb0d29d6b,LIST_TRANSACTIONS,hbciListTransactions,false -35208,397c8d35-da89-4b8e-8f44-c50fb0d29d6b,AUTHORIZATION,,false -35209,397c8d35-da89-4b8e-8f44-c50fb0d29d6b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35210,397c8d35-da89-4b8e-8f44-c50fb0d29d6b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35211,397c8d35-da89-4b8e-8f44-c50fb0d29d6b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35206,3f468b14-cadd-42f0-8ce9-456b2ada4bc2,LIST_ACCOUNTS,hbciListAccounts,false +35207,3f468b14-cadd-42f0-8ce9-456b2ada4bc2,LIST_TRANSACTIONS,hbciListTransactions,false +35208,3f468b14-cadd-42f0-8ce9-456b2ada4bc2,AUTHORIZATION,,false +35209,3f468b14-cadd-42f0-8ce9-456b2ada4bc2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35210,3f468b14-cadd-42f0-8ce9-456b2ada4bc2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35211,3f468b14-cadd-42f0-8ce9-456b2ada4bc2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35212,bfaa3c30-27ad-47be-9496-8bdcb8e086d9,LIST_ACCOUNTS,xs2aListAccounts,true -35213,bfaa3c30-27ad-47be-9496-8bdcb8e086d9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35213,bfaa3c30-27ad-47be-9496-8bdcb8e086d9,LIST_TRANSACTIONS,xs2aListTransactions,true 35214,bfaa3c30-27ad-47be-9496-8bdcb8e086d9,AUTHORIZATION,,true 35215,bfaa3c30-27ad-47be-9496-8bdcb8e086d9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35216,bfaa3c30-27ad-47be-9496-8bdcb8e086d9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35217,bfaa3c30-27ad-47be-9496-8bdcb8e086d9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35218,1f010fd6-be9b-4f65-8d07-99d656db0fa6,LIST_ACCOUNTS,hbciListAccounts,false -35219,1f010fd6-be9b-4f65-8d07-99d656db0fa6,LIST_TRANSACTIONS,hbciListTransactions,false -35220,1f010fd6-be9b-4f65-8d07-99d656db0fa6,AUTHORIZATION,,false -35221,1f010fd6-be9b-4f65-8d07-99d656db0fa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35222,1f010fd6-be9b-4f65-8d07-99d656db0fa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35223,1f010fd6-be9b-4f65-8d07-99d656db0fa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35218,2be181c2-c352-4d92-b5c8-cd3abaca3509,LIST_ACCOUNTS,hbciListAccounts,false +35219,2be181c2-c352-4d92-b5c8-cd3abaca3509,LIST_TRANSACTIONS,hbciListTransactions,false +35220,2be181c2-c352-4d92-b5c8-cd3abaca3509,AUTHORIZATION,,false +35221,2be181c2-c352-4d92-b5c8-cd3abaca3509,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35222,2be181c2-c352-4d92-b5c8-cd3abaca3509,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35223,2be181c2-c352-4d92-b5c8-cd3abaca3509,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35224,b54c383a-533f-4911-b71b-5b056bae9568,LIST_ACCOUNTS,xs2aListAccounts,true -35225,b54c383a-533f-4911-b71b-5b056bae9568,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35225,b54c383a-533f-4911-b71b-5b056bae9568,LIST_TRANSACTIONS,xs2aListTransactions,true 35226,b54c383a-533f-4911-b71b-5b056bae9568,AUTHORIZATION,,true 35227,b54c383a-533f-4911-b71b-5b056bae9568,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35228,b54c383a-533f-4911-b71b-5b056bae9568,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35229,b54c383a-533f-4911-b71b-5b056bae9568,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35230,36028ee9-f2cb-4a51-b544-4b3807b08581,LIST_ACCOUNTS,hbciListAccounts,false -35231,36028ee9-f2cb-4a51-b544-4b3807b08581,LIST_TRANSACTIONS,hbciListTransactions,false -35232,36028ee9-f2cb-4a51-b544-4b3807b08581,AUTHORIZATION,,false -35233,36028ee9-f2cb-4a51-b544-4b3807b08581,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35234,36028ee9-f2cb-4a51-b544-4b3807b08581,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35235,36028ee9-f2cb-4a51-b544-4b3807b08581,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35230,7e161864-51b4-44fa-bb9e-58c8dabb47c4,LIST_ACCOUNTS,hbciListAccounts,false +35231,7e161864-51b4-44fa-bb9e-58c8dabb47c4,LIST_TRANSACTIONS,hbciListTransactions,false +35232,7e161864-51b4-44fa-bb9e-58c8dabb47c4,AUTHORIZATION,,false +35233,7e161864-51b4-44fa-bb9e-58c8dabb47c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35234,7e161864-51b4-44fa-bb9e-58c8dabb47c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35235,7e161864-51b4-44fa-bb9e-58c8dabb47c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35236,840f9ebc-5010-452d-ac94-ae712241f324,LIST_ACCOUNTS,xs2aListAccounts,true -35237,840f9ebc-5010-452d-ac94-ae712241f324,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35237,840f9ebc-5010-452d-ac94-ae712241f324,LIST_TRANSACTIONS,xs2aListTransactions,true 35238,840f9ebc-5010-452d-ac94-ae712241f324,AUTHORIZATION,,true 35239,840f9ebc-5010-452d-ac94-ae712241f324,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35240,840f9ebc-5010-452d-ac94-ae712241f324,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35241,840f9ebc-5010-452d-ac94-ae712241f324,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35242,dc045b60-de5b-4398-92e2-713d0034c79b,LIST_ACCOUNTS,hbciListAccounts,false -35243,dc045b60-de5b-4398-92e2-713d0034c79b,LIST_TRANSACTIONS,hbciListTransactions,false -35244,dc045b60-de5b-4398-92e2-713d0034c79b,AUTHORIZATION,,false -35245,dc045b60-de5b-4398-92e2-713d0034c79b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35246,dc045b60-de5b-4398-92e2-713d0034c79b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35247,dc045b60-de5b-4398-92e2-713d0034c79b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35242,cc9036c7-6183-458f-85db-bf2cd1f3610e,LIST_ACCOUNTS,hbciListAccounts,false +35243,cc9036c7-6183-458f-85db-bf2cd1f3610e,LIST_TRANSACTIONS,hbciListTransactions,false +35244,cc9036c7-6183-458f-85db-bf2cd1f3610e,AUTHORIZATION,,false +35245,cc9036c7-6183-458f-85db-bf2cd1f3610e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35246,cc9036c7-6183-458f-85db-bf2cd1f3610e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35247,cc9036c7-6183-458f-85db-bf2cd1f3610e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35248,a6d51576-404d-430a-b587-29cf62813499,LIST_ACCOUNTS,xs2aListAccounts,true -35249,a6d51576-404d-430a-b587-29cf62813499,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35249,a6d51576-404d-430a-b587-29cf62813499,LIST_TRANSACTIONS,xs2aListTransactions,true 35250,a6d51576-404d-430a-b587-29cf62813499,AUTHORIZATION,,true 35251,a6d51576-404d-430a-b587-29cf62813499,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35252,a6d51576-404d-430a-b587-29cf62813499,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35253,a6d51576-404d-430a-b587-29cf62813499,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35254,ea6e6c75-19a0-497d-8862-50b52f3edbe0,LIST_ACCOUNTS,hbciListAccounts,false -35255,ea6e6c75-19a0-497d-8862-50b52f3edbe0,LIST_TRANSACTIONS,hbciListTransactions,false -35256,ea6e6c75-19a0-497d-8862-50b52f3edbe0,AUTHORIZATION,,false -35257,ea6e6c75-19a0-497d-8862-50b52f3edbe0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35258,ea6e6c75-19a0-497d-8862-50b52f3edbe0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35259,ea6e6c75-19a0-497d-8862-50b52f3edbe0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35254,339882aa-7694-4fc1-82da-52b3f0ad6420,LIST_ACCOUNTS,hbciListAccounts,false +35255,339882aa-7694-4fc1-82da-52b3f0ad6420,LIST_TRANSACTIONS,hbciListTransactions,false +35256,339882aa-7694-4fc1-82da-52b3f0ad6420,AUTHORIZATION,,false +35257,339882aa-7694-4fc1-82da-52b3f0ad6420,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35258,339882aa-7694-4fc1-82da-52b3f0ad6420,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35259,339882aa-7694-4fc1-82da-52b3f0ad6420,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35260,a48a7ec1-05ec-4ef4-bd7a-d501e43ce324,LIST_ACCOUNTS,xs2aListAccounts,true -35261,a48a7ec1-05ec-4ef4-bd7a-d501e43ce324,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35261,a48a7ec1-05ec-4ef4-bd7a-d501e43ce324,LIST_TRANSACTIONS,xs2aListTransactions,true 35262,a48a7ec1-05ec-4ef4-bd7a-d501e43ce324,AUTHORIZATION,,true 35263,a48a7ec1-05ec-4ef4-bd7a-d501e43ce324,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35264,a48a7ec1-05ec-4ef4-bd7a-d501e43ce324,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35265,a48a7ec1-05ec-4ef4-bd7a-d501e43ce324,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35266,5f22d979-4b2d-49dd-be92-c0d2189b7091,LIST_ACCOUNTS,hbciListAccounts,false -35267,5f22d979-4b2d-49dd-be92-c0d2189b7091,LIST_TRANSACTIONS,hbciListTransactions,false -35268,5f22d979-4b2d-49dd-be92-c0d2189b7091,AUTHORIZATION,,false -35269,5f22d979-4b2d-49dd-be92-c0d2189b7091,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35270,5f22d979-4b2d-49dd-be92-c0d2189b7091,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35271,5f22d979-4b2d-49dd-be92-c0d2189b7091,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35266,a6254720-b115-44e1-bc06-708b00c7e141,LIST_ACCOUNTS,hbciListAccounts,false +35267,a6254720-b115-44e1-bc06-708b00c7e141,LIST_TRANSACTIONS,hbciListTransactions,false +35268,a6254720-b115-44e1-bc06-708b00c7e141,AUTHORIZATION,,false +35269,a6254720-b115-44e1-bc06-708b00c7e141,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35270,a6254720-b115-44e1-bc06-708b00c7e141,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35271,a6254720-b115-44e1-bc06-708b00c7e141,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35272,ce21469c-ef2a-4089-b97f-23de0feb920b,LIST_ACCOUNTS,xs2aListAccounts,true -35273,ce21469c-ef2a-4089-b97f-23de0feb920b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35273,ce21469c-ef2a-4089-b97f-23de0feb920b,LIST_TRANSACTIONS,xs2aListTransactions,true 35274,ce21469c-ef2a-4089-b97f-23de0feb920b,AUTHORIZATION,,true 35275,ce21469c-ef2a-4089-b97f-23de0feb920b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35276,ce21469c-ef2a-4089-b97f-23de0feb920b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35277,ce21469c-ef2a-4089-b97f-23de0feb920b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35278,a231f304-31cc-413a-8b2f-896ce60ef0a7,LIST_ACCOUNTS,hbciListAccounts,false -35279,a231f304-31cc-413a-8b2f-896ce60ef0a7,LIST_TRANSACTIONS,hbciListTransactions,false -35280,a231f304-31cc-413a-8b2f-896ce60ef0a7,AUTHORIZATION,,false -35281,a231f304-31cc-413a-8b2f-896ce60ef0a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35282,a231f304-31cc-413a-8b2f-896ce60ef0a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35283,a231f304-31cc-413a-8b2f-896ce60ef0a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35278,5554cff6-a7b5-4485-8f33-566d7b17eb7f,LIST_ACCOUNTS,hbciListAccounts,false +35279,5554cff6-a7b5-4485-8f33-566d7b17eb7f,LIST_TRANSACTIONS,hbciListTransactions,false +35280,5554cff6-a7b5-4485-8f33-566d7b17eb7f,AUTHORIZATION,,false +35281,5554cff6-a7b5-4485-8f33-566d7b17eb7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35282,5554cff6-a7b5-4485-8f33-566d7b17eb7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35283,5554cff6-a7b5-4485-8f33-566d7b17eb7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35284,a7a6c52f-89e1-40b0-969e-bfe41a2807f9,LIST_ACCOUNTS,xs2aListAccounts,true -35285,a7a6c52f-89e1-40b0-969e-bfe41a2807f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35285,a7a6c52f-89e1-40b0-969e-bfe41a2807f9,LIST_TRANSACTIONS,xs2aListTransactions,true 35286,a7a6c52f-89e1-40b0-969e-bfe41a2807f9,AUTHORIZATION,,true 35287,a7a6c52f-89e1-40b0-969e-bfe41a2807f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35288,a7a6c52f-89e1-40b0-969e-bfe41a2807f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35289,a7a6c52f-89e1-40b0-969e-bfe41a2807f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35290,2102a75a-7eef-42a7-879d-0815529ad91e,LIST_ACCOUNTS,hbciListAccounts,false -35291,2102a75a-7eef-42a7-879d-0815529ad91e,LIST_TRANSACTIONS,hbciListTransactions,false -35292,2102a75a-7eef-42a7-879d-0815529ad91e,AUTHORIZATION,,false -35293,2102a75a-7eef-42a7-879d-0815529ad91e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35294,2102a75a-7eef-42a7-879d-0815529ad91e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35295,2102a75a-7eef-42a7-879d-0815529ad91e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35290,e156e835-6266-4f8c-826a-dfadc47e5e1d,LIST_ACCOUNTS,hbciListAccounts,false +35291,e156e835-6266-4f8c-826a-dfadc47e5e1d,LIST_TRANSACTIONS,hbciListTransactions,false +35292,e156e835-6266-4f8c-826a-dfadc47e5e1d,AUTHORIZATION,,false +35293,e156e835-6266-4f8c-826a-dfadc47e5e1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35294,e156e835-6266-4f8c-826a-dfadc47e5e1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35295,e156e835-6266-4f8c-826a-dfadc47e5e1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35296,a6a476b0-420e-43cb-a9ee-3e90c23ab32a,LIST_ACCOUNTS,xs2aListAccounts,true -35297,a6a476b0-420e-43cb-a9ee-3e90c23ab32a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35297,a6a476b0-420e-43cb-a9ee-3e90c23ab32a,LIST_TRANSACTIONS,xs2aListTransactions,true 35298,a6a476b0-420e-43cb-a9ee-3e90c23ab32a,AUTHORIZATION,,true 35299,a6a476b0-420e-43cb-a9ee-3e90c23ab32a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35300,a6a476b0-420e-43cb-a9ee-3e90c23ab32a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35301,a6a476b0-420e-43cb-a9ee-3e90c23ab32a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35302,876d27a7-e04c-4239-bf5b-3593dad653c1,LIST_ACCOUNTS,hbciListAccounts,false -35303,876d27a7-e04c-4239-bf5b-3593dad653c1,LIST_TRANSACTIONS,hbciListTransactions,false -35304,876d27a7-e04c-4239-bf5b-3593dad653c1,AUTHORIZATION,,false -35305,876d27a7-e04c-4239-bf5b-3593dad653c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35306,876d27a7-e04c-4239-bf5b-3593dad653c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35307,876d27a7-e04c-4239-bf5b-3593dad653c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35302,cdff3520-740d-4809-9681-d160eae4ff46,LIST_ACCOUNTS,hbciListAccounts,false +35303,cdff3520-740d-4809-9681-d160eae4ff46,LIST_TRANSACTIONS,hbciListTransactions,false +35304,cdff3520-740d-4809-9681-d160eae4ff46,AUTHORIZATION,,false +35305,cdff3520-740d-4809-9681-d160eae4ff46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35306,cdff3520-740d-4809-9681-d160eae4ff46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35307,cdff3520-740d-4809-9681-d160eae4ff46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35308,5378464c-b0d2-4ed1-adfc-0d7da9a1aabb,LIST_ACCOUNTS,xs2aListAccounts,true -35309,5378464c-b0d2-4ed1-adfc-0d7da9a1aabb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35309,5378464c-b0d2-4ed1-adfc-0d7da9a1aabb,LIST_TRANSACTIONS,xs2aListTransactions,true 35310,5378464c-b0d2-4ed1-adfc-0d7da9a1aabb,AUTHORIZATION,,true 35311,5378464c-b0d2-4ed1-adfc-0d7da9a1aabb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35312,5378464c-b0d2-4ed1-adfc-0d7da9a1aabb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35313,5378464c-b0d2-4ed1-adfc-0d7da9a1aabb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35314,ba25595f-0a6a-44b3-8c9a-c7579ca07da1,LIST_ACCOUNTS,hbciListAccounts,false -35315,ba25595f-0a6a-44b3-8c9a-c7579ca07da1,LIST_TRANSACTIONS,hbciListTransactions,false -35316,ba25595f-0a6a-44b3-8c9a-c7579ca07da1,AUTHORIZATION,,false -35317,ba25595f-0a6a-44b3-8c9a-c7579ca07da1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35318,ba25595f-0a6a-44b3-8c9a-c7579ca07da1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35319,ba25595f-0a6a-44b3-8c9a-c7579ca07da1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35314,881bc682-f402-4bdf-90fc-65a6f08f31a2,LIST_ACCOUNTS,hbciListAccounts,false +35315,881bc682-f402-4bdf-90fc-65a6f08f31a2,LIST_TRANSACTIONS,hbciListTransactions,false +35316,881bc682-f402-4bdf-90fc-65a6f08f31a2,AUTHORIZATION,,false +35317,881bc682-f402-4bdf-90fc-65a6f08f31a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35318,881bc682-f402-4bdf-90fc-65a6f08f31a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35319,881bc682-f402-4bdf-90fc-65a6f08f31a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35320,db738099-1365-4041-99d8-53ddaf870edf,LIST_ACCOUNTS,xs2aListAccounts,true -35321,db738099-1365-4041-99d8-53ddaf870edf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35321,db738099-1365-4041-99d8-53ddaf870edf,LIST_TRANSACTIONS,xs2aListTransactions,true 35322,db738099-1365-4041-99d8-53ddaf870edf,AUTHORIZATION,,true 35323,db738099-1365-4041-99d8-53ddaf870edf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35324,db738099-1365-4041-99d8-53ddaf870edf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35325,db738099-1365-4041-99d8-53ddaf870edf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35326,b328ac0f-7b10-46d9-b9c6-529f8fc83822,LIST_ACCOUNTS,hbciListAccounts,false -35327,b328ac0f-7b10-46d9-b9c6-529f8fc83822,LIST_TRANSACTIONS,hbciListTransactions,false -35328,b328ac0f-7b10-46d9-b9c6-529f8fc83822,AUTHORIZATION,,false -35329,b328ac0f-7b10-46d9-b9c6-529f8fc83822,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35330,b328ac0f-7b10-46d9-b9c6-529f8fc83822,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35331,b328ac0f-7b10-46d9-b9c6-529f8fc83822,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35326,acd5aa8f-7171-42d3-bdb6-2532e07dbcb8,LIST_ACCOUNTS,hbciListAccounts,false +35327,acd5aa8f-7171-42d3-bdb6-2532e07dbcb8,LIST_TRANSACTIONS,hbciListTransactions,false +35328,acd5aa8f-7171-42d3-bdb6-2532e07dbcb8,AUTHORIZATION,,false +35329,acd5aa8f-7171-42d3-bdb6-2532e07dbcb8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35330,acd5aa8f-7171-42d3-bdb6-2532e07dbcb8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35331,acd5aa8f-7171-42d3-bdb6-2532e07dbcb8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35332,a0a142a2-968d-4d06-a5a3-3453529325dd,LIST_ACCOUNTS,xs2aListAccounts,true -35333,a0a142a2-968d-4d06-a5a3-3453529325dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35333,a0a142a2-968d-4d06-a5a3-3453529325dd,LIST_TRANSACTIONS,xs2aListTransactions,true 35334,a0a142a2-968d-4d06-a5a3-3453529325dd,AUTHORIZATION,,true 35335,a0a142a2-968d-4d06-a5a3-3453529325dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35336,a0a142a2-968d-4d06-a5a3-3453529325dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35337,a0a142a2-968d-4d06-a5a3-3453529325dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35338,c6452c40-c750-4b4a-a984-fa183dd18c02,LIST_ACCOUNTS,hbciListAccounts,false -35339,c6452c40-c750-4b4a-a984-fa183dd18c02,LIST_TRANSACTIONS,hbciListTransactions,false -35340,c6452c40-c750-4b4a-a984-fa183dd18c02,AUTHORIZATION,,false -35341,c6452c40-c750-4b4a-a984-fa183dd18c02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35342,c6452c40-c750-4b4a-a984-fa183dd18c02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35343,c6452c40-c750-4b4a-a984-fa183dd18c02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35338,6d2b0926-b5d8-4342-811b-3deab2651617,LIST_ACCOUNTS,hbciListAccounts,false +35339,6d2b0926-b5d8-4342-811b-3deab2651617,LIST_TRANSACTIONS,hbciListTransactions,false +35340,6d2b0926-b5d8-4342-811b-3deab2651617,AUTHORIZATION,,false +35341,6d2b0926-b5d8-4342-811b-3deab2651617,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35342,6d2b0926-b5d8-4342-811b-3deab2651617,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35343,6d2b0926-b5d8-4342-811b-3deab2651617,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35344,aca5f73f-b578-4295-82dc-115f6febe48b,LIST_ACCOUNTS,xs2aListAccounts,true -35345,aca5f73f-b578-4295-82dc-115f6febe48b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35345,aca5f73f-b578-4295-82dc-115f6febe48b,LIST_TRANSACTIONS,xs2aListTransactions,true 35346,aca5f73f-b578-4295-82dc-115f6febe48b,AUTHORIZATION,,true 35347,aca5f73f-b578-4295-82dc-115f6febe48b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35348,aca5f73f-b578-4295-82dc-115f6febe48b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35349,aca5f73f-b578-4295-82dc-115f6febe48b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35350,29f6d0c2-b3c2-45cc-80ae-8b8fec3ff0cd,LIST_ACCOUNTS,hbciListAccounts,false -35351,29f6d0c2-b3c2-45cc-80ae-8b8fec3ff0cd,LIST_TRANSACTIONS,hbciListTransactions,false -35352,29f6d0c2-b3c2-45cc-80ae-8b8fec3ff0cd,AUTHORIZATION,,false -35353,29f6d0c2-b3c2-45cc-80ae-8b8fec3ff0cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35354,29f6d0c2-b3c2-45cc-80ae-8b8fec3ff0cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35355,29f6d0c2-b3c2-45cc-80ae-8b8fec3ff0cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35350,ca665f3c-558c-4972-8926-c042046694ed,LIST_ACCOUNTS,hbciListAccounts,false +35351,ca665f3c-558c-4972-8926-c042046694ed,LIST_TRANSACTIONS,hbciListTransactions,false +35352,ca665f3c-558c-4972-8926-c042046694ed,AUTHORIZATION,,false +35353,ca665f3c-558c-4972-8926-c042046694ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35354,ca665f3c-558c-4972-8926-c042046694ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35355,ca665f3c-558c-4972-8926-c042046694ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35356,e8f0a944-8184-4fb8-b7db-5777a2735a78,LIST_ACCOUNTS,xs2aListAccounts,true -35357,e8f0a944-8184-4fb8-b7db-5777a2735a78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35357,e8f0a944-8184-4fb8-b7db-5777a2735a78,LIST_TRANSACTIONS,xs2aListTransactions,true 35358,e8f0a944-8184-4fb8-b7db-5777a2735a78,AUTHORIZATION,,true 35359,e8f0a944-8184-4fb8-b7db-5777a2735a78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35360,e8f0a944-8184-4fb8-b7db-5777a2735a78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35361,e8f0a944-8184-4fb8-b7db-5777a2735a78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35362,4d96129c-945f-4501-8556-0cac28e393de,LIST_ACCOUNTS,hbciListAccounts,false -35363,4d96129c-945f-4501-8556-0cac28e393de,LIST_TRANSACTIONS,hbciListTransactions,false -35364,4d96129c-945f-4501-8556-0cac28e393de,AUTHORIZATION,,false -35365,4d96129c-945f-4501-8556-0cac28e393de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35366,4d96129c-945f-4501-8556-0cac28e393de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35367,4d96129c-945f-4501-8556-0cac28e393de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35362,08209b56-c1dc-4144-a349-e4e544e91ae5,LIST_ACCOUNTS,hbciListAccounts,false +35363,08209b56-c1dc-4144-a349-e4e544e91ae5,LIST_TRANSACTIONS,hbciListTransactions,false +35364,08209b56-c1dc-4144-a349-e4e544e91ae5,AUTHORIZATION,,false +35365,08209b56-c1dc-4144-a349-e4e544e91ae5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35366,08209b56-c1dc-4144-a349-e4e544e91ae5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35367,08209b56-c1dc-4144-a349-e4e544e91ae5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35368,c8b442a6-6f82-4aa8-a990-31394faab923,LIST_ACCOUNTS,xs2aListAccounts,true -35369,c8b442a6-6f82-4aa8-a990-31394faab923,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35369,c8b442a6-6f82-4aa8-a990-31394faab923,LIST_TRANSACTIONS,xs2aListTransactions,true 35370,c8b442a6-6f82-4aa8-a990-31394faab923,AUTHORIZATION,,true 35371,c8b442a6-6f82-4aa8-a990-31394faab923,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35372,c8b442a6-6f82-4aa8-a990-31394faab923,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35373,c8b442a6-6f82-4aa8-a990-31394faab923,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35374,9ff8692e-ad9d-42b2-9528-ea8664922734,LIST_ACCOUNTS,hbciListAccounts,false -35375,9ff8692e-ad9d-42b2-9528-ea8664922734,LIST_TRANSACTIONS,hbciListTransactions,false -35376,9ff8692e-ad9d-42b2-9528-ea8664922734,AUTHORIZATION,,false -35377,9ff8692e-ad9d-42b2-9528-ea8664922734,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35378,9ff8692e-ad9d-42b2-9528-ea8664922734,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35379,9ff8692e-ad9d-42b2-9528-ea8664922734,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35374,3f12c4bf-0a4b-49ca-a9b2-3b147cfb19fe,LIST_ACCOUNTS,hbciListAccounts,false +35375,3f12c4bf-0a4b-49ca-a9b2-3b147cfb19fe,LIST_TRANSACTIONS,hbciListTransactions,false +35376,3f12c4bf-0a4b-49ca-a9b2-3b147cfb19fe,AUTHORIZATION,,false +35377,3f12c4bf-0a4b-49ca-a9b2-3b147cfb19fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35378,3f12c4bf-0a4b-49ca-a9b2-3b147cfb19fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35379,3f12c4bf-0a4b-49ca-a9b2-3b147cfb19fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35380,106d6486-f67e-46a7-89ef-d08afebaa534,LIST_ACCOUNTS,xs2aListAccounts,true -35381,106d6486-f67e-46a7-89ef-d08afebaa534,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35381,106d6486-f67e-46a7-89ef-d08afebaa534,LIST_TRANSACTIONS,xs2aListTransactions,true 35382,106d6486-f67e-46a7-89ef-d08afebaa534,AUTHORIZATION,,true 35383,106d6486-f67e-46a7-89ef-d08afebaa534,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35384,106d6486-f67e-46a7-89ef-d08afebaa534,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35385,106d6486-f67e-46a7-89ef-d08afebaa534,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35386,e1d37616-8ee4-4573-9943-343f04b4db9a,LIST_ACCOUNTS,hbciListAccounts,false -35387,e1d37616-8ee4-4573-9943-343f04b4db9a,LIST_TRANSACTIONS,hbciListTransactions,false -35388,e1d37616-8ee4-4573-9943-343f04b4db9a,AUTHORIZATION,,false -35389,e1d37616-8ee4-4573-9943-343f04b4db9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35390,e1d37616-8ee4-4573-9943-343f04b4db9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35391,e1d37616-8ee4-4573-9943-343f04b4db9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35386,9c2a057e-05b4-4ea6-a2dd-3378112165fb,LIST_ACCOUNTS,hbciListAccounts,false +35387,9c2a057e-05b4-4ea6-a2dd-3378112165fb,LIST_TRANSACTIONS,hbciListTransactions,false +35388,9c2a057e-05b4-4ea6-a2dd-3378112165fb,AUTHORIZATION,,false +35389,9c2a057e-05b4-4ea6-a2dd-3378112165fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35390,9c2a057e-05b4-4ea6-a2dd-3378112165fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35391,9c2a057e-05b4-4ea6-a2dd-3378112165fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35392,810ed342-8cd3-4dce-b3a0-2e7c7041a023,LIST_ACCOUNTS,xs2aListAccounts,true -35393,810ed342-8cd3-4dce-b3a0-2e7c7041a023,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35393,810ed342-8cd3-4dce-b3a0-2e7c7041a023,LIST_TRANSACTIONS,xs2aListTransactions,true 35394,810ed342-8cd3-4dce-b3a0-2e7c7041a023,AUTHORIZATION,,true 35395,810ed342-8cd3-4dce-b3a0-2e7c7041a023,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35396,810ed342-8cd3-4dce-b3a0-2e7c7041a023,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35397,810ed342-8cd3-4dce-b3a0-2e7c7041a023,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35398,3129449f-6d76-4494-a871-d5f5281c104a,LIST_ACCOUNTS,hbciListAccounts,false -35399,3129449f-6d76-4494-a871-d5f5281c104a,LIST_TRANSACTIONS,hbciListTransactions,false -35400,3129449f-6d76-4494-a871-d5f5281c104a,AUTHORIZATION,,false -35401,3129449f-6d76-4494-a871-d5f5281c104a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35402,3129449f-6d76-4494-a871-d5f5281c104a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35403,3129449f-6d76-4494-a871-d5f5281c104a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35398,81d49af4-9800-4941-98a0-59eb45bb91b8,LIST_ACCOUNTS,hbciListAccounts,false +35399,81d49af4-9800-4941-98a0-59eb45bb91b8,LIST_TRANSACTIONS,hbciListTransactions,false +35400,81d49af4-9800-4941-98a0-59eb45bb91b8,AUTHORIZATION,,false +35401,81d49af4-9800-4941-98a0-59eb45bb91b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35402,81d49af4-9800-4941-98a0-59eb45bb91b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35403,81d49af4-9800-4941-98a0-59eb45bb91b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35404,dfa253eb-b054-4a1e-b772-f7228d9f4fa0,LIST_ACCOUNTS,xs2aListAccounts,true -35405,dfa253eb-b054-4a1e-b772-f7228d9f4fa0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35405,dfa253eb-b054-4a1e-b772-f7228d9f4fa0,LIST_TRANSACTIONS,xs2aListTransactions,true 35406,dfa253eb-b054-4a1e-b772-f7228d9f4fa0,AUTHORIZATION,,true 35407,dfa253eb-b054-4a1e-b772-f7228d9f4fa0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35408,dfa253eb-b054-4a1e-b772-f7228d9f4fa0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35409,dfa253eb-b054-4a1e-b772-f7228d9f4fa0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35410,5afd2fe6-aec2-4000-a73c-95d99333f9f5,LIST_ACCOUNTS,hbciListAccounts,false -35411,5afd2fe6-aec2-4000-a73c-95d99333f9f5,LIST_TRANSACTIONS,hbciListTransactions,false -35412,5afd2fe6-aec2-4000-a73c-95d99333f9f5,AUTHORIZATION,,false -35413,5afd2fe6-aec2-4000-a73c-95d99333f9f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35414,5afd2fe6-aec2-4000-a73c-95d99333f9f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35415,5afd2fe6-aec2-4000-a73c-95d99333f9f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35410,d1cc1992-5361-4540-b8be-864524553eaa,LIST_ACCOUNTS,hbciListAccounts,false +35411,d1cc1992-5361-4540-b8be-864524553eaa,LIST_TRANSACTIONS,hbciListTransactions,false +35412,d1cc1992-5361-4540-b8be-864524553eaa,AUTHORIZATION,,false +35413,d1cc1992-5361-4540-b8be-864524553eaa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35414,d1cc1992-5361-4540-b8be-864524553eaa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35415,d1cc1992-5361-4540-b8be-864524553eaa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35416,037f31ee-1f01-4d2a-9d7c-7a8632eec2d8,LIST_ACCOUNTS,xs2aListAccounts,true -35417,037f31ee-1f01-4d2a-9d7c-7a8632eec2d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35417,037f31ee-1f01-4d2a-9d7c-7a8632eec2d8,LIST_TRANSACTIONS,xs2aListTransactions,true 35418,037f31ee-1f01-4d2a-9d7c-7a8632eec2d8,AUTHORIZATION,,true 35419,037f31ee-1f01-4d2a-9d7c-7a8632eec2d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35420,037f31ee-1f01-4d2a-9d7c-7a8632eec2d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35421,037f31ee-1f01-4d2a-9d7c-7a8632eec2d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35422,4591eb5b-8822-47eb-ba86-2e23a6234357,LIST_ACCOUNTS,hbciListAccounts,false -35423,4591eb5b-8822-47eb-ba86-2e23a6234357,LIST_TRANSACTIONS,hbciListTransactions,false -35424,4591eb5b-8822-47eb-ba86-2e23a6234357,AUTHORIZATION,,false -35425,4591eb5b-8822-47eb-ba86-2e23a6234357,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35426,4591eb5b-8822-47eb-ba86-2e23a6234357,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35427,4591eb5b-8822-47eb-ba86-2e23a6234357,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35422,50cd27ad-33b4-4384-9eae-858dcc0faaa4,LIST_ACCOUNTS,hbciListAccounts,false +35423,50cd27ad-33b4-4384-9eae-858dcc0faaa4,LIST_TRANSACTIONS,hbciListTransactions,false +35424,50cd27ad-33b4-4384-9eae-858dcc0faaa4,AUTHORIZATION,,false +35425,50cd27ad-33b4-4384-9eae-858dcc0faaa4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35426,50cd27ad-33b4-4384-9eae-858dcc0faaa4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35427,50cd27ad-33b4-4384-9eae-858dcc0faaa4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35428,9640a032-7022-4032-856e-938fc5f99c4c,LIST_ACCOUNTS,xs2aListAccounts,true -35429,9640a032-7022-4032-856e-938fc5f99c4c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35429,9640a032-7022-4032-856e-938fc5f99c4c,LIST_TRANSACTIONS,xs2aListTransactions,true 35430,9640a032-7022-4032-856e-938fc5f99c4c,AUTHORIZATION,,true 35431,9640a032-7022-4032-856e-938fc5f99c4c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35432,9640a032-7022-4032-856e-938fc5f99c4c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35433,9640a032-7022-4032-856e-938fc5f99c4c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35434,47ffa4ca-9195-4ade-b5b2-115e61df970d,LIST_ACCOUNTS,hbciListAccounts,false -35435,47ffa4ca-9195-4ade-b5b2-115e61df970d,LIST_TRANSACTIONS,hbciListTransactions,false -35436,47ffa4ca-9195-4ade-b5b2-115e61df970d,AUTHORIZATION,,false -35437,47ffa4ca-9195-4ade-b5b2-115e61df970d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35438,47ffa4ca-9195-4ade-b5b2-115e61df970d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35439,47ffa4ca-9195-4ade-b5b2-115e61df970d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35434,be4e14f4-d9a5-477f-93d5-60a348831fff,LIST_ACCOUNTS,hbciListAccounts,false +35435,be4e14f4-d9a5-477f-93d5-60a348831fff,LIST_TRANSACTIONS,hbciListTransactions,false +35436,be4e14f4-d9a5-477f-93d5-60a348831fff,AUTHORIZATION,,false +35437,be4e14f4-d9a5-477f-93d5-60a348831fff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35438,be4e14f4-d9a5-477f-93d5-60a348831fff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35439,be4e14f4-d9a5-477f-93d5-60a348831fff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35440,30d8d680-6a68-44ce-bd4f-06fb994918d9,LIST_ACCOUNTS,xs2aListAccounts,true -35441,30d8d680-6a68-44ce-bd4f-06fb994918d9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35441,30d8d680-6a68-44ce-bd4f-06fb994918d9,LIST_TRANSACTIONS,xs2aListTransactions,true 35442,30d8d680-6a68-44ce-bd4f-06fb994918d9,AUTHORIZATION,,true 35443,30d8d680-6a68-44ce-bd4f-06fb994918d9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35444,30d8d680-6a68-44ce-bd4f-06fb994918d9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35445,30d8d680-6a68-44ce-bd4f-06fb994918d9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35446,94ee739b-5d1e-4ab8-b08d-7a6a24862f88,LIST_ACCOUNTS,hbciListAccounts,false -35447,94ee739b-5d1e-4ab8-b08d-7a6a24862f88,LIST_TRANSACTIONS,hbciListTransactions,false -35448,94ee739b-5d1e-4ab8-b08d-7a6a24862f88,AUTHORIZATION,,false -35449,94ee739b-5d1e-4ab8-b08d-7a6a24862f88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35450,94ee739b-5d1e-4ab8-b08d-7a6a24862f88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35451,94ee739b-5d1e-4ab8-b08d-7a6a24862f88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35446,1d28ea4e-37b0-40f2-8757-0b0169f9998b,LIST_ACCOUNTS,hbciListAccounts,false +35447,1d28ea4e-37b0-40f2-8757-0b0169f9998b,LIST_TRANSACTIONS,hbciListTransactions,false +35448,1d28ea4e-37b0-40f2-8757-0b0169f9998b,AUTHORIZATION,,false +35449,1d28ea4e-37b0-40f2-8757-0b0169f9998b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35450,1d28ea4e-37b0-40f2-8757-0b0169f9998b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35451,1d28ea4e-37b0-40f2-8757-0b0169f9998b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35452,8fbab675-081c-43aa-951f-b22473057d19,LIST_ACCOUNTS,xs2aListAccounts,true -35453,8fbab675-081c-43aa-951f-b22473057d19,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35453,8fbab675-081c-43aa-951f-b22473057d19,LIST_TRANSACTIONS,xs2aListTransactions,true 35454,8fbab675-081c-43aa-951f-b22473057d19,AUTHORIZATION,,true 35455,8fbab675-081c-43aa-951f-b22473057d19,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35456,8fbab675-081c-43aa-951f-b22473057d19,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35457,8fbab675-081c-43aa-951f-b22473057d19,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35458,649164ca-6572-4a79-8300-0e3f2e571d08,LIST_ACCOUNTS,hbciListAccounts,false -35459,649164ca-6572-4a79-8300-0e3f2e571d08,LIST_TRANSACTIONS,hbciListTransactions,false -35460,649164ca-6572-4a79-8300-0e3f2e571d08,AUTHORIZATION,,false -35461,649164ca-6572-4a79-8300-0e3f2e571d08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35462,649164ca-6572-4a79-8300-0e3f2e571d08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35463,649164ca-6572-4a79-8300-0e3f2e571d08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35458,a085f9df-916f-43c3-bf6e-c176ec4aaf43,LIST_ACCOUNTS,hbciListAccounts,false +35459,a085f9df-916f-43c3-bf6e-c176ec4aaf43,LIST_TRANSACTIONS,hbciListTransactions,false +35460,a085f9df-916f-43c3-bf6e-c176ec4aaf43,AUTHORIZATION,,false +35461,a085f9df-916f-43c3-bf6e-c176ec4aaf43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35462,a085f9df-916f-43c3-bf6e-c176ec4aaf43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35463,a085f9df-916f-43c3-bf6e-c176ec4aaf43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35464,a45b0486-4c44-4d62-b0c1-6ebd3ca3d20a,LIST_ACCOUNTS,xs2aListAccounts,true -35465,a45b0486-4c44-4d62-b0c1-6ebd3ca3d20a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35465,a45b0486-4c44-4d62-b0c1-6ebd3ca3d20a,LIST_TRANSACTIONS,xs2aListTransactions,true 35466,a45b0486-4c44-4d62-b0c1-6ebd3ca3d20a,AUTHORIZATION,,true 35467,a45b0486-4c44-4d62-b0c1-6ebd3ca3d20a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35468,a45b0486-4c44-4d62-b0c1-6ebd3ca3d20a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35469,a45b0486-4c44-4d62-b0c1-6ebd3ca3d20a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35470,99cf7674-1036-45b5-9ed1-d806713254f0,LIST_ACCOUNTS,hbciListAccounts,false -35471,99cf7674-1036-45b5-9ed1-d806713254f0,LIST_TRANSACTIONS,hbciListTransactions,false -35472,99cf7674-1036-45b5-9ed1-d806713254f0,AUTHORIZATION,,false -35473,99cf7674-1036-45b5-9ed1-d806713254f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35474,99cf7674-1036-45b5-9ed1-d806713254f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35475,99cf7674-1036-45b5-9ed1-d806713254f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35470,ddba6975-111a-4582-a0d7-405e30d2d6a0,LIST_ACCOUNTS,hbciListAccounts,false +35471,ddba6975-111a-4582-a0d7-405e30d2d6a0,LIST_TRANSACTIONS,hbciListTransactions,false +35472,ddba6975-111a-4582-a0d7-405e30d2d6a0,AUTHORIZATION,,false +35473,ddba6975-111a-4582-a0d7-405e30d2d6a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35474,ddba6975-111a-4582-a0d7-405e30d2d6a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35475,ddba6975-111a-4582-a0d7-405e30d2d6a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35476,61cb3e7f-f1f7-4ae0-882f-df91d30ac956,LIST_ACCOUNTS,xs2aListAccounts,true -35477,61cb3e7f-f1f7-4ae0-882f-df91d30ac956,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35477,61cb3e7f-f1f7-4ae0-882f-df91d30ac956,LIST_TRANSACTIONS,xs2aListTransactions,true 35478,61cb3e7f-f1f7-4ae0-882f-df91d30ac956,AUTHORIZATION,,true 35479,61cb3e7f-f1f7-4ae0-882f-df91d30ac956,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35480,61cb3e7f-f1f7-4ae0-882f-df91d30ac956,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35481,61cb3e7f-f1f7-4ae0-882f-df91d30ac956,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35482,3a74b851-2534-4efb-a9a3-2f43340ae169,LIST_ACCOUNTS,hbciListAccounts,false -35483,3a74b851-2534-4efb-a9a3-2f43340ae169,LIST_TRANSACTIONS,hbciListTransactions,false -35484,3a74b851-2534-4efb-a9a3-2f43340ae169,AUTHORIZATION,,false -35485,3a74b851-2534-4efb-a9a3-2f43340ae169,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35486,3a74b851-2534-4efb-a9a3-2f43340ae169,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35487,3a74b851-2534-4efb-a9a3-2f43340ae169,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35482,29a2b1e4-ef89-4da0-8ae4-f5523bead73a,LIST_ACCOUNTS,hbciListAccounts,false +35483,29a2b1e4-ef89-4da0-8ae4-f5523bead73a,LIST_TRANSACTIONS,hbciListTransactions,false +35484,29a2b1e4-ef89-4da0-8ae4-f5523bead73a,AUTHORIZATION,,false +35485,29a2b1e4-ef89-4da0-8ae4-f5523bead73a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35486,29a2b1e4-ef89-4da0-8ae4-f5523bead73a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35487,29a2b1e4-ef89-4da0-8ae4-f5523bead73a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35488,dae80ff2-2149-4f42-bc6e-a7b503d6a4f9,LIST_ACCOUNTS,xs2aListAccounts,true -35489,dae80ff2-2149-4f42-bc6e-a7b503d6a4f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35489,dae80ff2-2149-4f42-bc6e-a7b503d6a4f9,LIST_TRANSACTIONS,xs2aListTransactions,true 35490,dae80ff2-2149-4f42-bc6e-a7b503d6a4f9,AUTHORIZATION,,true 35491,dae80ff2-2149-4f42-bc6e-a7b503d6a4f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35492,dae80ff2-2149-4f42-bc6e-a7b503d6a4f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35493,dae80ff2-2149-4f42-bc6e-a7b503d6a4f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35494,136ba7e9-5943-48cf-904f-87ac55831fce,LIST_ACCOUNTS,hbciListAccounts,false -35495,136ba7e9-5943-48cf-904f-87ac55831fce,LIST_TRANSACTIONS,hbciListTransactions,false -35496,136ba7e9-5943-48cf-904f-87ac55831fce,AUTHORIZATION,,false -35497,136ba7e9-5943-48cf-904f-87ac55831fce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35498,136ba7e9-5943-48cf-904f-87ac55831fce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35499,136ba7e9-5943-48cf-904f-87ac55831fce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35494,2341e9cc-b038-406e-bdbd-a8238e5487db,LIST_ACCOUNTS,hbciListAccounts,false +35495,2341e9cc-b038-406e-bdbd-a8238e5487db,LIST_TRANSACTIONS,hbciListTransactions,false +35496,2341e9cc-b038-406e-bdbd-a8238e5487db,AUTHORIZATION,,false +35497,2341e9cc-b038-406e-bdbd-a8238e5487db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35498,2341e9cc-b038-406e-bdbd-a8238e5487db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35499,2341e9cc-b038-406e-bdbd-a8238e5487db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35500,5b2666a6-da62-446d-9e98-a2066d9a9bfe,LIST_ACCOUNTS,xs2aListAccounts,true -35501,5b2666a6-da62-446d-9e98-a2066d9a9bfe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35501,5b2666a6-da62-446d-9e98-a2066d9a9bfe,LIST_TRANSACTIONS,xs2aListTransactions,true 35502,5b2666a6-da62-446d-9e98-a2066d9a9bfe,AUTHORIZATION,,true 35503,5b2666a6-da62-446d-9e98-a2066d9a9bfe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35504,5b2666a6-da62-446d-9e98-a2066d9a9bfe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35505,5b2666a6-da62-446d-9e98-a2066d9a9bfe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35506,418901e0-858b-4d4f-ba5c-0a94edd227db,LIST_ACCOUNTS,hbciListAccounts,false -35507,418901e0-858b-4d4f-ba5c-0a94edd227db,LIST_TRANSACTIONS,hbciListTransactions,false -35508,418901e0-858b-4d4f-ba5c-0a94edd227db,AUTHORIZATION,,false -35509,418901e0-858b-4d4f-ba5c-0a94edd227db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35510,418901e0-858b-4d4f-ba5c-0a94edd227db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35511,418901e0-858b-4d4f-ba5c-0a94edd227db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35506,c03155eb-5b4a-4972-9db4-0376f698bbd5,LIST_ACCOUNTS,hbciListAccounts,false +35507,c03155eb-5b4a-4972-9db4-0376f698bbd5,LIST_TRANSACTIONS,hbciListTransactions,false +35508,c03155eb-5b4a-4972-9db4-0376f698bbd5,AUTHORIZATION,,false +35509,c03155eb-5b4a-4972-9db4-0376f698bbd5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35510,c03155eb-5b4a-4972-9db4-0376f698bbd5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35511,c03155eb-5b4a-4972-9db4-0376f698bbd5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35512,0e010171-78b1-468b-96ad-1a64f8c8c9b5,LIST_ACCOUNTS,xs2aListAccounts,true -35513,0e010171-78b1-468b-96ad-1a64f8c8c9b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35513,0e010171-78b1-468b-96ad-1a64f8c8c9b5,LIST_TRANSACTIONS,xs2aListTransactions,true 35514,0e010171-78b1-468b-96ad-1a64f8c8c9b5,AUTHORIZATION,,true 35515,0e010171-78b1-468b-96ad-1a64f8c8c9b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35516,0e010171-78b1-468b-96ad-1a64f8c8c9b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35517,0e010171-78b1-468b-96ad-1a64f8c8c9b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35518,64e85ecc-76a0-4820-bfd2-68935ab6a5b3,LIST_ACCOUNTS,hbciListAccounts,false -35519,64e85ecc-76a0-4820-bfd2-68935ab6a5b3,LIST_TRANSACTIONS,hbciListTransactions,false -35520,64e85ecc-76a0-4820-bfd2-68935ab6a5b3,AUTHORIZATION,,false -35521,64e85ecc-76a0-4820-bfd2-68935ab6a5b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35522,64e85ecc-76a0-4820-bfd2-68935ab6a5b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35523,64e85ecc-76a0-4820-bfd2-68935ab6a5b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35518,f64a5331-c2be-4d09-8ded-e950ce9cfc8e,LIST_ACCOUNTS,hbciListAccounts,false +35519,f64a5331-c2be-4d09-8ded-e950ce9cfc8e,LIST_TRANSACTIONS,hbciListTransactions,false +35520,f64a5331-c2be-4d09-8ded-e950ce9cfc8e,AUTHORIZATION,,false +35521,f64a5331-c2be-4d09-8ded-e950ce9cfc8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35522,f64a5331-c2be-4d09-8ded-e950ce9cfc8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35523,f64a5331-c2be-4d09-8ded-e950ce9cfc8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35524,645f38c2-6f9e-4425-b5f9-421555572d07,LIST_ACCOUNTS,xs2aListAccounts,true -35525,645f38c2-6f9e-4425-b5f9-421555572d07,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35525,645f38c2-6f9e-4425-b5f9-421555572d07,LIST_TRANSACTIONS,xs2aListTransactions,true 35526,645f38c2-6f9e-4425-b5f9-421555572d07,AUTHORIZATION,,true 35527,645f38c2-6f9e-4425-b5f9-421555572d07,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35528,645f38c2-6f9e-4425-b5f9-421555572d07,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35529,645f38c2-6f9e-4425-b5f9-421555572d07,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35530,40c0670e-f4c0-4bcc-ace0-88db6de3610b,LIST_ACCOUNTS,hbciListAccounts,false -35531,40c0670e-f4c0-4bcc-ace0-88db6de3610b,LIST_TRANSACTIONS,hbciListTransactions,false -35532,40c0670e-f4c0-4bcc-ace0-88db6de3610b,AUTHORIZATION,,false -35533,40c0670e-f4c0-4bcc-ace0-88db6de3610b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35534,40c0670e-f4c0-4bcc-ace0-88db6de3610b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35535,40c0670e-f4c0-4bcc-ace0-88db6de3610b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35530,d2995cb1-ce58-4aaf-b9fd-db7850656b60,LIST_ACCOUNTS,hbciListAccounts,false +35531,d2995cb1-ce58-4aaf-b9fd-db7850656b60,LIST_TRANSACTIONS,hbciListTransactions,false +35532,d2995cb1-ce58-4aaf-b9fd-db7850656b60,AUTHORIZATION,,false +35533,d2995cb1-ce58-4aaf-b9fd-db7850656b60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35534,d2995cb1-ce58-4aaf-b9fd-db7850656b60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35535,d2995cb1-ce58-4aaf-b9fd-db7850656b60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35536,46dae635-3557-4bb1-bb56-78863c0268fe,LIST_ACCOUNTS,xs2aListAccounts,true -35537,46dae635-3557-4bb1-bb56-78863c0268fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35537,46dae635-3557-4bb1-bb56-78863c0268fe,LIST_TRANSACTIONS,xs2aListTransactions,true 35538,46dae635-3557-4bb1-bb56-78863c0268fe,AUTHORIZATION,,true 35539,46dae635-3557-4bb1-bb56-78863c0268fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35540,46dae635-3557-4bb1-bb56-78863c0268fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35541,46dae635-3557-4bb1-bb56-78863c0268fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35542,5427a0d1-202a-488f-b09e-4e9965df3330,LIST_ACCOUNTS,hbciListAccounts,false -35543,5427a0d1-202a-488f-b09e-4e9965df3330,LIST_TRANSACTIONS,hbciListTransactions,false -35544,5427a0d1-202a-488f-b09e-4e9965df3330,AUTHORIZATION,,false -35545,5427a0d1-202a-488f-b09e-4e9965df3330,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35546,5427a0d1-202a-488f-b09e-4e9965df3330,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35547,5427a0d1-202a-488f-b09e-4e9965df3330,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35542,9a289d60-5729-456e-879a-e8f9eb7c1f3b,LIST_ACCOUNTS,hbciListAccounts,false +35543,9a289d60-5729-456e-879a-e8f9eb7c1f3b,LIST_TRANSACTIONS,hbciListTransactions,false +35544,9a289d60-5729-456e-879a-e8f9eb7c1f3b,AUTHORIZATION,,false +35545,9a289d60-5729-456e-879a-e8f9eb7c1f3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35546,9a289d60-5729-456e-879a-e8f9eb7c1f3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35547,9a289d60-5729-456e-879a-e8f9eb7c1f3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35548,632457b3-a498-4b12-9190-e57976855ce6,LIST_ACCOUNTS,xs2aListAccounts,true -35549,632457b3-a498-4b12-9190-e57976855ce6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35549,632457b3-a498-4b12-9190-e57976855ce6,LIST_TRANSACTIONS,xs2aListTransactions,true 35550,632457b3-a498-4b12-9190-e57976855ce6,AUTHORIZATION,,true 35551,632457b3-a498-4b12-9190-e57976855ce6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35552,632457b3-a498-4b12-9190-e57976855ce6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35553,632457b3-a498-4b12-9190-e57976855ce6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35554,b3bf6bdc-60f6-41c1-be40-5961fb35dafb,LIST_ACCOUNTS,hbciListAccounts,false -35555,b3bf6bdc-60f6-41c1-be40-5961fb35dafb,LIST_TRANSACTIONS,hbciListTransactions,false -35556,b3bf6bdc-60f6-41c1-be40-5961fb35dafb,AUTHORIZATION,,false -35557,b3bf6bdc-60f6-41c1-be40-5961fb35dafb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35558,b3bf6bdc-60f6-41c1-be40-5961fb35dafb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35559,b3bf6bdc-60f6-41c1-be40-5961fb35dafb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35554,2af5bfa9-9e6c-4ac0-b1d4-484fd018e45f,LIST_ACCOUNTS,hbciListAccounts,false +35555,2af5bfa9-9e6c-4ac0-b1d4-484fd018e45f,LIST_TRANSACTIONS,hbciListTransactions,false +35556,2af5bfa9-9e6c-4ac0-b1d4-484fd018e45f,AUTHORIZATION,,false +35557,2af5bfa9-9e6c-4ac0-b1d4-484fd018e45f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35558,2af5bfa9-9e6c-4ac0-b1d4-484fd018e45f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35559,2af5bfa9-9e6c-4ac0-b1d4-484fd018e45f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35560,4e1c9a5f-0822-4c03-a3b7-4b7cca01814c,LIST_ACCOUNTS,xs2aListAccounts,true -35561,4e1c9a5f-0822-4c03-a3b7-4b7cca01814c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35561,4e1c9a5f-0822-4c03-a3b7-4b7cca01814c,LIST_TRANSACTIONS,xs2aListTransactions,true 35562,4e1c9a5f-0822-4c03-a3b7-4b7cca01814c,AUTHORIZATION,,true 35563,4e1c9a5f-0822-4c03-a3b7-4b7cca01814c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35564,4e1c9a5f-0822-4c03-a3b7-4b7cca01814c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35565,4e1c9a5f-0822-4c03-a3b7-4b7cca01814c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35566,514309b3-ebf7-4418-aaa6-944d602cd5f6,LIST_ACCOUNTS,hbciListAccounts,false -35567,514309b3-ebf7-4418-aaa6-944d602cd5f6,LIST_TRANSACTIONS,hbciListTransactions,false -35568,514309b3-ebf7-4418-aaa6-944d602cd5f6,AUTHORIZATION,,false -35569,514309b3-ebf7-4418-aaa6-944d602cd5f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35570,514309b3-ebf7-4418-aaa6-944d602cd5f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35571,514309b3-ebf7-4418-aaa6-944d602cd5f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35566,bd6dd751-167d-496b-a88a-363b292c022e,LIST_ACCOUNTS,hbciListAccounts,false +35567,bd6dd751-167d-496b-a88a-363b292c022e,LIST_TRANSACTIONS,hbciListTransactions,false +35568,bd6dd751-167d-496b-a88a-363b292c022e,AUTHORIZATION,,false +35569,bd6dd751-167d-496b-a88a-363b292c022e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35570,bd6dd751-167d-496b-a88a-363b292c022e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35571,bd6dd751-167d-496b-a88a-363b292c022e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35572,fd5fa95a-a510-458a-917f-f715bbd796a7,LIST_ACCOUNTS,xs2aListAccounts,true -35573,fd5fa95a-a510-458a-917f-f715bbd796a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35573,fd5fa95a-a510-458a-917f-f715bbd796a7,LIST_TRANSACTIONS,xs2aListTransactions,true 35574,fd5fa95a-a510-458a-917f-f715bbd796a7,AUTHORIZATION,,true 35575,fd5fa95a-a510-458a-917f-f715bbd796a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35576,fd5fa95a-a510-458a-917f-f715bbd796a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35577,fd5fa95a-a510-458a-917f-f715bbd796a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35578,141ac038-2f0f-49de-94ab-29ead541e26e,LIST_ACCOUNTS,hbciListAccounts,false -35579,141ac038-2f0f-49de-94ab-29ead541e26e,LIST_TRANSACTIONS,hbciListTransactions,false -35580,141ac038-2f0f-49de-94ab-29ead541e26e,AUTHORIZATION,,false -35581,141ac038-2f0f-49de-94ab-29ead541e26e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35582,141ac038-2f0f-49de-94ab-29ead541e26e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35583,141ac038-2f0f-49de-94ab-29ead541e26e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35578,005179dd-119b-4d60-86b4-e95b78be6ed1,LIST_ACCOUNTS,hbciListAccounts,false +35579,005179dd-119b-4d60-86b4-e95b78be6ed1,LIST_TRANSACTIONS,hbciListTransactions,false +35580,005179dd-119b-4d60-86b4-e95b78be6ed1,AUTHORIZATION,,false +35581,005179dd-119b-4d60-86b4-e95b78be6ed1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35582,005179dd-119b-4d60-86b4-e95b78be6ed1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35583,005179dd-119b-4d60-86b4-e95b78be6ed1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35584,d2284fd0-c93f-4098-8ad5-e872236cd672,LIST_ACCOUNTS,xs2aListAccounts,true -35585,d2284fd0-c93f-4098-8ad5-e872236cd672,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35585,d2284fd0-c93f-4098-8ad5-e872236cd672,LIST_TRANSACTIONS,xs2aListTransactions,true 35586,d2284fd0-c93f-4098-8ad5-e872236cd672,AUTHORIZATION,,true 35587,d2284fd0-c93f-4098-8ad5-e872236cd672,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35588,d2284fd0-c93f-4098-8ad5-e872236cd672,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35589,d2284fd0-c93f-4098-8ad5-e872236cd672,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35590,76c9e974-df25-4658-a521-e96279021fc6,LIST_ACCOUNTS,hbciListAccounts,false -35591,76c9e974-df25-4658-a521-e96279021fc6,LIST_TRANSACTIONS,hbciListTransactions,false -35592,76c9e974-df25-4658-a521-e96279021fc6,AUTHORIZATION,,false -35593,76c9e974-df25-4658-a521-e96279021fc6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35594,76c9e974-df25-4658-a521-e96279021fc6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35595,76c9e974-df25-4658-a521-e96279021fc6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35590,81404c13-4815-41a1-8404-b30964f3cc5a,LIST_ACCOUNTS,hbciListAccounts,false +35591,81404c13-4815-41a1-8404-b30964f3cc5a,LIST_TRANSACTIONS,hbciListTransactions,false +35592,81404c13-4815-41a1-8404-b30964f3cc5a,AUTHORIZATION,,false +35593,81404c13-4815-41a1-8404-b30964f3cc5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35594,81404c13-4815-41a1-8404-b30964f3cc5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35595,81404c13-4815-41a1-8404-b30964f3cc5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35596,6b0ff156-4a75-4cf1-a22d-c5ac8d16453d,LIST_ACCOUNTS,xs2aListAccounts,true -35597,6b0ff156-4a75-4cf1-a22d-c5ac8d16453d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35597,6b0ff156-4a75-4cf1-a22d-c5ac8d16453d,LIST_TRANSACTIONS,xs2aListTransactions,true 35598,6b0ff156-4a75-4cf1-a22d-c5ac8d16453d,AUTHORIZATION,,true 35599,6b0ff156-4a75-4cf1-a22d-c5ac8d16453d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35600,6b0ff156-4a75-4cf1-a22d-c5ac8d16453d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35601,6b0ff156-4a75-4cf1-a22d-c5ac8d16453d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35602,003a6095-2324-4a54-ab69-6138c333646c,LIST_ACCOUNTS,hbciListAccounts,false -35603,003a6095-2324-4a54-ab69-6138c333646c,LIST_TRANSACTIONS,hbciListTransactions,false -35604,003a6095-2324-4a54-ab69-6138c333646c,AUTHORIZATION,,false -35605,003a6095-2324-4a54-ab69-6138c333646c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35606,003a6095-2324-4a54-ab69-6138c333646c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35607,003a6095-2324-4a54-ab69-6138c333646c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35602,f74f26a2-264b-471f-8f3d-6a002d7b46d3,LIST_ACCOUNTS,hbciListAccounts,false +35603,f74f26a2-264b-471f-8f3d-6a002d7b46d3,LIST_TRANSACTIONS,hbciListTransactions,false +35604,f74f26a2-264b-471f-8f3d-6a002d7b46d3,AUTHORIZATION,,false +35605,f74f26a2-264b-471f-8f3d-6a002d7b46d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35606,f74f26a2-264b-471f-8f3d-6a002d7b46d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35607,f74f26a2-264b-471f-8f3d-6a002d7b46d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35608,9e958d39-c002-43e8-86ad-1f8c168371ef,LIST_ACCOUNTS,xs2aListAccounts,true -35609,9e958d39-c002-43e8-86ad-1f8c168371ef,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35609,9e958d39-c002-43e8-86ad-1f8c168371ef,LIST_TRANSACTIONS,xs2aListTransactions,true 35610,9e958d39-c002-43e8-86ad-1f8c168371ef,AUTHORIZATION,,true 35611,9e958d39-c002-43e8-86ad-1f8c168371ef,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35612,9e958d39-c002-43e8-86ad-1f8c168371ef,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35613,9e958d39-c002-43e8-86ad-1f8c168371ef,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35614,31e282eb-9b76-424a-9ac9-03bd491f7e0e,LIST_ACCOUNTS,hbciListAccounts,false -35615,31e282eb-9b76-424a-9ac9-03bd491f7e0e,LIST_TRANSACTIONS,hbciListTransactions,false -35616,31e282eb-9b76-424a-9ac9-03bd491f7e0e,AUTHORIZATION,,false -35617,31e282eb-9b76-424a-9ac9-03bd491f7e0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35618,31e282eb-9b76-424a-9ac9-03bd491f7e0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35619,31e282eb-9b76-424a-9ac9-03bd491f7e0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35614,1bc9d918-1410-495a-87b9-efffa8a6dca5,LIST_ACCOUNTS,hbciListAccounts,false +35615,1bc9d918-1410-495a-87b9-efffa8a6dca5,LIST_TRANSACTIONS,hbciListTransactions,false +35616,1bc9d918-1410-495a-87b9-efffa8a6dca5,AUTHORIZATION,,false +35617,1bc9d918-1410-495a-87b9-efffa8a6dca5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35618,1bc9d918-1410-495a-87b9-efffa8a6dca5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35619,1bc9d918-1410-495a-87b9-efffa8a6dca5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35620,3774711a-667f-429f-80d0-184ded296c74,LIST_ACCOUNTS,xs2aListAccounts,true -35621,3774711a-667f-429f-80d0-184ded296c74,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35621,3774711a-667f-429f-80d0-184ded296c74,LIST_TRANSACTIONS,xs2aListTransactions,true 35622,3774711a-667f-429f-80d0-184ded296c74,AUTHORIZATION,,true 35623,3774711a-667f-429f-80d0-184ded296c74,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35624,3774711a-667f-429f-80d0-184ded296c74,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35625,3774711a-667f-429f-80d0-184ded296c74,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35626,3a3cd4de-b126-43cd-80d0-009cc5e8bfb6,LIST_ACCOUNTS,hbciListAccounts,false -35627,3a3cd4de-b126-43cd-80d0-009cc5e8bfb6,LIST_TRANSACTIONS,hbciListTransactions,false -35628,3a3cd4de-b126-43cd-80d0-009cc5e8bfb6,AUTHORIZATION,,false -35629,3a3cd4de-b126-43cd-80d0-009cc5e8bfb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35630,3a3cd4de-b126-43cd-80d0-009cc5e8bfb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35631,3a3cd4de-b126-43cd-80d0-009cc5e8bfb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35626,0b2e5271-8cdc-40cf-b72b-0a505d271e12,LIST_ACCOUNTS,hbciListAccounts,false +35627,0b2e5271-8cdc-40cf-b72b-0a505d271e12,LIST_TRANSACTIONS,hbciListTransactions,false +35628,0b2e5271-8cdc-40cf-b72b-0a505d271e12,AUTHORIZATION,,false +35629,0b2e5271-8cdc-40cf-b72b-0a505d271e12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35630,0b2e5271-8cdc-40cf-b72b-0a505d271e12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35631,0b2e5271-8cdc-40cf-b72b-0a505d271e12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35632,1a30b204-107d-4a92-a2b1-748328d99054,LIST_ACCOUNTS,xs2aListAccounts,true -35633,1a30b204-107d-4a92-a2b1-748328d99054,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35633,1a30b204-107d-4a92-a2b1-748328d99054,LIST_TRANSACTIONS,xs2aListTransactions,true 35634,1a30b204-107d-4a92-a2b1-748328d99054,AUTHORIZATION,,true 35635,1a30b204-107d-4a92-a2b1-748328d99054,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35636,1a30b204-107d-4a92-a2b1-748328d99054,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35637,1a30b204-107d-4a92-a2b1-748328d99054,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35638,1347b493-393b-4e2e-a14a-9d80d0d0d399,LIST_ACCOUNTS,hbciListAccounts,false -35639,1347b493-393b-4e2e-a14a-9d80d0d0d399,LIST_TRANSACTIONS,hbciListTransactions,false -35640,1347b493-393b-4e2e-a14a-9d80d0d0d399,AUTHORIZATION,,false -35641,1347b493-393b-4e2e-a14a-9d80d0d0d399,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35642,1347b493-393b-4e2e-a14a-9d80d0d0d399,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35643,1347b493-393b-4e2e-a14a-9d80d0d0d399,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35638,65c353df-b159-4817-b509-d0dc6e7dc492,LIST_ACCOUNTS,hbciListAccounts,false +35639,65c353df-b159-4817-b509-d0dc6e7dc492,LIST_TRANSACTIONS,hbciListTransactions,false +35640,65c353df-b159-4817-b509-d0dc6e7dc492,AUTHORIZATION,,false +35641,65c353df-b159-4817-b509-d0dc6e7dc492,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35642,65c353df-b159-4817-b509-d0dc6e7dc492,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35643,65c353df-b159-4817-b509-d0dc6e7dc492,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35644,24197554-7336-4ac5-992e-f55e894a71f2,LIST_ACCOUNTS,xs2aListAccounts,true -35645,24197554-7336-4ac5-992e-f55e894a71f2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35645,24197554-7336-4ac5-992e-f55e894a71f2,LIST_TRANSACTIONS,xs2aListTransactions,true 35646,24197554-7336-4ac5-992e-f55e894a71f2,AUTHORIZATION,,true 35647,24197554-7336-4ac5-992e-f55e894a71f2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35648,24197554-7336-4ac5-992e-f55e894a71f2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35649,24197554-7336-4ac5-992e-f55e894a71f2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35650,b02ac401-d222-4e95-ab1a-dad552c42610,LIST_ACCOUNTS,hbciListAccounts,false -35651,b02ac401-d222-4e95-ab1a-dad552c42610,LIST_TRANSACTIONS,hbciListTransactions,false -35652,b02ac401-d222-4e95-ab1a-dad552c42610,AUTHORIZATION,,false -35653,b02ac401-d222-4e95-ab1a-dad552c42610,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35654,b02ac401-d222-4e95-ab1a-dad552c42610,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35655,b02ac401-d222-4e95-ab1a-dad552c42610,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35650,75be4e68-4f58-4cfc-8c24-80ac2980233b,LIST_ACCOUNTS,hbciListAccounts,false +35651,75be4e68-4f58-4cfc-8c24-80ac2980233b,LIST_TRANSACTIONS,hbciListTransactions,false +35652,75be4e68-4f58-4cfc-8c24-80ac2980233b,AUTHORIZATION,,false +35653,75be4e68-4f58-4cfc-8c24-80ac2980233b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35654,75be4e68-4f58-4cfc-8c24-80ac2980233b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35655,75be4e68-4f58-4cfc-8c24-80ac2980233b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35656,401bcb7b-0968-4825-b305-3ff2c1bb92d0,LIST_ACCOUNTS,xs2aListAccounts,true -35657,401bcb7b-0968-4825-b305-3ff2c1bb92d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35657,401bcb7b-0968-4825-b305-3ff2c1bb92d0,LIST_TRANSACTIONS,xs2aListTransactions,true 35658,401bcb7b-0968-4825-b305-3ff2c1bb92d0,AUTHORIZATION,,true 35659,401bcb7b-0968-4825-b305-3ff2c1bb92d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35660,401bcb7b-0968-4825-b305-3ff2c1bb92d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35661,401bcb7b-0968-4825-b305-3ff2c1bb92d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35662,e35bdde9-6f64-4d1b-8f6e-bed6d07096f5,LIST_ACCOUNTS,hbciListAccounts,false -35663,e35bdde9-6f64-4d1b-8f6e-bed6d07096f5,LIST_TRANSACTIONS,hbciListTransactions,false -35664,e35bdde9-6f64-4d1b-8f6e-bed6d07096f5,AUTHORIZATION,,false -35665,e35bdde9-6f64-4d1b-8f6e-bed6d07096f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35666,e35bdde9-6f64-4d1b-8f6e-bed6d07096f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35667,e35bdde9-6f64-4d1b-8f6e-bed6d07096f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35662,446cdd2c-c0d0-4e22-b7c5-e6ab92eec0dc,LIST_ACCOUNTS,hbciListAccounts,false +35663,446cdd2c-c0d0-4e22-b7c5-e6ab92eec0dc,LIST_TRANSACTIONS,hbciListTransactions,false +35664,446cdd2c-c0d0-4e22-b7c5-e6ab92eec0dc,AUTHORIZATION,,false +35665,446cdd2c-c0d0-4e22-b7c5-e6ab92eec0dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35666,446cdd2c-c0d0-4e22-b7c5-e6ab92eec0dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35667,446cdd2c-c0d0-4e22-b7c5-e6ab92eec0dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35668,08d62739-623d-4635-b2bb-11785e3b20c0,LIST_ACCOUNTS,xs2aListAccounts,true -35669,08d62739-623d-4635-b2bb-11785e3b20c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35669,08d62739-623d-4635-b2bb-11785e3b20c0,LIST_TRANSACTIONS,xs2aListTransactions,true 35670,08d62739-623d-4635-b2bb-11785e3b20c0,AUTHORIZATION,,true 35671,08d62739-623d-4635-b2bb-11785e3b20c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35672,08d62739-623d-4635-b2bb-11785e3b20c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35673,08d62739-623d-4635-b2bb-11785e3b20c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35674,b023641f-41ed-4386-a450-2eb87fba941c,LIST_ACCOUNTS,hbciListAccounts,false -35675,b023641f-41ed-4386-a450-2eb87fba941c,LIST_TRANSACTIONS,hbciListTransactions,false -35676,b023641f-41ed-4386-a450-2eb87fba941c,AUTHORIZATION,,false -35677,b023641f-41ed-4386-a450-2eb87fba941c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35678,b023641f-41ed-4386-a450-2eb87fba941c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35679,b023641f-41ed-4386-a450-2eb87fba941c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35674,41819604-b2aa-4bf5-a7cf-1c91e2dc9553,LIST_ACCOUNTS,hbciListAccounts,false +35675,41819604-b2aa-4bf5-a7cf-1c91e2dc9553,LIST_TRANSACTIONS,hbciListTransactions,false +35676,41819604-b2aa-4bf5-a7cf-1c91e2dc9553,AUTHORIZATION,,false +35677,41819604-b2aa-4bf5-a7cf-1c91e2dc9553,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35678,41819604-b2aa-4bf5-a7cf-1c91e2dc9553,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35679,41819604-b2aa-4bf5-a7cf-1c91e2dc9553,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35680,d3d21d3a-0d72-432c-8b14-4ae5f0873164,LIST_ACCOUNTS,xs2aListAccounts,true -35681,d3d21d3a-0d72-432c-8b14-4ae5f0873164,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35681,d3d21d3a-0d72-432c-8b14-4ae5f0873164,LIST_TRANSACTIONS,xs2aListTransactions,true 35682,d3d21d3a-0d72-432c-8b14-4ae5f0873164,AUTHORIZATION,,true 35683,d3d21d3a-0d72-432c-8b14-4ae5f0873164,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35684,d3d21d3a-0d72-432c-8b14-4ae5f0873164,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35685,d3d21d3a-0d72-432c-8b14-4ae5f0873164,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35686,7af2c50e-eb4f-4502-abe7-4f56227909d5,LIST_ACCOUNTS,hbciListAccounts,false -35687,7af2c50e-eb4f-4502-abe7-4f56227909d5,LIST_TRANSACTIONS,hbciListTransactions,false -35688,7af2c50e-eb4f-4502-abe7-4f56227909d5,AUTHORIZATION,,false -35689,7af2c50e-eb4f-4502-abe7-4f56227909d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35690,7af2c50e-eb4f-4502-abe7-4f56227909d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35691,7af2c50e-eb4f-4502-abe7-4f56227909d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35686,beb053ae-ab0b-4e95-8da1-dc94f6e67399,LIST_ACCOUNTS,hbciListAccounts,false +35687,beb053ae-ab0b-4e95-8da1-dc94f6e67399,LIST_TRANSACTIONS,hbciListTransactions,false +35688,beb053ae-ab0b-4e95-8da1-dc94f6e67399,AUTHORIZATION,,false +35689,beb053ae-ab0b-4e95-8da1-dc94f6e67399,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35690,beb053ae-ab0b-4e95-8da1-dc94f6e67399,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35691,beb053ae-ab0b-4e95-8da1-dc94f6e67399,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35692,5e335a30-781f-4df6-8b9c-150fadfaf845,LIST_ACCOUNTS,xs2aListAccounts,true -35693,5e335a30-781f-4df6-8b9c-150fadfaf845,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35693,5e335a30-781f-4df6-8b9c-150fadfaf845,LIST_TRANSACTIONS,xs2aListTransactions,true 35694,5e335a30-781f-4df6-8b9c-150fadfaf845,AUTHORIZATION,,true 35695,5e335a30-781f-4df6-8b9c-150fadfaf845,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35696,5e335a30-781f-4df6-8b9c-150fadfaf845,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35697,5e335a30-781f-4df6-8b9c-150fadfaf845,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35698,974ebfe6-ee42-47ed-ab9e-ebb8e7c919d1,LIST_ACCOUNTS,hbciListAccounts,false -35699,974ebfe6-ee42-47ed-ab9e-ebb8e7c919d1,LIST_TRANSACTIONS,hbciListTransactions,false -35700,974ebfe6-ee42-47ed-ab9e-ebb8e7c919d1,AUTHORIZATION,,false -35701,974ebfe6-ee42-47ed-ab9e-ebb8e7c919d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35702,974ebfe6-ee42-47ed-ab9e-ebb8e7c919d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35703,974ebfe6-ee42-47ed-ab9e-ebb8e7c919d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35698,67a73060-13f6-4816-86ab-7c495c61ac28,LIST_ACCOUNTS,hbciListAccounts,false +35699,67a73060-13f6-4816-86ab-7c495c61ac28,LIST_TRANSACTIONS,hbciListTransactions,false +35700,67a73060-13f6-4816-86ab-7c495c61ac28,AUTHORIZATION,,false +35701,67a73060-13f6-4816-86ab-7c495c61ac28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35702,67a73060-13f6-4816-86ab-7c495c61ac28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35703,67a73060-13f6-4816-86ab-7c495c61ac28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35704,a674c4e4-6ac7-441b-b4c1-f5ffeea21c88,LIST_ACCOUNTS,xs2aListAccounts,true -35705,a674c4e4-6ac7-441b-b4c1-f5ffeea21c88,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35705,a674c4e4-6ac7-441b-b4c1-f5ffeea21c88,LIST_TRANSACTIONS,xs2aListTransactions,true 35706,a674c4e4-6ac7-441b-b4c1-f5ffeea21c88,AUTHORIZATION,,true 35707,a674c4e4-6ac7-441b-b4c1-f5ffeea21c88,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35708,a674c4e4-6ac7-441b-b4c1-f5ffeea21c88,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35709,a674c4e4-6ac7-441b-b4c1-f5ffeea21c88,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35710,f183658f-b875-4e24-bfba-0e3f1260cfd9,LIST_ACCOUNTS,hbciListAccounts,false -35711,f183658f-b875-4e24-bfba-0e3f1260cfd9,LIST_TRANSACTIONS,hbciListTransactions,false -35712,f183658f-b875-4e24-bfba-0e3f1260cfd9,AUTHORIZATION,,false -35713,f183658f-b875-4e24-bfba-0e3f1260cfd9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35714,f183658f-b875-4e24-bfba-0e3f1260cfd9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35715,f183658f-b875-4e24-bfba-0e3f1260cfd9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35710,51761a4d-825d-49f9-97a7-bdd63931be19,LIST_ACCOUNTS,hbciListAccounts,false +35711,51761a4d-825d-49f9-97a7-bdd63931be19,LIST_TRANSACTIONS,hbciListTransactions,false +35712,51761a4d-825d-49f9-97a7-bdd63931be19,AUTHORIZATION,,false +35713,51761a4d-825d-49f9-97a7-bdd63931be19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35714,51761a4d-825d-49f9-97a7-bdd63931be19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35715,51761a4d-825d-49f9-97a7-bdd63931be19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35716,7222c157-50fb-4179-bfd4-20b578b5dc74,LIST_ACCOUNTS,xs2aListAccounts,true -35717,7222c157-50fb-4179-bfd4-20b578b5dc74,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35717,7222c157-50fb-4179-bfd4-20b578b5dc74,LIST_TRANSACTIONS,xs2aListTransactions,true 35718,7222c157-50fb-4179-bfd4-20b578b5dc74,AUTHORIZATION,,true 35719,7222c157-50fb-4179-bfd4-20b578b5dc74,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35720,7222c157-50fb-4179-bfd4-20b578b5dc74,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35721,7222c157-50fb-4179-bfd4-20b578b5dc74,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35722,3928fa65-8641-41bb-a6a3-1a1902f299e8,LIST_ACCOUNTS,hbciListAccounts,false -35723,3928fa65-8641-41bb-a6a3-1a1902f299e8,LIST_TRANSACTIONS,hbciListTransactions,false -35724,3928fa65-8641-41bb-a6a3-1a1902f299e8,AUTHORIZATION,,false -35725,3928fa65-8641-41bb-a6a3-1a1902f299e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35726,3928fa65-8641-41bb-a6a3-1a1902f299e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35727,3928fa65-8641-41bb-a6a3-1a1902f299e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35722,0a64d175-11bc-4b7a-a6b7-5895f684d66f,LIST_ACCOUNTS,hbciListAccounts,false +35723,0a64d175-11bc-4b7a-a6b7-5895f684d66f,LIST_TRANSACTIONS,hbciListTransactions,false +35724,0a64d175-11bc-4b7a-a6b7-5895f684d66f,AUTHORIZATION,,false +35725,0a64d175-11bc-4b7a-a6b7-5895f684d66f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35726,0a64d175-11bc-4b7a-a6b7-5895f684d66f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35727,0a64d175-11bc-4b7a-a6b7-5895f684d66f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35728,b41f795e-2c90-42b3-aac8-4499c9d042dc,LIST_ACCOUNTS,xs2aListAccounts,true -35729,b41f795e-2c90-42b3-aac8-4499c9d042dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35729,b41f795e-2c90-42b3-aac8-4499c9d042dc,LIST_TRANSACTIONS,xs2aListTransactions,true 35730,b41f795e-2c90-42b3-aac8-4499c9d042dc,AUTHORIZATION,,true 35731,b41f795e-2c90-42b3-aac8-4499c9d042dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35732,b41f795e-2c90-42b3-aac8-4499c9d042dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35733,b41f795e-2c90-42b3-aac8-4499c9d042dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35734,e0c8dd75-f18d-4289-b72f-e21bebcef588,LIST_ACCOUNTS,hbciListAccounts,false -35735,e0c8dd75-f18d-4289-b72f-e21bebcef588,LIST_TRANSACTIONS,hbciListTransactions,false -35736,e0c8dd75-f18d-4289-b72f-e21bebcef588,AUTHORIZATION,,false -35737,e0c8dd75-f18d-4289-b72f-e21bebcef588,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35738,e0c8dd75-f18d-4289-b72f-e21bebcef588,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35739,e0c8dd75-f18d-4289-b72f-e21bebcef588,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35734,1ed3a524-ed46-4266-a2c8-2d9785230d5c,LIST_ACCOUNTS,hbciListAccounts,false +35735,1ed3a524-ed46-4266-a2c8-2d9785230d5c,LIST_TRANSACTIONS,hbciListTransactions,false +35736,1ed3a524-ed46-4266-a2c8-2d9785230d5c,AUTHORIZATION,,false +35737,1ed3a524-ed46-4266-a2c8-2d9785230d5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35738,1ed3a524-ed46-4266-a2c8-2d9785230d5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35739,1ed3a524-ed46-4266-a2c8-2d9785230d5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35740,96afff54-eb8b-461f-afab-6accde43d411,LIST_ACCOUNTS,xs2aListAccounts,true -35741,96afff54-eb8b-461f-afab-6accde43d411,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35741,96afff54-eb8b-461f-afab-6accde43d411,LIST_TRANSACTIONS,xs2aListTransactions,true 35742,96afff54-eb8b-461f-afab-6accde43d411,AUTHORIZATION,,true 35743,96afff54-eb8b-461f-afab-6accde43d411,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35744,96afff54-eb8b-461f-afab-6accde43d411,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35745,96afff54-eb8b-461f-afab-6accde43d411,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35746,2f1e9ae5-ef03-470c-8eac-d27dd531045e,LIST_ACCOUNTS,hbciListAccounts,false -35747,2f1e9ae5-ef03-470c-8eac-d27dd531045e,LIST_TRANSACTIONS,hbciListTransactions,false -35748,2f1e9ae5-ef03-470c-8eac-d27dd531045e,AUTHORIZATION,,false -35749,2f1e9ae5-ef03-470c-8eac-d27dd531045e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35750,2f1e9ae5-ef03-470c-8eac-d27dd531045e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35751,2f1e9ae5-ef03-470c-8eac-d27dd531045e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35746,1deef22a-1947-4816-89ce-baada03a83ea,LIST_ACCOUNTS,hbciListAccounts,false +35747,1deef22a-1947-4816-89ce-baada03a83ea,LIST_TRANSACTIONS,hbciListTransactions,false +35748,1deef22a-1947-4816-89ce-baada03a83ea,AUTHORIZATION,,false +35749,1deef22a-1947-4816-89ce-baada03a83ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35750,1deef22a-1947-4816-89ce-baada03a83ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35751,1deef22a-1947-4816-89ce-baada03a83ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35752,407a47a2-28f2-447f-a6ee-32978675ca11,LIST_ACCOUNTS,xs2aListAccounts,true -35753,407a47a2-28f2-447f-a6ee-32978675ca11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35753,407a47a2-28f2-447f-a6ee-32978675ca11,LIST_TRANSACTIONS,xs2aListTransactions,true 35754,407a47a2-28f2-447f-a6ee-32978675ca11,AUTHORIZATION,,true 35755,407a47a2-28f2-447f-a6ee-32978675ca11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35756,407a47a2-28f2-447f-a6ee-32978675ca11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35757,407a47a2-28f2-447f-a6ee-32978675ca11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35758,705096a9-8285-4d65-823a-3f97dbe906ed,LIST_ACCOUNTS,hbciListAccounts,false -35759,705096a9-8285-4d65-823a-3f97dbe906ed,LIST_TRANSACTIONS,hbciListTransactions,false -35760,705096a9-8285-4d65-823a-3f97dbe906ed,AUTHORIZATION,,false -35761,705096a9-8285-4d65-823a-3f97dbe906ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35762,705096a9-8285-4d65-823a-3f97dbe906ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35763,705096a9-8285-4d65-823a-3f97dbe906ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35758,a3588a06-ac1a-4323-ba14-50a4b8ff51d3,LIST_ACCOUNTS,hbciListAccounts,false +35759,a3588a06-ac1a-4323-ba14-50a4b8ff51d3,LIST_TRANSACTIONS,hbciListTransactions,false +35760,a3588a06-ac1a-4323-ba14-50a4b8ff51d3,AUTHORIZATION,,false +35761,a3588a06-ac1a-4323-ba14-50a4b8ff51d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35762,a3588a06-ac1a-4323-ba14-50a4b8ff51d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35763,a3588a06-ac1a-4323-ba14-50a4b8ff51d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35764,6211a8d8-82f8-4354-8fe3-336239af6212,LIST_ACCOUNTS,xs2aListAccounts,true -35765,6211a8d8-82f8-4354-8fe3-336239af6212,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35765,6211a8d8-82f8-4354-8fe3-336239af6212,LIST_TRANSACTIONS,xs2aListTransactions,true 35766,6211a8d8-82f8-4354-8fe3-336239af6212,AUTHORIZATION,,true 35767,6211a8d8-82f8-4354-8fe3-336239af6212,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35768,6211a8d8-82f8-4354-8fe3-336239af6212,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35769,6211a8d8-82f8-4354-8fe3-336239af6212,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35770,dee61653-8c29-4f99-89af-29520504dd3a,LIST_ACCOUNTS,hbciListAccounts,false -35771,dee61653-8c29-4f99-89af-29520504dd3a,LIST_TRANSACTIONS,hbciListTransactions,false -35772,dee61653-8c29-4f99-89af-29520504dd3a,AUTHORIZATION,,false -35773,dee61653-8c29-4f99-89af-29520504dd3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35774,dee61653-8c29-4f99-89af-29520504dd3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35775,dee61653-8c29-4f99-89af-29520504dd3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35770,ab6addf8-46f3-4207-acc9-50984abf14ab,LIST_ACCOUNTS,hbciListAccounts,false +35771,ab6addf8-46f3-4207-acc9-50984abf14ab,LIST_TRANSACTIONS,hbciListTransactions,false +35772,ab6addf8-46f3-4207-acc9-50984abf14ab,AUTHORIZATION,,false +35773,ab6addf8-46f3-4207-acc9-50984abf14ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35774,ab6addf8-46f3-4207-acc9-50984abf14ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35775,ab6addf8-46f3-4207-acc9-50984abf14ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35776,24768149-0112-4390-a358-f069cb5d077e,LIST_ACCOUNTS,xs2aListAccounts,true -35777,24768149-0112-4390-a358-f069cb5d077e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35777,24768149-0112-4390-a358-f069cb5d077e,LIST_TRANSACTIONS,xs2aListTransactions,true 35778,24768149-0112-4390-a358-f069cb5d077e,AUTHORIZATION,,true 35779,24768149-0112-4390-a358-f069cb5d077e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35780,24768149-0112-4390-a358-f069cb5d077e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35781,24768149-0112-4390-a358-f069cb5d077e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35782,b6b4b399-14b9-4434-bf11-fb99376a4f2f,LIST_ACCOUNTS,hbciListAccounts,false -35783,b6b4b399-14b9-4434-bf11-fb99376a4f2f,LIST_TRANSACTIONS,hbciListTransactions,false -35784,b6b4b399-14b9-4434-bf11-fb99376a4f2f,AUTHORIZATION,,false -35785,b6b4b399-14b9-4434-bf11-fb99376a4f2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35786,b6b4b399-14b9-4434-bf11-fb99376a4f2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35787,b6b4b399-14b9-4434-bf11-fb99376a4f2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35782,a39018db-f8fe-40da-b405-7a66d862e953,LIST_ACCOUNTS,hbciListAccounts,false +35783,a39018db-f8fe-40da-b405-7a66d862e953,LIST_TRANSACTIONS,hbciListTransactions,false +35784,a39018db-f8fe-40da-b405-7a66d862e953,AUTHORIZATION,,false +35785,a39018db-f8fe-40da-b405-7a66d862e953,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35786,a39018db-f8fe-40da-b405-7a66d862e953,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35787,a39018db-f8fe-40da-b405-7a66d862e953,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35788,cdbce7c4-4e5c-4582-95e1-9cb779c5c5df,LIST_ACCOUNTS,xs2aListAccounts,true -35789,cdbce7c4-4e5c-4582-95e1-9cb779c5c5df,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35789,cdbce7c4-4e5c-4582-95e1-9cb779c5c5df,LIST_TRANSACTIONS,xs2aListTransactions,true 35790,cdbce7c4-4e5c-4582-95e1-9cb779c5c5df,AUTHORIZATION,,true 35791,cdbce7c4-4e5c-4582-95e1-9cb779c5c5df,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35792,cdbce7c4-4e5c-4582-95e1-9cb779c5c5df,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35793,cdbce7c4-4e5c-4582-95e1-9cb779c5c5df,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35794,5f9a1a58-1f61-4ae8-b8eb-076166e98534,LIST_ACCOUNTS,hbciListAccounts,false -35795,5f9a1a58-1f61-4ae8-b8eb-076166e98534,LIST_TRANSACTIONS,hbciListTransactions,false -35796,5f9a1a58-1f61-4ae8-b8eb-076166e98534,AUTHORIZATION,,false -35797,5f9a1a58-1f61-4ae8-b8eb-076166e98534,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35798,5f9a1a58-1f61-4ae8-b8eb-076166e98534,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35799,5f9a1a58-1f61-4ae8-b8eb-076166e98534,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35794,d3527d48-93d7-455e-8e92-584b4fa416f7,LIST_ACCOUNTS,hbciListAccounts,false +35795,d3527d48-93d7-455e-8e92-584b4fa416f7,LIST_TRANSACTIONS,hbciListTransactions,false +35796,d3527d48-93d7-455e-8e92-584b4fa416f7,AUTHORIZATION,,false +35797,d3527d48-93d7-455e-8e92-584b4fa416f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35798,d3527d48-93d7-455e-8e92-584b4fa416f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35799,d3527d48-93d7-455e-8e92-584b4fa416f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35800,a6353952-2e13-4b61-a4b0-25a9de0cabdd,LIST_ACCOUNTS,xs2aListAccounts,true -35801,a6353952-2e13-4b61-a4b0-25a9de0cabdd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35801,a6353952-2e13-4b61-a4b0-25a9de0cabdd,LIST_TRANSACTIONS,xs2aListTransactions,true 35802,a6353952-2e13-4b61-a4b0-25a9de0cabdd,AUTHORIZATION,,true 35803,a6353952-2e13-4b61-a4b0-25a9de0cabdd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35804,a6353952-2e13-4b61-a4b0-25a9de0cabdd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35805,a6353952-2e13-4b61-a4b0-25a9de0cabdd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35806,8226abff-2f1b-4833-97f8-0367735f3765,LIST_ACCOUNTS,hbciListAccounts,false -35807,8226abff-2f1b-4833-97f8-0367735f3765,LIST_TRANSACTIONS,hbciListTransactions,false -35808,8226abff-2f1b-4833-97f8-0367735f3765,AUTHORIZATION,,false -35809,8226abff-2f1b-4833-97f8-0367735f3765,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35810,8226abff-2f1b-4833-97f8-0367735f3765,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35811,8226abff-2f1b-4833-97f8-0367735f3765,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35806,02f2d166-797c-4cf9-a5da-99419a9148fc,LIST_ACCOUNTS,hbciListAccounts,false +35807,02f2d166-797c-4cf9-a5da-99419a9148fc,LIST_TRANSACTIONS,hbciListTransactions,false +35808,02f2d166-797c-4cf9-a5da-99419a9148fc,AUTHORIZATION,,false +35809,02f2d166-797c-4cf9-a5da-99419a9148fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35810,02f2d166-797c-4cf9-a5da-99419a9148fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35811,02f2d166-797c-4cf9-a5da-99419a9148fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35812,c49a7290-80b2-4d57-928c-30ab013cdbe1,LIST_ACCOUNTS,xs2aListAccounts,true -35813,c49a7290-80b2-4d57-928c-30ab013cdbe1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35813,c49a7290-80b2-4d57-928c-30ab013cdbe1,LIST_TRANSACTIONS,xs2aListTransactions,true 35814,c49a7290-80b2-4d57-928c-30ab013cdbe1,AUTHORIZATION,,true 35815,c49a7290-80b2-4d57-928c-30ab013cdbe1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35816,c49a7290-80b2-4d57-928c-30ab013cdbe1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35817,c49a7290-80b2-4d57-928c-30ab013cdbe1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35818,f54a69e6-0fca-43e6-84c8-3a8c6b406d6e,LIST_ACCOUNTS,hbciListAccounts,false -35819,f54a69e6-0fca-43e6-84c8-3a8c6b406d6e,LIST_TRANSACTIONS,hbciListTransactions,false -35820,f54a69e6-0fca-43e6-84c8-3a8c6b406d6e,AUTHORIZATION,,false -35821,f54a69e6-0fca-43e6-84c8-3a8c6b406d6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35822,f54a69e6-0fca-43e6-84c8-3a8c6b406d6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35823,f54a69e6-0fca-43e6-84c8-3a8c6b406d6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35818,c502033b-162a-4414-99a0-c43db27383d2,LIST_ACCOUNTS,hbciListAccounts,false +35819,c502033b-162a-4414-99a0-c43db27383d2,LIST_TRANSACTIONS,hbciListTransactions,false +35820,c502033b-162a-4414-99a0-c43db27383d2,AUTHORIZATION,,false +35821,c502033b-162a-4414-99a0-c43db27383d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35822,c502033b-162a-4414-99a0-c43db27383d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35823,c502033b-162a-4414-99a0-c43db27383d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35824,1b366f41-a2ec-45c3-a7f6-85c76692bcb0,LIST_ACCOUNTS,xs2aListAccounts,true -35825,1b366f41-a2ec-45c3-a7f6-85c76692bcb0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35825,1b366f41-a2ec-45c3-a7f6-85c76692bcb0,LIST_TRANSACTIONS,xs2aListTransactions,true 35826,1b366f41-a2ec-45c3-a7f6-85c76692bcb0,AUTHORIZATION,,true 35827,1b366f41-a2ec-45c3-a7f6-85c76692bcb0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35828,1b366f41-a2ec-45c3-a7f6-85c76692bcb0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35829,1b366f41-a2ec-45c3-a7f6-85c76692bcb0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35830,a225e2ae-9f67-4ea3-9bd6-2ca1a8817d7c,LIST_ACCOUNTS,hbciListAccounts,false -35831,a225e2ae-9f67-4ea3-9bd6-2ca1a8817d7c,LIST_TRANSACTIONS,hbciListTransactions,false -35832,a225e2ae-9f67-4ea3-9bd6-2ca1a8817d7c,AUTHORIZATION,,false -35833,a225e2ae-9f67-4ea3-9bd6-2ca1a8817d7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35834,a225e2ae-9f67-4ea3-9bd6-2ca1a8817d7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35835,a225e2ae-9f67-4ea3-9bd6-2ca1a8817d7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35830,32eada1d-165d-4d07-ad7d-4093346f0fc5,LIST_ACCOUNTS,hbciListAccounts,false +35831,32eada1d-165d-4d07-ad7d-4093346f0fc5,LIST_TRANSACTIONS,hbciListTransactions,false +35832,32eada1d-165d-4d07-ad7d-4093346f0fc5,AUTHORIZATION,,false +35833,32eada1d-165d-4d07-ad7d-4093346f0fc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35834,32eada1d-165d-4d07-ad7d-4093346f0fc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35835,32eada1d-165d-4d07-ad7d-4093346f0fc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35836,6ebc0e18-4f9a-47e3-97ff-0801a6e8abb9,LIST_ACCOUNTS,xs2aListAccounts,true -35837,6ebc0e18-4f9a-47e3-97ff-0801a6e8abb9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35837,6ebc0e18-4f9a-47e3-97ff-0801a6e8abb9,LIST_TRANSACTIONS,xs2aListTransactions,true 35838,6ebc0e18-4f9a-47e3-97ff-0801a6e8abb9,AUTHORIZATION,,true 35839,6ebc0e18-4f9a-47e3-97ff-0801a6e8abb9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35840,6ebc0e18-4f9a-47e3-97ff-0801a6e8abb9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35841,6ebc0e18-4f9a-47e3-97ff-0801a6e8abb9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35842,08275d5c-3a28-4511-94dd-160aefbe6786,LIST_ACCOUNTS,hbciListAccounts,false -35843,08275d5c-3a28-4511-94dd-160aefbe6786,LIST_TRANSACTIONS,hbciListTransactions,false -35844,08275d5c-3a28-4511-94dd-160aefbe6786,AUTHORIZATION,,false -35845,08275d5c-3a28-4511-94dd-160aefbe6786,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35846,08275d5c-3a28-4511-94dd-160aefbe6786,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35847,08275d5c-3a28-4511-94dd-160aefbe6786,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35842,689fd6f6-5200-402d-92c6-35e6a6886abb,LIST_ACCOUNTS,hbciListAccounts,false +35843,689fd6f6-5200-402d-92c6-35e6a6886abb,LIST_TRANSACTIONS,hbciListTransactions,false +35844,689fd6f6-5200-402d-92c6-35e6a6886abb,AUTHORIZATION,,false +35845,689fd6f6-5200-402d-92c6-35e6a6886abb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35846,689fd6f6-5200-402d-92c6-35e6a6886abb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35847,689fd6f6-5200-402d-92c6-35e6a6886abb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35848,450012a4-4a46-470f-9f3d-a6f4e2945c28,LIST_ACCOUNTS,xs2aListAccounts,true -35849,450012a4-4a46-470f-9f3d-a6f4e2945c28,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35849,450012a4-4a46-470f-9f3d-a6f4e2945c28,LIST_TRANSACTIONS,xs2aListTransactions,true 35850,450012a4-4a46-470f-9f3d-a6f4e2945c28,AUTHORIZATION,,true 35851,450012a4-4a46-470f-9f3d-a6f4e2945c28,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35852,450012a4-4a46-470f-9f3d-a6f4e2945c28,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35853,450012a4-4a46-470f-9f3d-a6f4e2945c28,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35854,182b25e7-13fc-49a8-a54b-2997fa4e0450,LIST_ACCOUNTS,hbciListAccounts,false -35855,182b25e7-13fc-49a8-a54b-2997fa4e0450,LIST_TRANSACTIONS,hbciListTransactions,false -35856,182b25e7-13fc-49a8-a54b-2997fa4e0450,AUTHORIZATION,,false -35857,182b25e7-13fc-49a8-a54b-2997fa4e0450,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35858,182b25e7-13fc-49a8-a54b-2997fa4e0450,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35859,182b25e7-13fc-49a8-a54b-2997fa4e0450,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35854,68e2d3eb-9e66-48b1-991a-a0da042627f9,LIST_ACCOUNTS,hbciListAccounts,false +35855,68e2d3eb-9e66-48b1-991a-a0da042627f9,LIST_TRANSACTIONS,hbciListTransactions,false +35856,68e2d3eb-9e66-48b1-991a-a0da042627f9,AUTHORIZATION,,false +35857,68e2d3eb-9e66-48b1-991a-a0da042627f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35858,68e2d3eb-9e66-48b1-991a-a0da042627f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35859,68e2d3eb-9e66-48b1-991a-a0da042627f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35860,e4a1c4f0-182a-4ebb-88a6-26ac9eaeacca,LIST_ACCOUNTS,xs2aListAccounts,true -35861,e4a1c4f0-182a-4ebb-88a6-26ac9eaeacca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35861,e4a1c4f0-182a-4ebb-88a6-26ac9eaeacca,LIST_TRANSACTIONS,xs2aListTransactions,true 35862,e4a1c4f0-182a-4ebb-88a6-26ac9eaeacca,AUTHORIZATION,,true 35863,e4a1c4f0-182a-4ebb-88a6-26ac9eaeacca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35864,e4a1c4f0-182a-4ebb-88a6-26ac9eaeacca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35865,e4a1c4f0-182a-4ebb-88a6-26ac9eaeacca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35866,9f3b07a4-0cf0-497a-8560-3eeb878c945d,LIST_ACCOUNTS,hbciListAccounts,false -35867,9f3b07a4-0cf0-497a-8560-3eeb878c945d,LIST_TRANSACTIONS,hbciListTransactions,false -35868,9f3b07a4-0cf0-497a-8560-3eeb878c945d,AUTHORIZATION,,false -35869,9f3b07a4-0cf0-497a-8560-3eeb878c945d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35870,9f3b07a4-0cf0-497a-8560-3eeb878c945d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35871,9f3b07a4-0cf0-497a-8560-3eeb878c945d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35866,8be54675-10cb-4dba-b0c8-3867aa9898f5,LIST_ACCOUNTS,hbciListAccounts,false +35867,8be54675-10cb-4dba-b0c8-3867aa9898f5,LIST_TRANSACTIONS,hbciListTransactions,false +35868,8be54675-10cb-4dba-b0c8-3867aa9898f5,AUTHORIZATION,,false +35869,8be54675-10cb-4dba-b0c8-3867aa9898f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35870,8be54675-10cb-4dba-b0c8-3867aa9898f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35871,8be54675-10cb-4dba-b0c8-3867aa9898f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35872,9f95e4db-d424-413c-95b9-3eae10be9957,LIST_ACCOUNTS,xs2aListAccounts,true -35873,9f95e4db-d424-413c-95b9-3eae10be9957,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35873,9f95e4db-d424-413c-95b9-3eae10be9957,LIST_TRANSACTIONS,xs2aListTransactions,true 35874,9f95e4db-d424-413c-95b9-3eae10be9957,AUTHORIZATION,,true 35875,9f95e4db-d424-413c-95b9-3eae10be9957,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35876,9f95e4db-d424-413c-95b9-3eae10be9957,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35877,9f95e4db-d424-413c-95b9-3eae10be9957,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35878,04b212b1-e839-4ed2-b30c-d4c48971d19f,LIST_ACCOUNTS,hbciListAccounts,false -35879,04b212b1-e839-4ed2-b30c-d4c48971d19f,LIST_TRANSACTIONS,hbciListTransactions,false -35880,04b212b1-e839-4ed2-b30c-d4c48971d19f,AUTHORIZATION,,false -35881,04b212b1-e839-4ed2-b30c-d4c48971d19f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35882,04b212b1-e839-4ed2-b30c-d4c48971d19f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35883,04b212b1-e839-4ed2-b30c-d4c48971d19f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35878,026b5334-45df-4345-99ee-b7f111698c4d,LIST_ACCOUNTS,hbciListAccounts,false +35879,026b5334-45df-4345-99ee-b7f111698c4d,LIST_TRANSACTIONS,hbciListTransactions,false +35880,026b5334-45df-4345-99ee-b7f111698c4d,AUTHORIZATION,,false +35881,026b5334-45df-4345-99ee-b7f111698c4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35882,026b5334-45df-4345-99ee-b7f111698c4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35883,026b5334-45df-4345-99ee-b7f111698c4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35884,10a41fc8-cb87-414e-b15d-5b0ca7711bb7,LIST_ACCOUNTS,xs2aListAccounts,true -35885,10a41fc8-cb87-414e-b15d-5b0ca7711bb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35885,10a41fc8-cb87-414e-b15d-5b0ca7711bb7,LIST_TRANSACTIONS,xs2aListTransactions,true 35886,10a41fc8-cb87-414e-b15d-5b0ca7711bb7,AUTHORIZATION,,true 35887,10a41fc8-cb87-414e-b15d-5b0ca7711bb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35888,10a41fc8-cb87-414e-b15d-5b0ca7711bb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35889,10a41fc8-cb87-414e-b15d-5b0ca7711bb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35890,31d44faa-dbf5-4441-aa10-a8c87f97671c,LIST_ACCOUNTS,hbciListAccounts,false -35891,31d44faa-dbf5-4441-aa10-a8c87f97671c,LIST_TRANSACTIONS,hbciListTransactions,false -35892,31d44faa-dbf5-4441-aa10-a8c87f97671c,AUTHORIZATION,,false -35893,31d44faa-dbf5-4441-aa10-a8c87f97671c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35894,31d44faa-dbf5-4441-aa10-a8c87f97671c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35895,31d44faa-dbf5-4441-aa10-a8c87f97671c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35890,6c193bcc-a4de-4cda-9c22-b65b888aa213,LIST_ACCOUNTS,hbciListAccounts,false +35891,6c193bcc-a4de-4cda-9c22-b65b888aa213,LIST_TRANSACTIONS,hbciListTransactions,false +35892,6c193bcc-a4de-4cda-9c22-b65b888aa213,AUTHORIZATION,,false +35893,6c193bcc-a4de-4cda-9c22-b65b888aa213,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35894,6c193bcc-a4de-4cda-9c22-b65b888aa213,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35895,6c193bcc-a4de-4cda-9c22-b65b888aa213,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35896,d6e801b5-f8e1-4291-a8bd-feec9a47622e,LIST_ACCOUNTS,xs2aListAccounts,true -35897,d6e801b5-f8e1-4291-a8bd-feec9a47622e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35897,d6e801b5-f8e1-4291-a8bd-feec9a47622e,LIST_TRANSACTIONS,xs2aListTransactions,true 35898,d6e801b5-f8e1-4291-a8bd-feec9a47622e,AUTHORIZATION,,true 35899,d6e801b5-f8e1-4291-a8bd-feec9a47622e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35900,d6e801b5-f8e1-4291-a8bd-feec9a47622e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35901,d6e801b5-f8e1-4291-a8bd-feec9a47622e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35902,15d53050-c769-44de-a8ac-565d3dd71aeb,LIST_ACCOUNTS,hbciListAccounts,false -35903,15d53050-c769-44de-a8ac-565d3dd71aeb,LIST_TRANSACTIONS,hbciListTransactions,false -35904,15d53050-c769-44de-a8ac-565d3dd71aeb,AUTHORIZATION,,false -35905,15d53050-c769-44de-a8ac-565d3dd71aeb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35906,15d53050-c769-44de-a8ac-565d3dd71aeb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35907,15d53050-c769-44de-a8ac-565d3dd71aeb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35902,fead2140-96ca-4f2a-93ee-e18b06554b33,LIST_ACCOUNTS,hbciListAccounts,false +35903,fead2140-96ca-4f2a-93ee-e18b06554b33,LIST_TRANSACTIONS,hbciListTransactions,false +35904,fead2140-96ca-4f2a-93ee-e18b06554b33,AUTHORIZATION,,false +35905,fead2140-96ca-4f2a-93ee-e18b06554b33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35906,fead2140-96ca-4f2a-93ee-e18b06554b33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35907,fead2140-96ca-4f2a-93ee-e18b06554b33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35908,d0dadfcc-c9e8-4c68-9fb9-7d7406a364c1,LIST_ACCOUNTS,xs2aListAccounts,true -35909,d0dadfcc-c9e8-4c68-9fb9-7d7406a364c1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35909,d0dadfcc-c9e8-4c68-9fb9-7d7406a364c1,LIST_TRANSACTIONS,xs2aListTransactions,true 35910,d0dadfcc-c9e8-4c68-9fb9-7d7406a364c1,AUTHORIZATION,,true 35911,d0dadfcc-c9e8-4c68-9fb9-7d7406a364c1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35912,d0dadfcc-c9e8-4c68-9fb9-7d7406a364c1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35913,d0dadfcc-c9e8-4c68-9fb9-7d7406a364c1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35914,da0f7268-d00c-46cc-9f07-d34cb87036b8,LIST_ACCOUNTS,hbciListAccounts,false -35915,da0f7268-d00c-46cc-9f07-d34cb87036b8,LIST_TRANSACTIONS,hbciListTransactions,false -35916,da0f7268-d00c-46cc-9f07-d34cb87036b8,AUTHORIZATION,,false -35917,da0f7268-d00c-46cc-9f07-d34cb87036b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35918,da0f7268-d00c-46cc-9f07-d34cb87036b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35919,da0f7268-d00c-46cc-9f07-d34cb87036b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35914,405920a2-3569-4227-9b6c-8c44bbb6f5cf,LIST_ACCOUNTS,hbciListAccounts,false +35915,405920a2-3569-4227-9b6c-8c44bbb6f5cf,LIST_TRANSACTIONS,hbciListTransactions,false +35916,405920a2-3569-4227-9b6c-8c44bbb6f5cf,AUTHORIZATION,,false +35917,405920a2-3569-4227-9b6c-8c44bbb6f5cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35918,405920a2-3569-4227-9b6c-8c44bbb6f5cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35919,405920a2-3569-4227-9b6c-8c44bbb6f5cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35920,f225a1a2-562e-4e01-9b0f-9a59bf40869b,LIST_ACCOUNTS,xs2aListAccounts,true -35921,f225a1a2-562e-4e01-9b0f-9a59bf40869b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35921,f225a1a2-562e-4e01-9b0f-9a59bf40869b,LIST_TRANSACTIONS,xs2aListTransactions,true 35922,f225a1a2-562e-4e01-9b0f-9a59bf40869b,AUTHORIZATION,,true 35923,f225a1a2-562e-4e01-9b0f-9a59bf40869b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35924,f225a1a2-562e-4e01-9b0f-9a59bf40869b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35925,f225a1a2-562e-4e01-9b0f-9a59bf40869b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35926,80f8edcc-3341-4264-8b42-c42bf3f41c8b,LIST_ACCOUNTS,hbciListAccounts,false -35927,80f8edcc-3341-4264-8b42-c42bf3f41c8b,LIST_TRANSACTIONS,hbciListTransactions,false -35928,80f8edcc-3341-4264-8b42-c42bf3f41c8b,AUTHORIZATION,,false -35929,80f8edcc-3341-4264-8b42-c42bf3f41c8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35930,80f8edcc-3341-4264-8b42-c42bf3f41c8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35931,80f8edcc-3341-4264-8b42-c42bf3f41c8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35926,17c6e93c-30d4-4ab1-8bb2-52bf86559c5a,LIST_ACCOUNTS,hbciListAccounts,false +35927,17c6e93c-30d4-4ab1-8bb2-52bf86559c5a,LIST_TRANSACTIONS,hbciListTransactions,false +35928,17c6e93c-30d4-4ab1-8bb2-52bf86559c5a,AUTHORIZATION,,false +35929,17c6e93c-30d4-4ab1-8bb2-52bf86559c5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35930,17c6e93c-30d4-4ab1-8bb2-52bf86559c5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35931,17c6e93c-30d4-4ab1-8bb2-52bf86559c5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35932,2c0ac76f-9c33-4f69-a1f1-a121017e2dd9,LIST_ACCOUNTS,xs2aListAccounts,true -35933,2c0ac76f-9c33-4f69-a1f1-a121017e2dd9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35933,2c0ac76f-9c33-4f69-a1f1-a121017e2dd9,LIST_TRANSACTIONS,xs2aListTransactions,true 35934,2c0ac76f-9c33-4f69-a1f1-a121017e2dd9,AUTHORIZATION,,true 35935,2c0ac76f-9c33-4f69-a1f1-a121017e2dd9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35936,2c0ac76f-9c33-4f69-a1f1-a121017e2dd9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35937,2c0ac76f-9c33-4f69-a1f1-a121017e2dd9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35938,7d5c9fb0-94d5-4073-bcd1-d61681153dd0,LIST_ACCOUNTS,hbciListAccounts,false -35939,7d5c9fb0-94d5-4073-bcd1-d61681153dd0,LIST_TRANSACTIONS,hbciListTransactions,false -35940,7d5c9fb0-94d5-4073-bcd1-d61681153dd0,AUTHORIZATION,,false -35941,7d5c9fb0-94d5-4073-bcd1-d61681153dd0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35942,7d5c9fb0-94d5-4073-bcd1-d61681153dd0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35943,7d5c9fb0-94d5-4073-bcd1-d61681153dd0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35938,cee1b420-a67a-4faa-8a39-88121b62393b,LIST_ACCOUNTS,hbciListAccounts,false +35939,cee1b420-a67a-4faa-8a39-88121b62393b,LIST_TRANSACTIONS,hbciListTransactions,false +35940,cee1b420-a67a-4faa-8a39-88121b62393b,AUTHORIZATION,,false +35941,cee1b420-a67a-4faa-8a39-88121b62393b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35942,cee1b420-a67a-4faa-8a39-88121b62393b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35943,cee1b420-a67a-4faa-8a39-88121b62393b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35944,286d3c43-34be-4c7a-86f2-246a10aed2b1,LIST_ACCOUNTS,xs2aListAccounts,true -35945,286d3c43-34be-4c7a-86f2-246a10aed2b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35945,286d3c43-34be-4c7a-86f2-246a10aed2b1,LIST_TRANSACTIONS,xs2aListTransactions,true 35946,286d3c43-34be-4c7a-86f2-246a10aed2b1,AUTHORIZATION,,true 35947,286d3c43-34be-4c7a-86f2-246a10aed2b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35948,286d3c43-34be-4c7a-86f2-246a10aed2b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35949,286d3c43-34be-4c7a-86f2-246a10aed2b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35950,868a8291-8232-4cbe-9c04-6b4e63d85565,LIST_ACCOUNTS,hbciListAccounts,false -35951,868a8291-8232-4cbe-9c04-6b4e63d85565,LIST_TRANSACTIONS,hbciListTransactions,false -35952,868a8291-8232-4cbe-9c04-6b4e63d85565,AUTHORIZATION,,false -35953,868a8291-8232-4cbe-9c04-6b4e63d85565,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35954,868a8291-8232-4cbe-9c04-6b4e63d85565,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35955,868a8291-8232-4cbe-9c04-6b4e63d85565,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35950,c421efb0-27c4-4c76-8533-7c6c01d17680,LIST_ACCOUNTS,hbciListAccounts,false +35951,c421efb0-27c4-4c76-8533-7c6c01d17680,LIST_TRANSACTIONS,hbciListTransactions,false +35952,c421efb0-27c4-4c76-8533-7c6c01d17680,AUTHORIZATION,,false +35953,c421efb0-27c4-4c76-8533-7c6c01d17680,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35954,c421efb0-27c4-4c76-8533-7c6c01d17680,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35955,c421efb0-27c4-4c76-8533-7c6c01d17680,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35956,7f270016-ac8f-4191-95ac-ace7dd6cb182,LIST_ACCOUNTS,xs2aListAccounts,true -35957,7f270016-ac8f-4191-95ac-ace7dd6cb182,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35957,7f270016-ac8f-4191-95ac-ace7dd6cb182,LIST_TRANSACTIONS,xs2aListTransactions,true 35958,7f270016-ac8f-4191-95ac-ace7dd6cb182,AUTHORIZATION,,true 35959,7f270016-ac8f-4191-95ac-ace7dd6cb182,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35960,7f270016-ac8f-4191-95ac-ace7dd6cb182,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35961,7f270016-ac8f-4191-95ac-ace7dd6cb182,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35962,076f2d48-73bd-4920-91b1-edc4dab7eef8,LIST_ACCOUNTS,hbciListAccounts,false -35963,076f2d48-73bd-4920-91b1-edc4dab7eef8,LIST_TRANSACTIONS,hbciListTransactions,false -35964,076f2d48-73bd-4920-91b1-edc4dab7eef8,AUTHORIZATION,,false -35965,076f2d48-73bd-4920-91b1-edc4dab7eef8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35966,076f2d48-73bd-4920-91b1-edc4dab7eef8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35967,076f2d48-73bd-4920-91b1-edc4dab7eef8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35962,a8e60cdf-a338-4f93-90ce-ac8330e0c221,LIST_ACCOUNTS,hbciListAccounts,false +35963,a8e60cdf-a338-4f93-90ce-ac8330e0c221,LIST_TRANSACTIONS,hbciListTransactions,false +35964,a8e60cdf-a338-4f93-90ce-ac8330e0c221,AUTHORIZATION,,false +35965,a8e60cdf-a338-4f93-90ce-ac8330e0c221,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35966,a8e60cdf-a338-4f93-90ce-ac8330e0c221,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35967,a8e60cdf-a338-4f93-90ce-ac8330e0c221,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35968,8b0b42a7-4efd-4bf7-89fb-e4f6e8aacca2,LIST_ACCOUNTS,xs2aListAccounts,true -35969,8b0b42a7-4efd-4bf7-89fb-e4f6e8aacca2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35969,8b0b42a7-4efd-4bf7-89fb-e4f6e8aacca2,LIST_TRANSACTIONS,xs2aListTransactions,true 35970,8b0b42a7-4efd-4bf7-89fb-e4f6e8aacca2,AUTHORIZATION,,true 35971,8b0b42a7-4efd-4bf7-89fb-e4f6e8aacca2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35972,8b0b42a7-4efd-4bf7-89fb-e4f6e8aacca2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35973,8b0b42a7-4efd-4bf7-89fb-e4f6e8aacca2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35974,8e80ec9a-bfba-4fb8-9b6d-e6612b2ff040,LIST_ACCOUNTS,hbciListAccounts,false -35975,8e80ec9a-bfba-4fb8-9b6d-e6612b2ff040,LIST_TRANSACTIONS,hbciListTransactions,false -35976,8e80ec9a-bfba-4fb8-9b6d-e6612b2ff040,AUTHORIZATION,,false -35977,8e80ec9a-bfba-4fb8-9b6d-e6612b2ff040,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35978,8e80ec9a-bfba-4fb8-9b6d-e6612b2ff040,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35979,8e80ec9a-bfba-4fb8-9b6d-e6612b2ff040,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35974,3a691a58-b39c-4911-b47d-e52f5a71ae23,LIST_ACCOUNTS,hbciListAccounts,false +35975,3a691a58-b39c-4911-b47d-e52f5a71ae23,LIST_TRANSACTIONS,hbciListTransactions,false +35976,3a691a58-b39c-4911-b47d-e52f5a71ae23,AUTHORIZATION,,false +35977,3a691a58-b39c-4911-b47d-e52f5a71ae23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35978,3a691a58-b39c-4911-b47d-e52f5a71ae23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35979,3a691a58-b39c-4911-b47d-e52f5a71ae23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35980,2b073e18-fa9d-44dd-96cc-c7f8888f3970,LIST_ACCOUNTS,xs2aListAccounts,true -35981,2b073e18-fa9d-44dd-96cc-c7f8888f3970,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35981,2b073e18-fa9d-44dd-96cc-c7f8888f3970,LIST_TRANSACTIONS,xs2aListTransactions,true 35982,2b073e18-fa9d-44dd-96cc-c7f8888f3970,AUTHORIZATION,,true 35983,2b073e18-fa9d-44dd-96cc-c7f8888f3970,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35984,2b073e18-fa9d-44dd-96cc-c7f8888f3970,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35985,2b073e18-fa9d-44dd-96cc-c7f8888f3970,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35986,7c676efe-4165-48b8-8ada-8c4f98a9b784,LIST_ACCOUNTS,hbciListAccounts,false -35987,7c676efe-4165-48b8-8ada-8c4f98a9b784,LIST_TRANSACTIONS,hbciListTransactions,false -35988,7c676efe-4165-48b8-8ada-8c4f98a9b784,AUTHORIZATION,,false -35989,7c676efe-4165-48b8-8ada-8c4f98a9b784,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -35990,7c676efe-4165-48b8-8ada-8c4f98a9b784,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -35991,7c676efe-4165-48b8-8ada-8c4f98a9b784,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35986,2f67a7fd-2569-4197-bd2a-8c2faadedb0e,LIST_ACCOUNTS,hbciListAccounts,false +35987,2f67a7fd-2569-4197-bd2a-8c2faadedb0e,LIST_TRANSACTIONS,hbciListTransactions,false +35988,2f67a7fd-2569-4197-bd2a-8c2faadedb0e,AUTHORIZATION,,false +35989,2f67a7fd-2569-4197-bd2a-8c2faadedb0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +35990,2f67a7fd-2569-4197-bd2a-8c2faadedb0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +35991,2f67a7fd-2569-4197-bd2a-8c2faadedb0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 35992,c9a77776-43d9-4f54-ac55-515252402bf3,LIST_ACCOUNTS,xs2aListAccounts,true -35993,c9a77776-43d9-4f54-ac55-515252402bf3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +35993,c9a77776-43d9-4f54-ac55-515252402bf3,LIST_TRANSACTIONS,xs2aListTransactions,true 35994,c9a77776-43d9-4f54-ac55-515252402bf3,AUTHORIZATION,,true 35995,c9a77776-43d9-4f54-ac55-515252402bf3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 35996,c9a77776-43d9-4f54-ac55-515252402bf3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 35997,c9a77776-43d9-4f54-ac55-515252402bf3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -35998,546c985e-2537-4ec6-bd43-b911fa55a7f1,LIST_ACCOUNTS,hbciListAccounts,false -35999,546c985e-2537-4ec6-bd43-b911fa55a7f1,LIST_TRANSACTIONS,hbciListTransactions,false -36000,546c985e-2537-4ec6-bd43-b911fa55a7f1,AUTHORIZATION,,false -36001,546c985e-2537-4ec6-bd43-b911fa55a7f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36002,546c985e-2537-4ec6-bd43-b911fa55a7f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36003,546c985e-2537-4ec6-bd43-b911fa55a7f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +35998,9b48f203-ded2-438c-8312-2bb04bc28b40,LIST_ACCOUNTS,hbciListAccounts,false +35999,9b48f203-ded2-438c-8312-2bb04bc28b40,LIST_TRANSACTIONS,hbciListTransactions,false +36000,9b48f203-ded2-438c-8312-2bb04bc28b40,AUTHORIZATION,,false +36001,9b48f203-ded2-438c-8312-2bb04bc28b40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36002,9b48f203-ded2-438c-8312-2bb04bc28b40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36003,9b48f203-ded2-438c-8312-2bb04bc28b40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36004,4db807af-8402-4c0b-bb58-090cb15fa82b,LIST_ACCOUNTS,xs2aListAccounts,true -36005,4db807af-8402-4c0b-bb58-090cb15fa82b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36005,4db807af-8402-4c0b-bb58-090cb15fa82b,LIST_TRANSACTIONS,xs2aListTransactions,true 36006,4db807af-8402-4c0b-bb58-090cb15fa82b,AUTHORIZATION,,true 36007,4db807af-8402-4c0b-bb58-090cb15fa82b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36008,4db807af-8402-4c0b-bb58-090cb15fa82b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36009,4db807af-8402-4c0b-bb58-090cb15fa82b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36010,346e5e41-70d8-454a-9314-1374c1916094,LIST_ACCOUNTS,hbciListAccounts,false -36011,346e5e41-70d8-454a-9314-1374c1916094,LIST_TRANSACTIONS,hbciListTransactions,false -36012,346e5e41-70d8-454a-9314-1374c1916094,AUTHORIZATION,,false -36013,346e5e41-70d8-454a-9314-1374c1916094,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36014,346e5e41-70d8-454a-9314-1374c1916094,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36015,346e5e41-70d8-454a-9314-1374c1916094,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36010,7b74686e-0a25-4190-9a70-a050acf63d28,LIST_ACCOUNTS,hbciListAccounts,false +36011,7b74686e-0a25-4190-9a70-a050acf63d28,LIST_TRANSACTIONS,hbciListTransactions,false +36012,7b74686e-0a25-4190-9a70-a050acf63d28,AUTHORIZATION,,false +36013,7b74686e-0a25-4190-9a70-a050acf63d28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36014,7b74686e-0a25-4190-9a70-a050acf63d28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36015,7b74686e-0a25-4190-9a70-a050acf63d28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36016,44a08c89-dbce-4bc2-b390-1db4932d994d,LIST_ACCOUNTS,xs2aListAccounts,true -36017,44a08c89-dbce-4bc2-b390-1db4932d994d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36017,44a08c89-dbce-4bc2-b390-1db4932d994d,LIST_TRANSACTIONS,xs2aListTransactions,true 36018,44a08c89-dbce-4bc2-b390-1db4932d994d,AUTHORIZATION,,true 36019,44a08c89-dbce-4bc2-b390-1db4932d994d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36020,44a08c89-dbce-4bc2-b390-1db4932d994d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36021,44a08c89-dbce-4bc2-b390-1db4932d994d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36022,962f739a-22f1-4bdc-a6d3-32d0e94ac6a9,LIST_ACCOUNTS,hbciListAccounts,false -36023,962f739a-22f1-4bdc-a6d3-32d0e94ac6a9,LIST_TRANSACTIONS,hbciListTransactions,false -36024,962f739a-22f1-4bdc-a6d3-32d0e94ac6a9,AUTHORIZATION,,false -36025,962f739a-22f1-4bdc-a6d3-32d0e94ac6a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36026,962f739a-22f1-4bdc-a6d3-32d0e94ac6a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36027,962f739a-22f1-4bdc-a6d3-32d0e94ac6a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36022,c507adc0-c282-4e61-ae4a-061f5800bc1d,LIST_ACCOUNTS,hbciListAccounts,false +36023,c507adc0-c282-4e61-ae4a-061f5800bc1d,LIST_TRANSACTIONS,hbciListTransactions,false +36024,c507adc0-c282-4e61-ae4a-061f5800bc1d,AUTHORIZATION,,false +36025,c507adc0-c282-4e61-ae4a-061f5800bc1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36026,c507adc0-c282-4e61-ae4a-061f5800bc1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36027,c507adc0-c282-4e61-ae4a-061f5800bc1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36028,c2475f93-ec7c-470f-8875-88bfedf18eb0,LIST_ACCOUNTS,xs2aListAccounts,true -36029,c2475f93-ec7c-470f-8875-88bfedf18eb0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36029,c2475f93-ec7c-470f-8875-88bfedf18eb0,LIST_TRANSACTIONS,xs2aListTransactions,true 36030,c2475f93-ec7c-470f-8875-88bfedf18eb0,AUTHORIZATION,,true 36031,c2475f93-ec7c-470f-8875-88bfedf18eb0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36032,c2475f93-ec7c-470f-8875-88bfedf18eb0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36033,c2475f93-ec7c-470f-8875-88bfedf18eb0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36034,169018ea-d844-4d7c-a134-04faee8cee56,LIST_ACCOUNTS,hbciListAccounts,false -36035,169018ea-d844-4d7c-a134-04faee8cee56,LIST_TRANSACTIONS,hbciListTransactions,false -36036,169018ea-d844-4d7c-a134-04faee8cee56,AUTHORIZATION,,false -36037,169018ea-d844-4d7c-a134-04faee8cee56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36038,169018ea-d844-4d7c-a134-04faee8cee56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36039,169018ea-d844-4d7c-a134-04faee8cee56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36034,05d18638-2533-4c2e-8bd5-78236d54fe09,LIST_ACCOUNTS,hbciListAccounts,false +36035,05d18638-2533-4c2e-8bd5-78236d54fe09,LIST_TRANSACTIONS,hbciListTransactions,false +36036,05d18638-2533-4c2e-8bd5-78236d54fe09,AUTHORIZATION,,false +36037,05d18638-2533-4c2e-8bd5-78236d54fe09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36038,05d18638-2533-4c2e-8bd5-78236d54fe09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36039,05d18638-2533-4c2e-8bd5-78236d54fe09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36040,e8ed133d-25ba-4a98-bdc5-3bdbee1b31c7,LIST_ACCOUNTS,xs2aListAccounts,true -36041,e8ed133d-25ba-4a98-bdc5-3bdbee1b31c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36041,e8ed133d-25ba-4a98-bdc5-3bdbee1b31c7,LIST_TRANSACTIONS,xs2aListTransactions,true 36042,e8ed133d-25ba-4a98-bdc5-3bdbee1b31c7,AUTHORIZATION,,true 36043,e8ed133d-25ba-4a98-bdc5-3bdbee1b31c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36044,e8ed133d-25ba-4a98-bdc5-3bdbee1b31c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36045,e8ed133d-25ba-4a98-bdc5-3bdbee1b31c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36046,e9a90043-e80f-420d-aebf-3ce20e7c2b85,LIST_ACCOUNTS,hbciListAccounts,false -36047,e9a90043-e80f-420d-aebf-3ce20e7c2b85,LIST_TRANSACTIONS,hbciListTransactions,false -36048,e9a90043-e80f-420d-aebf-3ce20e7c2b85,AUTHORIZATION,,false -36049,e9a90043-e80f-420d-aebf-3ce20e7c2b85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36050,e9a90043-e80f-420d-aebf-3ce20e7c2b85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36051,e9a90043-e80f-420d-aebf-3ce20e7c2b85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36046,40e14418-1ef1-4709-8b3c-2303a5488d22,LIST_ACCOUNTS,hbciListAccounts,false +36047,40e14418-1ef1-4709-8b3c-2303a5488d22,LIST_TRANSACTIONS,hbciListTransactions,false +36048,40e14418-1ef1-4709-8b3c-2303a5488d22,AUTHORIZATION,,false +36049,40e14418-1ef1-4709-8b3c-2303a5488d22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36050,40e14418-1ef1-4709-8b3c-2303a5488d22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36051,40e14418-1ef1-4709-8b3c-2303a5488d22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36052,860a2182-415c-4d5c-8067-512d8db60c12,LIST_ACCOUNTS,xs2aListAccounts,true -36053,860a2182-415c-4d5c-8067-512d8db60c12,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36053,860a2182-415c-4d5c-8067-512d8db60c12,LIST_TRANSACTIONS,xs2aListTransactions,true 36054,860a2182-415c-4d5c-8067-512d8db60c12,AUTHORIZATION,,true 36055,860a2182-415c-4d5c-8067-512d8db60c12,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36056,860a2182-415c-4d5c-8067-512d8db60c12,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36057,860a2182-415c-4d5c-8067-512d8db60c12,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36058,5ed0bcd8-b0c5-407b-b3fe-503cc01e2695,LIST_ACCOUNTS,hbciListAccounts,false -36059,5ed0bcd8-b0c5-407b-b3fe-503cc01e2695,LIST_TRANSACTIONS,hbciListTransactions,false -36060,5ed0bcd8-b0c5-407b-b3fe-503cc01e2695,AUTHORIZATION,,false -36061,5ed0bcd8-b0c5-407b-b3fe-503cc01e2695,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36062,5ed0bcd8-b0c5-407b-b3fe-503cc01e2695,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36063,5ed0bcd8-b0c5-407b-b3fe-503cc01e2695,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36058,72c8d20b-3dc2-41b1-b480-e914def8de62,LIST_ACCOUNTS,hbciListAccounts,false +36059,72c8d20b-3dc2-41b1-b480-e914def8de62,LIST_TRANSACTIONS,hbciListTransactions,false +36060,72c8d20b-3dc2-41b1-b480-e914def8de62,AUTHORIZATION,,false +36061,72c8d20b-3dc2-41b1-b480-e914def8de62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36062,72c8d20b-3dc2-41b1-b480-e914def8de62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36063,72c8d20b-3dc2-41b1-b480-e914def8de62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36064,06d733af-3871-4363-aeba-ed4e9772b7b6,LIST_ACCOUNTS,xs2aListAccounts,true -36065,06d733af-3871-4363-aeba-ed4e9772b7b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36065,06d733af-3871-4363-aeba-ed4e9772b7b6,LIST_TRANSACTIONS,xs2aListTransactions,true 36066,06d733af-3871-4363-aeba-ed4e9772b7b6,AUTHORIZATION,,true 36067,06d733af-3871-4363-aeba-ed4e9772b7b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36068,06d733af-3871-4363-aeba-ed4e9772b7b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36069,06d733af-3871-4363-aeba-ed4e9772b7b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36070,8e762cb9-e42b-4517-bffe-7132038af102,LIST_ACCOUNTS,hbciListAccounts,false -36071,8e762cb9-e42b-4517-bffe-7132038af102,LIST_TRANSACTIONS,hbciListTransactions,false -36072,8e762cb9-e42b-4517-bffe-7132038af102,AUTHORIZATION,,false -36073,8e762cb9-e42b-4517-bffe-7132038af102,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36074,8e762cb9-e42b-4517-bffe-7132038af102,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36075,8e762cb9-e42b-4517-bffe-7132038af102,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36070,1de858b3-d69b-44c6-9236-704862f49a94,LIST_ACCOUNTS,hbciListAccounts,false +36071,1de858b3-d69b-44c6-9236-704862f49a94,LIST_TRANSACTIONS,hbciListTransactions,false +36072,1de858b3-d69b-44c6-9236-704862f49a94,AUTHORIZATION,,false +36073,1de858b3-d69b-44c6-9236-704862f49a94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36074,1de858b3-d69b-44c6-9236-704862f49a94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36075,1de858b3-d69b-44c6-9236-704862f49a94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36076,77c8b517-53ec-4519-bde8-0176720ba622,LIST_ACCOUNTS,xs2aListAccounts,true -36077,77c8b517-53ec-4519-bde8-0176720ba622,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36077,77c8b517-53ec-4519-bde8-0176720ba622,LIST_TRANSACTIONS,xs2aListTransactions,true 36078,77c8b517-53ec-4519-bde8-0176720ba622,AUTHORIZATION,,true 36079,77c8b517-53ec-4519-bde8-0176720ba622,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36080,77c8b517-53ec-4519-bde8-0176720ba622,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36081,77c8b517-53ec-4519-bde8-0176720ba622,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36082,933c9527-3e96-4230-ac6f-ee840fd90a67,LIST_ACCOUNTS,hbciListAccounts,false -36083,933c9527-3e96-4230-ac6f-ee840fd90a67,LIST_TRANSACTIONS,hbciListTransactions,false -36084,933c9527-3e96-4230-ac6f-ee840fd90a67,AUTHORIZATION,,false -36085,933c9527-3e96-4230-ac6f-ee840fd90a67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36086,933c9527-3e96-4230-ac6f-ee840fd90a67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36087,933c9527-3e96-4230-ac6f-ee840fd90a67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36082,03498821-66a9-4742-94d0-5bb687f4cbc9,LIST_ACCOUNTS,hbciListAccounts,false +36083,03498821-66a9-4742-94d0-5bb687f4cbc9,LIST_TRANSACTIONS,hbciListTransactions,false +36084,03498821-66a9-4742-94d0-5bb687f4cbc9,AUTHORIZATION,,false +36085,03498821-66a9-4742-94d0-5bb687f4cbc9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36086,03498821-66a9-4742-94d0-5bb687f4cbc9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36087,03498821-66a9-4742-94d0-5bb687f4cbc9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36088,37270490-6678-41bd-8ae5-a9c45a5ecacd,LIST_ACCOUNTS,xs2aListAccounts,true -36089,37270490-6678-41bd-8ae5-a9c45a5ecacd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36089,37270490-6678-41bd-8ae5-a9c45a5ecacd,LIST_TRANSACTIONS,xs2aListTransactions,true 36090,37270490-6678-41bd-8ae5-a9c45a5ecacd,AUTHORIZATION,,true 36091,37270490-6678-41bd-8ae5-a9c45a5ecacd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36092,37270490-6678-41bd-8ae5-a9c45a5ecacd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36093,37270490-6678-41bd-8ae5-a9c45a5ecacd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36094,aaa82a8b-c81d-4c45-ad54-802607e553f6,LIST_ACCOUNTS,hbciListAccounts,false -36095,aaa82a8b-c81d-4c45-ad54-802607e553f6,LIST_TRANSACTIONS,hbciListTransactions,false -36096,aaa82a8b-c81d-4c45-ad54-802607e553f6,AUTHORIZATION,,false -36097,aaa82a8b-c81d-4c45-ad54-802607e553f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36098,aaa82a8b-c81d-4c45-ad54-802607e553f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36099,aaa82a8b-c81d-4c45-ad54-802607e553f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36094,9536ef1d-c653-496f-82a1-c5a7d84646fd,LIST_ACCOUNTS,hbciListAccounts,false +36095,9536ef1d-c653-496f-82a1-c5a7d84646fd,LIST_TRANSACTIONS,hbciListTransactions,false +36096,9536ef1d-c653-496f-82a1-c5a7d84646fd,AUTHORIZATION,,false +36097,9536ef1d-c653-496f-82a1-c5a7d84646fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36098,9536ef1d-c653-496f-82a1-c5a7d84646fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36099,9536ef1d-c653-496f-82a1-c5a7d84646fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36100,928fb76f-eef0-48ef-ac4a-289a2d483d23,LIST_ACCOUNTS,xs2aListAccounts,true -36101,928fb76f-eef0-48ef-ac4a-289a2d483d23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36101,928fb76f-eef0-48ef-ac4a-289a2d483d23,LIST_TRANSACTIONS,xs2aListTransactions,true 36102,928fb76f-eef0-48ef-ac4a-289a2d483d23,AUTHORIZATION,,true 36103,928fb76f-eef0-48ef-ac4a-289a2d483d23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36104,928fb76f-eef0-48ef-ac4a-289a2d483d23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36105,928fb76f-eef0-48ef-ac4a-289a2d483d23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36106,0e5ce5b4-653b-4b35-b12d-24b72bf14bdd,LIST_ACCOUNTS,hbciListAccounts,false -36107,0e5ce5b4-653b-4b35-b12d-24b72bf14bdd,LIST_TRANSACTIONS,hbciListTransactions,false -36108,0e5ce5b4-653b-4b35-b12d-24b72bf14bdd,AUTHORIZATION,,false -36109,0e5ce5b4-653b-4b35-b12d-24b72bf14bdd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36110,0e5ce5b4-653b-4b35-b12d-24b72bf14bdd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36111,0e5ce5b4-653b-4b35-b12d-24b72bf14bdd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36106,98637a2d-0c5c-45b5-ab02-9481fb2381a5,LIST_ACCOUNTS,hbciListAccounts,false +36107,98637a2d-0c5c-45b5-ab02-9481fb2381a5,LIST_TRANSACTIONS,hbciListTransactions,false +36108,98637a2d-0c5c-45b5-ab02-9481fb2381a5,AUTHORIZATION,,false +36109,98637a2d-0c5c-45b5-ab02-9481fb2381a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36110,98637a2d-0c5c-45b5-ab02-9481fb2381a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36111,98637a2d-0c5c-45b5-ab02-9481fb2381a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36112,0c27364a-fd0b-4e95-b803-4d765dcd56e0,LIST_ACCOUNTS,xs2aListAccounts,true -36113,0c27364a-fd0b-4e95-b803-4d765dcd56e0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36113,0c27364a-fd0b-4e95-b803-4d765dcd56e0,LIST_TRANSACTIONS,xs2aListTransactions,true 36114,0c27364a-fd0b-4e95-b803-4d765dcd56e0,AUTHORIZATION,,true 36115,0c27364a-fd0b-4e95-b803-4d765dcd56e0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36116,0c27364a-fd0b-4e95-b803-4d765dcd56e0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36117,0c27364a-fd0b-4e95-b803-4d765dcd56e0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36118,e79d5013-6641-4076-a6a0-4c1a18ddb1c8,LIST_ACCOUNTS,hbciListAccounts,false -36119,e79d5013-6641-4076-a6a0-4c1a18ddb1c8,LIST_TRANSACTIONS,hbciListTransactions,false -36120,e79d5013-6641-4076-a6a0-4c1a18ddb1c8,AUTHORIZATION,,false -36121,e79d5013-6641-4076-a6a0-4c1a18ddb1c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36122,e79d5013-6641-4076-a6a0-4c1a18ddb1c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36123,e79d5013-6641-4076-a6a0-4c1a18ddb1c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36118,16e36f38-ac48-4f31-9c6e-66437c23c306,LIST_ACCOUNTS,hbciListAccounts,false +36119,16e36f38-ac48-4f31-9c6e-66437c23c306,LIST_TRANSACTIONS,hbciListTransactions,false +36120,16e36f38-ac48-4f31-9c6e-66437c23c306,AUTHORIZATION,,false +36121,16e36f38-ac48-4f31-9c6e-66437c23c306,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36122,16e36f38-ac48-4f31-9c6e-66437c23c306,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36123,16e36f38-ac48-4f31-9c6e-66437c23c306,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36124,53b5f1a1-ca14-4b2b-9967-c25773c13b13,LIST_ACCOUNTS,xs2aListAccounts,true -36125,53b5f1a1-ca14-4b2b-9967-c25773c13b13,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36125,53b5f1a1-ca14-4b2b-9967-c25773c13b13,LIST_TRANSACTIONS,xs2aListTransactions,true 36126,53b5f1a1-ca14-4b2b-9967-c25773c13b13,AUTHORIZATION,,true 36127,53b5f1a1-ca14-4b2b-9967-c25773c13b13,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36128,53b5f1a1-ca14-4b2b-9967-c25773c13b13,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36129,53b5f1a1-ca14-4b2b-9967-c25773c13b13,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36130,ba49e33d-2e22-46eb-8a05-8841bfd2ec74,LIST_ACCOUNTS,hbciListAccounts,false -36131,ba49e33d-2e22-46eb-8a05-8841bfd2ec74,LIST_TRANSACTIONS,hbciListTransactions,false -36132,ba49e33d-2e22-46eb-8a05-8841bfd2ec74,AUTHORIZATION,,false -36133,ba49e33d-2e22-46eb-8a05-8841bfd2ec74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36134,ba49e33d-2e22-46eb-8a05-8841bfd2ec74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36135,ba49e33d-2e22-46eb-8a05-8841bfd2ec74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36130,1d2a22fd-7477-4bc0-be46-a8047af4f282,LIST_ACCOUNTS,hbciListAccounts,false +36131,1d2a22fd-7477-4bc0-be46-a8047af4f282,LIST_TRANSACTIONS,hbciListTransactions,false +36132,1d2a22fd-7477-4bc0-be46-a8047af4f282,AUTHORIZATION,,false +36133,1d2a22fd-7477-4bc0-be46-a8047af4f282,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36134,1d2a22fd-7477-4bc0-be46-a8047af4f282,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36135,1d2a22fd-7477-4bc0-be46-a8047af4f282,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36136,4a936c7e-7a6c-45e6-ae2e-0c94bd94ef9e,LIST_ACCOUNTS,xs2aListAccounts,true -36137,4a936c7e-7a6c-45e6-ae2e-0c94bd94ef9e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36137,4a936c7e-7a6c-45e6-ae2e-0c94bd94ef9e,LIST_TRANSACTIONS,xs2aListTransactions,true 36138,4a936c7e-7a6c-45e6-ae2e-0c94bd94ef9e,AUTHORIZATION,,true 36139,4a936c7e-7a6c-45e6-ae2e-0c94bd94ef9e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36140,4a936c7e-7a6c-45e6-ae2e-0c94bd94ef9e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36141,4a936c7e-7a6c-45e6-ae2e-0c94bd94ef9e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36142,a42b46ea-9a6d-41f5-a238-3097067c8c73,LIST_ACCOUNTS,hbciListAccounts,false -36143,a42b46ea-9a6d-41f5-a238-3097067c8c73,LIST_TRANSACTIONS,hbciListTransactions,false -36144,a42b46ea-9a6d-41f5-a238-3097067c8c73,AUTHORIZATION,,false -36145,a42b46ea-9a6d-41f5-a238-3097067c8c73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36146,a42b46ea-9a6d-41f5-a238-3097067c8c73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36147,a42b46ea-9a6d-41f5-a238-3097067c8c73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36142,e5d84ef2-ab10-4ce7-9527-b405e085fbfd,LIST_ACCOUNTS,hbciListAccounts,false +36143,e5d84ef2-ab10-4ce7-9527-b405e085fbfd,LIST_TRANSACTIONS,hbciListTransactions,false +36144,e5d84ef2-ab10-4ce7-9527-b405e085fbfd,AUTHORIZATION,,false +36145,e5d84ef2-ab10-4ce7-9527-b405e085fbfd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36146,e5d84ef2-ab10-4ce7-9527-b405e085fbfd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36147,e5d84ef2-ab10-4ce7-9527-b405e085fbfd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36148,7f8d9cf2-1c9d-43e7-a01a-41918cce9e8a,LIST_ACCOUNTS,xs2aListAccounts,true -36149,7f8d9cf2-1c9d-43e7-a01a-41918cce9e8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36149,7f8d9cf2-1c9d-43e7-a01a-41918cce9e8a,LIST_TRANSACTIONS,xs2aListTransactions,true 36150,7f8d9cf2-1c9d-43e7-a01a-41918cce9e8a,AUTHORIZATION,,true 36151,7f8d9cf2-1c9d-43e7-a01a-41918cce9e8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36152,7f8d9cf2-1c9d-43e7-a01a-41918cce9e8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36153,7f8d9cf2-1c9d-43e7-a01a-41918cce9e8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36154,48284f26-a321-4e6f-9a4e-d32f3fffc3b1,LIST_ACCOUNTS,hbciListAccounts,false -36155,48284f26-a321-4e6f-9a4e-d32f3fffc3b1,LIST_TRANSACTIONS,hbciListTransactions,false -36156,48284f26-a321-4e6f-9a4e-d32f3fffc3b1,AUTHORIZATION,,false -36157,48284f26-a321-4e6f-9a4e-d32f3fffc3b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36158,48284f26-a321-4e6f-9a4e-d32f3fffc3b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36159,48284f26-a321-4e6f-9a4e-d32f3fffc3b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36154,70d70900-77ba-44cb-9e76-1cb3b27285d6,LIST_ACCOUNTS,hbciListAccounts,false +36155,70d70900-77ba-44cb-9e76-1cb3b27285d6,LIST_TRANSACTIONS,hbciListTransactions,false +36156,70d70900-77ba-44cb-9e76-1cb3b27285d6,AUTHORIZATION,,false +36157,70d70900-77ba-44cb-9e76-1cb3b27285d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36158,70d70900-77ba-44cb-9e76-1cb3b27285d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36159,70d70900-77ba-44cb-9e76-1cb3b27285d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36160,93c51fa8-e07c-40e9-8f24-5aaae92d565f,LIST_ACCOUNTS,xs2aListAccounts,true -36161,93c51fa8-e07c-40e9-8f24-5aaae92d565f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36161,93c51fa8-e07c-40e9-8f24-5aaae92d565f,LIST_TRANSACTIONS,xs2aListTransactions,true 36162,93c51fa8-e07c-40e9-8f24-5aaae92d565f,AUTHORIZATION,,true 36163,93c51fa8-e07c-40e9-8f24-5aaae92d565f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36164,93c51fa8-e07c-40e9-8f24-5aaae92d565f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36165,93c51fa8-e07c-40e9-8f24-5aaae92d565f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36166,0261e809-85f1-4ee5-8a33-870dfa711f60,LIST_ACCOUNTS,hbciListAccounts,false -36167,0261e809-85f1-4ee5-8a33-870dfa711f60,LIST_TRANSACTIONS,hbciListTransactions,false -36168,0261e809-85f1-4ee5-8a33-870dfa711f60,AUTHORIZATION,,false -36169,0261e809-85f1-4ee5-8a33-870dfa711f60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36170,0261e809-85f1-4ee5-8a33-870dfa711f60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36171,0261e809-85f1-4ee5-8a33-870dfa711f60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36166,70863846-25fd-48ce-ade1-01954b5c2689,LIST_ACCOUNTS,hbciListAccounts,false +36167,70863846-25fd-48ce-ade1-01954b5c2689,LIST_TRANSACTIONS,hbciListTransactions,false +36168,70863846-25fd-48ce-ade1-01954b5c2689,AUTHORIZATION,,false +36169,70863846-25fd-48ce-ade1-01954b5c2689,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36170,70863846-25fd-48ce-ade1-01954b5c2689,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36171,70863846-25fd-48ce-ade1-01954b5c2689,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36172,6b4b5ac0-5180-4e92-9a10-01433ee2b3db,LIST_ACCOUNTS,xs2aListAccounts,true -36173,6b4b5ac0-5180-4e92-9a10-01433ee2b3db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36173,6b4b5ac0-5180-4e92-9a10-01433ee2b3db,LIST_TRANSACTIONS,xs2aListTransactions,true 36174,6b4b5ac0-5180-4e92-9a10-01433ee2b3db,AUTHORIZATION,,true 36175,6b4b5ac0-5180-4e92-9a10-01433ee2b3db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36176,6b4b5ac0-5180-4e92-9a10-01433ee2b3db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36177,6b4b5ac0-5180-4e92-9a10-01433ee2b3db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36178,e3f3b0c6-ffea-48c8-a476-7cf3ed4b6f73,LIST_ACCOUNTS,hbciListAccounts,false -36179,e3f3b0c6-ffea-48c8-a476-7cf3ed4b6f73,LIST_TRANSACTIONS,hbciListTransactions,false -36180,e3f3b0c6-ffea-48c8-a476-7cf3ed4b6f73,AUTHORIZATION,,false -36181,e3f3b0c6-ffea-48c8-a476-7cf3ed4b6f73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36182,e3f3b0c6-ffea-48c8-a476-7cf3ed4b6f73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36183,e3f3b0c6-ffea-48c8-a476-7cf3ed4b6f73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36178,2c103bc5-33a9-4f3c-80ca-96b0bc53a6a6,LIST_ACCOUNTS,hbciListAccounts,false +36179,2c103bc5-33a9-4f3c-80ca-96b0bc53a6a6,LIST_TRANSACTIONS,hbciListTransactions,false +36180,2c103bc5-33a9-4f3c-80ca-96b0bc53a6a6,AUTHORIZATION,,false +36181,2c103bc5-33a9-4f3c-80ca-96b0bc53a6a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36182,2c103bc5-33a9-4f3c-80ca-96b0bc53a6a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36183,2c103bc5-33a9-4f3c-80ca-96b0bc53a6a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36184,951a38c3-c5f5-48a6-906d-8866f62a408e,LIST_ACCOUNTS,xs2aListAccounts,true -36185,951a38c3-c5f5-48a6-906d-8866f62a408e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36185,951a38c3-c5f5-48a6-906d-8866f62a408e,LIST_TRANSACTIONS,xs2aListTransactions,true 36186,951a38c3-c5f5-48a6-906d-8866f62a408e,AUTHORIZATION,,true 36187,951a38c3-c5f5-48a6-906d-8866f62a408e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36188,951a38c3-c5f5-48a6-906d-8866f62a408e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36189,951a38c3-c5f5-48a6-906d-8866f62a408e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36190,7d8fa0eb-bc87-4ee9-ae8d-15991074e175,LIST_ACCOUNTS,hbciListAccounts,false -36191,7d8fa0eb-bc87-4ee9-ae8d-15991074e175,LIST_TRANSACTIONS,hbciListTransactions,false -36192,7d8fa0eb-bc87-4ee9-ae8d-15991074e175,AUTHORIZATION,,false -36193,7d8fa0eb-bc87-4ee9-ae8d-15991074e175,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36194,7d8fa0eb-bc87-4ee9-ae8d-15991074e175,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36195,7d8fa0eb-bc87-4ee9-ae8d-15991074e175,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36190,91330c25-996e-4965-abb3-313351052331,LIST_ACCOUNTS,hbciListAccounts,false +36191,91330c25-996e-4965-abb3-313351052331,LIST_TRANSACTIONS,hbciListTransactions,false +36192,91330c25-996e-4965-abb3-313351052331,AUTHORIZATION,,false +36193,91330c25-996e-4965-abb3-313351052331,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36194,91330c25-996e-4965-abb3-313351052331,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36195,91330c25-996e-4965-abb3-313351052331,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36196,da99c550-1605-4cad-8573-3f8ae411a74f,LIST_ACCOUNTS,xs2aListAccounts,true -36197,da99c550-1605-4cad-8573-3f8ae411a74f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36197,da99c550-1605-4cad-8573-3f8ae411a74f,LIST_TRANSACTIONS,xs2aListTransactions,true 36198,da99c550-1605-4cad-8573-3f8ae411a74f,AUTHORIZATION,,true 36199,da99c550-1605-4cad-8573-3f8ae411a74f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36200,da99c550-1605-4cad-8573-3f8ae411a74f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36201,da99c550-1605-4cad-8573-3f8ae411a74f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36202,dea8cd88-fe81-4fe7-b37c-fe3a26dcd48d,LIST_ACCOUNTS,hbciListAccounts,false -36203,dea8cd88-fe81-4fe7-b37c-fe3a26dcd48d,LIST_TRANSACTIONS,hbciListTransactions,false -36204,dea8cd88-fe81-4fe7-b37c-fe3a26dcd48d,AUTHORIZATION,,false -36205,dea8cd88-fe81-4fe7-b37c-fe3a26dcd48d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36206,dea8cd88-fe81-4fe7-b37c-fe3a26dcd48d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36207,dea8cd88-fe81-4fe7-b37c-fe3a26dcd48d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36202,14cce20c-b088-4415-9420-1c69b1c2ffa9,LIST_ACCOUNTS,hbciListAccounts,false +36203,14cce20c-b088-4415-9420-1c69b1c2ffa9,LIST_TRANSACTIONS,hbciListTransactions,false +36204,14cce20c-b088-4415-9420-1c69b1c2ffa9,AUTHORIZATION,,false +36205,14cce20c-b088-4415-9420-1c69b1c2ffa9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36206,14cce20c-b088-4415-9420-1c69b1c2ffa9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36207,14cce20c-b088-4415-9420-1c69b1c2ffa9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36208,e1a25911-0552-4d0b-99d3-0d4ca444db6a,LIST_ACCOUNTS,xs2aListAccounts,true -36209,e1a25911-0552-4d0b-99d3-0d4ca444db6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36209,e1a25911-0552-4d0b-99d3-0d4ca444db6a,LIST_TRANSACTIONS,xs2aListTransactions,true 36210,e1a25911-0552-4d0b-99d3-0d4ca444db6a,AUTHORIZATION,,true 36211,e1a25911-0552-4d0b-99d3-0d4ca444db6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36212,e1a25911-0552-4d0b-99d3-0d4ca444db6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36213,e1a25911-0552-4d0b-99d3-0d4ca444db6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36214,aa628e5e-748b-4fa8-9c56-c09a56544724,LIST_ACCOUNTS,hbciListAccounts,false -36215,aa628e5e-748b-4fa8-9c56-c09a56544724,LIST_TRANSACTIONS,hbciListTransactions,false -36216,aa628e5e-748b-4fa8-9c56-c09a56544724,AUTHORIZATION,,false -36217,aa628e5e-748b-4fa8-9c56-c09a56544724,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36218,aa628e5e-748b-4fa8-9c56-c09a56544724,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36219,aa628e5e-748b-4fa8-9c56-c09a56544724,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36214,ee1e001d-510b-4f2d-a9f2-4dd6e2e25520,LIST_ACCOUNTS,hbciListAccounts,false +36215,ee1e001d-510b-4f2d-a9f2-4dd6e2e25520,LIST_TRANSACTIONS,hbciListTransactions,false +36216,ee1e001d-510b-4f2d-a9f2-4dd6e2e25520,AUTHORIZATION,,false +36217,ee1e001d-510b-4f2d-a9f2-4dd6e2e25520,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36218,ee1e001d-510b-4f2d-a9f2-4dd6e2e25520,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36219,ee1e001d-510b-4f2d-a9f2-4dd6e2e25520,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36220,ad8a1888-ad9a-4a3f-9186-f0dc9695b3d0,LIST_ACCOUNTS,xs2aListAccounts,true -36221,ad8a1888-ad9a-4a3f-9186-f0dc9695b3d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36221,ad8a1888-ad9a-4a3f-9186-f0dc9695b3d0,LIST_TRANSACTIONS,xs2aListTransactions,true 36222,ad8a1888-ad9a-4a3f-9186-f0dc9695b3d0,AUTHORIZATION,,true 36223,ad8a1888-ad9a-4a3f-9186-f0dc9695b3d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36224,ad8a1888-ad9a-4a3f-9186-f0dc9695b3d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36225,ad8a1888-ad9a-4a3f-9186-f0dc9695b3d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36226,c86b8281-10c7-4ac3-a7fe-d4f950b64964,LIST_ACCOUNTS,hbciListAccounts,false -36227,c86b8281-10c7-4ac3-a7fe-d4f950b64964,LIST_TRANSACTIONS,hbciListTransactions,false -36228,c86b8281-10c7-4ac3-a7fe-d4f950b64964,AUTHORIZATION,,false -36229,c86b8281-10c7-4ac3-a7fe-d4f950b64964,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36230,c86b8281-10c7-4ac3-a7fe-d4f950b64964,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36231,c86b8281-10c7-4ac3-a7fe-d4f950b64964,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36226,60a8c307-10c0-441b-9370-026ad4a76555,LIST_ACCOUNTS,hbciListAccounts,false +36227,60a8c307-10c0-441b-9370-026ad4a76555,LIST_TRANSACTIONS,hbciListTransactions,false +36228,60a8c307-10c0-441b-9370-026ad4a76555,AUTHORIZATION,,false +36229,60a8c307-10c0-441b-9370-026ad4a76555,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36230,60a8c307-10c0-441b-9370-026ad4a76555,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36231,60a8c307-10c0-441b-9370-026ad4a76555,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36232,3d54b1bc-1517-4cee-a9c6-5bc23235e84c,LIST_ACCOUNTS,xs2aListAccounts,true -36233,3d54b1bc-1517-4cee-a9c6-5bc23235e84c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36233,3d54b1bc-1517-4cee-a9c6-5bc23235e84c,LIST_TRANSACTIONS,xs2aListTransactions,true 36234,3d54b1bc-1517-4cee-a9c6-5bc23235e84c,AUTHORIZATION,,true 36235,3d54b1bc-1517-4cee-a9c6-5bc23235e84c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36236,3d54b1bc-1517-4cee-a9c6-5bc23235e84c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36237,3d54b1bc-1517-4cee-a9c6-5bc23235e84c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36238,66ebc86a-6838-4a0f-994b-2eadd486bbdb,LIST_ACCOUNTS,hbciListAccounts,false -36239,66ebc86a-6838-4a0f-994b-2eadd486bbdb,LIST_TRANSACTIONS,hbciListTransactions,false -36240,66ebc86a-6838-4a0f-994b-2eadd486bbdb,AUTHORIZATION,,false -36241,66ebc86a-6838-4a0f-994b-2eadd486bbdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36242,66ebc86a-6838-4a0f-994b-2eadd486bbdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36243,66ebc86a-6838-4a0f-994b-2eadd486bbdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36238,42a9fec1-df88-49cd-9468-e92d9c253ecd,LIST_ACCOUNTS,hbciListAccounts,false +36239,42a9fec1-df88-49cd-9468-e92d9c253ecd,LIST_TRANSACTIONS,hbciListTransactions,false +36240,42a9fec1-df88-49cd-9468-e92d9c253ecd,AUTHORIZATION,,false +36241,42a9fec1-df88-49cd-9468-e92d9c253ecd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36242,42a9fec1-df88-49cd-9468-e92d9c253ecd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36243,42a9fec1-df88-49cd-9468-e92d9c253ecd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36244,69b016f7-9450-450d-b5c4-01f5232da230,LIST_ACCOUNTS,xs2aListAccounts,true -36245,69b016f7-9450-450d-b5c4-01f5232da230,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36245,69b016f7-9450-450d-b5c4-01f5232da230,LIST_TRANSACTIONS,xs2aListTransactions,true 36246,69b016f7-9450-450d-b5c4-01f5232da230,AUTHORIZATION,,true 36247,69b016f7-9450-450d-b5c4-01f5232da230,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36248,69b016f7-9450-450d-b5c4-01f5232da230,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36249,69b016f7-9450-450d-b5c4-01f5232da230,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36250,ebe2d9ff-4e4e-4d29-b9b4-874443c46dac,LIST_ACCOUNTS,hbciListAccounts,false -36251,ebe2d9ff-4e4e-4d29-b9b4-874443c46dac,LIST_TRANSACTIONS,hbciListTransactions,false -36252,ebe2d9ff-4e4e-4d29-b9b4-874443c46dac,AUTHORIZATION,,false -36253,ebe2d9ff-4e4e-4d29-b9b4-874443c46dac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36254,ebe2d9ff-4e4e-4d29-b9b4-874443c46dac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36255,ebe2d9ff-4e4e-4d29-b9b4-874443c46dac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36250,78251473-a5f0-4a18-84e7-e93e967fea79,LIST_ACCOUNTS,hbciListAccounts,false +36251,78251473-a5f0-4a18-84e7-e93e967fea79,LIST_TRANSACTIONS,hbciListTransactions,false +36252,78251473-a5f0-4a18-84e7-e93e967fea79,AUTHORIZATION,,false +36253,78251473-a5f0-4a18-84e7-e93e967fea79,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36254,78251473-a5f0-4a18-84e7-e93e967fea79,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36255,78251473-a5f0-4a18-84e7-e93e967fea79,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36256,11ffe455-5f55-41f1-9db5-c5e49afbc4a8,LIST_ACCOUNTS,xs2aListAccounts,true -36257,11ffe455-5f55-41f1-9db5-c5e49afbc4a8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36257,11ffe455-5f55-41f1-9db5-c5e49afbc4a8,LIST_TRANSACTIONS,xs2aListTransactions,true 36258,11ffe455-5f55-41f1-9db5-c5e49afbc4a8,AUTHORIZATION,,true 36259,11ffe455-5f55-41f1-9db5-c5e49afbc4a8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36260,11ffe455-5f55-41f1-9db5-c5e49afbc4a8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36261,11ffe455-5f55-41f1-9db5-c5e49afbc4a8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36262,a88e95b4-82f8-4a82-87f0-b26941a9a48f,LIST_ACCOUNTS,hbciListAccounts,false -36263,a88e95b4-82f8-4a82-87f0-b26941a9a48f,LIST_TRANSACTIONS,hbciListTransactions,false -36264,a88e95b4-82f8-4a82-87f0-b26941a9a48f,AUTHORIZATION,,false -36265,a88e95b4-82f8-4a82-87f0-b26941a9a48f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36266,a88e95b4-82f8-4a82-87f0-b26941a9a48f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36267,a88e95b4-82f8-4a82-87f0-b26941a9a48f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36262,e04d78ee-fd8d-4b7a-9cfc-fcdddb662172,LIST_ACCOUNTS,hbciListAccounts,false +36263,e04d78ee-fd8d-4b7a-9cfc-fcdddb662172,LIST_TRANSACTIONS,hbciListTransactions,false +36264,e04d78ee-fd8d-4b7a-9cfc-fcdddb662172,AUTHORIZATION,,false +36265,e04d78ee-fd8d-4b7a-9cfc-fcdddb662172,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36266,e04d78ee-fd8d-4b7a-9cfc-fcdddb662172,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36267,e04d78ee-fd8d-4b7a-9cfc-fcdddb662172,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36268,3501cd11-dedd-491e-98fc-d877ab140ab1,LIST_ACCOUNTS,xs2aListAccounts,true -36269,3501cd11-dedd-491e-98fc-d877ab140ab1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36269,3501cd11-dedd-491e-98fc-d877ab140ab1,LIST_TRANSACTIONS,xs2aListTransactions,true 36270,3501cd11-dedd-491e-98fc-d877ab140ab1,AUTHORIZATION,,true 36271,3501cd11-dedd-491e-98fc-d877ab140ab1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36272,3501cd11-dedd-491e-98fc-d877ab140ab1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36273,3501cd11-dedd-491e-98fc-d877ab140ab1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36274,b58479e3-8d4e-4613-8094-6dcb3177de77,LIST_ACCOUNTS,hbciListAccounts,false -36275,b58479e3-8d4e-4613-8094-6dcb3177de77,LIST_TRANSACTIONS,hbciListTransactions,false -36276,b58479e3-8d4e-4613-8094-6dcb3177de77,AUTHORIZATION,,false -36277,b58479e3-8d4e-4613-8094-6dcb3177de77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36278,b58479e3-8d4e-4613-8094-6dcb3177de77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36279,b58479e3-8d4e-4613-8094-6dcb3177de77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36274,00196564-aefb-41ca-88b4-ffb36d35e890,LIST_ACCOUNTS,hbciListAccounts,false +36275,00196564-aefb-41ca-88b4-ffb36d35e890,LIST_TRANSACTIONS,hbciListTransactions,false +36276,00196564-aefb-41ca-88b4-ffb36d35e890,AUTHORIZATION,,false +36277,00196564-aefb-41ca-88b4-ffb36d35e890,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36278,00196564-aefb-41ca-88b4-ffb36d35e890,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36279,00196564-aefb-41ca-88b4-ffb36d35e890,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36280,95a19c6e-be10-4660-aa9d-c782c4d6e376,LIST_ACCOUNTS,xs2aListAccounts,true -36281,95a19c6e-be10-4660-aa9d-c782c4d6e376,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36281,95a19c6e-be10-4660-aa9d-c782c4d6e376,LIST_TRANSACTIONS,xs2aListTransactions,true 36282,95a19c6e-be10-4660-aa9d-c782c4d6e376,AUTHORIZATION,,true 36283,95a19c6e-be10-4660-aa9d-c782c4d6e376,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36284,95a19c6e-be10-4660-aa9d-c782c4d6e376,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36285,95a19c6e-be10-4660-aa9d-c782c4d6e376,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36286,414d98c0-e79e-4489-a2e9-30ee2b9a6f94,LIST_ACCOUNTS,hbciListAccounts,false -36287,414d98c0-e79e-4489-a2e9-30ee2b9a6f94,LIST_TRANSACTIONS,hbciListTransactions,false -36288,414d98c0-e79e-4489-a2e9-30ee2b9a6f94,AUTHORIZATION,,false -36289,414d98c0-e79e-4489-a2e9-30ee2b9a6f94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36290,414d98c0-e79e-4489-a2e9-30ee2b9a6f94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36291,414d98c0-e79e-4489-a2e9-30ee2b9a6f94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36286,ef68ce04-76be-44f4-8b9a-3d74ffbb2683,LIST_ACCOUNTS,hbciListAccounts,false +36287,ef68ce04-76be-44f4-8b9a-3d74ffbb2683,LIST_TRANSACTIONS,hbciListTransactions,false +36288,ef68ce04-76be-44f4-8b9a-3d74ffbb2683,AUTHORIZATION,,false +36289,ef68ce04-76be-44f4-8b9a-3d74ffbb2683,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36290,ef68ce04-76be-44f4-8b9a-3d74ffbb2683,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36291,ef68ce04-76be-44f4-8b9a-3d74ffbb2683,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36292,69ddd4cd-a59a-4ddc-ba87-8282a9ecc069,LIST_ACCOUNTS,xs2aListAccounts,true -36293,69ddd4cd-a59a-4ddc-ba87-8282a9ecc069,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36293,69ddd4cd-a59a-4ddc-ba87-8282a9ecc069,LIST_TRANSACTIONS,xs2aListTransactions,true 36294,69ddd4cd-a59a-4ddc-ba87-8282a9ecc069,AUTHORIZATION,,true 36295,69ddd4cd-a59a-4ddc-ba87-8282a9ecc069,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36296,69ddd4cd-a59a-4ddc-ba87-8282a9ecc069,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36297,69ddd4cd-a59a-4ddc-ba87-8282a9ecc069,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36298,15e20955-64c8-4be1-865b-bde879a9272b,LIST_ACCOUNTS,hbciListAccounts,false -36299,15e20955-64c8-4be1-865b-bde879a9272b,LIST_TRANSACTIONS,hbciListTransactions,false -36300,15e20955-64c8-4be1-865b-bde879a9272b,AUTHORIZATION,,false -36301,15e20955-64c8-4be1-865b-bde879a9272b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36302,15e20955-64c8-4be1-865b-bde879a9272b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36303,15e20955-64c8-4be1-865b-bde879a9272b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36298,e871c27e-b71e-459c-b8ff-d864e0281680,LIST_ACCOUNTS,hbciListAccounts,false +36299,e871c27e-b71e-459c-b8ff-d864e0281680,LIST_TRANSACTIONS,hbciListTransactions,false +36300,e871c27e-b71e-459c-b8ff-d864e0281680,AUTHORIZATION,,false +36301,e871c27e-b71e-459c-b8ff-d864e0281680,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36302,e871c27e-b71e-459c-b8ff-d864e0281680,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36303,e871c27e-b71e-459c-b8ff-d864e0281680,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36304,cf48782c-91bd-43f2-958a-fe08d439de3e,LIST_ACCOUNTS,xs2aListAccounts,true -36305,cf48782c-91bd-43f2-958a-fe08d439de3e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36305,cf48782c-91bd-43f2-958a-fe08d439de3e,LIST_TRANSACTIONS,xs2aListTransactions,true 36306,cf48782c-91bd-43f2-958a-fe08d439de3e,AUTHORIZATION,,true 36307,cf48782c-91bd-43f2-958a-fe08d439de3e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36308,cf48782c-91bd-43f2-958a-fe08d439de3e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36309,cf48782c-91bd-43f2-958a-fe08d439de3e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36310,e6e49810-265d-49ca-b982-20a8f01bdde7,LIST_ACCOUNTS,hbciListAccounts,false -36311,e6e49810-265d-49ca-b982-20a8f01bdde7,LIST_TRANSACTIONS,hbciListTransactions,false -36312,e6e49810-265d-49ca-b982-20a8f01bdde7,AUTHORIZATION,,false -36313,e6e49810-265d-49ca-b982-20a8f01bdde7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36314,e6e49810-265d-49ca-b982-20a8f01bdde7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36315,e6e49810-265d-49ca-b982-20a8f01bdde7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36310,5e91409b-33e1-46eb-b2f1-c787a1e9cbfd,LIST_ACCOUNTS,hbciListAccounts,false +36311,5e91409b-33e1-46eb-b2f1-c787a1e9cbfd,LIST_TRANSACTIONS,hbciListTransactions,false +36312,5e91409b-33e1-46eb-b2f1-c787a1e9cbfd,AUTHORIZATION,,false +36313,5e91409b-33e1-46eb-b2f1-c787a1e9cbfd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36314,5e91409b-33e1-46eb-b2f1-c787a1e9cbfd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36315,5e91409b-33e1-46eb-b2f1-c787a1e9cbfd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36316,a153b20a-ce70-4fac-b0ed-7fce941bc345,LIST_ACCOUNTS,xs2aListAccounts,true -36317,a153b20a-ce70-4fac-b0ed-7fce941bc345,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36317,a153b20a-ce70-4fac-b0ed-7fce941bc345,LIST_TRANSACTIONS,xs2aListTransactions,true 36318,a153b20a-ce70-4fac-b0ed-7fce941bc345,AUTHORIZATION,,true 36319,a153b20a-ce70-4fac-b0ed-7fce941bc345,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36320,a153b20a-ce70-4fac-b0ed-7fce941bc345,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36321,a153b20a-ce70-4fac-b0ed-7fce941bc345,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36322,88574d2a-7842-4ff7-a696-85bd0142629a,LIST_ACCOUNTS,hbciListAccounts,false -36323,88574d2a-7842-4ff7-a696-85bd0142629a,LIST_TRANSACTIONS,hbciListTransactions,false -36324,88574d2a-7842-4ff7-a696-85bd0142629a,AUTHORIZATION,,false -36325,88574d2a-7842-4ff7-a696-85bd0142629a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36326,88574d2a-7842-4ff7-a696-85bd0142629a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36327,88574d2a-7842-4ff7-a696-85bd0142629a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36322,50b27eb7-27bb-40e1-bf09-03d0de94b0ac,LIST_ACCOUNTS,hbciListAccounts,false +36323,50b27eb7-27bb-40e1-bf09-03d0de94b0ac,LIST_TRANSACTIONS,hbciListTransactions,false +36324,50b27eb7-27bb-40e1-bf09-03d0de94b0ac,AUTHORIZATION,,false +36325,50b27eb7-27bb-40e1-bf09-03d0de94b0ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36326,50b27eb7-27bb-40e1-bf09-03d0de94b0ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36327,50b27eb7-27bb-40e1-bf09-03d0de94b0ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36328,bd68620d-0fcb-4cc3-97c0-3c80604bcfd1,LIST_ACCOUNTS,xs2aListAccounts,true -36329,bd68620d-0fcb-4cc3-97c0-3c80604bcfd1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36329,bd68620d-0fcb-4cc3-97c0-3c80604bcfd1,LIST_TRANSACTIONS,xs2aListTransactions,true 36330,bd68620d-0fcb-4cc3-97c0-3c80604bcfd1,AUTHORIZATION,,true 36331,bd68620d-0fcb-4cc3-97c0-3c80604bcfd1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36332,bd68620d-0fcb-4cc3-97c0-3c80604bcfd1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36333,bd68620d-0fcb-4cc3-97c0-3c80604bcfd1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36334,86fcf425-943b-463e-9efc-1e707d0278a2,LIST_ACCOUNTS,hbciListAccounts,false -36335,86fcf425-943b-463e-9efc-1e707d0278a2,LIST_TRANSACTIONS,hbciListTransactions,false -36336,86fcf425-943b-463e-9efc-1e707d0278a2,AUTHORIZATION,,false -36337,86fcf425-943b-463e-9efc-1e707d0278a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36338,86fcf425-943b-463e-9efc-1e707d0278a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36339,86fcf425-943b-463e-9efc-1e707d0278a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36334,ab39cc25-748a-485f-bbe6-101672191bf1,LIST_ACCOUNTS,hbciListAccounts,false +36335,ab39cc25-748a-485f-bbe6-101672191bf1,LIST_TRANSACTIONS,hbciListTransactions,false +36336,ab39cc25-748a-485f-bbe6-101672191bf1,AUTHORIZATION,,false +36337,ab39cc25-748a-485f-bbe6-101672191bf1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36338,ab39cc25-748a-485f-bbe6-101672191bf1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36339,ab39cc25-748a-485f-bbe6-101672191bf1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36340,1eba7f45-b5bd-4156-b427-ee1e24cdd5d9,LIST_ACCOUNTS,xs2aListAccounts,true -36341,1eba7f45-b5bd-4156-b427-ee1e24cdd5d9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36341,1eba7f45-b5bd-4156-b427-ee1e24cdd5d9,LIST_TRANSACTIONS,xs2aListTransactions,true 36342,1eba7f45-b5bd-4156-b427-ee1e24cdd5d9,AUTHORIZATION,,true 36343,1eba7f45-b5bd-4156-b427-ee1e24cdd5d9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36344,1eba7f45-b5bd-4156-b427-ee1e24cdd5d9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36345,1eba7f45-b5bd-4156-b427-ee1e24cdd5d9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36346,743ac60e-3000-4cc5-83bf-d457ca97bb46,LIST_ACCOUNTS,hbciListAccounts,false -36347,743ac60e-3000-4cc5-83bf-d457ca97bb46,LIST_TRANSACTIONS,hbciListTransactions,false -36348,743ac60e-3000-4cc5-83bf-d457ca97bb46,AUTHORIZATION,,false -36349,743ac60e-3000-4cc5-83bf-d457ca97bb46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36350,743ac60e-3000-4cc5-83bf-d457ca97bb46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36351,743ac60e-3000-4cc5-83bf-d457ca97bb46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36346,895fc679-4a13-46e4-b659-3867fa2d5c12,LIST_ACCOUNTS,hbciListAccounts,false +36347,895fc679-4a13-46e4-b659-3867fa2d5c12,LIST_TRANSACTIONS,hbciListTransactions,false +36348,895fc679-4a13-46e4-b659-3867fa2d5c12,AUTHORIZATION,,false +36349,895fc679-4a13-46e4-b659-3867fa2d5c12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36350,895fc679-4a13-46e4-b659-3867fa2d5c12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36351,895fc679-4a13-46e4-b659-3867fa2d5c12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36352,c94400c3-677e-4b83-8eca-33fdb817ab5f,LIST_ACCOUNTS,xs2aListAccounts,true -36353,c94400c3-677e-4b83-8eca-33fdb817ab5f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36353,c94400c3-677e-4b83-8eca-33fdb817ab5f,LIST_TRANSACTIONS,xs2aListTransactions,true 36354,c94400c3-677e-4b83-8eca-33fdb817ab5f,AUTHORIZATION,,true 36355,c94400c3-677e-4b83-8eca-33fdb817ab5f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36356,c94400c3-677e-4b83-8eca-33fdb817ab5f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36357,c94400c3-677e-4b83-8eca-33fdb817ab5f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36358,ccf58c02-1aee-490b-8e7c-920ae5660c7f,LIST_ACCOUNTS,hbciListAccounts,false -36359,ccf58c02-1aee-490b-8e7c-920ae5660c7f,LIST_TRANSACTIONS,hbciListTransactions,false -36360,ccf58c02-1aee-490b-8e7c-920ae5660c7f,AUTHORIZATION,,false -36361,ccf58c02-1aee-490b-8e7c-920ae5660c7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36362,ccf58c02-1aee-490b-8e7c-920ae5660c7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36363,ccf58c02-1aee-490b-8e7c-920ae5660c7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36358,00f32218-481e-4299-b679-98079d8e71fe,LIST_ACCOUNTS,hbciListAccounts,false +36359,00f32218-481e-4299-b679-98079d8e71fe,LIST_TRANSACTIONS,hbciListTransactions,false +36360,00f32218-481e-4299-b679-98079d8e71fe,AUTHORIZATION,,false +36361,00f32218-481e-4299-b679-98079d8e71fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36362,00f32218-481e-4299-b679-98079d8e71fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36363,00f32218-481e-4299-b679-98079d8e71fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36364,597fa970-c847-4287-b476-10e70b1d6549,LIST_ACCOUNTS,xs2aListAccounts,true -36365,597fa970-c847-4287-b476-10e70b1d6549,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36365,597fa970-c847-4287-b476-10e70b1d6549,LIST_TRANSACTIONS,xs2aListTransactions,true 36366,597fa970-c847-4287-b476-10e70b1d6549,AUTHORIZATION,,true 36367,597fa970-c847-4287-b476-10e70b1d6549,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36368,597fa970-c847-4287-b476-10e70b1d6549,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36369,597fa970-c847-4287-b476-10e70b1d6549,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36370,0a8efc79-37b5-4eb5-96db-bdf3c134c979,LIST_ACCOUNTS,hbciListAccounts,false -36371,0a8efc79-37b5-4eb5-96db-bdf3c134c979,LIST_TRANSACTIONS,hbciListTransactions,false -36372,0a8efc79-37b5-4eb5-96db-bdf3c134c979,AUTHORIZATION,,false -36373,0a8efc79-37b5-4eb5-96db-bdf3c134c979,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36374,0a8efc79-37b5-4eb5-96db-bdf3c134c979,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36375,0a8efc79-37b5-4eb5-96db-bdf3c134c979,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36370,ae6def30-d745-4933-83d1-e4dbca71e854,LIST_ACCOUNTS,hbciListAccounts,false +36371,ae6def30-d745-4933-83d1-e4dbca71e854,LIST_TRANSACTIONS,hbciListTransactions,false +36372,ae6def30-d745-4933-83d1-e4dbca71e854,AUTHORIZATION,,false +36373,ae6def30-d745-4933-83d1-e4dbca71e854,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36374,ae6def30-d745-4933-83d1-e4dbca71e854,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36375,ae6def30-d745-4933-83d1-e4dbca71e854,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36376,82fe06e4-1791-4b28-9f51-7ed17f14e0dd,LIST_ACCOUNTS,xs2aListAccounts,true -36377,82fe06e4-1791-4b28-9f51-7ed17f14e0dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36377,82fe06e4-1791-4b28-9f51-7ed17f14e0dd,LIST_TRANSACTIONS,xs2aListTransactions,true 36378,82fe06e4-1791-4b28-9f51-7ed17f14e0dd,AUTHORIZATION,,true 36379,82fe06e4-1791-4b28-9f51-7ed17f14e0dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36380,82fe06e4-1791-4b28-9f51-7ed17f14e0dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36381,82fe06e4-1791-4b28-9f51-7ed17f14e0dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36382,f4b2b4a2-b398-440c-b111-03d3ff8acbb9,LIST_ACCOUNTS,hbciListAccounts,false -36383,f4b2b4a2-b398-440c-b111-03d3ff8acbb9,LIST_TRANSACTIONS,hbciListTransactions,false -36384,f4b2b4a2-b398-440c-b111-03d3ff8acbb9,AUTHORIZATION,,false -36385,f4b2b4a2-b398-440c-b111-03d3ff8acbb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36386,f4b2b4a2-b398-440c-b111-03d3ff8acbb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36387,f4b2b4a2-b398-440c-b111-03d3ff8acbb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36382,6f2f8eca-6ff6-4b20-819f-0982bc146965,LIST_ACCOUNTS,hbciListAccounts,false +36383,6f2f8eca-6ff6-4b20-819f-0982bc146965,LIST_TRANSACTIONS,hbciListTransactions,false +36384,6f2f8eca-6ff6-4b20-819f-0982bc146965,AUTHORIZATION,,false +36385,6f2f8eca-6ff6-4b20-819f-0982bc146965,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36386,6f2f8eca-6ff6-4b20-819f-0982bc146965,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36387,6f2f8eca-6ff6-4b20-819f-0982bc146965,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36388,693098d1-b5a1-45bd-84d3-4bbba6cc5e63,LIST_ACCOUNTS,xs2aListAccounts,true -36389,693098d1-b5a1-45bd-84d3-4bbba6cc5e63,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36389,693098d1-b5a1-45bd-84d3-4bbba6cc5e63,LIST_TRANSACTIONS,xs2aListTransactions,true 36390,693098d1-b5a1-45bd-84d3-4bbba6cc5e63,AUTHORIZATION,,true 36391,693098d1-b5a1-45bd-84d3-4bbba6cc5e63,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36392,693098d1-b5a1-45bd-84d3-4bbba6cc5e63,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36393,693098d1-b5a1-45bd-84d3-4bbba6cc5e63,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36394,ce32d25e-1d34-4cd2-8a63-d9057898a4d6,LIST_ACCOUNTS,hbciListAccounts,false -36395,ce32d25e-1d34-4cd2-8a63-d9057898a4d6,LIST_TRANSACTIONS,hbciListTransactions,false -36396,ce32d25e-1d34-4cd2-8a63-d9057898a4d6,AUTHORIZATION,,false -36397,ce32d25e-1d34-4cd2-8a63-d9057898a4d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36398,ce32d25e-1d34-4cd2-8a63-d9057898a4d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36399,ce32d25e-1d34-4cd2-8a63-d9057898a4d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36394,d74ba0ea-709a-40ee-bf6f-835b90436e41,LIST_ACCOUNTS,hbciListAccounts,false +36395,d74ba0ea-709a-40ee-bf6f-835b90436e41,LIST_TRANSACTIONS,hbciListTransactions,false +36396,d74ba0ea-709a-40ee-bf6f-835b90436e41,AUTHORIZATION,,false +36397,d74ba0ea-709a-40ee-bf6f-835b90436e41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36398,d74ba0ea-709a-40ee-bf6f-835b90436e41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36399,d74ba0ea-709a-40ee-bf6f-835b90436e41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36400,1ab9e2f3-d817-4a0d-a352-34c8141283b8,LIST_ACCOUNTS,xs2aListAccounts,true -36401,1ab9e2f3-d817-4a0d-a352-34c8141283b8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36401,1ab9e2f3-d817-4a0d-a352-34c8141283b8,LIST_TRANSACTIONS,xs2aListTransactions,true 36402,1ab9e2f3-d817-4a0d-a352-34c8141283b8,AUTHORIZATION,,true 36403,1ab9e2f3-d817-4a0d-a352-34c8141283b8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36404,1ab9e2f3-d817-4a0d-a352-34c8141283b8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36405,1ab9e2f3-d817-4a0d-a352-34c8141283b8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36406,057bb26a-1380-48e6-88d5-0599d52ce79d,LIST_ACCOUNTS,hbciListAccounts,false -36407,057bb26a-1380-48e6-88d5-0599d52ce79d,LIST_TRANSACTIONS,hbciListTransactions,false -36408,057bb26a-1380-48e6-88d5-0599d52ce79d,AUTHORIZATION,,false -36409,057bb26a-1380-48e6-88d5-0599d52ce79d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36410,057bb26a-1380-48e6-88d5-0599d52ce79d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36411,057bb26a-1380-48e6-88d5-0599d52ce79d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36406,72638a65-f57e-4c49-ad9a-3409620291f3,LIST_ACCOUNTS,hbciListAccounts,false +36407,72638a65-f57e-4c49-ad9a-3409620291f3,LIST_TRANSACTIONS,hbciListTransactions,false +36408,72638a65-f57e-4c49-ad9a-3409620291f3,AUTHORIZATION,,false +36409,72638a65-f57e-4c49-ad9a-3409620291f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36410,72638a65-f57e-4c49-ad9a-3409620291f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36411,72638a65-f57e-4c49-ad9a-3409620291f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36412,8a620e9c-9daf-4984-964f-464108dcc0bc,LIST_ACCOUNTS,xs2aListAccounts,true -36413,8a620e9c-9daf-4984-964f-464108dcc0bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36413,8a620e9c-9daf-4984-964f-464108dcc0bc,LIST_TRANSACTIONS,xs2aListTransactions,true 36414,8a620e9c-9daf-4984-964f-464108dcc0bc,AUTHORIZATION,,true 36415,8a620e9c-9daf-4984-964f-464108dcc0bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36416,8a620e9c-9daf-4984-964f-464108dcc0bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36417,8a620e9c-9daf-4984-964f-464108dcc0bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36418,ba918708-6db8-4943-969a-0d243f22c830,LIST_ACCOUNTS,hbciListAccounts,false -36419,ba918708-6db8-4943-969a-0d243f22c830,LIST_TRANSACTIONS,hbciListTransactions,false -36420,ba918708-6db8-4943-969a-0d243f22c830,AUTHORIZATION,,false -36421,ba918708-6db8-4943-969a-0d243f22c830,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36422,ba918708-6db8-4943-969a-0d243f22c830,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36423,ba918708-6db8-4943-969a-0d243f22c830,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36418,ac56f83f-fe47-45df-9108-5c07b9e1f507,LIST_ACCOUNTS,hbciListAccounts,false +36419,ac56f83f-fe47-45df-9108-5c07b9e1f507,LIST_TRANSACTIONS,hbciListTransactions,false +36420,ac56f83f-fe47-45df-9108-5c07b9e1f507,AUTHORIZATION,,false +36421,ac56f83f-fe47-45df-9108-5c07b9e1f507,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36422,ac56f83f-fe47-45df-9108-5c07b9e1f507,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36423,ac56f83f-fe47-45df-9108-5c07b9e1f507,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36424,6eb61b5e-5374-4985-bac6-dd0aaa368c64,LIST_ACCOUNTS,xs2aListAccounts,true -36425,6eb61b5e-5374-4985-bac6-dd0aaa368c64,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36425,6eb61b5e-5374-4985-bac6-dd0aaa368c64,LIST_TRANSACTIONS,xs2aListTransactions,true 36426,6eb61b5e-5374-4985-bac6-dd0aaa368c64,AUTHORIZATION,,true 36427,6eb61b5e-5374-4985-bac6-dd0aaa368c64,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36428,6eb61b5e-5374-4985-bac6-dd0aaa368c64,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36429,6eb61b5e-5374-4985-bac6-dd0aaa368c64,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36430,034d4248-ef5e-4815-a845-fbf7237e871e,LIST_ACCOUNTS,hbciListAccounts,false -36431,034d4248-ef5e-4815-a845-fbf7237e871e,LIST_TRANSACTIONS,hbciListTransactions,false -36432,034d4248-ef5e-4815-a845-fbf7237e871e,AUTHORIZATION,,false -36433,034d4248-ef5e-4815-a845-fbf7237e871e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36434,034d4248-ef5e-4815-a845-fbf7237e871e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36435,034d4248-ef5e-4815-a845-fbf7237e871e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36430,b458f28a-4bc4-45d4-a1db-f7ca4c484c3c,LIST_ACCOUNTS,hbciListAccounts,false +36431,b458f28a-4bc4-45d4-a1db-f7ca4c484c3c,LIST_TRANSACTIONS,hbciListTransactions,false +36432,b458f28a-4bc4-45d4-a1db-f7ca4c484c3c,AUTHORIZATION,,false +36433,b458f28a-4bc4-45d4-a1db-f7ca4c484c3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36434,b458f28a-4bc4-45d4-a1db-f7ca4c484c3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36435,b458f28a-4bc4-45d4-a1db-f7ca4c484c3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36436,73be770c-e106-4272-9fec-214fdcc3d9f7,LIST_ACCOUNTS,xs2aListAccounts,true -36437,73be770c-e106-4272-9fec-214fdcc3d9f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36437,73be770c-e106-4272-9fec-214fdcc3d9f7,LIST_TRANSACTIONS,xs2aListTransactions,true 36438,73be770c-e106-4272-9fec-214fdcc3d9f7,AUTHORIZATION,,true 36439,73be770c-e106-4272-9fec-214fdcc3d9f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36440,73be770c-e106-4272-9fec-214fdcc3d9f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36441,73be770c-e106-4272-9fec-214fdcc3d9f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36442,9352a221-4dda-4903-920f-cb7922fc2531,LIST_ACCOUNTS,hbciListAccounts,false -36443,9352a221-4dda-4903-920f-cb7922fc2531,LIST_TRANSACTIONS,hbciListTransactions,false -36444,9352a221-4dda-4903-920f-cb7922fc2531,AUTHORIZATION,,false -36445,9352a221-4dda-4903-920f-cb7922fc2531,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36446,9352a221-4dda-4903-920f-cb7922fc2531,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36447,9352a221-4dda-4903-920f-cb7922fc2531,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36442,f01ca125-55e9-47d7-8440-ef49b93f1c44,LIST_ACCOUNTS,hbciListAccounts,false +36443,f01ca125-55e9-47d7-8440-ef49b93f1c44,LIST_TRANSACTIONS,hbciListTransactions,false +36444,f01ca125-55e9-47d7-8440-ef49b93f1c44,AUTHORIZATION,,false +36445,f01ca125-55e9-47d7-8440-ef49b93f1c44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36446,f01ca125-55e9-47d7-8440-ef49b93f1c44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36447,f01ca125-55e9-47d7-8440-ef49b93f1c44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36448,e03d76ab-089d-4234-bc77-88488f8c2e78,LIST_ACCOUNTS,xs2aListAccounts,true -36449,e03d76ab-089d-4234-bc77-88488f8c2e78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36449,e03d76ab-089d-4234-bc77-88488f8c2e78,LIST_TRANSACTIONS,xs2aListTransactions,true 36450,e03d76ab-089d-4234-bc77-88488f8c2e78,AUTHORIZATION,,true 36451,e03d76ab-089d-4234-bc77-88488f8c2e78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36452,e03d76ab-089d-4234-bc77-88488f8c2e78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36453,e03d76ab-089d-4234-bc77-88488f8c2e78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36454,8023bebb-5ba3-4925-a188-e53d663e57c1,LIST_ACCOUNTS,hbciListAccounts,false -36455,8023bebb-5ba3-4925-a188-e53d663e57c1,LIST_TRANSACTIONS,hbciListTransactions,false -36456,8023bebb-5ba3-4925-a188-e53d663e57c1,AUTHORIZATION,,false -36457,8023bebb-5ba3-4925-a188-e53d663e57c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36458,8023bebb-5ba3-4925-a188-e53d663e57c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36459,8023bebb-5ba3-4925-a188-e53d663e57c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36454,4a50b533-23cf-4460-8260-0f19cc4c7e5e,LIST_ACCOUNTS,hbciListAccounts,false +36455,4a50b533-23cf-4460-8260-0f19cc4c7e5e,LIST_TRANSACTIONS,hbciListTransactions,false +36456,4a50b533-23cf-4460-8260-0f19cc4c7e5e,AUTHORIZATION,,false +36457,4a50b533-23cf-4460-8260-0f19cc4c7e5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36458,4a50b533-23cf-4460-8260-0f19cc4c7e5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36459,4a50b533-23cf-4460-8260-0f19cc4c7e5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36460,fbcdfceb-0861-4836-8c87-e8a22a3b119f,LIST_ACCOUNTS,xs2aListAccounts,true -36461,fbcdfceb-0861-4836-8c87-e8a22a3b119f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36461,fbcdfceb-0861-4836-8c87-e8a22a3b119f,LIST_TRANSACTIONS,xs2aListTransactions,true 36462,fbcdfceb-0861-4836-8c87-e8a22a3b119f,AUTHORIZATION,,true 36463,fbcdfceb-0861-4836-8c87-e8a22a3b119f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36464,fbcdfceb-0861-4836-8c87-e8a22a3b119f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36465,fbcdfceb-0861-4836-8c87-e8a22a3b119f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36466,2c343eb4-345e-4d59-814e-c23f300e72f6,LIST_ACCOUNTS,hbciListAccounts,false -36467,2c343eb4-345e-4d59-814e-c23f300e72f6,LIST_TRANSACTIONS,hbciListTransactions,false -36468,2c343eb4-345e-4d59-814e-c23f300e72f6,AUTHORIZATION,,false -36469,2c343eb4-345e-4d59-814e-c23f300e72f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36470,2c343eb4-345e-4d59-814e-c23f300e72f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36471,2c343eb4-345e-4d59-814e-c23f300e72f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36466,3f90fb41-fe52-4491-803a-00971108172f,LIST_ACCOUNTS,hbciListAccounts,false +36467,3f90fb41-fe52-4491-803a-00971108172f,LIST_TRANSACTIONS,hbciListTransactions,false +36468,3f90fb41-fe52-4491-803a-00971108172f,AUTHORIZATION,,false +36469,3f90fb41-fe52-4491-803a-00971108172f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36470,3f90fb41-fe52-4491-803a-00971108172f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36471,3f90fb41-fe52-4491-803a-00971108172f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36472,f7cc504a-5723-4eac-bf77-8a7f44d9c08c,LIST_ACCOUNTS,xs2aListAccounts,true -36473,f7cc504a-5723-4eac-bf77-8a7f44d9c08c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36473,f7cc504a-5723-4eac-bf77-8a7f44d9c08c,LIST_TRANSACTIONS,xs2aListTransactions,true 36474,f7cc504a-5723-4eac-bf77-8a7f44d9c08c,AUTHORIZATION,,true 36475,f7cc504a-5723-4eac-bf77-8a7f44d9c08c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36476,f7cc504a-5723-4eac-bf77-8a7f44d9c08c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36477,f7cc504a-5723-4eac-bf77-8a7f44d9c08c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36478,3f66e7db-bdb1-46ef-81bb-e051fc4f0cb9,LIST_ACCOUNTS,hbciListAccounts,false -36479,3f66e7db-bdb1-46ef-81bb-e051fc4f0cb9,LIST_TRANSACTIONS,hbciListTransactions,false -36480,3f66e7db-bdb1-46ef-81bb-e051fc4f0cb9,AUTHORIZATION,,false -36481,3f66e7db-bdb1-46ef-81bb-e051fc4f0cb9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36482,3f66e7db-bdb1-46ef-81bb-e051fc4f0cb9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36483,3f66e7db-bdb1-46ef-81bb-e051fc4f0cb9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36478,0c77fe0b-544a-4a04-a8aa-124a31af0686,LIST_ACCOUNTS,hbciListAccounts,false +36479,0c77fe0b-544a-4a04-a8aa-124a31af0686,LIST_TRANSACTIONS,hbciListTransactions,false +36480,0c77fe0b-544a-4a04-a8aa-124a31af0686,AUTHORIZATION,,false +36481,0c77fe0b-544a-4a04-a8aa-124a31af0686,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36482,0c77fe0b-544a-4a04-a8aa-124a31af0686,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36483,0c77fe0b-544a-4a04-a8aa-124a31af0686,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36484,0b1703e3-7e09-4627-a0cc-0ffb1393ca2c,LIST_ACCOUNTS,xs2aListAccounts,true -36485,0b1703e3-7e09-4627-a0cc-0ffb1393ca2c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36485,0b1703e3-7e09-4627-a0cc-0ffb1393ca2c,LIST_TRANSACTIONS,xs2aListTransactions,true 36486,0b1703e3-7e09-4627-a0cc-0ffb1393ca2c,AUTHORIZATION,,true 36487,0b1703e3-7e09-4627-a0cc-0ffb1393ca2c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36488,0b1703e3-7e09-4627-a0cc-0ffb1393ca2c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36489,0b1703e3-7e09-4627-a0cc-0ffb1393ca2c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36490,0ba51481-c468-408b-88b2-b825189e29df,LIST_ACCOUNTS,hbciListAccounts,false -36491,0ba51481-c468-408b-88b2-b825189e29df,LIST_TRANSACTIONS,hbciListTransactions,false -36492,0ba51481-c468-408b-88b2-b825189e29df,AUTHORIZATION,,false -36493,0ba51481-c468-408b-88b2-b825189e29df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36494,0ba51481-c468-408b-88b2-b825189e29df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36495,0ba51481-c468-408b-88b2-b825189e29df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36490,f3e32b91-88ac-4cda-b19d-d78cc7a21525,LIST_ACCOUNTS,hbciListAccounts,false +36491,f3e32b91-88ac-4cda-b19d-d78cc7a21525,LIST_TRANSACTIONS,hbciListTransactions,false +36492,f3e32b91-88ac-4cda-b19d-d78cc7a21525,AUTHORIZATION,,false +36493,f3e32b91-88ac-4cda-b19d-d78cc7a21525,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36494,f3e32b91-88ac-4cda-b19d-d78cc7a21525,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36495,f3e32b91-88ac-4cda-b19d-d78cc7a21525,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36496,3be353f0-6b1c-4aad-8126-73b13a25118e,LIST_ACCOUNTS,xs2aListAccounts,true -36497,3be353f0-6b1c-4aad-8126-73b13a25118e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36497,3be353f0-6b1c-4aad-8126-73b13a25118e,LIST_TRANSACTIONS,xs2aListTransactions,true 36498,3be353f0-6b1c-4aad-8126-73b13a25118e,AUTHORIZATION,,true 36499,3be353f0-6b1c-4aad-8126-73b13a25118e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36500,3be353f0-6b1c-4aad-8126-73b13a25118e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36501,3be353f0-6b1c-4aad-8126-73b13a25118e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36502,a6a2b7f3-b810-4e5a-ad5f-147fbc44e170,LIST_ACCOUNTS,hbciListAccounts,false -36503,a6a2b7f3-b810-4e5a-ad5f-147fbc44e170,LIST_TRANSACTIONS,hbciListTransactions,false -36504,a6a2b7f3-b810-4e5a-ad5f-147fbc44e170,AUTHORIZATION,,false -36505,a6a2b7f3-b810-4e5a-ad5f-147fbc44e170,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36506,a6a2b7f3-b810-4e5a-ad5f-147fbc44e170,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36507,a6a2b7f3-b810-4e5a-ad5f-147fbc44e170,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36502,3913b6e4-18fe-4826-a5e0-48bc287176bc,LIST_ACCOUNTS,hbciListAccounts,false +36503,3913b6e4-18fe-4826-a5e0-48bc287176bc,LIST_TRANSACTIONS,hbciListTransactions,false +36504,3913b6e4-18fe-4826-a5e0-48bc287176bc,AUTHORIZATION,,false +36505,3913b6e4-18fe-4826-a5e0-48bc287176bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36506,3913b6e4-18fe-4826-a5e0-48bc287176bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36507,3913b6e4-18fe-4826-a5e0-48bc287176bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36508,bef6ee21-b014-4f05-8899-8e9c658f15fe,LIST_ACCOUNTS,xs2aListAccounts,true -36509,bef6ee21-b014-4f05-8899-8e9c658f15fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36509,bef6ee21-b014-4f05-8899-8e9c658f15fe,LIST_TRANSACTIONS,xs2aListTransactions,true 36510,bef6ee21-b014-4f05-8899-8e9c658f15fe,AUTHORIZATION,,true 36511,bef6ee21-b014-4f05-8899-8e9c658f15fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36512,bef6ee21-b014-4f05-8899-8e9c658f15fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36513,bef6ee21-b014-4f05-8899-8e9c658f15fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36514,4150b143-9c05-42ee-bc83-006504373a6e,LIST_ACCOUNTS,hbciListAccounts,false -36515,4150b143-9c05-42ee-bc83-006504373a6e,LIST_TRANSACTIONS,hbciListTransactions,false -36516,4150b143-9c05-42ee-bc83-006504373a6e,AUTHORIZATION,,false -36517,4150b143-9c05-42ee-bc83-006504373a6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36518,4150b143-9c05-42ee-bc83-006504373a6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36519,4150b143-9c05-42ee-bc83-006504373a6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36514,5fa7823d-0738-4d7c-a16f-6c5f155acb42,LIST_ACCOUNTS,hbciListAccounts,false +36515,5fa7823d-0738-4d7c-a16f-6c5f155acb42,LIST_TRANSACTIONS,hbciListTransactions,false +36516,5fa7823d-0738-4d7c-a16f-6c5f155acb42,AUTHORIZATION,,false +36517,5fa7823d-0738-4d7c-a16f-6c5f155acb42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36518,5fa7823d-0738-4d7c-a16f-6c5f155acb42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36519,5fa7823d-0738-4d7c-a16f-6c5f155acb42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36520,265bbfdf-59c4-4577-b6fa-65e268b815a0,LIST_ACCOUNTS,xs2aListAccounts,true -36521,265bbfdf-59c4-4577-b6fa-65e268b815a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36521,265bbfdf-59c4-4577-b6fa-65e268b815a0,LIST_TRANSACTIONS,xs2aListTransactions,true 36522,265bbfdf-59c4-4577-b6fa-65e268b815a0,AUTHORIZATION,,true 36523,265bbfdf-59c4-4577-b6fa-65e268b815a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36524,265bbfdf-59c4-4577-b6fa-65e268b815a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36525,265bbfdf-59c4-4577-b6fa-65e268b815a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36526,9d90b984-4086-4b44-b47d-90a1924dca60,LIST_ACCOUNTS,hbciListAccounts,false -36527,9d90b984-4086-4b44-b47d-90a1924dca60,LIST_TRANSACTIONS,hbciListTransactions,false -36528,9d90b984-4086-4b44-b47d-90a1924dca60,AUTHORIZATION,,false -36529,9d90b984-4086-4b44-b47d-90a1924dca60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36530,9d90b984-4086-4b44-b47d-90a1924dca60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36531,9d90b984-4086-4b44-b47d-90a1924dca60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36526,253b3a8c-da3e-49db-bcb8-1e03cdaf1896,LIST_ACCOUNTS,hbciListAccounts,false +36527,253b3a8c-da3e-49db-bcb8-1e03cdaf1896,LIST_TRANSACTIONS,hbciListTransactions,false +36528,253b3a8c-da3e-49db-bcb8-1e03cdaf1896,AUTHORIZATION,,false +36529,253b3a8c-da3e-49db-bcb8-1e03cdaf1896,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36530,253b3a8c-da3e-49db-bcb8-1e03cdaf1896,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36531,253b3a8c-da3e-49db-bcb8-1e03cdaf1896,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36532,4daf3de6-9956-48cf-ae15-076eab03b8fe,LIST_ACCOUNTS,xs2aListAccounts,true -36533,4daf3de6-9956-48cf-ae15-076eab03b8fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36533,4daf3de6-9956-48cf-ae15-076eab03b8fe,LIST_TRANSACTIONS,xs2aListTransactions,true 36534,4daf3de6-9956-48cf-ae15-076eab03b8fe,AUTHORIZATION,,true 36535,4daf3de6-9956-48cf-ae15-076eab03b8fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36536,4daf3de6-9956-48cf-ae15-076eab03b8fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36537,4daf3de6-9956-48cf-ae15-076eab03b8fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36538,e34fc3eb-2ef2-464f-8af9-d2f50adb60af,LIST_ACCOUNTS,hbciListAccounts,false -36539,e34fc3eb-2ef2-464f-8af9-d2f50adb60af,LIST_TRANSACTIONS,hbciListTransactions,false -36540,e34fc3eb-2ef2-464f-8af9-d2f50adb60af,AUTHORIZATION,,false -36541,e34fc3eb-2ef2-464f-8af9-d2f50adb60af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36542,e34fc3eb-2ef2-464f-8af9-d2f50adb60af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36543,e34fc3eb-2ef2-464f-8af9-d2f50adb60af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36538,0091011b-34c4-41e8-a5ff-fdfa9aa9d856,LIST_ACCOUNTS,hbciListAccounts,false +36539,0091011b-34c4-41e8-a5ff-fdfa9aa9d856,LIST_TRANSACTIONS,hbciListTransactions,false +36540,0091011b-34c4-41e8-a5ff-fdfa9aa9d856,AUTHORIZATION,,false +36541,0091011b-34c4-41e8-a5ff-fdfa9aa9d856,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36542,0091011b-34c4-41e8-a5ff-fdfa9aa9d856,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36543,0091011b-34c4-41e8-a5ff-fdfa9aa9d856,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36544,45a51d9a-30f5-4de7-a14e-3026179b8358,LIST_ACCOUNTS,xs2aListAccounts,true -36545,45a51d9a-30f5-4de7-a14e-3026179b8358,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36545,45a51d9a-30f5-4de7-a14e-3026179b8358,LIST_TRANSACTIONS,xs2aListTransactions,true 36546,45a51d9a-30f5-4de7-a14e-3026179b8358,AUTHORIZATION,,true 36547,45a51d9a-30f5-4de7-a14e-3026179b8358,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36548,45a51d9a-30f5-4de7-a14e-3026179b8358,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36549,45a51d9a-30f5-4de7-a14e-3026179b8358,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36550,eaec714f-bd9e-4fb7-97b9-34a118b49c56,LIST_ACCOUNTS,hbciListAccounts,false -36551,eaec714f-bd9e-4fb7-97b9-34a118b49c56,LIST_TRANSACTIONS,hbciListTransactions,false -36552,eaec714f-bd9e-4fb7-97b9-34a118b49c56,AUTHORIZATION,,false -36553,eaec714f-bd9e-4fb7-97b9-34a118b49c56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36554,eaec714f-bd9e-4fb7-97b9-34a118b49c56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36555,eaec714f-bd9e-4fb7-97b9-34a118b49c56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36550,7159c9e2-4677-4590-b424-4298f9e0aa05,LIST_ACCOUNTS,hbciListAccounts,false +36551,7159c9e2-4677-4590-b424-4298f9e0aa05,LIST_TRANSACTIONS,hbciListTransactions,false +36552,7159c9e2-4677-4590-b424-4298f9e0aa05,AUTHORIZATION,,false +36553,7159c9e2-4677-4590-b424-4298f9e0aa05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36554,7159c9e2-4677-4590-b424-4298f9e0aa05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36555,7159c9e2-4677-4590-b424-4298f9e0aa05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36556,22aa42be-c41a-4616-a2e7-6682d96ae64f,LIST_ACCOUNTS,xs2aListAccounts,true -36557,22aa42be-c41a-4616-a2e7-6682d96ae64f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36557,22aa42be-c41a-4616-a2e7-6682d96ae64f,LIST_TRANSACTIONS,xs2aListTransactions,true 36558,22aa42be-c41a-4616-a2e7-6682d96ae64f,AUTHORIZATION,,true 36559,22aa42be-c41a-4616-a2e7-6682d96ae64f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36560,22aa42be-c41a-4616-a2e7-6682d96ae64f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36561,22aa42be-c41a-4616-a2e7-6682d96ae64f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36562,60e9f76d-aa93-4eca-8ed3-88de472b581a,LIST_ACCOUNTS,hbciListAccounts,false -36563,60e9f76d-aa93-4eca-8ed3-88de472b581a,LIST_TRANSACTIONS,hbciListTransactions,false -36564,60e9f76d-aa93-4eca-8ed3-88de472b581a,AUTHORIZATION,,false -36565,60e9f76d-aa93-4eca-8ed3-88de472b581a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36566,60e9f76d-aa93-4eca-8ed3-88de472b581a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36567,60e9f76d-aa93-4eca-8ed3-88de472b581a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36562,232effcb-adc1-4445-a4b5-2fb388fc1c23,LIST_ACCOUNTS,hbciListAccounts,false +36563,232effcb-adc1-4445-a4b5-2fb388fc1c23,LIST_TRANSACTIONS,hbciListTransactions,false +36564,232effcb-adc1-4445-a4b5-2fb388fc1c23,AUTHORIZATION,,false +36565,232effcb-adc1-4445-a4b5-2fb388fc1c23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36566,232effcb-adc1-4445-a4b5-2fb388fc1c23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36567,232effcb-adc1-4445-a4b5-2fb388fc1c23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36568,f239b949-9115-4be5-a025-47694ce0c344,LIST_ACCOUNTS,xs2aListAccounts,true -36569,f239b949-9115-4be5-a025-47694ce0c344,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36569,f239b949-9115-4be5-a025-47694ce0c344,LIST_TRANSACTIONS,xs2aListTransactions,true 36570,f239b949-9115-4be5-a025-47694ce0c344,AUTHORIZATION,,true 36571,f239b949-9115-4be5-a025-47694ce0c344,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36572,f239b949-9115-4be5-a025-47694ce0c344,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36573,f239b949-9115-4be5-a025-47694ce0c344,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36574,6f23ef71-d67e-4853-bfeb-734e98fb7edf,LIST_ACCOUNTS,hbciListAccounts,false -36575,6f23ef71-d67e-4853-bfeb-734e98fb7edf,LIST_TRANSACTIONS,hbciListTransactions,false -36576,6f23ef71-d67e-4853-bfeb-734e98fb7edf,AUTHORIZATION,,false -36577,6f23ef71-d67e-4853-bfeb-734e98fb7edf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36578,6f23ef71-d67e-4853-bfeb-734e98fb7edf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36579,6f23ef71-d67e-4853-bfeb-734e98fb7edf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36574,2646c42d-0e73-406b-b593-b2aa1ae4adfe,LIST_ACCOUNTS,hbciListAccounts,false +36575,2646c42d-0e73-406b-b593-b2aa1ae4adfe,LIST_TRANSACTIONS,hbciListTransactions,false +36576,2646c42d-0e73-406b-b593-b2aa1ae4adfe,AUTHORIZATION,,false +36577,2646c42d-0e73-406b-b593-b2aa1ae4adfe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36578,2646c42d-0e73-406b-b593-b2aa1ae4adfe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36579,2646c42d-0e73-406b-b593-b2aa1ae4adfe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36580,65f6fe27-29ac-4f87-8140-46096d40f72c,LIST_ACCOUNTS,xs2aListAccounts,true -36581,65f6fe27-29ac-4f87-8140-46096d40f72c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36581,65f6fe27-29ac-4f87-8140-46096d40f72c,LIST_TRANSACTIONS,xs2aListTransactions,true 36582,65f6fe27-29ac-4f87-8140-46096d40f72c,AUTHORIZATION,,true 36583,65f6fe27-29ac-4f87-8140-46096d40f72c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36584,65f6fe27-29ac-4f87-8140-46096d40f72c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36585,65f6fe27-29ac-4f87-8140-46096d40f72c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36586,d235b575-e37b-4365-9101-73de5c943164,LIST_ACCOUNTS,hbciListAccounts,false -36587,d235b575-e37b-4365-9101-73de5c943164,LIST_TRANSACTIONS,hbciListTransactions,false -36588,d235b575-e37b-4365-9101-73de5c943164,AUTHORIZATION,,false -36589,d235b575-e37b-4365-9101-73de5c943164,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36590,d235b575-e37b-4365-9101-73de5c943164,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36591,d235b575-e37b-4365-9101-73de5c943164,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36586,4639f749-0bcb-467b-847e-b03c0c5b90a1,LIST_ACCOUNTS,hbciListAccounts,false +36587,4639f749-0bcb-467b-847e-b03c0c5b90a1,LIST_TRANSACTIONS,hbciListTransactions,false +36588,4639f749-0bcb-467b-847e-b03c0c5b90a1,AUTHORIZATION,,false +36589,4639f749-0bcb-467b-847e-b03c0c5b90a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36590,4639f749-0bcb-467b-847e-b03c0c5b90a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36591,4639f749-0bcb-467b-847e-b03c0c5b90a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36592,39a35b0f-184d-48d0-aed9-7d65036f448b,LIST_ACCOUNTS,xs2aListAccounts,true -36593,39a35b0f-184d-48d0-aed9-7d65036f448b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36593,39a35b0f-184d-48d0-aed9-7d65036f448b,LIST_TRANSACTIONS,xs2aListTransactions,true 36594,39a35b0f-184d-48d0-aed9-7d65036f448b,AUTHORIZATION,,true 36595,39a35b0f-184d-48d0-aed9-7d65036f448b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36596,39a35b0f-184d-48d0-aed9-7d65036f448b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36597,39a35b0f-184d-48d0-aed9-7d65036f448b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36598,8ed9a238-2cb5-4e9a-9201-81473aaf4854,LIST_ACCOUNTS,hbciListAccounts,false -36599,8ed9a238-2cb5-4e9a-9201-81473aaf4854,LIST_TRANSACTIONS,hbciListTransactions,false -36600,8ed9a238-2cb5-4e9a-9201-81473aaf4854,AUTHORIZATION,,false -36601,8ed9a238-2cb5-4e9a-9201-81473aaf4854,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36602,8ed9a238-2cb5-4e9a-9201-81473aaf4854,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36603,8ed9a238-2cb5-4e9a-9201-81473aaf4854,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36598,8e8c88aa-d487-41cd-bc85-e04fdc264a7c,LIST_ACCOUNTS,hbciListAccounts,false +36599,8e8c88aa-d487-41cd-bc85-e04fdc264a7c,LIST_TRANSACTIONS,hbciListTransactions,false +36600,8e8c88aa-d487-41cd-bc85-e04fdc264a7c,AUTHORIZATION,,false +36601,8e8c88aa-d487-41cd-bc85-e04fdc264a7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36602,8e8c88aa-d487-41cd-bc85-e04fdc264a7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36603,8e8c88aa-d487-41cd-bc85-e04fdc264a7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36604,fb57bac5-a15d-465e-b779-f5da81b58e92,LIST_ACCOUNTS,xs2aListAccounts,true -36605,fb57bac5-a15d-465e-b779-f5da81b58e92,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36605,fb57bac5-a15d-465e-b779-f5da81b58e92,LIST_TRANSACTIONS,xs2aListTransactions,true 36606,fb57bac5-a15d-465e-b779-f5da81b58e92,AUTHORIZATION,,true 36607,fb57bac5-a15d-465e-b779-f5da81b58e92,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36608,fb57bac5-a15d-465e-b779-f5da81b58e92,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36609,fb57bac5-a15d-465e-b779-f5da81b58e92,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36610,03b1f3e5-ac35-4d57-a8a1-3b77ccc96e57,LIST_ACCOUNTS,hbciListAccounts,false -36611,03b1f3e5-ac35-4d57-a8a1-3b77ccc96e57,LIST_TRANSACTIONS,hbciListTransactions,false -36612,03b1f3e5-ac35-4d57-a8a1-3b77ccc96e57,AUTHORIZATION,,false -36613,03b1f3e5-ac35-4d57-a8a1-3b77ccc96e57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36614,03b1f3e5-ac35-4d57-a8a1-3b77ccc96e57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36615,03b1f3e5-ac35-4d57-a8a1-3b77ccc96e57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36610,df60e195-9a77-43fb-989b-726fcd7a6cd5,LIST_ACCOUNTS,hbciListAccounts,false +36611,df60e195-9a77-43fb-989b-726fcd7a6cd5,LIST_TRANSACTIONS,hbciListTransactions,false +36612,df60e195-9a77-43fb-989b-726fcd7a6cd5,AUTHORIZATION,,false +36613,df60e195-9a77-43fb-989b-726fcd7a6cd5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36614,df60e195-9a77-43fb-989b-726fcd7a6cd5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36615,df60e195-9a77-43fb-989b-726fcd7a6cd5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36616,72a99ca3-0979-4ec3-bce3-24452a7f60ca,LIST_ACCOUNTS,xs2aListAccounts,true -36617,72a99ca3-0979-4ec3-bce3-24452a7f60ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36617,72a99ca3-0979-4ec3-bce3-24452a7f60ca,LIST_TRANSACTIONS,xs2aListTransactions,true 36618,72a99ca3-0979-4ec3-bce3-24452a7f60ca,AUTHORIZATION,,true 36619,72a99ca3-0979-4ec3-bce3-24452a7f60ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36620,72a99ca3-0979-4ec3-bce3-24452a7f60ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36621,72a99ca3-0979-4ec3-bce3-24452a7f60ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36622,0476e7c7-3dcd-4fb5-ae48-673922984756,LIST_ACCOUNTS,hbciListAccounts,false -36623,0476e7c7-3dcd-4fb5-ae48-673922984756,LIST_TRANSACTIONS,hbciListTransactions,false -36624,0476e7c7-3dcd-4fb5-ae48-673922984756,AUTHORIZATION,,false -36625,0476e7c7-3dcd-4fb5-ae48-673922984756,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36626,0476e7c7-3dcd-4fb5-ae48-673922984756,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36627,0476e7c7-3dcd-4fb5-ae48-673922984756,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36622,eb7dd115-c4df-4f7f-90cb-6d99cbb17e3e,LIST_ACCOUNTS,hbciListAccounts,false +36623,eb7dd115-c4df-4f7f-90cb-6d99cbb17e3e,LIST_TRANSACTIONS,hbciListTransactions,false +36624,eb7dd115-c4df-4f7f-90cb-6d99cbb17e3e,AUTHORIZATION,,false +36625,eb7dd115-c4df-4f7f-90cb-6d99cbb17e3e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36626,eb7dd115-c4df-4f7f-90cb-6d99cbb17e3e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36627,eb7dd115-c4df-4f7f-90cb-6d99cbb17e3e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36628,5bd47d06-974b-4a76-887c-0fe60930c331,LIST_ACCOUNTS,xs2aListAccounts,true -36629,5bd47d06-974b-4a76-887c-0fe60930c331,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36629,5bd47d06-974b-4a76-887c-0fe60930c331,LIST_TRANSACTIONS,xs2aListTransactions,true 36630,5bd47d06-974b-4a76-887c-0fe60930c331,AUTHORIZATION,,true 36631,5bd47d06-974b-4a76-887c-0fe60930c331,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36632,5bd47d06-974b-4a76-887c-0fe60930c331,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36633,5bd47d06-974b-4a76-887c-0fe60930c331,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36634,2a312088-b0b0-430f-aa38-0d6b89abac29,LIST_ACCOUNTS,hbciListAccounts,false -36635,2a312088-b0b0-430f-aa38-0d6b89abac29,LIST_TRANSACTIONS,hbciListTransactions,false -36636,2a312088-b0b0-430f-aa38-0d6b89abac29,AUTHORIZATION,,false -36637,2a312088-b0b0-430f-aa38-0d6b89abac29,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36638,2a312088-b0b0-430f-aa38-0d6b89abac29,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36639,2a312088-b0b0-430f-aa38-0d6b89abac29,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36634,b2aaf312-7a1c-44e7-b297-835178095901,LIST_ACCOUNTS,hbciListAccounts,false +36635,b2aaf312-7a1c-44e7-b297-835178095901,LIST_TRANSACTIONS,hbciListTransactions,false +36636,b2aaf312-7a1c-44e7-b297-835178095901,AUTHORIZATION,,false +36637,b2aaf312-7a1c-44e7-b297-835178095901,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36638,b2aaf312-7a1c-44e7-b297-835178095901,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36639,b2aaf312-7a1c-44e7-b297-835178095901,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36640,00082aaa-7d75-4984-ad27-aea3ebc304ca,LIST_ACCOUNTS,xs2aListAccounts,true -36641,00082aaa-7d75-4984-ad27-aea3ebc304ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36641,00082aaa-7d75-4984-ad27-aea3ebc304ca,LIST_TRANSACTIONS,xs2aListTransactions,true 36642,00082aaa-7d75-4984-ad27-aea3ebc304ca,AUTHORIZATION,,true 36643,00082aaa-7d75-4984-ad27-aea3ebc304ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36644,00082aaa-7d75-4984-ad27-aea3ebc304ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36645,00082aaa-7d75-4984-ad27-aea3ebc304ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36646,74c09189-e5f2-44d3-b932-e46295b916cf,LIST_ACCOUNTS,hbciListAccounts,false -36647,74c09189-e5f2-44d3-b932-e46295b916cf,LIST_TRANSACTIONS,hbciListTransactions,false -36648,74c09189-e5f2-44d3-b932-e46295b916cf,AUTHORIZATION,,false -36649,74c09189-e5f2-44d3-b932-e46295b916cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36650,74c09189-e5f2-44d3-b932-e46295b916cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36651,74c09189-e5f2-44d3-b932-e46295b916cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36646,4157866c-4742-4690-a7d8-fc834088188c,LIST_ACCOUNTS,hbciListAccounts,false +36647,4157866c-4742-4690-a7d8-fc834088188c,LIST_TRANSACTIONS,hbciListTransactions,false +36648,4157866c-4742-4690-a7d8-fc834088188c,AUTHORIZATION,,false +36649,4157866c-4742-4690-a7d8-fc834088188c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36650,4157866c-4742-4690-a7d8-fc834088188c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36651,4157866c-4742-4690-a7d8-fc834088188c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36652,95da0d59-533c-4056-984b-ef4b7d176d67,LIST_ACCOUNTS,xs2aListAccounts,true -36653,95da0d59-533c-4056-984b-ef4b7d176d67,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36653,95da0d59-533c-4056-984b-ef4b7d176d67,LIST_TRANSACTIONS,xs2aListTransactions,true 36654,95da0d59-533c-4056-984b-ef4b7d176d67,AUTHORIZATION,,true 36655,95da0d59-533c-4056-984b-ef4b7d176d67,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36656,95da0d59-533c-4056-984b-ef4b7d176d67,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36657,95da0d59-533c-4056-984b-ef4b7d176d67,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36658,e1ff1fbb-9e53-4982-b1e2-58a3cec02ea2,LIST_ACCOUNTS,hbciListAccounts,false -36659,e1ff1fbb-9e53-4982-b1e2-58a3cec02ea2,LIST_TRANSACTIONS,hbciListTransactions,false -36660,e1ff1fbb-9e53-4982-b1e2-58a3cec02ea2,AUTHORIZATION,,false -36661,e1ff1fbb-9e53-4982-b1e2-58a3cec02ea2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36662,e1ff1fbb-9e53-4982-b1e2-58a3cec02ea2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36663,e1ff1fbb-9e53-4982-b1e2-58a3cec02ea2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36658,8ccc6f4c-4285-4701-90af-f967de8cffd2,LIST_ACCOUNTS,hbciListAccounts,false +36659,8ccc6f4c-4285-4701-90af-f967de8cffd2,LIST_TRANSACTIONS,hbciListTransactions,false +36660,8ccc6f4c-4285-4701-90af-f967de8cffd2,AUTHORIZATION,,false +36661,8ccc6f4c-4285-4701-90af-f967de8cffd2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36662,8ccc6f4c-4285-4701-90af-f967de8cffd2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36663,8ccc6f4c-4285-4701-90af-f967de8cffd2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36664,591a6b36-ad6e-4e31-9f8f-f091b5f7bfb0,LIST_ACCOUNTS,xs2aListAccounts,true -36665,591a6b36-ad6e-4e31-9f8f-f091b5f7bfb0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36665,591a6b36-ad6e-4e31-9f8f-f091b5f7bfb0,LIST_TRANSACTIONS,xs2aListTransactions,true 36666,591a6b36-ad6e-4e31-9f8f-f091b5f7bfb0,AUTHORIZATION,,true 36667,591a6b36-ad6e-4e31-9f8f-f091b5f7bfb0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36668,591a6b36-ad6e-4e31-9f8f-f091b5f7bfb0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36669,591a6b36-ad6e-4e31-9f8f-f091b5f7bfb0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36670,14a35a82-15d3-43e2-8cfd-8ff2be231c14,LIST_ACCOUNTS,hbciListAccounts,false -36671,14a35a82-15d3-43e2-8cfd-8ff2be231c14,LIST_TRANSACTIONS,hbciListTransactions,false -36672,14a35a82-15d3-43e2-8cfd-8ff2be231c14,AUTHORIZATION,,false -36673,14a35a82-15d3-43e2-8cfd-8ff2be231c14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36674,14a35a82-15d3-43e2-8cfd-8ff2be231c14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36675,14a35a82-15d3-43e2-8cfd-8ff2be231c14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36670,7f017f27-e9ae-46e6-b4ac-abc47e08c4bc,LIST_ACCOUNTS,hbciListAccounts,false +36671,7f017f27-e9ae-46e6-b4ac-abc47e08c4bc,LIST_TRANSACTIONS,hbciListTransactions,false +36672,7f017f27-e9ae-46e6-b4ac-abc47e08c4bc,AUTHORIZATION,,false +36673,7f017f27-e9ae-46e6-b4ac-abc47e08c4bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36674,7f017f27-e9ae-46e6-b4ac-abc47e08c4bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36675,7f017f27-e9ae-46e6-b4ac-abc47e08c4bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36676,a986fb26-ba43-4328-b40c-c8e6b96ea78a,LIST_ACCOUNTS,xs2aListAccounts,true -36677,a986fb26-ba43-4328-b40c-c8e6b96ea78a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36677,a986fb26-ba43-4328-b40c-c8e6b96ea78a,LIST_TRANSACTIONS,xs2aListTransactions,true 36678,a986fb26-ba43-4328-b40c-c8e6b96ea78a,AUTHORIZATION,,true 36679,a986fb26-ba43-4328-b40c-c8e6b96ea78a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36680,a986fb26-ba43-4328-b40c-c8e6b96ea78a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36681,a986fb26-ba43-4328-b40c-c8e6b96ea78a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36682,cc6a2a15-ff6b-45f3-a3a9-901d389aa4eb,LIST_ACCOUNTS,hbciListAccounts,false -36683,cc6a2a15-ff6b-45f3-a3a9-901d389aa4eb,LIST_TRANSACTIONS,hbciListTransactions,false -36684,cc6a2a15-ff6b-45f3-a3a9-901d389aa4eb,AUTHORIZATION,,false -36685,cc6a2a15-ff6b-45f3-a3a9-901d389aa4eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36686,cc6a2a15-ff6b-45f3-a3a9-901d389aa4eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36687,cc6a2a15-ff6b-45f3-a3a9-901d389aa4eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36682,9e90745f-a5db-437e-93e3-7f6c0522fd27,LIST_ACCOUNTS,hbciListAccounts,false +36683,9e90745f-a5db-437e-93e3-7f6c0522fd27,LIST_TRANSACTIONS,hbciListTransactions,false +36684,9e90745f-a5db-437e-93e3-7f6c0522fd27,AUTHORIZATION,,false +36685,9e90745f-a5db-437e-93e3-7f6c0522fd27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36686,9e90745f-a5db-437e-93e3-7f6c0522fd27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36687,9e90745f-a5db-437e-93e3-7f6c0522fd27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36688,fc1d8b84-b37d-4bc1-89fa-4cf6f2716ecb,LIST_ACCOUNTS,xs2aListAccounts,true -36689,fc1d8b84-b37d-4bc1-89fa-4cf6f2716ecb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36689,fc1d8b84-b37d-4bc1-89fa-4cf6f2716ecb,LIST_TRANSACTIONS,xs2aListTransactions,true 36690,fc1d8b84-b37d-4bc1-89fa-4cf6f2716ecb,AUTHORIZATION,,true 36691,fc1d8b84-b37d-4bc1-89fa-4cf6f2716ecb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36692,fc1d8b84-b37d-4bc1-89fa-4cf6f2716ecb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36693,fc1d8b84-b37d-4bc1-89fa-4cf6f2716ecb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36694,133a6fa5-98f1-41c9-a69e-7d1287532d03,LIST_ACCOUNTS,hbciListAccounts,false -36695,133a6fa5-98f1-41c9-a69e-7d1287532d03,LIST_TRANSACTIONS,hbciListTransactions,false -36696,133a6fa5-98f1-41c9-a69e-7d1287532d03,AUTHORIZATION,,false -36697,133a6fa5-98f1-41c9-a69e-7d1287532d03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36698,133a6fa5-98f1-41c9-a69e-7d1287532d03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36699,133a6fa5-98f1-41c9-a69e-7d1287532d03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36694,7f006b66-35ea-43a5-8b52-dec88d71ae05,LIST_ACCOUNTS,hbciListAccounts,false +36695,7f006b66-35ea-43a5-8b52-dec88d71ae05,LIST_TRANSACTIONS,hbciListTransactions,false +36696,7f006b66-35ea-43a5-8b52-dec88d71ae05,AUTHORIZATION,,false +36697,7f006b66-35ea-43a5-8b52-dec88d71ae05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36698,7f006b66-35ea-43a5-8b52-dec88d71ae05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36699,7f006b66-35ea-43a5-8b52-dec88d71ae05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36700,52124367-7e7c-4edd-bd5a-eef502b4b4d9,LIST_ACCOUNTS,xs2aListAccounts,true -36701,52124367-7e7c-4edd-bd5a-eef502b4b4d9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36701,52124367-7e7c-4edd-bd5a-eef502b4b4d9,LIST_TRANSACTIONS,xs2aListTransactions,true 36702,52124367-7e7c-4edd-bd5a-eef502b4b4d9,AUTHORIZATION,,true 36703,52124367-7e7c-4edd-bd5a-eef502b4b4d9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36704,52124367-7e7c-4edd-bd5a-eef502b4b4d9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36705,52124367-7e7c-4edd-bd5a-eef502b4b4d9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36706,453809d0-8eeb-4a6b-ab50-731a6b75e8eb,LIST_ACCOUNTS,hbciListAccounts,false -36707,453809d0-8eeb-4a6b-ab50-731a6b75e8eb,LIST_TRANSACTIONS,hbciListTransactions,false -36708,453809d0-8eeb-4a6b-ab50-731a6b75e8eb,AUTHORIZATION,,false -36709,453809d0-8eeb-4a6b-ab50-731a6b75e8eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36710,453809d0-8eeb-4a6b-ab50-731a6b75e8eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36711,453809d0-8eeb-4a6b-ab50-731a6b75e8eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36706,c7e9dfa1-f6e8-4633-aaeb-8735a7e9d059,LIST_ACCOUNTS,hbciListAccounts,false +36707,c7e9dfa1-f6e8-4633-aaeb-8735a7e9d059,LIST_TRANSACTIONS,hbciListTransactions,false +36708,c7e9dfa1-f6e8-4633-aaeb-8735a7e9d059,AUTHORIZATION,,false +36709,c7e9dfa1-f6e8-4633-aaeb-8735a7e9d059,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36710,c7e9dfa1-f6e8-4633-aaeb-8735a7e9d059,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36711,c7e9dfa1-f6e8-4633-aaeb-8735a7e9d059,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36712,7c02e996-340a-4b4f-a23b-b0aa9ab96e6a,LIST_ACCOUNTS,xs2aListAccounts,true -36713,7c02e996-340a-4b4f-a23b-b0aa9ab96e6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36713,7c02e996-340a-4b4f-a23b-b0aa9ab96e6a,LIST_TRANSACTIONS,xs2aListTransactions,true 36714,7c02e996-340a-4b4f-a23b-b0aa9ab96e6a,AUTHORIZATION,,true 36715,7c02e996-340a-4b4f-a23b-b0aa9ab96e6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36716,7c02e996-340a-4b4f-a23b-b0aa9ab96e6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36717,7c02e996-340a-4b4f-a23b-b0aa9ab96e6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36718,ad642f19-3993-4bdb-8b3a-8bb3bae2bc18,LIST_ACCOUNTS,hbciListAccounts,false -36719,ad642f19-3993-4bdb-8b3a-8bb3bae2bc18,LIST_TRANSACTIONS,hbciListTransactions,false -36720,ad642f19-3993-4bdb-8b3a-8bb3bae2bc18,AUTHORIZATION,,false -36721,ad642f19-3993-4bdb-8b3a-8bb3bae2bc18,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36722,ad642f19-3993-4bdb-8b3a-8bb3bae2bc18,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36723,ad642f19-3993-4bdb-8b3a-8bb3bae2bc18,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36718,4cb562ea-bfc2-4eb5-88a2-e8156fcaf9e3,LIST_ACCOUNTS,hbciListAccounts,false +36719,4cb562ea-bfc2-4eb5-88a2-e8156fcaf9e3,LIST_TRANSACTIONS,hbciListTransactions,false +36720,4cb562ea-bfc2-4eb5-88a2-e8156fcaf9e3,AUTHORIZATION,,false +36721,4cb562ea-bfc2-4eb5-88a2-e8156fcaf9e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36722,4cb562ea-bfc2-4eb5-88a2-e8156fcaf9e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36723,4cb562ea-bfc2-4eb5-88a2-e8156fcaf9e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36724,37bbe3ad-b87e-489b-972b-8d358239787f,LIST_ACCOUNTS,xs2aListAccounts,true -36725,37bbe3ad-b87e-489b-972b-8d358239787f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36725,37bbe3ad-b87e-489b-972b-8d358239787f,LIST_TRANSACTIONS,xs2aListTransactions,true 36726,37bbe3ad-b87e-489b-972b-8d358239787f,AUTHORIZATION,,true 36727,37bbe3ad-b87e-489b-972b-8d358239787f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36728,37bbe3ad-b87e-489b-972b-8d358239787f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36729,37bbe3ad-b87e-489b-972b-8d358239787f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36730,9f4a6b6e-5b06-4566-85f8-b9b6e8991d96,LIST_ACCOUNTS,hbciListAccounts,false -36731,9f4a6b6e-5b06-4566-85f8-b9b6e8991d96,LIST_TRANSACTIONS,hbciListTransactions,false -36732,9f4a6b6e-5b06-4566-85f8-b9b6e8991d96,AUTHORIZATION,,false -36733,9f4a6b6e-5b06-4566-85f8-b9b6e8991d96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36734,9f4a6b6e-5b06-4566-85f8-b9b6e8991d96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36735,9f4a6b6e-5b06-4566-85f8-b9b6e8991d96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36730,a4e948a3-a5f5-42c5-8548-fd0d17f354f0,LIST_ACCOUNTS,hbciListAccounts,false +36731,a4e948a3-a5f5-42c5-8548-fd0d17f354f0,LIST_TRANSACTIONS,hbciListTransactions,false +36732,a4e948a3-a5f5-42c5-8548-fd0d17f354f0,AUTHORIZATION,,false +36733,a4e948a3-a5f5-42c5-8548-fd0d17f354f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36734,a4e948a3-a5f5-42c5-8548-fd0d17f354f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36735,a4e948a3-a5f5-42c5-8548-fd0d17f354f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36736,cb495126-a819-4b5e-964a-ec2c46a8de6a,LIST_ACCOUNTS,xs2aListAccounts,true -36737,cb495126-a819-4b5e-964a-ec2c46a8de6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36737,cb495126-a819-4b5e-964a-ec2c46a8de6a,LIST_TRANSACTIONS,xs2aListTransactions,true 36738,cb495126-a819-4b5e-964a-ec2c46a8de6a,AUTHORIZATION,,true 36739,cb495126-a819-4b5e-964a-ec2c46a8de6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36740,cb495126-a819-4b5e-964a-ec2c46a8de6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36741,cb495126-a819-4b5e-964a-ec2c46a8de6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36742,7a98fd1b-6aa0-4cce-afb2-c49198837968,LIST_ACCOUNTS,hbciListAccounts,false -36743,7a98fd1b-6aa0-4cce-afb2-c49198837968,LIST_TRANSACTIONS,hbciListTransactions,false -36744,7a98fd1b-6aa0-4cce-afb2-c49198837968,AUTHORIZATION,,false -36745,7a98fd1b-6aa0-4cce-afb2-c49198837968,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36746,7a98fd1b-6aa0-4cce-afb2-c49198837968,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36747,7a98fd1b-6aa0-4cce-afb2-c49198837968,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36742,40b9d899-cf42-412a-b9e3-eb976e461b36,LIST_ACCOUNTS,hbciListAccounts,false +36743,40b9d899-cf42-412a-b9e3-eb976e461b36,LIST_TRANSACTIONS,hbciListTransactions,false +36744,40b9d899-cf42-412a-b9e3-eb976e461b36,AUTHORIZATION,,false +36745,40b9d899-cf42-412a-b9e3-eb976e461b36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36746,40b9d899-cf42-412a-b9e3-eb976e461b36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36747,40b9d899-cf42-412a-b9e3-eb976e461b36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36748,08e4bb29-4ebe-462f-8171-eec5f6fb1168,LIST_ACCOUNTS,xs2aListAccounts,true -36749,08e4bb29-4ebe-462f-8171-eec5f6fb1168,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36749,08e4bb29-4ebe-462f-8171-eec5f6fb1168,LIST_TRANSACTIONS,xs2aListTransactions,true 36750,08e4bb29-4ebe-462f-8171-eec5f6fb1168,AUTHORIZATION,,true 36751,08e4bb29-4ebe-462f-8171-eec5f6fb1168,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36752,08e4bb29-4ebe-462f-8171-eec5f6fb1168,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36753,08e4bb29-4ebe-462f-8171-eec5f6fb1168,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36754,c2e7ca0c-fb57-4819-b771-23ab996a8248,LIST_ACCOUNTS,hbciListAccounts,false -36755,c2e7ca0c-fb57-4819-b771-23ab996a8248,LIST_TRANSACTIONS,hbciListTransactions,false -36756,c2e7ca0c-fb57-4819-b771-23ab996a8248,AUTHORIZATION,,false -36757,c2e7ca0c-fb57-4819-b771-23ab996a8248,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36758,c2e7ca0c-fb57-4819-b771-23ab996a8248,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36759,c2e7ca0c-fb57-4819-b771-23ab996a8248,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36754,2cd41911-7016-4dae-a9e5-46a98b51e342,LIST_ACCOUNTS,hbciListAccounts,false +36755,2cd41911-7016-4dae-a9e5-46a98b51e342,LIST_TRANSACTIONS,hbciListTransactions,false +36756,2cd41911-7016-4dae-a9e5-46a98b51e342,AUTHORIZATION,,false +36757,2cd41911-7016-4dae-a9e5-46a98b51e342,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36758,2cd41911-7016-4dae-a9e5-46a98b51e342,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36759,2cd41911-7016-4dae-a9e5-46a98b51e342,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36760,7e753bb8-0fb8-4cf3-ae88-9915dbdbd0b8,LIST_ACCOUNTS,xs2aListAccounts,true -36761,7e753bb8-0fb8-4cf3-ae88-9915dbdbd0b8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36761,7e753bb8-0fb8-4cf3-ae88-9915dbdbd0b8,LIST_TRANSACTIONS,xs2aListTransactions,true 36762,7e753bb8-0fb8-4cf3-ae88-9915dbdbd0b8,AUTHORIZATION,,true 36763,7e753bb8-0fb8-4cf3-ae88-9915dbdbd0b8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36764,7e753bb8-0fb8-4cf3-ae88-9915dbdbd0b8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36765,7e753bb8-0fb8-4cf3-ae88-9915dbdbd0b8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36766,e9f9162c-0806-4cba-95c7-f5fdf47ac662,LIST_ACCOUNTS,hbciListAccounts,false -36767,e9f9162c-0806-4cba-95c7-f5fdf47ac662,LIST_TRANSACTIONS,hbciListTransactions,false -36768,e9f9162c-0806-4cba-95c7-f5fdf47ac662,AUTHORIZATION,,false -36769,e9f9162c-0806-4cba-95c7-f5fdf47ac662,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36770,e9f9162c-0806-4cba-95c7-f5fdf47ac662,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36771,e9f9162c-0806-4cba-95c7-f5fdf47ac662,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36766,290946e6-fd5c-4eb0-a7d6-b83f0003d036,LIST_ACCOUNTS,hbciListAccounts,false +36767,290946e6-fd5c-4eb0-a7d6-b83f0003d036,LIST_TRANSACTIONS,hbciListTransactions,false +36768,290946e6-fd5c-4eb0-a7d6-b83f0003d036,AUTHORIZATION,,false +36769,290946e6-fd5c-4eb0-a7d6-b83f0003d036,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36770,290946e6-fd5c-4eb0-a7d6-b83f0003d036,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36771,290946e6-fd5c-4eb0-a7d6-b83f0003d036,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36772,16f311f2-5733-45ba-ba12-44aa2325a586,LIST_ACCOUNTS,xs2aListAccounts,true -36773,16f311f2-5733-45ba-ba12-44aa2325a586,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36773,16f311f2-5733-45ba-ba12-44aa2325a586,LIST_TRANSACTIONS,xs2aListTransactions,true 36774,16f311f2-5733-45ba-ba12-44aa2325a586,AUTHORIZATION,,true 36775,16f311f2-5733-45ba-ba12-44aa2325a586,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36776,16f311f2-5733-45ba-ba12-44aa2325a586,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36777,16f311f2-5733-45ba-ba12-44aa2325a586,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36778,dca1c28d-aa36-425b-bda0-974409eda33d,LIST_ACCOUNTS,hbciListAccounts,false -36779,dca1c28d-aa36-425b-bda0-974409eda33d,LIST_TRANSACTIONS,hbciListTransactions,false -36780,dca1c28d-aa36-425b-bda0-974409eda33d,AUTHORIZATION,,false -36781,dca1c28d-aa36-425b-bda0-974409eda33d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36782,dca1c28d-aa36-425b-bda0-974409eda33d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36783,dca1c28d-aa36-425b-bda0-974409eda33d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36778,c2c7507e-2932-4a48-999a-b83e72fa8ea3,LIST_ACCOUNTS,hbciListAccounts,false +36779,c2c7507e-2932-4a48-999a-b83e72fa8ea3,LIST_TRANSACTIONS,hbciListTransactions,false +36780,c2c7507e-2932-4a48-999a-b83e72fa8ea3,AUTHORIZATION,,false +36781,c2c7507e-2932-4a48-999a-b83e72fa8ea3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36782,c2c7507e-2932-4a48-999a-b83e72fa8ea3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36783,c2c7507e-2932-4a48-999a-b83e72fa8ea3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36784,5d5cacee-6087-4028-a3a0-36be79a32cae,LIST_ACCOUNTS,xs2aListAccounts,true -36785,5d5cacee-6087-4028-a3a0-36be79a32cae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36785,5d5cacee-6087-4028-a3a0-36be79a32cae,LIST_TRANSACTIONS,xs2aListTransactions,true 36786,5d5cacee-6087-4028-a3a0-36be79a32cae,AUTHORIZATION,,true 36787,5d5cacee-6087-4028-a3a0-36be79a32cae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36788,5d5cacee-6087-4028-a3a0-36be79a32cae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36789,5d5cacee-6087-4028-a3a0-36be79a32cae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36790,251186ed-4cc8-493c-9db5-8c79974c1412,LIST_ACCOUNTS,hbciListAccounts,false -36791,251186ed-4cc8-493c-9db5-8c79974c1412,LIST_TRANSACTIONS,hbciListTransactions,false -36792,251186ed-4cc8-493c-9db5-8c79974c1412,AUTHORIZATION,,false -36793,251186ed-4cc8-493c-9db5-8c79974c1412,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36794,251186ed-4cc8-493c-9db5-8c79974c1412,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36795,251186ed-4cc8-493c-9db5-8c79974c1412,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36790,90a0e5e7-1104-408b-954a-20e8fa375260,LIST_ACCOUNTS,hbciListAccounts,false +36791,90a0e5e7-1104-408b-954a-20e8fa375260,LIST_TRANSACTIONS,hbciListTransactions,false +36792,90a0e5e7-1104-408b-954a-20e8fa375260,AUTHORIZATION,,false +36793,90a0e5e7-1104-408b-954a-20e8fa375260,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36794,90a0e5e7-1104-408b-954a-20e8fa375260,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36795,90a0e5e7-1104-408b-954a-20e8fa375260,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36796,80404a88-53a7-4678-898b-c16cdbe2a0b7,LIST_ACCOUNTS,xs2aListAccounts,true -36797,80404a88-53a7-4678-898b-c16cdbe2a0b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36797,80404a88-53a7-4678-898b-c16cdbe2a0b7,LIST_TRANSACTIONS,xs2aListTransactions,true 36798,80404a88-53a7-4678-898b-c16cdbe2a0b7,AUTHORIZATION,,true 36799,80404a88-53a7-4678-898b-c16cdbe2a0b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36800,80404a88-53a7-4678-898b-c16cdbe2a0b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36801,80404a88-53a7-4678-898b-c16cdbe2a0b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36802,f21d9765-d6d7-46e2-af33-49535c70e620,LIST_ACCOUNTS,hbciListAccounts,false -36803,f21d9765-d6d7-46e2-af33-49535c70e620,LIST_TRANSACTIONS,hbciListTransactions,false -36804,f21d9765-d6d7-46e2-af33-49535c70e620,AUTHORIZATION,,false -36805,f21d9765-d6d7-46e2-af33-49535c70e620,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36806,f21d9765-d6d7-46e2-af33-49535c70e620,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36807,f21d9765-d6d7-46e2-af33-49535c70e620,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36802,dd775c66-6b5f-493f-81fd-81cc6c7a6988,LIST_ACCOUNTS,hbciListAccounts,false +36803,dd775c66-6b5f-493f-81fd-81cc6c7a6988,LIST_TRANSACTIONS,hbciListTransactions,false +36804,dd775c66-6b5f-493f-81fd-81cc6c7a6988,AUTHORIZATION,,false +36805,dd775c66-6b5f-493f-81fd-81cc6c7a6988,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36806,dd775c66-6b5f-493f-81fd-81cc6c7a6988,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36807,dd775c66-6b5f-493f-81fd-81cc6c7a6988,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36808,50088ec0-cc55-4170-8583-3d539cd07926,LIST_ACCOUNTS,xs2aListAccounts,true -36809,50088ec0-cc55-4170-8583-3d539cd07926,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36809,50088ec0-cc55-4170-8583-3d539cd07926,LIST_TRANSACTIONS,xs2aListTransactions,true 36810,50088ec0-cc55-4170-8583-3d539cd07926,AUTHORIZATION,,true 36811,50088ec0-cc55-4170-8583-3d539cd07926,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36812,50088ec0-cc55-4170-8583-3d539cd07926,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36813,50088ec0-cc55-4170-8583-3d539cd07926,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36814,70502f7a-7f5f-450d-bbc5-c1a42dd28f89,LIST_ACCOUNTS,hbciListAccounts,false -36815,70502f7a-7f5f-450d-bbc5-c1a42dd28f89,LIST_TRANSACTIONS,hbciListTransactions,false -36816,70502f7a-7f5f-450d-bbc5-c1a42dd28f89,AUTHORIZATION,,false -36817,70502f7a-7f5f-450d-bbc5-c1a42dd28f89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36818,70502f7a-7f5f-450d-bbc5-c1a42dd28f89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36819,70502f7a-7f5f-450d-bbc5-c1a42dd28f89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36814,8e4e4991-b3cd-45cc-a1f7-1cf3746eb2fb,LIST_ACCOUNTS,hbciListAccounts,false +36815,8e4e4991-b3cd-45cc-a1f7-1cf3746eb2fb,LIST_TRANSACTIONS,hbciListTransactions,false +36816,8e4e4991-b3cd-45cc-a1f7-1cf3746eb2fb,AUTHORIZATION,,false +36817,8e4e4991-b3cd-45cc-a1f7-1cf3746eb2fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36818,8e4e4991-b3cd-45cc-a1f7-1cf3746eb2fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36819,8e4e4991-b3cd-45cc-a1f7-1cf3746eb2fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36820,5d2ede6c-4a30-4549-b230-62956c023b1b,LIST_ACCOUNTS,xs2aListAccounts,true -36821,5d2ede6c-4a30-4549-b230-62956c023b1b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36821,5d2ede6c-4a30-4549-b230-62956c023b1b,LIST_TRANSACTIONS,xs2aListTransactions,true 36822,5d2ede6c-4a30-4549-b230-62956c023b1b,AUTHORIZATION,,true 36823,5d2ede6c-4a30-4549-b230-62956c023b1b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36824,5d2ede6c-4a30-4549-b230-62956c023b1b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36825,5d2ede6c-4a30-4549-b230-62956c023b1b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36826,fcd3869e-389f-4cf7-80db-9fcfb1e9f8ab,LIST_ACCOUNTS,hbciListAccounts,false -36827,fcd3869e-389f-4cf7-80db-9fcfb1e9f8ab,LIST_TRANSACTIONS,hbciListTransactions,false -36828,fcd3869e-389f-4cf7-80db-9fcfb1e9f8ab,AUTHORIZATION,,false -36829,fcd3869e-389f-4cf7-80db-9fcfb1e9f8ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36830,fcd3869e-389f-4cf7-80db-9fcfb1e9f8ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36831,fcd3869e-389f-4cf7-80db-9fcfb1e9f8ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36826,81571092-76fc-43c0-9595-a4d5b029afba,LIST_ACCOUNTS,hbciListAccounts,false +36827,81571092-76fc-43c0-9595-a4d5b029afba,LIST_TRANSACTIONS,hbciListTransactions,false +36828,81571092-76fc-43c0-9595-a4d5b029afba,AUTHORIZATION,,false +36829,81571092-76fc-43c0-9595-a4d5b029afba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36830,81571092-76fc-43c0-9595-a4d5b029afba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36831,81571092-76fc-43c0-9595-a4d5b029afba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36832,27c3a111-8134-4013-97e7-7455aa231e0b,LIST_ACCOUNTS,xs2aListAccounts,true -36833,27c3a111-8134-4013-97e7-7455aa231e0b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36833,27c3a111-8134-4013-97e7-7455aa231e0b,LIST_TRANSACTIONS,xs2aListTransactions,true 36834,27c3a111-8134-4013-97e7-7455aa231e0b,AUTHORIZATION,,true 36835,27c3a111-8134-4013-97e7-7455aa231e0b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36836,27c3a111-8134-4013-97e7-7455aa231e0b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36837,27c3a111-8134-4013-97e7-7455aa231e0b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36838,458c32ca-99e2-4aa5-a8ac-10401abe51fd,LIST_ACCOUNTS,hbciListAccounts,false -36839,458c32ca-99e2-4aa5-a8ac-10401abe51fd,LIST_TRANSACTIONS,hbciListTransactions,false -36840,458c32ca-99e2-4aa5-a8ac-10401abe51fd,AUTHORIZATION,,false -36841,458c32ca-99e2-4aa5-a8ac-10401abe51fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36842,458c32ca-99e2-4aa5-a8ac-10401abe51fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36843,458c32ca-99e2-4aa5-a8ac-10401abe51fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36838,e42195a3-1d99-4a1a-b105-ce6e1d0307c1,LIST_ACCOUNTS,hbciListAccounts,false +36839,e42195a3-1d99-4a1a-b105-ce6e1d0307c1,LIST_TRANSACTIONS,hbciListTransactions,false +36840,e42195a3-1d99-4a1a-b105-ce6e1d0307c1,AUTHORIZATION,,false +36841,e42195a3-1d99-4a1a-b105-ce6e1d0307c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36842,e42195a3-1d99-4a1a-b105-ce6e1d0307c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36843,e42195a3-1d99-4a1a-b105-ce6e1d0307c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36844,5de3be8a-6cf6-43a8-9fc9-ac35f9562420,LIST_ACCOUNTS,xs2aListAccounts,true -36845,5de3be8a-6cf6-43a8-9fc9-ac35f9562420,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36845,5de3be8a-6cf6-43a8-9fc9-ac35f9562420,LIST_TRANSACTIONS,xs2aListTransactions,true 36846,5de3be8a-6cf6-43a8-9fc9-ac35f9562420,AUTHORIZATION,,true 36847,5de3be8a-6cf6-43a8-9fc9-ac35f9562420,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36848,5de3be8a-6cf6-43a8-9fc9-ac35f9562420,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36849,5de3be8a-6cf6-43a8-9fc9-ac35f9562420,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36850,634231fb-a8ca-49cb-888f-c291d8a294bb,LIST_ACCOUNTS,hbciListAccounts,false -36851,634231fb-a8ca-49cb-888f-c291d8a294bb,LIST_TRANSACTIONS,hbciListTransactions,false -36852,634231fb-a8ca-49cb-888f-c291d8a294bb,AUTHORIZATION,,false -36853,634231fb-a8ca-49cb-888f-c291d8a294bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36854,634231fb-a8ca-49cb-888f-c291d8a294bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36855,634231fb-a8ca-49cb-888f-c291d8a294bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36850,16cbf52b-841d-4645-a25c-cda3ccfe59f2,LIST_ACCOUNTS,hbciListAccounts,false +36851,16cbf52b-841d-4645-a25c-cda3ccfe59f2,LIST_TRANSACTIONS,hbciListTransactions,false +36852,16cbf52b-841d-4645-a25c-cda3ccfe59f2,AUTHORIZATION,,false +36853,16cbf52b-841d-4645-a25c-cda3ccfe59f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36854,16cbf52b-841d-4645-a25c-cda3ccfe59f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36855,16cbf52b-841d-4645-a25c-cda3ccfe59f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36856,ae68e3e2-f56b-4c1f-b364-1dec1d6709be,LIST_ACCOUNTS,xs2aListAccounts,true -36857,ae68e3e2-f56b-4c1f-b364-1dec1d6709be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36857,ae68e3e2-f56b-4c1f-b364-1dec1d6709be,LIST_TRANSACTIONS,xs2aListTransactions,true 36858,ae68e3e2-f56b-4c1f-b364-1dec1d6709be,AUTHORIZATION,,true 36859,ae68e3e2-f56b-4c1f-b364-1dec1d6709be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36860,ae68e3e2-f56b-4c1f-b364-1dec1d6709be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36861,ae68e3e2-f56b-4c1f-b364-1dec1d6709be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36862,15153556-3d11-460f-8ee0-aeb8446510ec,LIST_ACCOUNTS,hbciListAccounts,false -36863,15153556-3d11-460f-8ee0-aeb8446510ec,LIST_TRANSACTIONS,hbciListTransactions,false -36864,15153556-3d11-460f-8ee0-aeb8446510ec,AUTHORIZATION,,false -36865,15153556-3d11-460f-8ee0-aeb8446510ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36866,15153556-3d11-460f-8ee0-aeb8446510ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36867,15153556-3d11-460f-8ee0-aeb8446510ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36862,e43a67cf-e641-4271-9754-38b0d379caa2,LIST_ACCOUNTS,hbciListAccounts,false +36863,e43a67cf-e641-4271-9754-38b0d379caa2,LIST_TRANSACTIONS,hbciListTransactions,false +36864,e43a67cf-e641-4271-9754-38b0d379caa2,AUTHORIZATION,,false +36865,e43a67cf-e641-4271-9754-38b0d379caa2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36866,e43a67cf-e641-4271-9754-38b0d379caa2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36867,e43a67cf-e641-4271-9754-38b0d379caa2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36868,34d95e39-29b1-4066-8739-eecf3f6a2884,LIST_ACCOUNTS,xs2aListAccounts,true -36869,34d95e39-29b1-4066-8739-eecf3f6a2884,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36869,34d95e39-29b1-4066-8739-eecf3f6a2884,LIST_TRANSACTIONS,xs2aListTransactions,true 36870,34d95e39-29b1-4066-8739-eecf3f6a2884,AUTHORIZATION,,true 36871,34d95e39-29b1-4066-8739-eecf3f6a2884,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36872,34d95e39-29b1-4066-8739-eecf3f6a2884,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36873,34d95e39-29b1-4066-8739-eecf3f6a2884,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36874,ca369842-38f3-447f-accb-866400945288,LIST_ACCOUNTS,hbciListAccounts,false -36875,ca369842-38f3-447f-accb-866400945288,LIST_TRANSACTIONS,hbciListTransactions,false -36876,ca369842-38f3-447f-accb-866400945288,AUTHORIZATION,,false -36877,ca369842-38f3-447f-accb-866400945288,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36878,ca369842-38f3-447f-accb-866400945288,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36879,ca369842-38f3-447f-accb-866400945288,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36874,540561c0-ffe5-424d-acff-b18d30ae93b2,LIST_ACCOUNTS,hbciListAccounts,false +36875,540561c0-ffe5-424d-acff-b18d30ae93b2,LIST_TRANSACTIONS,hbciListTransactions,false +36876,540561c0-ffe5-424d-acff-b18d30ae93b2,AUTHORIZATION,,false +36877,540561c0-ffe5-424d-acff-b18d30ae93b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36878,540561c0-ffe5-424d-acff-b18d30ae93b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36879,540561c0-ffe5-424d-acff-b18d30ae93b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36880,489e39f4-e9f8-459a-8a4d-90d682dbc785,LIST_ACCOUNTS,xs2aListAccounts,true -36881,489e39f4-e9f8-459a-8a4d-90d682dbc785,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36881,489e39f4-e9f8-459a-8a4d-90d682dbc785,LIST_TRANSACTIONS,xs2aListTransactions,true 36882,489e39f4-e9f8-459a-8a4d-90d682dbc785,AUTHORIZATION,,true 36883,489e39f4-e9f8-459a-8a4d-90d682dbc785,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36884,489e39f4-e9f8-459a-8a4d-90d682dbc785,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36885,489e39f4-e9f8-459a-8a4d-90d682dbc785,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36886,1e8872bb-e710-4d65-baa2-6110e90a80c0,LIST_ACCOUNTS,hbciListAccounts,false -36887,1e8872bb-e710-4d65-baa2-6110e90a80c0,LIST_TRANSACTIONS,hbciListTransactions,false -36888,1e8872bb-e710-4d65-baa2-6110e90a80c0,AUTHORIZATION,,false -36889,1e8872bb-e710-4d65-baa2-6110e90a80c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36890,1e8872bb-e710-4d65-baa2-6110e90a80c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36891,1e8872bb-e710-4d65-baa2-6110e90a80c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36886,2031d8f0-e3fe-4d97-a9c0-96262028acf6,LIST_ACCOUNTS,hbciListAccounts,false +36887,2031d8f0-e3fe-4d97-a9c0-96262028acf6,LIST_TRANSACTIONS,hbciListTransactions,false +36888,2031d8f0-e3fe-4d97-a9c0-96262028acf6,AUTHORIZATION,,false +36889,2031d8f0-e3fe-4d97-a9c0-96262028acf6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36890,2031d8f0-e3fe-4d97-a9c0-96262028acf6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36891,2031d8f0-e3fe-4d97-a9c0-96262028acf6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36892,2c475d28-c5f7-4cf3-9e16-a64487361c3e,LIST_ACCOUNTS,xs2aListAccounts,true -36893,2c475d28-c5f7-4cf3-9e16-a64487361c3e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36893,2c475d28-c5f7-4cf3-9e16-a64487361c3e,LIST_TRANSACTIONS,xs2aListTransactions,true 36894,2c475d28-c5f7-4cf3-9e16-a64487361c3e,AUTHORIZATION,,true 36895,2c475d28-c5f7-4cf3-9e16-a64487361c3e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36896,2c475d28-c5f7-4cf3-9e16-a64487361c3e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36897,2c475d28-c5f7-4cf3-9e16-a64487361c3e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36898,5c0d9091-4763-4390-86fe-ba2dce049dff,LIST_ACCOUNTS,hbciListAccounts,false -36899,5c0d9091-4763-4390-86fe-ba2dce049dff,LIST_TRANSACTIONS,hbciListTransactions,false -36900,5c0d9091-4763-4390-86fe-ba2dce049dff,AUTHORIZATION,,false -36901,5c0d9091-4763-4390-86fe-ba2dce049dff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36902,5c0d9091-4763-4390-86fe-ba2dce049dff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36903,5c0d9091-4763-4390-86fe-ba2dce049dff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36898,de60c967-b6ab-4e4a-a3e3-270d61ac10d8,LIST_ACCOUNTS,hbciListAccounts,false +36899,de60c967-b6ab-4e4a-a3e3-270d61ac10d8,LIST_TRANSACTIONS,hbciListTransactions,false +36900,de60c967-b6ab-4e4a-a3e3-270d61ac10d8,AUTHORIZATION,,false +36901,de60c967-b6ab-4e4a-a3e3-270d61ac10d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36902,de60c967-b6ab-4e4a-a3e3-270d61ac10d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36903,de60c967-b6ab-4e4a-a3e3-270d61ac10d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36904,32a23a4f-0c35-494a-9c39-b858d0f10c02,LIST_ACCOUNTS,xs2aListAccounts,true -36905,32a23a4f-0c35-494a-9c39-b858d0f10c02,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36905,32a23a4f-0c35-494a-9c39-b858d0f10c02,LIST_TRANSACTIONS,xs2aListTransactions,true 36906,32a23a4f-0c35-494a-9c39-b858d0f10c02,AUTHORIZATION,,true 36907,32a23a4f-0c35-494a-9c39-b858d0f10c02,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36908,32a23a4f-0c35-494a-9c39-b858d0f10c02,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36909,32a23a4f-0c35-494a-9c39-b858d0f10c02,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36910,1815db9b-0dff-4f87-af3b-8d490d6103ad,LIST_ACCOUNTS,hbciListAccounts,false -36911,1815db9b-0dff-4f87-af3b-8d490d6103ad,LIST_TRANSACTIONS,hbciListTransactions,false -36912,1815db9b-0dff-4f87-af3b-8d490d6103ad,AUTHORIZATION,,false -36913,1815db9b-0dff-4f87-af3b-8d490d6103ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36914,1815db9b-0dff-4f87-af3b-8d490d6103ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36915,1815db9b-0dff-4f87-af3b-8d490d6103ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36910,9e914389-ec8b-4a18-b3bb-e803939dfc16,LIST_ACCOUNTS,hbciListAccounts,false +36911,9e914389-ec8b-4a18-b3bb-e803939dfc16,LIST_TRANSACTIONS,hbciListTransactions,false +36912,9e914389-ec8b-4a18-b3bb-e803939dfc16,AUTHORIZATION,,false +36913,9e914389-ec8b-4a18-b3bb-e803939dfc16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36914,9e914389-ec8b-4a18-b3bb-e803939dfc16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36915,9e914389-ec8b-4a18-b3bb-e803939dfc16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36916,aa908271-938f-4354-86b7-91cfdca970a0,LIST_ACCOUNTS,xs2aListAccounts,true -36917,aa908271-938f-4354-86b7-91cfdca970a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36917,aa908271-938f-4354-86b7-91cfdca970a0,LIST_TRANSACTIONS,xs2aListTransactions,true 36918,aa908271-938f-4354-86b7-91cfdca970a0,AUTHORIZATION,,true 36919,aa908271-938f-4354-86b7-91cfdca970a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36920,aa908271-938f-4354-86b7-91cfdca970a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36921,aa908271-938f-4354-86b7-91cfdca970a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36922,0b55b44d-e209-42fe-baf1-919c98615dfb,LIST_ACCOUNTS,hbciListAccounts,false -36923,0b55b44d-e209-42fe-baf1-919c98615dfb,LIST_TRANSACTIONS,hbciListTransactions,false -36924,0b55b44d-e209-42fe-baf1-919c98615dfb,AUTHORIZATION,,false -36925,0b55b44d-e209-42fe-baf1-919c98615dfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36926,0b55b44d-e209-42fe-baf1-919c98615dfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36927,0b55b44d-e209-42fe-baf1-919c98615dfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36922,626a6050-44df-45c8-8652-a3b1daddcf4c,LIST_ACCOUNTS,hbciListAccounts,false +36923,626a6050-44df-45c8-8652-a3b1daddcf4c,LIST_TRANSACTIONS,hbciListTransactions,false +36924,626a6050-44df-45c8-8652-a3b1daddcf4c,AUTHORIZATION,,false +36925,626a6050-44df-45c8-8652-a3b1daddcf4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36926,626a6050-44df-45c8-8652-a3b1daddcf4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36927,626a6050-44df-45c8-8652-a3b1daddcf4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36928,a288d41a-1595-4368-872b-f719ecadce6c,LIST_ACCOUNTS,xs2aListAccounts,true -36929,a288d41a-1595-4368-872b-f719ecadce6c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36929,a288d41a-1595-4368-872b-f719ecadce6c,LIST_TRANSACTIONS,xs2aListTransactions,true 36930,a288d41a-1595-4368-872b-f719ecadce6c,AUTHORIZATION,,true 36931,a288d41a-1595-4368-872b-f719ecadce6c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36932,a288d41a-1595-4368-872b-f719ecadce6c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36933,a288d41a-1595-4368-872b-f719ecadce6c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36934,cd218d59-24ac-4c5f-a187-033234ad9504,LIST_ACCOUNTS,hbciListAccounts,false -36935,cd218d59-24ac-4c5f-a187-033234ad9504,LIST_TRANSACTIONS,hbciListTransactions,false -36936,cd218d59-24ac-4c5f-a187-033234ad9504,AUTHORIZATION,,false -36937,cd218d59-24ac-4c5f-a187-033234ad9504,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36938,cd218d59-24ac-4c5f-a187-033234ad9504,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36939,cd218d59-24ac-4c5f-a187-033234ad9504,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36934,cdcac96d-623c-44b4-badf-bdb3db976e22,LIST_ACCOUNTS,hbciListAccounts,false +36935,cdcac96d-623c-44b4-badf-bdb3db976e22,LIST_TRANSACTIONS,hbciListTransactions,false +36936,cdcac96d-623c-44b4-badf-bdb3db976e22,AUTHORIZATION,,false +36937,cdcac96d-623c-44b4-badf-bdb3db976e22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36938,cdcac96d-623c-44b4-badf-bdb3db976e22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36939,cdcac96d-623c-44b4-badf-bdb3db976e22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36940,01798e74-7416-45b5-9c85-df128b3b8987,LIST_ACCOUNTS,xs2aListAccounts,true -36941,01798e74-7416-45b5-9c85-df128b3b8987,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36941,01798e74-7416-45b5-9c85-df128b3b8987,LIST_TRANSACTIONS,xs2aListTransactions,true 36942,01798e74-7416-45b5-9c85-df128b3b8987,AUTHORIZATION,,true 36943,01798e74-7416-45b5-9c85-df128b3b8987,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36944,01798e74-7416-45b5-9c85-df128b3b8987,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36945,01798e74-7416-45b5-9c85-df128b3b8987,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36946,8a039af8-910b-461b-8bb3-24104874b932,LIST_ACCOUNTS,hbciListAccounts,false -36947,8a039af8-910b-461b-8bb3-24104874b932,LIST_TRANSACTIONS,hbciListTransactions,false -36948,8a039af8-910b-461b-8bb3-24104874b932,AUTHORIZATION,,false -36949,8a039af8-910b-461b-8bb3-24104874b932,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36950,8a039af8-910b-461b-8bb3-24104874b932,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36951,8a039af8-910b-461b-8bb3-24104874b932,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36946,1eb138bf-05e2-4d87-9cd5-3f5f3922411a,LIST_ACCOUNTS,hbciListAccounts,false +36947,1eb138bf-05e2-4d87-9cd5-3f5f3922411a,LIST_TRANSACTIONS,hbciListTransactions,false +36948,1eb138bf-05e2-4d87-9cd5-3f5f3922411a,AUTHORIZATION,,false +36949,1eb138bf-05e2-4d87-9cd5-3f5f3922411a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36950,1eb138bf-05e2-4d87-9cd5-3f5f3922411a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36951,1eb138bf-05e2-4d87-9cd5-3f5f3922411a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36952,ce2b4a25-d16e-4771-8be7-40443d1ecb98,LIST_ACCOUNTS,xs2aListAccounts,true -36953,ce2b4a25-d16e-4771-8be7-40443d1ecb98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36953,ce2b4a25-d16e-4771-8be7-40443d1ecb98,LIST_TRANSACTIONS,xs2aListTransactions,true 36954,ce2b4a25-d16e-4771-8be7-40443d1ecb98,AUTHORIZATION,,true 36955,ce2b4a25-d16e-4771-8be7-40443d1ecb98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36956,ce2b4a25-d16e-4771-8be7-40443d1ecb98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36957,ce2b4a25-d16e-4771-8be7-40443d1ecb98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36958,e73b5183-81bb-4cc3-941b-0520e7665e90,LIST_ACCOUNTS,hbciListAccounts,false -36959,e73b5183-81bb-4cc3-941b-0520e7665e90,LIST_TRANSACTIONS,hbciListTransactions,false -36960,e73b5183-81bb-4cc3-941b-0520e7665e90,AUTHORIZATION,,false -36961,e73b5183-81bb-4cc3-941b-0520e7665e90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36962,e73b5183-81bb-4cc3-941b-0520e7665e90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36963,e73b5183-81bb-4cc3-941b-0520e7665e90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36958,0cfbaa33-5989-4248-bc84-42cb2874fbd6,LIST_ACCOUNTS,hbciListAccounts,false +36959,0cfbaa33-5989-4248-bc84-42cb2874fbd6,LIST_TRANSACTIONS,hbciListTransactions,false +36960,0cfbaa33-5989-4248-bc84-42cb2874fbd6,AUTHORIZATION,,false +36961,0cfbaa33-5989-4248-bc84-42cb2874fbd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36962,0cfbaa33-5989-4248-bc84-42cb2874fbd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36963,0cfbaa33-5989-4248-bc84-42cb2874fbd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36964,5e1ef72d-1849-4552-b0da-0707dee9377e,LIST_ACCOUNTS,xs2aListAccounts,true -36965,5e1ef72d-1849-4552-b0da-0707dee9377e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36965,5e1ef72d-1849-4552-b0da-0707dee9377e,LIST_TRANSACTIONS,xs2aListTransactions,true 36966,5e1ef72d-1849-4552-b0da-0707dee9377e,AUTHORIZATION,,true 36967,5e1ef72d-1849-4552-b0da-0707dee9377e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36968,5e1ef72d-1849-4552-b0da-0707dee9377e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36969,5e1ef72d-1849-4552-b0da-0707dee9377e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36970,fbce607b-4cb9-4a74-9655-567a4abecd63,LIST_ACCOUNTS,hbciListAccounts,false -36971,fbce607b-4cb9-4a74-9655-567a4abecd63,LIST_TRANSACTIONS,hbciListTransactions,false -36972,fbce607b-4cb9-4a74-9655-567a4abecd63,AUTHORIZATION,,false -36973,fbce607b-4cb9-4a74-9655-567a4abecd63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36974,fbce607b-4cb9-4a74-9655-567a4abecd63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36975,fbce607b-4cb9-4a74-9655-567a4abecd63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36970,c033faaa-4ea5-4c39-9d79-41a6033c0d32,LIST_ACCOUNTS,hbciListAccounts,false +36971,c033faaa-4ea5-4c39-9d79-41a6033c0d32,LIST_TRANSACTIONS,hbciListTransactions,false +36972,c033faaa-4ea5-4c39-9d79-41a6033c0d32,AUTHORIZATION,,false +36973,c033faaa-4ea5-4c39-9d79-41a6033c0d32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36974,c033faaa-4ea5-4c39-9d79-41a6033c0d32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36975,c033faaa-4ea5-4c39-9d79-41a6033c0d32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36976,708dbc86-d1d3-4131-b678-c029ac3a133a,LIST_ACCOUNTS,xs2aListAccounts,true -36977,708dbc86-d1d3-4131-b678-c029ac3a133a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36977,708dbc86-d1d3-4131-b678-c029ac3a133a,LIST_TRANSACTIONS,xs2aListTransactions,true 36978,708dbc86-d1d3-4131-b678-c029ac3a133a,AUTHORIZATION,,true 36979,708dbc86-d1d3-4131-b678-c029ac3a133a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36980,708dbc86-d1d3-4131-b678-c029ac3a133a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36981,708dbc86-d1d3-4131-b678-c029ac3a133a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36982,f2b7348c-9d58-4c64-869b-46fa2e33d3db,LIST_ACCOUNTS,hbciListAccounts,false -36983,f2b7348c-9d58-4c64-869b-46fa2e33d3db,LIST_TRANSACTIONS,hbciListTransactions,false -36984,f2b7348c-9d58-4c64-869b-46fa2e33d3db,AUTHORIZATION,,false -36985,f2b7348c-9d58-4c64-869b-46fa2e33d3db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36986,f2b7348c-9d58-4c64-869b-46fa2e33d3db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36987,f2b7348c-9d58-4c64-869b-46fa2e33d3db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36982,c7de93b6-9f56-460a-a1f4-054a10fe3c75,LIST_ACCOUNTS,hbciListAccounts,false +36983,c7de93b6-9f56-460a-a1f4-054a10fe3c75,LIST_TRANSACTIONS,hbciListTransactions,false +36984,c7de93b6-9f56-460a-a1f4-054a10fe3c75,AUTHORIZATION,,false +36985,c7de93b6-9f56-460a-a1f4-054a10fe3c75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36986,c7de93b6-9f56-460a-a1f4-054a10fe3c75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36987,c7de93b6-9f56-460a-a1f4-054a10fe3c75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 36988,55ab1da7-7499-4196-9771-753505030fe6,LIST_ACCOUNTS,xs2aListAccounts,true -36989,55ab1da7-7499-4196-9771-753505030fe6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +36989,55ab1da7-7499-4196-9771-753505030fe6,LIST_TRANSACTIONS,xs2aListTransactions,true 36990,55ab1da7-7499-4196-9771-753505030fe6,AUTHORIZATION,,true 36991,55ab1da7-7499-4196-9771-753505030fe6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 36992,55ab1da7-7499-4196-9771-753505030fe6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 36993,55ab1da7-7499-4196-9771-753505030fe6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -36994,11b62331-952c-4139-a5e7-bfa65351b8a3,LIST_ACCOUNTS,hbciListAccounts,false -36995,11b62331-952c-4139-a5e7-bfa65351b8a3,LIST_TRANSACTIONS,hbciListTransactions,false -36996,11b62331-952c-4139-a5e7-bfa65351b8a3,AUTHORIZATION,,false -36997,11b62331-952c-4139-a5e7-bfa65351b8a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -36998,11b62331-952c-4139-a5e7-bfa65351b8a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -36999,11b62331-952c-4139-a5e7-bfa65351b8a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +36994,b3b981b4-6c49-4188-a5d7-e2833d8d1b31,LIST_ACCOUNTS,hbciListAccounts,false +36995,b3b981b4-6c49-4188-a5d7-e2833d8d1b31,LIST_TRANSACTIONS,hbciListTransactions,false +36996,b3b981b4-6c49-4188-a5d7-e2833d8d1b31,AUTHORIZATION,,false +36997,b3b981b4-6c49-4188-a5d7-e2833d8d1b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +36998,b3b981b4-6c49-4188-a5d7-e2833d8d1b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +36999,b3b981b4-6c49-4188-a5d7-e2833d8d1b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37000,0bc95579-62ff-4a78-bd13-b1e6da3c4af3,LIST_ACCOUNTS,xs2aListAccounts,true -37001,0bc95579-62ff-4a78-bd13-b1e6da3c4af3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37001,0bc95579-62ff-4a78-bd13-b1e6da3c4af3,LIST_TRANSACTIONS,xs2aListTransactions,true 37002,0bc95579-62ff-4a78-bd13-b1e6da3c4af3,AUTHORIZATION,,true 37003,0bc95579-62ff-4a78-bd13-b1e6da3c4af3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37004,0bc95579-62ff-4a78-bd13-b1e6da3c4af3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37005,0bc95579-62ff-4a78-bd13-b1e6da3c4af3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37006,11d687d5-89ab-4da9-b4af-26a34d5a6238,LIST_ACCOUNTS,hbciListAccounts,false -37007,11d687d5-89ab-4da9-b4af-26a34d5a6238,LIST_TRANSACTIONS,hbciListTransactions,false -37008,11d687d5-89ab-4da9-b4af-26a34d5a6238,AUTHORIZATION,,false -37009,11d687d5-89ab-4da9-b4af-26a34d5a6238,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37010,11d687d5-89ab-4da9-b4af-26a34d5a6238,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37011,11d687d5-89ab-4da9-b4af-26a34d5a6238,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37006,a00d03da-3710-4a85-9359-cc35488d3122,LIST_ACCOUNTS,hbciListAccounts,false +37007,a00d03da-3710-4a85-9359-cc35488d3122,LIST_TRANSACTIONS,hbciListTransactions,false +37008,a00d03da-3710-4a85-9359-cc35488d3122,AUTHORIZATION,,false +37009,a00d03da-3710-4a85-9359-cc35488d3122,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37010,a00d03da-3710-4a85-9359-cc35488d3122,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37011,a00d03da-3710-4a85-9359-cc35488d3122,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37012,43e523d0-98ce-4eda-8011-b7350d09ce5d,LIST_ACCOUNTS,xs2aListAccounts,true -37013,43e523d0-98ce-4eda-8011-b7350d09ce5d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37013,43e523d0-98ce-4eda-8011-b7350d09ce5d,LIST_TRANSACTIONS,xs2aListTransactions,true 37014,43e523d0-98ce-4eda-8011-b7350d09ce5d,AUTHORIZATION,,true 37015,43e523d0-98ce-4eda-8011-b7350d09ce5d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37016,43e523d0-98ce-4eda-8011-b7350d09ce5d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37017,43e523d0-98ce-4eda-8011-b7350d09ce5d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37018,2802e3b7-8f5b-4d5e-a3f0-fa5a6f225e43,LIST_ACCOUNTS,hbciListAccounts,false -37019,2802e3b7-8f5b-4d5e-a3f0-fa5a6f225e43,LIST_TRANSACTIONS,hbciListTransactions,false -37020,2802e3b7-8f5b-4d5e-a3f0-fa5a6f225e43,AUTHORIZATION,,false -37021,2802e3b7-8f5b-4d5e-a3f0-fa5a6f225e43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37022,2802e3b7-8f5b-4d5e-a3f0-fa5a6f225e43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37023,2802e3b7-8f5b-4d5e-a3f0-fa5a6f225e43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37018,a3c927c5-836d-4960-aa78-e5e648103835,LIST_ACCOUNTS,hbciListAccounts,false +37019,a3c927c5-836d-4960-aa78-e5e648103835,LIST_TRANSACTIONS,hbciListTransactions,false +37020,a3c927c5-836d-4960-aa78-e5e648103835,AUTHORIZATION,,false +37021,a3c927c5-836d-4960-aa78-e5e648103835,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37022,a3c927c5-836d-4960-aa78-e5e648103835,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37023,a3c927c5-836d-4960-aa78-e5e648103835,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37024,7d11ac59-463f-42f4-be6b-26fdb2003389,LIST_ACCOUNTS,xs2aListAccounts,true -37025,7d11ac59-463f-42f4-be6b-26fdb2003389,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37025,7d11ac59-463f-42f4-be6b-26fdb2003389,LIST_TRANSACTIONS,xs2aListTransactions,true 37026,7d11ac59-463f-42f4-be6b-26fdb2003389,AUTHORIZATION,,true 37027,7d11ac59-463f-42f4-be6b-26fdb2003389,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37028,7d11ac59-463f-42f4-be6b-26fdb2003389,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37029,7d11ac59-463f-42f4-be6b-26fdb2003389,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37030,dca84725-2d30-48c5-8d6b-13d489e0feea,LIST_ACCOUNTS,hbciListAccounts,false -37031,dca84725-2d30-48c5-8d6b-13d489e0feea,LIST_TRANSACTIONS,hbciListTransactions,false -37032,dca84725-2d30-48c5-8d6b-13d489e0feea,AUTHORIZATION,,false -37033,dca84725-2d30-48c5-8d6b-13d489e0feea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37034,dca84725-2d30-48c5-8d6b-13d489e0feea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37035,dca84725-2d30-48c5-8d6b-13d489e0feea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37030,92ed94e0-817e-4149-93e8-189cb35ecc62,LIST_ACCOUNTS,hbciListAccounts,false +37031,92ed94e0-817e-4149-93e8-189cb35ecc62,LIST_TRANSACTIONS,hbciListTransactions,false +37032,92ed94e0-817e-4149-93e8-189cb35ecc62,AUTHORIZATION,,false +37033,92ed94e0-817e-4149-93e8-189cb35ecc62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37034,92ed94e0-817e-4149-93e8-189cb35ecc62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37035,92ed94e0-817e-4149-93e8-189cb35ecc62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37036,1b21e4fe-4b4a-4600-a0c7-dcd5e2a87e1c,LIST_ACCOUNTS,xs2aListAccounts,true -37037,1b21e4fe-4b4a-4600-a0c7-dcd5e2a87e1c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37037,1b21e4fe-4b4a-4600-a0c7-dcd5e2a87e1c,LIST_TRANSACTIONS,xs2aListTransactions,true 37038,1b21e4fe-4b4a-4600-a0c7-dcd5e2a87e1c,AUTHORIZATION,,true 37039,1b21e4fe-4b4a-4600-a0c7-dcd5e2a87e1c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37040,1b21e4fe-4b4a-4600-a0c7-dcd5e2a87e1c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37041,1b21e4fe-4b4a-4600-a0c7-dcd5e2a87e1c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37042,0c832e23-b15f-4f57-9663-84b81b80ac8f,LIST_ACCOUNTS,hbciListAccounts,false -37043,0c832e23-b15f-4f57-9663-84b81b80ac8f,LIST_TRANSACTIONS,hbciListTransactions,false -37044,0c832e23-b15f-4f57-9663-84b81b80ac8f,AUTHORIZATION,,false -37045,0c832e23-b15f-4f57-9663-84b81b80ac8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37046,0c832e23-b15f-4f57-9663-84b81b80ac8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37047,0c832e23-b15f-4f57-9663-84b81b80ac8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37042,8df5c84a-e856-4f91-9492-c11a05b35088,LIST_ACCOUNTS,hbciListAccounts,false +37043,8df5c84a-e856-4f91-9492-c11a05b35088,LIST_TRANSACTIONS,hbciListTransactions,false +37044,8df5c84a-e856-4f91-9492-c11a05b35088,AUTHORIZATION,,false +37045,8df5c84a-e856-4f91-9492-c11a05b35088,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37046,8df5c84a-e856-4f91-9492-c11a05b35088,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37047,8df5c84a-e856-4f91-9492-c11a05b35088,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37048,35549446-02a0-4162-a497-e15c32bd9674,LIST_ACCOUNTS,xs2aListAccounts,true -37049,35549446-02a0-4162-a497-e15c32bd9674,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37049,35549446-02a0-4162-a497-e15c32bd9674,LIST_TRANSACTIONS,xs2aListTransactions,true 37050,35549446-02a0-4162-a497-e15c32bd9674,AUTHORIZATION,,true 37051,35549446-02a0-4162-a497-e15c32bd9674,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37052,35549446-02a0-4162-a497-e15c32bd9674,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37053,35549446-02a0-4162-a497-e15c32bd9674,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37054,07562339-df24-4b55-8415-3b08c53b1575,LIST_ACCOUNTS,hbciListAccounts,false -37055,07562339-df24-4b55-8415-3b08c53b1575,LIST_TRANSACTIONS,hbciListTransactions,false -37056,07562339-df24-4b55-8415-3b08c53b1575,AUTHORIZATION,,false -37057,07562339-df24-4b55-8415-3b08c53b1575,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37058,07562339-df24-4b55-8415-3b08c53b1575,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37059,07562339-df24-4b55-8415-3b08c53b1575,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37054,5998edeb-89d1-48e7-8fa6-a43ab4faa695,LIST_ACCOUNTS,hbciListAccounts,false +37055,5998edeb-89d1-48e7-8fa6-a43ab4faa695,LIST_TRANSACTIONS,hbciListTransactions,false +37056,5998edeb-89d1-48e7-8fa6-a43ab4faa695,AUTHORIZATION,,false +37057,5998edeb-89d1-48e7-8fa6-a43ab4faa695,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37058,5998edeb-89d1-48e7-8fa6-a43ab4faa695,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37059,5998edeb-89d1-48e7-8fa6-a43ab4faa695,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37060,5c73fad2-025b-4c48-907b-ca7c8f6f3cdb,LIST_ACCOUNTS,xs2aListAccounts,true -37061,5c73fad2-025b-4c48-907b-ca7c8f6f3cdb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37061,5c73fad2-025b-4c48-907b-ca7c8f6f3cdb,LIST_TRANSACTIONS,xs2aListTransactions,true 37062,5c73fad2-025b-4c48-907b-ca7c8f6f3cdb,AUTHORIZATION,,true 37063,5c73fad2-025b-4c48-907b-ca7c8f6f3cdb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37064,5c73fad2-025b-4c48-907b-ca7c8f6f3cdb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37065,5c73fad2-025b-4c48-907b-ca7c8f6f3cdb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37066,ea1ce7e7-813c-4a04-99ab-2b532422406e,LIST_ACCOUNTS,hbciListAccounts,false -37067,ea1ce7e7-813c-4a04-99ab-2b532422406e,LIST_TRANSACTIONS,hbciListTransactions,false -37068,ea1ce7e7-813c-4a04-99ab-2b532422406e,AUTHORIZATION,,false -37069,ea1ce7e7-813c-4a04-99ab-2b532422406e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37070,ea1ce7e7-813c-4a04-99ab-2b532422406e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37071,ea1ce7e7-813c-4a04-99ab-2b532422406e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37066,c0e247c5-9779-49f6-b59e-5ba332077d27,LIST_ACCOUNTS,hbciListAccounts,false +37067,c0e247c5-9779-49f6-b59e-5ba332077d27,LIST_TRANSACTIONS,hbciListTransactions,false +37068,c0e247c5-9779-49f6-b59e-5ba332077d27,AUTHORIZATION,,false +37069,c0e247c5-9779-49f6-b59e-5ba332077d27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37070,c0e247c5-9779-49f6-b59e-5ba332077d27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37071,c0e247c5-9779-49f6-b59e-5ba332077d27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37072,fdf0c2dd-10bd-4952-b7d8-9ed69fef3024,LIST_ACCOUNTS,xs2aListAccounts,true -37073,fdf0c2dd-10bd-4952-b7d8-9ed69fef3024,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37073,fdf0c2dd-10bd-4952-b7d8-9ed69fef3024,LIST_TRANSACTIONS,xs2aListTransactions,true 37074,fdf0c2dd-10bd-4952-b7d8-9ed69fef3024,AUTHORIZATION,,true 37075,fdf0c2dd-10bd-4952-b7d8-9ed69fef3024,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37076,fdf0c2dd-10bd-4952-b7d8-9ed69fef3024,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37077,fdf0c2dd-10bd-4952-b7d8-9ed69fef3024,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37078,20fab773-04c2-4dca-abf2-cffe0419565e,LIST_ACCOUNTS,hbciListAccounts,false -37079,20fab773-04c2-4dca-abf2-cffe0419565e,LIST_TRANSACTIONS,hbciListTransactions,false -37080,20fab773-04c2-4dca-abf2-cffe0419565e,AUTHORIZATION,,false -37081,20fab773-04c2-4dca-abf2-cffe0419565e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37082,20fab773-04c2-4dca-abf2-cffe0419565e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37083,20fab773-04c2-4dca-abf2-cffe0419565e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37078,0637a8a6-c677-49f7-8eb4-d67d6132e5ff,LIST_ACCOUNTS,hbciListAccounts,false +37079,0637a8a6-c677-49f7-8eb4-d67d6132e5ff,LIST_TRANSACTIONS,hbciListTransactions,false +37080,0637a8a6-c677-49f7-8eb4-d67d6132e5ff,AUTHORIZATION,,false +37081,0637a8a6-c677-49f7-8eb4-d67d6132e5ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37082,0637a8a6-c677-49f7-8eb4-d67d6132e5ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37083,0637a8a6-c677-49f7-8eb4-d67d6132e5ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37084,d45df951-a94c-4ad7-ab48-85308639fac7,LIST_ACCOUNTS,xs2aListAccounts,true -37085,d45df951-a94c-4ad7-ab48-85308639fac7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37085,d45df951-a94c-4ad7-ab48-85308639fac7,LIST_TRANSACTIONS,xs2aListTransactions,true 37086,d45df951-a94c-4ad7-ab48-85308639fac7,AUTHORIZATION,,true 37087,d45df951-a94c-4ad7-ab48-85308639fac7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37088,d45df951-a94c-4ad7-ab48-85308639fac7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37089,d45df951-a94c-4ad7-ab48-85308639fac7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37090,f1a8792a-0695-4438-98a2-8d3ccf787e95,LIST_ACCOUNTS,hbciListAccounts,false -37091,f1a8792a-0695-4438-98a2-8d3ccf787e95,LIST_TRANSACTIONS,hbciListTransactions,false -37092,f1a8792a-0695-4438-98a2-8d3ccf787e95,AUTHORIZATION,,false -37093,f1a8792a-0695-4438-98a2-8d3ccf787e95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37094,f1a8792a-0695-4438-98a2-8d3ccf787e95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37095,f1a8792a-0695-4438-98a2-8d3ccf787e95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37090,d03f8dfe-9ec8-48e1-813f-f8a7ae2ca34e,LIST_ACCOUNTS,hbciListAccounts,false +37091,d03f8dfe-9ec8-48e1-813f-f8a7ae2ca34e,LIST_TRANSACTIONS,hbciListTransactions,false +37092,d03f8dfe-9ec8-48e1-813f-f8a7ae2ca34e,AUTHORIZATION,,false +37093,d03f8dfe-9ec8-48e1-813f-f8a7ae2ca34e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37094,d03f8dfe-9ec8-48e1-813f-f8a7ae2ca34e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37095,d03f8dfe-9ec8-48e1-813f-f8a7ae2ca34e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37096,47cb0ab7-8301-4862-a0ab-bc9f55ae2783,LIST_ACCOUNTS,xs2aListAccounts,true -37097,47cb0ab7-8301-4862-a0ab-bc9f55ae2783,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37097,47cb0ab7-8301-4862-a0ab-bc9f55ae2783,LIST_TRANSACTIONS,xs2aListTransactions,true 37098,47cb0ab7-8301-4862-a0ab-bc9f55ae2783,AUTHORIZATION,,true 37099,47cb0ab7-8301-4862-a0ab-bc9f55ae2783,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37100,47cb0ab7-8301-4862-a0ab-bc9f55ae2783,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37101,47cb0ab7-8301-4862-a0ab-bc9f55ae2783,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37102,edf11683-81d1-483e-b351-d2b4b1117f3c,LIST_ACCOUNTS,hbciListAccounts,false -37103,edf11683-81d1-483e-b351-d2b4b1117f3c,LIST_TRANSACTIONS,hbciListTransactions,false -37104,edf11683-81d1-483e-b351-d2b4b1117f3c,AUTHORIZATION,,false -37105,edf11683-81d1-483e-b351-d2b4b1117f3c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37106,edf11683-81d1-483e-b351-d2b4b1117f3c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37107,edf11683-81d1-483e-b351-d2b4b1117f3c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37102,a527071d-73b6-4f31-bd51-8137aa1cde81,LIST_ACCOUNTS,hbciListAccounts,false +37103,a527071d-73b6-4f31-bd51-8137aa1cde81,LIST_TRANSACTIONS,hbciListTransactions,false +37104,a527071d-73b6-4f31-bd51-8137aa1cde81,AUTHORIZATION,,false +37105,a527071d-73b6-4f31-bd51-8137aa1cde81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37106,a527071d-73b6-4f31-bd51-8137aa1cde81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37107,a527071d-73b6-4f31-bd51-8137aa1cde81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37108,6001ce5b-f175-4e2a-a108-059980bd5f19,LIST_ACCOUNTS,xs2aListAccounts,true -37109,6001ce5b-f175-4e2a-a108-059980bd5f19,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37109,6001ce5b-f175-4e2a-a108-059980bd5f19,LIST_TRANSACTIONS,xs2aListTransactions,true 37110,6001ce5b-f175-4e2a-a108-059980bd5f19,AUTHORIZATION,,true 37111,6001ce5b-f175-4e2a-a108-059980bd5f19,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37112,6001ce5b-f175-4e2a-a108-059980bd5f19,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37113,6001ce5b-f175-4e2a-a108-059980bd5f19,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37114,98d3661f-1397-4c5b-a794-22c6b3ac4f8a,LIST_ACCOUNTS,hbciListAccounts,false -37115,98d3661f-1397-4c5b-a794-22c6b3ac4f8a,LIST_TRANSACTIONS,hbciListTransactions,false -37116,98d3661f-1397-4c5b-a794-22c6b3ac4f8a,AUTHORIZATION,,false -37117,98d3661f-1397-4c5b-a794-22c6b3ac4f8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37118,98d3661f-1397-4c5b-a794-22c6b3ac4f8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37119,98d3661f-1397-4c5b-a794-22c6b3ac4f8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37114,54b89e01-8c34-4ac5-b6ff-1299358d29d8,LIST_ACCOUNTS,hbciListAccounts,false +37115,54b89e01-8c34-4ac5-b6ff-1299358d29d8,LIST_TRANSACTIONS,hbciListTransactions,false +37116,54b89e01-8c34-4ac5-b6ff-1299358d29d8,AUTHORIZATION,,false +37117,54b89e01-8c34-4ac5-b6ff-1299358d29d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37118,54b89e01-8c34-4ac5-b6ff-1299358d29d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37119,54b89e01-8c34-4ac5-b6ff-1299358d29d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37120,487ad501-76a7-40fc-bd1e-f71cf7a0da5b,LIST_ACCOUNTS,xs2aListAccounts,true -37121,487ad501-76a7-40fc-bd1e-f71cf7a0da5b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37121,487ad501-76a7-40fc-bd1e-f71cf7a0da5b,LIST_TRANSACTIONS,xs2aListTransactions,true 37122,487ad501-76a7-40fc-bd1e-f71cf7a0da5b,AUTHORIZATION,,true 37123,487ad501-76a7-40fc-bd1e-f71cf7a0da5b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37124,487ad501-76a7-40fc-bd1e-f71cf7a0da5b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37125,487ad501-76a7-40fc-bd1e-f71cf7a0da5b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37126,370d348c-fe99-4f82-8a46-463a19864ec6,LIST_ACCOUNTS,hbciListAccounts,false -37127,370d348c-fe99-4f82-8a46-463a19864ec6,LIST_TRANSACTIONS,hbciListTransactions,false -37128,370d348c-fe99-4f82-8a46-463a19864ec6,AUTHORIZATION,,false -37129,370d348c-fe99-4f82-8a46-463a19864ec6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37130,370d348c-fe99-4f82-8a46-463a19864ec6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37131,370d348c-fe99-4f82-8a46-463a19864ec6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37126,4cb4247b-d91a-4603-ae3a-918c0f641ae5,LIST_ACCOUNTS,hbciListAccounts,false +37127,4cb4247b-d91a-4603-ae3a-918c0f641ae5,LIST_TRANSACTIONS,hbciListTransactions,false +37128,4cb4247b-d91a-4603-ae3a-918c0f641ae5,AUTHORIZATION,,false +37129,4cb4247b-d91a-4603-ae3a-918c0f641ae5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37130,4cb4247b-d91a-4603-ae3a-918c0f641ae5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37131,4cb4247b-d91a-4603-ae3a-918c0f641ae5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37132,65223073-3f05-46d8-ae12-670fab099764,LIST_ACCOUNTS,xs2aListAccounts,true -37133,65223073-3f05-46d8-ae12-670fab099764,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37133,65223073-3f05-46d8-ae12-670fab099764,LIST_TRANSACTIONS,xs2aListTransactions,true 37134,65223073-3f05-46d8-ae12-670fab099764,AUTHORIZATION,,true 37135,65223073-3f05-46d8-ae12-670fab099764,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37136,65223073-3f05-46d8-ae12-670fab099764,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37137,65223073-3f05-46d8-ae12-670fab099764,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37138,81dace17-837a-4fdd-8979-61923b08ac28,LIST_ACCOUNTS,hbciListAccounts,false -37139,81dace17-837a-4fdd-8979-61923b08ac28,LIST_TRANSACTIONS,hbciListTransactions,false -37140,81dace17-837a-4fdd-8979-61923b08ac28,AUTHORIZATION,,false -37141,81dace17-837a-4fdd-8979-61923b08ac28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37142,81dace17-837a-4fdd-8979-61923b08ac28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37143,81dace17-837a-4fdd-8979-61923b08ac28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37138,1016d373-4455-4b36-8899-5b521581a62f,LIST_ACCOUNTS,hbciListAccounts,false +37139,1016d373-4455-4b36-8899-5b521581a62f,LIST_TRANSACTIONS,hbciListTransactions,false +37140,1016d373-4455-4b36-8899-5b521581a62f,AUTHORIZATION,,false +37141,1016d373-4455-4b36-8899-5b521581a62f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37142,1016d373-4455-4b36-8899-5b521581a62f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37143,1016d373-4455-4b36-8899-5b521581a62f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37144,442628fc-d939-4d64-bd47-be3577ec9d37,LIST_ACCOUNTS,xs2aListAccounts,true -37145,442628fc-d939-4d64-bd47-be3577ec9d37,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37145,442628fc-d939-4d64-bd47-be3577ec9d37,LIST_TRANSACTIONS,xs2aListTransactions,true 37146,442628fc-d939-4d64-bd47-be3577ec9d37,AUTHORIZATION,,true 37147,442628fc-d939-4d64-bd47-be3577ec9d37,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37148,442628fc-d939-4d64-bd47-be3577ec9d37,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37149,442628fc-d939-4d64-bd47-be3577ec9d37,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37150,fe2dd8b6-7717-4b7d-bdbe-408c20ac5a72,LIST_ACCOUNTS,hbciListAccounts,false -37151,fe2dd8b6-7717-4b7d-bdbe-408c20ac5a72,LIST_TRANSACTIONS,hbciListTransactions,false -37152,fe2dd8b6-7717-4b7d-bdbe-408c20ac5a72,AUTHORIZATION,,false -37153,fe2dd8b6-7717-4b7d-bdbe-408c20ac5a72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37154,fe2dd8b6-7717-4b7d-bdbe-408c20ac5a72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37155,fe2dd8b6-7717-4b7d-bdbe-408c20ac5a72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37150,cf67241b-be29-4eec-abd0-295aee988cf6,LIST_ACCOUNTS,hbciListAccounts,false +37151,cf67241b-be29-4eec-abd0-295aee988cf6,LIST_TRANSACTIONS,hbciListTransactions,false +37152,cf67241b-be29-4eec-abd0-295aee988cf6,AUTHORIZATION,,false +37153,cf67241b-be29-4eec-abd0-295aee988cf6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37154,cf67241b-be29-4eec-abd0-295aee988cf6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37155,cf67241b-be29-4eec-abd0-295aee988cf6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37156,b4b5f7f0-0f9e-4ebe-9b92-eaede27fb03c,LIST_ACCOUNTS,xs2aListAccounts,true -37157,b4b5f7f0-0f9e-4ebe-9b92-eaede27fb03c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37157,b4b5f7f0-0f9e-4ebe-9b92-eaede27fb03c,LIST_TRANSACTIONS,xs2aListTransactions,true 37158,b4b5f7f0-0f9e-4ebe-9b92-eaede27fb03c,AUTHORIZATION,,true 37159,b4b5f7f0-0f9e-4ebe-9b92-eaede27fb03c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37160,b4b5f7f0-0f9e-4ebe-9b92-eaede27fb03c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37161,b4b5f7f0-0f9e-4ebe-9b92-eaede27fb03c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37162,14ffcacc-20f9-4c0c-8237-95ea436a3c24,LIST_ACCOUNTS,hbciListAccounts,false -37163,14ffcacc-20f9-4c0c-8237-95ea436a3c24,LIST_TRANSACTIONS,hbciListTransactions,false -37164,14ffcacc-20f9-4c0c-8237-95ea436a3c24,AUTHORIZATION,,false -37165,14ffcacc-20f9-4c0c-8237-95ea436a3c24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37166,14ffcacc-20f9-4c0c-8237-95ea436a3c24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37167,14ffcacc-20f9-4c0c-8237-95ea436a3c24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37162,86f201c4-04c9-4745-b030-caf7dabb3940,LIST_ACCOUNTS,hbciListAccounts,false +37163,86f201c4-04c9-4745-b030-caf7dabb3940,LIST_TRANSACTIONS,hbciListTransactions,false +37164,86f201c4-04c9-4745-b030-caf7dabb3940,AUTHORIZATION,,false +37165,86f201c4-04c9-4745-b030-caf7dabb3940,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37166,86f201c4-04c9-4745-b030-caf7dabb3940,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37167,86f201c4-04c9-4745-b030-caf7dabb3940,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37168,f6a27b75-2a57-4623-9430-212b9c9a373e,LIST_ACCOUNTS,xs2aListAccounts,true -37169,f6a27b75-2a57-4623-9430-212b9c9a373e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37169,f6a27b75-2a57-4623-9430-212b9c9a373e,LIST_TRANSACTIONS,xs2aListTransactions,true 37170,f6a27b75-2a57-4623-9430-212b9c9a373e,AUTHORIZATION,,true 37171,f6a27b75-2a57-4623-9430-212b9c9a373e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37172,f6a27b75-2a57-4623-9430-212b9c9a373e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37173,f6a27b75-2a57-4623-9430-212b9c9a373e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37174,3df06929-2590-486c-b2ec-efcf79ec903c,LIST_ACCOUNTS,hbciListAccounts,false -37175,3df06929-2590-486c-b2ec-efcf79ec903c,LIST_TRANSACTIONS,hbciListTransactions,false -37176,3df06929-2590-486c-b2ec-efcf79ec903c,AUTHORIZATION,,false -37177,3df06929-2590-486c-b2ec-efcf79ec903c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37178,3df06929-2590-486c-b2ec-efcf79ec903c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37179,3df06929-2590-486c-b2ec-efcf79ec903c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37174,c5e57e21-41c4-4b48-8aaf-f8d436e9cd6b,LIST_ACCOUNTS,hbciListAccounts,false +37175,c5e57e21-41c4-4b48-8aaf-f8d436e9cd6b,LIST_TRANSACTIONS,hbciListTransactions,false +37176,c5e57e21-41c4-4b48-8aaf-f8d436e9cd6b,AUTHORIZATION,,false +37177,c5e57e21-41c4-4b48-8aaf-f8d436e9cd6b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37178,c5e57e21-41c4-4b48-8aaf-f8d436e9cd6b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37179,c5e57e21-41c4-4b48-8aaf-f8d436e9cd6b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37180,dab55cea-54c5-4a48-a751-149477d17f40,LIST_ACCOUNTS,xs2aListAccounts,true -37181,dab55cea-54c5-4a48-a751-149477d17f40,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37181,dab55cea-54c5-4a48-a751-149477d17f40,LIST_TRANSACTIONS,xs2aListTransactions,true 37182,dab55cea-54c5-4a48-a751-149477d17f40,AUTHORIZATION,,true 37183,dab55cea-54c5-4a48-a751-149477d17f40,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37184,dab55cea-54c5-4a48-a751-149477d17f40,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37185,dab55cea-54c5-4a48-a751-149477d17f40,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37186,c8c2ea97-3c64-45a4-9e4d-3ef418cd16ff,LIST_ACCOUNTS,hbciListAccounts,false -37187,c8c2ea97-3c64-45a4-9e4d-3ef418cd16ff,LIST_TRANSACTIONS,hbciListTransactions,false -37188,c8c2ea97-3c64-45a4-9e4d-3ef418cd16ff,AUTHORIZATION,,false -37189,c8c2ea97-3c64-45a4-9e4d-3ef418cd16ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37190,c8c2ea97-3c64-45a4-9e4d-3ef418cd16ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37191,c8c2ea97-3c64-45a4-9e4d-3ef418cd16ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37186,89ca1f2e-65bd-4c32-ab2b-0488ecf617cd,LIST_ACCOUNTS,hbciListAccounts,false +37187,89ca1f2e-65bd-4c32-ab2b-0488ecf617cd,LIST_TRANSACTIONS,hbciListTransactions,false +37188,89ca1f2e-65bd-4c32-ab2b-0488ecf617cd,AUTHORIZATION,,false +37189,89ca1f2e-65bd-4c32-ab2b-0488ecf617cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37190,89ca1f2e-65bd-4c32-ab2b-0488ecf617cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37191,89ca1f2e-65bd-4c32-ab2b-0488ecf617cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37192,d4f0b1bc-402b-4062-b674-92584052c9b1,LIST_ACCOUNTS,xs2aListAccounts,true -37193,d4f0b1bc-402b-4062-b674-92584052c9b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37193,d4f0b1bc-402b-4062-b674-92584052c9b1,LIST_TRANSACTIONS,xs2aListTransactions,true 37194,d4f0b1bc-402b-4062-b674-92584052c9b1,AUTHORIZATION,,true 37195,d4f0b1bc-402b-4062-b674-92584052c9b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37196,d4f0b1bc-402b-4062-b674-92584052c9b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37197,d4f0b1bc-402b-4062-b674-92584052c9b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37198,110e6733-69ac-4031-a0a7-725e281d1421,LIST_ACCOUNTS,hbciListAccounts,false -37199,110e6733-69ac-4031-a0a7-725e281d1421,LIST_TRANSACTIONS,hbciListTransactions,false -37200,110e6733-69ac-4031-a0a7-725e281d1421,AUTHORIZATION,,false -37201,110e6733-69ac-4031-a0a7-725e281d1421,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37202,110e6733-69ac-4031-a0a7-725e281d1421,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37203,110e6733-69ac-4031-a0a7-725e281d1421,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37198,dd3509d9-fb84-4ed3-b687-72986cd73d3b,LIST_ACCOUNTS,hbciListAccounts,false +37199,dd3509d9-fb84-4ed3-b687-72986cd73d3b,LIST_TRANSACTIONS,hbciListTransactions,false +37200,dd3509d9-fb84-4ed3-b687-72986cd73d3b,AUTHORIZATION,,false +37201,dd3509d9-fb84-4ed3-b687-72986cd73d3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37202,dd3509d9-fb84-4ed3-b687-72986cd73d3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37203,dd3509d9-fb84-4ed3-b687-72986cd73d3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37204,3f8db3cc-5363-4741-81b6-3363f951dcb1,LIST_ACCOUNTS,xs2aListAccounts,true -37205,3f8db3cc-5363-4741-81b6-3363f951dcb1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37205,3f8db3cc-5363-4741-81b6-3363f951dcb1,LIST_TRANSACTIONS,xs2aListTransactions,true 37206,3f8db3cc-5363-4741-81b6-3363f951dcb1,AUTHORIZATION,,true 37207,3f8db3cc-5363-4741-81b6-3363f951dcb1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37208,3f8db3cc-5363-4741-81b6-3363f951dcb1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37209,3f8db3cc-5363-4741-81b6-3363f951dcb1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37210,11659cbf-c1df-4b79-8c4b-507be263d79d,LIST_ACCOUNTS,hbciListAccounts,false -37211,11659cbf-c1df-4b79-8c4b-507be263d79d,LIST_TRANSACTIONS,hbciListTransactions,false -37212,11659cbf-c1df-4b79-8c4b-507be263d79d,AUTHORIZATION,,false -37213,11659cbf-c1df-4b79-8c4b-507be263d79d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37214,11659cbf-c1df-4b79-8c4b-507be263d79d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37215,11659cbf-c1df-4b79-8c4b-507be263d79d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37210,a8c4338c-c658-414c-98c4-07e263fdd27a,LIST_ACCOUNTS,hbciListAccounts,false +37211,a8c4338c-c658-414c-98c4-07e263fdd27a,LIST_TRANSACTIONS,hbciListTransactions,false +37212,a8c4338c-c658-414c-98c4-07e263fdd27a,AUTHORIZATION,,false +37213,a8c4338c-c658-414c-98c4-07e263fdd27a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37214,a8c4338c-c658-414c-98c4-07e263fdd27a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37215,a8c4338c-c658-414c-98c4-07e263fdd27a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37216,4c68da83-3e6e-42bc-b0a4-1cb3fd310d0b,LIST_ACCOUNTS,xs2aListAccounts,true -37217,4c68da83-3e6e-42bc-b0a4-1cb3fd310d0b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37217,4c68da83-3e6e-42bc-b0a4-1cb3fd310d0b,LIST_TRANSACTIONS,xs2aListTransactions,true 37218,4c68da83-3e6e-42bc-b0a4-1cb3fd310d0b,AUTHORIZATION,,true 37219,4c68da83-3e6e-42bc-b0a4-1cb3fd310d0b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37220,4c68da83-3e6e-42bc-b0a4-1cb3fd310d0b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37221,4c68da83-3e6e-42bc-b0a4-1cb3fd310d0b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37222,130a1a24-ca76-42a1-963f-407a470dd949,LIST_ACCOUNTS,hbciListAccounts,false -37223,130a1a24-ca76-42a1-963f-407a470dd949,LIST_TRANSACTIONS,hbciListTransactions,false -37224,130a1a24-ca76-42a1-963f-407a470dd949,AUTHORIZATION,,false -37225,130a1a24-ca76-42a1-963f-407a470dd949,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37226,130a1a24-ca76-42a1-963f-407a470dd949,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37227,130a1a24-ca76-42a1-963f-407a470dd949,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37222,12935bb2-4c42-42d6-84ca-ad49ce5e3172,LIST_ACCOUNTS,hbciListAccounts,false +37223,12935bb2-4c42-42d6-84ca-ad49ce5e3172,LIST_TRANSACTIONS,hbciListTransactions,false +37224,12935bb2-4c42-42d6-84ca-ad49ce5e3172,AUTHORIZATION,,false +37225,12935bb2-4c42-42d6-84ca-ad49ce5e3172,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37226,12935bb2-4c42-42d6-84ca-ad49ce5e3172,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37227,12935bb2-4c42-42d6-84ca-ad49ce5e3172,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37228,30166c3f-5872-46dc-91a2-3060894e1247,LIST_ACCOUNTS,xs2aListAccounts,true -37229,30166c3f-5872-46dc-91a2-3060894e1247,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37229,30166c3f-5872-46dc-91a2-3060894e1247,LIST_TRANSACTIONS,xs2aListTransactions,true 37230,30166c3f-5872-46dc-91a2-3060894e1247,AUTHORIZATION,,true 37231,30166c3f-5872-46dc-91a2-3060894e1247,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37232,30166c3f-5872-46dc-91a2-3060894e1247,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37233,30166c3f-5872-46dc-91a2-3060894e1247,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37234,26bd94a3-2bfd-4834-a58f-d82579960cec,LIST_ACCOUNTS,hbciListAccounts,false -37235,26bd94a3-2bfd-4834-a58f-d82579960cec,LIST_TRANSACTIONS,hbciListTransactions,false -37236,26bd94a3-2bfd-4834-a58f-d82579960cec,AUTHORIZATION,,false -37237,26bd94a3-2bfd-4834-a58f-d82579960cec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37238,26bd94a3-2bfd-4834-a58f-d82579960cec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37239,26bd94a3-2bfd-4834-a58f-d82579960cec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37234,1cfbc380-aa26-4d43-b175-16c7e2bad7ad,LIST_ACCOUNTS,hbciListAccounts,false +37235,1cfbc380-aa26-4d43-b175-16c7e2bad7ad,LIST_TRANSACTIONS,hbciListTransactions,false +37236,1cfbc380-aa26-4d43-b175-16c7e2bad7ad,AUTHORIZATION,,false +37237,1cfbc380-aa26-4d43-b175-16c7e2bad7ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37238,1cfbc380-aa26-4d43-b175-16c7e2bad7ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37239,1cfbc380-aa26-4d43-b175-16c7e2bad7ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37240,885f2d8b-b99f-45c7-b55f-084b7fc39245,LIST_ACCOUNTS,xs2aListAccounts,true -37241,885f2d8b-b99f-45c7-b55f-084b7fc39245,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37241,885f2d8b-b99f-45c7-b55f-084b7fc39245,LIST_TRANSACTIONS,xs2aListTransactions,true 37242,885f2d8b-b99f-45c7-b55f-084b7fc39245,AUTHORIZATION,,true 37243,885f2d8b-b99f-45c7-b55f-084b7fc39245,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37244,885f2d8b-b99f-45c7-b55f-084b7fc39245,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37245,885f2d8b-b99f-45c7-b55f-084b7fc39245,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37246,40ecd5c1-85fc-4210-aa86-681d8c0c738b,LIST_ACCOUNTS,hbciListAccounts,false -37247,40ecd5c1-85fc-4210-aa86-681d8c0c738b,LIST_TRANSACTIONS,hbciListTransactions,false -37248,40ecd5c1-85fc-4210-aa86-681d8c0c738b,AUTHORIZATION,,false -37249,40ecd5c1-85fc-4210-aa86-681d8c0c738b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37250,40ecd5c1-85fc-4210-aa86-681d8c0c738b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37251,40ecd5c1-85fc-4210-aa86-681d8c0c738b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37246,671a697d-3c31-44b2-b53a-fedf55b1bf05,LIST_ACCOUNTS,hbciListAccounts,false +37247,671a697d-3c31-44b2-b53a-fedf55b1bf05,LIST_TRANSACTIONS,hbciListTransactions,false +37248,671a697d-3c31-44b2-b53a-fedf55b1bf05,AUTHORIZATION,,false +37249,671a697d-3c31-44b2-b53a-fedf55b1bf05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37250,671a697d-3c31-44b2-b53a-fedf55b1bf05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37251,671a697d-3c31-44b2-b53a-fedf55b1bf05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37252,d1eab9f5-1746-4629-b961-bf6df48ff4d6,LIST_ACCOUNTS,xs2aListAccounts,true -37253,d1eab9f5-1746-4629-b961-bf6df48ff4d6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37253,d1eab9f5-1746-4629-b961-bf6df48ff4d6,LIST_TRANSACTIONS,xs2aListTransactions,true 37254,d1eab9f5-1746-4629-b961-bf6df48ff4d6,AUTHORIZATION,,true 37255,d1eab9f5-1746-4629-b961-bf6df48ff4d6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37256,d1eab9f5-1746-4629-b961-bf6df48ff4d6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37257,d1eab9f5-1746-4629-b961-bf6df48ff4d6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37258,f0521f36-379a-4ebd-a43c-2986111f768d,LIST_ACCOUNTS,hbciListAccounts,false -37259,f0521f36-379a-4ebd-a43c-2986111f768d,LIST_TRANSACTIONS,hbciListTransactions,false -37260,f0521f36-379a-4ebd-a43c-2986111f768d,AUTHORIZATION,,false -37261,f0521f36-379a-4ebd-a43c-2986111f768d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37262,f0521f36-379a-4ebd-a43c-2986111f768d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37263,f0521f36-379a-4ebd-a43c-2986111f768d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37258,4ba349a2-3676-4e9c-9f11-4ea0cd84b11b,LIST_ACCOUNTS,hbciListAccounts,false +37259,4ba349a2-3676-4e9c-9f11-4ea0cd84b11b,LIST_TRANSACTIONS,hbciListTransactions,false +37260,4ba349a2-3676-4e9c-9f11-4ea0cd84b11b,AUTHORIZATION,,false +37261,4ba349a2-3676-4e9c-9f11-4ea0cd84b11b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37262,4ba349a2-3676-4e9c-9f11-4ea0cd84b11b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37263,4ba349a2-3676-4e9c-9f11-4ea0cd84b11b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37264,06c86ec6-b912-40e7-8960-ebe775bb9495,LIST_ACCOUNTS,xs2aListAccounts,true -37265,06c86ec6-b912-40e7-8960-ebe775bb9495,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37265,06c86ec6-b912-40e7-8960-ebe775bb9495,LIST_TRANSACTIONS,xs2aListTransactions,true 37266,06c86ec6-b912-40e7-8960-ebe775bb9495,AUTHORIZATION,,true 37267,06c86ec6-b912-40e7-8960-ebe775bb9495,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37268,06c86ec6-b912-40e7-8960-ebe775bb9495,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37269,06c86ec6-b912-40e7-8960-ebe775bb9495,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37270,72caaae6-dbca-4aa4-a5eb-a960db5d9e08,LIST_ACCOUNTS,hbciListAccounts,false -37271,72caaae6-dbca-4aa4-a5eb-a960db5d9e08,LIST_TRANSACTIONS,hbciListTransactions,false -37272,72caaae6-dbca-4aa4-a5eb-a960db5d9e08,AUTHORIZATION,,false -37273,72caaae6-dbca-4aa4-a5eb-a960db5d9e08,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37274,72caaae6-dbca-4aa4-a5eb-a960db5d9e08,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37275,72caaae6-dbca-4aa4-a5eb-a960db5d9e08,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37270,af77f3ac-349f-4153-9847-a9a1585450f1,LIST_ACCOUNTS,hbciListAccounts,false +37271,af77f3ac-349f-4153-9847-a9a1585450f1,LIST_TRANSACTIONS,hbciListTransactions,false +37272,af77f3ac-349f-4153-9847-a9a1585450f1,AUTHORIZATION,,false +37273,af77f3ac-349f-4153-9847-a9a1585450f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37274,af77f3ac-349f-4153-9847-a9a1585450f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37275,af77f3ac-349f-4153-9847-a9a1585450f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37276,2db4f7cd-23c1-4e0d-9655-3afcd635e1f9,LIST_ACCOUNTS,xs2aListAccounts,true -37277,2db4f7cd-23c1-4e0d-9655-3afcd635e1f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37277,2db4f7cd-23c1-4e0d-9655-3afcd635e1f9,LIST_TRANSACTIONS,xs2aListTransactions,true 37278,2db4f7cd-23c1-4e0d-9655-3afcd635e1f9,AUTHORIZATION,,true 37279,2db4f7cd-23c1-4e0d-9655-3afcd635e1f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37280,2db4f7cd-23c1-4e0d-9655-3afcd635e1f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37281,2db4f7cd-23c1-4e0d-9655-3afcd635e1f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37282,80e0bf5c-8806-481c-a2f5-ebce9b4ad4a1,LIST_ACCOUNTS,hbciListAccounts,false -37283,80e0bf5c-8806-481c-a2f5-ebce9b4ad4a1,LIST_TRANSACTIONS,hbciListTransactions,false -37284,80e0bf5c-8806-481c-a2f5-ebce9b4ad4a1,AUTHORIZATION,,false -37285,80e0bf5c-8806-481c-a2f5-ebce9b4ad4a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37286,80e0bf5c-8806-481c-a2f5-ebce9b4ad4a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37287,80e0bf5c-8806-481c-a2f5-ebce9b4ad4a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37282,50bec5bd-4c94-444f-a886-7d00224bf061,LIST_ACCOUNTS,hbciListAccounts,false +37283,50bec5bd-4c94-444f-a886-7d00224bf061,LIST_TRANSACTIONS,hbciListTransactions,false +37284,50bec5bd-4c94-444f-a886-7d00224bf061,AUTHORIZATION,,false +37285,50bec5bd-4c94-444f-a886-7d00224bf061,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37286,50bec5bd-4c94-444f-a886-7d00224bf061,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37287,50bec5bd-4c94-444f-a886-7d00224bf061,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37288,dd0b8c80-6684-4ba5-9467-fac4efac1d51,LIST_ACCOUNTS,xs2aListAccounts,true -37289,dd0b8c80-6684-4ba5-9467-fac4efac1d51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37289,dd0b8c80-6684-4ba5-9467-fac4efac1d51,LIST_TRANSACTIONS,xs2aListTransactions,true 37290,dd0b8c80-6684-4ba5-9467-fac4efac1d51,AUTHORIZATION,,true 37291,dd0b8c80-6684-4ba5-9467-fac4efac1d51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37292,dd0b8c80-6684-4ba5-9467-fac4efac1d51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37293,dd0b8c80-6684-4ba5-9467-fac4efac1d51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37294,75adc84d-1a13-484f-9cfe-fd26c809b45c,LIST_ACCOUNTS,hbciListAccounts,false -37295,75adc84d-1a13-484f-9cfe-fd26c809b45c,LIST_TRANSACTIONS,hbciListTransactions,false -37296,75adc84d-1a13-484f-9cfe-fd26c809b45c,AUTHORIZATION,,false -37297,75adc84d-1a13-484f-9cfe-fd26c809b45c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37298,75adc84d-1a13-484f-9cfe-fd26c809b45c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37299,75adc84d-1a13-484f-9cfe-fd26c809b45c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37294,d0afd077-0157-4f2c-ad09-e7ab36fdb51f,LIST_ACCOUNTS,hbciListAccounts,false +37295,d0afd077-0157-4f2c-ad09-e7ab36fdb51f,LIST_TRANSACTIONS,hbciListTransactions,false +37296,d0afd077-0157-4f2c-ad09-e7ab36fdb51f,AUTHORIZATION,,false +37297,d0afd077-0157-4f2c-ad09-e7ab36fdb51f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37298,d0afd077-0157-4f2c-ad09-e7ab36fdb51f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37299,d0afd077-0157-4f2c-ad09-e7ab36fdb51f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37300,6894aca7-d48e-4625-8f46-c4fceb578107,LIST_ACCOUNTS,xs2aListAccounts,true -37301,6894aca7-d48e-4625-8f46-c4fceb578107,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37301,6894aca7-d48e-4625-8f46-c4fceb578107,LIST_TRANSACTIONS,xs2aListTransactions,true 37302,6894aca7-d48e-4625-8f46-c4fceb578107,AUTHORIZATION,,true 37303,6894aca7-d48e-4625-8f46-c4fceb578107,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37304,6894aca7-d48e-4625-8f46-c4fceb578107,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37305,6894aca7-d48e-4625-8f46-c4fceb578107,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37306,cade3daa-9db4-4f0c-8baa-569ce28e2903,LIST_ACCOUNTS,hbciListAccounts,false -37307,cade3daa-9db4-4f0c-8baa-569ce28e2903,LIST_TRANSACTIONS,hbciListTransactions,false -37308,cade3daa-9db4-4f0c-8baa-569ce28e2903,AUTHORIZATION,,false -37309,cade3daa-9db4-4f0c-8baa-569ce28e2903,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37310,cade3daa-9db4-4f0c-8baa-569ce28e2903,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37311,cade3daa-9db4-4f0c-8baa-569ce28e2903,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37306,9dc21edf-4219-4ddb-8878-9718d6f01330,LIST_ACCOUNTS,hbciListAccounts,false +37307,9dc21edf-4219-4ddb-8878-9718d6f01330,LIST_TRANSACTIONS,hbciListTransactions,false +37308,9dc21edf-4219-4ddb-8878-9718d6f01330,AUTHORIZATION,,false +37309,9dc21edf-4219-4ddb-8878-9718d6f01330,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37310,9dc21edf-4219-4ddb-8878-9718d6f01330,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37311,9dc21edf-4219-4ddb-8878-9718d6f01330,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37312,32047c94-43b5-4657-9b53-fe41da914c17,LIST_ACCOUNTS,xs2aListAccounts,true -37313,32047c94-43b5-4657-9b53-fe41da914c17,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37313,32047c94-43b5-4657-9b53-fe41da914c17,LIST_TRANSACTIONS,xs2aListTransactions,true 37314,32047c94-43b5-4657-9b53-fe41da914c17,AUTHORIZATION,,true 37315,32047c94-43b5-4657-9b53-fe41da914c17,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37316,32047c94-43b5-4657-9b53-fe41da914c17,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37317,32047c94-43b5-4657-9b53-fe41da914c17,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37318,a15e6257-3757-4715-83fb-b0ed471133d9,LIST_ACCOUNTS,hbciListAccounts,false -37319,a15e6257-3757-4715-83fb-b0ed471133d9,LIST_TRANSACTIONS,hbciListTransactions,false -37320,a15e6257-3757-4715-83fb-b0ed471133d9,AUTHORIZATION,,false -37321,a15e6257-3757-4715-83fb-b0ed471133d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37322,a15e6257-3757-4715-83fb-b0ed471133d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37323,a15e6257-3757-4715-83fb-b0ed471133d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37318,b8a3a9fb-03f2-4c2a-a5b2-13861307ee72,LIST_ACCOUNTS,hbciListAccounts,false +37319,b8a3a9fb-03f2-4c2a-a5b2-13861307ee72,LIST_TRANSACTIONS,hbciListTransactions,false +37320,b8a3a9fb-03f2-4c2a-a5b2-13861307ee72,AUTHORIZATION,,false +37321,b8a3a9fb-03f2-4c2a-a5b2-13861307ee72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37322,b8a3a9fb-03f2-4c2a-a5b2-13861307ee72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37323,b8a3a9fb-03f2-4c2a-a5b2-13861307ee72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37324,0c4e6dfd-05d1-426b-85d5-97ee6b1af42b,LIST_ACCOUNTS,xs2aListAccounts,true -37325,0c4e6dfd-05d1-426b-85d5-97ee6b1af42b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37325,0c4e6dfd-05d1-426b-85d5-97ee6b1af42b,LIST_TRANSACTIONS,xs2aListTransactions,true 37326,0c4e6dfd-05d1-426b-85d5-97ee6b1af42b,AUTHORIZATION,,true 37327,0c4e6dfd-05d1-426b-85d5-97ee6b1af42b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37328,0c4e6dfd-05d1-426b-85d5-97ee6b1af42b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37329,0c4e6dfd-05d1-426b-85d5-97ee6b1af42b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37330,dafe9d87-d467-461e-892f-f0d2611706b1,LIST_ACCOUNTS,hbciListAccounts,false -37331,dafe9d87-d467-461e-892f-f0d2611706b1,LIST_TRANSACTIONS,hbciListTransactions,false -37332,dafe9d87-d467-461e-892f-f0d2611706b1,AUTHORIZATION,,false -37333,dafe9d87-d467-461e-892f-f0d2611706b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37334,dafe9d87-d467-461e-892f-f0d2611706b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37335,dafe9d87-d467-461e-892f-f0d2611706b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37330,7f4d381c-90ad-49b6-a06b-21a9d532ee2a,LIST_ACCOUNTS,hbciListAccounts,false +37331,7f4d381c-90ad-49b6-a06b-21a9d532ee2a,LIST_TRANSACTIONS,hbciListTransactions,false +37332,7f4d381c-90ad-49b6-a06b-21a9d532ee2a,AUTHORIZATION,,false +37333,7f4d381c-90ad-49b6-a06b-21a9d532ee2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37334,7f4d381c-90ad-49b6-a06b-21a9d532ee2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37335,7f4d381c-90ad-49b6-a06b-21a9d532ee2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37336,7ebbc87e-6fac-483d-bd9b-cbd4d6f1da6e,LIST_ACCOUNTS,xs2aListAccounts,true -37337,7ebbc87e-6fac-483d-bd9b-cbd4d6f1da6e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37337,7ebbc87e-6fac-483d-bd9b-cbd4d6f1da6e,LIST_TRANSACTIONS,xs2aListTransactions,true 37338,7ebbc87e-6fac-483d-bd9b-cbd4d6f1da6e,AUTHORIZATION,,true 37339,7ebbc87e-6fac-483d-bd9b-cbd4d6f1da6e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37340,7ebbc87e-6fac-483d-bd9b-cbd4d6f1da6e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37341,7ebbc87e-6fac-483d-bd9b-cbd4d6f1da6e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37342,2a65f2b0-f3b3-46a5-a426-540f3bd4cf73,LIST_ACCOUNTS,hbciListAccounts,false -37343,2a65f2b0-f3b3-46a5-a426-540f3bd4cf73,LIST_TRANSACTIONS,hbciListTransactions,false -37344,2a65f2b0-f3b3-46a5-a426-540f3bd4cf73,AUTHORIZATION,,false -37345,2a65f2b0-f3b3-46a5-a426-540f3bd4cf73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37346,2a65f2b0-f3b3-46a5-a426-540f3bd4cf73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37347,2a65f2b0-f3b3-46a5-a426-540f3bd4cf73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37342,3cc6bf8b-6fdd-40b7-915c-e1f3e5353ad9,LIST_ACCOUNTS,hbciListAccounts,false +37343,3cc6bf8b-6fdd-40b7-915c-e1f3e5353ad9,LIST_TRANSACTIONS,hbciListTransactions,false +37344,3cc6bf8b-6fdd-40b7-915c-e1f3e5353ad9,AUTHORIZATION,,false +37345,3cc6bf8b-6fdd-40b7-915c-e1f3e5353ad9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37346,3cc6bf8b-6fdd-40b7-915c-e1f3e5353ad9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37347,3cc6bf8b-6fdd-40b7-915c-e1f3e5353ad9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37348,9f64c663-1751-4521-b68c-f1dce793a72a,LIST_ACCOUNTS,xs2aListAccounts,true -37349,9f64c663-1751-4521-b68c-f1dce793a72a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37349,9f64c663-1751-4521-b68c-f1dce793a72a,LIST_TRANSACTIONS,xs2aListTransactions,true 37350,9f64c663-1751-4521-b68c-f1dce793a72a,AUTHORIZATION,,true 37351,9f64c663-1751-4521-b68c-f1dce793a72a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37352,9f64c663-1751-4521-b68c-f1dce793a72a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37353,9f64c663-1751-4521-b68c-f1dce793a72a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37354,ff4308f7-6b95-427e-a600-8807454622df,LIST_ACCOUNTS,hbciListAccounts,false -37355,ff4308f7-6b95-427e-a600-8807454622df,LIST_TRANSACTIONS,hbciListTransactions,false -37356,ff4308f7-6b95-427e-a600-8807454622df,AUTHORIZATION,,false -37357,ff4308f7-6b95-427e-a600-8807454622df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37358,ff4308f7-6b95-427e-a600-8807454622df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37359,ff4308f7-6b95-427e-a600-8807454622df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37354,f6662096-25ce-4dfc-ad7f-34a7da8fb199,LIST_ACCOUNTS,hbciListAccounts,false +37355,f6662096-25ce-4dfc-ad7f-34a7da8fb199,LIST_TRANSACTIONS,hbciListTransactions,false +37356,f6662096-25ce-4dfc-ad7f-34a7da8fb199,AUTHORIZATION,,false +37357,f6662096-25ce-4dfc-ad7f-34a7da8fb199,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37358,f6662096-25ce-4dfc-ad7f-34a7da8fb199,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37359,f6662096-25ce-4dfc-ad7f-34a7da8fb199,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37360,b13cdd12-c0d7-4793-993c-427018419f0a,LIST_ACCOUNTS,xs2aListAccounts,true -37361,b13cdd12-c0d7-4793-993c-427018419f0a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37361,b13cdd12-c0d7-4793-993c-427018419f0a,LIST_TRANSACTIONS,xs2aListTransactions,true 37362,b13cdd12-c0d7-4793-993c-427018419f0a,AUTHORIZATION,,true 37363,b13cdd12-c0d7-4793-993c-427018419f0a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37364,b13cdd12-c0d7-4793-993c-427018419f0a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37365,b13cdd12-c0d7-4793-993c-427018419f0a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37366,819bb24b-6824-40b1-bf18-d3a34537c628,LIST_ACCOUNTS,hbciListAccounts,false -37367,819bb24b-6824-40b1-bf18-d3a34537c628,LIST_TRANSACTIONS,hbciListTransactions,false -37368,819bb24b-6824-40b1-bf18-d3a34537c628,AUTHORIZATION,,false -37369,819bb24b-6824-40b1-bf18-d3a34537c628,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37370,819bb24b-6824-40b1-bf18-d3a34537c628,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37371,819bb24b-6824-40b1-bf18-d3a34537c628,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37366,238dc3a7-3358-4b54-97c2-8071f20df47d,LIST_ACCOUNTS,hbciListAccounts,false +37367,238dc3a7-3358-4b54-97c2-8071f20df47d,LIST_TRANSACTIONS,hbciListTransactions,false +37368,238dc3a7-3358-4b54-97c2-8071f20df47d,AUTHORIZATION,,false +37369,238dc3a7-3358-4b54-97c2-8071f20df47d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37370,238dc3a7-3358-4b54-97c2-8071f20df47d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37371,238dc3a7-3358-4b54-97c2-8071f20df47d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37372,eaa5f41e-f14a-4097-8ea5-229a9eee044e,LIST_ACCOUNTS,xs2aListAccounts,true -37373,eaa5f41e-f14a-4097-8ea5-229a9eee044e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37373,eaa5f41e-f14a-4097-8ea5-229a9eee044e,LIST_TRANSACTIONS,xs2aListTransactions,true 37374,eaa5f41e-f14a-4097-8ea5-229a9eee044e,AUTHORIZATION,,true 37375,eaa5f41e-f14a-4097-8ea5-229a9eee044e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37376,eaa5f41e-f14a-4097-8ea5-229a9eee044e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37377,eaa5f41e-f14a-4097-8ea5-229a9eee044e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37378,c6c648ec-b2bc-49f0-bca7-3e762717dbe2,LIST_ACCOUNTS,hbciListAccounts,false -37379,c6c648ec-b2bc-49f0-bca7-3e762717dbe2,LIST_TRANSACTIONS,hbciListTransactions,false -37380,c6c648ec-b2bc-49f0-bca7-3e762717dbe2,AUTHORIZATION,,false -37381,c6c648ec-b2bc-49f0-bca7-3e762717dbe2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37382,c6c648ec-b2bc-49f0-bca7-3e762717dbe2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37383,c6c648ec-b2bc-49f0-bca7-3e762717dbe2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37378,ee012b45-6ec5-4a2d-8c6e-57c700c865f6,LIST_ACCOUNTS,hbciListAccounts,false +37379,ee012b45-6ec5-4a2d-8c6e-57c700c865f6,LIST_TRANSACTIONS,hbciListTransactions,false +37380,ee012b45-6ec5-4a2d-8c6e-57c700c865f6,AUTHORIZATION,,false +37381,ee012b45-6ec5-4a2d-8c6e-57c700c865f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37382,ee012b45-6ec5-4a2d-8c6e-57c700c865f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37383,ee012b45-6ec5-4a2d-8c6e-57c700c865f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37384,3711fb26-06e4-4871-9077-a161e66cd4ca,LIST_ACCOUNTS,xs2aListAccounts,true -37385,3711fb26-06e4-4871-9077-a161e66cd4ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37385,3711fb26-06e4-4871-9077-a161e66cd4ca,LIST_TRANSACTIONS,xs2aListTransactions,true 37386,3711fb26-06e4-4871-9077-a161e66cd4ca,AUTHORIZATION,,true 37387,3711fb26-06e4-4871-9077-a161e66cd4ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37388,3711fb26-06e4-4871-9077-a161e66cd4ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37389,3711fb26-06e4-4871-9077-a161e66cd4ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37390,685011c4-5df4-4d33-a411-2b9f08ee73e8,LIST_ACCOUNTS,hbciListAccounts,false -37391,685011c4-5df4-4d33-a411-2b9f08ee73e8,LIST_TRANSACTIONS,hbciListTransactions,false -37392,685011c4-5df4-4d33-a411-2b9f08ee73e8,AUTHORIZATION,,false -37393,685011c4-5df4-4d33-a411-2b9f08ee73e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37394,685011c4-5df4-4d33-a411-2b9f08ee73e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37395,685011c4-5df4-4d33-a411-2b9f08ee73e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37390,ac2f3b14-6eb8-4d24-a26a-b93a9b9c9df3,LIST_ACCOUNTS,hbciListAccounts,false +37391,ac2f3b14-6eb8-4d24-a26a-b93a9b9c9df3,LIST_TRANSACTIONS,hbciListTransactions,false +37392,ac2f3b14-6eb8-4d24-a26a-b93a9b9c9df3,AUTHORIZATION,,false +37393,ac2f3b14-6eb8-4d24-a26a-b93a9b9c9df3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37394,ac2f3b14-6eb8-4d24-a26a-b93a9b9c9df3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37395,ac2f3b14-6eb8-4d24-a26a-b93a9b9c9df3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37396,b31aac03-f76b-4a0f-9c9a-953fbcab6df6,LIST_ACCOUNTS,xs2aListAccounts,true -37397,b31aac03-f76b-4a0f-9c9a-953fbcab6df6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37397,b31aac03-f76b-4a0f-9c9a-953fbcab6df6,LIST_TRANSACTIONS,xs2aListTransactions,true 37398,b31aac03-f76b-4a0f-9c9a-953fbcab6df6,AUTHORIZATION,,true 37399,b31aac03-f76b-4a0f-9c9a-953fbcab6df6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37400,b31aac03-f76b-4a0f-9c9a-953fbcab6df6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37401,b31aac03-f76b-4a0f-9c9a-953fbcab6df6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37402,a35f2b30-0394-4f2a-a6f4-0bd288d0cc3a,LIST_ACCOUNTS,hbciListAccounts,false -37403,a35f2b30-0394-4f2a-a6f4-0bd288d0cc3a,LIST_TRANSACTIONS,hbciListTransactions,false -37404,a35f2b30-0394-4f2a-a6f4-0bd288d0cc3a,AUTHORIZATION,,false -37405,a35f2b30-0394-4f2a-a6f4-0bd288d0cc3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37406,a35f2b30-0394-4f2a-a6f4-0bd288d0cc3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37407,a35f2b30-0394-4f2a-a6f4-0bd288d0cc3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37402,052e5213-a7f9-4c71-b7f8-d43045ea920e,LIST_ACCOUNTS,hbciListAccounts,false +37403,052e5213-a7f9-4c71-b7f8-d43045ea920e,LIST_TRANSACTIONS,hbciListTransactions,false +37404,052e5213-a7f9-4c71-b7f8-d43045ea920e,AUTHORIZATION,,false +37405,052e5213-a7f9-4c71-b7f8-d43045ea920e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37406,052e5213-a7f9-4c71-b7f8-d43045ea920e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37407,052e5213-a7f9-4c71-b7f8-d43045ea920e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37408,d9ac2a27-5744-46e9-a157-e5eaf973e29e,LIST_ACCOUNTS,xs2aListAccounts,true -37409,d9ac2a27-5744-46e9-a157-e5eaf973e29e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37409,d9ac2a27-5744-46e9-a157-e5eaf973e29e,LIST_TRANSACTIONS,xs2aListTransactions,true 37410,d9ac2a27-5744-46e9-a157-e5eaf973e29e,AUTHORIZATION,,true 37411,d9ac2a27-5744-46e9-a157-e5eaf973e29e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37412,d9ac2a27-5744-46e9-a157-e5eaf973e29e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37413,d9ac2a27-5744-46e9-a157-e5eaf973e29e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37414,935a30df-ce75-4111-baf7-58b7f7244ce3,LIST_ACCOUNTS,hbciListAccounts,false -37415,935a30df-ce75-4111-baf7-58b7f7244ce3,LIST_TRANSACTIONS,hbciListTransactions,false -37416,935a30df-ce75-4111-baf7-58b7f7244ce3,AUTHORIZATION,,false -37417,935a30df-ce75-4111-baf7-58b7f7244ce3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37418,935a30df-ce75-4111-baf7-58b7f7244ce3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37419,935a30df-ce75-4111-baf7-58b7f7244ce3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37414,dccc64af-5cce-42ab-93bc-e9b45d46b6e4,LIST_ACCOUNTS,hbciListAccounts,false +37415,dccc64af-5cce-42ab-93bc-e9b45d46b6e4,LIST_TRANSACTIONS,hbciListTransactions,false +37416,dccc64af-5cce-42ab-93bc-e9b45d46b6e4,AUTHORIZATION,,false +37417,dccc64af-5cce-42ab-93bc-e9b45d46b6e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37418,dccc64af-5cce-42ab-93bc-e9b45d46b6e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37419,dccc64af-5cce-42ab-93bc-e9b45d46b6e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37420,cd6deff8-85e2-4e5e-8aa7-59402d9ba715,LIST_ACCOUNTS,xs2aListAccounts,true -37421,cd6deff8-85e2-4e5e-8aa7-59402d9ba715,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37421,cd6deff8-85e2-4e5e-8aa7-59402d9ba715,LIST_TRANSACTIONS,xs2aListTransactions,true 37422,cd6deff8-85e2-4e5e-8aa7-59402d9ba715,AUTHORIZATION,,true 37423,cd6deff8-85e2-4e5e-8aa7-59402d9ba715,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37424,cd6deff8-85e2-4e5e-8aa7-59402d9ba715,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37425,cd6deff8-85e2-4e5e-8aa7-59402d9ba715,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37426,f776345c-1499-4648-855e-36b83379e461,LIST_ACCOUNTS,hbciListAccounts,false -37427,f776345c-1499-4648-855e-36b83379e461,LIST_TRANSACTIONS,hbciListTransactions,false -37428,f776345c-1499-4648-855e-36b83379e461,AUTHORIZATION,,false -37429,f776345c-1499-4648-855e-36b83379e461,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37430,f776345c-1499-4648-855e-36b83379e461,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37431,f776345c-1499-4648-855e-36b83379e461,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37426,b5638130-4237-45e0-9860-56f4e454d418,LIST_ACCOUNTS,hbciListAccounts,false +37427,b5638130-4237-45e0-9860-56f4e454d418,LIST_TRANSACTIONS,hbciListTransactions,false +37428,b5638130-4237-45e0-9860-56f4e454d418,AUTHORIZATION,,false +37429,b5638130-4237-45e0-9860-56f4e454d418,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37430,b5638130-4237-45e0-9860-56f4e454d418,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37431,b5638130-4237-45e0-9860-56f4e454d418,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37432,8ae8e901-8d13-41f2-b5c0-eea1f8e70ee0,LIST_ACCOUNTS,xs2aListAccounts,true -37433,8ae8e901-8d13-41f2-b5c0-eea1f8e70ee0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37433,8ae8e901-8d13-41f2-b5c0-eea1f8e70ee0,LIST_TRANSACTIONS,xs2aListTransactions,true 37434,8ae8e901-8d13-41f2-b5c0-eea1f8e70ee0,AUTHORIZATION,,true 37435,8ae8e901-8d13-41f2-b5c0-eea1f8e70ee0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37436,8ae8e901-8d13-41f2-b5c0-eea1f8e70ee0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37437,8ae8e901-8d13-41f2-b5c0-eea1f8e70ee0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37438,039fcbaf-a74c-45ed-b863-0bed9bf33d43,LIST_ACCOUNTS,hbciListAccounts,false -37439,039fcbaf-a74c-45ed-b863-0bed9bf33d43,LIST_TRANSACTIONS,hbciListTransactions,false -37440,039fcbaf-a74c-45ed-b863-0bed9bf33d43,AUTHORIZATION,,false -37441,039fcbaf-a74c-45ed-b863-0bed9bf33d43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37442,039fcbaf-a74c-45ed-b863-0bed9bf33d43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37443,039fcbaf-a74c-45ed-b863-0bed9bf33d43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37438,0c31c211-911f-4e31-81ab-773788b32413,LIST_ACCOUNTS,hbciListAccounts,false +37439,0c31c211-911f-4e31-81ab-773788b32413,LIST_TRANSACTIONS,hbciListTransactions,false +37440,0c31c211-911f-4e31-81ab-773788b32413,AUTHORIZATION,,false +37441,0c31c211-911f-4e31-81ab-773788b32413,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37442,0c31c211-911f-4e31-81ab-773788b32413,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37443,0c31c211-911f-4e31-81ab-773788b32413,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37444,1797cd1a-91c3-47e0-9876-871b51907bab,LIST_ACCOUNTS,xs2aListAccounts,true -37445,1797cd1a-91c3-47e0-9876-871b51907bab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37445,1797cd1a-91c3-47e0-9876-871b51907bab,LIST_TRANSACTIONS,xs2aListTransactions,true 37446,1797cd1a-91c3-47e0-9876-871b51907bab,AUTHORIZATION,,true 37447,1797cd1a-91c3-47e0-9876-871b51907bab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37448,1797cd1a-91c3-47e0-9876-871b51907bab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37449,1797cd1a-91c3-47e0-9876-871b51907bab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37450,2ce97dfb-f37c-4883-8f6a-7da659c847eb,LIST_ACCOUNTS,hbciListAccounts,false -37451,2ce97dfb-f37c-4883-8f6a-7da659c847eb,LIST_TRANSACTIONS,hbciListTransactions,false -37452,2ce97dfb-f37c-4883-8f6a-7da659c847eb,AUTHORIZATION,,false -37453,2ce97dfb-f37c-4883-8f6a-7da659c847eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37454,2ce97dfb-f37c-4883-8f6a-7da659c847eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37455,2ce97dfb-f37c-4883-8f6a-7da659c847eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37450,fe729a68-b5cf-42f0-926f-85150202ddda,LIST_ACCOUNTS,hbciListAccounts,false +37451,fe729a68-b5cf-42f0-926f-85150202ddda,LIST_TRANSACTIONS,hbciListTransactions,false +37452,fe729a68-b5cf-42f0-926f-85150202ddda,AUTHORIZATION,,false +37453,fe729a68-b5cf-42f0-926f-85150202ddda,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37454,fe729a68-b5cf-42f0-926f-85150202ddda,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37455,fe729a68-b5cf-42f0-926f-85150202ddda,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37456,b2ce3998-ef3e-47c9-8e95-d0683d67a16a,LIST_ACCOUNTS,xs2aListAccounts,true -37457,b2ce3998-ef3e-47c9-8e95-d0683d67a16a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37457,b2ce3998-ef3e-47c9-8e95-d0683d67a16a,LIST_TRANSACTIONS,xs2aListTransactions,true 37458,b2ce3998-ef3e-47c9-8e95-d0683d67a16a,AUTHORIZATION,,true 37459,b2ce3998-ef3e-47c9-8e95-d0683d67a16a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37460,b2ce3998-ef3e-47c9-8e95-d0683d67a16a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37461,b2ce3998-ef3e-47c9-8e95-d0683d67a16a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37462,18b2d1fe-0c92-4cd3-9801-62134ae96e83,LIST_ACCOUNTS,hbciListAccounts,false -37463,18b2d1fe-0c92-4cd3-9801-62134ae96e83,LIST_TRANSACTIONS,hbciListTransactions,false -37464,18b2d1fe-0c92-4cd3-9801-62134ae96e83,AUTHORIZATION,,false -37465,18b2d1fe-0c92-4cd3-9801-62134ae96e83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37466,18b2d1fe-0c92-4cd3-9801-62134ae96e83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37467,18b2d1fe-0c92-4cd3-9801-62134ae96e83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37462,839b1363-123d-4e85-8f35-35ea8b88a4c2,LIST_ACCOUNTS,hbciListAccounts,false +37463,839b1363-123d-4e85-8f35-35ea8b88a4c2,LIST_TRANSACTIONS,hbciListTransactions,false +37464,839b1363-123d-4e85-8f35-35ea8b88a4c2,AUTHORIZATION,,false +37465,839b1363-123d-4e85-8f35-35ea8b88a4c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37466,839b1363-123d-4e85-8f35-35ea8b88a4c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37467,839b1363-123d-4e85-8f35-35ea8b88a4c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37468,cc42e381-0d7e-4031-9f73-132342fdcd2c,LIST_ACCOUNTS,xs2aListAccounts,true -37469,cc42e381-0d7e-4031-9f73-132342fdcd2c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37469,cc42e381-0d7e-4031-9f73-132342fdcd2c,LIST_TRANSACTIONS,xs2aListTransactions,true 37470,cc42e381-0d7e-4031-9f73-132342fdcd2c,AUTHORIZATION,,true 37471,cc42e381-0d7e-4031-9f73-132342fdcd2c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37472,cc42e381-0d7e-4031-9f73-132342fdcd2c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37473,cc42e381-0d7e-4031-9f73-132342fdcd2c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37474,344c086b-6dd5-458d-b888-4371470cfbc8,LIST_ACCOUNTS,hbciListAccounts,false -37475,344c086b-6dd5-458d-b888-4371470cfbc8,LIST_TRANSACTIONS,hbciListTransactions,false -37476,344c086b-6dd5-458d-b888-4371470cfbc8,AUTHORIZATION,,false -37477,344c086b-6dd5-458d-b888-4371470cfbc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37478,344c086b-6dd5-458d-b888-4371470cfbc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37479,344c086b-6dd5-458d-b888-4371470cfbc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37474,be3eceba-1c00-4be2-a183-50e3118a8e94,LIST_ACCOUNTS,hbciListAccounts,false +37475,be3eceba-1c00-4be2-a183-50e3118a8e94,LIST_TRANSACTIONS,hbciListTransactions,false +37476,be3eceba-1c00-4be2-a183-50e3118a8e94,AUTHORIZATION,,false +37477,be3eceba-1c00-4be2-a183-50e3118a8e94,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37478,be3eceba-1c00-4be2-a183-50e3118a8e94,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37479,be3eceba-1c00-4be2-a183-50e3118a8e94,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37480,0750c792-cd85-4e87-8043-45291ab6fe02,LIST_ACCOUNTS,xs2aListAccounts,true -37481,0750c792-cd85-4e87-8043-45291ab6fe02,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37481,0750c792-cd85-4e87-8043-45291ab6fe02,LIST_TRANSACTIONS,xs2aListTransactions,true 37482,0750c792-cd85-4e87-8043-45291ab6fe02,AUTHORIZATION,,true 37483,0750c792-cd85-4e87-8043-45291ab6fe02,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37484,0750c792-cd85-4e87-8043-45291ab6fe02,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37485,0750c792-cd85-4e87-8043-45291ab6fe02,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37486,766c6449-d089-4fd4-b066-27ced020cf3f,LIST_ACCOUNTS,hbciListAccounts,false -37487,766c6449-d089-4fd4-b066-27ced020cf3f,LIST_TRANSACTIONS,hbciListTransactions,false -37488,766c6449-d089-4fd4-b066-27ced020cf3f,AUTHORIZATION,,false -37489,766c6449-d089-4fd4-b066-27ced020cf3f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37490,766c6449-d089-4fd4-b066-27ced020cf3f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37491,766c6449-d089-4fd4-b066-27ced020cf3f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37486,95302dc8-db32-4ac5-a7ae-5522b69cc86d,LIST_ACCOUNTS,hbciListAccounts,false +37487,95302dc8-db32-4ac5-a7ae-5522b69cc86d,LIST_TRANSACTIONS,hbciListTransactions,false +37488,95302dc8-db32-4ac5-a7ae-5522b69cc86d,AUTHORIZATION,,false +37489,95302dc8-db32-4ac5-a7ae-5522b69cc86d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37490,95302dc8-db32-4ac5-a7ae-5522b69cc86d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37491,95302dc8-db32-4ac5-a7ae-5522b69cc86d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37492,b8e7916a-c984-4a39-8136-44a4f521e672,LIST_ACCOUNTS,xs2aListAccounts,true -37493,b8e7916a-c984-4a39-8136-44a4f521e672,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37493,b8e7916a-c984-4a39-8136-44a4f521e672,LIST_TRANSACTIONS,xs2aListTransactions,true 37494,b8e7916a-c984-4a39-8136-44a4f521e672,AUTHORIZATION,,true 37495,b8e7916a-c984-4a39-8136-44a4f521e672,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37496,b8e7916a-c984-4a39-8136-44a4f521e672,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37497,b8e7916a-c984-4a39-8136-44a4f521e672,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37498,45876e24-a07d-421e-ae7c-73c2c0b5a4df,LIST_ACCOUNTS,hbciListAccounts,false -37499,45876e24-a07d-421e-ae7c-73c2c0b5a4df,LIST_TRANSACTIONS,hbciListTransactions,false -37500,45876e24-a07d-421e-ae7c-73c2c0b5a4df,AUTHORIZATION,,false -37501,45876e24-a07d-421e-ae7c-73c2c0b5a4df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37502,45876e24-a07d-421e-ae7c-73c2c0b5a4df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37503,45876e24-a07d-421e-ae7c-73c2c0b5a4df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37498,d203ac37-16c2-486b-9dbd-2e88d315ee4c,LIST_ACCOUNTS,hbciListAccounts,false +37499,d203ac37-16c2-486b-9dbd-2e88d315ee4c,LIST_TRANSACTIONS,hbciListTransactions,false +37500,d203ac37-16c2-486b-9dbd-2e88d315ee4c,AUTHORIZATION,,false +37501,d203ac37-16c2-486b-9dbd-2e88d315ee4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37502,d203ac37-16c2-486b-9dbd-2e88d315ee4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37503,d203ac37-16c2-486b-9dbd-2e88d315ee4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37504,af9644f6-3541-4e1d-b58d-aa1cd4717120,LIST_ACCOUNTS,xs2aListAccounts,true -37505,af9644f6-3541-4e1d-b58d-aa1cd4717120,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37505,af9644f6-3541-4e1d-b58d-aa1cd4717120,LIST_TRANSACTIONS,xs2aListTransactions,true 37506,af9644f6-3541-4e1d-b58d-aa1cd4717120,AUTHORIZATION,,true 37507,af9644f6-3541-4e1d-b58d-aa1cd4717120,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37508,af9644f6-3541-4e1d-b58d-aa1cd4717120,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37509,af9644f6-3541-4e1d-b58d-aa1cd4717120,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37510,d388ff2e-60f8-4c73-b68c-e92a8c8f3ba2,LIST_ACCOUNTS,hbciListAccounts,false -37511,d388ff2e-60f8-4c73-b68c-e92a8c8f3ba2,LIST_TRANSACTIONS,hbciListTransactions,false -37512,d388ff2e-60f8-4c73-b68c-e92a8c8f3ba2,AUTHORIZATION,,false -37513,d388ff2e-60f8-4c73-b68c-e92a8c8f3ba2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37514,d388ff2e-60f8-4c73-b68c-e92a8c8f3ba2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37515,d388ff2e-60f8-4c73-b68c-e92a8c8f3ba2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37510,3dd0d735-b841-4148-8169-3183b19eb3f8,LIST_ACCOUNTS,hbciListAccounts,false +37511,3dd0d735-b841-4148-8169-3183b19eb3f8,LIST_TRANSACTIONS,hbciListTransactions,false +37512,3dd0d735-b841-4148-8169-3183b19eb3f8,AUTHORIZATION,,false +37513,3dd0d735-b841-4148-8169-3183b19eb3f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37514,3dd0d735-b841-4148-8169-3183b19eb3f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37515,3dd0d735-b841-4148-8169-3183b19eb3f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37516,e2d3e117-33e3-498e-b208-127c0728cfcb,LIST_ACCOUNTS,xs2aListAccounts,true -37517,e2d3e117-33e3-498e-b208-127c0728cfcb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37517,e2d3e117-33e3-498e-b208-127c0728cfcb,LIST_TRANSACTIONS,xs2aListTransactions,true 37518,e2d3e117-33e3-498e-b208-127c0728cfcb,AUTHORIZATION,,true 37519,e2d3e117-33e3-498e-b208-127c0728cfcb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37520,e2d3e117-33e3-498e-b208-127c0728cfcb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37521,e2d3e117-33e3-498e-b208-127c0728cfcb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37522,ece9104b-fe6f-45fc-8178-b85c358faab4,LIST_ACCOUNTS,hbciListAccounts,false -37523,ece9104b-fe6f-45fc-8178-b85c358faab4,LIST_TRANSACTIONS,hbciListTransactions,false -37524,ece9104b-fe6f-45fc-8178-b85c358faab4,AUTHORIZATION,,false -37525,ece9104b-fe6f-45fc-8178-b85c358faab4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37526,ece9104b-fe6f-45fc-8178-b85c358faab4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37527,ece9104b-fe6f-45fc-8178-b85c358faab4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37522,94b80d80-24dc-46c5-8fe7-c0ee913604d5,LIST_ACCOUNTS,hbciListAccounts,false +37523,94b80d80-24dc-46c5-8fe7-c0ee913604d5,LIST_TRANSACTIONS,hbciListTransactions,false +37524,94b80d80-24dc-46c5-8fe7-c0ee913604d5,AUTHORIZATION,,false +37525,94b80d80-24dc-46c5-8fe7-c0ee913604d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37526,94b80d80-24dc-46c5-8fe7-c0ee913604d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37527,94b80d80-24dc-46c5-8fe7-c0ee913604d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37528,84a9def8-02fb-4d21-b442-cb632f23ea19,LIST_ACCOUNTS,xs2aListAccounts,true -37529,84a9def8-02fb-4d21-b442-cb632f23ea19,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37529,84a9def8-02fb-4d21-b442-cb632f23ea19,LIST_TRANSACTIONS,xs2aListTransactions,true 37530,84a9def8-02fb-4d21-b442-cb632f23ea19,AUTHORIZATION,,true 37531,84a9def8-02fb-4d21-b442-cb632f23ea19,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37532,84a9def8-02fb-4d21-b442-cb632f23ea19,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37533,84a9def8-02fb-4d21-b442-cb632f23ea19,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37534,2e6caec8-4789-4a93-8739-364211020435,LIST_ACCOUNTS,hbciListAccounts,false -37535,2e6caec8-4789-4a93-8739-364211020435,LIST_TRANSACTIONS,hbciListTransactions,false -37536,2e6caec8-4789-4a93-8739-364211020435,AUTHORIZATION,,false -37537,2e6caec8-4789-4a93-8739-364211020435,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37538,2e6caec8-4789-4a93-8739-364211020435,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37539,2e6caec8-4789-4a93-8739-364211020435,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37534,0d1d740e-63ef-4241-9f8d-9419cb438b66,LIST_ACCOUNTS,hbciListAccounts,false +37535,0d1d740e-63ef-4241-9f8d-9419cb438b66,LIST_TRANSACTIONS,hbciListTransactions,false +37536,0d1d740e-63ef-4241-9f8d-9419cb438b66,AUTHORIZATION,,false +37537,0d1d740e-63ef-4241-9f8d-9419cb438b66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37538,0d1d740e-63ef-4241-9f8d-9419cb438b66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37539,0d1d740e-63ef-4241-9f8d-9419cb438b66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37540,c8b5498a-eb4a-48db-87ac-0ecfb14c96c8,LIST_ACCOUNTS,xs2aListAccounts,true -37541,c8b5498a-eb4a-48db-87ac-0ecfb14c96c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37541,c8b5498a-eb4a-48db-87ac-0ecfb14c96c8,LIST_TRANSACTIONS,xs2aListTransactions,true 37542,c8b5498a-eb4a-48db-87ac-0ecfb14c96c8,AUTHORIZATION,,true 37543,c8b5498a-eb4a-48db-87ac-0ecfb14c96c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37544,c8b5498a-eb4a-48db-87ac-0ecfb14c96c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37545,c8b5498a-eb4a-48db-87ac-0ecfb14c96c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37546,dfb11947-7f5b-45a7-87f3-972dfd042f0c,LIST_ACCOUNTS,hbciListAccounts,false -37547,dfb11947-7f5b-45a7-87f3-972dfd042f0c,LIST_TRANSACTIONS,hbciListTransactions,false -37548,dfb11947-7f5b-45a7-87f3-972dfd042f0c,AUTHORIZATION,,false -37549,dfb11947-7f5b-45a7-87f3-972dfd042f0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37550,dfb11947-7f5b-45a7-87f3-972dfd042f0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37551,dfb11947-7f5b-45a7-87f3-972dfd042f0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37546,7fcac28f-5d85-4556-bc83-97eb1b01e550,LIST_ACCOUNTS,hbciListAccounts,false +37547,7fcac28f-5d85-4556-bc83-97eb1b01e550,LIST_TRANSACTIONS,hbciListTransactions,false +37548,7fcac28f-5d85-4556-bc83-97eb1b01e550,AUTHORIZATION,,false +37549,7fcac28f-5d85-4556-bc83-97eb1b01e550,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37550,7fcac28f-5d85-4556-bc83-97eb1b01e550,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37551,7fcac28f-5d85-4556-bc83-97eb1b01e550,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37552,17ea9cb5-236d-47f0-accb-5070b7fd824e,LIST_ACCOUNTS,xs2aListAccounts,true -37553,17ea9cb5-236d-47f0-accb-5070b7fd824e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37553,17ea9cb5-236d-47f0-accb-5070b7fd824e,LIST_TRANSACTIONS,xs2aListTransactions,true 37554,17ea9cb5-236d-47f0-accb-5070b7fd824e,AUTHORIZATION,,true 37555,17ea9cb5-236d-47f0-accb-5070b7fd824e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37556,17ea9cb5-236d-47f0-accb-5070b7fd824e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37557,17ea9cb5-236d-47f0-accb-5070b7fd824e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37558,7e546a23-6999-4008-9e10-5d9d0b5f7ae1,LIST_ACCOUNTS,hbciListAccounts,false -37559,7e546a23-6999-4008-9e10-5d9d0b5f7ae1,LIST_TRANSACTIONS,hbciListTransactions,false -37560,7e546a23-6999-4008-9e10-5d9d0b5f7ae1,AUTHORIZATION,,false -37561,7e546a23-6999-4008-9e10-5d9d0b5f7ae1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37562,7e546a23-6999-4008-9e10-5d9d0b5f7ae1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37563,7e546a23-6999-4008-9e10-5d9d0b5f7ae1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37558,990bdb7b-2cfc-4975-b535-e6e3e5bbea32,LIST_ACCOUNTS,hbciListAccounts,false +37559,990bdb7b-2cfc-4975-b535-e6e3e5bbea32,LIST_TRANSACTIONS,hbciListTransactions,false +37560,990bdb7b-2cfc-4975-b535-e6e3e5bbea32,AUTHORIZATION,,false +37561,990bdb7b-2cfc-4975-b535-e6e3e5bbea32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37562,990bdb7b-2cfc-4975-b535-e6e3e5bbea32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37563,990bdb7b-2cfc-4975-b535-e6e3e5bbea32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37564,b8021193-6851-4cdd-a368-7509b96e173d,LIST_ACCOUNTS,xs2aListAccounts,true -37565,b8021193-6851-4cdd-a368-7509b96e173d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37565,b8021193-6851-4cdd-a368-7509b96e173d,LIST_TRANSACTIONS,xs2aListTransactions,true 37566,b8021193-6851-4cdd-a368-7509b96e173d,AUTHORIZATION,,true 37567,b8021193-6851-4cdd-a368-7509b96e173d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37568,b8021193-6851-4cdd-a368-7509b96e173d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37569,b8021193-6851-4cdd-a368-7509b96e173d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37570,7b82315a-238f-4feb-96c9-9a89a72d5ae6,LIST_ACCOUNTS,hbciListAccounts,false -37571,7b82315a-238f-4feb-96c9-9a89a72d5ae6,LIST_TRANSACTIONS,hbciListTransactions,false -37572,7b82315a-238f-4feb-96c9-9a89a72d5ae6,AUTHORIZATION,,false -37573,7b82315a-238f-4feb-96c9-9a89a72d5ae6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37574,7b82315a-238f-4feb-96c9-9a89a72d5ae6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37575,7b82315a-238f-4feb-96c9-9a89a72d5ae6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37570,edab3fb8-8237-4f9d-b3d5-3d52ce343029,LIST_ACCOUNTS,hbciListAccounts,false +37571,edab3fb8-8237-4f9d-b3d5-3d52ce343029,LIST_TRANSACTIONS,hbciListTransactions,false +37572,edab3fb8-8237-4f9d-b3d5-3d52ce343029,AUTHORIZATION,,false +37573,edab3fb8-8237-4f9d-b3d5-3d52ce343029,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37574,edab3fb8-8237-4f9d-b3d5-3d52ce343029,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37575,edab3fb8-8237-4f9d-b3d5-3d52ce343029,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37576,a79adb12-b3f7-46e5-be35-fbfece60f7ca,LIST_ACCOUNTS,xs2aListAccounts,true -37577,a79adb12-b3f7-46e5-be35-fbfece60f7ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37577,a79adb12-b3f7-46e5-be35-fbfece60f7ca,LIST_TRANSACTIONS,xs2aListTransactions,true 37578,a79adb12-b3f7-46e5-be35-fbfece60f7ca,AUTHORIZATION,,true 37579,a79adb12-b3f7-46e5-be35-fbfece60f7ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37580,a79adb12-b3f7-46e5-be35-fbfece60f7ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37581,a79adb12-b3f7-46e5-be35-fbfece60f7ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37582,5af72aaa-eb90-44e7-9da9-57f18604b7b1,LIST_ACCOUNTS,hbciListAccounts,false -37583,5af72aaa-eb90-44e7-9da9-57f18604b7b1,LIST_TRANSACTIONS,hbciListTransactions,false -37584,5af72aaa-eb90-44e7-9da9-57f18604b7b1,AUTHORIZATION,,false -37585,5af72aaa-eb90-44e7-9da9-57f18604b7b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37586,5af72aaa-eb90-44e7-9da9-57f18604b7b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37587,5af72aaa-eb90-44e7-9da9-57f18604b7b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37582,03452069-e4d6-4fd2-9915-015a6487bb7b,LIST_ACCOUNTS,hbciListAccounts,false +37583,03452069-e4d6-4fd2-9915-015a6487bb7b,LIST_TRANSACTIONS,hbciListTransactions,false +37584,03452069-e4d6-4fd2-9915-015a6487bb7b,AUTHORIZATION,,false +37585,03452069-e4d6-4fd2-9915-015a6487bb7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37586,03452069-e4d6-4fd2-9915-015a6487bb7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37587,03452069-e4d6-4fd2-9915-015a6487bb7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37588,42311007-dd1d-481f-a6cf-ad1c3680e6b5,LIST_ACCOUNTS,xs2aListAccounts,true -37589,42311007-dd1d-481f-a6cf-ad1c3680e6b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37589,42311007-dd1d-481f-a6cf-ad1c3680e6b5,LIST_TRANSACTIONS,xs2aListTransactions,true 37590,42311007-dd1d-481f-a6cf-ad1c3680e6b5,AUTHORIZATION,,true 37591,42311007-dd1d-481f-a6cf-ad1c3680e6b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37592,42311007-dd1d-481f-a6cf-ad1c3680e6b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37593,42311007-dd1d-481f-a6cf-ad1c3680e6b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37594,31513d29-2be8-4ab4-9ab0-73c78b797fa2,LIST_ACCOUNTS,hbciListAccounts,false -37595,31513d29-2be8-4ab4-9ab0-73c78b797fa2,LIST_TRANSACTIONS,hbciListTransactions,false -37596,31513d29-2be8-4ab4-9ab0-73c78b797fa2,AUTHORIZATION,,false -37597,31513d29-2be8-4ab4-9ab0-73c78b797fa2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37598,31513d29-2be8-4ab4-9ab0-73c78b797fa2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37599,31513d29-2be8-4ab4-9ab0-73c78b797fa2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37594,d6690568-e58f-4944-938c-0c79cf18801a,LIST_ACCOUNTS,hbciListAccounts,false +37595,d6690568-e58f-4944-938c-0c79cf18801a,LIST_TRANSACTIONS,hbciListTransactions,false +37596,d6690568-e58f-4944-938c-0c79cf18801a,AUTHORIZATION,,false +37597,d6690568-e58f-4944-938c-0c79cf18801a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37598,d6690568-e58f-4944-938c-0c79cf18801a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37599,d6690568-e58f-4944-938c-0c79cf18801a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37600,15cfcdd1-1cbc-4980-af22-ec0903422f6f,LIST_ACCOUNTS,xs2aListAccounts,true -37601,15cfcdd1-1cbc-4980-af22-ec0903422f6f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37601,15cfcdd1-1cbc-4980-af22-ec0903422f6f,LIST_TRANSACTIONS,xs2aListTransactions,true 37602,15cfcdd1-1cbc-4980-af22-ec0903422f6f,AUTHORIZATION,,true 37603,15cfcdd1-1cbc-4980-af22-ec0903422f6f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37604,15cfcdd1-1cbc-4980-af22-ec0903422f6f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37605,15cfcdd1-1cbc-4980-af22-ec0903422f6f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37606,a800c4de-1953-4cf6-a585-4fda3730e76a,LIST_ACCOUNTS,hbciListAccounts,false -37607,a800c4de-1953-4cf6-a585-4fda3730e76a,LIST_TRANSACTIONS,hbciListTransactions,false -37608,a800c4de-1953-4cf6-a585-4fda3730e76a,AUTHORIZATION,,false -37609,a800c4de-1953-4cf6-a585-4fda3730e76a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37610,a800c4de-1953-4cf6-a585-4fda3730e76a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37611,a800c4de-1953-4cf6-a585-4fda3730e76a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37606,cf1d04c9-7e0b-488b-93d2-8d91be54d156,LIST_ACCOUNTS,hbciListAccounts,false +37607,cf1d04c9-7e0b-488b-93d2-8d91be54d156,LIST_TRANSACTIONS,hbciListTransactions,false +37608,cf1d04c9-7e0b-488b-93d2-8d91be54d156,AUTHORIZATION,,false +37609,cf1d04c9-7e0b-488b-93d2-8d91be54d156,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37610,cf1d04c9-7e0b-488b-93d2-8d91be54d156,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37611,cf1d04c9-7e0b-488b-93d2-8d91be54d156,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37612,4eb1f35e-2b54-4f56-9f29-8c7982318e4a,LIST_ACCOUNTS,xs2aListAccounts,true -37613,4eb1f35e-2b54-4f56-9f29-8c7982318e4a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37613,4eb1f35e-2b54-4f56-9f29-8c7982318e4a,LIST_TRANSACTIONS,xs2aListTransactions,true 37614,4eb1f35e-2b54-4f56-9f29-8c7982318e4a,AUTHORIZATION,,true 37615,4eb1f35e-2b54-4f56-9f29-8c7982318e4a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37616,4eb1f35e-2b54-4f56-9f29-8c7982318e4a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37617,4eb1f35e-2b54-4f56-9f29-8c7982318e4a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37618,da111c00-50ac-4111-a383-7269942baa39,LIST_ACCOUNTS,hbciListAccounts,false -37619,da111c00-50ac-4111-a383-7269942baa39,LIST_TRANSACTIONS,hbciListTransactions,false -37620,da111c00-50ac-4111-a383-7269942baa39,AUTHORIZATION,,false -37621,da111c00-50ac-4111-a383-7269942baa39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37622,da111c00-50ac-4111-a383-7269942baa39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37623,da111c00-50ac-4111-a383-7269942baa39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37618,c8cda851-3907-4540-80c3-43c82d80d210,LIST_ACCOUNTS,hbciListAccounts,false +37619,c8cda851-3907-4540-80c3-43c82d80d210,LIST_TRANSACTIONS,hbciListTransactions,false +37620,c8cda851-3907-4540-80c3-43c82d80d210,AUTHORIZATION,,false +37621,c8cda851-3907-4540-80c3-43c82d80d210,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37622,c8cda851-3907-4540-80c3-43c82d80d210,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37623,c8cda851-3907-4540-80c3-43c82d80d210,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37624,9f90e077-2914-49bd-9d03-da30ff417821,LIST_ACCOUNTS,xs2aListAccounts,true -37625,9f90e077-2914-49bd-9d03-da30ff417821,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37625,9f90e077-2914-49bd-9d03-da30ff417821,LIST_TRANSACTIONS,xs2aListTransactions,true 37626,9f90e077-2914-49bd-9d03-da30ff417821,AUTHORIZATION,,true 37627,9f90e077-2914-49bd-9d03-da30ff417821,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37628,9f90e077-2914-49bd-9d03-da30ff417821,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37629,9f90e077-2914-49bd-9d03-da30ff417821,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37630,677e6ddb-6b1f-40ff-8e37-7b958100f69d,LIST_ACCOUNTS,hbciListAccounts,false -37631,677e6ddb-6b1f-40ff-8e37-7b958100f69d,LIST_TRANSACTIONS,hbciListTransactions,false -37632,677e6ddb-6b1f-40ff-8e37-7b958100f69d,AUTHORIZATION,,false -37633,677e6ddb-6b1f-40ff-8e37-7b958100f69d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37634,677e6ddb-6b1f-40ff-8e37-7b958100f69d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37635,677e6ddb-6b1f-40ff-8e37-7b958100f69d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37630,7b42c5e4-7c9a-46fb-a6f0-086ea48588dc,LIST_ACCOUNTS,hbciListAccounts,false +37631,7b42c5e4-7c9a-46fb-a6f0-086ea48588dc,LIST_TRANSACTIONS,hbciListTransactions,false +37632,7b42c5e4-7c9a-46fb-a6f0-086ea48588dc,AUTHORIZATION,,false +37633,7b42c5e4-7c9a-46fb-a6f0-086ea48588dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37634,7b42c5e4-7c9a-46fb-a6f0-086ea48588dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37635,7b42c5e4-7c9a-46fb-a6f0-086ea48588dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37636,01fd66bd-0e64-40b2-b4a9-9b525526ba5d,LIST_ACCOUNTS,xs2aListAccounts,true -37637,01fd66bd-0e64-40b2-b4a9-9b525526ba5d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37637,01fd66bd-0e64-40b2-b4a9-9b525526ba5d,LIST_TRANSACTIONS,xs2aListTransactions,true 37638,01fd66bd-0e64-40b2-b4a9-9b525526ba5d,AUTHORIZATION,,true 37639,01fd66bd-0e64-40b2-b4a9-9b525526ba5d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37640,01fd66bd-0e64-40b2-b4a9-9b525526ba5d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37641,01fd66bd-0e64-40b2-b4a9-9b525526ba5d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37642,7a75eb48-050a-4f53-ac45-30b3c3780e8c,LIST_ACCOUNTS,hbciListAccounts,false -37643,7a75eb48-050a-4f53-ac45-30b3c3780e8c,LIST_TRANSACTIONS,hbciListTransactions,false -37644,7a75eb48-050a-4f53-ac45-30b3c3780e8c,AUTHORIZATION,,false -37645,7a75eb48-050a-4f53-ac45-30b3c3780e8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37646,7a75eb48-050a-4f53-ac45-30b3c3780e8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37647,7a75eb48-050a-4f53-ac45-30b3c3780e8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37642,8b29bd63-4b5f-4159-8943-63624e480013,LIST_ACCOUNTS,hbciListAccounts,false +37643,8b29bd63-4b5f-4159-8943-63624e480013,LIST_TRANSACTIONS,hbciListTransactions,false +37644,8b29bd63-4b5f-4159-8943-63624e480013,AUTHORIZATION,,false +37645,8b29bd63-4b5f-4159-8943-63624e480013,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37646,8b29bd63-4b5f-4159-8943-63624e480013,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37647,8b29bd63-4b5f-4159-8943-63624e480013,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37648,171239d1-afb9-4dbe-abb7-5695f8d144fd,LIST_ACCOUNTS,xs2aListAccounts,true -37649,171239d1-afb9-4dbe-abb7-5695f8d144fd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37649,171239d1-afb9-4dbe-abb7-5695f8d144fd,LIST_TRANSACTIONS,xs2aListTransactions,true 37650,171239d1-afb9-4dbe-abb7-5695f8d144fd,AUTHORIZATION,,true 37651,171239d1-afb9-4dbe-abb7-5695f8d144fd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37652,171239d1-afb9-4dbe-abb7-5695f8d144fd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37653,171239d1-afb9-4dbe-abb7-5695f8d144fd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37654,7af335fb-63db-49a3-a466-8fc8f1504455,LIST_ACCOUNTS,hbciListAccounts,false -37655,7af335fb-63db-49a3-a466-8fc8f1504455,LIST_TRANSACTIONS,hbciListTransactions,false -37656,7af335fb-63db-49a3-a466-8fc8f1504455,AUTHORIZATION,,false -37657,7af335fb-63db-49a3-a466-8fc8f1504455,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37658,7af335fb-63db-49a3-a466-8fc8f1504455,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37659,7af335fb-63db-49a3-a466-8fc8f1504455,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37654,1b27dea5-3cc7-49d6-8bcc-1453cf99058e,LIST_ACCOUNTS,hbciListAccounts,false +37655,1b27dea5-3cc7-49d6-8bcc-1453cf99058e,LIST_TRANSACTIONS,hbciListTransactions,false +37656,1b27dea5-3cc7-49d6-8bcc-1453cf99058e,AUTHORIZATION,,false +37657,1b27dea5-3cc7-49d6-8bcc-1453cf99058e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37658,1b27dea5-3cc7-49d6-8bcc-1453cf99058e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37659,1b27dea5-3cc7-49d6-8bcc-1453cf99058e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37660,723982cd-9a68-4ad0-a096-e623037b939e,LIST_ACCOUNTS,xs2aListAccounts,true -37661,723982cd-9a68-4ad0-a096-e623037b939e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37661,723982cd-9a68-4ad0-a096-e623037b939e,LIST_TRANSACTIONS,xs2aListTransactions,true 37662,723982cd-9a68-4ad0-a096-e623037b939e,AUTHORIZATION,,true 37663,723982cd-9a68-4ad0-a096-e623037b939e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37664,723982cd-9a68-4ad0-a096-e623037b939e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37665,723982cd-9a68-4ad0-a096-e623037b939e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37666,632ca6f5-42e0-49ab-876a-ba2c09876edf,LIST_ACCOUNTS,hbciListAccounts,false -37667,632ca6f5-42e0-49ab-876a-ba2c09876edf,LIST_TRANSACTIONS,hbciListTransactions,false -37668,632ca6f5-42e0-49ab-876a-ba2c09876edf,AUTHORIZATION,,false -37669,632ca6f5-42e0-49ab-876a-ba2c09876edf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37670,632ca6f5-42e0-49ab-876a-ba2c09876edf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37671,632ca6f5-42e0-49ab-876a-ba2c09876edf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37666,7cb82367-f0ed-4e15-bca7-5ffc51eb30af,LIST_ACCOUNTS,hbciListAccounts,false +37667,7cb82367-f0ed-4e15-bca7-5ffc51eb30af,LIST_TRANSACTIONS,hbciListTransactions,false +37668,7cb82367-f0ed-4e15-bca7-5ffc51eb30af,AUTHORIZATION,,false +37669,7cb82367-f0ed-4e15-bca7-5ffc51eb30af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37670,7cb82367-f0ed-4e15-bca7-5ffc51eb30af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37671,7cb82367-f0ed-4e15-bca7-5ffc51eb30af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37672,0c4b02fc-9271-4feb-a619-43745f84ca9e,LIST_ACCOUNTS,xs2aListAccounts,true -37673,0c4b02fc-9271-4feb-a619-43745f84ca9e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37673,0c4b02fc-9271-4feb-a619-43745f84ca9e,LIST_TRANSACTIONS,xs2aListTransactions,true 37674,0c4b02fc-9271-4feb-a619-43745f84ca9e,AUTHORIZATION,,true 37675,0c4b02fc-9271-4feb-a619-43745f84ca9e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37676,0c4b02fc-9271-4feb-a619-43745f84ca9e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37677,0c4b02fc-9271-4feb-a619-43745f84ca9e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37678,aab6dda7-27ce-4aab-88ce-657b005032d7,LIST_ACCOUNTS,hbciListAccounts,false -37679,aab6dda7-27ce-4aab-88ce-657b005032d7,LIST_TRANSACTIONS,hbciListTransactions,false -37680,aab6dda7-27ce-4aab-88ce-657b005032d7,AUTHORIZATION,,false -37681,aab6dda7-27ce-4aab-88ce-657b005032d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37682,aab6dda7-27ce-4aab-88ce-657b005032d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37683,aab6dda7-27ce-4aab-88ce-657b005032d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37678,1a1fe2ba-fe94-4e40-907b-c95e8f42e0b1,LIST_ACCOUNTS,hbciListAccounts,false +37679,1a1fe2ba-fe94-4e40-907b-c95e8f42e0b1,LIST_TRANSACTIONS,hbciListTransactions,false +37680,1a1fe2ba-fe94-4e40-907b-c95e8f42e0b1,AUTHORIZATION,,false +37681,1a1fe2ba-fe94-4e40-907b-c95e8f42e0b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37682,1a1fe2ba-fe94-4e40-907b-c95e8f42e0b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37683,1a1fe2ba-fe94-4e40-907b-c95e8f42e0b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37684,80dc195f-f1fc-4183-b88d-0299b0737c0f,LIST_ACCOUNTS,xs2aListAccounts,true -37685,80dc195f-f1fc-4183-b88d-0299b0737c0f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37685,80dc195f-f1fc-4183-b88d-0299b0737c0f,LIST_TRANSACTIONS,xs2aListTransactions,true 37686,80dc195f-f1fc-4183-b88d-0299b0737c0f,AUTHORIZATION,,true 37687,80dc195f-f1fc-4183-b88d-0299b0737c0f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37688,80dc195f-f1fc-4183-b88d-0299b0737c0f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37689,80dc195f-f1fc-4183-b88d-0299b0737c0f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37690,aec9df15-3e40-4c74-b89d-80c9197f4331,LIST_ACCOUNTS,hbciListAccounts,false -37691,aec9df15-3e40-4c74-b89d-80c9197f4331,LIST_TRANSACTIONS,hbciListTransactions,false -37692,aec9df15-3e40-4c74-b89d-80c9197f4331,AUTHORIZATION,,false -37693,aec9df15-3e40-4c74-b89d-80c9197f4331,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37694,aec9df15-3e40-4c74-b89d-80c9197f4331,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37695,aec9df15-3e40-4c74-b89d-80c9197f4331,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37690,3bff427a-dc5f-4ae9-844d-0e6532c688fa,LIST_ACCOUNTS,hbciListAccounts,false +37691,3bff427a-dc5f-4ae9-844d-0e6532c688fa,LIST_TRANSACTIONS,hbciListTransactions,false +37692,3bff427a-dc5f-4ae9-844d-0e6532c688fa,AUTHORIZATION,,false +37693,3bff427a-dc5f-4ae9-844d-0e6532c688fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37694,3bff427a-dc5f-4ae9-844d-0e6532c688fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37695,3bff427a-dc5f-4ae9-844d-0e6532c688fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37696,7262f149-0629-453f-ae19-96da41963f07,LIST_ACCOUNTS,xs2aListAccounts,true -37697,7262f149-0629-453f-ae19-96da41963f07,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37697,7262f149-0629-453f-ae19-96da41963f07,LIST_TRANSACTIONS,xs2aListTransactions,true 37698,7262f149-0629-453f-ae19-96da41963f07,AUTHORIZATION,,true 37699,7262f149-0629-453f-ae19-96da41963f07,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37700,7262f149-0629-453f-ae19-96da41963f07,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37701,7262f149-0629-453f-ae19-96da41963f07,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37702,c97d0a0a-9ec4-4145-bb7b-67caf33a0bb6,LIST_ACCOUNTS,hbciListAccounts,false -37703,c97d0a0a-9ec4-4145-bb7b-67caf33a0bb6,LIST_TRANSACTIONS,hbciListTransactions,false -37704,c97d0a0a-9ec4-4145-bb7b-67caf33a0bb6,AUTHORIZATION,,false -37705,c97d0a0a-9ec4-4145-bb7b-67caf33a0bb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37706,c97d0a0a-9ec4-4145-bb7b-67caf33a0bb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37707,c97d0a0a-9ec4-4145-bb7b-67caf33a0bb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37702,b8ee9603-04ec-4d1e-ad0b-eff95f0f4a0a,LIST_ACCOUNTS,hbciListAccounts,false +37703,b8ee9603-04ec-4d1e-ad0b-eff95f0f4a0a,LIST_TRANSACTIONS,hbciListTransactions,false +37704,b8ee9603-04ec-4d1e-ad0b-eff95f0f4a0a,AUTHORIZATION,,false +37705,b8ee9603-04ec-4d1e-ad0b-eff95f0f4a0a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37706,b8ee9603-04ec-4d1e-ad0b-eff95f0f4a0a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37707,b8ee9603-04ec-4d1e-ad0b-eff95f0f4a0a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37708,9c0617f4-057a-40fc-9d64-5db9fa988ade,LIST_ACCOUNTS,xs2aListAccounts,true -37709,9c0617f4-057a-40fc-9d64-5db9fa988ade,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37709,9c0617f4-057a-40fc-9d64-5db9fa988ade,LIST_TRANSACTIONS,xs2aListTransactions,true 37710,9c0617f4-057a-40fc-9d64-5db9fa988ade,AUTHORIZATION,,true 37711,9c0617f4-057a-40fc-9d64-5db9fa988ade,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37712,9c0617f4-057a-40fc-9d64-5db9fa988ade,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37713,9c0617f4-057a-40fc-9d64-5db9fa988ade,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37714,6045e91f-f044-4b18-af0f-815543eddbb1,LIST_ACCOUNTS,hbciListAccounts,false -37715,6045e91f-f044-4b18-af0f-815543eddbb1,LIST_TRANSACTIONS,hbciListTransactions,false -37716,6045e91f-f044-4b18-af0f-815543eddbb1,AUTHORIZATION,,false -37717,6045e91f-f044-4b18-af0f-815543eddbb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37718,6045e91f-f044-4b18-af0f-815543eddbb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37719,6045e91f-f044-4b18-af0f-815543eddbb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37714,f986f0cd-d277-45f9-9989-fbd356b96631,LIST_ACCOUNTS,hbciListAccounts,false +37715,f986f0cd-d277-45f9-9989-fbd356b96631,LIST_TRANSACTIONS,hbciListTransactions,false +37716,f986f0cd-d277-45f9-9989-fbd356b96631,AUTHORIZATION,,false +37717,f986f0cd-d277-45f9-9989-fbd356b96631,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37718,f986f0cd-d277-45f9-9989-fbd356b96631,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37719,f986f0cd-d277-45f9-9989-fbd356b96631,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37720,60bf0d5e-3840-40ae-b555-27e24bb91ac1,LIST_ACCOUNTS,xs2aListAccounts,true -37721,60bf0d5e-3840-40ae-b555-27e24bb91ac1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37721,60bf0d5e-3840-40ae-b555-27e24bb91ac1,LIST_TRANSACTIONS,xs2aListTransactions,true 37722,60bf0d5e-3840-40ae-b555-27e24bb91ac1,AUTHORIZATION,,true 37723,60bf0d5e-3840-40ae-b555-27e24bb91ac1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37724,60bf0d5e-3840-40ae-b555-27e24bb91ac1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37725,60bf0d5e-3840-40ae-b555-27e24bb91ac1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37726,c464b583-0f94-4791-ba71-4a7fecb0f1dd,LIST_ACCOUNTS,hbciListAccounts,false -37727,c464b583-0f94-4791-ba71-4a7fecb0f1dd,LIST_TRANSACTIONS,hbciListTransactions,false -37728,c464b583-0f94-4791-ba71-4a7fecb0f1dd,AUTHORIZATION,,false -37729,c464b583-0f94-4791-ba71-4a7fecb0f1dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37730,c464b583-0f94-4791-ba71-4a7fecb0f1dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37731,c464b583-0f94-4791-ba71-4a7fecb0f1dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37726,220b28ac-7d23-4e8b-b4da-6768223514e8,LIST_ACCOUNTS,hbciListAccounts,false +37727,220b28ac-7d23-4e8b-b4da-6768223514e8,LIST_TRANSACTIONS,hbciListTransactions,false +37728,220b28ac-7d23-4e8b-b4da-6768223514e8,AUTHORIZATION,,false +37729,220b28ac-7d23-4e8b-b4da-6768223514e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37730,220b28ac-7d23-4e8b-b4da-6768223514e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37731,220b28ac-7d23-4e8b-b4da-6768223514e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37732,087038c8-2fb0-4b36-ad0f-5968eb447c20,LIST_ACCOUNTS,xs2aListAccounts,true -37733,087038c8-2fb0-4b36-ad0f-5968eb447c20,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37733,087038c8-2fb0-4b36-ad0f-5968eb447c20,LIST_TRANSACTIONS,xs2aListTransactions,true 37734,087038c8-2fb0-4b36-ad0f-5968eb447c20,AUTHORIZATION,,true 37735,087038c8-2fb0-4b36-ad0f-5968eb447c20,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37736,087038c8-2fb0-4b36-ad0f-5968eb447c20,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37737,087038c8-2fb0-4b36-ad0f-5968eb447c20,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37738,9eff305c-2f37-47c8-b188-0a2e75a6ec86,LIST_ACCOUNTS,hbciListAccounts,false -37739,9eff305c-2f37-47c8-b188-0a2e75a6ec86,LIST_TRANSACTIONS,hbciListTransactions,false -37740,9eff305c-2f37-47c8-b188-0a2e75a6ec86,AUTHORIZATION,,false -37741,9eff305c-2f37-47c8-b188-0a2e75a6ec86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37742,9eff305c-2f37-47c8-b188-0a2e75a6ec86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37743,9eff305c-2f37-47c8-b188-0a2e75a6ec86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37738,8052fd60-1309-4c7f-823d-7e7d0672b908,LIST_ACCOUNTS,hbciListAccounts,false +37739,8052fd60-1309-4c7f-823d-7e7d0672b908,LIST_TRANSACTIONS,hbciListTransactions,false +37740,8052fd60-1309-4c7f-823d-7e7d0672b908,AUTHORIZATION,,false +37741,8052fd60-1309-4c7f-823d-7e7d0672b908,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37742,8052fd60-1309-4c7f-823d-7e7d0672b908,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37743,8052fd60-1309-4c7f-823d-7e7d0672b908,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37744,614545e2-d7c1-44da-b521-afca65235dd0,LIST_ACCOUNTS,xs2aListAccounts,true -37745,614545e2-d7c1-44da-b521-afca65235dd0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37745,614545e2-d7c1-44da-b521-afca65235dd0,LIST_TRANSACTIONS,xs2aListTransactions,true 37746,614545e2-d7c1-44da-b521-afca65235dd0,AUTHORIZATION,,true 37747,614545e2-d7c1-44da-b521-afca65235dd0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37748,614545e2-d7c1-44da-b521-afca65235dd0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37749,614545e2-d7c1-44da-b521-afca65235dd0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37750,468a0aaf-5922-4cd5-92cf-54ef0d7fa493,LIST_ACCOUNTS,hbciListAccounts,false -37751,468a0aaf-5922-4cd5-92cf-54ef0d7fa493,LIST_TRANSACTIONS,hbciListTransactions,false -37752,468a0aaf-5922-4cd5-92cf-54ef0d7fa493,AUTHORIZATION,,false -37753,468a0aaf-5922-4cd5-92cf-54ef0d7fa493,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37754,468a0aaf-5922-4cd5-92cf-54ef0d7fa493,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37755,468a0aaf-5922-4cd5-92cf-54ef0d7fa493,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37750,cc68cfd0-75d8-4aa7-bde7-6678d9e218ab,LIST_ACCOUNTS,hbciListAccounts,false +37751,cc68cfd0-75d8-4aa7-bde7-6678d9e218ab,LIST_TRANSACTIONS,hbciListTransactions,false +37752,cc68cfd0-75d8-4aa7-bde7-6678d9e218ab,AUTHORIZATION,,false +37753,cc68cfd0-75d8-4aa7-bde7-6678d9e218ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37754,cc68cfd0-75d8-4aa7-bde7-6678d9e218ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37755,cc68cfd0-75d8-4aa7-bde7-6678d9e218ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37756,f799844e-925d-496c-bbd0-a7670b4d2100,LIST_ACCOUNTS,xs2aListAccounts,true -37757,f799844e-925d-496c-bbd0-a7670b4d2100,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37757,f799844e-925d-496c-bbd0-a7670b4d2100,LIST_TRANSACTIONS,xs2aListTransactions,true 37758,f799844e-925d-496c-bbd0-a7670b4d2100,AUTHORIZATION,,true 37759,f799844e-925d-496c-bbd0-a7670b4d2100,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37760,f799844e-925d-496c-bbd0-a7670b4d2100,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37761,f799844e-925d-496c-bbd0-a7670b4d2100,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37762,6b5993be-eb5e-4c04-a9a5-504500e8c799,LIST_ACCOUNTS,hbciListAccounts,false -37763,6b5993be-eb5e-4c04-a9a5-504500e8c799,LIST_TRANSACTIONS,hbciListTransactions,false -37764,6b5993be-eb5e-4c04-a9a5-504500e8c799,AUTHORIZATION,,false -37765,6b5993be-eb5e-4c04-a9a5-504500e8c799,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37766,6b5993be-eb5e-4c04-a9a5-504500e8c799,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37767,6b5993be-eb5e-4c04-a9a5-504500e8c799,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37762,2279fba1-8c1a-4d27-a970-8a1cefa6ceac,LIST_ACCOUNTS,hbciListAccounts,false +37763,2279fba1-8c1a-4d27-a970-8a1cefa6ceac,LIST_TRANSACTIONS,hbciListTransactions,false +37764,2279fba1-8c1a-4d27-a970-8a1cefa6ceac,AUTHORIZATION,,false +37765,2279fba1-8c1a-4d27-a970-8a1cefa6ceac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37766,2279fba1-8c1a-4d27-a970-8a1cefa6ceac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37767,2279fba1-8c1a-4d27-a970-8a1cefa6ceac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37768,71c2ae43-5221-4817-8b0c-abf8c0674937,LIST_ACCOUNTS,xs2aListAccounts,true -37769,71c2ae43-5221-4817-8b0c-abf8c0674937,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37769,71c2ae43-5221-4817-8b0c-abf8c0674937,LIST_TRANSACTIONS,xs2aListTransactions,true 37770,71c2ae43-5221-4817-8b0c-abf8c0674937,AUTHORIZATION,,true 37771,71c2ae43-5221-4817-8b0c-abf8c0674937,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37772,71c2ae43-5221-4817-8b0c-abf8c0674937,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37773,71c2ae43-5221-4817-8b0c-abf8c0674937,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37774,a2a85c7b-d915-4a52-9136-6ec14936f118,LIST_ACCOUNTS,hbciListAccounts,false -37775,a2a85c7b-d915-4a52-9136-6ec14936f118,LIST_TRANSACTIONS,hbciListTransactions,false -37776,a2a85c7b-d915-4a52-9136-6ec14936f118,AUTHORIZATION,,false -37777,a2a85c7b-d915-4a52-9136-6ec14936f118,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37778,a2a85c7b-d915-4a52-9136-6ec14936f118,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37779,a2a85c7b-d915-4a52-9136-6ec14936f118,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37774,e7274685-17e4-46bd-bafa-91df74f4a3af,LIST_ACCOUNTS,hbciListAccounts,false +37775,e7274685-17e4-46bd-bafa-91df74f4a3af,LIST_TRANSACTIONS,hbciListTransactions,false +37776,e7274685-17e4-46bd-bafa-91df74f4a3af,AUTHORIZATION,,false +37777,e7274685-17e4-46bd-bafa-91df74f4a3af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37778,e7274685-17e4-46bd-bafa-91df74f4a3af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37779,e7274685-17e4-46bd-bafa-91df74f4a3af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37780,b764c040-7be7-4aeb-a380-3f3c9f94ab73,LIST_ACCOUNTS,xs2aListAccounts,true -37781,b764c040-7be7-4aeb-a380-3f3c9f94ab73,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37781,b764c040-7be7-4aeb-a380-3f3c9f94ab73,LIST_TRANSACTIONS,xs2aListTransactions,true 37782,b764c040-7be7-4aeb-a380-3f3c9f94ab73,AUTHORIZATION,,true 37783,b764c040-7be7-4aeb-a380-3f3c9f94ab73,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37784,b764c040-7be7-4aeb-a380-3f3c9f94ab73,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37785,b764c040-7be7-4aeb-a380-3f3c9f94ab73,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37786,dd2c6079-5882-4ab5-bba1-15e49593aad4,LIST_ACCOUNTS,hbciListAccounts,false -37787,dd2c6079-5882-4ab5-bba1-15e49593aad4,LIST_TRANSACTIONS,hbciListTransactions,false -37788,dd2c6079-5882-4ab5-bba1-15e49593aad4,AUTHORIZATION,,false -37789,dd2c6079-5882-4ab5-bba1-15e49593aad4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37790,dd2c6079-5882-4ab5-bba1-15e49593aad4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37791,dd2c6079-5882-4ab5-bba1-15e49593aad4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37786,f553ad98-8a6b-4356-9886-6b9fb18ddfd7,LIST_ACCOUNTS,hbciListAccounts,false +37787,f553ad98-8a6b-4356-9886-6b9fb18ddfd7,LIST_TRANSACTIONS,hbciListTransactions,false +37788,f553ad98-8a6b-4356-9886-6b9fb18ddfd7,AUTHORIZATION,,false +37789,f553ad98-8a6b-4356-9886-6b9fb18ddfd7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37790,f553ad98-8a6b-4356-9886-6b9fb18ddfd7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37791,f553ad98-8a6b-4356-9886-6b9fb18ddfd7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37792,08f18b27-9cd3-4532-b7b4-2a8c4c0404ee,LIST_ACCOUNTS,xs2aListAccounts,true -37793,08f18b27-9cd3-4532-b7b4-2a8c4c0404ee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37793,08f18b27-9cd3-4532-b7b4-2a8c4c0404ee,LIST_TRANSACTIONS,xs2aListTransactions,true 37794,08f18b27-9cd3-4532-b7b4-2a8c4c0404ee,AUTHORIZATION,,true 37795,08f18b27-9cd3-4532-b7b4-2a8c4c0404ee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37796,08f18b27-9cd3-4532-b7b4-2a8c4c0404ee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37797,08f18b27-9cd3-4532-b7b4-2a8c4c0404ee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37798,91ee280b-8310-4d7f-90fb-92e54f884fd3,LIST_ACCOUNTS,hbciListAccounts,false -37799,91ee280b-8310-4d7f-90fb-92e54f884fd3,LIST_TRANSACTIONS,hbciListTransactions,false -37800,91ee280b-8310-4d7f-90fb-92e54f884fd3,AUTHORIZATION,,false -37801,91ee280b-8310-4d7f-90fb-92e54f884fd3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37802,91ee280b-8310-4d7f-90fb-92e54f884fd3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37803,91ee280b-8310-4d7f-90fb-92e54f884fd3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37798,fa3f97b2-e9af-4fdb-8362-279de0fb1560,LIST_ACCOUNTS,hbciListAccounts,false +37799,fa3f97b2-e9af-4fdb-8362-279de0fb1560,LIST_TRANSACTIONS,hbciListTransactions,false +37800,fa3f97b2-e9af-4fdb-8362-279de0fb1560,AUTHORIZATION,,false +37801,fa3f97b2-e9af-4fdb-8362-279de0fb1560,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37802,fa3f97b2-e9af-4fdb-8362-279de0fb1560,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37803,fa3f97b2-e9af-4fdb-8362-279de0fb1560,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37804,3b179a58-a469-4c53-ac29-2c0c4eb87e46,LIST_ACCOUNTS,xs2aListAccounts,true -37805,3b179a58-a469-4c53-ac29-2c0c4eb87e46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37805,3b179a58-a469-4c53-ac29-2c0c4eb87e46,LIST_TRANSACTIONS,xs2aListTransactions,true 37806,3b179a58-a469-4c53-ac29-2c0c4eb87e46,AUTHORIZATION,,true 37807,3b179a58-a469-4c53-ac29-2c0c4eb87e46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37808,3b179a58-a469-4c53-ac29-2c0c4eb87e46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37809,3b179a58-a469-4c53-ac29-2c0c4eb87e46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37810,cb90454e-0a37-4ded-b0f0-104e511959b6,LIST_ACCOUNTS,hbciListAccounts,false -37811,cb90454e-0a37-4ded-b0f0-104e511959b6,LIST_TRANSACTIONS,hbciListTransactions,false -37812,cb90454e-0a37-4ded-b0f0-104e511959b6,AUTHORIZATION,,false -37813,cb90454e-0a37-4ded-b0f0-104e511959b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37814,cb90454e-0a37-4ded-b0f0-104e511959b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37815,cb90454e-0a37-4ded-b0f0-104e511959b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37810,d2331942-0296-47e6-b331-49a7ee3ffc48,LIST_ACCOUNTS,hbciListAccounts,false +37811,d2331942-0296-47e6-b331-49a7ee3ffc48,LIST_TRANSACTIONS,hbciListTransactions,false +37812,d2331942-0296-47e6-b331-49a7ee3ffc48,AUTHORIZATION,,false +37813,d2331942-0296-47e6-b331-49a7ee3ffc48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37814,d2331942-0296-47e6-b331-49a7ee3ffc48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37815,d2331942-0296-47e6-b331-49a7ee3ffc48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37816,fefdea83-aeb9-4044-a10e-1e13c71966d3,LIST_ACCOUNTS,xs2aListAccounts,true -37817,fefdea83-aeb9-4044-a10e-1e13c71966d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37817,fefdea83-aeb9-4044-a10e-1e13c71966d3,LIST_TRANSACTIONS,xs2aListTransactions,true 37818,fefdea83-aeb9-4044-a10e-1e13c71966d3,AUTHORIZATION,,true 37819,fefdea83-aeb9-4044-a10e-1e13c71966d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37820,fefdea83-aeb9-4044-a10e-1e13c71966d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37821,fefdea83-aeb9-4044-a10e-1e13c71966d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37822,451c8761-612d-4347-8f2f-83f142b36ff0,LIST_ACCOUNTS,hbciListAccounts,false -37823,451c8761-612d-4347-8f2f-83f142b36ff0,LIST_TRANSACTIONS,hbciListTransactions,false -37824,451c8761-612d-4347-8f2f-83f142b36ff0,AUTHORIZATION,,false -37825,451c8761-612d-4347-8f2f-83f142b36ff0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37826,451c8761-612d-4347-8f2f-83f142b36ff0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37827,451c8761-612d-4347-8f2f-83f142b36ff0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37822,00a4a74e-4c8c-44a9-ae86-d4789a6197c3,LIST_ACCOUNTS,hbciListAccounts,false +37823,00a4a74e-4c8c-44a9-ae86-d4789a6197c3,LIST_TRANSACTIONS,hbciListTransactions,false +37824,00a4a74e-4c8c-44a9-ae86-d4789a6197c3,AUTHORIZATION,,false +37825,00a4a74e-4c8c-44a9-ae86-d4789a6197c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37826,00a4a74e-4c8c-44a9-ae86-d4789a6197c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37827,00a4a74e-4c8c-44a9-ae86-d4789a6197c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37828,987e08d9-bbc4-469a-aa5a-41bc61e21849,LIST_ACCOUNTS,xs2aListAccounts,true -37829,987e08d9-bbc4-469a-aa5a-41bc61e21849,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37829,987e08d9-bbc4-469a-aa5a-41bc61e21849,LIST_TRANSACTIONS,xs2aListTransactions,true 37830,987e08d9-bbc4-469a-aa5a-41bc61e21849,AUTHORIZATION,,true 37831,987e08d9-bbc4-469a-aa5a-41bc61e21849,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37832,987e08d9-bbc4-469a-aa5a-41bc61e21849,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37833,987e08d9-bbc4-469a-aa5a-41bc61e21849,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37834,228c961f-f829-4f51-b9f4-c3a9b357ecd6,LIST_ACCOUNTS,hbciListAccounts,false -37835,228c961f-f829-4f51-b9f4-c3a9b357ecd6,LIST_TRANSACTIONS,hbciListTransactions,false -37836,228c961f-f829-4f51-b9f4-c3a9b357ecd6,AUTHORIZATION,,false -37837,228c961f-f829-4f51-b9f4-c3a9b357ecd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37838,228c961f-f829-4f51-b9f4-c3a9b357ecd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37839,228c961f-f829-4f51-b9f4-c3a9b357ecd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37834,1123d063-7a26-4609-9d69-b33522e06c01,LIST_ACCOUNTS,hbciListAccounts,false +37835,1123d063-7a26-4609-9d69-b33522e06c01,LIST_TRANSACTIONS,hbciListTransactions,false +37836,1123d063-7a26-4609-9d69-b33522e06c01,AUTHORIZATION,,false +37837,1123d063-7a26-4609-9d69-b33522e06c01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37838,1123d063-7a26-4609-9d69-b33522e06c01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37839,1123d063-7a26-4609-9d69-b33522e06c01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37840,9c55fb92-838a-4b84-9ef9-33a96867cdea,LIST_ACCOUNTS,xs2aListAccounts,true -37841,9c55fb92-838a-4b84-9ef9-33a96867cdea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37841,9c55fb92-838a-4b84-9ef9-33a96867cdea,LIST_TRANSACTIONS,xs2aListTransactions,true 37842,9c55fb92-838a-4b84-9ef9-33a96867cdea,AUTHORIZATION,,true 37843,9c55fb92-838a-4b84-9ef9-33a96867cdea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37844,9c55fb92-838a-4b84-9ef9-33a96867cdea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37845,9c55fb92-838a-4b84-9ef9-33a96867cdea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37846,7d7fd3ab-543b-48db-be3f-a9ae85efde81,LIST_ACCOUNTS,hbciListAccounts,false -37847,7d7fd3ab-543b-48db-be3f-a9ae85efde81,LIST_TRANSACTIONS,hbciListTransactions,false -37848,7d7fd3ab-543b-48db-be3f-a9ae85efde81,AUTHORIZATION,,false -37849,7d7fd3ab-543b-48db-be3f-a9ae85efde81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37850,7d7fd3ab-543b-48db-be3f-a9ae85efde81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37851,7d7fd3ab-543b-48db-be3f-a9ae85efde81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37846,e7095405-9116-4d2e-89c7-319d467e6edc,LIST_ACCOUNTS,hbciListAccounts,false +37847,e7095405-9116-4d2e-89c7-319d467e6edc,LIST_TRANSACTIONS,hbciListTransactions,false +37848,e7095405-9116-4d2e-89c7-319d467e6edc,AUTHORIZATION,,false +37849,e7095405-9116-4d2e-89c7-319d467e6edc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37850,e7095405-9116-4d2e-89c7-319d467e6edc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37851,e7095405-9116-4d2e-89c7-319d467e6edc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37852,21bb7915-4583-4e59-b978-ba74b789c36f,LIST_ACCOUNTS,xs2aListAccounts,true -37853,21bb7915-4583-4e59-b978-ba74b789c36f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37853,21bb7915-4583-4e59-b978-ba74b789c36f,LIST_TRANSACTIONS,xs2aListTransactions,true 37854,21bb7915-4583-4e59-b978-ba74b789c36f,AUTHORIZATION,,true 37855,21bb7915-4583-4e59-b978-ba74b789c36f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37856,21bb7915-4583-4e59-b978-ba74b789c36f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37857,21bb7915-4583-4e59-b978-ba74b789c36f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37858,fa09b267-8895-47a1-80f8-4a3f35836cbd,LIST_ACCOUNTS,hbciListAccounts,false -37859,fa09b267-8895-47a1-80f8-4a3f35836cbd,LIST_TRANSACTIONS,hbciListTransactions,false -37860,fa09b267-8895-47a1-80f8-4a3f35836cbd,AUTHORIZATION,,false -37861,fa09b267-8895-47a1-80f8-4a3f35836cbd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37862,fa09b267-8895-47a1-80f8-4a3f35836cbd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37863,fa09b267-8895-47a1-80f8-4a3f35836cbd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37858,19bce89f-dbcd-4056-9b90-2b9a0de36195,LIST_ACCOUNTS,hbciListAccounts,false +37859,19bce89f-dbcd-4056-9b90-2b9a0de36195,LIST_TRANSACTIONS,hbciListTransactions,false +37860,19bce89f-dbcd-4056-9b90-2b9a0de36195,AUTHORIZATION,,false +37861,19bce89f-dbcd-4056-9b90-2b9a0de36195,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37862,19bce89f-dbcd-4056-9b90-2b9a0de36195,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37863,19bce89f-dbcd-4056-9b90-2b9a0de36195,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37864,68e4d0e1-5fd7-4aff-90e3-4244b2564da6,LIST_ACCOUNTS,xs2aListAccounts,true -37865,68e4d0e1-5fd7-4aff-90e3-4244b2564da6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37865,68e4d0e1-5fd7-4aff-90e3-4244b2564da6,LIST_TRANSACTIONS,xs2aListTransactions,true 37866,68e4d0e1-5fd7-4aff-90e3-4244b2564da6,AUTHORIZATION,,true 37867,68e4d0e1-5fd7-4aff-90e3-4244b2564da6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37868,68e4d0e1-5fd7-4aff-90e3-4244b2564da6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37869,68e4d0e1-5fd7-4aff-90e3-4244b2564da6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37870,4a8b3b13-253c-4949-a9fe-484f8f0e0619,LIST_ACCOUNTS,hbciListAccounts,false -37871,4a8b3b13-253c-4949-a9fe-484f8f0e0619,LIST_TRANSACTIONS,hbciListTransactions,false -37872,4a8b3b13-253c-4949-a9fe-484f8f0e0619,AUTHORIZATION,,false -37873,4a8b3b13-253c-4949-a9fe-484f8f0e0619,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37874,4a8b3b13-253c-4949-a9fe-484f8f0e0619,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37875,4a8b3b13-253c-4949-a9fe-484f8f0e0619,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37870,74403c7e-3ff1-4c1d-b942-00ea033504a3,LIST_ACCOUNTS,hbciListAccounts,false +37871,74403c7e-3ff1-4c1d-b942-00ea033504a3,LIST_TRANSACTIONS,hbciListTransactions,false +37872,74403c7e-3ff1-4c1d-b942-00ea033504a3,AUTHORIZATION,,false +37873,74403c7e-3ff1-4c1d-b942-00ea033504a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37874,74403c7e-3ff1-4c1d-b942-00ea033504a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37875,74403c7e-3ff1-4c1d-b942-00ea033504a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37876,a6d4945c-8d11-474f-8ed4-74d46c0b0b7e,LIST_ACCOUNTS,xs2aListAccounts,true -37877,a6d4945c-8d11-474f-8ed4-74d46c0b0b7e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37877,a6d4945c-8d11-474f-8ed4-74d46c0b0b7e,LIST_TRANSACTIONS,xs2aListTransactions,true 37878,a6d4945c-8d11-474f-8ed4-74d46c0b0b7e,AUTHORIZATION,,true 37879,a6d4945c-8d11-474f-8ed4-74d46c0b0b7e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37880,a6d4945c-8d11-474f-8ed4-74d46c0b0b7e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37881,a6d4945c-8d11-474f-8ed4-74d46c0b0b7e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37882,fec88c66-968d-43f2-9a02-efbcab973080,LIST_ACCOUNTS,hbciListAccounts,false -37883,fec88c66-968d-43f2-9a02-efbcab973080,LIST_TRANSACTIONS,hbciListTransactions,false -37884,fec88c66-968d-43f2-9a02-efbcab973080,AUTHORIZATION,,false -37885,fec88c66-968d-43f2-9a02-efbcab973080,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37886,fec88c66-968d-43f2-9a02-efbcab973080,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37887,fec88c66-968d-43f2-9a02-efbcab973080,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37882,efcb15d4-7d44-4170-8e1c-96e5966ceae6,LIST_ACCOUNTS,hbciListAccounts,false +37883,efcb15d4-7d44-4170-8e1c-96e5966ceae6,LIST_TRANSACTIONS,hbciListTransactions,false +37884,efcb15d4-7d44-4170-8e1c-96e5966ceae6,AUTHORIZATION,,false +37885,efcb15d4-7d44-4170-8e1c-96e5966ceae6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37886,efcb15d4-7d44-4170-8e1c-96e5966ceae6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37887,efcb15d4-7d44-4170-8e1c-96e5966ceae6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37888,a65dce25-5560-4fb2-8f2d-703932fd90cc,LIST_ACCOUNTS,xs2aListAccounts,true -37889,a65dce25-5560-4fb2-8f2d-703932fd90cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37889,a65dce25-5560-4fb2-8f2d-703932fd90cc,LIST_TRANSACTIONS,xs2aListTransactions,true 37890,a65dce25-5560-4fb2-8f2d-703932fd90cc,AUTHORIZATION,,true 37891,a65dce25-5560-4fb2-8f2d-703932fd90cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37892,a65dce25-5560-4fb2-8f2d-703932fd90cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37893,a65dce25-5560-4fb2-8f2d-703932fd90cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37894,d0a66abf-9a26-4884-a582-9339ad6c027f,LIST_ACCOUNTS,hbciListAccounts,false -37895,d0a66abf-9a26-4884-a582-9339ad6c027f,LIST_TRANSACTIONS,hbciListTransactions,false -37896,d0a66abf-9a26-4884-a582-9339ad6c027f,AUTHORIZATION,,false -37897,d0a66abf-9a26-4884-a582-9339ad6c027f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37898,d0a66abf-9a26-4884-a582-9339ad6c027f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37899,d0a66abf-9a26-4884-a582-9339ad6c027f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37894,aab8daa2-4b8d-4bc4-a688-b06a2b1d4bc5,LIST_ACCOUNTS,hbciListAccounts,false +37895,aab8daa2-4b8d-4bc4-a688-b06a2b1d4bc5,LIST_TRANSACTIONS,hbciListTransactions,false +37896,aab8daa2-4b8d-4bc4-a688-b06a2b1d4bc5,AUTHORIZATION,,false +37897,aab8daa2-4b8d-4bc4-a688-b06a2b1d4bc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37898,aab8daa2-4b8d-4bc4-a688-b06a2b1d4bc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37899,aab8daa2-4b8d-4bc4-a688-b06a2b1d4bc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37900,89c5f9ff-7c4d-43a2-8bc1-faf39d45c2fa,LIST_ACCOUNTS,xs2aListAccounts,true -37901,89c5f9ff-7c4d-43a2-8bc1-faf39d45c2fa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37901,89c5f9ff-7c4d-43a2-8bc1-faf39d45c2fa,LIST_TRANSACTIONS,xs2aListTransactions,true 37902,89c5f9ff-7c4d-43a2-8bc1-faf39d45c2fa,AUTHORIZATION,,true 37903,89c5f9ff-7c4d-43a2-8bc1-faf39d45c2fa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37904,89c5f9ff-7c4d-43a2-8bc1-faf39d45c2fa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37905,89c5f9ff-7c4d-43a2-8bc1-faf39d45c2fa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37906,5ace721c-e992-4a70-b642-19aa0ac214aa,LIST_ACCOUNTS,hbciListAccounts,false -37907,5ace721c-e992-4a70-b642-19aa0ac214aa,LIST_TRANSACTIONS,hbciListTransactions,false -37908,5ace721c-e992-4a70-b642-19aa0ac214aa,AUTHORIZATION,,false -37909,5ace721c-e992-4a70-b642-19aa0ac214aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37910,5ace721c-e992-4a70-b642-19aa0ac214aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37911,5ace721c-e992-4a70-b642-19aa0ac214aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37906,10fa6026-ce9a-4dd2-a091-fc85cb61ccbf,LIST_ACCOUNTS,hbciListAccounts,false +37907,10fa6026-ce9a-4dd2-a091-fc85cb61ccbf,LIST_TRANSACTIONS,hbciListTransactions,false +37908,10fa6026-ce9a-4dd2-a091-fc85cb61ccbf,AUTHORIZATION,,false +37909,10fa6026-ce9a-4dd2-a091-fc85cb61ccbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37910,10fa6026-ce9a-4dd2-a091-fc85cb61ccbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37911,10fa6026-ce9a-4dd2-a091-fc85cb61ccbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37912,767666c5-c9a2-47a5-bd6f-0bfa56a9156f,LIST_ACCOUNTS,xs2aListAccounts,true -37913,767666c5-c9a2-47a5-bd6f-0bfa56a9156f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37913,767666c5-c9a2-47a5-bd6f-0bfa56a9156f,LIST_TRANSACTIONS,xs2aListTransactions,true 37914,767666c5-c9a2-47a5-bd6f-0bfa56a9156f,AUTHORIZATION,,true 37915,767666c5-c9a2-47a5-bd6f-0bfa56a9156f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37916,767666c5-c9a2-47a5-bd6f-0bfa56a9156f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37917,767666c5-c9a2-47a5-bd6f-0bfa56a9156f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37918,4f014e48-b452-40ee-8302-9576117576ee,LIST_ACCOUNTS,hbciListAccounts,false -37919,4f014e48-b452-40ee-8302-9576117576ee,LIST_TRANSACTIONS,hbciListTransactions,false -37920,4f014e48-b452-40ee-8302-9576117576ee,AUTHORIZATION,,false -37921,4f014e48-b452-40ee-8302-9576117576ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37922,4f014e48-b452-40ee-8302-9576117576ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37923,4f014e48-b452-40ee-8302-9576117576ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37918,0b34d6f4-434e-4863-9bd3-54f86b2be6f6,LIST_ACCOUNTS,hbciListAccounts,false +37919,0b34d6f4-434e-4863-9bd3-54f86b2be6f6,LIST_TRANSACTIONS,hbciListTransactions,false +37920,0b34d6f4-434e-4863-9bd3-54f86b2be6f6,AUTHORIZATION,,false +37921,0b34d6f4-434e-4863-9bd3-54f86b2be6f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37922,0b34d6f4-434e-4863-9bd3-54f86b2be6f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37923,0b34d6f4-434e-4863-9bd3-54f86b2be6f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37924,2878d61f-7acb-4e94-a7d2-a1a05f7b38fb,LIST_ACCOUNTS,xs2aListAccounts,true -37925,2878d61f-7acb-4e94-a7d2-a1a05f7b38fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37925,2878d61f-7acb-4e94-a7d2-a1a05f7b38fb,LIST_TRANSACTIONS,xs2aListTransactions,true 37926,2878d61f-7acb-4e94-a7d2-a1a05f7b38fb,AUTHORIZATION,,true 37927,2878d61f-7acb-4e94-a7d2-a1a05f7b38fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37928,2878d61f-7acb-4e94-a7d2-a1a05f7b38fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37929,2878d61f-7acb-4e94-a7d2-a1a05f7b38fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37930,3756c9f9-ff8e-4dcb-a726-76a90b8734e0,LIST_ACCOUNTS,hbciListAccounts,false -37931,3756c9f9-ff8e-4dcb-a726-76a90b8734e0,LIST_TRANSACTIONS,hbciListTransactions,false -37932,3756c9f9-ff8e-4dcb-a726-76a90b8734e0,AUTHORIZATION,,false -37933,3756c9f9-ff8e-4dcb-a726-76a90b8734e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37934,3756c9f9-ff8e-4dcb-a726-76a90b8734e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37935,3756c9f9-ff8e-4dcb-a726-76a90b8734e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37930,70b671a4-6dd3-4a2d-8edc-7f6992897601,LIST_ACCOUNTS,hbciListAccounts,false +37931,70b671a4-6dd3-4a2d-8edc-7f6992897601,LIST_TRANSACTIONS,hbciListTransactions,false +37932,70b671a4-6dd3-4a2d-8edc-7f6992897601,AUTHORIZATION,,false +37933,70b671a4-6dd3-4a2d-8edc-7f6992897601,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37934,70b671a4-6dd3-4a2d-8edc-7f6992897601,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37935,70b671a4-6dd3-4a2d-8edc-7f6992897601,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37936,09c60657-8d75-45ab-91fb-edf53558ded2,LIST_ACCOUNTS,xs2aListAccounts,true -37937,09c60657-8d75-45ab-91fb-edf53558ded2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37937,09c60657-8d75-45ab-91fb-edf53558ded2,LIST_TRANSACTIONS,xs2aListTransactions,true 37938,09c60657-8d75-45ab-91fb-edf53558ded2,AUTHORIZATION,,true 37939,09c60657-8d75-45ab-91fb-edf53558ded2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37940,09c60657-8d75-45ab-91fb-edf53558ded2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37941,09c60657-8d75-45ab-91fb-edf53558ded2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37942,63ee8d8a-c7d2-4330-a20a-524e6998d257,LIST_ACCOUNTS,hbciListAccounts,false -37943,63ee8d8a-c7d2-4330-a20a-524e6998d257,LIST_TRANSACTIONS,hbciListTransactions,false -37944,63ee8d8a-c7d2-4330-a20a-524e6998d257,AUTHORIZATION,,false -37945,63ee8d8a-c7d2-4330-a20a-524e6998d257,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37946,63ee8d8a-c7d2-4330-a20a-524e6998d257,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37947,63ee8d8a-c7d2-4330-a20a-524e6998d257,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37942,93e34a6d-7d36-4dda-b9eb-1677bbab7431,LIST_ACCOUNTS,hbciListAccounts,false +37943,93e34a6d-7d36-4dda-b9eb-1677bbab7431,LIST_TRANSACTIONS,hbciListTransactions,false +37944,93e34a6d-7d36-4dda-b9eb-1677bbab7431,AUTHORIZATION,,false +37945,93e34a6d-7d36-4dda-b9eb-1677bbab7431,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37946,93e34a6d-7d36-4dda-b9eb-1677bbab7431,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37947,93e34a6d-7d36-4dda-b9eb-1677bbab7431,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37948,251f134a-e1f2-4a6c-a652-213bdbc9f626,LIST_ACCOUNTS,xs2aListAccounts,true -37949,251f134a-e1f2-4a6c-a652-213bdbc9f626,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37949,251f134a-e1f2-4a6c-a652-213bdbc9f626,LIST_TRANSACTIONS,xs2aListTransactions,true 37950,251f134a-e1f2-4a6c-a652-213bdbc9f626,AUTHORIZATION,,true 37951,251f134a-e1f2-4a6c-a652-213bdbc9f626,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37952,251f134a-e1f2-4a6c-a652-213bdbc9f626,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37953,251f134a-e1f2-4a6c-a652-213bdbc9f626,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37954,696b12cd-ee6d-45b9-bdec-d9e30fcdf739,LIST_ACCOUNTS,hbciListAccounts,false -37955,696b12cd-ee6d-45b9-bdec-d9e30fcdf739,LIST_TRANSACTIONS,hbciListTransactions,false -37956,696b12cd-ee6d-45b9-bdec-d9e30fcdf739,AUTHORIZATION,,false -37957,696b12cd-ee6d-45b9-bdec-d9e30fcdf739,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37958,696b12cd-ee6d-45b9-bdec-d9e30fcdf739,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37959,696b12cd-ee6d-45b9-bdec-d9e30fcdf739,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37954,c794cbfb-24a4-4fd7-99e9-692dfc2d8ee2,LIST_ACCOUNTS,hbciListAccounts,false +37955,c794cbfb-24a4-4fd7-99e9-692dfc2d8ee2,LIST_TRANSACTIONS,hbciListTransactions,false +37956,c794cbfb-24a4-4fd7-99e9-692dfc2d8ee2,AUTHORIZATION,,false +37957,c794cbfb-24a4-4fd7-99e9-692dfc2d8ee2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37958,c794cbfb-24a4-4fd7-99e9-692dfc2d8ee2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37959,c794cbfb-24a4-4fd7-99e9-692dfc2d8ee2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37960,98ec11cf-4bde-4403-a7af-0ae9766225f7,LIST_ACCOUNTS,xs2aListAccounts,true -37961,98ec11cf-4bde-4403-a7af-0ae9766225f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37961,98ec11cf-4bde-4403-a7af-0ae9766225f7,LIST_TRANSACTIONS,xs2aListTransactions,true 37962,98ec11cf-4bde-4403-a7af-0ae9766225f7,AUTHORIZATION,,true 37963,98ec11cf-4bde-4403-a7af-0ae9766225f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37964,98ec11cf-4bde-4403-a7af-0ae9766225f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37965,98ec11cf-4bde-4403-a7af-0ae9766225f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37966,b3a2df3b-af9c-4dbe-8975-a75299f06102,LIST_ACCOUNTS,hbciListAccounts,false -37967,b3a2df3b-af9c-4dbe-8975-a75299f06102,LIST_TRANSACTIONS,hbciListTransactions,false -37968,b3a2df3b-af9c-4dbe-8975-a75299f06102,AUTHORIZATION,,false -37969,b3a2df3b-af9c-4dbe-8975-a75299f06102,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37970,b3a2df3b-af9c-4dbe-8975-a75299f06102,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37971,b3a2df3b-af9c-4dbe-8975-a75299f06102,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37966,e8fdfd58-2ca5-4fba-bea8-4847d898c093,LIST_ACCOUNTS,hbciListAccounts,false +37967,e8fdfd58-2ca5-4fba-bea8-4847d898c093,LIST_TRANSACTIONS,hbciListTransactions,false +37968,e8fdfd58-2ca5-4fba-bea8-4847d898c093,AUTHORIZATION,,false +37969,e8fdfd58-2ca5-4fba-bea8-4847d898c093,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37970,e8fdfd58-2ca5-4fba-bea8-4847d898c093,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37971,e8fdfd58-2ca5-4fba-bea8-4847d898c093,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37972,fff5f369-2332-452f-9150-7e8ec14cbef9,LIST_ACCOUNTS,xs2aListAccounts,true -37973,fff5f369-2332-452f-9150-7e8ec14cbef9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37973,fff5f369-2332-452f-9150-7e8ec14cbef9,LIST_TRANSACTIONS,xs2aListTransactions,true 37974,fff5f369-2332-452f-9150-7e8ec14cbef9,AUTHORIZATION,,true 37975,fff5f369-2332-452f-9150-7e8ec14cbef9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37976,fff5f369-2332-452f-9150-7e8ec14cbef9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37977,fff5f369-2332-452f-9150-7e8ec14cbef9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37978,258d54dd-4690-4558-864a-d7544a7f80e3,LIST_ACCOUNTS,hbciListAccounts,false -37979,258d54dd-4690-4558-864a-d7544a7f80e3,LIST_TRANSACTIONS,hbciListTransactions,false -37980,258d54dd-4690-4558-864a-d7544a7f80e3,AUTHORIZATION,,false -37981,258d54dd-4690-4558-864a-d7544a7f80e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37982,258d54dd-4690-4558-864a-d7544a7f80e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37983,258d54dd-4690-4558-864a-d7544a7f80e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37978,a7abd583-c433-4baf-9582-543d086fe424,LIST_ACCOUNTS,hbciListAccounts,false +37979,a7abd583-c433-4baf-9582-543d086fe424,LIST_TRANSACTIONS,hbciListTransactions,false +37980,a7abd583-c433-4baf-9582-543d086fe424,AUTHORIZATION,,false +37981,a7abd583-c433-4baf-9582-543d086fe424,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37982,a7abd583-c433-4baf-9582-543d086fe424,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37983,a7abd583-c433-4baf-9582-543d086fe424,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37984,ecdbf15a-0a72-4ee2-b0af-ffe43d48c687,LIST_ACCOUNTS,xs2aListAccounts,true -37985,ecdbf15a-0a72-4ee2-b0af-ffe43d48c687,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37985,ecdbf15a-0a72-4ee2-b0af-ffe43d48c687,LIST_TRANSACTIONS,xs2aListTransactions,true 37986,ecdbf15a-0a72-4ee2-b0af-ffe43d48c687,AUTHORIZATION,,true 37987,ecdbf15a-0a72-4ee2-b0af-ffe43d48c687,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 37988,ecdbf15a-0a72-4ee2-b0af-ffe43d48c687,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 37989,ecdbf15a-0a72-4ee2-b0af-ffe43d48c687,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -37990,9c6968b0-8192-4d4a-b1d9-87b0d97aa080,LIST_ACCOUNTS,hbciListAccounts,false -37991,9c6968b0-8192-4d4a-b1d9-87b0d97aa080,LIST_TRANSACTIONS,hbciListTransactions,false -37992,9c6968b0-8192-4d4a-b1d9-87b0d97aa080,AUTHORIZATION,,false -37993,9c6968b0-8192-4d4a-b1d9-87b0d97aa080,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -37994,9c6968b0-8192-4d4a-b1d9-87b0d97aa080,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -37995,9c6968b0-8192-4d4a-b1d9-87b0d97aa080,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +37990,53e3fb3a-19ea-4f63-aad6-34a428ccf680,LIST_ACCOUNTS,hbciListAccounts,false +37991,53e3fb3a-19ea-4f63-aad6-34a428ccf680,LIST_TRANSACTIONS,hbciListTransactions,false +37992,53e3fb3a-19ea-4f63-aad6-34a428ccf680,AUTHORIZATION,,false +37993,53e3fb3a-19ea-4f63-aad6-34a428ccf680,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +37994,53e3fb3a-19ea-4f63-aad6-34a428ccf680,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +37995,53e3fb3a-19ea-4f63-aad6-34a428ccf680,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 37996,ddc1f8b6-bd51-40b7-b50e-07d98f5616f8,LIST_ACCOUNTS,xs2aListAccounts,true -37997,ddc1f8b6-bd51-40b7-b50e-07d98f5616f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +37997,ddc1f8b6-bd51-40b7-b50e-07d98f5616f8,LIST_TRANSACTIONS,xs2aListTransactions,true 37998,ddc1f8b6-bd51-40b7-b50e-07d98f5616f8,AUTHORIZATION,,true 37999,ddc1f8b6-bd51-40b7-b50e-07d98f5616f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38000,ddc1f8b6-bd51-40b7-b50e-07d98f5616f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38001,ddc1f8b6-bd51-40b7-b50e-07d98f5616f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38002,3b5f2e56-b4a1-4fd9-8204-81bb01123b76,LIST_ACCOUNTS,hbciListAccounts,false -38003,3b5f2e56-b4a1-4fd9-8204-81bb01123b76,LIST_TRANSACTIONS,hbciListTransactions,false -38004,3b5f2e56-b4a1-4fd9-8204-81bb01123b76,AUTHORIZATION,,false -38005,3b5f2e56-b4a1-4fd9-8204-81bb01123b76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38006,3b5f2e56-b4a1-4fd9-8204-81bb01123b76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38007,3b5f2e56-b4a1-4fd9-8204-81bb01123b76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38002,b6c81cce-6bd7-4361-a42a-d1ba7850ebdf,LIST_ACCOUNTS,hbciListAccounts,false +38003,b6c81cce-6bd7-4361-a42a-d1ba7850ebdf,LIST_TRANSACTIONS,hbciListTransactions,false +38004,b6c81cce-6bd7-4361-a42a-d1ba7850ebdf,AUTHORIZATION,,false +38005,b6c81cce-6bd7-4361-a42a-d1ba7850ebdf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38006,b6c81cce-6bd7-4361-a42a-d1ba7850ebdf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38007,b6c81cce-6bd7-4361-a42a-d1ba7850ebdf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38008,284d181d-47a5-4e38-8d78-c7ba9008f969,LIST_ACCOUNTS,xs2aListAccounts,true -38009,284d181d-47a5-4e38-8d78-c7ba9008f969,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38009,284d181d-47a5-4e38-8d78-c7ba9008f969,LIST_TRANSACTIONS,xs2aListTransactions,true 38010,284d181d-47a5-4e38-8d78-c7ba9008f969,AUTHORIZATION,,true 38011,284d181d-47a5-4e38-8d78-c7ba9008f969,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38012,284d181d-47a5-4e38-8d78-c7ba9008f969,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38013,284d181d-47a5-4e38-8d78-c7ba9008f969,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38014,53d7b313-44b6-4100-b8d0-4479772d6cc0,LIST_ACCOUNTS,hbciListAccounts,false -38015,53d7b313-44b6-4100-b8d0-4479772d6cc0,LIST_TRANSACTIONS,hbciListTransactions,false -38016,53d7b313-44b6-4100-b8d0-4479772d6cc0,AUTHORIZATION,,false -38017,53d7b313-44b6-4100-b8d0-4479772d6cc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38018,53d7b313-44b6-4100-b8d0-4479772d6cc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38019,53d7b313-44b6-4100-b8d0-4479772d6cc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38014,b2b27610-b9a8-4067-b024-48c3c2087b1e,LIST_ACCOUNTS,hbciListAccounts,false +38015,b2b27610-b9a8-4067-b024-48c3c2087b1e,LIST_TRANSACTIONS,hbciListTransactions,false +38016,b2b27610-b9a8-4067-b024-48c3c2087b1e,AUTHORIZATION,,false +38017,b2b27610-b9a8-4067-b024-48c3c2087b1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38018,b2b27610-b9a8-4067-b024-48c3c2087b1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38019,b2b27610-b9a8-4067-b024-48c3c2087b1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38020,f9c87f2f-6896-4e83-b34b-d7789804bafb,LIST_ACCOUNTS,xs2aListAccounts,true -38021,f9c87f2f-6896-4e83-b34b-d7789804bafb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38021,f9c87f2f-6896-4e83-b34b-d7789804bafb,LIST_TRANSACTIONS,xs2aListTransactions,true 38022,f9c87f2f-6896-4e83-b34b-d7789804bafb,AUTHORIZATION,,true 38023,f9c87f2f-6896-4e83-b34b-d7789804bafb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38024,f9c87f2f-6896-4e83-b34b-d7789804bafb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38025,f9c87f2f-6896-4e83-b34b-d7789804bafb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38026,687966bf-b0b8-4260-b768-46dab8f3475d,LIST_ACCOUNTS,hbciListAccounts,false -38027,687966bf-b0b8-4260-b768-46dab8f3475d,LIST_TRANSACTIONS,hbciListTransactions,false -38028,687966bf-b0b8-4260-b768-46dab8f3475d,AUTHORIZATION,,false -38029,687966bf-b0b8-4260-b768-46dab8f3475d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38030,687966bf-b0b8-4260-b768-46dab8f3475d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38031,687966bf-b0b8-4260-b768-46dab8f3475d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38026,e7229465-b937-449a-9b0b-9f4104c21641,LIST_ACCOUNTS,hbciListAccounts,false +38027,e7229465-b937-449a-9b0b-9f4104c21641,LIST_TRANSACTIONS,hbciListTransactions,false +38028,e7229465-b937-449a-9b0b-9f4104c21641,AUTHORIZATION,,false +38029,e7229465-b937-449a-9b0b-9f4104c21641,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38030,e7229465-b937-449a-9b0b-9f4104c21641,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38031,e7229465-b937-449a-9b0b-9f4104c21641,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38032,c39b6261-4022-4655-a99c-ebf14b5613d1,LIST_ACCOUNTS,xs2aListAccounts,true -38033,c39b6261-4022-4655-a99c-ebf14b5613d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38033,c39b6261-4022-4655-a99c-ebf14b5613d1,LIST_TRANSACTIONS,xs2aListTransactions,true 38034,c39b6261-4022-4655-a99c-ebf14b5613d1,AUTHORIZATION,,true 38035,c39b6261-4022-4655-a99c-ebf14b5613d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38036,c39b6261-4022-4655-a99c-ebf14b5613d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38037,c39b6261-4022-4655-a99c-ebf14b5613d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38038,88a31076-23ac-4a8f-861b-20fedda602fe,LIST_ACCOUNTS,hbciListAccounts,false -38039,88a31076-23ac-4a8f-861b-20fedda602fe,LIST_TRANSACTIONS,hbciListTransactions,false -38040,88a31076-23ac-4a8f-861b-20fedda602fe,AUTHORIZATION,,false -38041,88a31076-23ac-4a8f-861b-20fedda602fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38042,88a31076-23ac-4a8f-861b-20fedda602fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38043,88a31076-23ac-4a8f-861b-20fedda602fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38038,3e472bac-61e0-4b73-9078-55329ae94100,LIST_ACCOUNTS,hbciListAccounts,false +38039,3e472bac-61e0-4b73-9078-55329ae94100,LIST_TRANSACTIONS,hbciListTransactions,false +38040,3e472bac-61e0-4b73-9078-55329ae94100,AUTHORIZATION,,false +38041,3e472bac-61e0-4b73-9078-55329ae94100,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38042,3e472bac-61e0-4b73-9078-55329ae94100,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38043,3e472bac-61e0-4b73-9078-55329ae94100,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38044,c164c9b7-27dd-4ed9-868c-6c1131243aeb,LIST_ACCOUNTS,xs2aListAccounts,true -38045,c164c9b7-27dd-4ed9-868c-6c1131243aeb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38045,c164c9b7-27dd-4ed9-868c-6c1131243aeb,LIST_TRANSACTIONS,xs2aListTransactions,true 38046,c164c9b7-27dd-4ed9-868c-6c1131243aeb,AUTHORIZATION,,true 38047,c164c9b7-27dd-4ed9-868c-6c1131243aeb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38048,c164c9b7-27dd-4ed9-868c-6c1131243aeb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38049,c164c9b7-27dd-4ed9-868c-6c1131243aeb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38050,56cfc4f9-b604-4701-ac9e-9361fdc981b1,LIST_ACCOUNTS,hbciListAccounts,false -38051,56cfc4f9-b604-4701-ac9e-9361fdc981b1,LIST_TRANSACTIONS,hbciListTransactions,false -38052,56cfc4f9-b604-4701-ac9e-9361fdc981b1,AUTHORIZATION,,false -38053,56cfc4f9-b604-4701-ac9e-9361fdc981b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38054,56cfc4f9-b604-4701-ac9e-9361fdc981b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38055,56cfc4f9-b604-4701-ac9e-9361fdc981b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38050,03847d76-d122-4fb7-bdd4-28174bb6e2ea,LIST_ACCOUNTS,hbciListAccounts,false +38051,03847d76-d122-4fb7-bdd4-28174bb6e2ea,LIST_TRANSACTIONS,hbciListTransactions,false +38052,03847d76-d122-4fb7-bdd4-28174bb6e2ea,AUTHORIZATION,,false +38053,03847d76-d122-4fb7-bdd4-28174bb6e2ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38054,03847d76-d122-4fb7-bdd4-28174bb6e2ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38055,03847d76-d122-4fb7-bdd4-28174bb6e2ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38056,1f923e5c-9bca-430a-8b7a-d2e31166a175,LIST_ACCOUNTS,xs2aListAccounts,true -38057,1f923e5c-9bca-430a-8b7a-d2e31166a175,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38057,1f923e5c-9bca-430a-8b7a-d2e31166a175,LIST_TRANSACTIONS,xs2aListTransactions,true 38058,1f923e5c-9bca-430a-8b7a-d2e31166a175,AUTHORIZATION,,true 38059,1f923e5c-9bca-430a-8b7a-d2e31166a175,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38060,1f923e5c-9bca-430a-8b7a-d2e31166a175,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38061,1f923e5c-9bca-430a-8b7a-d2e31166a175,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38062,9abd4025-a32c-4907-8d5a-aa18a7b142da,LIST_ACCOUNTS,hbciListAccounts,false -38063,9abd4025-a32c-4907-8d5a-aa18a7b142da,LIST_TRANSACTIONS,hbciListTransactions,false -38064,9abd4025-a32c-4907-8d5a-aa18a7b142da,AUTHORIZATION,,false -38065,9abd4025-a32c-4907-8d5a-aa18a7b142da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38066,9abd4025-a32c-4907-8d5a-aa18a7b142da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38067,9abd4025-a32c-4907-8d5a-aa18a7b142da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38062,356fd401-d880-460d-af30-eae1b33d08d7,LIST_ACCOUNTS,hbciListAccounts,false +38063,356fd401-d880-460d-af30-eae1b33d08d7,LIST_TRANSACTIONS,hbciListTransactions,false +38064,356fd401-d880-460d-af30-eae1b33d08d7,AUTHORIZATION,,false +38065,356fd401-d880-460d-af30-eae1b33d08d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38066,356fd401-d880-460d-af30-eae1b33d08d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38067,356fd401-d880-460d-af30-eae1b33d08d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38068,9b35cd16-43ef-40f2-86f7-3fa72f676dbb,LIST_ACCOUNTS,xs2aListAccounts,true -38069,9b35cd16-43ef-40f2-86f7-3fa72f676dbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38069,9b35cd16-43ef-40f2-86f7-3fa72f676dbb,LIST_TRANSACTIONS,xs2aListTransactions,true 38070,9b35cd16-43ef-40f2-86f7-3fa72f676dbb,AUTHORIZATION,,true 38071,9b35cd16-43ef-40f2-86f7-3fa72f676dbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38072,9b35cd16-43ef-40f2-86f7-3fa72f676dbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38073,9b35cd16-43ef-40f2-86f7-3fa72f676dbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38074,094c5f02-346f-48e7-8197-da71cf795ee9,LIST_ACCOUNTS,hbciListAccounts,false -38075,094c5f02-346f-48e7-8197-da71cf795ee9,LIST_TRANSACTIONS,hbciListTransactions,false -38076,094c5f02-346f-48e7-8197-da71cf795ee9,AUTHORIZATION,,false -38077,094c5f02-346f-48e7-8197-da71cf795ee9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38078,094c5f02-346f-48e7-8197-da71cf795ee9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38079,094c5f02-346f-48e7-8197-da71cf795ee9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38074,aa87d1de-6b17-4ca9-8d13-e115742b6815,LIST_ACCOUNTS,hbciListAccounts,false +38075,aa87d1de-6b17-4ca9-8d13-e115742b6815,LIST_TRANSACTIONS,hbciListTransactions,false +38076,aa87d1de-6b17-4ca9-8d13-e115742b6815,AUTHORIZATION,,false +38077,aa87d1de-6b17-4ca9-8d13-e115742b6815,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38078,aa87d1de-6b17-4ca9-8d13-e115742b6815,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38079,aa87d1de-6b17-4ca9-8d13-e115742b6815,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38080,2a860b9b-c2a7-432f-aead-057ee85a41aa,LIST_ACCOUNTS,xs2aListAccounts,true -38081,2a860b9b-c2a7-432f-aead-057ee85a41aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38081,2a860b9b-c2a7-432f-aead-057ee85a41aa,LIST_TRANSACTIONS,xs2aListTransactions,true 38082,2a860b9b-c2a7-432f-aead-057ee85a41aa,AUTHORIZATION,,true 38083,2a860b9b-c2a7-432f-aead-057ee85a41aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38084,2a860b9b-c2a7-432f-aead-057ee85a41aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38085,2a860b9b-c2a7-432f-aead-057ee85a41aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38086,2c7b5541-68ef-48b0-8a43-93539688fe5d,LIST_ACCOUNTS,hbciListAccounts,false -38087,2c7b5541-68ef-48b0-8a43-93539688fe5d,LIST_TRANSACTIONS,hbciListTransactions,false -38088,2c7b5541-68ef-48b0-8a43-93539688fe5d,AUTHORIZATION,,false -38089,2c7b5541-68ef-48b0-8a43-93539688fe5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38090,2c7b5541-68ef-48b0-8a43-93539688fe5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38091,2c7b5541-68ef-48b0-8a43-93539688fe5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38086,b5d6f20d-e576-4247-853d-e70a58979744,LIST_ACCOUNTS,hbciListAccounts,false +38087,b5d6f20d-e576-4247-853d-e70a58979744,LIST_TRANSACTIONS,hbciListTransactions,false +38088,b5d6f20d-e576-4247-853d-e70a58979744,AUTHORIZATION,,false +38089,b5d6f20d-e576-4247-853d-e70a58979744,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38090,b5d6f20d-e576-4247-853d-e70a58979744,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38091,b5d6f20d-e576-4247-853d-e70a58979744,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38092,86c4f627-2318-45a1-a3e7-16ee9c54b07f,LIST_ACCOUNTS,xs2aListAccounts,true -38093,86c4f627-2318-45a1-a3e7-16ee9c54b07f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38093,86c4f627-2318-45a1-a3e7-16ee9c54b07f,LIST_TRANSACTIONS,xs2aListTransactions,true 38094,86c4f627-2318-45a1-a3e7-16ee9c54b07f,AUTHORIZATION,,true 38095,86c4f627-2318-45a1-a3e7-16ee9c54b07f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38096,86c4f627-2318-45a1-a3e7-16ee9c54b07f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38097,86c4f627-2318-45a1-a3e7-16ee9c54b07f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38098,61d7778f-e5ae-4746-bab4-490cdd349023,LIST_ACCOUNTS,hbciListAccounts,false -38099,61d7778f-e5ae-4746-bab4-490cdd349023,LIST_TRANSACTIONS,hbciListTransactions,false -38100,61d7778f-e5ae-4746-bab4-490cdd349023,AUTHORIZATION,,false -38101,61d7778f-e5ae-4746-bab4-490cdd349023,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38102,61d7778f-e5ae-4746-bab4-490cdd349023,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38103,61d7778f-e5ae-4746-bab4-490cdd349023,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38098,42e4469f-b85c-4216-b9cf-d8db0b05aa46,LIST_ACCOUNTS,hbciListAccounts,false +38099,42e4469f-b85c-4216-b9cf-d8db0b05aa46,LIST_TRANSACTIONS,hbciListTransactions,false +38100,42e4469f-b85c-4216-b9cf-d8db0b05aa46,AUTHORIZATION,,false +38101,42e4469f-b85c-4216-b9cf-d8db0b05aa46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38102,42e4469f-b85c-4216-b9cf-d8db0b05aa46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38103,42e4469f-b85c-4216-b9cf-d8db0b05aa46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38104,d116d829-5948-47f3-b373-1447134f0967,LIST_ACCOUNTS,xs2aListAccounts,true -38105,d116d829-5948-47f3-b373-1447134f0967,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38105,d116d829-5948-47f3-b373-1447134f0967,LIST_TRANSACTIONS,xs2aListTransactions,true 38106,d116d829-5948-47f3-b373-1447134f0967,AUTHORIZATION,,true 38107,d116d829-5948-47f3-b373-1447134f0967,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38108,d116d829-5948-47f3-b373-1447134f0967,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38109,d116d829-5948-47f3-b373-1447134f0967,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38110,b2f99dcd-b2ea-45ab-ae9e-efadd9c12163,LIST_ACCOUNTS,hbciListAccounts,false -38111,b2f99dcd-b2ea-45ab-ae9e-efadd9c12163,LIST_TRANSACTIONS,hbciListTransactions,false -38112,b2f99dcd-b2ea-45ab-ae9e-efadd9c12163,AUTHORIZATION,,false -38113,b2f99dcd-b2ea-45ab-ae9e-efadd9c12163,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38114,b2f99dcd-b2ea-45ab-ae9e-efadd9c12163,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38115,b2f99dcd-b2ea-45ab-ae9e-efadd9c12163,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38110,5ca41eeb-ab08-4243-a2c8-b5c3bfb1016d,LIST_ACCOUNTS,hbciListAccounts,false +38111,5ca41eeb-ab08-4243-a2c8-b5c3bfb1016d,LIST_TRANSACTIONS,hbciListTransactions,false +38112,5ca41eeb-ab08-4243-a2c8-b5c3bfb1016d,AUTHORIZATION,,false +38113,5ca41eeb-ab08-4243-a2c8-b5c3bfb1016d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38114,5ca41eeb-ab08-4243-a2c8-b5c3bfb1016d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38115,5ca41eeb-ab08-4243-a2c8-b5c3bfb1016d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38116,068ec706-80ce-4bc0-b1fe-fabbe29b8e2a,LIST_ACCOUNTS,xs2aListAccounts,true -38117,068ec706-80ce-4bc0-b1fe-fabbe29b8e2a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38117,068ec706-80ce-4bc0-b1fe-fabbe29b8e2a,LIST_TRANSACTIONS,xs2aListTransactions,true 38118,068ec706-80ce-4bc0-b1fe-fabbe29b8e2a,AUTHORIZATION,,true 38119,068ec706-80ce-4bc0-b1fe-fabbe29b8e2a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38120,068ec706-80ce-4bc0-b1fe-fabbe29b8e2a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38121,068ec706-80ce-4bc0-b1fe-fabbe29b8e2a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38122,addc7975-a5c2-4fc2-aba6-a14c5adeeed8,LIST_ACCOUNTS,hbciListAccounts,false -38123,addc7975-a5c2-4fc2-aba6-a14c5adeeed8,LIST_TRANSACTIONS,hbciListTransactions,false -38124,addc7975-a5c2-4fc2-aba6-a14c5adeeed8,AUTHORIZATION,,false -38125,addc7975-a5c2-4fc2-aba6-a14c5adeeed8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38126,addc7975-a5c2-4fc2-aba6-a14c5adeeed8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38127,addc7975-a5c2-4fc2-aba6-a14c5adeeed8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38122,ebda6652-b093-4635-8117-cecfef0441bf,LIST_ACCOUNTS,hbciListAccounts,false +38123,ebda6652-b093-4635-8117-cecfef0441bf,LIST_TRANSACTIONS,hbciListTransactions,false +38124,ebda6652-b093-4635-8117-cecfef0441bf,AUTHORIZATION,,false +38125,ebda6652-b093-4635-8117-cecfef0441bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38126,ebda6652-b093-4635-8117-cecfef0441bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38127,ebda6652-b093-4635-8117-cecfef0441bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38128,4fd10adf-a7f9-47a5-af11-ce397e2a24d2,LIST_ACCOUNTS,xs2aListAccounts,true -38129,4fd10adf-a7f9-47a5-af11-ce397e2a24d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38129,4fd10adf-a7f9-47a5-af11-ce397e2a24d2,LIST_TRANSACTIONS,xs2aListTransactions,true 38130,4fd10adf-a7f9-47a5-af11-ce397e2a24d2,AUTHORIZATION,,true 38131,4fd10adf-a7f9-47a5-af11-ce397e2a24d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38132,4fd10adf-a7f9-47a5-af11-ce397e2a24d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38133,4fd10adf-a7f9-47a5-af11-ce397e2a24d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38134,60afa64c-a45a-44b4-ab9f-1ab4dfecdcd9,LIST_ACCOUNTS,hbciListAccounts,false -38135,60afa64c-a45a-44b4-ab9f-1ab4dfecdcd9,LIST_TRANSACTIONS,hbciListTransactions,false -38136,60afa64c-a45a-44b4-ab9f-1ab4dfecdcd9,AUTHORIZATION,,false -38137,60afa64c-a45a-44b4-ab9f-1ab4dfecdcd9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38138,60afa64c-a45a-44b4-ab9f-1ab4dfecdcd9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38139,60afa64c-a45a-44b4-ab9f-1ab4dfecdcd9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38134,aa6d0013-2161-416a-8277-c5445556da85,LIST_ACCOUNTS,hbciListAccounts,false +38135,aa6d0013-2161-416a-8277-c5445556da85,LIST_TRANSACTIONS,hbciListTransactions,false +38136,aa6d0013-2161-416a-8277-c5445556da85,AUTHORIZATION,,false +38137,aa6d0013-2161-416a-8277-c5445556da85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38138,aa6d0013-2161-416a-8277-c5445556da85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38139,aa6d0013-2161-416a-8277-c5445556da85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38140,54baa75a-ee41-4b2e-8351-cb18f55dc9bc,LIST_ACCOUNTS,xs2aListAccounts,true -38141,54baa75a-ee41-4b2e-8351-cb18f55dc9bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38141,54baa75a-ee41-4b2e-8351-cb18f55dc9bc,LIST_TRANSACTIONS,xs2aListTransactions,true 38142,54baa75a-ee41-4b2e-8351-cb18f55dc9bc,AUTHORIZATION,,true 38143,54baa75a-ee41-4b2e-8351-cb18f55dc9bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38144,54baa75a-ee41-4b2e-8351-cb18f55dc9bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38145,54baa75a-ee41-4b2e-8351-cb18f55dc9bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38146,f4751381-966b-4ca3-8229-cddc6bb79f02,LIST_ACCOUNTS,hbciListAccounts,false -38147,f4751381-966b-4ca3-8229-cddc6bb79f02,LIST_TRANSACTIONS,hbciListTransactions,false -38148,f4751381-966b-4ca3-8229-cddc6bb79f02,AUTHORIZATION,,false -38149,f4751381-966b-4ca3-8229-cddc6bb79f02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38150,f4751381-966b-4ca3-8229-cddc6bb79f02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38151,f4751381-966b-4ca3-8229-cddc6bb79f02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38146,4b10d956-d287-4c6d-93ff-056655ada77b,LIST_ACCOUNTS,hbciListAccounts,false +38147,4b10d956-d287-4c6d-93ff-056655ada77b,LIST_TRANSACTIONS,hbciListTransactions,false +38148,4b10d956-d287-4c6d-93ff-056655ada77b,AUTHORIZATION,,false +38149,4b10d956-d287-4c6d-93ff-056655ada77b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38150,4b10d956-d287-4c6d-93ff-056655ada77b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38151,4b10d956-d287-4c6d-93ff-056655ada77b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38152,b3ada801-d6a5-4f2c-98a0-ca90208c6985,LIST_ACCOUNTS,xs2aListAccounts,true -38153,b3ada801-d6a5-4f2c-98a0-ca90208c6985,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38153,b3ada801-d6a5-4f2c-98a0-ca90208c6985,LIST_TRANSACTIONS,xs2aListTransactions,true 38154,b3ada801-d6a5-4f2c-98a0-ca90208c6985,AUTHORIZATION,,true 38155,b3ada801-d6a5-4f2c-98a0-ca90208c6985,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38156,b3ada801-d6a5-4f2c-98a0-ca90208c6985,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38157,b3ada801-d6a5-4f2c-98a0-ca90208c6985,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38158,265dd71c-9dfb-4304-9c33-0643dc6217e5,LIST_ACCOUNTS,hbciListAccounts,false -38159,265dd71c-9dfb-4304-9c33-0643dc6217e5,LIST_TRANSACTIONS,hbciListTransactions,false -38160,265dd71c-9dfb-4304-9c33-0643dc6217e5,AUTHORIZATION,,false -38161,265dd71c-9dfb-4304-9c33-0643dc6217e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38162,265dd71c-9dfb-4304-9c33-0643dc6217e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38163,265dd71c-9dfb-4304-9c33-0643dc6217e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38158,a9c40228-5f23-4c8c-901a-03233cc7331a,LIST_ACCOUNTS,hbciListAccounts,false +38159,a9c40228-5f23-4c8c-901a-03233cc7331a,LIST_TRANSACTIONS,hbciListTransactions,false +38160,a9c40228-5f23-4c8c-901a-03233cc7331a,AUTHORIZATION,,false +38161,a9c40228-5f23-4c8c-901a-03233cc7331a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38162,a9c40228-5f23-4c8c-901a-03233cc7331a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38163,a9c40228-5f23-4c8c-901a-03233cc7331a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38164,41988ca0-8977-4e06-a84b-261c1adb7da6,LIST_ACCOUNTS,xs2aListAccounts,true -38165,41988ca0-8977-4e06-a84b-261c1adb7da6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38165,41988ca0-8977-4e06-a84b-261c1adb7da6,LIST_TRANSACTIONS,xs2aListTransactions,true 38166,41988ca0-8977-4e06-a84b-261c1adb7da6,AUTHORIZATION,,true 38167,41988ca0-8977-4e06-a84b-261c1adb7da6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38168,41988ca0-8977-4e06-a84b-261c1adb7da6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38169,41988ca0-8977-4e06-a84b-261c1adb7da6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38170,0674a71a-2f70-45e1-b8d1-d210cb33f424,LIST_ACCOUNTS,hbciListAccounts,false -38171,0674a71a-2f70-45e1-b8d1-d210cb33f424,LIST_TRANSACTIONS,hbciListTransactions,false -38172,0674a71a-2f70-45e1-b8d1-d210cb33f424,AUTHORIZATION,,false -38173,0674a71a-2f70-45e1-b8d1-d210cb33f424,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38174,0674a71a-2f70-45e1-b8d1-d210cb33f424,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38175,0674a71a-2f70-45e1-b8d1-d210cb33f424,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38170,b71c467e-b67c-46a5-98c2-2bca339ad2af,LIST_ACCOUNTS,hbciListAccounts,false +38171,b71c467e-b67c-46a5-98c2-2bca339ad2af,LIST_TRANSACTIONS,hbciListTransactions,false +38172,b71c467e-b67c-46a5-98c2-2bca339ad2af,AUTHORIZATION,,false +38173,b71c467e-b67c-46a5-98c2-2bca339ad2af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38174,b71c467e-b67c-46a5-98c2-2bca339ad2af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38175,b71c467e-b67c-46a5-98c2-2bca339ad2af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38176,f86be200-67fa-415a-9c28-f4f48144dac2,LIST_ACCOUNTS,xs2aListAccounts,true -38177,f86be200-67fa-415a-9c28-f4f48144dac2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38177,f86be200-67fa-415a-9c28-f4f48144dac2,LIST_TRANSACTIONS,xs2aListTransactions,true 38178,f86be200-67fa-415a-9c28-f4f48144dac2,AUTHORIZATION,,true 38179,f86be200-67fa-415a-9c28-f4f48144dac2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38180,f86be200-67fa-415a-9c28-f4f48144dac2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38181,f86be200-67fa-415a-9c28-f4f48144dac2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38182,236c9455-c27f-403a-89b8-8e53724a6ce8,LIST_ACCOUNTS,hbciListAccounts,false -38183,236c9455-c27f-403a-89b8-8e53724a6ce8,LIST_TRANSACTIONS,hbciListTransactions,false -38184,236c9455-c27f-403a-89b8-8e53724a6ce8,AUTHORIZATION,,false -38185,236c9455-c27f-403a-89b8-8e53724a6ce8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38186,236c9455-c27f-403a-89b8-8e53724a6ce8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38187,236c9455-c27f-403a-89b8-8e53724a6ce8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38182,d91515fa-50a7-4719-8aad-79d09b1dd40e,LIST_ACCOUNTS,hbciListAccounts,false +38183,d91515fa-50a7-4719-8aad-79d09b1dd40e,LIST_TRANSACTIONS,hbciListTransactions,false +38184,d91515fa-50a7-4719-8aad-79d09b1dd40e,AUTHORIZATION,,false +38185,d91515fa-50a7-4719-8aad-79d09b1dd40e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38186,d91515fa-50a7-4719-8aad-79d09b1dd40e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38187,d91515fa-50a7-4719-8aad-79d09b1dd40e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38188,2d553631-3dd0-4e0f-826e-313ae1ac8d85,LIST_ACCOUNTS,xs2aListAccounts,true -38189,2d553631-3dd0-4e0f-826e-313ae1ac8d85,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38189,2d553631-3dd0-4e0f-826e-313ae1ac8d85,LIST_TRANSACTIONS,xs2aListTransactions,true 38190,2d553631-3dd0-4e0f-826e-313ae1ac8d85,AUTHORIZATION,,true 38191,2d553631-3dd0-4e0f-826e-313ae1ac8d85,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38192,2d553631-3dd0-4e0f-826e-313ae1ac8d85,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38193,2d553631-3dd0-4e0f-826e-313ae1ac8d85,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38194,cd44f729-e6e4-4346-89db-ba6131d9f7ef,LIST_ACCOUNTS,hbciListAccounts,false -38195,cd44f729-e6e4-4346-89db-ba6131d9f7ef,LIST_TRANSACTIONS,hbciListTransactions,false -38196,cd44f729-e6e4-4346-89db-ba6131d9f7ef,AUTHORIZATION,,false -38197,cd44f729-e6e4-4346-89db-ba6131d9f7ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38198,cd44f729-e6e4-4346-89db-ba6131d9f7ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38199,cd44f729-e6e4-4346-89db-ba6131d9f7ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38194,b4cc81d8-3c6a-40bd-b082-8f200807c239,LIST_ACCOUNTS,hbciListAccounts,false +38195,b4cc81d8-3c6a-40bd-b082-8f200807c239,LIST_TRANSACTIONS,hbciListTransactions,false +38196,b4cc81d8-3c6a-40bd-b082-8f200807c239,AUTHORIZATION,,false +38197,b4cc81d8-3c6a-40bd-b082-8f200807c239,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38198,b4cc81d8-3c6a-40bd-b082-8f200807c239,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38199,b4cc81d8-3c6a-40bd-b082-8f200807c239,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38200,0a8faf3a-48ad-4293-a127-f98bd90da3a9,LIST_ACCOUNTS,xs2aListAccounts,true -38201,0a8faf3a-48ad-4293-a127-f98bd90da3a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38201,0a8faf3a-48ad-4293-a127-f98bd90da3a9,LIST_TRANSACTIONS,xs2aListTransactions,true 38202,0a8faf3a-48ad-4293-a127-f98bd90da3a9,AUTHORIZATION,,true 38203,0a8faf3a-48ad-4293-a127-f98bd90da3a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38204,0a8faf3a-48ad-4293-a127-f98bd90da3a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38205,0a8faf3a-48ad-4293-a127-f98bd90da3a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38206,04618d34-ad50-462a-969b-b23ccef01985,LIST_ACCOUNTS,hbciListAccounts,false -38207,04618d34-ad50-462a-969b-b23ccef01985,LIST_TRANSACTIONS,hbciListTransactions,false -38208,04618d34-ad50-462a-969b-b23ccef01985,AUTHORIZATION,,false -38209,04618d34-ad50-462a-969b-b23ccef01985,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38210,04618d34-ad50-462a-969b-b23ccef01985,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38211,04618d34-ad50-462a-969b-b23ccef01985,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38206,ce996e29-e168-465e-bf1b-32fb20f31164,LIST_ACCOUNTS,hbciListAccounts,false +38207,ce996e29-e168-465e-bf1b-32fb20f31164,LIST_TRANSACTIONS,hbciListTransactions,false +38208,ce996e29-e168-465e-bf1b-32fb20f31164,AUTHORIZATION,,false +38209,ce996e29-e168-465e-bf1b-32fb20f31164,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38210,ce996e29-e168-465e-bf1b-32fb20f31164,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38211,ce996e29-e168-465e-bf1b-32fb20f31164,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38212,0b3878a9-da7e-4bd9-8300-992d2a704965,LIST_ACCOUNTS,xs2aListAccounts,true -38213,0b3878a9-da7e-4bd9-8300-992d2a704965,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38213,0b3878a9-da7e-4bd9-8300-992d2a704965,LIST_TRANSACTIONS,xs2aListTransactions,true 38214,0b3878a9-da7e-4bd9-8300-992d2a704965,AUTHORIZATION,,true 38215,0b3878a9-da7e-4bd9-8300-992d2a704965,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38216,0b3878a9-da7e-4bd9-8300-992d2a704965,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38217,0b3878a9-da7e-4bd9-8300-992d2a704965,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38218,6f752ecf-0820-4049-89f3-522961f45b4f,LIST_ACCOUNTS,hbciListAccounts,false -38219,6f752ecf-0820-4049-89f3-522961f45b4f,LIST_TRANSACTIONS,hbciListTransactions,false -38220,6f752ecf-0820-4049-89f3-522961f45b4f,AUTHORIZATION,,false -38221,6f752ecf-0820-4049-89f3-522961f45b4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38222,6f752ecf-0820-4049-89f3-522961f45b4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38223,6f752ecf-0820-4049-89f3-522961f45b4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38218,16ec49a4-61bf-44c3-8d0f-9c47015cc362,LIST_ACCOUNTS,hbciListAccounts,false +38219,16ec49a4-61bf-44c3-8d0f-9c47015cc362,LIST_TRANSACTIONS,hbciListTransactions,false +38220,16ec49a4-61bf-44c3-8d0f-9c47015cc362,AUTHORIZATION,,false +38221,16ec49a4-61bf-44c3-8d0f-9c47015cc362,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38222,16ec49a4-61bf-44c3-8d0f-9c47015cc362,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38223,16ec49a4-61bf-44c3-8d0f-9c47015cc362,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38224,e5f95e5b-9420-4732-894f-538735ca186e,LIST_ACCOUNTS,xs2aListAccounts,true -38225,e5f95e5b-9420-4732-894f-538735ca186e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38225,e5f95e5b-9420-4732-894f-538735ca186e,LIST_TRANSACTIONS,xs2aListTransactions,true 38226,e5f95e5b-9420-4732-894f-538735ca186e,AUTHORIZATION,,true 38227,e5f95e5b-9420-4732-894f-538735ca186e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38228,e5f95e5b-9420-4732-894f-538735ca186e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38229,e5f95e5b-9420-4732-894f-538735ca186e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38230,41f30948-6a47-44c6-bbe5-2fb23ce74d45,LIST_ACCOUNTS,hbciListAccounts,false -38231,41f30948-6a47-44c6-bbe5-2fb23ce74d45,LIST_TRANSACTIONS,hbciListTransactions,false -38232,41f30948-6a47-44c6-bbe5-2fb23ce74d45,AUTHORIZATION,,false -38233,41f30948-6a47-44c6-bbe5-2fb23ce74d45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38234,41f30948-6a47-44c6-bbe5-2fb23ce74d45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38235,41f30948-6a47-44c6-bbe5-2fb23ce74d45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38230,32b4581d-0b3d-4d61-aad9-81c8ee84b6b1,LIST_ACCOUNTS,hbciListAccounts,false +38231,32b4581d-0b3d-4d61-aad9-81c8ee84b6b1,LIST_TRANSACTIONS,hbciListTransactions,false +38232,32b4581d-0b3d-4d61-aad9-81c8ee84b6b1,AUTHORIZATION,,false +38233,32b4581d-0b3d-4d61-aad9-81c8ee84b6b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38234,32b4581d-0b3d-4d61-aad9-81c8ee84b6b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38235,32b4581d-0b3d-4d61-aad9-81c8ee84b6b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38236,be775512-ed28-4b4d-8779-0281c272bc26,LIST_ACCOUNTS,xs2aListAccounts,true -38237,be775512-ed28-4b4d-8779-0281c272bc26,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38237,be775512-ed28-4b4d-8779-0281c272bc26,LIST_TRANSACTIONS,xs2aListTransactions,true 38238,be775512-ed28-4b4d-8779-0281c272bc26,AUTHORIZATION,,true 38239,be775512-ed28-4b4d-8779-0281c272bc26,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38240,be775512-ed28-4b4d-8779-0281c272bc26,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38241,be775512-ed28-4b4d-8779-0281c272bc26,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38242,88de2bec-5134-4002-a17e-9ee2fd2602ec,LIST_ACCOUNTS,hbciListAccounts,false -38243,88de2bec-5134-4002-a17e-9ee2fd2602ec,LIST_TRANSACTIONS,hbciListTransactions,false -38244,88de2bec-5134-4002-a17e-9ee2fd2602ec,AUTHORIZATION,,false -38245,88de2bec-5134-4002-a17e-9ee2fd2602ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38246,88de2bec-5134-4002-a17e-9ee2fd2602ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38247,88de2bec-5134-4002-a17e-9ee2fd2602ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38242,00617a38-3aba-44d4-a717-61c566f17467,LIST_ACCOUNTS,hbciListAccounts,false +38243,00617a38-3aba-44d4-a717-61c566f17467,LIST_TRANSACTIONS,hbciListTransactions,false +38244,00617a38-3aba-44d4-a717-61c566f17467,AUTHORIZATION,,false +38245,00617a38-3aba-44d4-a717-61c566f17467,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38246,00617a38-3aba-44d4-a717-61c566f17467,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38247,00617a38-3aba-44d4-a717-61c566f17467,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38248,7659260c-c943-4341-a31a-8ca402d6caa1,LIST_ACCOUNTS,xs2aListAccounts,true -38249,7659260c-c943-4341-a31a-8ca402d6caa1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38249,7659260c-c943-4341-a31a-8ca402d6caa1,LIST_TRANSACTIONS,xs2aListTransactions,true 38250,7659260c-c943-4341-a31a-8ca402d6caa1,AUTHORIZATION,,true 38251,7659260c-c943-4341-a31a-8ca402d6caa1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38252,7659260c-c943-4341-a31a-8ca402d6caa1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38253,7659260c-c943-4341-a31a-8ca402d6caa1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38254,3dd86d4f-e81a-4ef7-a243-510b18d5f5f3,LIST_ACCOUNTS,hbciListAccounts,false -38255,3dd86d4f-e81a-4ef7-a243-510b18d5f5f3,LIST_TRANSACTIONS,hbciListTransactions,false -38256,3dd86d4f-e81a-4ef7-a243-510b18d5f5f3,AUTHORIZATION,,false -38257,3dd86d4f-e81a-4ef7-a243-510b18d5f5f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38258,3dd86d4f-e81a-4ef7-a243-510b18d5f5f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38259,3dd86d4f-e81a-4ef7-a243-510b18d5f5f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38254,7b1eee7d-b006-46fa-baa5-7c3b49dbc9c3,LIST_ACCOUNTS,hbciListAccounts,false +38255,7b1eee7d-b006-46fa-baa5-7c3b49dbc9c3,LIST_TRANSACTIONS,hbciListTransactions,false +38256,7b1eee7d-b006-46fa-baa5-7c3b49dbc9c3,AUTHORIZATION,,false +38257,7b1eee7d-b006-46fa-baa5-7c3b49dbc9c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38258,7b1eee7d-b006-46fa-baa5-7c3b49dbc9c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38259,7b1eee7d-b006-46fa-baa5-7c3b49dbc9c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38260,fe5ed25f-7f23-4ed0-9f58-0621f85d0a28,LIST_ACCOUNTS,xs2aListAccounts,true -38261,fe5ed25f-7f23-4ed0-9f58-0621f85d0a28,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38261,fe5ed25f-7f23-4ed0-9f58-0621f85d0a28,LIST_TRANSACTIONS,xs2aListTransactions,true 38262,fe5ed25f-7f23-4ed0-9f58-0621f85d0a28,AUTHORIZATION,,true 38263,fe5ed25f-7f23-4ed0-9f58-0621f85d0a28,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38264,fe5ed25f-7f23-4ed0-9f58-0621f85d0a28,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38265,fe5ed25f-7f23-4ed0-9f58-0621f85d0a28,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38266,8405ce99-cc54-4b30-94ea-e96d5aef989f,LIST_ACCOUNTS,hbciListAccounts,false -38267,8405ce99-cc54-4b30-94ea-e96d5aef989f,LIST_TRANSACTIONS,hbciListTransactions,false -38268,8405ce99-cc54-4b30-94ea-e96d5aef989f,AUTHORIZATION,,false -38269,8405ce99-cc54-4b30-94ea-e96d5aef989f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38270,8405ce99-cc54-4b30-94ea-e96d5aef989f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38271,8405ce99-cc54-4b30-94ea-e96d5aef989f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38266,bc203d8b-695d-4797-abcb-95b243a0fa71,LIST_ACCOUNTS,hbciListAccounts,false +38267,bc203d8b-695d-4797-abcb-95b243a0fa71,LIST_TRANSACTIONS,hbciListTransactions,false +38268,bc203d8b-695d-4797-abcb-95b243a0fa71,AUTHORIZATION,,false +38269,bc203d8b-695d-4797-abcb-95b243a0fa71,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38270,bc203d8b-695d-4797-abcb-95b243a0fa71,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38271,bc203d8b-695d-4797-abcb-95b243a0fa71,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38272,2865652d-eb4f-44f4-bb85-c8a68b55720c,LIST_ACCOUNTS,xs2aListAccounts,true -38273,2865652d-eb4f-44f4-bb85-c8a68b55720c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38273,2865652d-eb4f-44f4-bb85-c8a68b55720c,LIST_TRANSACTIONS,xs2aListTransactions,true 38274,2865652d-eb4f-44f4-bb85-c8a68b55720c,AUTHORIZATION,,true 38275,2865652d-eb4f-44f4-bb85-c8a68b55720c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38276,2865652d-eb4f-44f4-bb85-c8a68b55720c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38277,2865652d-eb4f-44f4-bb85-c8a68b55720c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38278,f30cbbd0-f80a-495f-9956-fc8ff7975653,LIST_ACCOUNTS,hbciListAccounts,false -38279,f30cbbd0-f80a-495f-9956-fc8ff7975653,LIST_TRANSACTIONS,hbciListTransactions,false -38280,f30cbbd0-f80a-495f-9956-fc8ff7975653,AUTHORIZATION,,false -38281,f30cbbd0-f80a-495f-9956-fc8ff7975653,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38282,f30cbbd0-f80a-495f-9956-fc8ff7975653,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38283,f30cbbd0-f80a-495f-9956-fc8ff7975653,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38278,6f83e24c-5f9c-4937-8d61-385458a20f35,LIST_ACCOUNTS,hbciListAccounts,false +38279,6f83e24c-5f9c-4937-8d61-385458a20f35,LIST_TRANSACTIONS,hbciListTransactions,false +38280,6f83e24c-5f9c-4937-8d61-385458a20f35,AUTHORIZATION,,false +38281,6f83e24c-5f9c-4937-8d61-385458a20f35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38282,6f83e24c-5f9c-4937-8d61-385458a20f35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38283,6f83e24c-5f9c-4937-8d61-385458a20f35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38284,9572e1cc-5785-46a4-b567-a3d4c86fee31,LIST_ACCOUNTS,xs2aListAccounts,true -38285,9572e1cc-5785-46a4-b567-a3d4c86fee31,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38285,9572e1cc-5785-46a4-b567-a3d4c86fee31,LIST_TRANSACTIONS,xs2aListTransactions,true 38286,9572e1cc-5785-46a4-b567-a3d4c86fee31,AUTHORIZATION,,true 38287,9572e1cc-5785-46a4-b567-a3d4c86fee31,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38288,9572e1cc-5785-46a4-b567-a3d4c86fee31,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38289,9572e1cc-5785-46a4-b567-a3d4c86fee31,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38290,4230214c-7080-4428-a589-21ddaccdf650,LIST_ACCOUNTS,hbciListAccounts,false -38291,4230214c-7080-4428-a589-21ddaccdf650,LIST_TRANSACTIONS,hbciListTransactions,false -38292,4230214c-7080-4428-a589-21ddaccdf650,AUTHORIZATION,,false -38293,4230214c-7080-4428-a589-21ddaccdf650,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38294,4230214c-7080-4428-a589-21ddaccdf650,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38295,4230214c-7080-4428-a589-21ddaccdf650,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38290,18a58dcd-5869-416d-887a-6b66d4140a1e,LIST_ACCOUNTS,hbciListAccounts,false +38291,18a58dcd-5869-416d-887a-6b66d4140a1e,LIST_TRANSACTIONS,hbciListTransactions,false +38292,18a58dcd-5869-416d-887a-6b66d4140a1e,AUTHORIZATION,,false +38293,18a58dcd-5869-416d-887a-6b66d4140a1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38294,18a58dcd-5869-416d-887a-6b66d4140a1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38295,18a58dcd-5869-416d-887a-6b66d4140a1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38296,33db41e0-568a-40d0-b744-3b36dd83e7b6,LIST_ACCOUNTS,xs2aListAccounts,true -38297,33db41e0-568a-40d0-b744-3b36dd83e7b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38297,33db41e0-568a-40d0-b744-3b36dd83e7b6,LIST_TRANSACTIONS,xs2aListTransactions,true 38298,33db41e0-568a-40d0-b744-3b36dd83e7b6,AUTHORIZATION,,true 38299,33db41e0-568a-40d0-b744-3b36dd83e7b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38300,33db41e0-568a-40d0-b744-3b36dd83e7b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38301,33db41e0-568a-40d0-b744-3b36dd83e7b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38302,17c31e2f-4f6c-4c38-a48e-a8a6a997907f,LIST_ACCOUNTS,hbciListAccounts,false -38303,17c31e2f-4f6c-4c38-a48e-a8a6a997907f,LIST_TRANSACTIONS,hbciListTransactions,false -38304,17c31e2f-4f6c-4c38-a48e-a8a6a997907f,AUTHORIZATION,,false -38305,17c31e2f-4f6c-4c38-a48e-a8a6a997907f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38306,17c31e2f-4f6c-4c38-a48e-a8a6a997907f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38307,17c31e2f-4f6c-4c38-a48e-a8a6a997907f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38302,b328a931-a920-4435-a3c5-78c05a996019,LIST_ACCOUNTS,hbciListAccounts,false +38303,b328a931-a920-4435-a3c5-78c05a996019,LIST_TRANSACTIONS,hbciListTransactions,false +38304,b328a931-a920-4435-a3c5-78c05a996019,AUTHORIZATION,,false +38305,b328a931-a920-4435-a3c5-78c05a996019,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38306,b328a931-a920-4435-a3c5-78c05a996019,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38307,b328a931-a920-4435-a3c5-78c05a996019,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38308,01b12e3a-f4b9-46f2-b6e1-343d3a852db4,LIST_ACCOUNTS,xs2aListAccounts,true -38309,01b12e3a-f4b9-46f2-b6e1-343d3a852db4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38309,01b12e3a-f4b9-46f2-b6e1-343d3a852db4,LIST_TRANSACTIONS,xs2aListTransactions,true 38310,01b12e3a-f4b9-46f2-b6e1-343d3a852db4,AUTHORIZATION,,true 38311,01b12e3a-f4b9-46f2-b6e1-343d3a852db4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38312,01b12e3a-f4b9-46f2-b6e1-343d3a852db4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38313,01b12e3a-f4b9-46f2-b6e1-343d3a852db4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38314,6da92e5f-a272-4d61-82c7-77b9845885e7,LIST_ACCOUNTS,hbciListAccounts,false -38315,6da92e5f-a272-4d61-82c7-77b9845885e7,LIST_TRANSACTIONS,hbciListTransactions,false -38316,6da92e5f-a272-4d61-82c7-77b9845885e7,AUTHORIZATION,,false -38317,6da92e5f-a272-4d61-82c7-77b9845885e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38318,6da92e5f-a272-4d61-82c7-77b9845885e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38319,6da92e5f-a272-4d61-82c7-77b9845885e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38314,05e61010-41e3-427d-bd98-2647ddd32ac9,LIST_ACCOUNTS,hbciListAccounts,false +38315,05e61010-41e3-427d-bd98-2647ddd32ac9,LIST_TRANSACTIONS,hbciListTransactions,false +38316,05e61010-41e3-427d-bd98-2647ddd32ac9,AUTHORIZATION,,false +38317,05e61010-41e3-427d-bd98-2647ddd32ac9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38318,05e61010-41e3-427d-bd98-2647ddd32ac9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38319,05e61010-41e3-427d-bd98-2647ddd32ac9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38320,dbe53845-2ac6-4e78-a028-1db95e828951,LIST_ACCOUNTS,xs2aListAccounts,true -38321,dbe53845-2ac6-4e78-a028-1db95e828951,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38321,dbe53845-2ac6-4e78-a028-1db95e828951,LIST_TRANSACTIONS,xs2aListTransactions,true 38322,dbe53845-2ac6-4e78-a028-1db95e828951,AUTHORIZATION,,true 38323,dbe53845-2ac6-4e78-a028-1db95e828951,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38324,dbe53845-2ac6-4e78-a028-1db95e828951,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38325,dbe53845-2ac6-4e78-a028-1db95e828951,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38326,477b19f7-d453-453b-a6be-b50f2266a0ac,LIST_ACCOUNTS,hbciListAccounts,false -38327,477b19f7-d453-453b-a6be-b50f2266a0ac,LIST_TRANSACTIONS,hbciListTransactions,false -38328,477b19f7-d453-453b-a6be-b50f2266a0ac,AUTHORIZATION,,false -38329,477b19f7-d453-453b-a6be-b50f2266a0ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38330,477b19f7-d453-453b-a6be-b50f2266a0ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38331,477b19f7-d453-453b-a6be-b50f2266a0ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38326,537c9618-32bc-42a6-adb4-3e3520b0de52,LIST_ACCOUNTS,hbciListAccounts,false +38327,537c9618-32bc-42a6-adb4-3e3520b0de52,LIST_TRANSACTIONS,hbciListTransactions,false +38328,537c9618-32bc-42a6-adb4-3e3520b0de52,AUTHORIZATION,,false +38329,537c9618-32bc-42a6-adb4-3e3520b0de52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38330,537c9618-32bc-42a6-adb4-3e3520b0de52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38331,537c9618-32bc-42a6-adb4-3e3520b0de52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38332,6bd430a6-28ec-464b-9b28-c01714d2c989,LIST_ACCOUNTS,xs2aListAccounts,true -38333,6bd430a6-28ec-464b-9b28-c01714d2c989,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38333,6bd430a6-28ec-464b-9b28-c01714d2c989,LIST_TRANSACTIONS,xs2aListTransactions,true 38334,6bd430a6-28ec-464b-9b28-c01714d2c989,AUTHORIZATION,,true 38335,6bd430a6-28ec-464b-9b28-c01714d2c989,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38336,6bd430a6-28ec-464b-9b28-c01714d2c989,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38337,6bd430a6-28ec-464b-9b28-c01714d2c989,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38338,1692550b-b99b-4398-bcd7-f3ef55fd58ee,LIST_ACCOUNTS,hbciListAccounts,false -38339,1692550b-b99b-4398-bcd7-f3ef55fd58ee,LIST_TRANSACTIONS,hbciListTransactions,false -38340,1692550b-b99b-4398-bcd7-f3ef55fd58ee,AUTHORIZATION,,false -38341,1692550b-b99b-4398-bcd7-f3ef55fd58ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38342,1692550b-b99b-4398-bcd7-f3ef55fd58ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38343,1692550b-b99b-4398-bcd7-f3ef55fd58ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38338,cf644552-b2f4-4f62-9d69-51db5558dc3d,LIST_ACCOUNTS,hbciListAccounts,false +38339,cf644552-b2f4-4f62-9d69-51db5558dc3d,LIST_TRANSACTIONS,hbciListTransactions,false +38340,cf644552-b2f4-4f62-9d69-51db5558dc3d,AUTHORIZATION,,false +38341,cf644552-b2f4-4f62-9d69-51db5558dc3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38342,cf644552-b2f4-4f62-9d69-51db5558dc3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38343,cf644552-b2f4-4f62-9d69-51db5558dc3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38344,18b1276c-86ae-45fe-87f1-1e649cb9c57c,LIST_ACCOUNTS,xs2aListAccounts,true -38345,18b1276c-86ae-45fe-87f1-1e649cb9c57c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38345,18b1276c-86ae-45fe-87f1-1e649cb9c57c,LIST_TRANSACTIONS,xs2aListTransactions,true 38346,18b1276c-86ae-45fe-87f1-1e649cb9c57c,AUTHORIZATION,,true 38347,18b1276c-86ae-45fe-87f1-1e649cb9c57c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38348,18b1276c-86ae-45fe-87f1-1e649cb9c57c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38349,18b1276c-86ae-45fe-87f1-1e649cb9c57c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38350,653612a3-3f46-4009-868d-2a76545de809,LIST_ACCOUNTS,hbciListAccounts,false -38351,653612a3-3f46-4009-868d-2a76545de809,LIST_TRANSACTIONS,hbciListTransactions,false -38352,653612a3-3f46-4009-868d-2a76545de809,AUTHORIZATION,,false -38353,653612a3-3f46-4009-868d-2a76545de809,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38354,653612a3-3f46-4009-868d-2a76545de809,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38355,653612a3-3f46-4009-868d-2a76545de809,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38350,573fad96-12ed-48b0-90e9-428f107864c9,LIST_ACCOUNTS,hbciListAccounts,false +38351,573fad96-12ed-48b0-90e9-428f107864c9,LIST_TRANSACTIONS,hbciListTransactions,false +38352,573fad96-12ed-48b0-90e9-428f107864c9,AUTHORIZATION,,false +38353,573fad96-12ed-48b0-90e9-428f107864c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38354,573fad96-12ed-48b0-90e9-428f107864c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38355,573fad96-12ed-48b0-90e9-428f107864c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38356,07e7de77-8303-4427-b0d4-83246c8071a7,LIST_ACCOUNTS,xs2aListAccounts,true -38357,07e7de77-8303-4427-b0d4-83246c8071a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38357,07e7de77-8303-4427-b0d4-83246c8071a7,LIST_TRANSACTIONS,xs2aListTransactions,true 38358,07e7de77-8303-4427-b0d4-83246c8071a7,AUTHORIZATION,,true 38359,07e7de77-8303-4427-b0d4-83246c8071a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38360,07e7de77-8303-4427-b0d4-83246c8071a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38361,07e7de77-8303-4427-b0d4-83246c8071a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38362,e7253c67-c6b0-4421-a070-42728f3c8794,LIST_ACCOUNTS,hbciListAccounts,false -38363,e7253c67-c6b0-4421-a070-42728f3c8794,LIST_TRANSACTIONS,hbciListTransactions,false -38364,e7253c67-c6b0-4421-a070-42728f3c8794,AUTHORIZATION,,false -38365,e7253c67-c6b0-4421-a070-42728f3c8794,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38366,e7253c67-c6b0-4421-a070-42728f3c8794,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38367,e7253c67-c6b0-4421-a070-42728f3c8794,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38362,f510af05-a28f-491b-b4ad-a0f3e55bcf1c,LIST_ACCOUNTS,hbciListAccounts,false +38363,f510af05-a28f-491b-b4ad-a0f3e55bcf1c,LIST_TRANSACTIONS,hbciListTransactions,false +38364,f510af05-a28f-491b-b4ad-a0f3e55bcf1c,AUTHORIZATION,,false +38365,f510af05-a28f-491b-b4ad-a0f3e55bcf1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38366,f510af05-a28f-491b-b4ad-a0f3e55bcf1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38367,f510af05-a28f-491b-b4ad-a0f3e55bcf1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38368,7bf4b6d6-8e87-4a00-9ae6-12e8fd589dd7,LIST_ACCOUNTS,xs2aListAccounts,true -38369,7bf4b6d6-8e87-4a00-9ae6-12e8fd589dd7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38369,7bf4b6d6-8e87-4a00-9ae6-12e8fd589dd7,LIST_TRANSACTIONS,xs2aListTransactions,true 38370,7bf4b6d6-8e87-4a00-9ae6-12e8fd589dd7,AUTHORIZATION,,true 38371,7bf4b6d6-8e87-4a00-9ae6-12e8fd589dd7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38372,7bf4b6d6-8e87-4a00-9ae6-12e8fd589dd7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38373,7bf4b6d6-8e87-4a00-9ae6-12e8fd589dd7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38374,5c9afdbc-1e39-4422-9d2f-cf170a973d0f,LIST_ACCOUNTS,hbciListAccounts,false -38375,5c9afdbc-1e39-4422-9d2f-cf170a973d0f,LIST_TRANSACTIONS,hbciListTransactions,false -38376,5c9afdbc-1e39-4422-9d2f-cf170a973d0f,AUTHORIZATION,,false -38377,5c9afdbc-1e39-4422-9d2f-cf170a973d0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38378,5c9afdbc-1e39-4422-9d2f-cf170a973d0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38379,5c9afdbc-1e39-4422-9d2f-cf170a973d0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38374,a126c326-8dd7-49dc-9a41-38d2a2a08ba4,LIST_ACCOUNTS,hbciListAccounts,false +38375,a126c326-8dd7-49dc-9a41-38d2a2a08ba4,LIST_TRANSACTIONS,hbciListTransactions,false +38376,a126c326-8dd7-49dc-9a41-38d2a2a08ba4,AUTHORIZATION,,false +38377,a126c326-8dd7-49dc-9a41-38d2a2a08ba4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38378,a126c326-8dd7-49dc-9a41-38d2a2a08ba4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38379,a126c326-8dd7-49dc-9a41-38d2a2a08ba4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38380,6f565749-ae5f-44b4-8c7d-c4e8e95eb2a8,LIST_ACCOUNTS,xs2aListAccounts,true -38381,6f565749-ae5f-44b4-8c7d-c4e8e95eb2a8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38381,6f565749-ae5f-44b4-8c7d-c4e8e95eb2a8,LIST_TRANSACTIONS,xs2aListTransactions,true 38382,6f565749-ae5f-44b4-8c7d-c4e8e95eb2a8,AUTHORIZATION,,true 38383,6f565749-ae5f-44b4-8c7d-c4e8e95eb2a8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38384,6f565749-ae5f-44b4-8c7d-c4e8e95eb2a8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38385,6f565749-ae5f-44b4-8c7d-c4e8e95eb2a8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38386,41f9eb28-3108-48e5-ad85-0cbe6a1da87c,LIST_ACCOUNTS,hbciListAccounts,false -38387,41f9eb28-3108-48e5-ad85-0cbe6a1da87c,LIST_TRANSACTIONS,hbciListTransactions,false -38388,41f9eb28-3108-48e5-ad85-0cbe6a1da87c,AUTHORIZATION,,false -38389,41f9eb28-3108-48e5-ad85-0cbe6a1da87c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38390,41f9eb28-3108-48e5-ad85-0cbe6a1da87c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38391,41f9eb28-3108-48e5-ad85-0cbe6a1da87c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38386,d5d48d70-cac6-4bf7-9a58-e2f1f26a7590,LIST_ACCOUNTS,hbciListAccounts,false +38387,d5d48d70-cac6-4bf7-9a58-e2f1f26a7590,LIST_TRANSACTIONS,hbciListTransactions,false +38388,d5d48d70-cac6-4bf7-9a58-e2f1f26a7590,AUTHORIZATION,,false +38389,d5d48d70-cac6-4bf7-9a58-e2f1f26a7590,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38390,d5d48d70-cac6-4bf7-9a58-e2f1f26a7590,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38391,d5d48d70-cac6-4bf7-9a58-e2f1f26a7590,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38392,b4cbb4b1-6104-4bd7-a825-1e8c4e04b912,LIST_ACCOUNTS,xs2aListAccounts,true -38393,b4cbb4b1-6104-4bd7-a825-1e8c4e04b912,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38393,b4cbb4b1-6104-4bd7-a825-1e8c4e04b912,LIST_TRANSACTIONS,xs2aListTransactions,true 38394,b4cbb4b1-6104-4bd7-a825-1e8c4e04b912,AUTHORIZATION,,true 38395,b4cbb4b1-6104-4bd7-a825-1e8c4e04b912,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38396,b4cbb4b1-6104-4bd7-a825-1e8c4e04b912,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38397,b4cbb4b1-6104-4bd7-a825-1e8c4e04b912,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38398,036cca1e-f3b3-4c06-aa30-edebbcb814ef,LIST_ACCOUNTS,hbciListAccounts,false -38399,036cca1e-f3b3-4c06-aa30-edebbcb814ef,LIST_TRANSACTIONS,hbciListTransactions,false -38400,036cca1e-f3b3-4c06-aa30-edebbcb814ef,AUTHORIZATION,,false -38401,036cca1e-f3b3-4c06-aa30-edebbcb814ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38402,036cca1e-f3b3-4c06-aa30-edebbcb814ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38403,036cca1e-f3b3-4c06-aa30-edebbcb814ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38398,df5b6b32-b3d9-44d4-bc39-e6b4f323befa,LIST_ACCOUNTS,hbciListAccounts,false +38399,df5b6b32-b3d9-44d4-bc39-e6b4f323befa,LIST_TRANSACTIONS,hbciListTransactions,false +38400,df5b6b32-b3d9-44d4-bc39-e6b4f323befa,AUTHORIZATION,,false +38401,df5b6b32-b3d9-44d4-bc39-e6b4f323befa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38402,df5b6b32-b3d9-44d4-bc39-e6b4f323befa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38403,df5b6b32-b3d9-44d4-bc39-e6b4f323befa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38404,7b8b4a74-df7a-4347-a102-98aa24a4b3c0,LIST_ACCOUNTS,xs2aListAccounts,true -38405,7b8b4a74-df7a-4347-a102-98aa24a4b3c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38405,7b8b4a74-df7a-4347-a102-98aa24a4b3c0,LIST_TRANSACTIONS,xs2aListTransactions,true 38406,7b8b4a74-df7a-4347-a102-98aa24a4b3c0,AUTHORIZATION,,true 38407,7b8b4a74-df7a-4347-a102-98aa24a4b3c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38408,7b8b4a74-df7a-4347-a102-98aa24a4b3c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38409,7b8b4a74-df7a-4347-a102-98aa24a4b3c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38410,16eb3b36-89f9-42ac-9dd3-6ec152f52281,LIST_ACCOUNTS,hbciListAccounts,false -38411,16eb3b36-89f9-42ac-9dd3-6ec152f52281,LIST_TRANSACTIONS,hbciListTransactions,false -38412,16eb3b36-89f9-42ac-9dd3-6ec152f52281,AUTHORIZATION,,false -38413,16eb3b36-89f9-42ac-9dd3-6ec152f52281,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38414,16eb3b36-89f9-42ac-9dd3-6ec152f52281,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38415,16eb3b36-89f9-42ac-9dd3-6ec152f52281,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38410,c9854fc8-c77e-4541-811b-b61e522496aa,LIST_ACCOUNTS,hbciListAccounts,false +38411,c9854fc8-c77e-4541-811b-b61e522496aa,LIST_TRANSACTIONS,hbciListTransactions,false +38412,c9854fc8-c77e-4541-811b-b61e522496aa,AUTHORIZATION,,false +38413,c9854fc8-c77e-4541-811b-b61e522496aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38414,c9854fc8-c77e-4541-811b-b61e522496aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38415,c9854fc8-c77e-4541-811b-b61e522496aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38416,e8ec818d-66d3-49dc-9d18-4bd4d6ed80bb,LIST_ACCOUNTS,xs2aListAccounts,true -38417,e8ec818d-66d3-49dc-9d18-4bd4d6ed80bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38417,e8ec818d-66d3-49dc-9d18-4bd4d6ed80bb,LIST_TRANSACTIONS,xs2aListTransactions,true 38418,e8ec818d-66d3-49dc-9d18-4bd4d6ed80bb,AUTHORIZATION,,true 38419,e8ec818d-66d3-49dc-9d18-4bd4d6ed80bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38420,e8ec818d-66d3-49dc-9d18-4bd4d6ed80bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38421,e8ec818d-66d3-49dc-9d18-4bd4d6ed80bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38422,f053ee53-857d-4e5f-a907-a253fccc7f91,LIST_ACCOUNTS,hbciListAccounts,false -38423,f053ee53-857d-4e5f-a907-a253fccc7f91,LIST_TRANSACTIONS,hbciListTransactions,false -38424,f053ee53-857d-4e5f-a907-a253fccc7f91,AUTHORIZATION,,false -38425,f053ee53-857d-4e5f-a907-a253fccc7f91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38426,f053ee53-857d-4e5f-a907-a253fccc7f91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38427,f053ee53-857d-4e5f-a907-a253fccc7f91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38422,908f9f7d-f528-484e-85c1-82b15aa65db3,LIST_ACCOUNTS,hbciListAccounts,false +38423,908f9f7d-f528-484e-85c1-82b15aa65db3,LIST_TRANSACTIONS,hbciListTransactions,false +38424,908f9f7d-f528-484e-85c1-82b15aa65db3,AUTHORIZATION,,false +38425,908f9f7d-f528-484e-85c1-82b15aa65db3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38426,908f9f7d-f528-484e-85c1-82b15aa65db3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38427,908f9f7d-f528-484e-85c1-82b15aa65db3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38428,557bdb5f-2abc-4d62-b796-49c5019136b2,LIST_ACCOUNTS,xs2aListAccounts,true -38429,557bdb5f-2abc-4d62-b796-49c5019136b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38429,557bdb5f-2abc-4d62-b796-49c5019136b2,LIST_TRANSACTIONS,xs2aListTransactions,true 38430,557bdb5f-2abc-4d62-b796-49c5019136b2,AUTHORIZATION,,true 38431,557bdb5f-2abc-4d62-b796-49c5019136b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38432,557bdb5f-2abc-4d62-b796-49c5019136b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38433,557bdb5f-2abc-4d62-b796-49c5019136b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38434,a0db945c-c4d3-467e-8a32-cdfed25439e3,LIST_ACCOUNTS,hbciListAccounts,false -38435,a0db945c-c4d3-467e-8a32-cdfed25439e3,LIST_TRANSACTIONS,hbciListTransactions,false -38436,a0db945c-c4d3-467e-8a32-cdfed25439e3,AUTHORIZATION,,false -38437,a0db945c-c4d3-467e-8a32-cdfed25439e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38438,a0db945c-c4d3-467e-8a32-cdfed25439e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38439,a0db945c-c4d3-467e-8a32-cdfed25439e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38434,cdb58893-0e88-4f2b-853a-3fd56e1c2637,LIST_ACCOUNTS,hbciListAccounts,false +38435,cdb58893-0e88-4f2b-853a-3fd56e1c2637,LIST_TRANSACTIONS,hbciListTransactions,false +38436,cdb58893-0e88-4f2b-853a-3fd56e1c2637,AUTHORIZATION,,false +38437,cdb58893-0e88-4f2b-853a-3fd56e1c2637,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38438,cdb58893-0e88-4f2b-853a-3fd56e1c2637,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38439,cdb58893-0e88-4f2b-853a-3fd56e1c2637,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38440,c8e921da-0903-4fbd-b35d-a8cd4f3c3cb7,LIST_ACCOUNTS,xs2aListAccounts,true -38441,c8e921da-0903-4fbd-b35d-a8cd4f3c3cb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38441,c8e921da-0903-4fbd-b35d-a8cd4f3c3cb7,LIST_TRANSACTIONS,xs2aListTransactions,true 38442,c8e921da-0903-4fbd-b35d-a8cd4f3c3cb7,AUTHORIZATION,,true 38443,c8e921da-0903-4fbd-b35d-a8cd4f3c3cb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38444,c8e921da-0903-4fbd-b35d-a8cd4f3c3cb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38445,c8e921da-0903-4fbd-b35d-a8cd4f3c3cb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38446,54e9417a-eb0c-463f-9a96-157f54d1bfe9,LIST_ACCOUNTS,hbciListAccounts,false -38447,54e9417a-eb0c-463f-9a96-157f54d1bfe9,LIST_TRANSACTIONS,hbciListTransactions,false -38448,54e9417a-eb0c-463f-9a96-157f54d1bfe9,AUTHORIZATION,,false -38449,54e9417a-eb0c-463f-9a96-157f54d1bfe9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38450,54e9417a-eb0c-463f-9a96-157f54d1bfe9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38451,54e9417a-eb0c-463f-9a96-157f54d1bfe9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38446,a3fbc22f-8ec9-4ad3-bcb7-def6ac8a8423,LIST_ACCOUNTS,hbciListAccounts,false +38447,a3fbc22f-8ec9-4ad3-bcb7-def6ac8a8423,LIST_TRANSACTIONS,hbciListTransactions,false +38448,a3fbc22f-8ec9-4ad3-bcb7-def6ac8a8423,AUTHORIZATION,,false +38449,a3fbc22f-8ec9-4ad3-bcb7-def6ac8a8423,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38450,a3fbc22f-8ec9-4ad3-bcb7-def6ac8a8423,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38451,a3fbc22f-8ec9-4ad3-bcb7-def6ac8a8423,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38452,5a4a638b-fa4c-4f42-b81b-b7071fe058e0,LIST_ACCOUNTS,xs2aListAccounts,true -38453,5a4a638b-fa4c-4f42-b81b-b7071fe058e0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38453,5a4a638b-fa4c-4f42-b81b-b7071fe058e0,LIST_TRANSACTIONS,xs2aListTransactions,true 38454,5a4a638b-fa4c-4f42-b81b-b7071fe058e0,AUTHORIZATION,,true 38455,5a4a638b-fa4c-4f42-b81b-b7071fe058e0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38456,5a4a638b-fa4c-4f42-b81b-b7071fe058e0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38457,5a4a638b-fa4c-4f42-b81b-b7071fe058e0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38458,f781dcef-6910-4573-a13d-2a5ff3f6025c,LIST_ACCOUNTS,hbciListAccounts,false -38459,f781dcef-6910-4573-a13d-2a5ff3f6025c,LIST_TRANSACTIONS,hbciListTransactions,false -38460,f781dcef-6910-4573-a13d-2a5ff3f6025c,AUTHORIZATION,,false -38461,f781dcef-6910-4573-a13d-2a5ff3f6025c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38462,f781dcef-6910-4573-a13d-2a5ff3f6025c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38463,f781dcef-6910-4573-a13d-2a5ff3f6025c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38458,da19fd81-aee8-4f6c-a455-c83fe6478ca3,LIST_ACCOUNTS,hbciListAccounts,false +38459,da19fd81-aee8-4f6c-a455-c83fe6478ca3,LIST_TRANSACTIONS,hbciListTransactions,false +38460,da19fd81-aee8-4f6c-a455-c83fe6478ca3,AUTHORIZATION,,false +38461,da19fd81-aee8-4f6c-a455-c83fe6478ca3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38462,da19fd81-aee8-4f6c-a455-c83fe6478ca3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38463,da19fd81-aee8-4f6c-a455-c83fe6478ca3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38464,8c9ac0c2-b19f-48c4-9915-848c422cdab4,LIST_ACCOUNTS,xs2aListAccounts,true -38465,8c9ac0c2-b19f-48c4-9915-848c422cdab4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38465,8c9ac0c2-b19f-48c4-9915-848c422cdab4,LIST_TRANSACTIONS,xs2aListTransactions,true 38466,8c9ac0c2-b19f-48c4-9915-848c422cdab4,AUTHORIZATION,,true 38467,8c9ac0c2-b19f-48c4-9915-848c422cdab4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38468,8c9ac0c2-b19f-48c4-9915-848c422cdab4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38469,8c9ac0c2-b19f-48c4-9915-848c422cdab4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38470,79285967-199d-4011-b081-0932470e6975,LIST_ACCOUNTS,hbciListAccounts,false -38471,79285967-199d-4011-b081-0932470e6975,LIST_TRANSACTIONS,hbciListTransactions,false -38472,79285967-199d-4011-b081-0932470e6975,AUTHORIZATION,,false -38473,79285967-199d-4011-b081-0932470e6975,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38474,79285967-199d-4011-b081-0932470e6975,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38475,79285967-199d-4011-b081-0932470e6975,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38470,c47fd7a2-3a39-4f74-b11c-e3174b62cbe4,LIST_ACCOUNTS,hbciListAccounts,false +38471,c47fd7a2-3a39-4f74-b11c-e3174b62cbe4,LIST_TRANSACTIONS,hbciListTransactions,false +38472,c47fd7a2-3a39-4f74-b11c-e3174b62cbe4,AUTHORIZATION,,false +38473,c47fd7a2-3a39-4f74-b11c-e3174b62cbe4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38474,c47fd7a2-3a39-4f74-b11c-e3174b62cbe4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38475,c47fd7a2-3a39-4f74-b11c-e3174b62cbe4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38476,95bec622-4f22-447d-a922-44dcd8124a1d,LIST_ACCOUNTS,xs2aListAccounts,true -38477,95bec622-4f22-447d-a922-44dcd8124a1d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38477,95bec622-4f22-447d-a922-44dcd8124a1d,LIST_TRANSACTIONS,xs2aListTransactions,true 38478,95bec622-4f22-447d-a922-44dcd8124a1d,AUTHORIZATION,,true 38479,95bec622-4f22-447d-a922-44dcd8124a1d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38480,95bec622-4f22-447d-a922-44dcd8124a1d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38481,95bec622-4f22-447d-a922-44dcd8124a1d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38482,4acc6ac4-fa14-4fab-84e6-f621bb7c8fe9,LIST_ACCOUNTS,hbciListAccounts,false -38483,4acc6ac4-fa14-4fab-84e6-f621bb7c8fe9,LIST_TRANSACTIONS,hbciListTransactions,false -38484,4acc6ac4-fa14-4fab-84e6-f621bb7c8fe9,AUTHORIZATION,,false -38485,4acc6ac4-fa14-4fab-84e6-f621bb7c8fe9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38486,4acc6ac4-fa14-4fab-84e6-f621bb7c8fe9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38487,4acc6ac4-fa14-4fab-84e6-f621bb7c8fe9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38482,5667f38b-fc71-41a2-83ec-47ae5904a7df,LIST_ACCOUNTS,hbciListAccounts,false +38483,5667f38b-fc71-41a2-83ec-47ae5904a7df,LIST_TRANSACTIONS,hbciListTransactions,false +38484,5667f38b-fc71-41a2-83ec-47ae5904a7df,AUTHORIZATION,,false +38485,5667f38b-fc71-41a2-83ec-47ae5904a7df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38486,5667f38b-fc71-41a2-83ec-47ae5904a7df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38487,5667f38b-fc71-41a2-83ec-47ae5904a7df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38488,85eddace-643c-442f-9858-991eec008914,LIST_ACCOUNTS,xs2aListAccounts,true -38489,85eddace-643c-442f-9858-991eec008914,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38489,85eddace-643c-442f-9858-991eec008914,LIST_TRANSACTIONS,xs2aListTransactions,true 38490,85eddace-643c-442f-9858-991eec008914,AUTHORIZATION,,true 38491,85eddace-643c-442f-9858-991eec008914,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38492,85eddace-643c-442f-9858-991eec008914,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38493,85eddace-643c-442f-9858-991eec008914,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38494,87d8a804-d762-42da-a582-8c3d74fa6118,LIST_ACCOUNTS,hbciListAccounts,false -38495,87d8a804-d762-42da-a582-8c3d74fa6118,LIST_TRANSACTIONS,hbciListTransactions,false -38496,87d8a804-d762-42da-a582-8c3d74fa6118,AUTHORIZATION,,false -38497,87d8a804-d762-42da-a582-8c3d74fa6118,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38498,87d8a804-d762-42da-a582-8c3d74fa6118,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38499,87d8a804-d762-42da-a582-8c3d74fa6118,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38494,473c7684-353d-4364-a8e6-c209a2354351,LIST_ACCOUNTS,hbciListAccounts,false +38495,473c7684-353d-4364-a8e6-c209a2354351,LIST_TRANSACTIONS,hbciListTransactions,false +38496,473c7684-353d-4364-a8e6-c209a2354351,AUTHORIZATION,,false +38497,473c7684-353d-4364-a8e6-c209a2354351,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38498,473c7684-353d-4364-a8e6-c209a2354351,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38499,473c7684-353d-4364-a8e6-c209a2354351,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38500,39a2c2aa-0ac8-43f2-8206-00d65f9e1491,LIST_ACCOUNTS,xs2aListAccounts,true -38501,39a2c2aa-0ac8-43f2-8206-00d65f9e1491,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38501,39a2c2aa-0ac8-43f2-8206-00d65f9e1491,LIST_TRANSACTIONS,xs2aListTransactions,true 38502,39a2c2aa-0ac8-43f2-8206-00d65f9e1491,AUTHORIZATION,,true 38503,39a2c2aa-0ac8-43f2-8206-00d65f9e1491,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38504,39a2c2aa-0ac8-43f2-8206-00d65f9e1491,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38505,39a2c2aa-0ac8-43f2-8206-00d65f9e1491,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38506,19d8bbc4-22a7-409b-8de7-548913a890b7,LIST_ACCOUNTS,hbciListAccounts,false -38507,19d8bbc4-22a7-409b-8de7-548913a890b7,LIST_TRANSACTIONS,hbciListTransactions,false -38508,19d8bbc4-22a7-409b-8de7-548913a890b7,AUTHORIZATION,,false -38509,19d8bbc4-22a7-409b-8de7-548913a890b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38510,19d8bbc4-22a7-409b-8de7-548913a890b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38511,19d8bbc4-22a7-409b-8de7-548913a890b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38506,fe612fe3-6f74-4ee0-b46c-32b47e264563,LIST_ACCOUNTS,hbciListAccounts,false +38507,fe612fe3-6f74-4ee0-b46c-32b47e264563,LIST_TRANSACTIONS,hbciListTransactions,false +38508,fe612fe3-6f74-4ee0-b46c-32b47e264563,AUTHORIZATION,,false +38509,fe612fe3-6f74-4ee0-b46c-32b47e264563,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38510,fe612fe3-6f74-4ee0-b46c-32b47e264563,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38511,fe612fe3-6f74-4ee0-b46c-32b47e264563,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38512,192dcc1b-59ce-4486-83ff-d6d9982164e9,LIST_ACCOUNTS,xs2aListAccounts,true -38513,192dcc1b-59ce-4486-83ff-d6d9982164e9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38513,192dcc1b-59ce-4486-83ff-d6d9982164e9,LIST_TRANSACTIONS,xs2aListTransactions,true 38514,192dcc1b-59ce-4486-83ff-d6d9982164e9,AUTHORIZATION,,true 38515,192dcc1b-59ce-4486-83ff-d6d9982164e9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38516,192dcc1b-59ce-4486-83ff-d6d9982164e9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38517,192dcc1b-59ce-4486-83ff-d6d9982164e9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38518,ef869dfd-9703-4231-93b9-94b30c2422b7,LIST_ACCOUNTS,hbciListAccounts,false -38519,ef869dfd-9703-4231-93b9-94b30c2422b7,LIST_TRANSACTIONS,hbciListTransactions,false -38520,ef869dfd-9703-4231-93b9-94b30c2422b7,AUTHORIZATION,,false -38521,ef869dfd-9703-4231-93b9-94b30c2422b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38522,ef869dfd-9703-4231-93b9-94b30c2422b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38523,ef869dfd-9703-4231-93b9-94b30c2422b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38518,5cbe387b-10c1-46d4-9ca2-70bf2ebb4ea3,LIST_ACCOUNTS,hbciListAccounts,false +38519,5cbe387b-10c1-46d4-9ca2-70bf2ebb4ea3,LIST_TRANSACTIONS,hbciListTransactions,false +38520,5cbe387b-10c1-46d4-9ca2-70bf2ebb4ea3,AUTHORIZATION,,false +38521,5cbe387b-10c1-46d4-9ca2-70bf2ebb4ea3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38522,5cbe387b-10c1-46d4-9ca2-70bf2ebb4ea3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38523,5cbe387b-10c1-46d4-9ca2-70bf2ebb4ea3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38524,02d8afa0-9a1d-42a3-aa87-4f1fbb5d5123,LIST_ACCOUNTS,xs2aListAccounts,true -38525,02d8afa0-9a1d-42a3-aa87-4f1fbb5d5123,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38525,02d8afa0-9a1d-42a3-aa87-4f1fbb5d5123,LIST_TRANSACTIONS,xs2aListTransactions,true 38526,02d8afa0-9a1d-42a3-aa87-4f1fbb5d5123,AUTHORIZATION,,true 38527,02d8afa0-9a1d-42a3-aa87-4f1fbb5d5123,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38528,02d8afa0-9a1d-42a3-aa87-4f1fbb5d5123,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38529,02d8afa0-9a1d-42a3-aa87-4f1fbb5d5123,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38530,d95681d9-5427-40ae-9c9c-871a0539f10e,LIST_ACCOUNTS,hbciListAccounts,false -38531,d95681d9-5427-40ae-9c9c-871a0539f10e,LIST_TRANSACTIONS,hbciListTransactions,false -38532,d95681d9-5427-40ae-9c9c-871a0539f10e,AUTHORIZATION,,false -38533,d95681d9-5427-40ae-9c9c-871a0539f10e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38534,d95681d9-5427-40ae-9c9c-871a0539f10e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38535,d95681d9-5427-40ae-9c9c-871a0539f10e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38530,9b37918e-d0e6-4f94-8560-5be8be9aff18,LIST_ACCOUNTS,hbciListAccounts,false +38531,9b37918e-d0e6-4f94-8560-5be8be9aff18,LIST_TRANSACTIONS,hbciListTransactions,false +38532,9b37918e-d0e6-4f94-8560-5be8be9aff18,AUTHORIZATION,,false +38533,9b37918e-d0e6-4f94-8560-5be8be9aff18,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38534,9b37918e-d0e6-4f94-8560-5be8be9aff18,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38535,9b37918e-d0e6-4f94-8560-5be8be9aff18,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38536,5dc9b757-e54c-4e87-911f-dab4ed3b6a85,LIST_ACCOUNTS,xs2aListAccounts,true -38537,5dc9b757-e54c-4e87-911f-dab4ed3b6a85,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38537,5dc9b757-e54c-4e87-911f-dab4ed3b6a85,LIST_TRANSACTIONS,xs2aListTransactions,true 38538,5dc9b757-e54c-4e87-911f-dab4ed3b6a85,AUTHORIZATION,,true 38539,5dc9b757-e54c-4e87-911f-dab4ed3b6a85,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38540,5dc9b757-e54c-4e87-911f-dab4ed3b6a85,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38541,5dc9b757-e54c-4e87-911f-dab4ed3b6a85,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38542,1517c10a-0f24-482f-a8ea-3e95c86b6287,LIST_ACCOUNTS,hbciListAccounts,false -38543,1517c10a-0f24-482f-a8ea-3e95c86b6287,LIST_TRANSACTIONS,hbciListTransactions,false -38544,1517c10a-0f24-482f-a8ea-3e95c86b6287,AUTHORIZATION,,false -38545,1517c10a-0f24-482f-a8ea-3e95c86b6287,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38546,1517c10a-0f24-482f-a8ea-3e95c86b6287,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38547,1517c10a-0f24-482f-a8ea-3e95c86b6287,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38542,f75df5d0-8727-4370-87f3-6cd775635df5,LIST_ACCOUNTS,hbciListAccounts,false +38543,f75df5d0-8727-4370-87f3-6cd775635df5,LIST_TRANSACTIONS,hbciListTransactions,false +38544,f75df5d0-8727-4370-87f3-6cd775635df5,AUTHORIZATION,,false +38545,f75df5d0-8727-4370-87f3-6cd775635df5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38546,f75df5d0-8727-4370-87f3-6cd775635df5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38547,f75df5d0-8727-4370-87f3-6cd775635df5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38548,1465f19b-d782-4fa6-b22d-61e4c5435a35,LIST_ACCOUNTS,xs2aListAccounts,true -38549,1465f19b-d782-4fa6-b22d-61e4c5435a35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38549,1465f19b-d782-4fa6-b22d-61e4c5435a35,LIST_TRANSACTIONS,xs2aListTransactions,true 38550,1465f19b-d782-4fa6-b22d-61e4c5435a35,AUTHORIZATION,,true 38551,1465f19b-d782-4fa6-b22d-61e4c5435a35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38552,1465f19b-d782-4fa6-b22d-61e4c5435a35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38553,1465f19b-d782-4fa6-b22d-61e4c5435a35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38554,8fd5a780-936d-41ae-8353-6648a51c2a33,LIST_ACCOUNTS,hbciListAccounts,false -38555,8fd5a780-936d-41ae-8353-6648a51c2a33,LIST_TRANSACTIONS,hbciListTransactions,false -38556,8fd5a780-936d-41ae-8353-6648a51c2a33,AUTHORIZATION,,false -38557,8fd5a780-936d-41ae-8353-6648a51c2a33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38558,8fd5a780-936d-41ae-8353-6648a51c2a33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38559,8fd5a780-936d-41ae-8353-6648a51c2a33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38554,30c87ab7-6c0d-4a42-89b1-6157e1c717a2,LIST_ACCOUNTS,hbciListAccounts,false +38555,30c87ab7-6c0d-4a42-89b1-6157e1c717a2,LIST_TRANSACTIONS,hbciListTransactions,false +38556,30c87ab7-6c0d-4a42-89b1-6157e1c717a2,AUTHORIZATION,,false +38557,30c87ab7-6c0d-4a42-89b1-6157e1c717a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38558,30c87ab7-6c0d-4a42-89b1-6157e1c717a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38559,30c87ab7-6c0d-4a42-89b1-6157e1c717a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38560,feb43afa-c23e-407b-b70e-bd3ee1df85d2,LIST_ACCOUNTS,xs2aListAccounts,true -38561,feb43afa-c23e-407b-b70e-bd3ee1df85d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38561,feb43afa-c23e-407b-b70e-bd3ee1df85d2,LIST_TRANSACTIONS,xs2aListTransactions,true 38562,feb43afa-c23e-407b-b70e-bd3ee1df85d2,AUTHORIZATION,,true 38563,feb43afa-c23e-407b-b70e-bd3ee1df85d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38564,feb43afa-c23e-407b-b70e-bd3ee1df85d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38565,feb43afa-c23e-407b-b70e-bd3ee1df85d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38566,be8086af-a9d8-40bc-8f9f-17cd0aa051a0,LIST_ACCOUNTS,hbciListAccounts,false -38567,be8086af-a9d8-40bc-8f9f-17cd0aa051a0,LIST_TRANSACTIONS,hbciListTransactions,false -38568,be8086af-a9d8-40bc-8f9f-17cd0aa051a0,AUTHORIZATION,,false -38569,be8086af-a9d8-40bc-8f9f-17cd0aa051a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38570,be8086af-a9d8-40bc-8f9f-17cd0aa051a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38571,be8086af-a9d8-40bc-8f9f-17cd0aa051a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38566,648ec63b-9589-4cfa-913e-40d5f76c428e,LIST_ACCOUNTS,hbciListAccounts,false +38567,648ec63b-9589-4cfa-913e-40d5f76c428e,LIST_TRANSACTIONS,hbciListTransactions,false +38568,648ec63b-9589-4cfa-913e-40d5f76c428e,AUTHORIZATION,,false +38569,648ec63b-9589-4cfa-913e-40d5f76c428e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38570,648ec63b-9589-4cfa-913e-40d5f76c428e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38571,648ec63b-9589-4cfa-913e-40d5f76c428e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38572,a29858f3-8f05-4a43-99ad-d07435d2c27f,LIST_ACCOUNTS,xs2aListAccounts,true -38573,a29858f3-8f05-4a43-99ad-d07435d2c27f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38573,a29858f3-8f05-4a43-99ad-d07435d2c27f,LIST_TRANSACTIONS,xs2aListTransactions,true 38574,a29858f3-8f05-4a43-99ad-d07435d2c27f,AUTHORIZATION,,true 38575,a29858f3-8f05-4a43-99ad-d07435d2c27f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38576,a29858f3-8f05-4a43-99ad-d07435d2c27f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38577,a29858f3-8f05-4a43-99ad-d07435d2c27f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38578,a92e8dcc-a933-4461-874a-1051af3ecaad,LIST_ACCOUNTS,hbciListAccounts,false -38579,a92e8dcc-a933-4461-874a-1051af3ecaad,LIST_TRANSACTIONS,hbciListTransactions,false -38580,a92e8dcc-a933-4461-874a-1051af3ecaad,AUTHORIZATION,,false -38581,a92e8dcc-a933-4461-874a-1051af3ecaad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38582,a92e8dcc-a933-4461-874a-1051af3ecaad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38583,a92e8dcc-a933-4461-874a-1051af3ecaad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38578,c20ebce5-1cd6-415a-a075-95a732000d7f,LIST_ACCOUNTS,hbciListAccounts,false +38579,c20ebce5-1cd6-415a-a075-95a732000d7f,LIST_TRANSACTIONS,hbciListTransactions,false +38580,c20ebce5-1cd6-415a-a075-95a732000d7f,AUTHORIZATION,,false +38581,c20ebce5-1cd6-415a-a075-95a732000d7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38582,c20ebce5-1cd6-415a-a075-95a732000d7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38583,c20ebce5-1cd6-415a-a075-95a732000d7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38584,f967fa7f-9312-4437-ba90-0dc2fd3a4922,LIST_ACCOUNTS,xs2aListAccounts,true -38585,f967fa7f-9312-4437-ba90-0dc2fd3a4922,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38585,f967fa7f-9312-4437-ba90-0dc2fd3a4922,LIST_TRANSACTIONS,xs2aListTransactions,true 38586,f967fa7f-9312-4437-ba90-0dc2fd3a4922,AUTHORIZATION,,true 38587,f967fa7f-9312-4437-ba90-0dc2fd3a4922,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38588,f967fa7f-9312-4437-ba90-0dc2fd3a4922,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38589,f967fa7f-9312-4437-ba90-0dc2fd3a4922,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38590,b156b77b-8ce8-46ea-be9a-3aa42245c208,LIST_ACCOUNTS,hbciListAccounts,false -38591,b156b77b-8ce8-46ea-be9a-3aa42245c208,LIST_TRANSACTIONS,hbciListTransactions,false -38592,b156b77b-8ce8-46ea-be9a-3aa42245c208,AUTHORIZATION,,false -38593,b156b77b-8ce8-46ea-be9a-3aa42245c208,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38594,b156b77b-8ce8-46ea-be9a-3aa42245c208,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38595,b156b77b-8ce8-46ea-be9a-3aa42245c208,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38590,3f79712d-fee7-464f-8700-776696ca9bf9,LIST_ACCOUNTS,hbciListAccounts,false +38591,3f79712d-fee7-464f-8700-776696ca9bf9,LIST_TRANSACTIONS,hbciListTransactions,false +38592,3f79712d-fee7-464f-8700-776696ca9bf9,AUTHORIZATION,,false +38593,3f79712d-fee7-464f-8700-776696ca9bf9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38594,3f79712d-fee7-464f-8700-776696ca9bf9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38595,3f79712d-fee7-464f-8700-776696ca9bf9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38596,5ab5ef9b-102d-480b-8356-bb600d38479d,LIST_ACCOUNTS,xs2aListAccounts,true -38597,5ab5ef9b-102d-480b-8356-bb600d38479d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38597,5ab5ef9b-102d-480b-8356-bb600d38479d,LIST_TRANSACTIONS,xs2aListTransactions,true 38598,5ab5ef9b-102d-480b-8356-bb600d38479d,AUTHORIZATION,,true 38599,5ab5ef9b-102d-480b-8356-bb600d38479d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38600,5ab5ef9b-102d-480b-8356-bb600d38479d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38601,5ab5ef9b-102d-480b-8356-bb600d38479d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38602,3bf645c3-0908-4fc5-b9a5-5da4d7bfce6d,LIST_ACCOUNTS,hbciListAccounts,false -38603,3bf645c3-0908-4fc5-b9a5-5da4d7bfce6d,LIST_TRANSACTIONS,hbciListTransactions,false -38604,3bf645c3-0908-4fc5-b9a5-5da4d7bfce6d,AUTHORIZATION,,false -38605,3bf645c3-0908-4fc5-b9a5-5da4d7bfce6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38606,3bf645c3-0908-4fc5-b9a5-5da4d7bfce6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38607,3bf645c3-0908-4fc5-b9a5-5da4d7bfce6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38602,bd0081f0-fa9a-46e0-acc5-b0f2d95aacf9,LIST_ACCOUNTS,hbciListAccounts,false +38603,bd0081f0-fa9a-46e0-acc5-b0f2d95aacf9,LIST_TRANSACTIONS,hbciListTransactions,false +38604,bd0081f0-fa9a-46e0-acc5-b0f2d95aacf9,AUTHORIZATION,,false +38605,bd0081f0-fa9a-46e0-acc5-b0f2d95aacf9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38606,bd0081f0-fa9a-46e0-acc5-b0f2d95aacf9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38607,bd0081f0-fa9a-46e0-acc5-b0f2d95aacf9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38608,f9aa7063-dcf4-4368-9d3c-72aafe80db8b,LIST_ACCOUNTS,xs2aListAccounts,true -38609,f9aa7063-dcf4-4368-9d3c-72aafe80db8b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38609,f9aa7063-dcf4-4368-9d3c-72aafe80db8b,LIST_TRANSACTIONS,xs2aListTransactions,true 38610,f9aa7063-dcf4-4368-9d3c-72aafe80db8b,AUTHORIZATION,,true 38611,f9aa7063-dcf4-4368-9d3c-72aafe80db8b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38612,f9aa7063-dcf4-4368-9d3c-72aafe80db8b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38613,f9aa7063-dcf4-4368-9d3c-72aafe80db8b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38614,9f819704-29be-459b-bf8c-2120a54144c2,LIST_ACCOUNTS,hbciListAccounts,false -38615,9f819704-29be-459b-bf8c-2120a54144c2,LIST_TRANSACTIONS,hbciListTransactions,false -38616,9f819704-29be-459b-bf8c-2120a54144c2,AUTHORIZATION,,false -38617,9f819704-29be-459b-bf8c-2120a54144c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38618,9f819704-29be-459b-bf8c-2120a54144c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38619,9f819704-29be-459b-bf8c-2120a54144c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38614,9889a434-78d7-4b58-92b3-485167863ae5,LIST_ACCOUNTS,hbciListAccounts,false +38615,9889a434-78d7-4b58-92b3-485167863ae5,LIST_TRANSACTIONS,hbciListTransactions,false +38616,9889a434-78d7-4b58-92b3-485167863ae5,AUTHORIZATION,,false +38617,9889a434-78d7-4b58-92b3-485167863ae5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38618,9889a434-78d7-4b58-92b3-485167863ae5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38619,9889a434-78d7-4b58-92b3-485167863ae5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38620,7f361954-539c-43cb-bdff-412dce131727,LIST_ACCOUNTS,xs2aListAccounts,true -38621,7f361954-539c-43cb-bdff-412dce131727,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38621,7f361954-539c-43cb-bdff-412dce131727,LIST_TRANSACTIONS,xs2aListTransactions,true 38622,7f361954-539c-43cb-bdff-412dce131727,AUTHORIZATION,,true 38623,7f361954-539c-43cb-bdff-412dce131727,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38624,7f361954-539c-43cb-bdff-412dce131727,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38625,7f361954-539c-43cb-bdff-412dce131727,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38626,ecfed660-c2d8-419f-8af1-1406354f76b8,LIST_ACCOUNTS,hbciListAccounts,false -38627,ecfed660-c2d8-419f-8af1-1406354f76b8,LIST_TRANSACTIONS,hbciListTransactions,false -38628,ecfed660-c2d8-419f-8af1-1406354f76b8,AUTHORIZATION,,false -38629,ecfed660-c2d8-419f-8af1-1406354f76b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38630,ecfed660-c2d8-419f-8af1-1406354f76b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38631,ecfed660-c2d8-419f-8af1-1406354f76b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38626,5749bdc1-f626-4144-ad4c-198a97bc5d4d,LIST_ACCOUNTS,hbciListAccounts,false +38627,5749bdc1-f626-4144-ad4c-198a97bc5d4d,LIST_TRANSACTIONS,hbciListTransactions,false +38628,5749bdc1-f626-4144-ad4c-198a97bc5d4d,AUTHORIZATION,,false +38629,5749bdc1-f626-4144-ad4c-198a97bc5d4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38630,5749bdc1-f626-4144-ad4c-198a97bc5d4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38631,5749bdc1-f626-4144-ad4c-198a97bc5d4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38632,9b63a754-0935-4884-923e-078ad9fbdbe0,LIST_ACCOUNTS,xs2aListAccounts,true -38633,9b63a754-0935-4884-923e-078ad9fbdbe0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38633,9b63a754-0935-4884-923e-078ad9fbdbe0,LIST_TRANSACTIONS,xs2aListTransactions,true 38634,9b63a754-0935-4884-923e-078ad9fbdbe0,AUTHORIZATION,,true 38635,9b63a754-0935-4884-923e-078ad9fbdbe0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38636,9b63a754-0935-4884-923e-078ad9fbdbe0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38637,9b63a754-0935-4884-923e-078ad9fbdbe0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38638,81e6da56-f8cb-4e0c-84b3-434130cc60f1,LIST_ACCOUNTS,hbciListAccounts,false -38639,81e6da56-f8cb-4e0c-84b3-434130cc60f1,LIST_TRANSACTIONS,hbciListTransactions,false -38640,81e6da56-f8cb-4e0c-84b3-434130cc60f1,AUTHORIZATION,,false -38641,81e6da56-f8cb-4e0c-84b3-434130cc60f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38642,81e6da56-f8cb-4e0c-84b3-434130cc60f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38643,81e6da56-f8cb-4e0c-84b3-434130cc60f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38638,2a36a9ce-8995-4bf1-83fa-1f99f922c5f7,LIST_ACCOUNTS,hbciListAccounts,false +38639,2a36a9ce-8995-4bf1-83fa-1f99f922c5f7,LIST_TRANSACTIONS,hbciListTransactions,false +38640,2a36a9ce-8995-4bf1-83fa-1f99f922c5f7,AUTHORIZATION,,false +38641,2a36a9ce-8995-4bf1-83fa-1f99f922c5f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38642,2a36a9ce-8995-4bf1-83fa-1f99f922c5f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38643,2a36a9ce-8995-4bf1-83fa-1f99f922c5f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38644,3fc69fd9-2bc0-4beb-ab94-9491aaabcca2,LIST_ACCOUNTS,xs2aListAccounts,true -38645,3fc69fd9-2bc0-4beb-ab94-9491aaabcca2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38645,3fc69fd9-2bc0-4beb-ab94-9491aaabcca2,LIST_TRANSACTIONS,xs2aListTransactions,true 38646,3fc69fd9-2bc0-4beb-ab94-9491aaabcca2,AUTHORIZATION,,true 38647,3fc69fd9-2bc0-4beb-ab94-9491aaabcca2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38648,3fc69fd9-2bc0-4beb-ab94-9491aaabcca2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38649,3fc69fd9-2bc0-4beb-ab94-9491aaabcca2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38650,193cd6dd-643e-4de0-8cfb-0f49e7f67e83,LIST_ACCOUNTS,hbciListAccounts,false -38651,193cd6dd-643e-4de0-8cfb-0f49e7f67e83,LIST_TRANSACTIONS,hbciListTransactions,false -38652,193cd6dd-643e-4de0-8cfb-0f49e7f67e83,AUTHORIZATION,,false -38653,193cd6dd-643e-4de0-8cfb-0f49e7f67e83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38654,193cd6dd-643e-4de0-8cfb-0f49e7f67e83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38655,193cd6dd-643e-4de0-8cfb-0f49e7f67e83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38650,69ead3d5-7376-433d-a586-0d5ad2dcd046,LIST_ACCOUNTS,hbciListAccounts,false +38651,69ead3d5-7376-433d-a586-0d5ad2dcd046,LIST_TRANSACTIONS,hbciListTransactions,false +38652,69ead3d5-7376-433d-a586-0d5ad2dcd046,AUTHORIZATION,,false +38653,69ead3d5-7376-433d-a586-0d5ad2dcd046,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38654,69ead3d5-7376-433d-a586-0d5ad2dcd046,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38655,69ead3d5-7376-433d-a586-0d5ad2dcd046,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38656,97270811-c7c8-4429-ada1-5f0d75fa924d,LIST_ACCOUNTS,xs2aListAccounts,true -38657,97270811-c7c8-4429-ada1-5f0d75fa924d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38657,97270811-c7c8-4429-ada1-5f0d75fa924d,LIST_TRANSACTIONS,xs2aListTransactions,true 38658,97270811-c7c8-4429-ada1-5f0d75fa924d,AUTHORIZATION,,true 38659,97270811-c7c8-4429-ada1-5f0d75fa924d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38660,97270811-c7c8-4429-ada1-5f0d75fa924d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38661,97270811-c7c8-4429-ada1-5f0d75fa924d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38662,c2daedbd-3972-4684-9bcc-220d05b4e045,LIST_ACCOUNTS,hbciListAccounts,false -38663,c2daedbd-3972-4684-9bcc-220d05b4e045,LIST_TRANSACTIONS,hbciListTransactions,false -38664,c2daedbd-3972-4684-9bcc-220d05b4e045,AUTHORIZATION,,false -38665,c2daedbd-3972-4684-9bcc-220d05b4e045,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38666,c2daedbd-3972-4684-9bcc-220d05b4e045,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38667,c2daedbd-3972-4684-9bcc-220d05b4e045,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38662,15874663-1e1b-43fe-a742-f9401a5242e4,LIST_ACCOUNTS,hbciListAccounts,false +38663,15874663-1e1b-43fe-a742-f9401a5242e4,LIST_TRANSACTIONS,hbciListTransactions,false +38664,15874663-1e1b-43fe-a742-f9401a5242e4,AUTHORIZATION,,false +38665,15874663-1e1b-43fe-a742-f9401a5242e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38666,15874663-1e1b-43fe-a742-f9401a5242e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38667,15874663-1e1b-43fe-a742-f9401a5242e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38668,b531bb62-523c-4cb1-b109-fb023a181364,LIST_ACCOUNTS,xs2aListAccounts,true -38669,b531bb62-523c-4cb1-b109-fb023a181364,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38669,b531bb62-523c-4cb1-b109-fb023a181364,LIST_TRANSACTIONS,xs2aListTransactions,true 38670,b531bb62-523c-4cb1-b109-fb023a181364,AUTHORIZATION,,true 38671,b531bb62-523c-4cb1-b109-fb023a181364,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38672,b531bb62-523c-4cb1-b109-fb023a181364,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38673,b531bb62-523c-4cb1-b109-fb023a181364,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38674,a1fbd0ce-aa32-4d8a-b6a7-fd0d5b6c3aef,LIST_ACCOUNTS,hbciListAccounts,false -38675,a1fbd0ce-aa32-4d8a-b6a7-fd0d5b6c3aef,LIST_TRANSACTIONS,hbciListTransactions,false -38676,a1fbd0ce-aa32-4d8a-b6a7-fd0d5b6c3aef,AUTHORIZATION,,false -38677,a1fbd0ce-aa32-4d8a-b6a7-fd0d5b6c3aef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38678,a1fbd0ce-aa32-4d8a-b6a7-fd0d5b6c3aef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38679,a1fbd0ce-aa32-4d8a-b6a7-fd0d5b6c3aef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38674,405e145b-5500-4cdf-ac5b-ebfb1886cb5f,LIST_ACCOUNTS,hbciListAccounts,false +38675,405e145b-5500-4cdf-ac5b-ebfb1886cb5f,LIST_TRANSACTIONS,hbciListTransactions,false +38676,405e145b-5500-4cdf-ac5b-ebfb1886cb5f,AUTHORIZATION,,false +38677,405e145b-5500-4cdf-ac5b-ebfb1886cb5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38678,405e145b-5500-4cdf-ac5b-ebfb1886cb5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38679,405e145b-5500-4cdf-ac5b-ebfb1886cb5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38680,eb5d48f6-55dc-404e-8efd-9d679b776c23,LIST_ACCOUNTS,xs2aListAccounts,true -38681,eb5d48f6-55dc-404e-8efd-9d679b776c23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38681,eb5d48f6-55dc-404e-8efd-9d679b776c23,LIST_TRANSACTIONS,xs2aListTransactions,true 38682,eb5d48f6-55dc-404e-8efd-9d679b776c23,AUTHORIZATION,,true 38683,eb5d48f6-55dc-404e-8efd-9d679b776c23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38684,eb5d48f6-55dc-404e-8efd-9d679b776c23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38685,eb5d48f6-55dc-404e-8efd-9d679b776c23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38686,17aecac8-d128-47b1-ae07-3a55a7054685,LIST_ACCOUNTS,hbciListAccounts,false -38687,17aecac8-d128-47b1-ae07-3a55a7054685,LIST_TRANSACTIONS,hbciListTransactions,false -38688,17aecac8-d128-47b1-ae07-3a55a7054685,AUTHORIZATION,,false -38689,17aecac8-d128-47b1-ae07-3a55a7054685,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38690,17aecac8-d128-47b1-ae07-3a55a7054685,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38691,17aecac8-d128-47b1-ae07-3a55a7054685,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38686,9af86989-9eb4-42cf-a8db-396794784667,LIST_ACCOUNTS,hbciListAccounts,false +38687,9af86989-9eb4-42cf-a8db-396794784667,LIST_TRANSACTIONS,hbciListTransactions,false +38688,9af86989-9eb4-42cf-a8db-396794784667,AUTHORIZATION,,false +38689,9af86989-9eb4-42cf-a8db-396794784667,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38690,9af86989-9eb4-42cf-a8db-396794784667,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38691,9af86989-9eb4-42cf-a8db-396794784667,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38692,7fc6fd98-2d6a-42c2-a5af-ac3fb3198df9,LIST_ACCOUNTS,xs2aListAccounts,true -38693,7fc6fd98-2d6a-42c2-a5af-ac3fb3198df9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38693,7fc6fd98-2d6a-42c2-a5af-ac3fb3198df9,LIST_TRANSACTIONS,xs2aListTransactions,true 38694,7fc6fd98-2d6a-42c2-a5af-ac3fb3198df9,AUTHORIZATION,,true 38695,7fc6fd98-2d6a-42c2-a5af-ac3fb3198df9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38696,7fc6fd98-2d6a-42c2-a5af-ac3fb3198df9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38697,7fc6fd98-2d6a-42c2-a5af-ac3fb3198df9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38698,81ec5288-7c01-46fc-97a6-f7d2ae57f417,LIST_ACCOUNTS,hbciListAccounts,false -38699,81ec5288-7c01-46fc-97a6-f7d2ae57f417,LIST_TRANSACTIONS,hbciListTransactions,false -38700,81ec5288-7c01-46fc-97a6-f7d2ae57f417,AUTHORIZATION,,false -38701,81ec5288-7c01-46fc-97a6-f7d2ae57f417,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38702,81ec5288-7c01-46fc-97a6-f7d2ae57f417,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38703,81ec5288-7c01-46fc-97a6-f7d2ae57f417,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38698,c4690042-e2c2-4940-ad75-36eb45ca5d9f,LIST_ACCOUNTS,hbciListAccounts,false +38699,c4690042-e2c2-4940-ad75-36eb45ca5d9f,LIST_TRANSACTIONS,hbciListTransactions,false +38700,c4690042-e2c2-4940-ad75-36eb45ca5d9f,AUTHORIZATION,,false +38701,c4690042-e2c2-4940-ad75-36eb45ca5d9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38702,c4690042-e2c2-4940-ad75-36eb45ca5d9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38703,c4690042-e2c2-4940-ad75-36eb45ca5d9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38704,125e07ad-431c-41dc-b97b-686d00087fd8,LIST_ACCOUNTS,xs2aListAccounts,true -38705,125e07ad-431c-41dc-b97b-686d00087fd8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38705,125e07ad-431c-41dc-b97b-686d00087fd8,LIST_TRANSACTIONS,xs2aListTransactions,true 38706,125e07ad-431c-41dc-b97b-686d00087fd8,AUTHORIZATION,,true 38707,125e07ad-431c-41dc-b97b-686d00087fd8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38708,125e07ad-431c-41dc-b97b-686d00087fd8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38709,125e07ad-431c-41dc-b97b-686d00087fd8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38710,9ec07f2b-b5c0-46e3-83d8-94f4f2ac98d7,LIST_ACCOUNTS,hbciListAccounts,false -38711,9ec07f2b-b5c0-46e3-83d8-94f4f2ac98d7,LIST_TRANSACTIONS,hbciListTransactions,false -38712,9ec07f2b-b5c0-46e3-83d8-94f4f2ac98d7,AUTHORIZATION,,false -38713,9ec07f2b-b5c0-46e3-83d8-94f4f2ac98d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38714,9ec07f2b-b5c0-46e3-83d8-94f4f2ac98d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38715,9ec07f2b-b5c0-46e3-83d8-94f4f2ac98d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38710,46cf8b10-296f-4311-ab68-787e72250406,LIST_ACCOUNTS,hbciListAccounts,false +38711,46cf8b10-296f-4311-ab68-787e72250406,LIST_TRANSACTIONS,hbciListTransactions,false +38712,46cf8b10-296f-4311-ab68-787e72250406,AUTHORIZATION,,false +38713,46cf8b10-296f-4311-ab68-787e72250406,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38714,46cf8b10-296f-4311-ab68-787e72250406,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38715,46cf8b10-296f-4311-ab68-787e72250406,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38716,45ec110a-7f4b-4e18-8a74-517641eccbeb,LIST_ACCOUNTS,xs2aListAccounts,true -38717,45ec110a-7f4b-4e18-8a74-517641eccbeb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38717,45ec110a-7f4b-4e18-8a74-517641eccbeb,LIST_TRANSACTIONS,xs2aListTransactions,true 38718,45ec110a-7f4b-4e18-8a74-517641eccbeb,AUTHORIZATION,,true 38719,45ec110a-7f4b-4e18-8a74-517641eccbeb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38720,45ec110a-7f4b-4e18-8a74-517641eccbeb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38721,45ec110a-7f4b-4e18-8a74-517641eccbeb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38722,b6a9c1bc-d0ae-48d4-af3e-6b6719a836ab,LIST_ACCOUNTS,hbciListAccounts,false -38723,b6a9c1bc-d0ae-48d4-af3e-6b6719a836ab,LIST_TRANSACTIONS,hbciListTransactions,false -38724,b6a9c1bc-d0ae-48d4-af3e-6b6719a836ab,AUTHORIZATION,,false -38725,b6a9c1bc-d0ae-48d4-af3e-6b6719a836ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38726,b6a9c1bc-d0ae-48d4-af3e-6b6719a836ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38727,b6a9c1bc-d0ae-48d4-af3e-6b6719a836ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38722,a88a5fdc-0eaf-4d69-8402-a6e9b8200750,LIST_ACCOUNTS,hbciListAccounts,false +38723,a88a5fdc-0eaf-4d69-8402-a6e9b8200750,LIST_TRANSACTIONS,hbciListTransactions,false +38724,a88a5fdc-0eaf-4d69-8402-a6e9b8200750,AUTHORIZATION,,false +38725,a88a5fdc-0eaf-4d69-8402-a6e9b8200750,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38726,a88a5fdc-0eaf-4d69-8402-a6e9b8200750,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38727,a88a5fdc-0eaf-4d69-8402-a6e9b8200750,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38728,7ea57059-3efa-4510-b9e2-05231f39fc3d,LIST_ACCOUNTS,xs2aListAccounts,true -38729,7ea57059-3efa-4510-b9e2-05231f39fc3d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38729,7ea57059-3efa-4510-b9e2-05231f39fc3d,LIST_TRANSACTIONS,xs2aListTransactions,true 38730,7ea57059-3efa-4510-b9e2-05231f39fc3d,AUTHORIZATION,,true 38731,7ea57059-3efa-4510-b9e2-05231f39fc3d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38732,7ea57059-3efa-4510-b9e2-05231f39fc3d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38733,7ea57059-3efa-4510-b9e2-05231f39fc3d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38734,e5dfe5a5-55f5-4046-a298-ff1c41a89e98,LIST_ACCOUNTS,hbciListAccounts,false -38735,e5dfe5a5-55f5-4046-a298-ff1c41a89e98,LIST_TRANSACTIONS,hbciListTransactions,false -38736,e5dfe5a5-55f5-4046-a298-ff1c41a89e98,AUTHORIZATION,,false -38737,e5dfe5a5-55f5-4046-a298-ff1c41a89e98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38738,e5dfe5a5-55f5-4046-a298-ff1c41a89e98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38739,e5dfe5a5-55f5-4046-a298-ff1c41a89e98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38734,fd5cd3ba-3c2a-4d74-ac62-b2dfc5a6c687,LIST_ACCOUNTS,hbciListAccounts,false +38735,fd5cd3ba-3c2a-4d74-ac62-b2dfc5a6c687,LIST_TRANSACTIONS,hbciListTransactions,false +38736,fd5cd3ba-3c2a-4d74-ac62-b2dfc5a6c687,AUTHORIZATION,,false +38737,fd5cd3ba-3c2a-4d74-ac62-b2dfc5a6c687,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38738,fd5cd3ba-3c2a-4d74-ac62-b2dfc5a6c687,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38739,fd5cd3ba-3c2a-4d74-ac62-b2dfc5a6c687,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38740,66cc3e9d-f313-46a7-9e81-c35f05b9b510,LIST_ACCOUNTS,xs2aListAccounts,true -38741,66cc3e9d-f313-46a7-9e81-c35f05b9b510,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38741,66cc3e9d-f313-46a7-9e81-c35f05b9b510,LIST_TRANSACTIONS,xs2aListTransactions,true 38742,66cc3e9d-f313-46a7-9e81-c35f05b9b510,AUTHORIZATION,,true 38743,66cc3e9d-f313-46a7-9e81-c35f05b9b510,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38744,66cc3e9d-f313-46a7-9e81-c35f05b9b510,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38745,66cc3e9d-f313-46a7-9e81-c35f05b9b510,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38746,a77ae185-0af0-4e87-8559-5f5d9e804e14,LIST_ACCOUNTS,hbciListAccounts,false -38747,a77ae185-0af0-4e87-8559-5f5d9e804e14,LIST_TRANSACTIONS,hbciListTransactions,false -38748,a77ae185-0af0-4e87-8559-5f5d9e804e14,AUTHORIZATION,,false -38749,a77ae185-0af0-4e87-8559-5f5d9e804e14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38750,a77ae185-0af0-4e87-8559-5f5d9e804e14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38751,a77ae185-0af0-4e87-8559-5f5d9e804e14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38746,106d1359-b985-44de-b70a-05d606d69f4b,LIST_ACCOUNTS,hbciListAccounts,false +38747,106d1359-b985-44de-b70a-05d606d69f4b,LIST_TRANSACTIONS,hbciListTransactions,false +38748,106d1359-b985-44de-b70a-05d606d69f4b,AUTHORIZATION,,false +38749,106d1359-b985-44de-b70a-05d606d69f4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38750,106d1359-b985-44de-b70a-05d606d69f4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38751,106d1359-b985-44de-b70a-05d606d69f4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38752,9d8a89e6-0e3f-40ee-8027-a7ea5a95bb51,LIST_ACCOUNTS,xs2aListAccounts,true -38753,9d8a89e6-0e3f-40ee-8027-a7ea5a95bb51,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38753,9d8a89e6-0e3f-40ee-8027-a7ea5a95bb51,LIST_TRANSACTIONS,xs2aListTransactions,true 38754,9d8a89e6-0e3f-40ee-8027-a7ea5a95bb51,AUTHORIZATION,,true 38755,9d8a89e6-0e3f-40ee-8027-a7ea5a95bb51,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38756,9d8a89e6-0e3f-40ee-8027-a7ea5a95bb51,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38757,9d8a89e6-0e3f-40ee-8027-a7ea5a95bb51,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38758,46b82cd0-e5fb-4399-98b6-21f97163a90d,LIST_ACCOUNTS,hbciListAccounts,false -38759,46b82cd0-e5fb-4399-98b6-21f97163a90d,LIST_TRANSACTIONS,hbciListTransactions,false -38760,46b82cd0-e5fb-4399-98b6-21f97163a90d,AUTHORIZATION,,false -38761,46b82cd0-e5fb-4399-98b6-21f97163a90d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38762,46b82cd0-e5fb-4399-98b6-21f97163a90d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38763,46b82cd0-e5fb-4399-98b6-21f97163a90d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38758,cb88c836-766a-4ed2-a1d9-5f5d0089ee27,LIST_ACCOUNTS,hbciListAccounts,false +38759,cb88c836-766a-4ed2-a1d9-5f5d0089ee27,LIST_TRANSACTIONS,hbciListTransactions,false +38760,cb88c836-766a-4ed2-a1d9-5f5d0089ee27,AUTHORIZATION,,false +38761,cb88c836-766a-4ed2-a1d9-5f5d0089ee27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38762,cb88c836-766a-4ed2-a1d9-5f5d0089ee27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38763,cb88c836-766a-4ed2-a1d9-5f5d0089ee27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38764,437f8318-164a-4e7b-920e-1aca67c01c86,LIST_ACCOUNTS,xs2aListAccounts,true -38765,437f8318-164a-4e7b-920e-1aca67c01c86,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38765,437f8318-164a-4e7b-920e-1aca67c01c86,LIST_TRANSACTIONS,xs2aListTransactions,true 38766,437f8318-164a-4e7b-920e-1aca67c01c86,AUTHORIZATION,,true 38767,437f8318-164a-4e7b-920e-1aca67c01c86,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38768,437f8318-164a-4e7b-920e-1aca67c01c86,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38769,437f8318-164a-4e7b-920e-1aca67c01c86,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38770,6d407b1c-80c2-4dd4-bdb3-5a86eae1275d,LIST_ACCOUNTS,hbciListAccounts,false -38771,6d407b1c-80c2-4dd4-bdb3-5a86eae1275d,LIST_TRANSACTIONS,hbciListTransactions,false -38772,6d407b1c-80c2-4dd4-bdb3-5a86eae1275d,AUTHORIZATION,,false -38773,6d407b1c-80c2-4dd4-bdb3-5a86eae1275d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38774,6d407b1c-80c2-4dd4-bdb3-5a86eae1275d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38775,6d407b1c-80c2-4dd4-bdb3-5a86eae1275d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38770,a99338f5-c673-4f2e-85dd-af2f10624f7f,LIST_ACCOUNTS,hbciListAccounts,false +38771,a99338f5-c673-4f2e-85dd-af2f10624f7f,LIST_TRANSACTIONS,hbciListTransactions,false +38772,a99338f5-c673-4f2e-85dd-af2f10624f7f,AUTHORIZATION,,false +38773,a99338f5-c673-4f2e-85dd-af2f10624f7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38774,a99338f5-c673-4f2e-85dd-af2f10624f7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38775,a99338f5-c673-4f2e-85dd-af2f10624f7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38776,1a99061f-6db3-45b9-9f0c-29d89cef66db,LIST_ACCOUNTS,xs2aListAccounts,true -38777,1a99061f-6db3-45b9-9f0c-29d89cef66db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38777,1a99061f-6db3-45b9-9f0c-29d89cef66db,LIST_TRANSACTIONS,xs2aListTransactions,true 38778,1a99061f-6db3-45b9-9f0c-29d89cef66db,AUTHORIZATION,,true 38779,1a99061f-6db3-45b9-9f0c-29d89cef66db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38780,1a99061f-6db3-45b9-9f0c-29d89cef66db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38781,1a99061f-6db3-45b9-9f0c-29d89cef66db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38782,928c69a6-5e1f-4915-a916-e0be5fa67771,LIST_ACCOUNTS,hbciListAccounts,false -38783,928c69a6-5e1f-4915-a916-e0be5fa67771,LIST_TRANSACTIONS,hbciListTransactions,false -38784,928c69a6-5e1f-4915-a916-e0be5fa67771,AUTHORIZATION,,false -38785,928c69a6-5e1f-4915-a916-e0be5fa67771,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38786,928c69a6-5e1f-4915-a916-e0be5fa67771,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38787,928c69a6-5e1f-4915-a916-e0be5fa67771,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38782,1a614815-14ee-4cfb-9a96-61b9fb3340d2,LIST_ACCOUNTS,hbciListAccounts,false +38783,1a614815-14ee-4cfb-9a96-61b9fb3340d2,LIST_TRANSACTIONS,hbciListTransactions,false +38784,1a614815-14ee-4cfb-9a96-61b9fb3340d2,AUTHORIZATION,,false +38785,1a614815-14ee-4cfb-9a96-61b9fb3340d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38786,1a614815-14ee-4cfb-9a96-61b9fb3340d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38787,1a614815-14ee-4cfb-9a96-61b9fb3340d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38788,dfbbef5a-34a3-47fe-9700-84441ed4a7ac,LIST_ACCOUNTS,xs2aListAccounts,true -38789,dfbbef5a-34a3-47fe-9700-84441ed4a7ac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38789,dfbbef5a-34a3-47fe-9700-84441ed4a7ac,LIST_TRANSACTIONS,xs2aListTransactions,true 38790,dfbbef5a-34a3-47fe-9700-84441ed4a7ac,AUTHORIZATION,,true 38791,dfbbef5a-34a3-47fe-9700-84441ed4a7ac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38792,dfbbef5a-34a3-47fe-9700-84441ed4a7ac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38793,dfbbef5a-34a3-47fe-9700-84441ed4a7ac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38794,dfc4f089-9a69-4232-bc6f-154b7d101dfd,LIST_ACCOUNTS,hbciListAccounts,false -38795,dfc4f089-9a69-4232-bc6f-154b7d101dfd,LIST_TRANSACTIONS,hbciListTransactions,false -38796,dfc4f089-9a69-4232-bc6f-154b7d101dfd,AUTHORIZATION,,false -38797,dfc4f089-9a69-4232-bc6f-154b7d101dfd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38798,dfc4f089-9a69-4232-bc6f-154b7d101dfd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38799,dfc4f089-9a69-4232-bc6f-154b7d101dfd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38794,425a2e1f-6e03-47a1-b21f-3aef5b97e5b0,LIST_ACCOUNTS,hbciListAccounts,false +38795,425a2e1f-6e03-47a1-b21f-3aef5b97e5b0,LIST_TRANSACTIONS,hbciListTransactions,false +38796,425a2e1f-6e03-47a1-b21f-3aef5b97e5b0,AUTHORIZATION,,false +38797,425a2e1f-6e03-47a1-b21f-3aef5b97e5b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38798,425a2e1f-6e03-47a1-b21f-3aef5b97e5b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38799,425a2e1f-6e03-47a1-b21f-3aef5b97e5b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38800,43449249-90fe-4a5c-82c6-bd5a417c4c3b,LIST_ACCOUNTS,xs2aListAccounts,true -38801,43449249-90fe-4a5c-82c6-bd5a417c4c3b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38801,43449249-90fe-4a5c-82c6-bd5a417c4c3b,LIST_TRANSACTIONS,xs2aListTransactions,true 38802,43449249-90fe-4a5c-82c6-bd5a417c4c3b,AUTHORIZATION,,true 38803,43449249-90fe-4a5c-82c6-bd5a417c4c3b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38804,43449249-90fe-4a5c-82c6-bd5a417c4c3b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38805,43449249-90fe-4a5c-82c6-bd5a417c4c3b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38806,22af2acf-50bc-41ce-a6d5-236af163300e,LIST_ACCOUNTS,hbciListAccounts,false -38807,22af2acf-50bc-41ce-a6d5-236af163300e,LIST_TRANSACTIONS,hbciListTransactions,false -38808,22af2acf-50bc-41ce-a6d5-236af163300e,AUTHORIZATION,,false -38809,22af2acf-50bc-41ce-a6d5-236af163300e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38810,22af2acf-50bc-41ce-a6d5-236af163300e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38811,22af2acf-50bc-41ce-a6d5-236af163300e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38806,dcf4ad34-bc2b-42eb-a789-d042ca573efa,LIST_ACCOUNTS,hbciListAccounts,false +38807,dcf4ad34-bc2b-42eb-a789-d042ca573efa,LIST_TRANSACTIONS,hbciListTransactions,false +38808,dcf4ad34-bc2b-42eb-a789-d042ca573efa,AUTHORIZATION,,false +38809,dcf4ad34-bc2b-42eb-a789-d042ca573efa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38810,dcf4ad34-bc2b-42eb-a789-d042ca573efa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38811,dcf4ad34-bc2b-42eb-a789-d042ca573efa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38812,d1acccfd-e3ff-407d-b129-df2f508b5946,LIST_ACCOUNTS,xs2aListAccounts,true -38813,d1acccfd-e3ff-407d-b129-df2f508b5946,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38813,d1acccfd-e3ff-407d-b129-df2f508b5946,LIST_TRANSACTIONS,xs2aListTransactions,true 38814,d1acccfd-e3ff-407d-b129-df2f508b5946,AUTHORIZATION,,true 38815,d1acccfd-e3ff-407d-b129-df2f508b5946,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38816,d1acccfd-e3ff-407d-b129-df2f508b5946,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38817,d1acccfd-e3ff-407d-b129-df2f508b5946,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38818,d0b3c93d-82b8-4ce4-9c0a-322a3632487f,LIST_ACCOUNTS,hbciListAccounts,false -38819,d0b3c93d-82b8-4ce4-9c0a-322a3632487f,LIST_TRANSACTIONS,hbciListTransactions,false -38820,d0b3c93d-82b8-4ce4-9c0a-322a3632487f,AUTHORIZATION,,false -38821,d0b3c93d-82b8-4ce4-9c0a-322a3632487f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38822,d0b3c93d-82b8-4ce4-9c0a-322a3632487f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38823,d0b3c93d-82b8-4ce4-9c0a-322a3632487f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38818,8f73c229-5f47-4c3b-bafc-9b4cf176d87e,LIST_ACCOUNTS,hbciListAccounts,false +38819,8f73c229-5f47-4c3b-bafc-9b4cf176d87e,LIST_TRANSACTIONS,hbciListTransactions,false +38820,8f73c229-5f47-4c3b-bafc-9b4cf176d87e,AUTHORIZATION,,false +38821,8f73c229-5f47-4c3b-bafc-9b4cf176d87e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38822,8f73c229-5f47-4c3b-bafc-9b4cf176d87e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38823,8f73c229-5f47-4c3b-bafc-9b4cf176d87e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38824,04329cbc-79fb-4db7-a8c9-7032f138726d,LIST_ACCOUNTS,xs2aListAccounts,true -38825,04329cbc-79fb-4db7-a8c9-7032f138726d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38825,04329cbc-79fb-4db7-a8c9-7032f138726d,LIST_TRANSACTIONS,xs2aListTransactions,true 38826,04329cbc-79fb-4db7-a8c9-7032f138726d,AUTHORIZATION,,true 38827,04329cbc-79fb-4db7-a8c9-7032f138726d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38828,04329cbc-79fb-4db7-a8c9-7032f138726d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38829,04329cbc-79fb-4db7-a8c9-7032f138726d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38830,5468586e-4ba9-4dbf-bc72-671c4a00f315,LIST_ACCOUNTS,hbciListAccounts,false -38831,5468586e-4ba9-4dbf-bc72-671c4a00f315,LIST_TRANSACTIONS,hbciListTransactions,false -38832,5468586e-4ba9-4dbf-bc72-671c4a00f315,AUTHORIZATION,,false -38833,5468586e-4ba9-4dbf-bc72-671c4a00f315,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38834,5468586e-4ba9-4dbf-bc72-671c4a00f315,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38835,5468586e-4ba9-4dbf-bc72-671c4a00f315,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38830,ad06223c-0162-4262-a2ab-601d2c6a8c96,LIST_ACCOUNTS,hbciListAccounts,false +38831,ad06223c-0162-4262-a2ab-601d2c6a8c96,LIST_TRANSACTIONS,hbciListTransactions,false +38832,ad06223c-0162-4262-a2ab-601d2c6a8c96,AUTHORIZATION,,false +38833,ad06223c-0162-4262-a2ab-601d2c6a8c96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38834,ad06223c-0162-4262-a2ab-601d2c6a8c96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38835,ad06223c-0162-4262-a2ab-601d2c6a8c96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38836,8638c07e-7472-45e2-8a4e-81f7415d0bcf,LIST_ACCOUNTS,xs2aListAccounts,true -38837,8638c07e-7472-45e2-8a4e-81f7415d0bcf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38837,8638c07e-7472-45e2-8a4e-81f7415d0bcf,LIST_TRANSACTIONS,xs2aListTransactions,true 38838,8638c07e-7472-45e2-8a4e-81f7415d0bcf,AUTHORIZATION,,true 38839,8638c07e-7472-45e2-8a4e-81f7415d0bcf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38840,8638c07e-7472-45e2-8a4e-81f7415d0bcf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38841,8638c07e-7472-45e2-8a4e-81f7415d0bcf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38842,5c33691c-de70-4df3-83ab-19eb7f1db9fc,LIST_ACCOUNTS,hbciListAccounts,false -38843,5c33691c-de70-4df3-83ab-19eb7f1db9fc,LIST_TRANSACTIONS,hbciListTransactions,false -38844,5c33691c-de70-4df3-83ab-19eb7f1db9fc,AUTHORIZATION,,false -38845,5c33691c-de70-4df3-83ab-19eb7f1db9fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38846,5c33691c-de70-4df3-83ab-19eb7f1db9fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38847,5c33691c-de70-4df3-83ab-19eb7f1db9fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38842,c315dfda-e41c-4b28-a505-f37c4b7df437,LIST_ACCOUNTS,hbciListAccounts,false +38843,c315dfda-e41c-4b28-a505-f37c4b7df437,LIST_TRANSACTIONS,hbciListTransactions,false +38844,c315dfda-e41c-4b28-a505-f37c4b7df437,AUTHORIZATION,,false +38845,c315dfda-e41c-4b28-a505-f37c4b7df437,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38846,c315dfda-e41c-4b28-a505-f37c4b7df437,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38847,c315dfda-e41c-4b28-a505-f37c4b7df437,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38848,562e6634-5031-4106-903d-4fa0748c8640,LIST_ACCOUNTS,xs2aListAccounts,true -38849,562e6634-5031-4106-903d-4fa0748c8640,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38849,562e6634-5031-4106-903d-4fa0748c8640,LIST_TRANSACTIONS,xs2aListTransactions,true 38850,562e6634-5031-4106-903d-4fa0748c8640,AUTHORIZATION,,true 38851,562e6634-5031-4106-903d-4fa0748c8640,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38852,562e6634-5031-4106-903d-4fa0748c8640,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38853,562e6634-5031-4106-903d-4fa0748c8640,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38854,4ccaea6c-9f81-4fa1-9e9a-b1470835be46,LIST_ACCOUNTS,hbciListAccounts,false -38855,4ccaea6c-9f81-4fa1-9e9a-b1470835be46,LIST_TRANSACTIONS,hbciListTransactions,false -38856,4ccaea6c-9f81-4fa1-9e9a-b1470835be46,AUTHORIZATION,,false -38857,4ccaea6c-9f81-4fa1-9e9a-b1470835be46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38858,4ccaea6c-9f81-4fa1-9e9a-b1470835be46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38859,4ccaea6c-9f81-4fa1-9e9a-b1470835be46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38854,3c3c45f0-f95e-41d0-955a-c4eb14c80813,LIST_ACCOUNTS,hbciListAccounts,false +38855,3c3c45f0-f95e-41d0-955a-c4eb14c80813,LIST_TRANSACTIONS,hbciListTransactions,false +38856,3c3c45f0-f95e-41d0-955a-c4eb14c80813,AUTHORIZATION,,false +38857,3c3c45f0-f95e-41d0-955a-c4eb14c80813,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38858,3c3c45f0-f95e-41d0-955a-c4eb14c80813,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38859,3c3c45f0-f95e-41d0-955a-c4eb14c80813,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38860,25e174ff-eedf-4226-a273-38fb9853b6ea,LIST_ACCOUNTS,xs2aListAccounts,true -38861,25e174ff-eedf-4226-a273-38fb9853b6ea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38861,25e174ff-eedf-4226-a273-38fb9853b6ea,LIST_TRANSACTIONS,xs2aListTransactions,true 38862,25e174ff-eedf-4226-a273-38fb9853b6ea,AUTHORIZATION,,true 38863,25e174ff-eedf-4226-a273-38fb9853b6ea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38864,25e174ff-eedf-4226-a273-38fb9853b6ea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38865,25e174ff-eedf-4226-a273-38fb9853b6ea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38866,030c5743-5379-45b0-88e7-7d0928114918,LIST_ACCOUNTS,hbciListAccounts,false -38867,030c5743-5379-45b0-88e7-7d0928114918,LIST_TRANSACTIONS,hbciListTransactions,false -38868,030c5743-5379-45b0-88e7-7d0928114918,AUTHORIZATION,,false -38869,030c5743-5379-45b0-88e7-7d0928114918,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38870,030c5743-5379-45b0-88e7-7d0928114918,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38871,030c5743-5379-45b0-88e7-7d0928114918,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38866,4db5ca80-33d8-4903-972f-289278301e5b,LIST_ACCOUNTS,hbciListAccounts,false +38867,4db5ca80-33d8-4903-972f-289278301e5b,LIST_TRANSACTIONS,hbciListTransactions,false +38868,4db5ca80-33d8-4903-972f-289278301e5b,AUTHORIZATION,,false +38869,4db5ca80-33d8-4903-972f-289278301e5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38870,4db5ca80-33d8-4903-972f-289278301e5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38871,4db5ca80-33d8-4903-972f-289278301e5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38872,44111a59-207f-4a23-a000-3ae5a88007bf,LIST_ACCOUNTS,xs2aListAccounts,true -38873,44111a59-207f-4a23-a000-3ae5a88007bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38873,44111a59-207f-4a23-a000-3ae5a88007bf,LIST_TRANSACTIONS,xs2aListTransactions,true 38874,44111a59-207f-4a23-a000-3ae5a88007bf,AUTHORIZATION,,true 38875,44111a59-207f-4a23-a000-3ae5a88007bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38876,44111a59-207f-4a23-a000-3ae5a88007bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38877,44111a59-207f-4a23-a000-3ae5a88007bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38878,bc5f816f-5693-422d-b599-b66e4f1b3850,LIST_ACCOUNTS,hbciListAccounts,false -38879,bc5f816f-5693-422d-b599-b66e4f1b3850,LIST_TRANSACTIONS,hbciListTransactions,false -38880,bc5f816f-5693-422d-b599-b66e4f1b3850,AUTHORIZATION,,false -38881,bc5f816f-5693-422d-b599-b66e4f1b3850,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38882,bc5f816f-5693-422d-b599-b66e4f1b3850,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38883,bc5f816f-5693-422d-b599-b66e4f1b3850,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38878,75f69a75-0f9f-4362-9064-7eca32e010a8,LIST_ACCOUNTS,hbciListAccounts,false +38879,75f69a75-0f9f-4362-9064-7eca32e010a8,LIST_TRANSACTIONS,hbciListTransactions,false +38880,75f69a75-0f9f-4362-9064-7eca32e010a8,AUTHORIZATION,,false +38881,75f69a75-0f9f-4362-9064-7eca32e010a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38882,75f69a75-0f9f-4362-9064-7eca32e010a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38883,75f69a75-0f9f-4362-9064-7eca32e010a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38884,9b29fe2e-c8a7-4b2a-93b1-ec36d089b9d5,LIST_ACCOUNTS,xs2aListAccounts,true -38885,9b29fe2e-c8a7-4b2a-93b1-ec36d089b9d5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38885,9b29fe2e-c8a7-4b2a-93b1-ec36d089b9d5,LIST_TRANSACTIONS,xs2aListTransactions,true 38886,9b29fe2e-c8a7-4b2a-93b1-ec36d089b9d5,AUTHORIZATION,,true 38887,9b29fe2e-c8a7-4b2a-93b1-ec36d089b9d5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38888,9b29fe2e-c8a7-4b2a-93b1-ec36d089b9d5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38889,9b29fe2e-c8a7-4b2a-93b1-ec36d089b9d5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38890,8412aad1-0def-4712-bd2a-ec207574183c,LIST_ACCOUNTS,hbciListAccounts,false -38891,8412aad1-0def-4712-bd2a-ec207574183c,LIST_TRANSACTIONS,hbciListTransactions,false -38892,8412aad1-0def-4712-bd2a-ec207574183c,AUTHORIZATION,,false -38893,8412aad1-0def-4712-bd2a-ec207574183c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38894,8412aad1-0def-4712-bd2a-ec207574183c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38895,8412aad1-0def-4712-bd2a-ec207574183c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38890,176103ae-f250-4b86-a46b-a0355de262e0,LIST_ACCOUNTS,hbciListAccounts,false +38891,176103ae-f250-4b86-a46b-a0355de262e0,LIST_TRANSACTIONS,hbciListTransactions,false +38892,176103ae-f250-4b86-a46b-a0355de262e0,AUTHORIZATION,,false +38893,176103ae-f250-4b86-a46b-a0355de262e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38894,176103ae-f250-4b86-a46b-a0355de262e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38895,176103ae-f250-4b86-a46b-a0355de262e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38896,b20aefe7-83f6-4d05-9ba2-8a91f695225e,LIST_ACCOUNTS,xs2aListAccounts,true -38897,b20aefe7-83f6-4d05-9ba2-8a91f695225e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38897,b20aefe7-83f6-4d05-9ba2-8a91f695225e,LIST_TRANSACTIONS,xs2aListTransactions,true 38898,b20aefe7-83f6-4d05-9ba2-8a91f695225e,AUTHORIZATION,,true 38899,b20aefe7-83f6-4d05-9ba2-8a91f695225e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38900,b20aefe7-83f6-4d05-9ba2-8a91f695225e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38901,b20aefe7-83f6-4d05-9ba2-8a91f695225e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38902,899326fe-ed33-41d5-91df-526f5fa1f973,LIST_ACCOUNTS,hbciListAccounts,false -38903,899326fe-ed33-41d5-91df-526f5fa1f973,LIST_TRANSACTIONS,hbciListTransactions,false -38904,899326fe-ed33-41d5-91df-526f5fa1f973,AUTHORIZATION,,false -38905,899326fe-ed33-41d5-91df-526f5fa1f973,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38906,899326fe-ed33-41d5-91df-526f5fa1f973,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38907,899326fe-ed33-41d5-91df-526f5fa1f973,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38902,534488f2-c019-4243-908d-fd025fa5b00c,LIST_ACCOUNTS,hbciListAccounts,false +38903,534488f2-c019-4243-908d-fd025fa5b00c,LIST_TRANSACTIONS,hbciListTransactions,false +38904,534488f2-c019-4243-908d-fd025fa5b00c,AUTHORIZATION,,false +38905,534488f2-c019-4243-908d-fd025fa5b00c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38906,534488f2-c019-4243-908d-fd025fa5b00c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38907,534488f2-c019-4243-908d-fd025fa5b00c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38908,f03b1d1d-6fa7-44a9-90bf-924ecd0df165,LIST_ACCOUNTS,xs2aListAccounts,true -38909,f03b1d1d-6fa7-44a9-90bf-924ecd0df165,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38909,f03b1d1d-6fa7-44a9-90bf-924ecd0df165,LIST_TRANSACTIONS,xs2aListTransactions,true 38910,f03b1d1d-6fa7-44a9-90bf-924ecd0df165,AUTHORIZATION,,true 38911,f03b1d1d-6fa7-44a9-90bf-924ecd0df165,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38912,f03b1d1d-6fa7-44a9-90bf-924ecd0df165,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38913,f03b1d1d-6fa7-44a9-90bf-924ecd0df165,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38914,d8b65e7d-8ac2-40fe-8dbb-f220511cd89a,LIST_ACCOUNTS,hbciListAccounts,false -38915,d8b65e7d-8ac2-40fe-8dbb-f220511cd89a,LIST_TRANSACTIONS,hbciListTransactions,false -38916,d8b65e7d-8ac2-40fe-8dbb-f220511cd89a,AUTHORIZATION,,false -38917,d8b65e7d-8ac2-40fe-8dbb-f220511cd89a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38918,d8b65e7d-8ac2-40fe-8dbb-f220511cd89a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38919,d8b65e7d-8ac2-40fe-8dbb-f220511cd89a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38914,92f5f686-f72e-4647-8403-8557b53c9196,LIST_ACCOUNTS,hbciListAccounts,false +38915,92f5f686-f72e-4647-8403-8557b53c9196,LIST_TRANSACTIONS,hbciListTransactions,false +38916,92f5f686-f72e-4647-8403-8557b53c9196,AUTHORIZATION,,false +38917,92f5f686-f72e-4647-8403-8557b53c9196,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38918,92f5f686-f72e-4647-8403-8557b53c9196,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38919,92f5f686-f72e-4647-8403-8557b53c9196,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38920,ae9048ac-7a5d-4869-9973-7bf90da21ab4,LIST_ACCOUNTS,xs2aListAccounts,true -38921,ae9048ac-7a5d-4869-9973-7bf90da21ab4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38921,ae9048ac-7a5d-4869-9973-7bf90da21ab4,LIST_TRANSACTIONS,xs2aListTransactions,true 38922,ae9048ac-7a5d-4869-9973-7bf90da21ab4,AUTHORIZATION,,true 38923,ae9048ac-7a5d-4869-9973-7bf90da21ab4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38924,ae9048ac-7a5d-4869-9973-7bf90da21ab4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38925,ae9048ac-7a5d-4869-9973-7bf90da21ab4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38926,847d7c63-04cc-417b-b823-d5c5650ed2aa,LIST_ACCOUNTS,hbciListAccounts,false -38927,847d7c63-04cc-417b-b823-d5c5650ed2aa,LIST_TRANSACTIONS,hbciListTransactions,false -38928,847d7c63-04cc-417b-b823-d5c5650ed2aa,AUTHORIZATION,,false -38929,847d7c63-04cc-417b-b823-d5c5650ed2aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38930,847d7c63-04cc-417b-b823-d5c5650ed2aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38931,847d7c63-04cc-417b-b823-d5c5650ed2aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38926,919bcb4a-702a-400e-8ac8-702d8fb85a9a,LIST_ACCOUNTS,hbciListAccounts,false +38927,919bcb4a-702a-400e-8ac8-702d8fb85a9a,LIST_TRANSACTIONS,hbciListTransactions,false +38928,919bcb4a-702a-400e-8ac8-702d8fb85a9a,AUTHORIZATION,,false +38929,919bcb4a-702a-400e-8ac8-702d8fb85a9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38930,919bcb4a-702a-400e-8ac8-702d8fb85a9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38931,919bcb4a-702a-400e-8ac8-702d8fb85a9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38932,cc49741f-dcf2-47a7-abfe-38e3a19e6981,LIST_ACCOUNTS,xs2aListAccounts,true -38933,cc49741f-dcf2-47a7-abfe-38e3a19e6981,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38933,cc49741f-dcf2-47a7-abfe-38e3a19e6981,LIST_TRANSACTIONS,xs2aListTransactions,true 38934,cc49741f-dcf2-47a7-abfe-38e3a19e6981,AUTHORIZATION,,true 38935,cc49741f-dcf2-47a7-abfe-38e3a19e6981,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38936,cc49741f-dcf2-47a7-abfe-38e3a19e6981,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38937,cc49741f-dcf2-47a7-abfe-38e3a19e6981,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38938,de39dcaa-fe35-4683-8d14-254930a0b0f3,LIST_ACCOUNTS,hbciListAccounts,false -38939,de39dcaa-fe35-4683-8d14-254930a0b0f3,LIST_TRANSACTIONS,hbciListTransactions,false -38940,de39dcaa-fe35-4683-8d14-254930a0b0f3,AUTHORIZATION,,false -38941,de39dcaa-fe35-4683-8d14-254930a0b0f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38942,de39dcaa-fe35-4683-8d14-254930a0b0f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38943,de39dcaa-fe35-4683-8d14-254930a0b0f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38938,8c76ffcc-e065-472d-9ad0-c2ebc5d20a12,LIST_ACCOUNTS,hbciListAccounts,false +38939,8c76ffcc-e065-472d-9ad0-c2ebc5d20a12,LIST_TRANSACTIONS,hbciListTransactions,false +38940,8c76ffcc-e065-472d-9ad0-c2ebc5d20a12,AUTHORIZATION,,false +38941,8c76ffcc-e065-472d-9ad0-c2ebc5d20a12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38942,8c76ffcc-e065-472d-9ad0-c2ebc5d20a12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38943,8c76ffcc-e065-472d-9ad0-c2ebc5d20a12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38944,f4cd5f5d-7f95-49f9-838d-37c670ea82e7,LIST_ACCOUNTS,xs2aListAccounts,true -38945,f4cd5f5d-7f95-49f9-838d-37c670ea82e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38945,f4cd5f5d-7f95-49f9-838d-37c670ea82e7,LIST_TRANSACTIONS,xs2aListTransactions,true 38946,f4cd5f5d-7f95-49f9-838d-37c670ea82e7,AUTHORIZATION,,true 38947,f4cd5f5d-7f95-49f9-838d-37c670ea82e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38948,f4cd5f5d-7f95-49f9-838d-37c670ea82e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38949,f4cd5f5d-7f95-49f9-838d-37c670ea82e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38950,e798c4a4-7598-4530-a6e9-093230be0c06,LIST_ACCOUNTS,hbciListAccounts,false -38951,e798c4a4-7598-4530-a6e9-093230be0c06,LIST_TRANSACTIONS,hbciListTransactions,false -38952,e798c4a4-7598-4530-a6e9-093230be0c06,AUTHORIZATION,,false -38953,e798c4a4-7598-4530-a6e9-093230be0c06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38954,e798c4a4-7598-4530-a6e9-093230be0c06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38955,e798c4a4-7598-4530-a6e9-093230be0c06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38950,1fcf8840-9654-4e80-9d48-04c7962109d1,LIST_ACCOUNTS,hbciListAccounts,false +38951,1fcf8840-9654-4e80-9d48-04c7962109d1,LIST_TRANSACTIONS,hbciListTransactions,false +38952,1fcf8840-9654-4e80-9d48-04c7962109d1,AUTHORIZATION,,false +38953,1fcf8840-9654-4e80-9d48-04c7962109d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38954,1fcf8840-9654-4e80-9d48-04c7962109d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38955,1fcf8840-9654-4e80-9d48-04c7962109d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38956,c131de10-0fb9-45ad-bf57-0d17d59386ca,LIST_ACCOUNTS,xs2aListAccounts,true -38957,c131de10-0fb9-45ad-bf57-0d17d59386ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38957,c131de10-0fb9-45ad-bf57-0d17d59386ca,LIST_TRANSACTIONS,xs2aListTransactions,true 38958,c131de10-0fb9-45ad-bf57-0d17d59386ca,AUTHORIZATION,,true 38959,c131de10-0fb9-45ad-bf57-0d17d59386ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38960,c131de10-0fb9-45ad-bf57-0d17d59386ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38961,c131de10-0fb9-45ad-bf57-0d17d59386ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38962,5e7ff442-2230-440b-9cd6-5af7d86140b6,LIST_ACCOUNTS,hbciListAccounts,false -38963,5e7ff442-2230-440b-9cd6-5af7d86140b6,LIST_TRANSACTIONS,hbciListTransactions,false -38964,5e7ff442-2230-440b-9cd6-5af7d86140b6,AUTHORIZATION,,false -38965,5e7ff442-2230-440b-9cd6-5af7d86140b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38966,5e7ff442-2230-440b-9cd6-5af7d86140b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38967,5e7ff442-2230-440b-9cd6-5af7d86140b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38962,3dbe515f-d71d-44ec-b176-b320f9054f1a,LIST_ACCOUNTS,hbciListAccounts,false +38963,3dbe515f-d71d-44ec-b176-b320f9054f1a,LIST_TRANSACTIONS,hbciListTransactions,false +38964,3dbe515f-d71d-44ec-b176-b320f9054f1a,AUTHORIZATION,,false +38965,3dbe515f-d71d-44ec-b176-b320f9054f1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38966,3dbe515f-d71d-44ec-b176-b320f9054f1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38967,3dbe515f-d71d-44ec-b176-b320f9054f1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38968,4de360c2-fe83-4275-b6f9-ba3a42134bbf,LIST_ACCOUNTS,xs2aListAccounts,true -38969,4de360c2-fe83-4275-b6f9-ba3a42134bbf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38969,4de360c2-fe83-4275-b6f9-ba3a42134bbf,LIST_TRANSACTIONS,xs2aListTransactions,true 38970,4de360c2-fe83-4275-b6f9-ba3a42134bbf,AUTHORIZATION,,true 38971,4de360c2-fe83-4275-b6f9-ba3a42134bbf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38972,4de360c2-fe83-4275-b6f9-ba3a42134bbf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38973,4de360c2-fe83-4275-b6f9-ba3a42134bbf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38974,844f8219-f473-4964-b54f-9b8721afaf76,LIST_ACCOUNTS,hbciListAccounts,false -38975,844f8219-f473-4964-b54f-9b8721afaf76,LIST_TRANSACTIONS,hbciListTransactions,false -38976,844f8219-f473-4964-b54f-9b8721afaf76,AUTHORIZATION,,false -38977,844f8219-f473-4964-b54f-9b8721afaf76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38978,844f8219-f473-4964-b54f-9b8721afaf76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38979,844f8219-f473-4964-b54f-9b8721afaf76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38974,83df00ea-9434-4421-9d65-758022c2a47d,LIST_ACCOUNTS,hbciListAccounts,false +38975,83df00ea-9434-4421-9d65-758022c2a47d,LIST_TRANSACTIONS,hbciListTransactions,false +38976,83df00ea-9434-4421-9d65-758022c2a47d,AUTHORIZATION,,false +38977,83df00ea-9434-4421-9d65-758022c2a47d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38978,83df00ea-9434-4421-9d65-758022c2a47d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38979,83df00ea-9434-4421-9d65-758022c2a47d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38980,f6c6004f-0efb-4c69-a5c2-ff7e553c04d5,LIST_ACCOUNTS,xs2aListAccounts,true -38981,f6c6004f-0efb-4c69-a5c2-ff7e553c04d5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38981,f6c6004f-0efb-4c69-a5c2-ff7e553c04d5,LIST_TRANSACTIONS,xs2aListTransactions,true 38982,f6c6004f-0efb-4c69-a5c2-ff7e553c04d5,AUTHORIZATION,,true 38983,f6c6004f-0efb-4c69-a5c2-ff7e553c04d5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38984,f6c6004f-0efb-4c69-a5c2-ff7e553c04d5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38985,f6c6004f-0efb-4c69-a5c2-ff7e553c04d5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38986,9274b494-e0ac-4566-89aa-ed69fdb63ef9,LIST_ACCOUNTS,hbciListAccounts,false -38987,9274b494-e0ac-4566-89aa-ed69fdb63ef9,LIST_TRANSACTIONS,hbciListTransactions,false -38988,9274b494-e0ac-4566-89aa-ed69fdb63ef9,AUTHORIZATION,,false -38989,9274b494-e0ac-4566-89aa-ed69fdb63ef9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -38990,9274b494-e0ac-4566-89aa-ed69fdb63ef9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -38991,9274b494-e0ac-4566-89aa-ed69fdb63ef9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38986,ced809ad-432b-4fbc-a5aa-cd2df6860b7a,LIST_ACCOUNTS,hbciListAccounts,false +38987,ced809ad-432b-4fbc-a5aa-cd2df6860b7a,LIST_TRANSACTIONS,hbciListTransactions,false +38988,ced809ad-432b-4fbc-a5aa-cd2df6860b7a,AUTHORIZATION,,false +38989,ced809ad-432b-4fbc-a5aa-cd2df6860b7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +38990,ced809ad-432b-4fbc-a5aa-cd2df6860b7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +38991,ced809ad-432b-4fbc-a5aa-cd2df6860b7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 38992,46d35a4e-149e-46cf-88d2-314405b1cf29,LIST_ACCOUNTS,xs2aListAccounts,true -38993,46d35a4e-149e-46cf-88d2-314405b1cf29,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +38993,46d35a4e-149e-46cf-88d2-314405b1cf29,LIST_TRANSACTIONS,xs2aListTransactions,true 38994,46d35a4e-149e-46cf-88d2-314405b1cf29,AUTHORIZATION,,true 38995,46d35a4e-149e-46cf-88d2-314405b1cf29,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 38996,46d35a4e-149e-46cf-88d2-314405b1cf29,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 38997,46d35a4e-149e-46cf-88d2-314405b1cf29,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -38998,1036ad21-4a4d-4718-9c9a-c261e72f19b3,LIST_ACCOUNTS,hbciListAccounts,false -38999,1036ad21-4a4d-4718-9c9a-c261e72f19b3,LIST_TRANSACTIONS,hbciListTransactions,false -39000,1036ad21-4a4d-4718-9c9a-c261e72f19b3,AUTHORIZATION,,false -39001,1036ad21-4a4d-4718-9c9a-c261e72f19b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39002,1036ad21-4a4d-4718-9c9a-c261e72f19b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39003,1036ad21-4a4d-4718-9c9a-c261e72f19b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +38998,0097393e-c72e-473a-ba67-9fd37f218a5b,LIST_ACCOUNTS,hbciListAccounts,false +38999,0097393e-c72e-473a-ba67-9fd37f218a5b,LIST_TRANSACTIONS,hbciListTransactions,false +39000,0097393e-c72e-473a-ba67-9fd37f218a5b,AUTHORIZATION,,false +39001,0097393e-c72e-473a-ba67-9fd37f218a5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39002,0097393e-c72e-473a-ba67-9fd37f218a5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39003,0097393e-c72e-473a-ba67-9fd37f218a5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39004,19274795-cc55-47bc-878c-3f0ca4fa1993,LIST_ACCOUNTS,xs2aListAccounts,true -39005,19274795-cc55-47bc-878c-3f0ca4fa1993,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39005,19274795-cc55-47bc-878c-3f0ca4fa1993,LIST_TRANSACTIONS,xs2aListTransactions,true 39006,19274795-cc55-47bc-878c-3f0ca4fa1993,AUTHORIZATION,,true 39007,19274795-cc55-47bc-878c-3f0ca4fa1993,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39008,19274795-cc55-47bc-878c-3f0ca4fa1993,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39009,19274795-cc55-47bc-878c-3f0ca4fa1993,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39010,966f8c04-83d5-430e-8211-e952bd815896,LIST_ACCOUNTS,hbciListAccounts,false -39011,966f8c04-83d5-430e-8211-e952bd815896,LIST_TRANSACTIONS,hbciListTransactions,false -39012,966f8c04-83d5-430e-8211-e952bd815896,AUTHORIZATION,,false -39013,966f8c04-83d5-430e-8211-e952bd815896,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39014,966f8c04-83d5-430e-8211-e952bd815896,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39015,966f8c04-83d5-430e-8211-e952bd815896,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39010,e6bbb8d6-09d3-4109-8655-0f9dbf7ad745,LIST_ACCOUNTS,hbciListAccounts,false +39011,e6bbb8d6-09d3-4109-8655-0f9dbf7ad745,LIST_TRANSACTIONS,hbciListTransactions,false +39012,e6bbb8d6-09d3-4109-8655-0f9dbf7ad745,AUTHORIZATION,,false +39013,e6bbb8d6-09d3-4109-8655-0f9dbf7ad745,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39014,e6bbb8d6-09d3-4109-8655-0f9dbf7ad745,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39015,e6bbb8d6-09d3-4109-8655-0f9dbf7ad745,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39016,83bc6e32-67b5-4ce6-93e9-d50c34eedca1,LIST_ACCOUNTS,xs2aListAccounts,true -39017,83bc6e32-67b5-4ce6-93e9-d50c34eedca1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39017,83bc6e32-67b5-4ce6-93e9-d50c34eedca1,LIST_TRANSACTIONS,xs2aListTransactions,true 39018,83bc6e32-67b5-4ce6-93e9-d50c34eedca1,AUTHORIZATION,,true 39019,83bc6e32-67b5-4ce6-93e9-d50c34eedca1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39020,83bc6e32-67b5-4ce6-93e9-d50c34eedca1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39021,83bc6e32-67b5-4ce6-93e9-d50c34eedca1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39022,2136ebdd-d2d3-4e38-ab15-d089d7d33f05,LIST_ACCOUNTS,hbciListAccounts,false -39023,2136ebdd-d2d3-4e38-ab15-d089d7d33f05,LIST_TRANSACTIONS,hbciListTransactions,false -39024,2136ebdd-d2d3-4e38-ab15-d089d7d33f05,AUTHORIZATION,,false -39025,2136ebdd-d2d3-4e38-ab15-d089d7d33f05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39026,2136ebdd-d2d3-4e38-ab15-d089d7d33f05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39027,2136ebdd-d2d3-4e38-ab15-d089d7d33f05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39022,476ab25e-033c-4e22-9b91-b3cdcf393873,LIST_ACCOUNTS,hbciListAccounts,false +39023,476ab25e-033c-4e22-9b91-b3cdcf393873,LIST_TRANSACTIONS,hbciListTransactions,false +39024,476ab25e-033c-4e22-9b91-b3cdcf393873,AUTHORIZATION,,false +39025,476ab25e-033c-4e22-9b91-b3cdcf393873,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39026,476ab25e-033c-4e22-9b91-b3cdcf393873,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39027,476ab25e-033c-4e22-9b91-b3cdcf393873,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39028,d10ed235-36c8-45bc-9161-781f4f460d57,LIST_ACCOUNTS,xs2aListAccounts,true -39029,d10ed235-36c8-45bc-9161-781f4f460d57,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39029,d10ed235-36c8-45bc-9161-781f4f460d57,LIST_TRANSACTIONS,xs2aListTransactions,true 39030,d10ed235-36c8-45bc-9161-781f4f460d57,AUTHORIZATION,,true 39031,d10ed235-36c8-45bc-9161-781f4f460d57,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39032,d10ed235-36c8-45bc-9161-781f4f460d57,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39033,d10ed235-36c8-45bc-9161-781f4f460d57,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39034,98548136-c0c3-4243-9ef3-dd42bc5d58af,LIST_ACCOUNTS,hbciListAccounts,false -39035,98548136-c0c3-4243-9ef3-dd42bc5d58af,LIST_TRANSACTIONS,hbciListTransactions,false -39036,98548136-c0c3-4243-9ef3-dd42bc5d58af,AUTHORIZATION,,false -39037,98548136-c0c3-4243-9ef3-dd42bc5d58af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39038,98548136-c0c3-4243-9ef3-dd42bc5d58af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39039,98548136-c0c3-4243-9ef3-dd42bc5d58af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39034,abcf6fba-6d38-4921-9a0d-8bcd4a49383a,LIST_ACCOUNTS,hbciListAccounts,false +39035,abcf6fba-6d38-4921-9a0d-8bcd4a49383a,LIST_TRANSACTIONS,hbciListTransactions,false +39036,abcf6fba-6d38-4921-9a0d-8bcd4a49383a,AUTHORIZATION,,false +39037,abcf6fba-6d38-4921-9a0d-8bcd4a49383a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39038,abcf6fba-6d38-4921-9a0d-8bcd4a49383a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39039,abcf6fba-6d38-4921-9a0d-8bcd4a49383a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39040,73d8ff41-55b4-44ee-bf49-75f44a3a520f,LIST_ACCOUNTS,xs2aListAccounts,true -39041,73d8ff41-55b4-44ee-bf49-75f44a3a520f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39041,73d8ff41-55b4-44ee-bf49-75f44a3a520f,LIST_TRANSACTIONS,xs2aListTransactions,true 39042,73d8ff41-55b4-44ee-bf49-75f44a3a520f,AUTHORIZATION,,true 39043,73d8ff41-55b4-44ee-bf49-75f44a3a520f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39044,73d8ff41-55b4-44ee-bf49-75f44a3a520f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39045,73d8ff41-55b4-44ee-bf49-75f44a3a520f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39046,f8cfd663-d76d-48bf-91f0-69e1fc69263e,LIST_ACCOUNTS,hbciListAccounts,false -39047,f8cfd663-d76d-48bf-91f0-69e1fc69263e,LIST_TRANSACTIONS,hbciListTransactions,false -39048,f8cfd663-d76d-48bf-91f0-69e1fc69263e,AUTHORIZATION,,false -39049,f8cfd663-d76d-48bf-91f0-69e1fc69263e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39050,f8cfd663-d76d-48bf-91f0-69e1fc69263e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39051,f8cfd663-d76d-48bf-91f0-69e1fc69263e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39046,0369d55f-3842-4537-9691-29668dcfc913,LIST_ACCOUNTS,hbciListAccounts,false +39047,0369d55f-3842-4537-9691-29668dcfc913,LIST_TRANSACTIONS,hbciListTransactions,false +39048,0369d55f-3842-4537-9691-29668dcfc913,AUTHORIZATION,,false +39049,0369d55f-3842-4537-9691-29668dcfc913,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39050,0369d55f-3842-4537-9691-29668dcfc913,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39051,0369d55f-3842-4537-9691-29668dcfc913,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39052,6f83eef2-87c7-4095-bc26-a8906aa61a21,LIST_ACCOUNTS,xs2aListAccounts,true -39053,6f83eef2-87c7-4095-bc26-a8906aa61a21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39053,6f83eef2-87c7-4095-bc26-a8906aa61a21,LIST_TRANSACTIONS,xs2aListTransactions,true 39054,6f83eef2-87c7-4095-bc26-a8906aa61a21,AUTHORIZATION,,true 39055,6f83eef2-87c7-4095-bc26-a8906aa61a21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39056,6f83eef2-87c7-4095-bc26-a8906aa61a21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39057,6f83eef2-87c7-4095-bc26-a8906aa61a21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39058,951be82e-792a-4cc3-8499-a48ba7273895,LIST_ACCOUNTS,hbciListAccounts,false -39059,951be82e-792a-4cc3-8499-a48ba7273895,LIST_TRANSACTIONS,hbciListTransactions,false -39060,951be82e-792a-4cc3-8499-a48ba7273895,AUTHORIZATION,,false -39061,951be82e-792a-4cc3-8499-a48ba7273895,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39062,951be82e-792a-4cc3-8499-a48ba7273895,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39063,951be82e-792a-4cc3-8499-a48ba7273895,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39058,17767141-b3a4-407e-b65c-1e3387284404,LIST_ACCOUNTS,hbciListAccounts,false +39059,17767141-b3a4-407e-b65c-1e3387284404,LIST_TRANSACTIONS,hbciListTransactions,false +39060,17767141-b3a4-407e-b65c-1e3387284404,AUTHORIZATION,,false +39061,17767141-b3a4-407e-b65c-1e3387284404,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39062,17767141-b3a4-407e-b65c-1e3387284404,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39063,17767141-b3a4-407e-b65c-1e3387284404,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39064,58f12527-59e8-48ac-bb63-5508bb99c7b3,LIST_ACCOUNTS,xs2aListAccounts,true -39065,58f12527-59e8-48ac-bb63-5508bb99c7b3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39065,58f12527-59e8-48ac-bb63-5508bb99c7b3,LIST_TRANSACTIONS,xs2aListTransactions,true 39066,58f12527-59e8-48ac-bb63-5508bb99c7b3,AUTHORIZATION,,true 39067,58f12527-59e8-48ac-bb63-5508bb99c7b3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39068,58f12527-59e8-48ac-bb63-5508bb99c7b3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39069,58f12527-59e8-48ac-bb63-5508bb99c7b3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39070,86849581-1c8c-4c0b-8487-285a92a67d2c,LIST_ACCOUNTS,hbciListAccounts,false -39071,86849581-1c8c-4c0b-8487-285a92a67d2c,LIST_TRANSACTIONS,hbciListTransactions,false -39072,86849581-1c8c-4c0b-8487-285a92a67d2c,AUTHORIZATION,,false -39073,86849581-1c8c-4c0b-8487-285a92a67d2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39074,86849581-1c8c-4c0b-8487-285a92a67d2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39075,86849581-1c8c-4c0b-8487-285a92a67d2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39070,1e80138f-31fd-43bc-a690-771153d592d1,LIST_ACCOUNTS,hbciListAccounts,false +39071,1e80138f-31fd-43bc-a690-771153d592d1,LIST_TRANSACTIONS,hbciListTransactions,false +39072,1e80138f-31fd-43bc-a690-771153d592d1,AUTHORIZATION,,false +39073,1e80138f-31fd-43bc-a690-771153d592d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39074,1e80138f-31fd-43bc-a690-771153d592d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39075,1e80138f-31fd-43bc-a690-771153d592d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39076,61d5b9ea-0c66-4d2a-8487-c40c5b9c9761,LIST_ACCOUNTS,xs2aListAccounts,true -39077,61d5b9ea-0c66-4d2a-8487-c40c5b9c9761,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39077,61d5b9ea-0c66-4d2a-8487-c40c5b9c9761,LIST_TRANSACTIONS,xs2aListTransactions,true 39078,61d5b9ea-0c66-4d2a-8487-c40c5b9c9761,AUTHORIZATION,,true 39079,61d5b9ea-0c66-4d2a-8487-c40c5b9c9761,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39080,61d5b9ea-0c66-4d2a-8487-c40c5b9c9761,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39081,61d5b9ea-0c66-4d2a-8487-c40c5b9c9761,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39082,6fcd7e50-dfb5-4c01-bd56-57d59e1cf66b,LIST_ACCOUNTS,hbciListAccounts,false -39083,6fcd7e50-dfb5-4c01-bd56-57d59e1cf66b,LIST_TRANSACTIONS,hbciListTransactions,false -39084,6fcd7e50-dfb5-4c01-bd56-57d59e1cf66b,AUTHORIZATION,,false -39085,6fcd7e50-dfb5-4c01-bd56-57d59e1cf66b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39086,6fcd7e50-dfb5-4c01-bd56-57d59e1cf66b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39087,6fcd7e50-dfb5-4c01-bd56-57d59e1cf66b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39082,5fa7175c-8759-4fdb-9cb0-e58a3ed69974,LIST_ACCOUNTS,hbciListAccounts,false +39083,5fa7175c-8759-4fdb-9cb0-e58a3ed69974,LIST_TRANSACTIONS,hbciListTransactions,false +39084,5fa7175c-8759-4fdb-9cb0-e58a3ed69974,AUTHORIZATION,,false +39085,5fa7175c-8759-4fdb-9cb0-e58a3ed69974,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39086,5fa7175c-8759-4fdb-9cb0-e58a3ed69974,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39087,5fa7175c-8759-4fdb-9cb0-e58a3ed69974,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39088,b29d0e85-e063-4d86-94d8-dc305bdff675,LIST_ACCOUNTS,xs2aListAccounts,true -39089,b29d0e85-e063-4d86-94d8-dc305bdff675,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39089,b29d0e85-e063-4d86-94d8-dc305bdff675,LIST_TRANSACTIONS,xs2aListTransactions,true 39090,b29d0e85-e063-4d86-94d8-dc305bdff675,AUTHORIZATION,,true 39091,b29d0e85-e063-4d86-94d8-dc305bdff675,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39092,b29d0e85-e063-4d86-94d8-dc305bdff675,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39093,b29d0e85-e063-4d86-94d8-dc305bdff675,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39094,01a15236-8afa-4f27-b692-b69d0f231e2d,LIST_ACCOUNTS,hbciListAccounts,false -39095,01a15236-8afa-4f27-b692-b69d0f231e2d,LIST_TRANSACTIONS,hbciListTransactions,false -39096,01a15236-8afa-4f27-b692-b69d0f231e2d,AUTHORIZATION,,false -39097,01a15236-8afa-4f27-b692-b69d0f231e2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39098,01a15236-8afa-4f27-b692-b69d0f231e2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39099,01a15236-8afa-4f27-b692-b69d0f231e2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39094,52d88987-3913-408d-906d-c8a973df4482,LIST_ACCOUNTS,hbciListAccounts,false +39095,52d88987-3913-408d-906d-c8a973df4482,LIST_TRANSACTIONS,hbciListTransactions,false +39096,52d88987-3913-408d-906d-c8a973df4482,AUTHORIZATION,,false +39097,52d88987-3913-408d-906d-c8a973df4482,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39098,52d88987-3913-408d-906d-c8a973df4482,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39099,52d88987-3913-408d-906d-c8a973df4482,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39100,2f567326-7ae2-44f6-ac82-2e5bd9f26140,LIST_ACCOUNTS,xs2aListAccounts,true -39101,2f567326-7ae2-44f6-ac82-2e5bd9f26140,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39101,2f567326-7ae2-44f6-ac82-2e5bd9f26140,LIST_TRANSACTIONS,xs2aListTransactions,true 39102,2f567326-7ae2-44f6-ac82-2e5bd9f26140,AUTHORIZATION,,true 39103,2f567326-7ae2-44f6-ac82-2e5bd9f26140,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39104,2f567326-7ae2-44f6-ac82-2e5bd9f26140,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39105,2f567326-7ae2-44f6-ac82-2e5bd9f26140,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39106,7ddc9bf9-a781-4c2c-8ff6-c95e30f1a4ef,LIST_ACCOUNTS,hbciListAccounts,false -39107,7ddc9bf9-a781-4c2c-8ff6-c95e30f1a4ef,LIST_TRANSACTIONS,hbciListTransactions,false -39108,7ddc9bf9-a781-4c2c-8ff6-c95e30f1a4ef,AUTHORIZATION,,false -39109,7ddc9bf9-a781-4c2c-8ff6-c95e30f1a4ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39110,7ddc9bf9-a781-4c2c-8ff6-c95e30f1a4ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39111,7ddc9bf9-a781-4c2c-8ff6-c95e30f1a4ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39106,fef68196-1b4d-40cb-b844-a0fa7ea2bd35,LIST_ACCOUNTS,hbciListAccounts,false +39107,fef68196-1b4d-40cb-b844-a0fa7ea2bd35,LIST_TRANSACTIONS,hbciListTransactions,false +39108,fef68196-1b4d-40cb-b844-a0fa7ea2bd35,AUTHORIZATION,,false +39109,fef68196-1b4d-40cb-b844-a0fa7ea2bd35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39110,fef68196-1b4d-40cb-b844-a0fa7ea2bd35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39111,fef68196-1b4d-40cb-b844-a0fa7ea2bd35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39112,42d1bacb-cffa-4dc8-9051-a893e4e9f07a,LIST_ACCOUNTS,xs2aListAccounts,true -39113,42d1bacb-cffa-4dc8-9051-a893e4e9f07a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39113,42d1bacb-cffa-4dc8-9051-a893e4e9f07a,LIST_TRANSACTIONS,xs2aListTransactions,true 39114,42d1bacb-cffa-4dc8-9051-a893e4e9f07a,AUTHORIZATION,,true 39115,42d1bacb-cffa-4dc8-9051-a893e4e9f07a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39116,42d1bacb-cffa-4dc8-9051-a893e4e9f07a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39117,42d1bacb-cffa-4dc8-9051-a893e4e9f07a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39118,7191fc6d-b7db-4e18-8616-e739ee071538,LIST_ACCOUNTS,hbciListAccounts,false -39119,7191fc6d-b7db-4e18-8616-e739ee071538,LIST_TRANSACTIONS,hbciListTransactions,false -39120,7191fc6d-b7db-4e18-8616-e739ee071538,AUTHORIZATION,,false -39121,7191fc6d-b7db-4e18-8616-e739ee071538,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39122,7191fc6d-b7db-4e18-8616-e739ee071538,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39123,7191fc6d-b7db-4e18-8616-e739ee071538,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39118,eda961dc-e63d-4dfa-8ac8-7bbe8f439799,LIST_ACCOUNTS,hbciListAccounts,false +39119,eda961dc-e63d-4dfa-8ac8-7bbe8f439799,LIST_TRANSACTIONS,hbciListTransactions,false +39120,eda961dc-e63d-4dfa-8ac8-7bbe8f439799,AUTHORIZATION,,false +39121,eda961dc-e63d-4dfa-8ac8-7bbe8f439799,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39122,eda961dc-e63d-4dfa-8ac8-7bbe8f439799,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39123,eda961dc-e63d-4dfa-8ac8-7bbe8f439799,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39124,24e52d19-2cbd-464b-b1a3-e2fd7bfdc0b6,LIST_ACCOUNTS,xs2aListAccounts,true -39125,24e52d19-2cbd-464b-b1a3-e2fd7bfdc0b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39125,24e52d19-2cbd-464b-b1a3-e2fd7bfdc0b6,LIST_TRANSACTIONS,xs2aListTransactions,true 39126,24e52d19-2cbd-464b-b1a3-e2fd7bfdc0b6,AUTHORIZATION,,true 39127,24e52d19-2cbd-464b-b1a3-e2fd7bfdc0b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39128,24e52d19-2cbd-464b-b1a3-e2fd7bfdc0b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39129,24e52d19-2cbd-464b-b1a3-e2fd7bfdc0b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39130,b7813cb7-87e6-4b48-82a3-ff79909801df,LIST_ACCOUNTS,hbciListAccounts,false -39131,b7813cb7-87e6-4b48-82a3-ff79909801df,LIST_TRANSACTIONS,hbciListTransactions,false -39132,b7813cb7-87e6-4b48-82a3-ff79909801df,AUTHORIZATION,,false -39133,b7813cb7-87e6-4b48-82a3-ff79909801df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39134,b7813cb7-87e6-4b48-82a3-ff79909801df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39135,b7813cb7-87e6-4b48-82a3-ff79909801df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39130,204dddc5-2d38-4262-b739-bb85c3de46de,LIST_ACCOUNTS,hbciListAccounts,false +39131,204dddc5-2d38-4262-b739-bb85c3de46de,LIST_TRANSACTIONS,hbciListTransactions,false +39132,204dddc5-2d38-4262-b739-bb85c3de46de,AUTHORIZATION,,false +39133,204dddc5-2d38-4262-b739-bb85c3de46de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39134,204dddc5-2d38-4262-b739-bb85c3de46de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39135,204dddc5-2d38-4262-b739-bb85c3de46de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39136,1180c3c9-ee38-4f91-b782-e906e36f665e,LIST_ACCOUNTS,xs2aListAccounts,true -39137,1180c3c9-ee38-4f91-b782-e906e36f665e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39137,1180c3c9-ee38-4f91-b782-e906e36f665e,LIST_TRANSACTIONS,xs2aListTransactions,true 39138,1180c3c9-ee38-4f91-b782-e906e36f665e,AUTHORIZATION,,true 39139,1180c3c9-ee38-4f91-b782-e906e36f665e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39140,1180c3c9-ee38-4f91-b782-e906e36f665e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39141,1180c3c9-ee38-4f91-b782-e906e36f665e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39142,86b5058a-6340-4755-b663-4a0aa6a7cfb7,LIST_ACCOUNTS,hbciListAccounts,false -39143,86b5058a-6340-4755-b663-4a0aa6a7cfb7,LIST_TRANSACTIONS,hbciListTransactions,false -39144,86b5058a-6340-4755-b663-4a0aa6a7cfb7,AUTHORIZATION,,false -39145,86b5058a-6340-4755-b663-4a0aa6a7cfb7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39146,86b5058a-6340-4755-b663-4a0aa6a7cfb7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39147,86b5058a-6340-4755-b663-4a0aa6a7cfb7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39142,0429ed77-b799-4c63-b5d2-8117e6a90ce5,LIST_ACCOUNTS,hbciListAccounts,false +39143,0429ed77-b799-4c63-b5d2-8117e6a90ce5,LIST_TRANSACTIONS,hbciListTransactions,false +39144,0429ed77-b799-4c63-b5d2-8117e6a90ce5,AUTHORIZATION,,false +39145,0429ed77-b799-4c63-b5d2-8117e6a90ce5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39146,0429ed77-b799-4c63-b5d2-8117e6a90ce5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39147,0429ed77-b799-4c63-b5d2-8117e6a90ce5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39148,62c84d37-99c5-4d7c-951e-0789208e3649,LIST_ACCOUNTS,xs2aListAccounts,true -39149,62c84d37-99c5-4d7c-951e-0789208e3649,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39149,62c84d37-99c5-4d7c-951e-0789208e3649,LIST_TRANSACTIONS,xs2aListTransactions,true 39150,62c84d37-99c5-4d7c-951e-0789208e3649,AUTHORIZATION,,true 39151,62c84d37-99c5-4d7c-951e-0789208e3649,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39152,62c84d37-99c5-4d7c-951e-0789208e3649,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39153,62c84d37-99c5-4d7c-951e-0789208e3649,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39154,d4d6fce3-3cd7-4590-8a31-a378a2782b61,LIST_ACCOUNTS,hbciListAccounts,false -39155,d4d6fce3-3cd7-4590-8a31-a378a2782b61,LIST_TRANSACTIONS,hbciListTransactions,false -39156,d4d6fce3-3cd7-4590-8a31-a378a2782b61,AUTHORIZATION,,false -39157,d4d6fce3-3cd7-4590-8a31-a378a2782b61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39158,d4d6fce3-3cd7-4590-8a31-a378a2782b61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39159,d4d6fce3-3cd7-4590-8a31-a378a2782b61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39154,7fa59a97-8bb5-4404-a7b5-70a23c3b1f61,LIST_ACCOUNTS,hbciListAccounts,false +39155,7fa59a97-8bb5-4404-a7b5-70a23c3b1f61,LIST_TRANSACTIONS,hbciListTransactions,false +39156,7fa59a97-8bb5-4404-a7b5-70a23c3b1f61,AUTHORIZATION,,false +39157,7fa59a97-8bb5-4404-a7b5-70a23c3b1f61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39158,7fa59a97-8bb5-4404-a7b5-70a23c3b1f61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39159,7fa59a97-8bb5-4404-a7b5-70a23c3b1f61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39160,10fe9ff4-0143-4773-9f4f-9e2ed4263bd4,LIST_ACCOUNTS,xs2aListAccounts,true -39161,10fe9ff4-0143-4773-9f4f-9e2ed4263bd4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39161,10fe9ff4-0143-4773-9f4f-9e2ed4263bd4,LIST_TRANSACTIONS,xs2aListTransactions,true 39162,10fe9ff4-0143-4773-9f4f-9e2ed4263bd4,AUTHORIZATION,,true 39163,10fe9ff4-0143-4773-9f4f-9e2ed4263bd4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39164,10fe9ff4-0143-4773-9f4f-9e2ed4263bd4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39165,10fe9ff4-0143-4773-9f4f-9e2ed4263bd4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39166,24bb3232-2bb6-41ad-908c-63d21e859f73,LIST_ACCOUNTS,hbciListAccounts,false -39167,24bb3232-2bb6-41ad-908c-63d21e859f73,LIST_TRANSACTIONS,hbciListTransactions,false -39168,24bb3232-2bb6-41ad-908c-63d21e859f73,AUTHORIZATION,,false -39169,24bb3232-2bb6-41ad-908c-63d21e859f73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39170,24bb3232-2bb6-41ad-908c-63d21e859f73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39171,24bb3232-2bb6-41ad-908c-63d21e859f73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39166,bcd5ef8c-c633-44b7-9212-30b45da2dee5,LIST_ACCOUNTS,hbciListAccounts,false +39167,bcd5ef8c-c633-44b7-9212-30b45da2dee5,LIST_TRANSACTIONS,hbciListTransactions,false +39168,bcd5ef8c-c633-44b7-9212-30b45da2dee5,AUTHORIZATION,,false +39169,bcd5ef8c-c633-44b7-9212-30b45da2dee5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39170,bcd5ef8c-c633-44b7-9212-30b45da2dee5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39171,bcd5ef8c-c633-44b7-9212-30b45da2dee5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39172,f6ed547a-59b2-413e-beab-bc33001842a2,LIST_ACCOUNTS,xs2aListAccounts,true -39173,f6ed547a-59b2-413e-beab-bc33001842a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39173,f6ed547a-59b2-413e-beab-bc33001842a2,LIST_TRANSACTIONS,xs2aListTransactions,true 39174,f6ed547a-59b2-413e-beab-bc33001842a2,AUTHORIZATION,,true 39175,f6ed547a-59b2-413e-beab-bc33001842a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39176,f6ed547a-59b2-413e-beab-bc33001842a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39177,f6ed547a-59b2-413e-beab-bc33001842a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39178,1c2ad660-411c-4ed0-8a87-177541122bcd,LIST_ACCOUNTS,hbciListAccounts,false -39179,1c2ad660-411c-4ed0-8a87-177541122bcd,LIST_TRANSACTIONS,hbciListTransactions,false -39180,1c2ad660-411c-4ed0-8a87-177541122bcd,AUTHORIZATION,,false -39181,1c2ad660-411c-4ed0-8a87-177541122bcd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39182,1c2ad660-411c-4ed0-8a87-177541122bcd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39183,1c2ad660-411c-4ed0-8a87-177541122bcd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39178,dd04502d-c872-4798-8726-cc1fed6b3aa3,LIST_ACCOUNTS,hbciListAccounts,false +39179,dd04502d-c872-4798-8726-cc1fed6b3aa3,LIST_TRANSACTIONS,hbciListTransactions,false +39180,dd04502d-c872-4798-8726-cc1fed6b3aa3,AUTHORIZATION,,false +39181,dd04502d-c872-4798-8726-cc1fed6b3aa3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39182,dd04502d-c872-4798-8726-cc1fed6b3aa3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39183,dd04502d-c872-4798-8726-cc1fed6b3aa3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39184,b55ac5c5-21b7-4f4b-b007-193e43ab2c34,LIST_ACCOUNTS,xs2aListAccounts,true -39185,b55ac5c5-21b7-4f4b-b007-193e43ab2c34,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39185,b55ac5c5-21b7-4f4b-b007-193e43ab2c34,LIST_TRANSACTIONS,xs2aListTransactions,true 39186,b55ac5c5-21b7-4f4b-b007-193e43ab2c34,AUTHORIZATION,,true 39187,b55ac5c5-21b7-4f4b-b007-193e43ab2c34,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39188,b55ac5c5-21b7-4f4b-b007-193e43ab2c34,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39189,b55ac5c5-21b7-4f4b-b007-193e43ab2c34,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39190,44638f12-582b-4348-a81f-7ce34d5c7044,LIST_ACCOUNTS,hbciListAccounts,false -39191,44638f12-582b-4348-a81f-7ce34d5c7044,LIST_TRANSACTIONS,hbciListTransactions,false -39192,44638f12-582b-4348-a81f-7ce34d5c7044,AUTHORIZATION,,false -39193,44638f12-582b-4348-a81f-7ce34d5c7044,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39194,44638f12-582b-4348-a81f-7ce34d5c7044,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39195,44638f12-582b-4348-a81f-7ce34d5c7044,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39190,90a8deb6-ffb1-452e-a9bc-c030aaf5eff9,LIST_ACCOUNTS,hbciListAccounts,false +39191,90a8deb6-ffb1-452e-a9bc-c030aaf5eff9,LIST_TRANSACTIONS,hbciListTransactions,false +39192,90a8deb6-ffb1-452e-a9bc-c030aaf5eff9,AUTHORIZATION,,false +39193,90a8deb6-ffb1-452e-a9bc-c030aaf5eff9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39194,90a8deb6-ffb1-452e-a9bc-c030aaf5eff9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39195,90a8deb6-ffb1-452e-a9bc-c030aaf5eff9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39196,d9dc743b-fe34-4e7f-ae0e-16c41b5ec159,LIST_ACCOUNTS,xs2aListAccounts,true -39197,d9dc743b-fe34-4e7f-ae0e-16c41b5ec159,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39197,d9dc743b-fe34-4e7f-ae0e-16c41b5ec159,LIST_TRANSACTIONS,xs2aListTransactions,true 39198,d9dc743b-fe34-4e7f-ae0e-16c41b5ec159,AUTHORIZATION,,true 39199,d9dc743b-fe34-4e7f-ae0e-16c41b5ec159,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39200,d9dc743b-fe34-4e7f-ae0e-16c41b5ec159,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39201,d9dc743b-fe34-4e7f-ae0e-16c41b5ec159,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39202,e8ef8886-8291-4f49-b85e-064d059d1489,LIST_ACCOUNTS,hbciListAccounts,false -39203,e8ef8886-8291-4f49-b85e-064d059d1489,LIST_TRANSACTIONS,hbciListTransactions,false -39204,e8ef8886-8291-4f49-b85e-064d059d1489,AUTHORIZATION,,false -39205,e8ef8886-8291-4f49-b85e-064d059d1489,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39206,e8ef8886-8291-4f49-b85e-064d059d1489,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39207,e8ef8886-8291-4f49-b85e-064d059d1489,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39202,7b463324-f87d-4c58-874a-978ed5bfd948,LIST_ACCOUNTS,hbciListAccounts,false +39203,7b463324-f87d-4c58-874a-978ed5bfd948,LIST_TRANSACTIONS,hbciListTransactions,false +39204,7b463324-f87d-4c58-874a-978ed5bfd948,AUTHORIZATION,,false +39205,7b463324-f87d-4c58-874a-978ed5bfd948,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39206,7b463324-f87d-4c58-874a-978ed5bfd948,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39207,7b463324-f87d-4c58-874a-978ed5bfd948,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39208,50a2d6b7-cd29-4626-aae9-ab270d8c74fb,LIST_ACCOUNTS,xs2aListAccounts,true -39209,50a2d6b7-cd29-4626-aae9-ab270d8c74fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39209,50a2d6b7-cd29-4626-aae9-ab270d8c74fb,LIST_TRANSACTIONS,xs2aListTransactions,true 39210,50a2d6b7-cd29-4626-aae9-ab270d8c74fb,AUTHORIZATION,,true 39211,50a2d6b7-cd29-4626-aae9-ab270d8c74fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39212,50a2d6b7-cd29-4626-aae9-ab270d8c74fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39213,50a2d6b7-cd29-4626-aae9-ab270d8c74fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39214,5aaf3c23-ca5f-47d9-aff2-c698b4c2965f,LIST_ACCOUNTS,hbciListAccounts,false -39215,5aaf3c23-ca5f-47d9-aff2-c698b4c2965f,LIST_TRANSACTIONS,hbciListTransactions,false -39216,5aaf3c23-ca5f-47d9-aff2-c698b4c2965f,AUTHORIZATION,,false -39217,5aaf3c23-ca5f-47d9-aff2-c698b4c2965f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39218,5aaf3c23-ca5f-47d9-aff2-c698b4c2965f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39219,5aaf3c23-ca5f-47d9-aff2-c698b4c2965f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39214,29387fd9-107e-44c0-9d30-39878c8c86c9,LIST_ACCOUNTS,hbciListAccounts,false +39215,29387fd9-107e-44c0-9d30-39878c8c86c9,LIST_TRANSACTIONS,hbciListTransactions,false +39216,29387fd9-107e-44c0-9d30-39878c8c86c9,AUTHORIZATION,,false +39217,29387fd9-107e-44c0-9d30-39878c8c86c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39218,29387fd9-107e-44c0-9d30-39878c8c86c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39219,29387fd9-107e-44c0-9d30-39878c8c86c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39220,8566768d-6c79-460e-a06a-14c452e74ad0,LIST_ACCOUNTS,xs2aListAccounts,true -39221,8566768d-6c79-460e-a06a-14c452e74ad0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39221,8566768d-6c79-460e-a06a-14c452e74ad0,LIST_TRANSACTIONS,xs2aListTransactions,true 39222,8566768d-6c79-460e-a06a-14c452e74ad0,AUTHORIZATION,,true 39223,8566768d-6c79-460e-a06a-14c452e74ad0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39224,8566768d-6c79-460e-a06a-14c452e74ad0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39225,8566768d-6c79-460e-a06a-14c452e74ad0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39226,df961c04-b35a-4401-b7e0-beb8c85f505a,LIST_ACCOUNTS,hbciListAccounts,false -39227,df961c04-b35a-4401-b7e0-beb8c85f505a,LIST_TRANSACTIONS,hbciListTransactions,false -39228,df961c04-b35a-4401-b7e0-beb8c85f505a,AUTHORIZATION,,false -39229,df961c04-b35a-4401-b7e0-beb8c85f505a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39230,df961c04-b35a-4401-b7e0-beb8c85f505a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39231,df961c04-b35a-4401-b7e0-beb8c85f505a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39226,c0bf14d1-61e4-400f-a40b-44cc72af4d1c,LIST_ACCOUNTS,hbciListAccounts,false +39227,c0bf14d1-61e4-400f-a40b-44cc72af4d1c,LIST_TRANSACTIONS,hbciListTransactions,false +39228,c0bf14d1-61e4-400f-a40b-44cc72af4d1c,AUTHORIZATION,,false +39229,c0bf14d1-61e4-400f-a40b-44cc72af4d1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39230,c0bf14d1-61e4-400f-a40b-44cc72af4d1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39231,c0bf14d1-61e4-400f-a40b-44cc72af4d1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39232,d8dfddaa-0c0b-4ea4-87f7-ca76b65281a6,LIST_ACCOUNTS,xs2aListAccounts,true -39233,d8dfddaa-0c0b-4ea4-87f7-ca76b65281a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39233,d8dfddaa-0c0b-4ea4-87f7-ca76b65281a6,LIST_TRANSACTIONS,xs2aListTransactions,true 39234,d8dfddaa-0c0b-4ea4-87f7-ca76b65281a6,AUTHORIZATION,,true 39235,d8dfddaa-0c0b-4ea4-87f7-ca76b65281a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39236,d8dfddaa-0c0b-4ea4-87f7-ca76b65281a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39237,d8dfddaa-0c0b-4ea4-87f7-ca76b65281a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39238,db8f7b83-a45e-4a45-97b3-6ac145968d73,LIST_ACCOUNTS,hbciListAccounts,false -39239,db8f7b83-a45e-4a45-97b3-6ac145968d73,LIST_TRANSACTIONS,hbciListTransactions,false -39240,db8f7b83-a45e-4a45-97b3-6ac145968d73,AUTHORIZATION,,false -39241,db8f7b83-a45e-4a45-97b3-6ac145968d73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39242,db8f7b83-a45e-4a45-97b3-6ac145968d73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39243,db8f7b83-a45e-4a45-97b3-6ac145968d73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39238,d4e1991b-49fa-4854-b195-2ade0d8fe556,LIST_ACCOUNTS,hbciListAccounts,false +39239,d4e1991b-49fa-4854-b195-2ade0d8fe556,LIST_TRANSACTIONS,hbciListTransactions,false +39240,d4e1991b-49fa-4854-b195-2ade0d8fe556,AUTHORIZATION,,false +39241,d4e1991b-49fa-4854-b195-2ade0d8fe556,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39242,d4e1991b-49fa-4854-b195-2ade0d8fe556,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39243,d4e1991b-49fa-4854-b195-2ade0d8fe556,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39244,010db398-5f01-400a-85ff-13c50e6cae91,LIST_ACCOUNTS,xs2aListAccounts,true -39245,010db398-5f01-400a-85ff-13c50e6cae91,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39245,010db398-5f01-400a-85ff-13c50e6cae91,LIST_TRANSACTIONS,xs2aListTransactions,true 39246,010db398-5f01-400a-85ff-13c50e6cae91,AUTHORIZATION,,true 39247,010db398-5f01-400a-85ff-13c50e6cae91,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39248,010db398-5f01-400a-85ff-13c50e6cae91,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39249,010db398-5f01-400a-85ff-13c50e6cae91,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39250,2f0e07a3-5f79-47f0-9dbd-eda6cca4d75a,LIST_ACCOUNTS,hbciListAccounts,false -39251,2f0e07a3-5f79-47f0-9dbd-eda6cca4d75a,LIST_TRANSACTIONS,hbciListTransactions,false -39252,2f0e07a3-5f79-47f0-9dbd-eda6cca4d75a,AUTHORIZATION,,false -39253,2f0e07a3-5f79-47f0-9dbd-eda6cca4d75a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39254,2f0e07a3-5f79-47f0-9dbd-eda6cca4d75a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39255,2f0e07a3-5f79-47f0-9dbd-eda6cca4d75a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39250,64091913-579b-4b4c-ae8f-64248f316e24,LIST_ACCOUNTS,hbciListAccounts,false +39251,64091913-579b-4b4c-ae8f-64248f316e24,LIST_TRANSACTIONS,hbciListTransactions,false +39252,64091913-579b-4b4c-ae8f-64248f316e24,AUTHORIZATION,,false +39253,64091913-579b-4b4c-ae8f-64248f316e24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39254,64091913-579b-4b4c-ae8f-64248f316e24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39255,64091913-579b-4b4c-ae8f-64248f316e24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39256,d50fcdab-47ad-458a-857e-eece46112b78,LIST_ACCOUNTS,xs2aListAccounts,true -39257,d50fcdab-47ad-458a-857e-eece46112b78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39257,d50fcdab-47ad-458a-857e-eece46112b78,LIST_TRANSACTIONS,xs2aListTransactions,true 39258,d50fcdab-47ad-458a-857e-eece46112b78,AUTHORIZATION,,true 39259,d50fcdab-47ad-458a-857e-eece46112b78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39260,d50fcdab-47ad-458a-857e-eece46112b78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39261,d50fcdab-47ad-458a-857e-eece46112b78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39262,d6848291-ca05-4457-886f-4a1a6e188445,LIST_ACCOUNTS,hbciListAccounts,false -39263,d6848291-ca05-4457-886f-4a1a6e188445,LIST_TRANSACTIONS,hbciListTransactions,false -39264,d6848291-ca05-4457-886f-4a1a6e188445,AUTHORIZATION,,false -39265,d6848291-ca05-4457-886f-4a1a6e188445,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39266,d6848291-ca05-4457-886f-4a1a6e188445,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39267,d6848291-ca05-4457-886f-4a1a6e188445,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39262,5f675ab0-8638-4369-bbaa-1759d4654a6b,LIST_ACCOUNTS,hbciListAccounts,false +39263,5f675ab0-8638-4369-bbaa-1759d4654a6b,LIST_TRANSACTIONS,hbciListTransactions,false +39264,5f675ab0-8638-4369-bbaa-1759d4654a6b,AUTHORIZATION,,false +39265,5f675ab0-8638-4369-bbaa-1759d4654a6b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39266,5f675ab0-8638-4369-bbaa-1759d4654a6b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39267,5f675ab0-8638-4369-bbaa-1759d4654a6b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39268,ce2974e4-26f5-44c4-811a-df55cff4fd8e,LIST_ACCOUNTS,xs2aListAccounts,true -39269,ce2974e4-26f5-44c4-811a-df55cff4fd8e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39269,ce2974e4-26f5-44c4-811a-df55cff4fd8e,LIST_TRANSACTIONS,xs2aListTransactions,true 39270,ce2974e4-26f5-44c4-811a-df55cff4fd8e,AUTHORIZATION,,true 39271,ce2974e4-26f5-44c4-811a-df55cff4fd8e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39272,ce2974e4-26f5-44c4-811a-df55cff4fd8e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39273,ce2974e4-26f5-44c4-811a-df55cff4fd8e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39274,7347146d-6fbe-4caf-994c-77cd18eea07b,LIST_ACCOUNTS,hbciListAccounts,false -39275,7347146d-6fbe-4caf-994c-77cd18eea07b,LIST_TRANSACTIONS,hbciListTransactions,false -39276,7347146d-6fbe-4caf-994c-77cd18eea07b,AUTHORIZATION,,false -39277,7347146d-6fbe-4caf-994c-77cd18eea07b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39278,7347146d-6fbe-4caf-994c-77cd18eea07b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39279,7347146d-6fbe-4caf-994c-77cd18eea07b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39274,9f81de1a-79c7-4cbc-b056-11648b7e9679,LIST_ACCOUNTS,hbciListAccounts,false +39275,9f81de1a-79c7-4cbc-b056-11648b7e9679,LIST_TRANSACTIONS,hbciListTransactions,false +39276,9f81de1a-79c7-4cbc-b056-11648b7e9679,AUTHORIZATION,,false +39277,9f81de1a-79c7-4cbc-b056-11648b7e9679,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39278,9f81de1a-79c7-4cbc-b056-11648b7e9679,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39279,9f81de1a-79c7-4cbc-b056-11648b7e9679,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39280,5fb00d88-3783-4cdf-ac2c-86257ed427d2,LIST_ACCOUNTS,xs2aListAccounts,true -39281,5fb00d88-3783-4cdf-ac2c-86257ed427d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39281,5fb00d88-3783-4cdf-ac2c-86257ed427d2,LIST_TRANSACTIONS,xs2aListTransactions,true 39282,5fb00d88-3783-4cdf-ac2c-86257ed427d2,AUTHORIZATION,,true 39283,5fb00d88-3783-4cdf-ac2c-86257ed427d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39284,5fb00d88-3783-4cdf-ac2c-86257ed427d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39285,5fb00d88-3783-4cdf-ac2c-86257ed427d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39286,d897bf8d-0d0e-4ed1-a1d1-6bbe5818a6b5,LIST_ACCOUNTS,hbciListAccounts,false -39287,d897bf8d-0d0e-4ed1-a1d1-6bbe5818a6b5,LIST_TRANSACTIONS,hbciListTransactions,false -39288,d897bf8d-0d0e-4ed1-a1d1-6bbe5818a6b5,AUTHORIZATION,,false -39289,d897bf8d-0d0e-4ed1-a1d1-6bbe5818a6b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39290,d897bf8d-0d0e-4ed1-a1d1-6bbe5818a6b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39291,d897bf8d-0d0e-4ed1-a1d1-6bbe5818a6b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39286,7fd38d67-5eb1-4e24-9eae-fbdcfcfc8ff8,LIST_ACCOUNTS,hbciListAccounts,false +39287,7fd38d67-5eb1-4e24-9eae-fbdcfcfc8ff8,LIST_TRANSACTIONS,hbciListTransactions,false +39288,7fd38d67-5eb1-4e24-9eae-fbdcfcfc8ff8,AUTHORIZATION,,false +39289,7fd38d67-5eb1-4e24-9eae-fbdcfcfc8ff8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39290,7fd38d67-5eb1-4e24-9eae-fbdcfcfc8ff8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39291,7fd38d67-5eb1-4e24-9eae-fbdcfcfc8ff8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39292,11a4af7c-63c6-4191-ac7b-bff9cd3ef589,LIST_ACCOUNTS,xs2aListAccounts,true -39293,11a4af7c-63c6-4191-ac7b-bff9cd3ef589,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39293,11a4af7c-63c6-4191-ac7b-bff9cd3ef589,LIST_TRANSACTIONS,xs2aListTransactions,true 39294,11a4af7c-63c6-4191-ac7b-bff9cd3ef589,AUTHORIZATION,,true 39295,11a4af7c-63c6-4191-ac7b-bff9cd3ef589,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39296,11a4af7c-63c6-4191-ac7b-bff9cd3ef589,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39297,11a4af7c-63c6-4191-ac7b-bff9cd3ef589,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39298,0116535d-9363-4837-bc64-a712a6517340,LIST_ACCOUNTS,hbciListAccounts,false -39299,0116535d-9363-4837-bc64-a712a6517340,LIST_TRANSACTIONS,hbciListTransactions,false -39300,0116535d-9363-4837-bc64-a712a6517340,AUTHORIZATION,,false -39301,0116535d-9363-4837-bc64-a712a6517340,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39302,0116535d-9363-4837-bc64-a712a6517340,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39303,0116535d-9363-4837-bc64-a712a6517340,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39298,a931f696-a4e7-40fd-b6bc-14ccb8b49540,LIST_ACCOUNTS,hbciListAccounts,false +39299,a931f696-a4e7-40fd-b6bc-14ccb8b49540,LIST_TRANSACTIONS,hbciListTransactions,false +39300,a931f696-a4e7-40fd-b6bc-14ccb8b49540,AUTHORIZATION,,false +39301,a931f696-a4e7-40fd-b6bc-14ccb8b49540,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39302,a931f696-a4e7-40fd-b6bc-14ccb8b49540,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39303,a931f696-a4e7-40fd-b6bc-14ccb8b49540,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39304,a5d38c37-a04f-4f94-9cf9-dc16a0cd082f,LIST_ACCOUNTS,xs2aListAccounts,true -39305,a5d38c37-a04f-4f94-9cf9-dc16a0cd082f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39305,a5d38c37-a04f-4f94-9cf9-dc16a0cd082f,LIST_TRANSACTIONS,xs2aListTransactions,true 39306,a5d38c37-a04f-4f94-9cf9-dc16a0cd082f,AUTHORIZATION,,true 39307,a5d38c37-a04f-4f94-9cf9-dc16a0cd082f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39308,a5d38c37-a04f-4f94-9cf9-dc16a0cd082f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39309,a5d38c37-a04f-4f94-9cf9-dc16a0cd082f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39310,b1e728a1-86b6-48ab-9813-1aaceff47c36,LIST_ACCOUNTS,hbciListAccounts,false -39311,b1e728a1-86b6-48ab-9813-1aaceff47c36,LIST_TRANSACTIONS,hbciListTransactions,false -39312,b1e728a1-86b6-48ab-9813-1aaceff47c36,AUTHORIZATION,,false -39313,b1e728a1-86b6-48ab-9813-1aaceff47c36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39314,b1e728a1-86b6-48ab-9813-1aaceff47c36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39315,b1e728a1-86b6-48ab-9813-1aaceff47c36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39310,88993a7c-91ee-49ab-b537-6cee94571457,LIST_ACCOUNTS,hbciListAccounts,false +39311,88993a7c-91ee-49ab-b537-6cee94571457,LIST_TRANSACTIONS,hbciListTransactions,false +39312,88993a7c-91ee-49ab-b537-6cee94571457,AUTHORIZATION,,false +39313,88993a7c-91ee-49ab-b537-6cee94571457,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39314,88993a7c-91ee-49ab-b537-6cee94571457,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39315,88993a7c-91ee-49ab-b537-6cee94571457,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39316,77ed8f6e-2c58-4a05-9bbc-e7cc6330e212,LIST_ACCOUNTS,xs2aListAccounts,true -39317,77ed8f6e-2c58-4a05-9bbc-e7cc6330e212,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39317,77ed8f6e-2c58-4a05-9bbc-e7cc6330e212,LIST_TRANSACTIONS,xs2aListTransactions,true 39318,77ed8f6e-2c58-4a05-9bbc-e7cc6330e212,AUTHORIZATION,,true 39319,77ed8f6e-2c58-4a05-9bbc-e7cc6330e212,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39320,77ed8f6e-2c58-4a05-9bbc-e7cc6330e212,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39321,77ed8f6e-2c58-4a05-9bbc-e7cc6330e212,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39322,61892dcf-c8ed-41a6-ba1c-fc5beb112a3d,LIST_ACCOUNTS,hbciListAccounts,false -39323,61892dcf-c8ed-41a6-ba1c-fc5beb112a3d,LIST_TRANSACTIONS,hbciListTransactions,false -39324,61892dcf-c8ed-41a6-ba1c-fc5beb112a3d,AUTHORIZATION,,false -39325,61892dcf-c8ed-41a6-ba1c-fc5beb112a3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39326,61892dcf-c8ed-41a6-ba1c-fc5beb112a3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39327,61892dcf-c8ed-41a6-ba1c-fc5beb112a3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39322,9f130540-2828-4c64-96eb-f60e15cb4f55,LIST_ACCOUNTS,hbciListAccounts,false +39323,9f130540-2828-4c64-96eb-f60e15cb4f55,LIST_TRANSACTIONS,hbciListTransactions,false +39324,9f130540-2828-4c64-96eb-f60e15cb4f55,AUTHORIZATION,,false +39325,9f130540-2828-4c64-96eb-f60e15cb4f55,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39326,9f130540-2828-4c64-96eb-f60e15cb4f55,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39327,9f130540-2828-4c64-96eb-f60e15cb4f55,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39328,daf56cc3-bd0b-40ee-9759-6628c0163ae3,LIST_ACCOUNTS,xs2aListAccounts,true -39329,daf56cc3-bd0b-40ee-9759-6628c0163ae3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39329,daf56cc3-bd0b-40ee-9759-6628c0163ae3,LIST_TRANSACTIONS,xs2aListTransactions,true 39330,daf56cc3-bd0b-40ee-9759-6628c0163ae3,AUTHORIZATION,,true 39331,daf56cc3-bd0b-40ee-9759-6628c0163ae3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39332,daf56cc3-bd0b-40ee-9759-6628c0163ae3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39333,daf56cc3-bd0b-40ee-9759-6628c0163ae3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39334,87eacdb6-cefd-4599-9a1b-735cded078cc,LIST_ACCOUNTS,hbciListAccounts,false -39335,87eacdb6-cefd-4599-9a1b-735cded078cc,LIST_TRANSACTIONS,hbciListTransactions,false -39336,87eacdb6-cefd-4599-9a1b-735cded078cc,AUTHORIZATION,,false -39337,87eacdb6-cefd-4599-9a1b-735cded078cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39338,87eacdb6-cefd-4599-9a1b-735cded078cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39339,87eacdb6-cefd-4599-9a1b-735cded078cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39334,0a4b1b7f-8166-4846-a6eb-e8d1a036555c,LIST_ACCOUNTS,hbciListAccounts,false +39335,0a4b1b7f-8166-4846-a6eb-e8d1a036555c,LIST_TRANSACTIONS,hbciListTransactions,false +39336,0a4b1b7f-8166-4846-a6eb-e8d1a036555c,AUTHORIZATION,,false +39337,0a4b1b7f-8166-4846-a6eb-e8d1a036555c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39338,0a4b1b7f-8166-4846-a6eb-e8d1a036555c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39339,0a4b1b7f-8166-4846-a6eb-e8d1a036555c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39340,730ef57f-c128-4e3c-9603-ecf9a8dd8c67,LIST_ACCOUNTS,xs2aListAccounts,true -39341,730ef57f-c128-4e3c-9603-ecf9a8dd8c67,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39341,730ef57f-c128-4e3c-9603-ecf9a8dd8c67,LIST_TRANSACTIONS,xs2aListTransactions,true 39342,730ef57f-c128-4e3c-9603-ecf9a8dd8c67,AUTHORIZATION,,true 39343,730ef57f-c128-4e3c-9603-ecf9a8dd8c67,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39344,730ef57f-c128-4e3c-9603-ecf9a8dd8c67,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39345,730ef57f-c128-4e3c-9603-ecf9a8dd8c67,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39346,ab1e5160-581b-419b-8df1-8e94dac3b38f,LIST_ACCOUNTS,hbciListAccounts,false -39347,ab1e5160-581b-419b-8df1-8e94dac3b38f,LIST_TRANSACTIONS,hbciListTransactions,false -39348,ab1e5160-581b-419b-8df1-8e94dac3b38f,AUTHORIZATION,,false -39349,ab1e5160-581b-419b-8df1-8e94dac3b38f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39350,ab1e5160-581b-419b-8df1-8e94dac3b38f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39351,ab1e5160-581b-419b-8df1-8e94dac3b38f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39346,e3cbc403-669d-434a-89f1-340c24939d67,LIST_ACCOUNTS,hbciListAccounts,false +39347,e3cbc403-669d-434a-89f1-340c24939d67,LIST_TRANSACTIONS,hbciListTransactions,false +39348,e3cbc403-669d-434a-89f1-340c24939d67,AUTHORIZATION,,false +39349,e3cbc403-669d-434a-89f1-340c24939d67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39350,e3cbc403-669d-434a-89f1-340c24939d67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39351,e3cbc403-669d-434a-89f1-340c24939d67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39352,2546e658-e601-4096-85a0-cbeaac2cacad,LIST_ACCOUNTS,xs2aListAccounts,true -39353,2546e658-e601-4096-85a0-cbeaac2cacad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39353,2546e658-e601-4096-85a0-cbeaac2cacad,LIST_TRANSACTIONS,xs2aListTransactions,true 39354,2546e658-e601-4096-85a0-cbeaac2cacad,AUTHORIZATION,,true 39355,2546e658-e601-4096-85a0-cbeaac2cacad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39356,2546e658-e601-4096-85a0-cbeaac2cacad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39357,2546e658-e601-4096-85a0-cbeaac2cacad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39358,a1a183b5-52a3-4310-b45e-1e518507dcf1,LIST_ACCOUNTS,hbciListAccounts,false -39359,a1a183b5-52a3-4310-b45e-1e518507dcf1,LIST_TRANSACTIONS,hbciListTransactions,false -39360,a1a183b5-52a3-4310-b45e-1e518507dcf1,AUTHORIZATION,,false -39361,a1a183b5-52a3-4310-b45e-1e518507dcf1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39362,a1a183b5-52a3-4310-b45e-1e518507dcf1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39363,a1a183b5-52a3-4310-b45e-1e518507dcf1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39358,f27042fc-8e7b-4252-a57d-c311427a7b06,LIST_ACCOUNTS,hbciListAccounts,false +39359,f27042fc-8e7b-4252-a57d-c311427a7b06,LIST_TRANSACTIONS,hbciListTransactions,false +39360,f27042fc-8e7b-4252-a57d-c311427a7b06,AUTHORIZATION,,false +39361,f27042fc-8e7b-4252-a57d-c311427a7b06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39362,f27042fc-8e7b-4252-a57d-c311427a7b06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39363,f27042fc-8e7b-4252-a57d-c311427a7b06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39364,2e7e79eb-9077-4692-b9eb-5daa9d5b68f8,LIST_ACCOUNTS,xs2aListAccounts,true -39365,2e7e79eb-9077-4692-b9eb-5daa9d5b68f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39365,2e7e79eb-9077-4692-b9eb-5daa9d5b68f8,LIST_TRANSACTIONS,xs2aListTransactions,true 39366,2e7e79eb-9077-4692-b9eb-5daa9d5b68f8,AUTHORIZATION,,true 39367,2e7e79eb-9077-4692-b9eb-5daa9d5b68f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39368,2e7e79eb-9077-4692-b9eb-5daa9d5b68f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39369,2e7e79eb-9077-4692-b9eb-5daa9d5b68f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39370,cfd27bf7-6297-4a10-b824-46bfb5a5f802,LIST_ACCOUNTS,hbciListAccounts,false -39371,cfd27bf7-6297-4a10-b824-46bfb5a5f802,LIST_TRANSACTIONS,hbciListTransactions,false -39372,cfd27bf7-6297-4a10-b824-46bfb5a5f802,AUTHORIZATION,,false -39373,cfd27bf7-6297-4a10-b824-46bfb5a5f802,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39374,cfd27bf7-6297-4a10-b824-46bfb5a5f802,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39375,cfd27bf7-6297-4a10-b824-46bfb5a5f802,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39370,91b888d6-0361-4d82-8a3a-d5f18dfa0234,LIST_ACCOUNTS,hbciListAccounts,false +39371,91b888d6-0361-4d82-8a3a-d5f18dfa0234,LIST_TRANSACTIONS,hbciListTransactions,false +39372,91b888d6-0361-4d82-8a3a-d5f18dfa0234,AUTHORIZATION,,false +39373,91b888d6-0361-4d82-8a3a-d5f18dfa0234,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39374,91b888d6-0361-4d82-8a3a-d5f18dfa0234,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39375,91b888d6-0361-4d82-8a3a-d5f18dfa0234,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39376,2ca55151-2e1b-4a54-b483-ff43043d0cd0,LIST_ACCOUNTS,xs2aListAccounts,true -39377,2ca55151-2e1b-4a54-b483-ff43043d0cd0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39377,2ca55151-2e1b-4a54-b483-ff43043d0cd0,LIST_TRANSACTIONS,xs2aListTransactions,true 39378,2ca55151-2e1b-4a54-b483-ff43043d0cd0,AUTHORIZATION,,true 39379,2ca55151-2e1b-4a54-b483-ff43043d0cd0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39380,2ca55151-2e1b-4a54-b483-ff43043d0cd0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39381,2ca55151-2e1b-4a54-b483-ff43043d0cd0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39382,515b384c-0a24-42b3-9c7c-1a55c68e3cc3,LIST_ACCOUNTS,hbciListAccounts,false -39383,515b384c-0a24-42b3-9c7c-1a55c68e3cc3,LIST_TRANSACTIONS,hbciListTransactions,false -39384,515b384c-0a24-42b3-9c7c-1a55c68e3cc3,AUTHORIZATION,,false -39385,515b384c-0a24-42b3-9c7c-1a55c68e3cc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39386,515b384c-0a24-42b3-9c7c-1a55c68e3cc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39387,515b384c-0a24-42b3-9c7c-1a55c68e3cc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39382,fc46b6a4-39ae-4464-b87e-169860c83cd7,LIST_ACCOUNTS,hbciListAccounts,false +39383,fc46b6a4-39ae-4464-b87e-169860c83cd7,LIST_TRANSACTIONS,hbciListTransactions,false +39384,fc46b6a4-39ae-4464-b87e-169860c83cd7,AUTHORIZATION,,false +39385,fc46b6a4-39ae-4464-b87e-169860c83cd7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39386,fc46b6a4-39ae-4464-b87e-169860c83cd7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39387,fc46b6a4-39ae-4464-b87e-169860c83cd7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39388,5c0e825a-c129-4c71-b8ae-31fa19c2a149,LIST_ACCOUNTS,xs2aListAccounts,true -39389,5c0e825a-c129-4c71-b8ae-31fa19c2a149,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39389,5c0e825a-c129-4c71-b8ae-31fa19c2a149,LIST_TRANSACTIONS,xs2aListTransactions,true 39390,5c0e825a-c129-4c71-b8ae-31fa19c2a149,AUTHORIZATION,,true 39391,5c0e825a-c129-4c71-b8ae-31fa19c2a149,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39392,5c0e825a-c129-4c71-b8ae-31fa19c2a149,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39393,5c0e825a-c129-4c71-b8ae-31fa19c2a149,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39394,1771af5a-8678-498c-85c7-79653de8b063,LIST_ACCOUNTS,hbciListAccounts,false -39395,1771af5a-8678-498c-85c7-79653de8b063,LIST_TRANSACTIONS,hbciListTransactions,false -39396,1771af5a-8678-498c-85c7-79653de8b063,AUTHORIZATION,,false -39397,1771af5a-8678-498c-85c7-79653de8b063,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39398,1771af5a-8678-498c-85c7-79653de8b063,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39399,1771af5a-8678-498c-85c7-79653de8b063,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39394,e3963040-45bf-4977-acb9-4b9ec3253e99,LIST_ACCOUNTS,hbciListAccounts,false +39395,e3963040-45bf-4977-acb9-4b9ec3253e99,LIST_TRANSACTIONS,hbciListTransactions,false +39396,e3963040-45bf-4977-acb9-4b9ec3253e99,AUTHORIZATION,,false +39397,e3963040-45bf-4977-acb9-4b9ec3253e99,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39398,e3963040-45bf-4977-acb9-4b9ec3253e99,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39399,e3963040-45bf-4977-acb9-4b9ec3253e99,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39400,f18b1fe2-0442-4eab-86ed-a5c875b80733,LIST_ACCOUNTS,xs2aListAccounts,true -39401,f18b1fe2-0442-4eab-86ed-a5c875b80733,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39401,f18b1fe2-0442-4eab-86ed-a5c875b80733,LIST_TRANSACTIONS,xs2aListTransactions,true 39402,f18b1fe2-0442-4eab-86ed-a5c875b80733,AUTHORIZATION,,true 39403,f18b1fe2-0442-4eab-86ed-a5c875b80733,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39404,f18b1fe2-0442-4eab-86ed-a5c875b80733,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39405,f18b1fe2-0442-4eab-86ed-a5c875b80733,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39406,50f4838d-7535-4f51-ad01-f8cc431bc7b9,LIST_ACCOUNTS,hbciListAccounts,false -39407,50f4838d-7535-4f51-ad01-f8cc431bc7b9,LIST_TRANSACTIONS,hbciListTransactions,false -39408,50f4838d-7535-4f51-ad01-f8cc431bc7b9,AUTHORIZATION,,false -39409,50f4838d-7535-4f51-ad01-f8cc431bc7b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39410,50f4838d-7535-4f51-ad01-f8cc431bc7b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39411,50f4838d-7535-4f51-ad01-f8cc431bc7b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39406,3a6df7a6-c9f5-468c-96f2-1b241aca4799,LIST_ACCOUNTS,hbciListAccounts,false +39407,3a6df7a6-c9f5-468c-96f2-1b241aca4799,LIST_TRANSACTIONS,hbciListTransactions,false +39408,3a6df7a6-c9f5-468c-96f2-1b241aca4799,AUTHORIZATION,,false +39409,3a6df7a6-c9f5-468c-96f2-1b241aca4799,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39410,3a6df7a6-c9f5-468c-96f2-1b241aca4799,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39411,3a6df7a6-c9f5-468c-96f2-1b241aca4799,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39412,e2ba471c-fef6-4ee1-99db-724586c91533,LIST_ACCOUNTS,xs2aListAccounts,true -39413,e2ba471c-fef6-4ee1-99db-724586c91533,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39413,e2ba471c-fef6-4ee1-99db-724586c91533,LIST_TRANSACTIONS,xs2aListTransactions,true 39414,e2ba471c-fef6-4ee1-99db-724586c91533,AUTHORIZATION,,true 39415,e2ba471c-fef6-4ee1-99db-724586c91533,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39416,e2ba471c-fef6-4ee1-99db-724586c91533,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39417,e2ba471c-fef6-4ee1-99db-724586c91533,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39418,65677dca-6b8b-4fc9-b8d9-d87c058974a1,LIST_ACCOUNTS,hbciListAccounts,false -39419,65677dca-6b8b-4fc9-b8d9-d87c058974a1,LIST_TRANSACTIONS,hbciListTransactions,false -39420,65677dca-6b8b-4fc9-b8d9-d87c058974a1,AUTHORIZATION,,false -39421,65677dca-6b8b-4fc9-b8d9-d87c058974a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39422,65677dca-6b8b-4fc9-b8d9-d87c058974a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39423,65677dca-6b8b-4fc9-b8d9-d87c058974a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39418,8c26341d-b26d-4112-a95c-b2a0f71dc80b,LIST_ACCOUNTS,hbciListAccounts,false +39419,8c26341d-b26d-4112-a95c-b2a0f71dc80b,LIST_TRANSACTIONS,hbciListTransactions,false +39420,8c26341d-b26d-4112-a95c-b2a0f71dc80b,AUTHORIZATION,,false +39421,8c26341d-b26d-4112-a95c-b2a0f71dc80b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39422,8c26341d-b26d-4112-a95c-b2a0f71dc80b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39423,8c26341d-b26d-4112-a95c-b2a0f71dc80b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39424,d7c4094e-103b-48ae-a6a9-ae0e8cea8042,LIST_ACCOUNTS,xs2aListAccounts,true -39425,d7c4094e-103b-48ae-a6a9-ae0e8cea8042,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39425,d7c4094e-103b-48ae-a6a9-ae0e8cea8042,LIST_TRANSACTIONS,xs2aListTransactions,true 39426,d7c4094e-103b-48ae-a6a9-ae0e8cea8042,AUTHORIZATION,,true 39427,d7c4094e-103b-48ae-a6a9-ae0e8cea8042,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39428,d7c4094e-103b-48ae-a6a9-ae0e8cea8042,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39429,d7c4094e-103b-48ae-a6a9-ae0e8cea8042,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39430,472f39a9-bab2-4cf5-ae8e-b5f674b6de42,LIST_ACCOUNTS,hbciListAccounts,false -39431,472f39a9-bab2-4cf5-ae8e-b5f674b6de42,LIST_TRANSACTIONS,hbciListTransactions,false -39432,472f39a9-bab2-4cf5-ae8e-b5f674b6de42,AUTHORIZATION,,false -39433,472f39a9-bab2-4cf5-ae8e-b5f674b6de42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39434,472f39a9-bab2-4cf5-ae8e-b5f674b6de42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39435,472f39a9-bab2-4cf5-ae8e-b5f674b6de42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39430,865813e6-9fbd-407a-85c6-0679647310b0,LIST_ACCOUNTS,hbciListAccounts,false +39431,865813e6-9fbd-407a-85c6-0679647310b0,LIST_TRANSACTIONS,hbciListTransactions,false +39432,865813e6-9fbd-407a-85c6-0679647310b0,AUTHORIZATION,,false +39433,865813e6-9fbd-407a-85c6-0679647310b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39434,865813e6-9fbd-407a-85c6-0679647310b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39435,865813e6-9fbd-407a-85c6-0679647310b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39436,67594cbf-5565-44b7-8103-e3394ecf93c9,LIST_ACCOUNTS,xs2aListAccounts,true -39437,67594cbf-5565-44b7-8103-e3394ecf93c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39437,67594cbf-5565-44b7-8103-e3394ecf93c9,LIST_TRANSACTIONS,xs2aListTransactions,true 39438,67594cbf-5565-44b7-8103-e3394ecf93c9,AUTHORIZATION,,true 39439,67594cbf-5565-44b7-8103-e3394ecf93c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39440,67594cbf-5565-44b7-8103-e3394ecf93c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39441,67594cbf-5565-44b7-8103-e3394ecf93c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39442,7ebd2cc2-152f-4aed-8db7-475414b3892f,LIST_ACCOUNTS,hbciListAccounts,false -39443,7ebd2cc2-152f-4aed-8db7-475414b3892f,LIST_TRANSACTIONS,hbciListTransactions,false -39444,7ebd2cc2-152f-4aed-8db7-475414b3892f,AUTHORIZATION,,false -39445,7ebd2cc2-152f-4aed-8db7-475414b3892f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39446,7ebd2cc2-152f-4aed-8db7-475414b3892f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39447,7ebd2cc2-152f-4aed-8db7-475414b3892f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39442,679f6325-e66b-48e6-b24f-26d36d0d696d,LIST_ACCOUNTS,hbciListAccounts,false +39443,679f6325-e66b-48e6-b24f-26d36d0d696d,LIST_TRANSACTIONS,hbciListTransactions,false +39444,679f6325-e66b-48e6-b24f-26d36d0d696d,AUTHORIZATION,,false +39445,679f6325-e66b-48e6-b24f-26d36d0d696d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39446,679f6325-e66b-48e6-b24f-26d36d0d696d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39447,679f6325-e66b-48e6-b24f-26d36d0d696d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39448,0b5ba631-a63b-4851-bf0c-1580ec5275cf,LIST_ACCOUNTS,xs2aListAccounts,true -39449,0b5ba631-a63b-4851-bf0c-1580ec5275cf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39449,0b5ba631-a63b-4851-bf0c-1580ec5275cf,LIST_TRANSACTIONS,xs2aListTransactions,true 39450,0b5ba631-a63b-4851-bf0c-1580ec5275cf,AUTHORIZATION,,true 39451,0b5ba631-a63b-4851-bf0c-1580ec5275cf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39452,0b5ba631-a63b-4851-bf0c-1580ec5275cf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39453,0b5ba631-a63b-4851-bf0c-1580ec5275cf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39454,44ac4ae5-c852-4a98-86a0-4dbfcaa5272b,LIST_ACCOUNTS,hbciListAccounts,false -39455,44ac4ae5-c852-4a98-86a0-4dbfcaa5272b,LIST_TRANSACTIONS,hbciListTransactions,false -39456,44ac4ae5-c852-4a98-86a0-4dbfcaa5272b,AUTHORIZATION,,false -39457,44ac4ae5-c852-4a98-86a0-4dbfcaa5272b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39458,44ac4ae5-c852-4a98-86a0-4dbfcaa5272b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39459,44ac4ae5-c852-4a98-86a0-4dbfcaa5272b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39454,b947c802-431f-4d29-9f4e-d93d6b2c8fb6,LIST_ACCOUNTS,hbciListAccounts,false +39455,b947c802-431f-4d29-9f4e-d93d6b2c8fb6,LIST_TRANSACTIONS,hbciListTransactions,false +39456,b947c802-431f-4d29-9f4e-d93d6b2c8fb6,AUTHORIZATION,,false +39457,b947c802-431f-4d29-9f4e-d93d6b2c8fb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39458,b947c802-431f-4d29-9f4e-d93d6b2c8fb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39459,b947c802-431f-4d29-9f4e-d93d6b2c8fb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39460,b50f7bb9-cb4b-4a94-9ca9-497cf26ad029,LIST_ACCOUNTS,xs2aListAccounts,true -39461,b50f7bb9-cb4b-4a94-9ca9-497cf26ad029,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39461,b50f7bb9-cb4b-4a94-9ca9-497cf26ad029,LIST_TRANSACTIONS,xs2aListTransactions,true 39462,b50f7bb9-cb4b-4a94-9ca9-497cf26ad029,AUTHORIZATION,,true 39463,b50f7bb9-cb4b-4a94-9ca9-497cf26ad029,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39464,b50f7bb9-cb4b-4a94-9ca9-497cf26ad029,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39465,b50f7bb9-cb4b-4a94-9ca9-497cf26ad029,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39466,97eb478a-03e1-4372-a6ed-d3813bc4c881,LIST_ACCOUNTS,hbciListAccounts,false -39467,97eb478a-03e1-4372-a6ed-d3813bc4c881,LIST_TRANSACTIONS,hbciListTransactions,false -39468,97eb478a-03e1-4372-a6ed-d3813bc4c881,AUTHORIZATION,,false -39469,97eb478a-03e1-4372-a6ed-d3813bc4c881,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39470,97eb478a-03e1-4372-a6ed-d3813bc4c881,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39471,97eb478a-03e1-4372-a6ed-d3813bc4c881,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39466,d50bc968-6ee9-4f50-a654-e17309c40057,LIST_ACCOUNTS,hbciListAccounts,false +39467,d50bc968-6ee9-4f50-a654-e17309c40057,LIST_TRANSACTIONS,hbciListTransactions,false +39468,d50bc968-6ee9-4f50-a654-e17309c40057,AUTHORIZATION,,false +39469,d50bc968-6ee9-4f50-a654-e17309c40057,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39470,d50bc968-6ee9-4f50-a654-e17309c40057,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39471,d50bc968-6ee9-4f50-a654-e17309c40057,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39472,360dfc7c-8a4c-4649-919e-f7d0ea88019f,LIST_ACCOUNTS,xs2aListAccounts,true -39473,360dfc7c-8a4c-4649-919e-f7d0ea88019f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39473,360dfc7c-8a4c-4649-919e-f7d0ea88019f,LIST_TRANSACTIONS,xs2aListTransactions,true 39474,360dfc7c-8a4c-4649-919e-f7d0ea88019f,AUTHORIZATION,,true 39475,360dfc7c-8a4c-4649-919e-f7d0ea88019f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39476,360dfc7c-8a4c-4649-919e-f7d0ea88019f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39477,360dfc7c-8a4c-4649-919e-f7d0ea88019f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39478,af59f3f0-7232-4241-9659-4f3b04cc84ee,LIST_ACCOUNTS,hbciListAccounts,false -39479,af59f3f0-7232-4241-9659-4f3b04cc84ee,LIST_TRANSACTIONS,hbciListTransactions,false -39480,af59f3f0-7232-4241-9659-4f3b04cc84ee,AUTHORIZATION,,false -39481,af59f3f0-7232-4241-9659-4f3b04cc84ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39482,af59f3f0-7232-4241-9659-4f3b04cc84ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39483,af59f3f0-7232-4241-9659-4f3b04cc84ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39478,1a4b8b1c-5914-41fe-8c01-f34bf74cb4b5,LIST_ACCOUNTS,hbciListAccounts,false +39479,1a4b8b1c-5914-41fe-8c01-f34bf74cb4b5,LIST_TRANSACTIONS,hbciListTransactions,false +39480,1a4b8b1c-5914-41fe-8c01-f34bf74cb4b5,AUTHORIZATION,,false +39481,1a4b8b1c-5914-41fe-8c01-f34bf74cb4b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39482,1a4b8b1c-5914-41fe-8c01-f34bf74cb4b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39483,1a4b8b1c-5914-41fe-8c01-f34bf74cb4b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39484,77a719c9-6c97-4927-b47e-3e7f1a3551c0,LIST_ACCOUNTS,xs2aListAccounts,true -39485,77a719c9-6c97-4927-b47e-3e7f1a3551c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39485,77a719c9-6c97-4927-b47e-3e7f1a3551c0,LIST_TRANSACTIONS,xs2aListTransactions,true 39486,77a719c9-6c97-4927-b47e-3e7f1a3551c0,AUTHORIZATION,,true 39487,77a719c9-6c97-4927-b47e-3e7f1a3551c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39488,77a719c9-6c97-4927-b47e-3e7f1a3551c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39489,77a719c9-6c97-4927-b47e-3e7f1a3551c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39490,aad6c0a7-1fb4-47a5-8d99-14c809bd26ad,LIST_ACCOUNTS,hbciListAccounts,false -39491,aad6c0a7-1fb4-47a5-8d99-14c809bd26ad,LIST_TRANSACTIONS,hbciListTransactions,false -39492,aad6c0a7-1fb4-47a5-8d99-14c809bd26ad,AUTHORIZATION,,false -39493,aad6c0a7-1fb4-47a5-8d99-14c809bd26ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39494,aad6c0a7-1fb4-47a5-8d99-14c809bd26ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39495,aad6c0a7-1fb4-47a5-8d99-14c809bd26ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39490,5db8840d-7500-44eb-8068-9e5c88df26cc,LIST_ACCOUNTS,hbciListAccounts,false +39491,5db8840d-7500-44eb-8068-9e5c88df26cc,LIST_TRANSACTIONS,hbciListTransactions,false +39492,5db8840d-7500-44eb-8068-9e5c88df26cc,AUTHORIZATION,,false +39493,5db8840d-7500-44eb-8068-9e5c88df26cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39494,5db8840d-7500-44eb-8068-9e5c88df26cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39495,5db8840d-7500-44eb-8068-9e5c88df26cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39496,dd54bb31-2990-47d1-a509-39bb972a6873,LIST_ACCOUNTS,xs2aListAccounts,true -39497,dd54bb31-2990-47d1-a509-39bb972a6873,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39497,dd54bb31-2990-47d1-a509-39bb972a6873,LIST_TRANSACTIONS,xs2aListTransactions,true 39498,dd54bb31-2990-47d1-a509-39bb972a6873,AUTHORIZATION,,true 39499,dd54bb31-2990-47d1-a509-39bb972a6873,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39500,dd54bb31-2990-47d1-a509-39bb972a6873,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39501,dd54bb31-2990-47d1-a509-39bb972a6873,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39502,939cf0ec-4e2e-43cc-bd4a-33f3e44b7ae8,LIST_ACCOUNTS,hbciListAccounts,false -39503,939cf0ec-4e2e-43cc-bd4a-33f3e44b7ae8,LIST_TRANSACTIONS,hbciListTransactions,false -39504,939cf0ec-4e2e-43cc-bd4a-33f3e44b7ae8,AUTHORIZATION,,false -39505,939cf0ec-4e2e-43cc-bd4a-33f3e44b7ae8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39506,939cf0ec-4e2e-43cc-bd4a-33f3e44b7ae8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39507,939cf0ec-4e2e-43cc-bd4a-33f3e44b7ae8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39502,5ffd46a8-1c3a-4de4-bd3e-2cc8bb737870,LIST_ACCOUNTS,hbciListAccounts,false +39503,5ffd46a8-1c3a-4de4-bd3e-2cc8bb737870,LIST_TRANSACTIONS,hbciListTransactions,false +39504,5ffd46a8-1c3a-4de4-bd3e-2cc8bb737870,AUTHORIZATION,,false +39505,5ffd46a8-1c3a-4de4-bd3e-2cc8bb737870,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39506,5ffd46a8-1c3a-4de4-bd3e-2cc8bb737870,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39507,5ffd46a8-1c3a-4de4-bd3e-2cc8bb737870,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39508,0e708acb-9c2f-4127-8f44-d14961ee2bd5,LIST_ACCOUNTS,xs2aListAccounts,true -39509,0e708acb-9c2f-4127-8f44-d14961ee2bd5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39509,0e708acb-9c2f-4127-8f44-d14961ee2bd5,LIST_TRANSACTIONS,xs2aListTransactions,true 39510,0e708acb-9c2f-4127-8f44-d14961ee2bd5,AUTHORIZATION,,true 39511,0e708acb-9c2f-4127-8f44-d14961ee2bd5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39512,0e708acb-9c2f-4127-8f44-d14961ee2bd5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39513,0e708acb-9c2f-4127-8f44-d14961ee2bd5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39514,86322cd1-91d1-46be-8cda-3b94d979b75e,LIST_ACCOUNTS,hbciListAccounts,false -39515,86322cd1-91d1-46be-8cda-3b94d979b75e,LIST_TRANSACTIONS,hbciListTransactions,false -39516,86322cd1-91d1-46be-8cda-3b94d979b75e,AUTHORIZATION,,false -39517,86322cd1-91d1-46be-8cda-3b94d979b75e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39518,86322cd1-91d1-46be-8cda-3b94d979b75e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39519,86322cd1-91d1-46be-8cda-3b94d979b75e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39514,15d8df00-a11c-4572-8d04-5cec61eab656,LIST_ACCOUNTS,hbciListAccounts,false +39515,15d8df00-a11c-4572-8d04-5cec61eab656,LIST_TRANSACTIONS,hbciListTransactions,false +39516,15d8df00-a11c-4572-8d04-5cec61eab656,AUTHORIZATION,,false +39517,15d8df00-a11c-4572-8d04-5cec61eab656,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39518,15d8df00-a11c-4572-8d04-5cec61eab656,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39519,15d8df00-a11c-4572-8d04-5cec61eab656,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39520,750672dd-3f74-47ae-8ac5-7465bfefcb71,LIST_ACCOUNTS,xs2aListAccounts,true -39521,750672dd-3f74-47ae-8ac5-7465bfefcb71,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39521,750672dd-3f74-47ae-8ac5-7465bfefcb71,LIST_TRANSACTIONS,xs2aListTransactions,true 39522,750672dd-3f74-47ae-8ac5-7465bfefcb71,AUTHORIZATION,,true 39523,750672dd-3f74-47ae-8ac5-7465bfefcb71,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39524,750672dd-3f74-47ae-8ac5-7465bfefcb71,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39525,750672dd-3f74-47ae-8ac5-7465bfefcb71,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39526,a8c30abe-67b0-4bec-a0e9-7c92a75549b1,LIST_ACCOUNTS,hbciListAccounts,false -39527,a8c30abe-67b0-4bec-a0e9-7c92a75549b1,LIST_TRANSACTIONS,hbciListTransactions,false -39528,a8c30abe-67b0-4bec-a0e9-7c92a75549b1,AUTHORIZATION,,false -39529,a8c30abe-67b0-4bec-a0e9-7c92a75549b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39530,a8c30abe-67b0-4bec-a0e9-7c92a75549b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39531,a8c30abe-67b0-4bec-a0e9-7c92a75549b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39526,a98ed594-0e1f-42e3-be5d-3b58548dcbe6,LIST_ACCOUNTS,hbciListAccounts,false +39527,a98ed594-0e1f-42e3-be5d-3b58548dcbe6,LIST_TRANSACTIONS,hbciListTransactions,false +39528,a98ed594-0e1f-42e3-be5d-3b58548dcbe6,AUTHORIZATION,,false +39529,a98ed594-0e1f-42e3-be5d-3b58548dcbe6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39530,a98ed594-0e1f-42e3-be5d-3b58548dcbe6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39531,a98ed594-0e1f-42e3-be5d-3b58548dcbe6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39532,1b745bb9-15a4-4e24-917b-64786cbed604,LIST_ACCOUNTS,xs2aListAccounts,true -39533,1b745bb9-15a4-4e24-917b-64786cbed604,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39533,1b745bb9-15a4-4e24-917b-64786cbed604,LIST_TRANSACTIONS,xs2aListTransactions,true 39534,1b745bb9-15a4-4e24-917b-64786cbed604,AUTHORIZATION,,true 39535,1b745bb9-15a4-4e24-917b-64786cbed604,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39536,1b745bb9-15a4-4e24-917b-64786cbed604,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39537,1b745bb9-15a4-4e24-917b-64786cbed604,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39538,b6b15816-3a46-40ed-a3aa-199c92eee130,LIST_ACCOUNTS,hbciListAccounts,false -39539,b6b15816-3a46-40ed-a3aa-199c92eee130,LIST_TRANSACTIONS,hbciListTransactions,false -39540,b6b15816-3a46-40ed-a3aa-199c92eee130,AUTHORIZATION,,false -39541,b6b15816-3a46-40ed-a3aa-199c92eee130,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39542,b6b15816-3a46-40ed-a3aa-199c92eee130,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39543,b6b15816-3a46-40ed-a3aa-199c92eee130,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39538,f9c7730f-c586-4fe2-82d0-3b22d5e0d4a4,LIST_ACCOUNTS,hbciListAccounts,false +39539,f9c7730f-c586-4fe2-82d0-3b22d5e0d4a4,LIST_TRANSACTIONS,hbciListTransactions,false +39540,f9c7730f-c586-4fe2-82d0-3b22d5e0d4a4,AUTHORIZATION,,false +39541,f9c7730f-c586-4fe2-82d0-3b22d5e0d4a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39542,f9c7730f-c586-4fe2-82d0-3b22d5e0d4a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39543,f9c7730f-c586-4fe2-82d0-3b22d5e0d4a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39544,5b41b5a7-9fe1-47e1-a39f-3214d8bad775,LIST_ACCOUNTS,xs2aListAccounts,true -39545,5b41b5a7-9fe1-47e1-a39f-3214d8bad775,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39545,5b41b5a7-9fe1-47e1-a39f-3214d8bad775,LIST_TRANSACTIONS,xs2aListTransactions,true 39546,5b41b5a7-9fe1-47e1-a39f-3214d8bad775,AUTHORIZATION,,true 39547,5b41b5a7-9fe1-47e1-a39f-3214d8bad775,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39548,5b41b5a7-9fe1-47e1-a39f-3214d8bad775,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39549,5b41b5a7-9fe1-47e1-a39f-3214d8bad775,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39550,4e53f71d-d6e8-4d47-9fff-4541cf087f7a,LIST_ACCOUNTS,hbciListAccounts,false -39551,4e53f71d-d6e8-4d47-9fff-4541cf087f7a,LIST_TRANSACTIONS,hbciListTransactions,false -39552,4e53f71d-d6e8-4d47-9fff-4541cf087f7a,AUTHORIZATION,,false -39553,4e53f71d-d6e8-4d47-9fff-4541cf087f7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39554,4e53f71d-d6e8-4d47-9fff-4541cf087f7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39555,4e53f71d-d6e8-4d47-9fff-4541cf087f7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39550,bbd011c8-1f9d-45ff-bbd2-9921edf073be,LIST_ACCOUNTS,hbciListAccounts,false +39551,bbd011c8-1f9d-45ff-bbd2-9921edf073be,LIST_TRANSACTIONS,hbciListTransactions,false +39552,bbd011c8-1f9d-45ff-bbd2-9921edf073be,AUTHORIZATION,,false +39553,bbd011c8-1f9d-45ff-bbd2-9921edf073be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39554,bbd011c8-1f9d-45ff-bbd2-9921edf073be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39555,bbd011c8-1f9d-45ff-bbd2-9921edf073be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39556,8bc84509-0617-457f-aa57-dfe83efc1c8e,LIST_ACCOUNTS,xs2aListAccounts,true -39557,8bc84509-0617-457f-aa57-dfe83efc1c8e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39557,8bc84509-0617-457f-aa57-dfe83efc1c8e,LIST_TRANSACTIONS,xs2aListTransactions,true 39558,8bc84509-0617-457f-aa57-dfe83efc1c8e,AUTHORIZATION,,true 39559,8bc84509-0617-457f-aa57-dfe83efc1c8e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39560,8bc84509-0617-457f-aa57-dfe83efc1c8e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39561,8bc84509-0617-457f-aa57-dfe83efc1c8e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39562,554f9a70-fd95-4e01-8082-34041f404f73,LIST_ACCOUNTS,hbciListAccounts,false -39563,554f9a70-fd95-4e01-8082-34041f404f73,LIST_TRANSACTIONS,hbciListTransactions,false -39564,554f9a70-fd95-4e01-8082-34041f404f73,AUTHORIZATION,,false -39565,554f9a70-fd95-4e01-8082-34041f404f73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39566,554f9a70-fd95-4e01-8082-34041f404f73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39567,554f9a70-fd95-4e01-8082-34041f404f73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39562,cda3cecc-1e14-48eb-b562-377900581399,LIST_ACCOUNTS,hbciListAccounts,false +39563,cda3cecc-1e14-48eb-b562-377900581399,LIST_TRANSACTIONS,hbciListTransactions,false +39564,cda3cecc-1e14-48eb-b562-377900581399,AUTHORIZATION,,false +39565,cda3cecc-1e14-48eb-b562-377900581399,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39566,cda3cecc-1e14-48eb-b562-377900581399,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39567,cda3cecc-1e14-48eb-b562-377900581399,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39568,fa3812c2-76a8-47a2-b7e1-e122c4267384,LIST_ACCOUNTS,xs2aListAccounts,true -39569,fa3812c2-76a8-47a2-b7e1-e122c4267384,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39569,fa3812c2-76a8-47a2-b7e1-e122c4267384,LIST_TRANSACTIONS,xs2aListTransactions,true 39570,fa3812c2-76a8-47a2-b7e1-e122c4267384,AUTHORIZATION,,true 39571,fa3812c2-76a8-47a2-b7e1-e122c4267384,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39572,fa3812c2-76a8-47a2-b7e1-e122c4267384,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39573,fa3812c2-76a8-47a2-b7e1-e122c4267384,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39574,56b4fa8c-4a38-4b2e-b3ef-612d02900525,LIST_ACCOUNTS,hbciListAccounts,false -39575,56b4fa8c-4a38-4b2e-b3ef-612d02900525,LIST_TRANSACTIONS,hbciListTransactions,false -39576,56b4fa8c-4a38-4b2e-b3ef-612d02900525,AUTHORIZATION,,false -39577,56b4fa8c-4a38-4b2e-b3ef-612d02900525,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39578,56b4fa8c-4a38-4b2e-b3ef-612d02900525,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39579,56b4fa8c-4a38-4b2e-b3ef-612d02900525,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39574,fa61ccd7-7633-4462-9b6d-d7feaf043f17,LIST_ACCOUNTS,hbciListAccounts,false +39575,fa61ccd7-7633-4462-9b6d-d7feaf043f17,LIST_TRANSACTIONS,hbciListTransactions,false +39576,fa61ccd7-7633-4462-9b6d-d7feaf043f17,AUTHORIZATION,,false +39577,fa61ccd7-7633-4462-9b6d-d7feaf043f17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39578,fa61ccd7-7633-4462-9b6d-d7feaf043f17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39579,fa61ccd7-7633-4462-9b6d-d7feaf043f17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39580,9bb5bdc7-0812-4029-974e-2928d315aae5,LIST_ACCOUNTS,xs2aListAccounts,true -39581,9bb5bdc7-0812-4029-974e-2928d315aae5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39581,9bb5bdc7-0812-4029-974e-2928d315aae5,LIST_TRANSACTIONS,xs2aListTransactions,true 39582,9bb5bdc7-0812-4029-974e-2928d315aae5,AUTHORIZATION,,true 39583,9bb5bdc7-0812-4029-974e-2928d315aae5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39584,9bb5bdc7-0812-4029-974e-2928d315aae5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39585,9bb5bdc7-0812-4029-974e-2928d315aae5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39586,f3947e0c-01c7-461f-a827-9284b35957e9,LIST_ACCOUNTS,hbciListAccounts,false -39587,f3947e0c-01c7-461f-a827-9284b35957e9,LIST_TRANSACTIONS,hbciListTransactions,false -39588,f3947e0c-01c7-461f-a827-9284b35957e9,AUTHORIZATION,,false -39589,f3947e0c-01c7-461f-a827-9284b35957e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39590,f3947e0c-01c7-461f-a827-9284b35957e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39591,f3947e0c-01c7-461f-a827-9284b35957e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39586,d16519ac-4fd6-4ffd-bf27-8b6d5cf461cc,LIST_ACCOUNTS,hbciListAccounts,false +39587,d16519ac-4fd6-4ffd-bf27-8b6d5cf461cc,LIST_TRANSACTIONS,hbciListTransactions,false +39588,d16519ac-4fd6-4ffd-bf27-8b6d5cf461cc,AUTHORIZATION,,false +39589,d16519ac-4fd6-4ffd-bf27-8b6d5cf461cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39590,d16519ac-4fd6-4ffd-bf27-8b6d5cf461cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39591,d16519ac-4fd6-4ffd-bf27-8b6d5cf461cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39592,4689ab71-371d-47a3-adb6-a70a1682c260,LIST_ACCOUNTS,xs2aListAccounts,true -39593,4689ab71-371d-47a3-adb6-a70a1682c260,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39593,4689ab71-371d-47a3-adb6-a70a1682c260,LIST_TRANSACTIONS,xs2aListTransactions,true 39594,4689ab71-371d-47a3-adb6-a70a1682c260,AUTHORIZATION,,true 39595,4689ab71-371d-47a3-adb6-a70a1682c260,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39596,4689ab71-371d-47a3-adb6-a70a1682c260,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39597,4689ab71-371d-47a3-adb6-a70a1682c260,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39598,ebc7806e-5c07-4273-88be-75e55674f79b,LIST_ACCOUNTS,hbciListAccounts,false -39599,ebc7806e-5c07-4273-88be-75e55674f79b,LIST_TRANSACTIONS,hbciListTransactions,false -39600,ebc7806e-5c07-4273-88be-75e55674f79b,AUTHORIZATION,,false -39601,ebc7806e-5c07-4273-88be-75e55674f79b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39602,ebc7806e-5c07-4273-88be-75e55674f79b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39603,ebc7806e-5c07-4273-88be-75e55674f79b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39598,2553f228-6354-4b8b-b733-c3c64c91d87f,LIST_ACCOUNTS,hbciListAccounts,false +39599,2553f228-6354-4b8b-b733-c3c64c91d87f,LIST_TRANSACTIONS,hbciListTransactions,false +39600,2553f228-6354-4b8b-b733-c3c64c91d87f,AUTHORIZATION,,false +39601,2553f228-6354-4b8b-b733-c3c64c91d87f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39602,2553f228-6354-4b8b-b733-c3c64c91d87f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39603,2553f228-6354-4b8b-b733-c3c64c91d87f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39604,2c7b9a84-206b-475f-bdb3-101ce40b82b2,LIST_ACCOUNTS,xs2aListAccounts,true -39605,2c7b9a84-206b-475f-bdb3-101ce40b82b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39605,2c7b9a84-206b-475f-bdb3-101ce40b82b2,LIST_TRANSACTIONS,xs2aListTransactions,true 39606,2c7b9a84-206b-475f-bdb3-101ce40b82b2,AUTHORIZATION,,true 39607,2c7b9a84-206b-475f-bdb3-101ce40b82b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39608,2c7b9a84-206b-475f-bdb3-101ce40b82b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39609,2c7b9a84-206b-475f-bdb3-101ce40b82b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39610,0f397768-fcc2-464a-92b0-922bcf3626b2,LIST_ACCOUNTS,hbciListAccounts,false -39611,0f397768-fcc2-464a-92b0-922bcf3626b2,LIST_TRANSACTIONS,hbciListTransactions,false -39612,0f397768-fcc2-464a-92b0-922bcf3626b2,AUTHORIZATION,,false -39613,0f397768-fcc2-464a-92b0-922bcf3626b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39614,0f397768-fcc2-464a-92b0-922bcf3626b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39615,0f397768-fcc2-464a-92b0-922bcf3626b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39610,6a98a710-15cf-48cb-88b4-f99036415ca0,LIST_ACCOUNTS,hbciListAccounts,false +39611,6a98a710-15cf-48cb-88b4-f99036415ca0,LIST_TRANSACTIONS,hbciListTransactions,false +39612,6a98a710-15cf-48cb-88b4-f99036415ca0,AUTHORIZATION,,false +39613,6a98a710-15cf-48cb-88b4-f99036415ca0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39614,6a98a710-15cf-48cb-88b4-f99036415ca0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39615,6a98a710-15cf-48cb-88b4-f99036415ca0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39616,cdc52b5a-9835-422d-861f-456eff0111ec,LIST_ACCOUNTS,xs2aListAccounts,true -39617,cdc52b5a-9835-422d-861f-456eff0111ec,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39617,cdc52b5a-9835-422d-861f-456eff0111ec,LIST_TRANSACTIONS,xs2aListTransactions,true 39618,cdc52b5a-9835-422d-861f-456eff0111ec,AUTHORIZATION,,true 39619,cdc52b5a-9835-422d-861f-456eff0111ec,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39620,cdc52b5a-9835-422d-861f-456eff0111ec,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39621,cdc52b5a-9835-422d-861f-456eff0111ec,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39622,d559230e-bcea-4ded-8f8d-8d35dcb568c8,LIST_ACCOUNTS,hbciListAccounts,false -39623,d559230e-bcea-4ded-8f8d-8d35dcb568c8,LIST_TRANSACTIONS,hbciListTransactions,false -39624,d559230e-bcea-4ded-8f8d-8d35dcb568c8,AUTHORIZATION,,false -39625,d559230e-bcea-4ded-8f8d-8d35dcb568c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39626,d559230e-bcea-4ded-8f8d-8d35dcb568c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39627,d559230e-bcea-4ded-8f8d-8d35dcb568c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39622,b143e96b-a97a-4c72-a1a7-cf2ccee90da7,LIST_ACCOUNTS,hbciListAccounts,false +39623,b143e96b-a97a-4c72-a1a7-cf2ccee90da7,LIST_TRANSACTIONS,hbciListTransactions,false +39624,b143e96b-a97a-4c72-a1a7-cf2ccee90da7,AUTHORIZATION,,false +39625,b143e96b-a97a-4c72-a1a7-cf2ccee90da7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39626,b143e96b-a97a-4c72-a1a7-cf2ccee90da7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39627,b143e96b-a97a-4c72-a1a7-cf2ccee90da7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39628,c6be39b3-99e1-47d5-8f4a-dd0b40badca6,LIST_ACCOUNTS,xs2aListAccounts,true -39629,c6be39b3-99e1-47d5-8f4a-dd0b40badca6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39629,c6be39b3-99e1-47d5-8f4a-dd0b40badca6,LIST_TRANSACTIONS,xs2aListTransactions,true 39630,c6be39b3-99e1-47d5-8f4a-dd0b40badca6,AUTHORIZATION,,true 39631,c6be39b3-99e1-47d5-8f4a-dd0b40badca6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39632,c6be39b3-99e1-47d5-8f4a-dd0b40badca6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39633,c6be39b3-99e1-47d5-8f4a-dd0b40badca6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39634,73364ba7-42d6-476b-8c44-9e1e20825ae5,LIST_ACCOUNTS,hbciListAccounts,false -39635,73364ba7-42d6-476b-8c44-9e1e20825ae5,LIST_TRANSACTIONS,hbciListTransactions,false -39636,73364ba7-42d6-476b-8c44-9e1e20825ae5,AUTHORIZATION,,false -39637,73364ba7-42d6-476b-8c44-9e1e20825ae5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39638,73364ba7-42d6-476b-8c44-9e1e20825ae5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39639,73364ba7-42d6-476b-8c44-9e1e20825ae5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39634,6443f94e-f1d3-49de-a7f3-73667fd62859,LIST_ACCOUNTS,hbciListAccounts,false +39635,6443f94e-f1d3-49de-a7f3-73667fd62859,LIST_TRANSACTIONS,hbciListTransactions,false +39636,6443f94e-f1d3-49de-a7f3-73667fd62859,AUTHORIZATION,,false +39637,6443f94e-f1d3-49de-a7f3-73667fd62859,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39638,6443f94e-f1d3-49de-a7f3-73667fd62859,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39639,6443f94e-f1d3-49de-a7f3-73667fd62859,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39640,d699bf5b-fc94-41ca-910d-c4fc26e275cd,LIST_ACCOUNTS,xs2aListAccounts,true -39641,d699bf5b-fc94-41ca-910d-c4fc26e275cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39641,d699bf5b-fc94-41ca-910d-c4fc26e275cd,LIST_TRANSACTIONS,xs2aListTransactions,true 39642,d699bf5b-fc94-41ca-910d-c4fc26e275cd,AUTHORIZATION,,true 39643,d699bf5b-fc94-41ca-910d-c4fc26e275cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39644,d699bf5b-fc94-41ca-910d-c4fc26e275cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39645,d699bf5b-fc94-41ca-910d-c4fc26e275cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39646,e59cd121-42c3-4b25-9d96-0e2a0ce47563,LIST_ACCOUNTS,hbciListAccounts,false -39647,e59cd121-42c3-4b25-9d96-0e2a0ce47563,LIST_TRANSACTIONS,hbciListTransactions,false -39648,e59cd121-42c3-4b25-9d96-0e2a0ce47563,AUTHORIZATION,,false -39649,e59cd121-42c3-4b25-9d96-0e2a0ce47563,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39650,e59cd121-42c3-4b25-9d96-0e2a0ce47563,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39651,e59cd121-42c3-4b25-9d96-0e2a0ce47563,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39646,2da94ea7-c9c8-4f39-943e-dfabd1513987,LIST_ACCOUNTS,hbciListAccounts,false +39647,2da94ea7-c9c8-4f39-943e-dfabd1513987,LIST_TRANSACTIONS,hbciListTransactions,false +39648,2da94ea7-c9c8-4f39-943e-dfabd1513987,AUTHORIZATION,,false +39649,2da94ea7-c9c8-4f39-943e-dfabd1513987,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39650,2da94ea7-c9c8-4f39-943e-dfabd1513987,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39651,2da94ea7-c9c8-4f39-943e-dfabd1513987,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39652,3e9fde00-d185-41f2-9265-8e7f9d1c21b5,LIST_ACCOUNTS,xs2aListAccounts,true -39653,3e9fde00-d185-41f2-9265-8e7f9d1c21b5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39653,3e9fde00-d185-41f2-9265-8e7f9d1c21b5,LIST_TRANSACTIONS,xs2aListTransactions,true 39654,3e9fde00-d185-41f2-9265-8e7f9d1c21b5,AUTHORIZATION,,true 39655,3e9fde00-d185-41f2-9265-8e7f9d1c21b5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39656,3e9fde00-d185-41f2-9265-8e7f9d1c21b5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39657,3e9fde00-d185-41f2-9265-8e7f9d1c21b5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39658,8f3699a2-0218-4661-a8ca-a1041923e162,LIST_ACCOUNTS,hbciListAccounts,false -39659,8f3699a2-0218-4661-a8ca-a1041923e162,LIST_TRANSACTIONS,hbciListTransactions,false -39660,8f3699a2-0218-4661-a8ca-a1041923e162,AUTHORIZATION,,false -39661,8f3699a2-0218-4661-a8ca-a1041923e162,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39662,8f3699a2-0218-4661-a8ca-a1041923e162,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39663,8f3699a2-0218-4661-a8ca-a1041923e162,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39658,4d7672b8-7653-41c8-a142-932bbb09bac7,LIST_ACCOUNTS,hbciListAccounts,false +39659,4d7672b8-7653-41c8-a142-932bbb09bac7,LIST_TRANSACTIONS,hbciListTransactions,false +39660,4d7672b8-7653-41c8-a142-932bbb09bac7,AUTHORIZATION,,false +39661,4d7672b8-7653-41c8-a142-932bbb09bac7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39662,4d7672b8-7653-41c8-a142-932bbb09bac7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39663,4d7672b8-7653-41c8-a142-932bbb09bac7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39664,13749d25-110b-4d5e-a13a-b1cf1d3bb998,LIST_ACCOUNTS,xs2aListAccounts,true -39665,13749d25-110b-4d5e-a13a-b1cf1d3bb998,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39665,13749d25-110b-4d5e-a13a-b1cf1d3bb998,LIST_TRANSACTIONS,xs2aListTransactions,true 39666,13749d25-110b-4d5e-a13a-b1cf1d3bb998,AUTHORIZATION,,true 39667,13749d25-110b-4d5e-a13a-b1cf1d3bb998,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39668,13749d25-110b-4d5e-a13a-b1cf1d3bb998,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39669,13749d25-110b-4d5e-a13a-b1cf1d3bb998,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39670,a43bdab9-5aff-4b0d-868f-b4da66ccefd6,LIST_ACCOUNTS,hbciListAccounts,false -39671,a43bdab9-5aff-4b0d-868f-b4da66ccefd6,LIST_TRANSACTIONS,hbciListTransactions,false -39672,a43bdab9-5aff-4b0d-868f-b4da66ccefd6,AUTHORIZATION,,false -39673,a43bdab9-5aff-4b0d-868f-b4da66ccefd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39674,a43bdab9-5aff-4b0d-868f-b4da66ccefd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39675,a43bdab9-5aff-4b0d-868f-b4da66ccefd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39670,1ea63ee3-6bad-4dc0-a3f2-f1a4fa3267d1,LIST_ACCOUNTS,hbciListAccounts,false +39671,1ea63ee3-6bad-4dc0-a3f2-f1a4fa3267d1,LIST_TRANSACTIONS,hbciListTransactions,false +39672,1ea63ee3-6bad-4dc0-a3f2-f1a4fa3267d1,AUTHORIZATION,,false +39673,1ea63ee3-6bad-4dc0-a3f2-f1a4fa3267d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39674,1ea63ee3-6bad-4dc0-a3f2-f1a4fa3267d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39675,1ea63ee3-6bad-4dc0-a3f2-f1a4fa3267d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39676,e2901306-dacd-4cee-b3da-2746048d395e,LIST_ACCOUNTS,xs2aListAccounts,true -39677,e2901306-dacd-4cee-b3da-2746048d395e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39677,e2901306-dacd-4cee-b3da-2746048d395e,LIST_TRANSACTIONS,xs2aListTransactions,true 39678,e2901306-dacd-4cee-b3da-2746048d395e,AUTHORIZATION,,true 39679,e2901306-dacd-4cee-b3da-2746048d395e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39680,e2901306-dacd-4cee-b3da-2746048d395e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39681,e2901306-dacd-4cee-b3da-2746048d395e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39682,2e619809-2455-42da-83fd-ea0079cd4f47,LIST_ACCOUNTS,hbciListAccounts,false -39683,2e619809-2455-42da-83fd-ea0079cd4f47,LIST_TRANSACTIONS,hbciListTransactions,false -39684,2e619809-2455-42da-83fd-ea0079cd4f47,AUTHORIZATION,,false -39685,2e619809-2455-42da-83fd-ea0079cd4f47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39686,2e619809-2455-42da-83fd-ea0079cd4f47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39687,2e619809-2455-42da-83fd-ea0079cd4f47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39682,fdb9bd34-d8fe-436e-b7ed-1412e7192e8d,LIST_ACCOUNTS,hbciListAccounts,false +39683,fdb9bd34-d8fe-436e-b7ed-1412e7192e8d,LIST_TRANSACTIONS,hbciListTransactions,false +39684,fdb9bd34-d8fe-436e-b7ed-1412e7192e8d,AUTHORIZATION,,false +39685,fdb9bd34-d8fe-436e-b7ed-1412e7192e8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39686,fdb9bd34-d8fe-436e-b7ed-1412e7192e8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39687,fdb9bd34-d8fe-436e-b7ed-1412e7192e8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39688,f77b753c-5d3a-48d2-94dd-b0386c088b67,LIST_ACCOUNTS,xs2aListAccounts,true -39689,f77b753c-5d3a-48d2-94dd-b0386c088b67,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39689,f77b753c-5d3a-48d2-94dd-b0386c088b67,LIST_TRANSACTIONS,xs2aListTransactions,true 39690,f77b753c-5d3a-48d2-94dd-b0386c088b67,AUTHORIZATION,,true 39691,f77b753c-5d3a-48d2-94dd-b0386c088b67,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39692,f77b753c-5d3a-48d2-94dd-b0386c088b67,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39693,f77b753c-5d3a-48d2-94dd-b0386c088b67,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39694,7c9f141d-eda1-4b1b-a909-92b058a5e350,LIST_ACCOUNTS,hbciListAccounts,false -39695,7c9f141d-eda1-4b1b-a909-92b058a5e350,LIST_TRANSACTIONS,hbciListTransactions,false -39696,7c9f141d-eda1-4b1b-a909-92b058a5e350,AUTHORIZATION,,false -39697,7c9f141d-eda1-4b1b-a909-92b058a5e350,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39698,7c9f141d-eda1-4b1b-a909-92b058a5e350,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39699,7c9f141d-eda1-4b1b-a909-92b058a5e350,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39694,ba6a9d6f-a9d3-459a-a334-aa128e053ad1,LIST_ACCOUNTS,hbciListAccounts,false +39695,ba6a9d6f-a9d3-459a-a334-aa128e053ad1,LIST_TRANSACTIONS,hbciListTransactions,false +39696,ba6a9d6f-a9d3-459a-a334-aa128e053ad1,AUTHORIZATION,,false +39697,ba6a9d6f-a9d3-459a-a334-aa128e053ad1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39698,ba6a9d6f-a9d3-459a-a334-aa128e053ad1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39699,ba6a9d6f-a9d3-459a-a334-aa128e053ad1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39700,4bb03b9d-2549-4324-8acb-09587d2802ae,LIST_ACCOUNTS,xs2aListAccounts,true -39701,4bb03b9d-2549-4324-8acb-09587d2802ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39701,4bb03b9d-2549-4324-8acb-09587d2802ae,LIST_TRANSACTIONS,xs2aListTransactions,true 39702,4bb03b9d-2549-4324-8acb-09587d2802ae,AUTHORIZATION,,true 39703,4bb03b9d-2549-4324-8acb-09587d2802ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39704,4bb03b9d-2549-4324-8acb-09587d2802ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39705,4bb03b9d-2549-4324-8acb-09587d2802ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39706,ce168978-a63b-4647-925a-4562c817bef9,LIST_ACCOUNTS,hbciListAccounts,false -39707,ce168978-a63b-4647-925a-4562c817bef9,LIST_TRANSACTIONS,hbciListTransactions,false -39708,ce168978-a63b-4647-925a-4562c817bef9,AUTHORIZATION,,false -39709,ce168978-a63b-4647-925a-4562c817bef9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39710,ce168978-a63b-4647-925a-4562c817bef9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39711,ce168978-a63b-4647-925a-4562c817bef9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39706,7fe8810c-2dcd-45c3-93f1-3a94ac889ed9,LIST_ACCOUNTS,hbciListAccounts,false +39707,7fe8810c-2dcd-45c3-93f1-3a94ac889ed9,LIST_TRANSACTIONS,hbciListTransactions,false +39708,7fe8810c-2dcd-45c3-93f1-3a94ac889ed9,AUTHORIZATION,,false +39709,7fe8810c-2dcd-45c3-93f1-3a94ac889ed9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39710,7fe8810c-2dcd-45c3-93f1-3a94ac889ed9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39711,7fe8810c-2dcd-45c3-93f1-3a94ac889ed9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39712,d0c7efd0-839d-448e-96ee-15e6ebf02eca,LIST_ACCOUNTS,xs2aListAccounts,true -39713,d0c7efd0-839d-448e-96ee-15e6ebf02eca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39713,d0c7efd0-839d-448e-96ee-15e6ebf02eca,LIST_TRANSACTIONS,xs2aListTransactions,true 39714,d0c7efd0-839d-448e-96ee-15e6ebf02eca,AUTHORIZATION,,true 39715,d0c7efd0-839d-448e-96ee-15e6ebf02eca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39716,d0c7efd0-839d-448e-96ee-15e6ebf02eca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39717,d0c7efd0-839d-448e-96ee-15e6ebf02eca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39718,648e1a4d-f595-4927-b9ed-a7a46e8319fa,LIST_ACCOUNTS,hbciListAccounts,false -39719,648e1a4d-f595-4927-b9ed-a7a46e8319fa,LIST_TRANSACTIONS,hbciListTransactions,false -39720,648e1a4d-f595-4927-b9ed-a7a46e8319fa,AUTHORIZATION,,false -39721,648e1a4d-f595-4927-b9ed-a7a46e8319fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39722,648e1a4d-f595-4927-b9ed-a7a46e8319fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39723,648e1a4d-f595-4927-b9ed-a7a46e8319fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39718,55d1bc89-8c62-4ef9-b1a4-04f1dc444ddb,LIST_ACCOUNTS,hbciListAccounts,false +39719,55d1bc89-8c62-4ef9-b1a4-04f1dc444ddb,LIST_TRANSACTIONS,hbciListTransactions,false +39720,55d1bc89-8c62-4ef9-b1a4-04f1dc444ddb,AUTHORIZATION,,false +39721,55d1bc89-8c62-4ef9-b1a4-04f1dc444ddb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39722,55d1bc89-8c62-4ef9-b1a4-04f1dc444ddb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39723,55d1bc89-8c62-4ef9-b1a4-04f1dc444ddb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39724,99b613d9-94c6-41cb-ab57-89c23582a29e,LIST_ACCOUNTS,xs2aListAccounts,true -39725,99b613d9-94c6-41cb-ab57-89c23582a29e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39725,99b613d9-94c6-41cb-ab57-89c23582a29e,LIST_TRANSACTIONS,xs2aListTransactions,true 39726,99b613d9-94c6-41cb-ab57-89c23582a29e,AUTHORIZATION,,true 39727,99b613d9-94c6-41cb-ab57-89c23582a29e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39728,99b613d9-94c6-41cb-ab57-89c23582a29e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39729,99b613d9-94c6-41cb-ab57-89c23582a29e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39730,0206a0c4-973e-4a98-afa2-d7a2c3972fd6,LIST_ACCOUNTS,hbciListAccounts,false -39731,0206a0c4-973e-4a98-afa2-d7a2c3972fd6,LIST_TRANSACTIONS,hbciListTransactions,false -39732,0206a0c4-973e-4a98-afa2-d7a2c3972fd6,AUTHORIZATION,,false -39733,0206a0c4-973e-4a98-afa2-d7a2c3972fd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39734,0206a0c4-973e-4a98-afa2-d7a2c3972fd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39735,0206a0c4-973e-4a98-afa2-d7a2c3972fd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39730,1ee9233d-d541-4a8b-a61e-447e26d38371,LIST_ACCOUNTS,hbciListAccounts,false +39731,1ee9233d-d541-4a8b-a61e-447e26d38371,LIST_TRANSACTIONS,hbciListTransactions,false +39732,1ee9233d-d541-4a8b-a61e-447e26d38371,AUTHORIZATION,,false +39733,1ee9233d-d541-4a8b-a61e-447e26d38371,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39734,1ee9233d-d541-4a8b-a61e-447e26d38371,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39735,1ee9233d-d541-4a8b-a61e-447e26d38371,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39736,c49bdd74-8e88-4393-b093-94e0cb12bae1,LIST_ACCOUNTS,xs2aListAccounts,true -39737,c49bdd74-8e88-4393-b093-94e0cb12bae1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39737,c49bdd74-8e88-4393-b093-94e0cb12bae1,LIST_TRANSACTIONS,xs2aListTransactions,true 39738,c49bdd74-8e88-4393-b093-94e0cb12bae1,AUTHORIZATION,,true 39739,c49bdd74-8e88-4393-b093-94e0cb12bae1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39740,c49bdd74-8e88-4393-b093-94e0cb12bae1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39741,c49bdd74-8e88-4393-b093-94e0cb12bae1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39742,f4aabc9c-e5b3-4d1a-9689-f4bfe66074c9,LIST_ACCOUNTS,hbciListAccounts,false -39743,f4aabc9c-e5b3-4d1a-9689-f4bfe66074c9,LIST_TRANSACTIONS,hbciListTransactions,false -39744,f4aabc9c-e5b3-4d1a-9689-f4bfe66074c9,AUTHORIZATION,,false -39745,f4aabc9c-e5b3-4d1a-9689-f4bfe66074c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39746,f4aabc9c-e5b3-4d1a-9689-f4bfe66074c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39747,f4aabc9c-e5b3-4d1a-9689-f4bfe66074c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39742,df108cc5-5777-4054-805f-af636e618af4,LIST_ACCOUNTS,hbciListAccounts,false +39743,df108cc5-5777-4054-805f-af636e618af4,LIST_TRANSACTIONS,hbciListTransactions,false +39744,df108cc5-5777-4054-805f-af636e618af4,AUTHORIZATION,,false +39745,df108cc5-5777-4054-805f-af636e618af4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39746,df108cc5-5777-4054-805f-af636e618af4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39747,df108cc5-5777-4054-805f-af636e618af4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39748,da7489f8-8908-4001-ad87-9090465f10ae,LIST_ACCOUNTS,xs2aListAccounts,true -39749,da7489f8-8908-4001-ad87-9090465f10ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39749,da7489f8-8908-4001-ad87-9090465f10ae,LIST_TRANSACTIONS,xs2aListTransactions,true 39750,da7489f8-8908-4001-ad87-9090465f10ae,AUTHORIZATION,,true 39751,da7489f8-8908-4001-ad87-9090465f10ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39752,da7489f8-8908-4001-ad87-9090465f10ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39753,da7489f8-8908-4001-ad87-9090465f10ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39754,e1d9de9b-b59b-401b-8ef4-25fdc6e2bc23,LIST_ACCOUNTS,hbciListAccounts,false -39755,e1d9de9b-b59b-401b-8ef4-25fdc6e2bc23,LIST_TRANSACTIONS,hbciListTransactions,false -39756,e1d9de9b-b59b-401b-8ef4-25fdc6e2bc23,AUTHORIZATION,,false -39757,e1d9de9b-b59b-401b-8ef4-25fdc6e2bc23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39758,e1d9de9b-b59b-401b-8ef4-25fdc6e2bc23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39759,e1d9de9b-b59b-401b-8ef4-25fdc6e2bc23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39754,a04713a5-de8d-4813-af41-ea143d118aae,LIST_ACCOUNTS,hbciListAccounts,false +39755,a04713a5-de8d-4813-af41-ea143d118aae,LIST_TRANSACTIONS,hbciListTransactions,false +39756,a04713a5-de8d-4813-af41-ea143d118aae,AUTHORIZATION,,false +39757,a04713a5-de8d-4813-af41-ea143d118aae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39758,a04713a5-de8d-4813-af41-ea143d118aae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39759,a04713a5-de8d-4813-af41-ea143d118aae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39760,08aeb377-7efc-45cc-907f-f08b6460608c,LIST_ACCOUNTS,xs2aListAccounts,true -39761,08aeb377-7efc-45cc-907f-f08b6460608c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39761,08aeb377-7efc-45cc-907f-f08b6460608c,LIST_TRANSACTIONS,xs2aListTransactions,true 39762,08aeb377-7efc-45cc-907f-f08b6460608c,AUTHORIZATION,,true 39763,08aeb377-7efc-45cc-907f-f08b6460608c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39764,08aeb377-7efc-45cc-907f-f08b6460608c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39765,08aeb377-7efc-45cc-907f-f08b6460608c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39766,26be6966-419b-41e8-8fcc-7af80097455d,LIST_ACCOUNTS,hbciListAccounts,false -39767,26be6966-419b-41e8-8fcc-7af80097455d,LIST_TRANSACTIONS,hbciListTransactions,false -39768,26be6966-419b-41e8-8fcc-7af80097455d,AUTHORIZATION,,false -39769,26be6966-419b-41e8-8fcc-7af80097455d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39770,26be6966-419b-41e8-8fcc-7af80097455d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39771,26be6966-419b-41e8-8fcc-7af80097455d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39766,36f307ad-5c23-44e9-8ffe-393abc907b31,LIST_ACCOUNTS,hbciListAccounts,false +39767,36f307ad-5c23-44e9-8ffe-393abc907b31,LIST_TRANSACTIONS,hbciListTransactions,false +39768,36f307ad-5c23-44e9-8ffe-393abc907b31,AUTHORIZATION,,false +39769,36f307ad-5c23-44e9-8ffe-393abc907b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39770,36f307ad-5c23-44e9-8ffe-393abc907b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39771,36f307ad-5c23-44e9-8ffe-393abc907b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39772,23aca52f-9626-468a-bcd0-86d6fddd1bb1,LIST_ACCOUNTS,xs2aListAccounts,true -39773,23aca52f-9626-468a-bcd0-86d6fddd1bb1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39773,23aca52f-9626-468a-bcd0-86d6fddd1bb1,LIST_TRANSACTIONS,xs2aListTransactions,true 39774,23aca52f-9626-468a-bcd0-86d6fddd1bb1,AUTHORIZATION,,true 39775,23aca52f-9626-468a-bcd0-86d6fddd1bb1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39776,23aca52f-9626-468a-bcd0-86d6fddd1bb1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39777,23aca52f-9626-468a-bcd0-86d6fddd1bb1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39778,8bcbb766-e15e-4986-8b96-c198ade29095,LIST_ACCOUNTS,hbciListAccounts,false -39779,8bcbb766-e15e-4986-8b96-c198ade29095,LIST_TRANSACTIONS,hbciListTransactions,false -39780,8bcbb766-e15e-4986-8b96-c198ade29095,AUTHORIZATION,,false -39781,8bcbb766-e15e-4986-8b96-c198ade29095,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39782,8bcbb766-e15e-4986-8b96-c198ade29095,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39783,8bcbb766-e15e-4986-8b96-c198ade29095,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39778,3040943c-b071-4d45-a60c-d1a871530192,LIST_ACCOUNTS,hbciListAccounts,false +39779,3040943c-b071-4d45-a60c-d1a871530192,LIST_TRANSACTIONS,hbciListTransactions,false +39780,3040943c-b071-4d45-a60c-d1a871530192,AUTHORIZATION,,false +39781,3040943c-b071-4d45-a60c-d1a871530192,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39782,3040943c-b071-4d45-a60c-d1a871530192,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39783,3040943c-b071-4d45-a60c-d1a871530192,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39784,a1715677-826e-4d6a-a801-96177c4bc3a0,LIST_ACCOUNTS,xs2aListAccounts,true -39785,a1715677-826e-4d6a-a801-96177c4bc3a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39785,a1715677-826e-4d6a-a801-96177c4bc3a0,LIST_TRANSACTIONS,xs2aListTransactions,true 39786,a1715677-826e-4d6a-a801-96177c4bc3a0,AUTHORIZATION,,true 39787,a1715677-826e-4d6a-a801-96177c4bc3a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39788,a1715677-826e-4d6a-a801-96177c4bc3a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39789,a1715677-826e-4d6a-a801-96177c4bc3a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39790,696605c4-c97e-48dc-8e6c-fb51e77f0998,LIST_ACCOUNTS,hbciListAccounts,false -39791,696605c4-c97e-48dc-8e6c-fb51e77f0998,LIST_TRANSACTIONS,hbciListTransactions,false -39792,696605c4-c97e-48dc-8e6c-fb51e77f0998,AUTHORIZATION,,false -39793,696605c4-c97e-48dc-8e6c-fb51e77f0998,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39794,696605c4-c97e-48dc-8e6c-fb51e77f0998,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39795,696605c4-c97e-48dc-8e6c-fb51e77f0998,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39790,683eea3e-bb84-4678-8750-273327a760be,LIST_ACCOUNTS,hbciListAccounts,false +39791,683eea3e-bb84-4678-8750-273327a760be,LIST_TRANSACTIONS,hbciListTransactions,false +39792,683eea3e-bb84-4678-8750-273327a760be,AUTHORIZATION,,false +39793,683eea3e-bb84-4678-8750-273327a760be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39794,683eea3e-bb84-4678-8750-273327a760be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39795,683eea3e-bb84-4678-8750-273327a760be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39796,cd65ba84-aa35-43d0-a192-205eb6f40d78,LIST_ACCOUNTS,xs2aListAccounts,true -39797,cd65ba84-aa35-43d0-a192-205eb6f40d78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39797,cd65ba84-aa35-43d0-a192-205eb6f40d78,LIST_TRANSACTIONS,xs2aListTransactions,true 39798,cd65ba84-aa35-43d0-a192-205eb6f40d78,AUTHORIZATION,,true 39799,cd65ba84-aa35-43d0-a192-205eb6f40d78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39800,cd65ba84-aa35-43d0-a192-205eb6f40d78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39801,cd65ba84-aa35-43d0-a192-205eb6f40d78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39802,4ac64541-1e6a-47d9-834a-8db6e0010a41,LIST_ACCOUNTS,hbciListAccounts,false -39803,4ac64541-1e6a-47d9-834a-8db6e0010a41,LIST_TRANSACTIONS,hbciListTransactions,false -39804,4ac64541-1e6a-47d9-834a-8db6e0010a41,AUTHORIZATION,,false -39805,4ac64541-1e6a-47d9-834a-8db6e0010a41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39806,4ac64541-1e6a-47d9-834a-8db6e0010a41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39807,4ac64541-1e6a-47d9-834a-8db6e0010a41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39802,5dbbcc0f-766a-47d2-95da-28e3e765591a,LIST_ACCOUNTS,hbciListAccounts,false +39803,5dbbcc0f-766a-47d2-95da-28e3e765591a,LIST_TRANSACTIONS,hbciListTransactions,false +39804,5dbbcc0f-766a-47d2-95da-28e3e765591a,AUTHORIZATION,,false +39805,5dbbcc0f-766a-47d2-95da-28e3e765591a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39806,5dbbcc0f-766a-47d2-95da-28e3e765591a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39807,5dbbcc0f-766a-47d2-95da-28e3e765591a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39808,b2e5caee-d194-4d34-93e1-6df5a4ccbbe2,LIST_ACCOUNTS,xs2aListAccounts,true -39809,b2e5caee-d194-4d34-93e1-6df5a4ccbbe2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39809,b2e5caee-d194-4d34-93e1-6df5a4ccbbe2,LIST_TRANSACTIONS,xs2aListTransactions,true 39810,b2e5caee-d194-4d34-93e1-6df5a4ccbbe2,AUTHORIZATION,,true 39811,b2e5caee-d194-4d34-93e1-6df5a4ccbbe2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39812,b2e5caee-d194-4d34-93e1-6df5a4ccbbe2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39813,b2e5caee-d194-4d34-93e1-6df5a4ccbbe2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39814,c9b2f9af-0c85-4c8c-9163-19896521b381,LIST_ACCOUNTS,hbciListAccounts,false -39815,c9b2f9af-0c85-4c8c-9163-19896521b381,LIST_TRANSACTIONS,hbciListTransactions,false -39816,c9b2f9af-0c85-4c8c-9163-19896521b381,AUTHORIZATION,,false -39817,c9b2f9af-0c85-4c8c-9163-19896521b381,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39818,c9b2f9af-0c85-4c8c-9163-19896521b381,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39819,c9b2f9af-0c85-4c8c-9163-19896521b381,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39814,4873743a-89d1-4745-9266-9bbb3bf68a72,LIST_ACCOUNTS,hbciListAccounts,false +39815,4873743a-89d1-4745-9266-9bbb3bf68a72,LIST_TRANSACTIONS,hbciListTransactions,false +39816,4873743a-89d1-4745-9266-9bbb3bf68a72,AUTHORIZATION,,false +39817,4873743a-89d1-4745-9266-9bbb3bf68a72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39818,4873743a-89d1-4745-9266-9bbb3bf68a72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39819,4873743a-89d1-4745-9266-9bbb3bf68a72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39820,f16abac7-6eda-4e95-b2d8-6303d8698992,LIST_ACCOUNTS,xs2aListAccounts,true -39821,f16abac7-6eda-4e95-b2d8-6303d8698992,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39821,f16abac7-6eda-4e95-b2d8-6303d8698992,LIST_TRANSACTIONS,xs2aListTransactions,true 39822,f16abac7-6eda-4e95-b2d8-6303d8698992,AUTHORIZATION,,true 39823,f16abac7-6eda-4e95-b2d8-6303d8698992,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39824,f16abac7-6eda-4e95-b2d8-6303d8698992,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39825,f16abac7-6eda-4e95-b2d8-6303d8698992,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39826,e1274c1b-50e6-4bad-bd16-bbd4e366142e,LIST_ACCOUNTS,hbciListAccounts,false -39827,e1274c1b-50e6-4bad-bd16-bbd4e366142e,LIST_TRANSACTIONS,hbciListTransactions,false -39828,e1274c1b-50e6-4bad-bd16-bbd4e366142e,AUTHORIZATION,,false -39829,e1274c1b-50e6-4bad-bd16-bbd4e366142e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39830,e1274c1b-50e6-4bad-bd16-bbd4e366142e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39831,e1274c1b-50e6-4bad-bd16-bbd4e366142e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39826,b8b7f6ed-8a4a-4d0d-a146-d6f7c2a38e66,LIST_ACCOUNTS,hbciListAccounts,false +39827,b8b7f6ed-8a4a-4d0d-a146-d6f7c2a38e66,LIST_TRANSACTIONS,hbciListTransactions,false +39828,b8b7f6ed-8a4a-4d0d-a146-d6f7c2a38e66,AUTHORIZATION,,false +39829,b8b7f6ed-8a4a-4d0d-a146-d6f7c2a38e66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39830,b8b7f6ed-8a4a-4d0d-a146-d6f7c2a38e66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39831,b8b7f6ed-8a4a-4d0d-a146-d6f7c2a38e66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39832,3dcb667c-c646-4aef-9048-710077e5f104,LIST_ACCOUNTS,xs2aListAccounts,true -39833,3dcb667c-c646-4aef-9048-710077e5f104,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39833,3dcb667c-c646-4aef-9048-710077e5f104,LIST_TRANSACTIONS,xs2aListTransactions,true 39834,3dcb667c-c646-4aef-9048-710077e5f104,AUTHORIZATION,,true 39835,3dcb667c-c646-4aef-9048-710077e5f104,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39836,3dcb667c-c646-4aef-9048-710077e5f104,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39837,3dcb667c-c646-4aef-9048-710077e5f104,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39838,280993e9-ad08-4d49-9c62-2945ab5fbf90,LIST_ACCOUNTS,hbciListAccounts,false -39839,280993e9-ad08-4d49-9c62-2945ab5fbf90,LIST_TRANSACTIONS,hbciListTransactions,false -39840,280993e9-ad08-4d49-9c62-2945ab5fbf90,AUTHORIZATION,,false -39841,280993e9-ad08-4d49-9c62-2945ab5fbf90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39842,280993e9-ad08-4d49-9c62-2945ab5fbf90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39843,280993e9-ad08-4d49-9c62-2945ab5fbf90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39838,3ce227f9-c708-4645-95d9-0dbe2ffb8e10,LIST_ACCOUNTS,hbciListAccounts,false +39839,3ce227f9-c708-4645-95d9-0dbe2ffb8e10,LIST_TRANSACTIONS,hbciListTransactions,false +39840,3ce227f9-c708-4645-95d9-0dbe2ffb8e10,AUTHORIZATION,,false +39841,3ce227f9-c708-4645-95d9-0dbe2ffb8e10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39842,3ce227f9-c708-4645-95d9-0dbe2ffb8e10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39843,3ce227f9-c708-4645-95d9-0dbe2ffb8e10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39844,35b82294-eaf1-430c-8ba3-546d08ddc90c,LIST_ACCOUNTS,xs2aListAccounts,true -39845,35b82294-eaf1-430c-8ba3-546d08ddc90c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39845,35b82294-eaf1-430c-8ba3-546d08ddc90c,LIST_TRANSACTIONS,xs2aListTransactions,true 39846,35b82294-eaf1-430c-8ba3-546d08ddc90c,AUTHORIZATION,,true 39847,35b82294-eaf1-430c-8ba3-546d08ddc90c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39848,35b82294-eaf1-430c-8ba3-546d08ddc90c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39849,35b82294-eaf1-430c-8ba3-546d08ddc90c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39850,9e0f2456-7519-44b2-b6b7-ba8dee67c8b6,LIST_ACCOUNTS,hbciListAccounts,false -39851,9e0f2456-7519-44b2-b6b7-ba8dee67c8b6,LIST_TRANSACTIONS,hbciListTransactions,false -39852,9e0f2456-7519-44b2-b6b7-ba8dee67c8b6,AUTHORIZATION,,false -39853,9e0f2456-7519-44b2-b6b7-ba8dee67c8b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39854,9e0f2456-7519-44b2-b6b7-ba8dee67c8b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39855,9e0f2456-7519-44b2-b6b7-ba8dee67c8b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39850,d0dca49a-f0f2-463d-a146-9ea8d62c554b,LIST_ACCOUNTS,hbciListAccounts,false +39851,d0dca49a-f0f2-463d-a146-9ea8d62c554b,LIST_TRANSACTIONS,hbciListTransactions,false +39852,d0dca49a-f0f2-463d-a146-9ea8d62c554b,AUTHORIZATION,,false +39853,d0dca49a-f0f2-463d-a146-9ea8d62c554b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39854,d0dca49a-f0f2-463d-a146-9ea8d62c554b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39855,d0dca49a-f0f2-463d-a146-9ea8d62c554b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39856,b8fb462f-75b9-4480-9cce-e7dcc37fac46,LIST_ACCOUNTS,xs2aListAccounts,true -39857,b8fb462f-75b9-4480-9cce-e7dcc37fac46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39857,b8fb462f-75b9-4480-9cce-e7dcc37fac46,LIST_TRANSACTIONS,xs2aListTransactions,true 39858,b8fb462f-75b9-4480-9cce-e7dcc37fac46,AUTHORIZATION,,true 39859,b8fb462f-75b9-4480-9cce-e7dcc37fac46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39860,b8fb462f-75b9-4480-9cce-e7dcc37fac46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39861,b8fb462f-75b9-4480-9cce-e7dcc37fac46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39862,809b1b07-13c4-4af0-b9ee-0cf06ea499a1,LIST_ACCOUNTS,hbciListAccounts,false -39863,809b1b07-13c4-4af0-b9ee-0cf06ea499a1,LIST_TRANSACTIONS,hbciListTransactions,false -39864,809b1b07-13c4-4af0-b9ee-0cf06ea499a1,AUTHORIZATION,,false -39865,809b1b07-13c4-4af0-b9ee-0cf06ea499a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39866,809b1b07-13c4-4af0-b9ee-0cf06ea499a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39867,809b1b07-13c4-4af0-b9ee-0cf06ea499a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39862,b450c759-d23a-46d2-a679-02748ad681b2,LIST_ACCOUNTS,hbciListAccounts,false +39863,b450c759-d23a-46d2-a679-02748ad681b2,LIST_TRANSACTIONS,hbciListTransactions,false +39864,b450c759-d23a-46d2-a679-02748ad681b2,AUTHORIZATION,,false +39865,b450c759-d23a-46d2-a679-02748ad681b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39866,b450c759-d23a-46d2-a679-02748ad681b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39867,b450c759-d23a-46d2-a679-02748ad681b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39868,246b517f-7252-4c38-bca6-fcf1a81e403d,LIST_ACCOUNTS,xs2aListAccounts,true -39869,246b517f-7252-4c38-bca6-fcf1a81e403d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39869,246b517f-7252-4c38-bca6-fcf1a81e403d,LIST_TRANSACTIONS,xs2aListTransactions,true 39870,246b517f-7252-4c38-bca6-fcf1a81e403d,AUTHORIZATION,,true 39871,246b517f-7252-4c38-bca6-fcf1a81e403d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39872,246b517f-7252-4c38-bca6-fcf1a81e403d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39873,246b517f-7252-4c38-bca6-fcf1a81e403d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39874,0c78230f-071f-4343-9110-ff3e6412df90,LIST_ACCOUNTS,hbciListAccounts,false -39875,0c78230f-071f-4343-9110-ff3e6412df90,LIST_TRANSACTIONS,hbciListTransactions,false -39876,0c78230f-071f-4343-9110-ff3e6412df90,AUTHORIZATION,,false -39877,0c78230f-071f-4343-9110-ff3e6412df90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39878,0c78230f-071f-4343-9110-ff3e6412df90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39879,0c78230f-071f-4343-9110-ff3e6412df90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39874,35ba970d-3e2d-4bed-adb3-c4d9ef40ba74,LIST_ACCOUNTS,hbciListAccounts,false +39875,35ba970d-3e2d-4bed-adb3-c4d9ef40ba74,LIST_TRANSACTIONS,hbciListTransactions,false +39876,35ba970d-3e2d-4bed-adb3-c4d9ef40ba74,AUTHORIZATION,,false +39877,35ba970d-3e2d-4bed-adb3-c4d9ef40ba74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39878,35ba970d-3e2d-4bed-adb3-c4d9ef40ba74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39879,35ba970d-3e2d-4bed-adb3-c4d9ef40ba74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39880,c7dae4c1-5327-4f30-a769-49716a957621,LIST_ACCOUNTS,xs2aListAccounts,true -39881,c7dae4c1-5327-4f30-a769-49716a957621,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39881,c7dae4c1-5327-4f30-a769-49716a957621,LIST_TRANSACTIONS,xs2aListTransactions,true 39882,c7dae4c1-5327-4f30-a769-49716a957621,AUTHORIZATION,,true 39883,c7dae4c1-5327-4f30-a769-49716a957621,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39884,c7dae4c1-5327-4f30-a769-49716a957621,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39885,c7dae4c1-5327-4f30-a769-49716a957621,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39886,448214eb-0659-4fe7-9a99-85e2cb2bccb3,LIST_ACCOUNTS,hbciListAccounts,false -39887,448214eb-0659-4fe7-9a99-85e2cb2bccb3,LIST_TRANSACTIONS,hbciListTransactions,false -39888,448214eb-0659-4fe7-9a99-85e2cb2bccb3,AUTHORIZATION,,false -39889,448214eb-0659-4fe7-9a99-85e2cb2bccb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39890,448214eb-0659-4fe7-9a99-85e2cb2bccb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39891,448214eb-0659-4fe7-9a99-85e2cb2bccb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39886,730dc0c5-3da4-4fc7-b514-f64b8f273a50,LIST_ACCOUNTS,hbciListAccounts,false +39887,730dc0c5-3da4-4fc7-b514-f64b8f273a50,LIST_TRANSACTIONS,hbciListTransactions,false +39888,730dc0c5-3da4-4fc7-b514-f64b8f273a50,AUTHORIZATION,,false +39889,730dc0c5-3da4-4fc7-b514-f64b8f273a50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39890,730dc0c5-3da4-4fc7-b514-f64b8f273a50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39891,730dc0c5-3da4-4fc7-b514-f64b8f273a50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39892,25dafe4e-7b09-48b7-9f04-6da4a2dc54dd,LIST_ACCOUNTS,xs2aListAccounts,true -39893,25dafe4e-7b09-48b7-9f04-6da4a2dc54dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39893,25dafe4e-7b09-48b7-9f04-6da4a2dc54dd,LIST_TRANSACTIONS,xs2aListTransactions,true 39894,25dafe4e-7b09-48b7-9f04-6da4a2dc54dd,AUTHORIZATION,,true 39895,25dafe4e-7b09-48b7-9f04-6da4a2dc54dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39896,25dafe4e-7b09-48b7-9f04-6da4a2dc54dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39897,25dafe4e-7b09-48b7-9f04-6da4a2dc54dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39898,42ca9a71-084d-48cf-a64c-2e568285c395,LIST_ACCOUNTS,hbciListAccounts,false -39899,42ca9a71-084d-48cf-a64c-2e568285c395,LIST_TRANSACTIONS,hbciListTransactions,false -39900,42ca9a71-084d-48cf-a64c-2e568285c395,AUTHORIZATION,,false -39901,42ca9a71-084d-48cf-a64c-2e568285c395,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39902,42ca9a71-084d-48cf-a64c-2e568285c395,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39903,42ca9a71-084d-48cf-a64c-2e568285c395,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39898,60d1155e-f9a9-4f3e-9240-121e546c215a,LIST_ACCOUNTS,hbciListAccounts,false +39899,60d1155e-f9a9-4f3e-9240-121e546c215a,LIST_TRANSACTIONS,hbciListTransactions,false +39900,60d1155e-f9a9-4f3e-9240-121e546c215a,AUTHORIZATION,,false +39901,60d1155e-f9a9-4f3e-9240-121e546c215a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39902,60d1155e-f9a9-4f3e-9240-121e546c215a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39903,60d1155e-f9a9-4f3e-9240-121e546c215a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39904,0305d205-de68-46a7-a4d9-8544e626334a,LIST_ACCOUNTS,xs2aListAccounts,true -39905,0305d205-de68-46a7-a4d9-8544e626334a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39905,0305d205-de68-46a7-a4d9-8544e626334a,LIST_TRANSACTIONS,xs2aListTransactions,true 39906,0305d205-de68-46a7-a4d9-8544e626334a,AUTHORIZATION,,true 39907,0305d205-de68-46a7-a4d9-8544e626334a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39908,0305d205-de68-46a7-a4d9-8544e626334a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39909,0305d205-de68-46a7-a4d9-8544e626334a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39910,266e87e9-f69b-4a06-98bd-0e6943ce32f7,LIST_ACCOUNTS,hbciListAccounts,false -39911,266e87e9-f69b-4a06-98bd-0e6943ce32f7,LIST_TRANSACTIONS,hbciListTransactions,false -39912,266e87e9-f69b-4a06-98bd-0e6943ce32f7,AUTHORIZATION,,false -39913,266e87e9-f69b-4a06-98bd-0e6943ce32f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39914,266e87e9-f69b-4a06-98bd-0e6943ce32f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39915,266e87e9-f69b-4a06-98bd-0e6943ce32f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39910,fc957549-f5a4-4524-9f5a-51e21fecb16e,LIST_ACCOUNTS,hbciListAccounts,false +39911,fc957549-f5a4-4524-9f5a-51e21fecb16e,LIST_TRANSACTIONS,hbciListTransactions,false +39912,fc957549-f5a4-4524-9f5a-51e21fecb16e,AUTHORIZATION,,false +39913,fc957549-f5a4-4524-9f5a-51e21fecb16e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39914,fc957549-f5a4-4524-9f5a-51e21fecb16e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39915,fc957549-f5a4-4524-9f5a-51e21fecb16e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39916,a423c4ff-81a3-4ce2-a943-30cc8b0b20b3,LIST_ACCOUNTS,xs2aListAccounts,true -39917,a423c4ff-81a3-4ce2-a943-30cc8b0b20b3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39917,a423c4ff-81a3-4ce2-a943-30cc8b0b20b3,LIST_TRANSACTIONS,xs2aListTransactions,true 39918,a423c4ff-81a3-4ce2-a943-30cc8b0b20b3,AUTHORIZATION,,true 39919,a423c4ff-81a3-4ce2-a943-30cc8b0b20b3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39920,a423c4ff-81a3-4ce2-a943-30cc8b0b20b3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39921,a423c4ff-81a3-4ce2-a943-30cc8b0b20b3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39922,99a31da0-14fc-4fdd-b1dc-0388bcf2460a,LIST_ACCOUNTS,hbciListAccounts,false -39923,99a31da0-14fc-4fdd-b1dc-0388bcf2460a,LIST_TRANSACTIONS,hbciListTransactions,false -39924,99a31da0-14fc-4fdd-b1dc-0388bcf2460a,AUTHORIZATION,,false -39925,99a31da0-14fc-4fdd-b1dc-0388bcf2460a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39926,99a31da0-14fc-4fdd-b1dc-0388bcf2460a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39927,99a31da0-14fc-4fdd-b1dc-0388bcf2460a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39922,cb81d31a-097f-4fb2-8eeb-aeb6f74a9940,LIST_ACCOUNTS,hbciListAccounts,false +39923,cb81d31a-097f-4fb2-8eeb-aeb6f74a9940,LIST_TRANSACTIONS,hbciListTransactions,false +39924,cb81d31a-097f-4fb2-8eeb-aeb6f74a9940,AUTHORIZATION,,false +39925,cb81d31a-097f-4fb2-8eeb-aeb6f74a9940,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39926,cb81d31a-097f-4fb2-8eeb-aeb6f74a9940,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39927,cb81d31a-097f-4fb2-8eeb-aeb6f74a9940,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39928,e02c9fa2-9230-45ac-ace4-1dbe8668eca7,LIST_ACCOUNTS,xs2aListAccounts,true -39929,e02c9fa2-9230-45ac-ace4-1dbe8668eca7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39929,e02c9fa2-9230-45ac-ace4-1dbe8668eca7,LIST_TRANSACTIONS,xs2aListTransactions,true 39930,e02c9fa2-9230-45ac-ace4-1dbe8668eca7,AUTHORIZATION,,true 39931,e02c9fa2-9230-45ac-ace4-1dbe8668eca7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39932,e02c9fa2-9230-45ac-ace4-1dbe8668eca7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39933,e02c9fa2-9230-45ac-ace4-1dbe8668eca7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39934,a706b5f2-a0ac-4f76-8151-664d8518649b,LIST_ACCOUNTS,hbciListAccounts,false -39935,a706b5f2-a0ac-4f76-8151-664d8518649b,LIST_TRANSACTIONS,hbciListTransactions,false -39936,a706b5f2-a0ac-4f76-8151-664d8518649b,AUTHORIZATION,,false -39937,a706b5f2-a0ac-4f76-8151-664d8518649b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39938,a706b5f2-a0ac-4f76-8151-664d8518649b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39939,a706b5f2-a0ac-4f76-8151-664d8518649b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39934,cb4e0a86-b56d-4a01-900b-b53615a431b2,LIST_ACCOUNTS,hbciListAccounts,false +39935,cb4e0a86-b56d-4a01-900b-b53615a431b2,LIST_TRANSACTIONS,hbciListTransactions,false +39936,cb4e0a86-b56d-4a01-900b-b53615a431b2,AUTHORIZATION,,false +39937,cb4e0a86-b56d-4a01-900b-b53615a431b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39938,cb4e0a86-b56d-4a01-900b-b53615a431b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39939,cb4e0a86-b56d-4a01-900b-b53615a431b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39940,1f0945b5-ccfa-4e62-bae1-717972e9d009,LIST_ACCOUNTS,xs2aListAccounts,true -39941,1f0945b5-ccfa-4e62-bae1-717972e9d009,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39941,1f0945b5-ccfa-4e62-bae1-717972e9d009,LIST_TRANSACTIONS,xs2aListTransactions,true 39942,1f0945b5-ccfa-4e62-bae1-717972e9d009,AUTHORIZATION,,true 39943,1f0945b5-ccfa-4e62-bae1-717972e9d009,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39944,1f0945b5-ccfa-4e62-bae1-717972e9d009,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39945,1f0945b5-ccfa-4e62-bae1-717972e9d009,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39946,6e31efed-8712-4fad-895a-83f9133ea773,LIST_ACCOUNTS,hbciListAccounts,false -39947,6e31efed-8712-4fad-895a-83f9133ea773,LIST_TRANSACTIONS,hbciListTransactions,false -39948,6e31efed-8712-4fad-895a-83f9133ea773,AUTHORIZATION,,false -39949,6e31efed-8712-4fad-895a-83f9133ea773,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39950,6e31efed-8712-4fad-895a-83f9133ea773,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39951,6e31efed-8712-4fad-895a-83f9133ea773,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39946,cdba2c30-64d3-4b87-99b6-f774b09a011c,LIST_ACCOUNTS,hbciListAccounts,false +39947,cdba2c30-64d3-4b87-99b6-f774b09a011c,LIST_TRANSACTIONS,hbciListTransactions,false +39948,cdba2c30-64d3-4b87-99b6-f774b09a011c,AUTHORIZATION,,false +39949,cdba2c30-64d3-4b87-99b6-f774b09a011c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39950,cdba2c30-64d3-4b87-99b6-f774b09a011c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39951,cdba2c30-64d3-4b87-99b6-f774b09a011c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39952,7722829d-cb5d-4639-b58f-8f60ca0a9b4d,LIST_ACCOUNTS,xs2aListAccounts,true -39953,7722829d-cb5d-4639-b58f-8f60ca0a9b4d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39953,7722829d-cb5d-4639-b58f-8f60ca0a9b4d,LIST_TRANSACTIONS,xs2aListTransactions,true 39954,7722829d-cb5d-4639-b58f-8f60ca0a9b4d,AUTHORIZATION,,true 39955,7722829d-cb5d-4639-b58f-8f60ca0a9b4d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39956,7722829d-cb5d-4639-b58f-8f60ca0a9b4d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39957,7722829d-cb5d-4639-b58f-8f60ca0a9b4d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39958,a52231f1-b758-409d-9568-0e75a0f0c5a9,LIST_ACCOUNTS,hbciListAccounts,false -39959,a52231f1-b758-409d-9568-0e75a0f0c5a9,LIST_TRANSACTIONS,hbciListTransactions,false -39960,a52231f1-b758-409d-9568-0e75a0f0c5a9,AUTHORIZATION,,false -39961,a52231f1-b758-409d-9568-0e75a0f0c5a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39962,a52231f1-b758-409d-9568-0e75a0f0c5a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39963,a52231f1-b758-409d-9568-0e75a0f0c5a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39958,ef2ba046-9924-4410-b00c-02fade7854fa,LIST_ACCOUNTS,hbciListAccounts,false +39959,ef2ba046-9924-4410-b00c-02fade7854fa,LIST_TRANSACTIONS,hbciListTransactions,false +39960,ef2ba046-9924-4410-b00c-02fade7854fa,AUTHORIZATION,,false +39961,ef2ba046-9924-4410-b00c-02fade7854fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39962,ef2ba046-9924-4410-b00c-02fade7854fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39963,ef2ba046-9924-4410-b00c-02fade7854fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39964,60d60870-6808-449e-95b4-fa1098c51abf,LIST_ACCOUNTS,xs2aListAccounts,true -39965,60d60870-6808-449e-95b4-fa1098c51abf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39965,60d60870-6808-449e-95b4-fa1098c51abf,LIST_TRANSACTIONS,xs2aListTransactions,true 39966,60d60870-6808-449e-95b4-fa1098c51abf,AUTHORIZATION,,true 39967,60d60870-6808-449e-95b4-fa1098c51abf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39968,60d60870-6808-449e-95b4-fa1098c51abf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39969,60d60870-6808-449e-95b4-fa1098c51abf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39970,3e493a69-ab65-489b-877d-dcbb56d2ef21,LIST_ACCOUNTS,hbciListAccounts,false -39971,3e493a69-ab65-489b-877d-dcbb56d2ef21,LIST_TRANSACTIONS,hbciListTransactions,false -39972,3e493a69-ab65-489b-877d-dcbb56d2ef21,AUTHORIZATION,,false -39973,3e493a69-ab65-489b-877d-dcbb56d2ef21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39974,3e493a69-ab65-489b-877d-dcbb56d2ef21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39975,3e493a69-ab65-489b-877d-dcbb56d2ef21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39970,bc3add63-4963-4d95-9563-e64d319273db,LIST_ACCOUNTS,hbciListAccounts,false +39971,bc3add63-4963-4d95-9563-e64d319273db,LIST_TRANSACTIONS,hbciListTransactions,false +39972,bc3add63-4963-4d95-9563-e64d319273db,AUTHORIZATION,,false +39973,bc3add63-4963-4d95-9563-e64d319273db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39974,bc3add63-4963-4d95-9563-e64d319273db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39975,bc3add63-4963-4d95-9563-e64d319273db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39976,cf04e577-34b7-46f8-96f0-ac5f15a791f4,LIST_ACCOUNTS,xs2aListAccounts,true -39977,cf04e577-34b7-46f8-96f0-ac5f15a791f4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39977,cf04e577-34b7-46f8-96f0-ac5f15a791f4,LIST_TRANSACTIONS,xs2aListTransactions,true 39978,cf04e577-34b7-46f8-96f0-ac5f15a791f4,AUTHORIZATION,,true 39979,cf04e577-34b7-46f8-96f0-ac5f15a791f4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39980,cf04e577-34b7-46f8-96f0-ac5f15a791f4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39981,cf04e577-34b7-46f8-96f0-ac5f15a791f4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39982,1b0588a2-4b7c-4529-80d0-9f9b2404c9a3,LIST_ACCOUNTS,hbciListAccounts,false -39983,1b0588a2-4b7c-4529-80d0-9f9b2404c9a3,LIST_TRANSACTIONS,hbciListTransactions,false -39984,1b0588a2-4b7c-4529-80d0-9f9b2404c9a3,AUTHORIZATION,,false -39985,1b0588a2-4b7c-4529-80d0-9f9b2404c9a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39986,1b0588a2-4b7c-4529-80d0-9f9b2404c9a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39987,1b0588a2-4b7c-4529-80d0-9f9b2404c9a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39982,419bd465-eb34-4308-87f2-03224d4cb4a4,LIST_ACCOUNTS,hbciListAccounts,false +39983,419bd465-eb34-4308-87f2-03224d4cb4a4,LIST_TRANSACTIONS,hbciListTransactions,false +39984,419bd465-eb34-4308-87f2-03224d4cb4a4,AUTHORIZATION,,false +39985,419bd465-eb34-4308-87f2-03224d4cb4a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39986,419bd465-eb34-4308-87f2-03224d4cb4a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39987,419bd465-eb34-4308-87f2-03224d4cb4a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 39988,539a8186-b6ac-4abc-9a99-c836766327e8,LIST_ACCOUNTS,xs2aListAccounts,true -39989,539a8186-b6ac-4abc-9a99-c836766327e8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +39989,539a8186-b6ac-4abc-9a99-c836766327e8,LIST_TRANSACTIONS,xs2aListTransactions,true 39990,539a8186-b6ac-4abc-9a99-c836766327e8,AUTHORIZATION,,true 39991,539a8186-b6ac-4abc-9a99-c836766327e8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 39992,539a8186-b6ac-4abc-9a99-c836766327e8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 39993,539a8186-b6ac-4abc-9a99-c836766327e8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -39994,499507b4-33d6-4aa4-88c6-f40b871d6ecb,LIST_ACCOUNTS,hbciListAccounts,false -39995,499507b4-33d6-4aa4-88c6-f40b871d6ecb,LIST_TRANSACTIONS,hbciListTransactions,false -39996,499507b4-33d6-4aa4-88c6-f40b871d6ecb,AUTHORIZATION,,false -39997,499507b4-33d6-4aa4-88c6-f40b871d6ecb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -39998,499507b4-33d6-4aa4-88c6-f40b871d6ecb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -39999,499507b4-33d6-4aa4-88c6-f40b871d6ecb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +39994,df01cb74-821b-4e6a-848e-4c3334d39e7b,LIST_ACCOUNTS,hbciListAccounts,false +39995,df01cb74-821b-4e6a-848e-4c3334d39e7b,LIST_TRANSACTIONS,hbciListTransactions,false +39996,df01cb74-821b-4e6a-848e-4c3334d39e7b,AUTHORIZATION,,false +39997,df01cb74-821b-4e6a-848e-4c3334d39e7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +39998,df01cb74-821b-4e6a-848e-4c3334d39e7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +39999,df01cb74-821b-4e6a-848e-4c3334d39e7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40000,dae73e35-9985-48d7-8e73-aa3c724706b7,LIST_ACCOUNTS,xs2aListAccounts,true -40001,dae73e35-9985-48d7-8e73-aa3c724706b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40001,dae73e35-9985-48d7-8e73-aa3c724706b7,LIST_TRANSACTIONS,xs2aListTransactions,true 40002,dae73e35-9985-48d7-8e73-aa3c724706b7,AUTHORIZATION,,true 40003,dae73e35-9985-48d7-8e73-aa3c724706b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40004,dae73e35-9985-48d7-8e73-aa3c724706b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40005,dae73e35-9985-48d7-8e73-aa3c724706b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40006,43b16376-37c2-4aa9-a908-55aa84702493,LIST_ACCOUNTS,hbciListAccounts,false -40007,43b16376-37c2-4aa9-a908-55aa84702493,LIST_TRANSACTIONS,hbciListTransactions,false -40008,43b16376-37c2-4aa9-a908-55aa84702493,AUTHORIZATION,,false -40009,43b16376-37c2-4aa9-a908-55aa84702493,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40010,43b16376-37c2-4aa9-a908-55aa84702493,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40011,43b16376-37c2-4aa9-a908-55aa84702493,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40006,fcc76e32-268a-4c34-9027-5dbac1ba95f7,LIST_ACCOUNTS,hbciListAccounts,false +40007,fcc76e32-268a-4c34-9027-5dbac1ba95f7,LIST_TRANSACTIONS,hbciListTransactions,false +40008,fcc76e32-268a-4c34-9027-5dbac1ba95f7,AUTHORIZATION,,false +40009,fcc76e32-268a-4c34-9027-5dbac1ba95f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40010,fcc76e32-268a-4c34-9027-5dbac1ba95f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40011,fcc76e32-268a-4c34-9027-5dbac1ba95f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40012,565038ae-ae20-4175-9f77-faa6ebc12eb1,LIST_ACCOUNTS,xs2aListAccounts,true -40013,565038ae-ae20-4175-9f77-faa6ebc12eb1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40013,565038ae-ae20-4175-9f77-faa6ebc12eb1,LIST_TRANSACTIONS,xs2aListTransactions,true 40014,565038ae-ae20-4175-9f77-faa6ebc12eb1,AUTHORIZATION,,true 40015,565038ae-ae20-4175-9f77-faa6ebc12eb1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40016,565038ae-ae20-4175-9f77-faa6ebc12eb1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40017,565038ae-ae20-4175-9f77-faa6ebc12eb1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40018,97b98455-5010-449a-a736-6e53053195f7,LIST_ACCOUNTS,hbciListAccounts,false -40019,97b98455-5010-449a-a736-6e53053195f7,LIST_TRANSACTIONS,hbciListTransactions,false -40020,97b98455-5010-449a-a736-6e53053195f7,AUTHORIZATION,,false -40021,97b98455-5010-449a-a736-6e53053195f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40022,97b98455-5010-449a-a736-6e53053195f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40023,97b98455-5010-449a-a736-6e53053195f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40018,839d0a77-456f-4388-878b-2eab5758df7d,LIST_ACCOUNTS,hbciListAccounts,false +40019,839d0a77-456f-4388-878b-2eab5758df7d,LIST_TRANSACTIONS,hbciListTransactions,false +40020,839d0a77-456f-4388-878b-2eab5758df7d,AUTHORIZATION,,false +40021,839d0a77-456f-4388-878b-2eab5758df7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40022,839d0a77-456f-4388-878b-2eab5758df7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40023,839d0a77-456f-4388-878b-2eab5758df7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40024,75efec80-2d20-4b22-b5a5-1a78bdc93e73,LIST_ACCOUNTS,xs2aListAccounts,true -40025,75efec80-2d20-4b22-b5a5-1a78bdc93e73,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40025,75efec80-2d20-4b22-b5a5-1a78bdc93e73,LIST_TRANSACTIONS,xs2aListTransactions,true 40026,75efec80-2d20-4b22-b5a5-1a78bdc93e73,AUTHORIZATION,,true 40027,75efec80-2d20-4b22-b5a5-1a78bdc93e73,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40028,75efec80-2d20-4b22-b5a5-1a78bdc93e73,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40029,75efec80-2d20-4b22-b5a5-1a78bdc93e73,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40030,539904c6-7485-4890-929b-5d5b4f3bafd1,LIST_ACCOUNTS,hbciListAccounts,false -40031,539904c6-7485-4890-929b-5d5b4f3bafd1,LIST_TRANSACTIONS,hbciListTransactions,false -40032,539904c6-7485-4890-929b-5d5b4f3bafd1,AUTHORIZATION,,false -40033,539904c6-7485-4890-929b-5d5b4f3bafd1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40034,539904c6-7485-4890-929b-5d5b4f3bafd1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40035,539904c6-7485-4890-929b-5d5b4f3bafd1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40030,5aa0bda4-3dff-495e-bc6b-cfaa03827ef7,LIST_ACCOUNTS,hbciListAccounts,false +40031,5aa0bda4-3dff-495e-bc6b-cfaa03827ef7,LIST_TRANSACTIONS,hbciListTransactions,false +40032,5aa0bda4-3dff-495e-bc6b-cfaa03827ef7,AUTHORIZATION,,false +40033,5aa0bda4-3dff-495e-bc6b-cfaa03827ef7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40034,5aa0bda4-3dff-495e-bc6b-cfaa03827ef7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40035,5aa0bda4-3dff-495e-bc6b-cfaa03827ef7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40036,079fcb2f-46eb-4367-93d5-bd9f133309f6,LIST_ACCOUNTS,xs2aListAccounts,true -40037,079fcb2f-46eb-4367-93d5-bd9f133309f6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40037,079fcb2f-46eb-4367-93d5-bd9f133309f6,LIST_TRANSACTIONS,xs2aListTransactions,true 40038,079fcb2f-46eb-4367-93d5-bd9f133309f6,AUTHORIZATION,,true 40039,079fcb2f-46eb-4367-93d5-bd9f133309f6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40040,079fcb2f-46eb-4367-93d5-bd9f133309f6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40041,079fcb2f-46eb-4367-93d5-bd9f133309f6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40042,ebfd0f73-c9d8-484c-aaba-ccfd6f441f9d,LIST_ACCOUNTS,hbciListAccounts,false -40043,ebfd0f73-c9d8-484c-aaba-ccfd6f441f9d,LIST_TRANSACTIONS,hbciListTransactions,false -40044,ebfd0f73-c9d8-484c-aaba-ccfd6f441f9d,AUTHORIZATION,,false -40045,ebfd0f73-c9d8-484c-aaba-ccfd6f441f9d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40046,ebfd0f73-c9d8-484c-aaba-ccfd6f441f9d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40047,ebfd0f73-c9d8-484c-aaba-ccfd6f441f9d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40042,ba413849-b882-4307-938a-91998506fecc,LIST_ACCOUNTS,hbciListAccounts,false +40043,ba413849-b882-4307-938a-91998506fecc,LIST_TRANSACTIONS,hbciListTransactions,false +40044,ba413849-b882-4307-938a-91998506fecc,AUTHORIZATION,,false +40045,ba413849-b882-4307-938a-91998506fecc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40046,ba413849-b882-4307-938a-91998506fecc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40047,ba413849-b882-4307-938a-91998506fecc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40048,b02368a1-75b8-4307-8f24-fd15da8cc939,LIST_ACCOUNTS,xs2aListAccounts,true -40049,b02368a1-75b8-4307-8f24-fd15da8cc939,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40049,b02368a1-75b8-4307-8f24-fd15da8cc939,LIST_TRANSACTIONS,xs2aListTransactions,true 40050,b02368a1-75b8-4307-8f24-fd15da8cc939,AUTHORIZATION,,true 40051,b02368a1-75b8-4307-8f24-fd15da8cc939,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40052,b02368a1-75b8-4307-8f24-fd15da8cc939,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40053,b02368a1-75b8-4307-8f24-fd15da8cc939,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40054,aa5ba509-6c2b-46dc-9f18-335b894d6346,LIST_ACCOUNTS,hbciListAccounts,false -40055,aa5ba509-6c2b-46dc-9f18-335b894d6346,LIST_TRANSACTIONS,hbciListTransactions,false -40056,aa5ba509-6c2b-46dc-9f18-335b894d6346,AUTHORIZATION,,false -40057,aa5ba509-6c2b-46dc-9f18-335b894d6346,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40058,aa5ba509-6c2b-46dc-9f18-335b894d6346,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40059,aa5ba509-6c2b-46dc-9f18-335b894d6346,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40054,13c3ca79-b0cc-4f45-aa9c-d522791789e9,LIST_ACCOUNTS,hbciListAccounts,false +40055,13c3ca79-b0cc-4f45-aa9c-d522791789e9,LIST_TRANSACTIONS,hbciListTransactions,false +40056,13c3ca79-b0cc-4f45-aa9c-d522791789e9,AUTHORIZATION,,false +40057,13c3ca79-b0cc-4f45-aa9c-d522791789e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40058,13c3ca79-b0cc-4f45-aa9c-d522791789e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40059,13c3ca79-b0cc-4f45-aa9c-d522791789e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40060,6de6fc50-dae9-4aea-8d52-78874450c60f,LIST_ACCOUNTS,xs2aListAccounts,true -40061,6de6fc50-dae9-4aea-8d52-78874450c60f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40061,6de6fc50-dae9-4aea-8d52-78874450c60f,LIST_TRANSACTIONS,xs2aListTransactions,true 40062,6de6fc50-dae9-4aea-8d52-78874450c60f,AUTHORIZATION,,true 40063,6de6fc50-dae9-4aea-8d52-78874450c60f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40064,6de6fc50-dae9-4aea-8d52-78874450c60f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40065,6de6fc50-dae9-4aea-8d52-78874450c60f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40066,6718dddb-ea86-4bc7-bd5e-18dc806accee,LIST_ACCOUNTS,hbciListAccounts,false -40067,6718dddb-ea86-4bc7-bd5e-18dc806accee,LIST_TRANSACTIONS,hbciListTransactions,false -40068,6718dddb-ea86-4bc7-bd5e-18dc806accee,AUTHORIZATION,,false -40069,6718dddb-ea86-4bc7-bd5e-18dc806accee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40070,6718dddb-ea86-4bc7-bd5e-18dc806accee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40071,6718dddb-ea86-4bc7-bd5e-18dc806accee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40066,241e3906-beaf-4373-84ca-57cd10496509,LIST_ACCOUNTS,hbciListAccounts,false +40067,241e3906-beaf-4373-84ca-57cd10496509,LIST_TRANSACTIONS,hbciListTransactions,false +40068,241e3906-beaf-4373-84ca-57cd10496509,AUTHORIZATION,,false +40069,241e3906-beaf-4373-84ca-57cd10496509,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40070,241e3906-beaf-4373-84ca-57cd10496509,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40071,241e3906-beaf-4373-84ca-57cd10496509,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40072,8740313d-80d7-40f8-8cd5-164e3b07167d,LIST_ACCOUNTS,xs2aListAccounts,true -40073,8740313d-80d7-40f8-8cd5-164e3b07167d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40073,8740313d-80d7-40f8-8cd5-164e3b07167d,LIST_TRANSACTIONS,xs2aListTransactions,true 40074,8740313d-80d7-40f8-8cd5-164e3b07167d,AUTHORIZATION,,true 40075,8740313d-80d7-40f8-8cd5-164e3b07167d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40076,8740313d-80d7-40f8-8cd5-164e3b07167d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40077,8740313d-80d7-40f8-8cd5-164e3b07167d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40078,ded96fb9-17f7-4adf-9b81-3dfabf5c6e80,LIST_ACCOUNTS,hbciListAccounts,false -40079,ded96fb9-17f7-4adf-9b81-3dfabf5c6e80,LIST_TRANSACTIONS,hbciListTransactions,false -40080,ded96fb9-17f7-4adf-9b81-3dfabf5c6e80,AUTHORIZATION,,false -40081,ded96fb9-17f7-4adf-9b81-3dfabf5c6e80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40082,ded96fb9-17f7-4adf-9b81-3dfabf5c6e80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40083,ded96fb9-17f7-4adf-9b81-3dfabf5c6e80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40078,75d41a86-317a-4633-a0a3-0425c6ba2282,LIST_ACCOUNTS,hbciListAccounts,false +40079,75d41a86-317a-4633-a0a3-0425c6ba2282,LIST_TRANSACTIONS,hbciListTransactions,false +40080,75d41a86-317a-4633-a0a3-0425c6ba2282,AUTHORIZATION,,false +40081,75d41a86-317a-4633-a0a3-0425c6ba2282,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40082,75d41a86-317a-4633-a0a3-0425c6ba2282,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40083,75d41a86-317a-4633-a0a3-0425c6ba2282,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40084,b8305bea-3eb9-4c78-baa8-96395a2cf8ad,LIST_ACCOUNTS,xs2aListAccounts,true -40085,b8305bea-3eb9-4c78-baa8-96395a2cf8ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40085,b8305bea-3eb9-4c78-baa8-96395a2cf8ad,LIST_TRANSACTIONS,xs2aListTransactions,true 40086,b8305bea-3eb9-4c78-baa8-96395a2cf8ad,AUTHORIZATION,,true 40087,b8305bea-3eb9-4c78-baa8-96395a2cf8ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40088,b8305bea-3eb9-4c78-baa8-96395a2cf8ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40089,b8305bea-3eb9-4c78-baa8-96395a2cf8ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40090,e2c204e5-3779-44e3-bece-714f273370f1,LIST_ACCOUNTS,hbciListAccounts,false -40091,e2c204e5-3779-44e3-bece-714f273370f1,LIST_TRANSACTIONS,hbciListTransactions,false -40092,e2c204e5-3779-44e3-bece-714f273370f1,AUTHORIZATION,,false -40093,e2c204e5-3779-44e3-bece-714f273370f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40094,e2c204e5-3779-44e3-bece-714f273370f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40095,e2c204e5-3779-44e3-bece-714f273370f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40090,5802b0d6-0081-4c37-b225-ff0e0781a867,LIST_ACCOUNTS,hbciListAccounts,false +40091,5802b0d6-0081-4c37-b225-ff0e0781a867,LIST_TRANSACTIONS,hbciListTransactions,false +40092,5802b0d6-0081-4c37-b225-ff0e0781a867,AUTHORIZATION,,false +40093,5802b0d6-0081-4c37-b225-ff0e0781a867,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40094,5802b0d6-0081-4c37-b225-ff0e0781a867,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40095,5802b0d6-0081-4c37-b225-ff0e0781a867,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40096,e840b262-7a58-4b60-9e87-efe26a57dbf3,LIST_ACCOUNTS,xs2aListAccounts,true -40097,e840b262-7a58-4b60-9e87-efe26a57dbf3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40097,e840b262-7a58-4b60-9e87-efe26a57dbf3,LIST_TRANSACTIONS,xs2aListTransactions,true 40098,e840b262-7a58-4b60-9e87-efe26a57dbf3,AUTHORIZATION,,true 40099,e840b262-7a58-4b60-9e87-efe26a57dbf3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40100,e840b262-7a58-4b60-9e87-efe26a57dbf3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40101,e840b262-7a58-4b60-9e87-efe26a57dbf3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40102,0770bf46-e984-4267-96b0-051ae658ec62,LIST_ACCOUNTS,hbciListAccounts,false -40103,0770bf46-e984-4267-96b0-051ae658ec62,LIST_TRANSACTIONS,hbciListTransactions,false -40104,0770bf46-e984-4267-96b0-051ae658ec62,AUTHORIZATION,,false -40105,0770bf46-e984-4267-96b0-051ae658ec62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40106,0770bf46-e984-4267-96b0-051ae658ec62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40107,0770bf46-e984-4267-96b0-051ae658ec62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40102,32897bd6-7553-42f8-a0bd-aeef99cce9e5,LIST_ACCOUNTS,hbciListAccounts,false +40103,32897bd6-7553-42f8-a0bd-aeef99cce9e5,LIST_TRANSACTIONS,hbciListTransactions,false +40104,32897bd6-7553-42f8-a0bd-aeef99cce9e5,AUTHORIZATION,,false +40105,32897bd6-7553-42f8-a0bd-aeef99cce9e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40106,32897bd6-7553-42f8-a0bd-aeef99cce9e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40107,32897bd6-7553-42f8-a0bd-aeef99cce9e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40108,15781569-79b1-4bd8-8b33-47d9981e02bc,LIST_ACCOUNTS,xs2aListAccounts,true -40109,15781569-79b1-4bd8-8b33-47d9981e02bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40109,15781569-79b1-4bd8-8b33-47d9981e02bc,LIST_TRANSACTIONS,xs2aListTransactions,true 40110,15781569-79b1-4bd8-8b33-47d9981e02bc,AUTHORIZATION,,true 40111,15781569-79b1-4bd8-8b33-47d9981e02bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40112,15781569-79b1-4bd8-8b33-47d9981e02bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40113,15781569-79b1-4bd8-8b33-47d9981e02bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40114,52c3583d-da31-4c99-bc4a-e7df1139e670,LIST_ACCOUNTS,hbciListAccounts,false -40115,52c3583d-da31-4c99-bc4a-e7df1139e670,LIST_TRANSACTIONS,hbciListTransactions,false -40116,52c3583d-da31-4c99-bc4a-e7df1139e670,AUTHORIZATION,,false -40117,52c3583d-da31-4c99-bc4a-e7df1139e670,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40118,52c3583d-da31-4c99-bc4a-e7df1139e670,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40119,52c3583d-da31-4c99-bc4a-e7df1139e670,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40114,919b5263-f9bb-4c94-bc34-0017bbfbeb50,LIST_ACCOUNTS,hbciListAccounts,false +40115,919b5263-f9bb-4c94-bc34-0017bbfbeb50,LIST_TRANSACTIONS,hbciListTransactions,false +40116,919b5263-f9bb-4c94-bc34-0017bbfbeb50,AUTHORIZATION,,false +40117,919b5263-f9bb-4c94-bc34-0017bbfbeb50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40118,919b5263-f9bb-4c94-bc34-0017bbfbeb50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40119,919b5263-f9bb-4c94-bc34-0017bbfbeb50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40120,0df77dc1-58e0-4952-8578-d43b4b49ebef,LIST_ACCOUNTS,xs2aListAccounts,true -40121,0df77dc1-58e0-4952-8578-d43b4b49ebef,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40121,0df77dc1-58e0-4952-8578-d43b4b49ebef,LIST_TRANSACTIONS,xs2aListTransactions,true 40122,0df77dc1-58e0-4952-8578-d43b4b49ebef,AUTHORIZATION,,true 40123,0df77dc1-58e0-4952-8578-d43b4b49ebef,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40124,0df77dc1-58e0-4952-8578-d43b4b49ebef,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40125,0df77dc1-58e0-4952-8578-d43b4b49ebef,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40126,40f22200-b1fa-42f9-bdf9-e999927649fc,LIST_ACCOUNTS,hbciListAccounts,false -40127,40f22200-b1fa-42f9-bdf9-e999927649fc,LIST_TRANSACTIONS,hbciListTransactions,false -40128,40f22200-b1fa-42f9-bdf9-e999927649fc,AUTHORIZATION,,false -40129,40f22200-b1fa-42f9-bdf9-e999927649fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40130,40f22200-b1fa-42f9-bdf9-e999927649fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40131,40f22200-b1fa-42f9-bdf9-e999927649fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40126,ed1b3f73-92c6-4a67-8ff6-994f4b538ea1,LIST_ACCOUNTS,hbciListAccounts,false +40127,ed1b3f73-92c6-4a67-8ff6-994f4b538ea1,LIST_TRANSACTIONS,hbciListTransactions,false +40128,ed1b3f73-92c6-4a67-8ff6-994f4b538ea1,AUTHORIZATION,,false +40129,ed1b3f73-92c6-4a67-8ff6-994f4b538ea1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40130,ed1b3f73-92c6-4a67-8ff6-994f4b538ea1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40131,ed1b3f73-92c6-4a67-8ff6-994f4b538ea1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40132,a06574e6-97f3-486e-8bc3-4b74e634bc46,LIST_ACCOUNTS,xs2aListAccounts,true -40133,a06574e6-97f3-486e-8bc3-4b74e634bc46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40133,a06574e6-97f3-486e-8bc3-4b74e634bc46,LIST_TRANSACTIONS,xs2aListTransactions,true 40134,a06574e6-97f3-486e-8bc3-4b74e634bc46,AUTHORIZATION,,true 40135,a06574e6-97f3-486e-8bc3-4b74e634bc46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40136,a06574e6-97f3-486e-8bc3-4b74e634bc46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40137,a06574e6-97f3-486e-8bc3-4b74e634bc46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40138,b9a65b62-223a-4166-89cc-a55eb090d2c8,LIST_ACCOUNTS,hbciListAccounts,false -40139,b9a65b62-223a-4166-89cc-a55eb090d2c8,LIST_TRANSACTIONS,hbciListTransactions,false -40140,b9a65b62-223a-4166-89cc-a55eb090d2c8,AUTHORIZATION,,false -40141,b9a65b62-223a-4166-89cc-a55eb090d2c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40142,b9a65b62-223a-4166-89cc-a55eb090d2c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40143,b9a65b62-223a-4166-89cc-a55eb090d2c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40138,b05058eb-79d4-44c8-806f-7cd5f7f778ca,LIST_ACCOUNTS,hbciListAccounts,false +40139,b05058eb-79d4-44c8-806f-7cd5f7f778ca,LIST_TRANSACTIONS,hbciListTransactions,false +40140,b05058eb-79d4-44c8-806f-7cd5f7f778ca,AUTHORIZATION,,false +40141,b05058eb-79d4-44c8-806f-7cd5f7f778ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40142,b05058eb-79d4-44c8-806f-7cd5f7f778ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40143,b05058eb-79d4-44c8-806f-7cd5f7f778ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40144,249e65ea-ec96-404b-837e-3aa9b5aa8407,LIST_ACCOUNTS,xs2aListAccounts,true -40145,249e65ea-ec96-404b-837e-3aa9b5aa8407,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40145,249e65ea-ec96-404b-837e-3aa9b5aa8407,LIST_TRANSACTIONS,xs2aListTransactions,true 40146,249e65ea-ec96-404b-837e-3aa9b5aa8407,AUTHORIZATION,,true 40147,249e65ea-ec96-404b-837e-3aa9b5aa8407,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40148,249e65ea-ec96-404b-837e-3aa9b5aa8407,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40149,249e65ea-ec96-404b-837e-3aa9b5aa8407,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40150,5bbd5a04-159a-42de-846f-eaf0b747286e,LIST_ACCOUNTS,hbciListAccounts,false -40151,5bbd5a04-159a-42de-846f-eaf0b747286e,LIST_TRANSACTIONS,hbciListTransactions,false -40152,5bbd5a04-159a-42de-846f-eaf0b747286e,AUTHORIZATION,,false -40153,5bbd5a04-159a-42de-846f-eaf0b747286e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40154,5bbd5a04-159a-42de-846f-eaf0b747286e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40155,5bbd5a04-159a-42de-846f-eaf0b747286e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40150,8a346a67-0cc4-4b60-ace1-64457b017c37,LIST_ACCOUNTS,hbciListAccounts,false +40151,8a346a67-0cc4-4b60-ace1-64457b017c37,LIST_TRANSACTIONS,hbciListTransactions,false +40152,8a346a67-0cc4-4b60-ace1-64457b017c37,AUTHORIZATION,,false +40153,8a346a67-0cc4-4b60-ace1-64457b017c37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40154,8a346a67-0cc4-4b60-ace1-64457b017c37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40155,8a346a67-0cc4-4b60-ace1-64457b017c37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40156,1356675f-5336-4f2a-b420-fb3651095592,LIST_ACCOUNTS,xs2aListAccounts,true -40157,1356675f-5336-4f2a-b420-fb3651095592,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40157,1356675f-5336-4f2a-b420-fb3651095592,LIST_TRANSACTIONS,xs2aListTransactions,true 40158,1356675f-5336-4f2a-b420-fb3651095592,AUTHORIZATION,,true 40159,1356675f-5336-4f2a-b420-fb3651095592,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40160,1356675f-5336-4f2a-b420-fb3651095592,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40161,1356675f-5336-4f2a-b420-fb3651095592,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40162,ea9faad1-4c40-4cd7-b9cc-1d759792f24f,LIST_ACCOUNTS,hbciListAccounts,false -40163,ea9faad1-4c40-4cd7-b9cc-1d759792f24f,LIST_TRANSACTIONS,hbciListTransactions,false -40164,ea9faad1-4c40-4cd7-b9cc-1d759792f24f,AUTHORIZATION,,false -40165,ea9faad1-4c40-4cd7-b9cc-1d759792f24f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40166,ea9faad1-4c40-4cd7-b9cc-1d759792f24f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40167,ea9faad1-4c40-4cd7-b9cc-1d759792f24f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40162,bdf91c07-3b41-4548-9db3-3952887e81ce,LIST_ACCOUNTS,hbciListAccounts,false +40163,bdf91c07-3b41-4548-9db3-3952887e81ce,LIST_TRANSACTIONS,hbciListTransactions,false +40164,bdf91c07-3b41-4548-9db3-3952887e81ce,AUTHORIZATION,,false +40165,bdf91c07-3b41-4548-9db3-3952887e81ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40166,bdf91c07-3b41-4548-9db3-3952887e81ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40167,bdf91c07-3b41-4548-9db3-3952887e81ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40168,6808d6f6-2e62-4679-bedb-e88dccaf67e4,LIST_ACCOUNTS,xs2aListAccounts,true -40169,6808d6f6-2e62-4679-bedb-e88dccaf67e4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40169,6808d6f6-2e62-4679-bedb-e88dccaf67e4,LIST_TRANSACTIONS,xs2aListTransactions,true 40170,6808d6f6-2e62-4679-bedb-e88dccaf67e4,AUTHORIZATION,,true 40171,6808d6f6-2e62-4679-bedb-e88dccaf67e4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40172,6808d6f6-2e62-4679-bedb-e88dccaf67e4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40173,6808d6f6-2e62-4679-bedb-e88dccaf67e4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40174,8dcdf8fe-294e-48f8-a203-7346d9d73e30,LIST_ACCOUNTS,hbciListAccounts,false -40175,8dcdf8fe-294e-48f8-a203-7346d9d73e30,LIST_TRANSACTIONS,hbciListTransactions,false -40176,8dcdf8fe-294e-48f8-a203-7346d9d73e30,AUTHORIZATION,,false -40177,8dcdf8fe-294e-48f8-a203-7346d9d73e30,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40178,8dcdf8fe-294e-48f8-a203-7346d9d73e30,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40179,8dcdf8fe-294e-48f8-a203-7346d9d73e30,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40174,22949a17-795c-44c4-ac63-7545d50aad78,LIST_ACCOUNTS,hbciListAccounts,false +40175,22949a17-795c-44c4-ac63-7545d50aad78,LIST_TRANSACTIONS,hbciListTransactions,false +40176,22949a17-795c-44c4-ac63-7545d50aad78,AUTHORIZATION,,false +40177,22949a17-795c-44c4-ac63-7545d50aad78,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40178,22949a17-795c-44c4-ac63-7545d50aad78,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40179,22949a17-795c-44c4-ac63-7545d50aad78,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40180,3dae379a-360d-429c-8ec8-c65ebaa9146e,LIST_ACCOUNTS,xs2aListAccounts,true -40181,3dae379a-360d-429c-8ec8-c65ebaa9146e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40181,3dae379a-360d-429c-8ec8-c65ebaa9146e,LIST_TRANSACTIONS,xs2aListTransactions,true 40182,3dae379a-360d-429c-8ec8-c65ebaa9146e,AUTHORIZATION,,true 40183,3dae379a-360d-429c-8ec8-c65ebaa9146e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40184,3dae379a-360d-429c-8ec8-c65ebaa9146e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40185,3dae379a-360d-429c-8ec8-c65ebaa9146e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40186,085cf361-ebad-4f23-97a2-0cc7d1c3ea7b,LIST_ACCOUNTS,hbciListAccounts,false -40187,085cf361-ebad-4f23-97a2-0cc7d1c3ea7b,LIST_TRANSACTIONS,hbciListTransactions,false -40188,085cf361-ebad-4f23-97a2-0cc7d1c3ea7b,AUTHORIZATION,,false -40189,085cf361-ebad-4f23-97a2-0cc7d1c3ea7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40190,085cf361-ebad-4f23-97a2-0cc7d1c3ea7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40191,085cf361-ebad-4f23-97a2-0cc7d1c3ea7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40186,c4155501-558c-420e-9082-b8f6cd1267d8,LIST_ACCOUNTS,hbciListAccounts,false +40187,c4155501-558c-420e-9082-b8f6cd1267d8,LIST_TRANSACTIONS,hbciListTransactions,false +40188,c4155501-558c-420e-9082-b8f6cd1267d8,AUTHORIZATION,,false +40189,c4155501-558c-420e-9082-b8f6cd1267d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40190,c4155501-558c-420e-9082-b8f6cd1267d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40191,c4155501-558c-420e-9082-b8f6cd1267d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40192,629993c5-f033-45ce-a090-8b627965b00f,LIST_ACCOUNTS,xs2aListAccounts,true -40193,629993c5-f033-45ce-a090-8b627965b00f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40193,629993c5-f033-45ce-a090-8b627965b00f,LIST_TRANSACTIONS,xs2aListTransactions,true 40194,629993c5-f033-45ce-a090-8b627965b00f,AUTHORIZATION,,true 40195,629993c5-f033-45ce-a090-8b627965b00f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40196,629993c5-f033-45ce-a090-8b627965b00f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40197,629993c5-f033-45ce-a090-8b627965b00f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40198,c4151151-c82e-4678-9574-0b22b3f7bb25,LIST_ACCOUNTS,hbciListAccounts,false -40199,c4151151-c82e-4678-9574-0b22b3f7bb25,LIST_TRANSACTIONS,hbciListTransactions,false -40200,c4151151-c82e-4678-9574-0b22b3f7bb25,AUTHORIZATION,,false -40201,c4151151-c82e-4678-9574-0b22b3f7bb25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40202,c4151151-c82e-4678-9574-0b22b3f7bb25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40203,c4151151-c82e-4678-9574-0b22b3f7bb25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40198,3d95ebee-f1a6-42d3-818f-055552618945,LIST_ACCOUNTS,hbciListAccounts,false +40199,3d95ebee-f1a6-42d3-818f-055552618945,LIST_TRANSACTIONS,hbciListTransactions,false +40200,3d95ebee-f1a6-42d3-818f-055552618945,AUTHORIZATION,,false +40201,3d95ebee-f1a6-42d3-818f-055552618945,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40202,3d95ebee-f1a6-42d3-818f-055552618945,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40203,3d95ebee-f1a6-42d3-818f-055552618945,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40204,95103418-14f1-4e89-ba62-70e0d7d8cf40,LIST_ACCOUNTS,xs2aListAccounts,true -40205,95103418-14f1-4e89-ba62-70e0d7d8cf40,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40205,95103418-14f1-4e89-ba62-70e0d7d8cf40,LIST_TRANSACTIONS,xs2aListTransactions,true 40206,95103418-14f1-4e89-ba62-70e0d7d8cf40,AUTHORIZATION,,true 40207,95103418-14f1-4e89-ba62-70e0d7d8cf40,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40208,95103418-14f1-4e89-ba62-70e0d7d8cf40,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40209,95103418-14f1-4e89-ba62-70e0d7d8cf40,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40210,884e1c5d-622e-42f3-bf3a-cfaee15d277c,LIST_ACCOUNTS,hbciListAccounts,false -40211,884e1c5d-622e-42f3-bf3a-cfaee15d277c,LIST_TRANSACTIONS,hbciListTransactions,false -40212,884e1c5d-622e-42f3-bf3a-cfaee15d277c,AUTHORIZATION,,false -40213,884e1c5d-622e-42f3-bf3a-cfaee15d277c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40214,884e1c5d-622e-42f3-bf3a-cfaee15d277c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40215,884e1c5d-622e-42f3-bf3a-cfaee15d277c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40210,97b8a284-aa7f-40b5-b014-f754b6e4c381,LIST_ACCOUNTS,hbciListAccounts,false +40211,97b8a284-aa7f-40b5-b014-f754b6e4c381,LIST_TRANSACTIONS,hbciListTransactions,false +40212,97b8a284-aa7f-40b5-b014-f754b6e4c381,AUTHORIZATION,,false +40213,97b8a284-aa7f-40b5-b014-f754b6e4c381,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40214,97b8a284-aa7f-40b5-b014-f754b6e4c381,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40215,97b8a284-aa7f-40b5-b014-f754b6e4c381,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40216,22f8f66a-cefd-40c6-92fc-9332800637e5,LIST_ACCOUNTS,xs2aListAccounts,true -40217,22f8f66a-cefd-40c6-92fc-9332800637e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40217,22f8f66a-cefd-40c6-92fc-9332800637e5,LIST_TRANSACTIONS,xs2aListTransactions,true 40218,22f8f66a-cefd-40c6-92fc-9332800637e5,AUTHORIZATION,,true 40219,22f8f66a-cefd-40c6-92fc-9332800637e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40220,22f8f66a-cefd-40c6-92fc-9332800637e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40221,22f8f66a-cefd-40c6-92fc-9332800637e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40222,e9f686a8-d572-450d-991b-6d94aeb010fe,LIST_ACCOUNTS,hbciListAccounts,false -40223,e9f686a8-d572-450d-991b-6d94aeb010fe,LIST_TRANSACTIONS,hbciListTransactions,false -40224,e9f686a8-d572-450d-991b-6d94aeb010fe,AUTHORIZATION,,false -40225,e9f686a8-d572-450d-991b-6d94aeb010fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40226,e9f686a8-d572-450d-991b-6d94aeb010fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40227,e9f686a8-d572-450d-991b-6d94aeb010fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40222,8dbaa921-71f7-4990-9de4-3caf52961f0c,LIST_ACCOUNTS,hbciListAccounts,false +40223,8dbaa921-71f7-4990-9de4-3caf52961f0c,LIST_TRANSACTIONS,hbciListTransactions,false +40224,8dbaa921-71f7-4990-9de4-3caf52961f0c,AUTHORIZATION,,false +40225,8dbaa921-71f7-4990-9de4-3caf52961f0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40226,8dbaa921-71f7-4990-9de4-3caf52961f0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40227,8dbaa921-71f7-4990-9de4-3caf52961f0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40228,0d7d51d0-1baf-41c0-9639-61ce138227d0,LIST_ACCOUNTS,xs2aListAccounts,true -40229,0d7d51d0-1baf-41c0-9639-61ce138227d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40229,0d7d51d0-1baf-41c0-9639-61ce138227d0,LIST_TRANSACTIONS,xs2aListTransactions,true 40230,0d7d51d0-1baf-41c0-9639-61ce138227d0,AUTHORIZATION,,true 40231,0d7d51d0-1baf-41c0-9639-61ce138227d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40232,0d7d51d0-1baf-41c0-9639-61ce138227d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40233,0d7d51d0-1baf-41c0-9639-61ce138227d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40234,20a40c98-461a-4421-80a1-9cd665ad6221,LIST_ACCOUNTS,hbciListAccounts,false -40235,20a40c98-461a-4421-80a1-9cd665ad6221,LIST_TRANSACTIONS,hbciListTransactions,false -40236,20a40c98-461a-4421-80a1-9cd665ad6221,AUTHORIZATION,,false -40237,20a40c98-461a-4421-80a1-9cd665ad6221,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40238,20a40c98-461a-4421-80a1-9cd665ad6221,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40239,20a40c98-461a-4421-80a1-9cd665ad6221,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40234,fb487015-da2d-4938-9044-af14076c32af,LIST_ACCOUNTS,hbciListAccounts,false +40235,fb487015-da2d-4938-9044-af14076c32af,LIST_TRANSACTIONS,hbciListTransactions,false +40236,fb487015-da2d-4938-9044-af14076c32af,AUTHORIZATION,,false +40237,fb487015-da2d-4938-9044-af14076c32af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40238,fb487015-da2d-4938-9044-af14076c32af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40239,fb487015-da2d-4938-9044-af14076c32af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40240,0f7b3b6d-74b3-49a9-9bb4-6f7517e1d8fe,LIST_ACCOUNTS,xs2aListAccounts,true -40241,0f7b3b6d-74b3-49a9-9bb4-6f7517e1d8fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40241,0f7b3b6d-74b3-49a9-9bb4-6f7517e1d8fe,LIST_TRANSACTIONS,xs2aListTransactions,true 40242,0f7b3b6d-74b3-49a9-9bb4-6f7517e1d8fe,AUTHORIZATION,,true 40243,0f7b3b6d-74b3-49a9-9bb4-6f7517e1d8fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40244,0f7b3b6d-74b3-49a9-9bb4-6f7517e1d8fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40245,0f7b3b6d-74b3-49a9-9bb4-6f7517e1d8fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40246,7ca89269-61fa-4834-a626-426ea7c6d5e2,LIST_ACCOUNTS,hbciListAccounts,false -40247,7ca89269-61fa-4834-a626-426ea7c6d5e2,LIST_TRANSACTIONS,hbciListTransactions,false -40248,7ca89269-61fa-4834-a626-426ea7c6d5e2,AUTHORIZATION,,false -40249,7ca89269-61fa-4834-a626-426ea7c6d5e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40250,7ca89269-61fa-4834-a626-426ea7c6d5e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40251,7ca89269-61fa-4834-a626-426ea7c6d5e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40246,84b03621-973f-4ab8-ae79-957297433f5d,LIST_ACCOUNTS,hbciListAccounts,false +40247,84b03621-973f-4ab8-ae79-957297433f5d,LIST_TRANSACTIONS,hbciListTransactions,false +40248,84b03621-973f-4ab8-ae79-957297433f5d,AUTHORIZATION,,false +40249,84b03621-973f-4ab8-ae79-957297433f5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40250,84b03621-973f-4ab8-ae79-957297433f5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40251,84b03621-973f-4ab8-ae79-957297433f5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40252,cf78aed7-0057-4308-be0e-d7cea9b325b4,LIST_ACCOUNTS,xs2aListAccounts,true -40253,cf78aed7-0057-4308-be0e-d7cea9b325b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40253,cf78aed7-0057-4308-be0e-d7cea9b325b4,LIST_TRANSACTIONS,xs2aListTransactions,true 40254,cf78aed7-0057-4308-be0e-d7cea9b325b4,AUTHORIZATION,,true 40255,cf78aed7-0057-4308-be0e-d7cea9b325b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40256,cf78aed7-0057-4308-be0e-d7cea9b325b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40257,cf78aed7-0057-4308-be0e-d7cea9b325b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40258,ea837041-ce3b-417d-a168-6829d3a8d2a1,LIST_ACCOUNTS,hbciListAccounts,false -40259,ea837041-ce3b-417d-a168-6829d3a8d2a1,LIST_TRANSACTIONS,hbciListTransactions,false -40260,ea837041-ce3b-417d-a168-6829d3a8d2a1,AUTHORIZATION,,false -40261,ea837041-ce3b-417d-a168-6829d3a8d2a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40262,ea837041-ce3b-417d-a168-6829d3a8d2a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40263,ea837041-ce3b-417d-a168-6829d3a8d2a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40258,d6e99dc0-72e4-44c9-b3b8-8fe66868612d,LIST_ACCOUNTS,hbciListAccounts,false +40259,d6e99dc0-72e4-44c9-b3b8-8fe66868612d,LIST_TRANSACTIONS,hbciListTransactions,false +40260,d6e99dc0-72e4-44c9-b3b8-8fe66868612d,AUTHORIZATION,,false +40261,d6e99dc0-72e4-44c9-b3b8-8fe66868612d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40262,d6e99dc0-72e4-44c9-b3b8-8fe66868612d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40263,d6e99dc0-72e4-44c9-b3b8-8fe66868612d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40264,3ee251d3-f4cb-4c07-a93b-87e4f4f62cb9,LIST_ACCOUNTS,xs2aListAccounts,true -40265,3ee251d3-f4cb-4c07-a93b-87e4f4f62cb9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40265,3ee251d3-f4cb-4c07-a93b-87e4f4f62cb9,LIST_TRANSACTIONS,xs2aListTransactions,true 40266,3ee251d3-f4cb-4c07-a93b-87e4f4f62cb9,AUTHORIZATION,,true 40267,3ee251d3-f4cb-4c07-a93b-87e4f4f62cb9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40268,3ee251d3-f4cb-4c07-a93b-87e4f4f62cb9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40269,3ee251d3-f4cb-4c07-a93b-87e4f4f62cb9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40270,a3e2985f-69ef-493d-a070-c525a9e38cf1,LIST_ACCOUNTS,hbciListAccounts,false -40271,a3e2985f-69ef-493d-a070-c525a9e38cf1,LIST_TRANSACTIONS,hbciListTransactions,false -40272,a3e2985f-69ef-493d-a070-c525a9e38cf1,AUTHORIZATION,,false -40273,a3e2985f-69ef-493d-a070-c525a9e38cf1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40274,a3e2985f-69ef-493d-a070-c525a9e38cf1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40275,a3e2985f-69ef-493d-a070-c525a9e38cf1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40270,be37ec89-1898-46ef-a7a2-01aeca951ca9,LIST_ACCOUNTS,hbciListAccounts,false +40271,be37ec89-1898-46ef-a7a2-01aeca951ca9,LIST_TRANSACTIONS,hbciListTransactions,false +40272,be37ec89-1898-46ef-a7a2-01aeca951ca9,AUTHORIZATION,,false +40273,be37ec89-1898-46ef-a7a2-01aeca951ca9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40274,be37ec89-1898-46ef-a7a2-01aeca951ca9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40275,be37ec89-1898-46ef-a7a2-01aeca951ca9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40276,997b85bd-9cb1-41ae-8eb0-0c7a8af3145e,LIST_ACCOUNTS,xs2aListAccounts,true -40277,997b85bd-9cb1-41ae-8eb0-0c7a8af3145e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40277,997b85bd-9cb1-41ae-8eb0-0c7a8af3145e,LIST_TRANSACTIONS,xs2aListTransactions,true 40278,997b85bd-9cb1-41ae-8eb0-0c7a8af3145e,AUTHORIZATION,,true 40279,997b85bd-9cb1-41ae-8eb0-0c7a8af3145e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40280,997b85bd-9cb1-41ae-8eb0-0c7a8af3145e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40281,997b85bd-9cb1-41ae-8eb0-0c7a8af3145e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40282,164fb4c3-3a8c-42b1-91a8-c6bf90663ef4,LIST_ACCOUNTS,hbciListAccounts,false -40283,164fb4c3-3a8c-42b1-91a8-c6bf90663ef4,LIST_TRANSACTIONS,hbciListTransactions,false -40284,164fb4c3-3a8c-42b1-91a8-c6bf90663ef4,AUTHORIZATION,,false -40285,164fb4c3-3a8c-42b1-91a8-c6bf90663ef4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40286,164fb4c3-3a8c-42b1-91a8-c6bf90663ef4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40287,164fb4c3-3a8c-42b1-91a8-c6bf90663ef4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40282,e2d1ff39-6c03-4413-9e0b-ad6f67991c9c,LIST_ACCOUNTS,hbciListAccounts,false +40283,e2d1ff39-6c03-4413-9e0b-ad6f67991c9c,LIST_TRANSACTIONS,hbciListTransactions,false +40284,e2d1ff39-6c03-4413-9e0b-ad6f67991c9c,AUTHORIZATION,,false +40285,e2d1ff39-6c03-4413-9e0b-ad6f67991c9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40286,e2d1ff39-6c03-4413-9e0b-ad6f67991c9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40287,e2d1ff39-6c03-4413-9e0b-ad6f67991c9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40288,0ac8c7a6-9a9f-4fd3-9a11-521d517a2581,LIST_ACCOUNTS,xs2aListAccounts,true -40289,0ac8c7a6-9a9f-4fd3-9a11-521d517a2581,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40289,0ac8c7a6-9a9f-4fd3-9a11-521d517a2581,LIST_TRANSACTIONS,xs2aListTransactions,true 40290,0ac8c7a6-9a9f-4fd3-9a11-521d517a2581,AUTHORIZATION,,true 40291,0ac8c7a6-9a9f-4fd3-9a11-521d517a2581,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40292,0ac8c7a6-9a9f-4fd3-9a11-521d517a2581,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40293,0ac8c7a6-9a9f-4fd3-9a11-521d517a2581,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40294,0315c05f-3cd1-45b1-96b7-b8515fcb7cf7,LIST_ACCOUNTS,hbciListAccounts,false -40295,0315c05f-3cd1-45b1-96b7-b8515fcb7cf7,LIST_TRANSACTIONS,hbciListTransactions,false -40296,0315c05f-3cd1-45b1-96b7-b8515fcb7cf7,AUTHORIZATION,,false -40297,0315c05f-3cd1-45b1-96b7-b8515fcb7cf7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40298,0315c05f-3cd1-45b1-96b7-b8515fcb7cf7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40299,0315c05f-3cd1-45b1-96b7-b8515fcb7cf7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40294,c277f443-2a4c-480a-9afe-0b18935b9f9a,LIST_ACCOUNTS,hbciListAccounts,false +40295,c277f443-2a4c-480a-9afe-0b18935b9f9a,LIST_TRANSACTIONS,hbciListTransactions,false +40296,c277f443-2a4c-480a-9afe-0b18935b9f9a,AUTHORIZATION,,false +40297,c277f443-2a4c-480a-9afe-0b18935b9f9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40298,c277f443-2a4c-480a-9afe-0b18935b9f9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40299,c277f443-2a4c-480a-9afe-0b18935b9f9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40300,71a02589-7c9a-4ba8-a55d-a29d42589472,LIST_ACCOUNTS,xs2aListAccounts,true -40301,71a02589-7c9a-4ba8-a55d-a29d42589472,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40301,71a02589-7c9a-4ba8-a55d-a29d42589472,LIST_TRANSACTIONS,xs2aListTransactions,true 40302,71a02589-7c9a-4ba8-a55d-a29d42589472,AUTHORIZATION,,true 40303,71a02589-7c9a-4ba8-a55d-a29d42589472,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40304,71a02589-7c9a-4ba8-a55d-a29d42589472,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40305,71a02589-7c9a-4ba8-a55d-a29d42589472,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40306,fa23f8f7-2f13-4b2d-ad72-7baa837b0fe9,LIST_ACCOUNTS,hbciListAccounts,false -40307,fa23f8f7-2f13-4b2d-ad72-7baa837b0fe9,LIST_TRANSACTIONS,hbciListTransactions,false -40308,fa23f8f7-2f13-4b2d-ad72-7baa837b0fe9,AUTHORIZATION,,false -40309,fa23f8f7-2f13-4b2d-ad72-7baa837b0fe9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40310,fa23f8f7-2f13-4b2d-ad72-7baa837b0fe9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40311,fa23f8f7-2f13-4b2d-ad72-7baa837b0fe9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40306,86d4f6fe-c0d9-4a59-94e8-547448042f35,LIST_ACCOUNTS,hbciListAccounts,false +40307,86d4f6fe-c0d9-4a59-94e8-547448042f35,LIST_TRANSACTIONS,hbciListTransactions,false +40308,86d4f6fe-c0d9-4a59-94e8-547448042f35,AUTHORIZATION,,false +40309,86d4f6fe-c0d9-4a59-94e8-547448042f35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40310,86d4f6fe-c0d9-4a59-94e8-547448042f35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40311,86d4f6fe-c0d9-4a59-94e8-547448042f35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40312,76193b2a-e62b-4538-870a-5db380e32336,LIST_ACCOUNTS,xs2aListAccounts,true -40313,76193b2a-e62b-4538-870a-5db380e32336,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40313,76193b2a-e62b-4538-870a-5db380e32336,LIST_TRANSACTIONS,xs2aListTransactions,true 40314,76193b2a-e62b-4538-870a-5db380e32336,AUTHORIZATION,,true 40315,76193b2a-e62b-4538-870a-5db380e32336,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40316,76193b2a-e62b-4538-870a-5db380e32336,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40317,76193b2a-e62b-4538-870a-5db380e32336,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40318,a972568c-11cb-4aa7-825f-46d25dcea62b,LIST_ACCOUNTS,hbciListAccounts,false -40319,a972568c-11cb-4aa7-825f-46d25dcea62b,LIST_TRANSACTIONS,hbciListTransactions,false -40320,a972568c-11cb-4aa7-825f-46d25dcea62b,AUTHORIZATION,,false -40321,a972568c-11cb-4aa7-825f-46d25dcea62b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40322,a972568c-11cb-4aa7-825f-46d25dcea62b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40323,a972568c-11cb-4aa7-825f-46d25dcea62b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40318,8fe966ff-1942-4b00-be2f-1380e28b0144,LIST_ACCOUNTS,hbciListAccounts,false +40319,8fe966ff-1942-4b00-be2f-1380e28b0144,LIST_TRANSACTIONS,hbciListTransactions,false +40320,8fe966ff-1942-4b00-be2f-1380e28b0144,AUTHORIZATION,,false +40321,8fe966ff-1942-4b00-be2f-1380e28b0144,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40322,8fe966ff-1942-4b00-be2f-1380e28b0144,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40323,8fe966ff-1942-4b00-be2f-1380e28b0144,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40324,4e928898-6ae0-482b-bd3b-2edab9dcadf6,LIST_ACCOUNTS,xs2aListAccounts,true -40325,4e928898-6ae0-482b-bd3b-2edab9dcadf6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40325,4e928898-6ae0-482b-bd3b-2edab9dcadf6,LIST_TRANSACTIONS,xs2aListTransactions,true 40326,4e928898-6ae0-482b-bd3b-2edab9dcadf6,AUTHORIZATION,,true 40327,4e928898-6ae0-482b-bd3b-2edab9dcadf6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40328,4e928898-6ae0-482b-bd3b-2edab9dcadf6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40329,4e928898-6ae0-482b-bd3b-2edab9dcadf6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40330,c70836ae-3788-40fa-8340-5be12613a35f,LIST_ACCOUNTS,hbciListAccounts,false -40331,c70836ae-3788-40fa-8340-5be12613a35f,LIST_TRANSACTIONS,hbciListTransactions,false -40332,c70836ae-3788-40fa-8340-5be12613a35f,AUTHORIZATION,,false -40333,c70836ae-3788-40fa-8340-5be12613a35f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40334,c70836ae-3788-40fa-8340-5be12613a35f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40335,c70836ae-3788-40fa-8340-5be12613a35f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40330,af1b03df-fd0a-4631-afc0-3c3c67acf394,LIST_ACCOUNTS,hbciListAccounts,false +40331,af1b03df-fd0a-4631-afc0-3c3c67acf394,LIST_TRANSACTIONS,hbciListTransactions,false +40332,af1b03df-fd0a-4631-afc0-3c3c67acf394,AUTHORIZATION,,false +40333,af1b03df-fd0a-4631-afc0-3c3c67acf394,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40334,af1b03df-fd0a-4631-afc0-3c3c67acf394,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40335,af1b03df-fd0a-4631-afc0-3c3c67acf394,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40336,81549db0-085d-481f-beba-d96eab68bddc,LIST_ACCOUNTS,xs2aListAccounts,true -40337,81549db0-085d-481f-beba-d96eab68bddc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40337,81549db0-085d-481f-beba-d96eab68bddc,LIST_TRANSACTIONS,xs2aListTransactions,true 40338,81549db0-085d-481f-beba-d96eab68bddc,AUTHORIZATION,,true 40339,81549db0-085d-481f-beba-d96eab68bddc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40340,81549db0-085d-481f-beba-d96eab68bddc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40341,81549db0-085d-481f-beba-d96eab68bddc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40342,a76b4d11-0c5f-4290-8c44-6574756d95e7,LIST_ACCOUNTS,hbciListAccounts,false -40343,a76b4d11-0c5f-4290-8c44-6574756d95e7,LIST_TRANSACTIONS,hbciListTransactions,false -40344,a76b4d11-0c5f-4290-8c44-6574756d95e7,AUTHORIZATION,,false -40345,a76b4d11-0c5f-4290-8c44-6574756d95e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40346,a76b4d11-0c5f-4290-8c44-6574756d95e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40347,a76b4d11-0c5f-4290-8c44-6574756d95e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40342,f93b1a6b-6ff8-4e3b-a6d8-abcb25cdb765,LIST_ACCOUNTS,hbciListAccounts,false +40343,f93b1a6b-6ff8-4e3b-a6d8-abcb25cdb765,LIST_TRANSACTIONS,hbciListTransactions,false +40344,f93b1a6b-6ff8-4e3b-a6d8-abcb25cdb765,AUTHORIZATION,,false +40345,f93b1a6b-6ff8-4e3b-a6d8-abcb25cdb765,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40346,f93b1a6b-6ff8-4e3b-a6d8-abcb25cdb765,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40347,f93b1a6b-6ff8-4e3b-a6d8-abcb25cdb765,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40348,b3844a61-b6c8-4169-b72c-1cd9d3e6bd6c,LIST_ACCOUNTS,xs2aListAccounts,true -40349,b3844a61-b6c8-4169-b72c-1cd9d3e6bd6c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40349,b3844a61-b6c8-4169-b72c-1cd9d3e6bd6c,LIST_TRANSACTIONS,xs2aListTransactions,true 40350,b3844a61-b6c8-4169-b72c-1cd9d3e6bd6c,AUTHORIZATION,,true 40351,b3844a61-b6c8-4169-b72c-1cd9d3e6bd6c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40352,b3844a61-b6c8-4169-b72c-1cd9d3e6bd6c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40353,b3844a61-b6c8-4169-b72c-1cd9d3e6bd6c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40354,8ff4e3cf-5c2d-4162-ab1e-431c8d3043d5,LIST_ACCOUNTS,hbciListAccounts,false -40355,8ff4e3cf-5c2d-4162-ab1e-431c8d3043d5,LIST_TRANSACTIONS,hbciListTransactions,false -40356,8ff4e3cf-5c2d-4162-ab1e-431c8d3043d5,AUTHORIZATION,,false -40357,8ff4e3cf-5c2d-4162-ab1e-431c8d3043d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40358,8ff4e3cf-5c2d-4162-ab1e-431c8d3043d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40359,8ff4e3cf-5c2d-4162-ab1e-431c8d3043d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40354,df974857-8889-41ba-be65-750ea35cd394,LIST_ACCOUNTS,hbciListAccounts,false +40355,df974857-8889-41ba-be65-750ea35cd394,LIST_TRANSACTIONS,hbciListTransactions,false +40356,df974857-8889-41ba-be65-750ea35cd394,AUTHORIZATION,,false +40357,df974857-8889-41ba-be65-750ea35cd394,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40358,df974857-8889-41ba-be65-750ea35cd394,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40359,df974857-8889-41ba-be65-750ea35cd394,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40360,945d6b1e-cf95-4a55-b493-feff4c899c47,LIST_ACCOUNTS,xs2aListAccounts,true -40361,945d6b1e-cf95-4a55-b493-feff4c899c47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40361,945d6b1e-cf95-4a55-b493-feff4c899c47,LIST_TRANSACTIONS,xs2aListTransactions,true 40362,945d6b1e-cf95-4a55-b493-feff4c899c47,AUTHORIZATION,,true 40363,945d6b1e-cf95-4a55-b493-feff4c899c47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40364,945d6b1e-cf95-4a55-b493-feff4c899c47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40365,945d6b1e-cf95-4a55-b493-feff4c899c47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40366,6af80730-947f-4362-bd98-01172f614be3,LIST_ACCOUNTS,hbciListAccounts,false -40367,6af80730-947f-4362-bd98-01172f614be3,LIST_TRANSACTIONS,hbciListTransactions,false -40368,6af80730-947f-4362-bd98-01172f614be3,AUTHORIZATION,,false -40369,6af80730-947f-4362-bd98-01172f614be3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40370,6af80730-947f-4362-bd98-01172f614be3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40371,6af80730-947f-4362-bd98-01172f614be3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40366,81f67094-48a7-41a7-850a-6d9bc958b29d,LIST_ACCOUNTS,hbciListAccounts,false +40367,81f67094-48a7-41a7-850a-6d9bc958b29d,LIST_TRANSACTIONS,hbciListTransactions,false +40368,81f67094-48a7-41a7-850a-6d9bc958b29d,AUTHORIZATION,,false +40369,81f67094-48a7-41a7-850a-6d9bc958b29d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40370,81f67094-48a7-41a7-850a-6d9bc958b29d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40371,81f67094-48a7-41a7-850a-6d9bc958b29d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40372,1b08061a-e744-4352-bce6-c4927bc3b3f2,LIST_ACCOUNTS,xs2aListAccounts,true -40373,1b08061a-e744-4352-bce6-c4927bc3b3f2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40373,1b08061a-e744-4352-bce6-c4927bc3b3f2,LIST_TRANSACTIONS,xs2aListTransactions,true 40374,1b08061a-e744-4352-bce6-c4927bc3b3f2,AUTHORIZATION,,true 40375,1b08061a-e744-4352-bce6-c4927bc3b3f2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40376,1b08061a-e744-4352-bce6-c4927bc3b3f2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40377,1b08061a-e744-4352-bce6-c4927bc3b3f2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40378,b684242a-33ef-4c5d-8200-b342b912b33b,LIST_ACCOUNTS,hbciListAccounts,false -40379,b684242a-33ef-4c5d-8200-b342b912b33b,LIST_TRANSACTIONS,hbciListTransactions,false -40380,b684242a-33ef-4c5d-8200-b342b912b33b,AUTHORIZATION,,false -40381,b684242a-33ef-4c5d-8200-b342b912b33b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40382,b684242a-33ef-4c5d-8200-b342b912b33b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40383,b684242a-33ef-4c5d-8200-b342b912b33b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40378,1a98ab42-4108-48b8-ac53-aabc208afae5,LIST_ACCOUNTS,hbciListAccounts,false +40379,1a98ab42-4108-48b8-ac53-aabc208afae5,LIST_TRANSACTIONS,hbciListTransactions,false +40380,1a98ab42-4108-48b8-ac53-aabc208afae5,AUTHORIZATION,,false +40381,1a98ab42-4108-48b8-ac53-aabc208afae5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40382,1a98ab42-4108-48b8-ac53-aabc208afae5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40383,1a98ab42-4108-48b8-ac53-aabc208afae5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40384,4e7f44c4-0118-4cae-94ee-c7b66d1b1194,LIST_ACCOUNTS,xs2aListAccounts,true -40385,4e7f44c4-0118-4cae-94ee-c7b66d1b1194,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40385,4e7f44c4-0118-4cae-94ee-c7b66d1b1194,LIST_TRANSACTIONS,xs2aListTransactions,true 40386,4e7f44c4-0118-4cae-94ee-c7b66d1b1194,AUTHORIZATION,,true 40387,4e7f44c4-0118-4cae-94ee-c7b66d1b1194,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40388,4e7f44c4-0118-4cae-94ee-c7b66d1b1194,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40389,4e7f44c4-0118-4cae-94ee-c7b66d1b1194,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40390,a6a9f205-b92d-45fd-8595-42ef427f5a2f,LIST_ACCOUNTS,hbciListAccounts,false -40391,a6a9f205-b92d-45fd-8595-42ef427f5a2f,LIST_TRANSACTIONS,hbciListTransactions,false -40392,a6a9f205-b92d-45fd-8595-42ef427f5a2f,AUTHORIZATION,,false -40393,a6a9f205-b92d-45fd-8595-42ef427f5a2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40394,a6a9f205-b92d-45fd-8595-42ef427f5a2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40395,a6a9f205-b92d-45fd-8595-42ef427f5a2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40390,70e0acd3-75bd-443d-a876-e1045eb99d4b,LIST_ACCOUNTS,hbciListAccounts,false +40391,70e0acd3-75bd-443d-a876-e1045eb99d4b,LIST_TRANSACTIONS,hbciListTransactions,false +40392,70e0acd3-75bd-443d-a876-e1045eb99d4b,AUTHORIZATION,,false +40393,70e0acd3-75bd-443d-a876-e1045eb99d4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40394,70e0acd3-75bd-443d-a876-e1045eb99d4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40395,70e0acd3-75bd-443d-a876-e1045eb99d4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40396,655c2054-3767-430e-9639-adae10ede218,LIST_ACCOUNTS,xs2aListAccounts,true -40397,655c2054-3767-430e-9639-adae10ede218,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40397,655c2054-3767-430e-9639-adae10ede218,LIST_TRANSACTIONS,xs2aListTransactions,true 40398,655c2054-3767-430e-9639-adae10ede218,AUTHORIZATION,,true 40399,655c2054-3767-430e-9639-adae10ede218,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40400,655c2054-3767-430e-9639-adae10ede218,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40401,655c2054-3767-430e-9639-adae10ede218,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40402,de0d6ad9-c1e4-4c7e-a5dd-80ba9234bf14,LIST_ACCOUNTS,hbciListAccounts,false -40403,de0d6ad9-c1e4-4c7e-a5dd-80ba9234bf14,LIST_TRANSACTIONS,hbciListTransactions,false -40404,de0d6ad9-c1e4-4c7e-a5dd-80ba9234bf14,AUTHORIZATION,,false -40405,de0d6ad9-c1e4-4c7e-a5dd-80ba9234bf14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40406,de0d6ad9-c1e4-4c7e-a5dd-80ba9234bf14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40407,de0d6ad9-c1e4-4c7e-a5dd-80ba9234bf14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40402,da0006ad-97a6-4189-992b-d0842fbfd5d5,LIST_ACCOUNTS,hbciListAccounts,false +40403,da0006ad-97a6-4189-992b-d0842fbfd5d5,LIST_TRANSACTIONS,hbciListTransactions,false +40404,da0006ad-97a6-4189-992b-d0842fbfd5d5,AUTHORIZATION,,false +40405,da0006ad-97a6-4189-992b-d0842fbfd5d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40406,da0006ad-97a6-4189-992b-d0842fbfd5d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40407,da0006ad-97a6-4189-992b-d0842fbfd5d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40408,84faf457-4e0a-4e1f-9aab-a5cecd363bf5,LIST_ACCOUNTS,xs2aListAccounts,true -40409,84faf457-4e0a-4e1f-9aab-a5cecd363bf5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40409,84faf457-4e0a-4e1f-9aab-a5cecd363bf5,LIST_TRANSACTIONS,xs2aListTransactions,true 40410,84faf457-4e0a-4e1f-9aab-a5cecd363bf5,AUTHORIZATION,,true 40411,84faf457-4e0a-4e1f-9aab-a5cecd363bf5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40412,84faf457-4e0a-4e1f-9aab-a5cecd363bf5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40413,84faf457-4e0a-4e1f-9aab-a5cecd363bf5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40414,1885e75b-4d70-4197-9b2c-722b1568dd34,LIST_ACCOUNTS,hbciListAccounts,false -40415,1885e75b-4d70-4197-9b2c-722b1568dd34,LIST_TRANSACTIONS,hbciListTransactions,false -40416,1885e75b-4d70-4197-9b2c-722b1568dd34,AUTHORIZATION,,false -40417,1885e75b-4d70-4197-9b2c-722b1568dd34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40418,1885e75b-4d70-4197-9b2c-722b1568dd34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40419,1885e75b-4d70-4197-9b2c-722b1568dd34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40414,3759de25-75f2-48df-93ce-f4958650da89,LIST_ACCOUNTS,hbciListAccounts,false +40415,3759de25-75f2-48df-93ce-f4958650da89,LIST_TRANSACTIONS,hbciListTransactions,false +40416,3759de25-75f2-48df-93ce-f4958650da89,AUTHORIZATION,,false +40417,3759de25-75f2-48df-93ce-f4958650da89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40418,3759de25-75f2-48df-93ce-f4958650da89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40419,3759de25-75f2-48df-93ce-f4958650da89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40420,16aa5843-1b03-4fa5-8c94-29ed71f55fac,LIST_ACCOUNTS,xs2aListAccounts,true -40421,16aa5843-1b03-4fa5-8c94-29ed71f55fac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40421,16aa5843-1b03-4fa5-8c94-29ed71f55fac,LIST_TRANSACTIONS,xs2aListTransactions,true 40422,16aa5843-1b03-4fa5-8c94-29ed71f55fac,AUTHORIZATION,,true 40423,16aa5843-1b03-4fa5-8c94-29ed71f55fac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40424,16aa5843-1b03-4fa5-8c94-29ed71f55fac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40425,16aa5843-1b03-4fa5-8c94-29ed71f55fac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40426,f3e9f536-0037-461b-863e-ab36a3fda47e,LIST_ACCOUNTS,hbciListAccounts,false -40427,f3e9f536-0037-461b-863e-ab36a3fda47e,LIST_TRANSACTIONS,hbciListTransactions,false -40428,f3e9f536-0037-461b-863e-ab36a3fda47e,AUTHORIZATION,,false -40429,f3e9f536-0037-461b-863e-ab36a3fda47e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40430,f3e9f536-0037-461b-863e-ab36a3fda47e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40431,f3e9f536-0037-461b-863e-ab36a3fda47e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40426,1a735722-0d48-4827-8123-0ef72030f8e7,LIST_ACCOUNTS,hbciListAccounts,false +40427,1a735722-0d48-4827-8123-0ef72030f8e7,LIST_TRANSACTIONS,hbciListTransactions,false +40428,1a735722-0d48-4827-8123-0ef72030f8e7,AUTHORIZATION,,false +40429,1a735722-0d48-4827-8123-0ef72030f8e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40430,1a735722-0d48-4827-8123-0ef72030f8e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40431,1a735722-0d48-4827-8123-0ef72030f8e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40432,a6e1e7c8-1bdb-4945-9dd0-2faca69fd78a,LIST_ACCOUNTS,xs2aListAccounts,true -40433,a6e1e7c8-1bdb-4945-9dd0-2faca69fd78a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40433,a6e1e7c8-1bdb-4945-9dd0-2faca69fd78a,LIST_TRANSACTIONS,xs2aListTransactions,true 40434,a6e1e7c8-1bdb-4945-9dd0-2faca69fd78a,AUTHORIZATION,,true 40435,a6e1e7c8-1bdb-4945-9dd0-2faca69fd78a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40436,a6e1e7c8-1bdb-4945-9dd0-2faca69fd78a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40437,a6e1e7c8-1bdb-4945-9dd0-2faca69fd78a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40438,914474d5-3b81-4a91-a257-914c981bf70e,LIST_ACCOUNTS,hbciListAccounts,false -40439,914474d5-3b81-4a91-a257-914c981bf70e,LIST_TRANSACTIONS,hbciListTransactions,false -40440,914474d5-3b81-4a91-a257-914c981bf70e,AUTHORIZATION,,false -40441,914474d5-3b81-4a91-a257-914c981bf70e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40442,914474d5-3b81-4a91-a257-914c981bf70e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40443,914474d5-3b81-4a91-a257-914c981bf70e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40438,aa4cdfc4-b210-4bb0-972b-0c1bfdef5388,LIST_ACCOUNTS,hbciListAccounts,false +40439,aa4cdfc4-b210-4bb0-972b-0c1bfdef5388,LIST_TRANSACTIONS,hbciListTransactions,false +40440,aa4cdfc4-b210-4bb0-972b-0c1bfdef5388,AUTHORIZATION,,false +40441,aa4cdfc4-b210-4bb0-972b-0c1bfdef5388,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40442,aa4cdfc4-b210-4bb0-972b-0c1bfdef5388,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40443,aa4cdfc4-b210-4bb0-972b-0c1bfdef5388,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40444,c560e379-bd52-4e16-8899-ba86ebec6a0e,LIST_ACCOUNTS,xs2aListAccounts,true -40445,c560e379-bd52-4e16-8899-ba86ebec6a0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40445,c560e379-bd52-4e16-8899-ba86ebec6a0e,LIST_TRANSACTIONS,xs2aListTransactions,true 40446,c560e379-bd52-4e16-8899-ba86ebec6a0e,AUTHORIZATION,,true 40447,c560e379-bd52-4e16-8899-ba86ebec6a0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40448,c560e379-bd52-4e16-8899-ba86ebec6a0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40449,c560e379-bd52-4e16-8899-ba86ebec6a0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40450,573f047b-2d2c-4db9-8ece-c3dacd3a51fa,LIST_ACCOUNTS,hbciListAccounts,false -40451,573f047b-2d2c-4db9-8ece-c3dacd3a51fa,LIST_TRANSACTIONS,hbciListTransactions,false -40452,573f047b-2d2c-4db9-8ece-c3dacd3a51fa,AUTHORIZATION,,false -40453,573f047b-2d2c-4db9-8ece-c3dacd3a51fa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40454,573f047b-2d2c-4db9-8ece-c3dacd3a51fa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40455,573f047b-2d2c-4db9-8ece-c3dacd3a51fa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40450,850e0102-0171-41b1-aa04-312b9ab62779,LIST_ACCOUNTS,hbciListAccounts,false +40451,850e0102-0171-41b1-aa04-312b9ab62779,LIST_TRANSACTIONS,hbciListTransactions,false +40452,850e0102-0171-41b1-aa04-312b9ab62779,AUTHORIZATION,,false +40453,850e0102-0171-41b1-aa04-312b9ab62779,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40454,850e0102-0171-41b1-aa04-312b9ab62779,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40455,850e0102-0171-41b1-aa04-312b9ab62779,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40456,380c9080-ce87-48e9-b22e-6d51503ca14d,LIST_ACCOUNTS,xs2aListAccounts,true -40457,380c9080-ce87-48e9-b22e-6d51503ca14d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40457,380c9080-ce87-48e9-b22e-6d51503ca14d,LIST_TRANSACTIONS,xs2aListTransactions,true 40458,380c9080-ce87-48e9-b22e-6d51503ca14d,AUTHORIZATION,,true 40459,380c9080-ce87-48e9-b22e-6d51503ca14d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40460,380c9080-ce87-48e9-b22e-6d51503ca14d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40461,380c9080-ce87-48e9-b22e-6d51503ca14d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40462,5c371bff-b164-4f14-9dcd-9b5d8cb5bad0,LIST_ACCOUNTS,hbciListAccounts,false -40463,5c371bff-b164-4f14-9dcd-9b5d8cb5bad0,LIST_TRANSACTIONS,hbciListTransactions,false -40464,5c371bff-b164-4f14-9dcd-9b5d8cb5bad0,AUTHORIZATION,,false -40465,5c371bff-b164-4f14-9dcd-9b5d8cb5bad0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40466,5c371bff-b164-4f14-9dcd-9b5d8cb5bad0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40467,5c371bff-b164-4f14-9dcd-9b5d8cb5bad0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40462,01029551-54f8-4f96-9551-1fad5da65f2a,LIST_ACCOUNTS,hbciListAccounts,false +40463,01029551-54f8-4f96-9551-1fad5da65f2a,LIST_TRANSACTIONS,hbciListTransactions,false +40464,01029551-54f8-4f96-9551-1fad5da65f2a,AUTHORIZATION,,false +40465,01029551-54f8-4f96-9551-1fad5da65f2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40466,01029551-54f8-4f96-9551-1fad5da65f2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40467,01029551-54f8-4f96-9551-1fad5da65f2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40468,2494151b-9be7-42fb-b6f8-1da6b11d10d1,LIST_ACCOUNTS,xs2aListAccounts,true -40469,2494151b-9be7-42fb-b6f8-1da6b11d10d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40469,2494151b-9be7-42fb-b6f8-1da6b11d10d1,LIST_TRANSACTIONS,xs2aListTransactions,true 40470,2494151b-9be7-42fb-b6f8-1da6b11d10d1,AUTHORIZATION,,true 40471,2494151b-9be7-42fb-b6f8-1da6b11d10d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40472,2494151b-9be7-42fb-b6f8-1da6b11d10d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40473,2494151b-9be7-42fb-b6f8-1da6b11d10d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40474,b544a856-8355-4c08-9a0f-5dc48f50dc16,LIST_ACCOUNTS,hbciListAccounts,false -40475,b544a856-8355-4c08-9a0f-5dc48f50dc16,LIST_TRANSACTIONS,hbciListTransactions,false -40476,b544a856-8355-4c08-9a0f-5dc48f50dc16,AUTHORIZATION,,false -40477,b544a856-8355-4c08-9a0f-5dc48f50dc16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40478,b544a856-8355-4c08-9a0f-5dc48f50dc16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40479,b544a856-8355-4c08-9a0f-5dc48f50dc16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40474,7f976f88-4130-44e4-9312-94592d139ff1,LIST_ACCOUNTS,hbciListAccounts,false +40475,7f976f88-4130-44e4-9312-94592d139ff1,LIST_TRANSACTIONS,hbciListTransactions,false +40476,7f976f88-4130-44e4-9312-94592d139ff1,AUTHORIZATION,,false +40477,7f976f88-4130-44e4-9312-94592d139ff1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40478,7f976f88-4130-44e4-9312-94592d139ff1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40479,7f976f88-4130-44e4-9312-94592d139ff1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40480,d2898dc2-db92-463a-bcbd-850d9c77ec14,LIST_ACCOUNTS,xs2aListAccounts,true -40481,d2898dc2-db92-463a-bcbd-850d9c77ec14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40481,d2898dc2-db92-463a-bcbd-850d9c77ec14,LIST_TRANSACTIONS,xs2aListTransactions,true 40482,d2898dc2-db92-463a-bcbd-850d9c77ec14,AUTHORIZATION,,true 40483,d2898dc2-db92-463a-bcbd-850d9c77ec14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40484,d2898dc2-db92-463a-bcbd-850d9c77ec14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40485,d2898dc2-db92-463a-bcbd-850d9c77ec14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40486,981fbdef-1dc6-48cb-8102-938e8abb37ab,LIST_ACCOUNTS,hbciListAccounts,false -40487,981fbdef-1dc6-48cb-8102-938e8abb37ab,LIST_TRANSACTIONS,hbciListTransactions,false -40488,981fbdef-1dc6-48cb-8102-938e8abb37ab,AUTHORIZATION,,false -40489,981fbdef-1dc6-48cb-8102-938e8abb37ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40490,981fbdef-1dc6-48cb-8102-938e8abb37ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40491,981fbdef-1dc6-48cb-8102-938e8abb37ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40486,cb4c597c-d182-4078-9f43-78cbd6fae52d,LIST_ACCOUNTS,hbciListAccounts,false +40487,cb4c597c-d182-4078-9f43-78cbd6fae52d,LIST_TRANSACTIONS,hbciListTransactions,false +40488,cb4c597c-d182-4078-9f43-78cbd6fae52d,AUTHORIZATION,,false +40489,cb4c597c-d182-4078-9f43-78cbd6fae52d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40490,cb4c597c-d182-4078-9f43-78cbd6fae52d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40491,cb4c597c-d182-4078-9f43-78cbd6fae52d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40492,796b0e2b-026c-42f5-8226-adc7cf03590b,LIST_ACCOUNTS,xs2aListAccounts,true -40493,796b0e2b-026c-42f5-8226-adc7cf03590b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40493,796b0e2b-026c-42f5-8226-adc7cf03590b,LIST_TRANSACTIONS,xs2aListTransactions,true 40494,796b0e2b-026c-42f5-8226-adc7cf03590b,AUTHORIZATION,,true 40495,796b0e2b-026c-42f5-8226-adc7cf03590b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40496,796b0e2b-026c-42f5-8226-adc7cf03590b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40497,796b0e2b-026c-42f5-8226-adc7cf03590b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40498,53f61378-804d-4038-8d11-87cbd9fbb49e,LIST_ACCOUNTS,hbciListAccounts,false -40499,53f61378-804d-4038-8d11-87cbd9fbb49e,LIST_TRANSACTIONS,hbciListTransactions,false -40500,53f61378-804d-4038-8d11-87cbd9fbb49e,AUTHORIZATION,,false -40501,53f61378-804d-4038-8d11-87cbd9fbb49e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40502,53f61378-804d-4038-8d11-87cbd9fbb49e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40503,53f61378-804d-4038-8d11-87cbd9fbb49e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40498,abe12ba1-7d56-4582-882d-268a1ca3f32b,LIST_ACCOUNTS,hbciListAccounts,false +40499,abe12ba1-7d56-4582-882d-268a1ca3f32b,LIST_TRANSACTIONS,hbciListTransactions,false +40500,abe12ba1-7d56-4582-882d-268a1ca3f32b,AUTHORIZATION,,false +40501,abe12ba1-7d56-4582-882d-268a1ca3f32b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40502,abe12ba1-7d56-4582-882d-268a1ca3f32b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40503,abe12ba1-7d56-4582-882d-268a1ca3f32b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40504,9af84683-b21a-4e93-bcbf-404912c5c99a,LIST_ACCOUNTS,xs2aListAccounts,true -40505,9af84683-b21a-4e93-bcbf-404912c5c99a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40505,9af84683-b21a-4e93-bcbf-404912c5c99a,LIST_TRANSACTIONS,xs2aListTransactions,true 40506,9af84683-b21a-4e93-bcbf-404912c5c99a,AUTHORIZATION,,true 40507,9af84683-b21a-4e93-bcbf-404912c5c99a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40508,9af84683-b21a-4e93-bcbf-404912c5c99a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40509,9af84683-b21a-4e93-bcbf-404912c5c99a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40510,922e33b2-aa99-45b3-baad-1c637ac0bc82,LIST_ACCOUNTS,hbciListAccounts,false -40511,922e33b2-aa99-45b3-baad-1c637ac0bc82,LIST_TRANSACTIONS,hbciListTransactions,false -40512,922e33b2-aa99-45b3-baad-1c637ac0bc82,AUTHORIZATION,,false -40513,922e33b2-aa99-45b3-baad-1c637ac0bc82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40514,922e33b2-aa99-45b3-baad-1c637ac0bc82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40515,922e33b2-aa99-45b3-baad-1c637ac0bc82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40510,f443b3b1-edcd-4f99-bef6-67a2bc3d786c,LIST_ACCOUNTS,hbciListAccounts,false +40511,f443b3b1-edcd-4f99-bef6-67a2bc3d786c,LIST_TRANSACTIONS,hbciListTransactions,false +40512,f443b3b1-edcd-4f99-bef6-67a2bc3d786c,AUTHORIZATION,,false +40513,f443b3b1-edcd-4f99-bef6-67a2bc3d786c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40514,f443b3b1-edcd-4f99-bef6-67a2bc3d786c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40515,f443b3b1-edcd-4f99-bef6-67a2bc3d786c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40516,3fdb0804-ed59-4bbf-ae76-01832253d485,LIST_ACCOUNTS,xs2aListAccounts,true -40517,3fdb0804-ed59-4bbf-ae76-01832253d485,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40517,3fdb0804-ed59-4bbf-ae76-01832253d485,LIST_TRANSACTIONS,xs2aListTransactions,true 40518,3fdb0804-ed59-4bbf-ae76-01832253d485,AUTHORIZATION,,true 40519,3fdb0804-ed59-4bbf-ae76-01832253d485,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40520,3fdb0804-ed59-4bbf-ae76-01832253d485,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40521,3fdb0804-ed59-4bbf-ae76-01832253d485,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40522,d37bed8e-1636-4e6a-a6cc-89f581c5f9bf,LIST_ACCOUNTS,hbciListAccounts,false -40523,d37bed8e-1636-4e6a-a6cc-89f581c5f9bf,LIST_TRANSACTIONS,hbciListTransactions,false -40524,d37bed8e-1636-4e6a-a6cc-89f581c5f9bf,AUTHORIZATION,,false -40525,d37bed8e-1636-4e6a-a6cc-89f581c5f9bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40526,d37bed8e-1636-4e6a-a6cc-89f581c5f9bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40527,d37bed8e-1636-4e6a-a6cc-89f581c5f9bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40522,f72c581b-449b-43a3-812a-096c0076a5f1,LIST_ACCOUNTS,hbciListAccounts,false +40523,f72c581b-449b-43a3-812a-096c0076a5f1,LIST_TRANSACTIONS,hbciListTransactions,false +40524,f72c581b-449b-43a3-812a-096c0076a5f1,AUTHORIZATION,,false +40525,f72c581b-449b-43a3-812a-096c0076a5f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40526,f72c581b-449b-43a3-812a-096c0076a5f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40527,f72c581b-449b-43a3-812a-096c0076a5f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40528,f9d4608e-3722-4426-8eaa-2d419e638dc2,LIST_ACCOUNTS,xs2aListAccounts,true -40529,f9d4608e-3722-4426-8eaa-2d419e638dc2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40529,f9d4608e-3722-4426-8eaa-2d419e638dc2,LIST_TRANSACTIONS,xs2aListTransactions,true 40530,f9d4608e-3722-4426-8eaa-2d419e638dc2,AUTHORIZATION,,true 40531,f9d4608e-3722-4426-8eaa-2d419e638dc2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40532,f9d4608e-3722-4426-8eaa-2d419e638dc2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40533,f9d4608e-3722-4426-8eaa-2d419e638dc2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40534,577691a0-1e07-4668-9f62-7dd8fb997ca2,LIST_ACCOUNTS,hbciListAccounts,false -40535,577691a0-1e07-4668-9f62-7dd8fb997ca2,LIST_TRANSACTIONS,hbciListTransactions,false -40536,577691a0-1e07-4668-9f62-7dd8fb997ca2,AUTHORIZATION,,false -40537,577691a0-1e07-4668-9f62-7dd8fb997ca2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40538,577691a0-1e07-4668-9f62-7dd8fb997ca2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40539,577691a0-1e07-4668-9f62-7dd8fb997ca2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40534,7f48ac29-0ce4-4336-82c2-800b30e438ef,LIST_ACCOUNTS,hbciListAccounts,false +40535,7f48ac29-0ce4-4336-82c2-800b30e438ef,LIST_TRANSACTIONS,hbciListTransactions,false +40536,7f48ac29-0ce4-4336-82c2-800b30e438ef,AUTHORIZATION,,false +40537,7f48ac29-0ce4-4336-82c2-800b30e438ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40538,7f48ac29-0ce4-4336-82c2-800b30e438ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40539,7f48ac29-0ce4-4336-82c2-800b30e438ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40540,1251cb45-386a-47d4-ad2d-3594d75e7873,LIST_ACCOUNTS,xs2aListAccounts,true -40541,1251cb45-386a-47d4-ad2d-3594d75e7873,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40541,1251cb45-386a-47d4-ad2d-3594d75e7873,LIST_TRANSACTIONS,xs2aListTransactions,true 40542,1251cb45-386a-47d4-ad2d-3594d75e7873,AUTHORIZATION,,true 40543,1251cb45-386a-47d4-ad2d-3594d75e7873,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40544,1251cb45-386a-47d4-ad2d-3594d75e7873,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40545,1251cb45-386a-47d4-ad2d-3594d75e7873,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40546,625193b1-680e-473c-83ea-7e07406fb359,LIST_ACCOUNTS,hbciListAccounts,false -40547,625193b1-680e-473c-83ea-7e07406fb359,LIST_TRANSACTIONS,hbciListTransactions,false -40548,625193b1-680e-473c-83ea-7e07406fb359,AUTHORIZATION,,false -40549,625193b1-680e-473c-83ea-7e07406fb359,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40550,625193b1-680e-473c-83ea-7e07406fb359,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40551,625193b1-680e-473c-83ea-7e07406fb359,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40546,84d6d019-3667-472f-a78b-b2a2688c827e,LIST_ACCOUNTS,hbciListAccounts,false +40547,84d6d019-3667-472f-a78b-b2a2688c827e,LIST_TRANSACTIONS,hbciListTransactions,false +40548,84d6d019-3667-472f-a78b-b2a2688c827e,AUTHORIZATION,,false +40549,84d6d019-3667-472f-a78b-b2a2688c827e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40550,84d6d019-3667-472f-a78b-b2a2688c827e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40551,84d6d019-3667-472f-a78b-b2a2688c827e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40552,2c8e2d33-4361-4231-bf57-615cc33a77aa,LIST_ACCOUNTS,xs2aListAccounts,true -40553,2c8e2d33-4361-4231-bf57-615cc33a77aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40553,2c8e2d33-4361-4231-bf57-615cc33a77aa,LIST_TRANSACTIONS,xs2aListTransactions,true 40554,2c8e2d33-4361-4231-bf57-615cc33a77aa,AUTHORIZATION,,true 40555,2c8e2d33-4361-4231-bf57-615cc33a77aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40556,2c8e2d33-4361-4231-bf57-615cc33a77aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40557,2c8e2d33-4361-4231-bf57-615cc33a77aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40558,606b5772-81f0-4bc4-b1c1-67654ed3c91a,LIST_ACCOUNTS,hbciListAccounts,false -40559,606b5772-81f0-4bc4-b1c1-67654ed3c91a,LIST_TRANSACTIONS,hbciListTransactions,false -40560,606b5772-81f0-4bc4-b1c1-67654ed3c91a,AUTHORIZATION,,false -40561,606b5772-81f0-4bc4-b1c1-67654ed3c91a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40562,606b5772-81f0-4bc4-b1c1-67654ed3c91a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40563,606b5772-81f0-4bc4-b1c1-67654ed3c91a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40558,40c35bff-b651-4cb1-8ae1-0811a63d8db7,LIST_ACCOUNTS,hbciListAccounts,false +40559,40c35bff-b651-4cb1-8ae1-0811a63d8db7,LIST_TRANSACTIONS,hbciListTransactions,false +40560,40c35bff-b651-4cb1-8ae1-0811a63d8db7,AUTHORIZATION,,false +40561,40c35bff-b651-4cb1-8ae1-0811a63d8db7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40562,40c35bff-b651-4cb1-8ae1-0811a63d8db7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40563,40c35bff-b651-4cb1-8ae1-0811a63d8db7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40564,bba6a697-1bfb-4065-a241-53396f5e7a49,LIST_ACCOUNTS,xs2aListAccounts,true -40565,bba6a697-1bfb-4065-a241-53396f5e7a49,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40565,bba6a697-1bfb-4065-a241-53396f5e7a49,LIST_TRANSACTIONS,xs2aListTransactions,true 40566,bba6a697-1bfb-4065-a241-53396f5e7a49,AUTHORIZATION,,true 40567,bba6a697-1bfb-4065-a241-53396f5e7a49,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40568,bba6a697-1bfb-4065-a241-53396f5e7a49,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40569,bba6a697-1bfb-4065-a241-53396f5e7a49,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40570,1475f688-849d-4ec7-bf13-dc46812fbc91,LIST_ACCOUNTS,hbciListAccounts,false -40571,1475f688-849d-4ec7-bf13-dc46812fbc91,LIST_TRANSACTIONS,hbciListTransactions,false -40572,1475f688-849d-4ec7-bf13-dc46812fbc91,AUTHORIZATION,,false -40573,1475f688-849d-4ec7-bf13-dc46812fbc91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40574,1475f688-849d-4ec7-bf13-dc46812fbc91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40575,1475f688-849d-4ec7-bf13-dc46812fbc91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40570,7ccde6a9-94b9-4c7b-bdb6-b40d6f10e7e7,LIST_ACCOUNTS,hbciListAccounts,false +40571,7ccde6a9-94b9-4c7b-bdb6-b40d6f10e7e7,LIST_TRANSACTIONS,hbciListTransactions,false +40572,7ccde6a9-94b9-4c7b-bdb6-b40d6f10e7e7,AUTHORIZATION,,false +40573,7ccde6a9-94b9-4c7b-bdb6-b40d6f10e7e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40574,7ccde6a9-94b9-4c7b-bdb6-b40d6f10e7e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40575,7ccde6a9-94b9-4c7b-bdb6-b40d6f10e7e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40576,75153faf-a6cf-4b26-b34c-745f3f53c7ea,LIST_ACCOUNTS,xs2aListAccounts,true -40577,75153faf-a6cf-4b26-b34c-745f3f53c7ea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40577,75153faf-a6cf-4b26-b34c-745f3f53c7ea,LIST_TRANSACTIONS,xs2aListTransactions,true 40578,75153faf-a6cf-4b26-b34c-745f3f53c7ea,AUTHORIZATION,,true 40579,75153faf-a6cf-4b26-b34c-745f3f53c7ea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40580,75153faf-a6cf-4b26-b34c-745f3f53c7ea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40581,75153faf-a6cf-4b26-b34c-745f3f53c7ea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40582,7eae328c-2b98-4f83-935e-f1898360d6e5,LIST_ACCOUNTS,hbciListAccounts,false -40583,7eae328c-2b98-4f83-935e-f1898360d6e5,LIST_TRANSACTIONS,hbciListTransactions,false -40584,7eae328c-2b98-4f83-935e-f1898360d6e5,AUTHORIZATION,,false -40585,7eae328c-2b98-4f83-935e-f1898360d6e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40586,7eae328c-2b98-4f83-935e-f1898360d6e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40587,7eae328c-2b98-4f83-935e-f1898360d6e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40582,52216ce8-c656-499b-8843-e9552ff82862,LIST_ACCOUNTS,hbciListAccounts,false +40583,52216ce8-c656-499b-8843-e9552ff82862,LIST_TRANSACTIONS,hbciListTransactions,false +40584,52216ce8-c656-499b-8843-e9552ff82862,AUTHORIZATION,,false +40585,52216ce8-c656-499b-8843-e9552ff82862,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40586,52216ce8-c656-499b-8843-e9552ff82862,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40587,52216ce8-c656-499b-8843-e9552ff82862,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40588,30a11e21-87bc-47a5-8870-f71c5332ceaf,LIST_ACCOUNTS,xs2aListAccounts,true -40589,30a11e21-87bc-47a5-8870-f71c5332ceaf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40589,30a11e21-87bc-47a5-8870-f71c5332ceaf,LIST_TRANSACTIONS,xs2aListTransactions,true 40590,30a11e21-87bc-47a5-8870-f71c5332ceaf,AUTHORIZATION,,true 40591,30a11e21-87bc-47a5-8870-f71c5332ceaf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40592,30a11e21-87bc-47a5-8870-f71c5332ceaf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40593,30a11e21-87bc-47a5-8870-f71c5332ceaf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40594,261310b4-d680-41e4-970e-6076b6617a79,LIST_ACCOUNTS,hbciListAccounts,false -40595,261310b4-d680-41e4-970e-6076b6617a79,LIST_TRANSACTIONS,hbciListTransactions,false -40596,261310b4-d680-41e4-970e-6076b6617a79,AUTHORIZATION,,false -40597,261310b4-d680-41e4-970e-6076b6617a79,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40598,261310b4-d680-41e4-970e-6076b6617a79,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40599,261310b4-d680-41e4-970e-6076b6617a79,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40594,3a53b263-1058-4cac-b026-0109e5ed6ff1,LIST_ACCOUNTS,hbciListAccounts,false +40595,3a53b263-1058-4cac-b026-0109e5ed6ff1,LIST_TRANSACTIONS,hbciListTransactions,false +40596,3a53b263-1058-4cac-b026-0109e5ed6ff1,AUTHORIZATION,,false +40597,3a53b263-1058-4cac-b026-0109e5ed6ff1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40598,3a53b263-1058-4cac-b026-0109e5ed6ff1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40599,3a53b263-1058-4cac-b026-0109e5ed6ff1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40600,16d9377c-d162-4b44-9cbe-04daeba57e3c,LIST_ACCOUNTS,xs2aListAccounts,true -40601,16d9377c-d162-4b44-9cbe-04daeba57e3c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40601,16d9377c-d162-4b44-9cbe-04daeba57e3c,LIST_TRANSACTIONS,xs2aListTransactions,true 40602,16d9377c-d162-4b44-9cbe-04daeba57e3c,AUTHORIZATION,,true 40603,16d9377c-d162-4b44-9cbe-04daeba57e3c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40604,16d9377c-d162-4b44-9cbe-04daeba57e3c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40605,16d9377c-d162-4b44-9cbe-04daeba57e3c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40606,19c16627-43c7-4042-b4f1-2b4f08b1a9ff,LIST_ACCOUNTS,hbciListAccounts,false -40607,19c16627-43c7-4042-b4f1-2b4f08b1a9ff,LIST_TRANSACTIONS,hbciListTransactions,false -40608,19c16627-43c7-4042-b4f1-2b4f08b1a9ff,AUTHORIZATION,,false -40609,19c16627-43c7-4042-b4f1-2b4f08b1a9ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40610,19c16627-43c7-4042-b4f1-2b4f08b1a9ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40611,19c16627-43c7-4042-b4f1-2b4f08b1a9ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40606,92b25778-3182-4985-a2a3-b3993b6782c3,LIST_ACCOUNTS,hbciListAccounts,false +40607,92b25778-3182-4985-a2a3-b3993b6782c3,LIST_TRANSACTIONS,hbciListTransactions,false +40608,92b25778-3182-4985-a2a3-b3993b6782c3,AUTHORIZATION,,false +40609,92b25778-3182-4985-a2a3-b3993b6782c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40610,92b25778-3182-4985-a2a3-b3993b6782c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40611,92b25778-3182-4985-a2a3-b3993b6782c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40612,0fc93da6-4ff2-41eb-ace2-28f0273861f0,LIST_ACCOUNTS,xs2aListAccounts,true -40613,0fc93da6-4ff2-41eb-ace2-28f0273861f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40613,0fc93da6-4ff2-41eb-ace2-28f0273861f0,LIST_TRANSACTIONS,xs2aListTransactions,true 40614,0fc93da6-4ff2-41eb-ace2-28f0273861f0,AUTHORIZATION,,true 40615,0fc93da6-4ff2-41eb-ace2-28f0273861f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40616,0fc93da6-4ff2-41eb-ace2-28f0273861f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40617,0fc93da6-4ff2-41eb-ace2-28f0273861f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40618,cc84fbf8-a093-419d-a19b-acf242d03e90,LIST_ACCOUNTS,hbciListAccounts,false -40619,cc84fbf8-a093-419d-a19b-acf242d03e90,LIST_TRANSACTIONS,hbciListTransactions,false -40620,cc84fbf8-a093-419d-a19b-acf242d03e90,AUTHORIZATION,,false -40621,cc84fbf8-a093-419d-a19b-acf242d03e90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40622,cc84fbf8-a093-419d-a19b-acf242d03e90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40623,cc84fbf8-a093-419d-a19b-acf242d03e90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40618,fea4ae0c-4cb4-4bc6-a0cf-14454a4d2c9d,LIST_ACCOUNTS,hbciListAccounts,false +40619,fea4ae0c-4cb4-4bc6-a0cf-14454a4d2c9d,LIST_TRANSACTIONS,hbciListTransactions,false +40620,fea4ae0c-4cb4-4bc6-a0cf-14454a4d2c9d,AUTHORIZATION,,false +40621,fea4ae0c-4cb4-4bc6-a0cf-14454a4d2c9d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40622,fea4ae0c-4cb4-4bc6-a0cf-14454a4d2c9d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40623,fea4ae0c-4cb4-4bc6-a0cf-14454a4d2c9d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40624,aa4e8ff3-9541-4e49-8b11-5fc7bac59b10,LIST_ACCOUNTS,xs2aListAccounts,true -40625,aa4e8ff3-9541-4e49-8b11-5fc7bac59b10,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40625,aa4e8ff3-9541-4e49-8b11-5fc7bac59b10,LIST_TRANSACTIONS,xs2aListTransactions,true 40626,aa4e8ff3-9541-4e49-8b11-5fc7bac59b10,AUTHORIZATION,,true 40627,aa4e8ff3-9541-4e49-8b11-5fc7bac59b10,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40628,aa4e8ff3-9541-4e49-8b11-5fc7bac59b10,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40629,aa4e8ff3-9541-4e49-8b11-5fc7bac59b10,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40630,261caa96-0047-42d8-98c1-959fd23d37f3,LIST_ACCOUNTS,hbciListAccounts,false -40631,261caa96-0047-42d8-98c1-959fd23d37f3,LIST_TRANSACTIONS,hbciListTransactions,false -40632,261caa96-0047-42d8-98c1-959fd23d37f3,AUTHORIZATION,,false -40633,261caa96-0047-42d8-98c1-959fd23d37f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40634,261caa96-0047-42d8-98c1-959fd23d37f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40635,261caa96-0047-42d8-98c1-959fd23d37f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40630,a18594f6-3233-4f22-950c-f66d78b64cc3,LIST_ACCOUNTS,hbciListAccounts,false +40631,a18594f6-3233-4f22-950c-f66d78b64cc3,LIST_TRANSACTIONS,hbciListTransactions,false +40632,a18594f6-3233-4f22-950c-f66d78b64cc3,AUTHORIZATION,,false +40633,a18594f6-3233-4f22-950c-f66d78b64cc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40634,a18594f6-3233-4f22-950c-f66d78b64cc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40635,a18594f6-3233-4f22-950c-f66d78b64cc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40636,de90799f-8086-4ada-9226-3bdbd3025f84,LIST_ACCOUNTS,xs2aListAccounts,true -40637,de90799f-8086-4ada-9226-3bdbd3025f84,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40637,de90799f-8086-4ada-9226-3bdbd3025f84,LIST_TRANSACTIONS,xs2aListTransactions,true 40638,de90799f-8086-4ada-9226-3bdbd3025f84,AUTHORIZATION,,true 40639,de90799f-8086-4ada-9226-3bdbd3025f84,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40640,de90799f-8086-4ada-9226-3bdbd3025f84,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40641,de90799f-8086-4ada-9226-3bdbd3025f84,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40642,3c455f89-bb74-42fe-8d91-283c53f5198c,LIST_ACCOUNTS,hbciListAccounts,false -40643,3c455f89-bb74-42fe-8d91-283c53f5198c,LIST_TRANSACTIONS,hbciListTransactions,false -40644,3c455f89-bb74-42fe-8d91-283c53f5198c,AUTHORIZATION,,false -40645,3c455f89-bb74-42fe-8d91-283c53f5198c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40646,3c455f89-bb74-42fe-8d91-283c53f5198c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40647,3c455f89-bb74-42fe-8d91-283c53f5198c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40642,76ee357c-5104-4bf8-bd0d-4a85acf1397d,LIST_ACCOUNTS,hbciListAccounts,false +40643,76ee357c-5104-4bf8-bd0d-4a85acf1397d,LIST_TRANSACTIONS,hbciListTransactions,false +40644,76ee357c-5104-4bf8-bd0d-4a85acf1397d,AUTHORIZATION,,false +40645,76ee357c-5104-4bf8-bd0d-4a85acf1397d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40646,76ee357c-5104-4bf8-bd0d-4a85acf1397d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40647,76ee357c-5104-4bf8-bd0d-4a85acf1397d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40648,c66b3dcf-3b8b-4df2-a962-57a6f6b520bf,LIST_ACCOUNTS,xs2aListAccounts,true -40649,c66b3dcf-3b8b-4df2-a962-57a6f6b520bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40649,c66b3dcf-3b8b-4df2-a962-57a6f6b520bf,LIST_TRANSACTIONS,xs2aListTransactions,true 40650,c66b3dcf-3b8b-4df2-a962-57a6f6b520bf,AUTHORIZATION,,true 40651,c66b3dcf-3b8b-4df2-a962-57a6f6b520bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40652,c66b3dcf-3b8b-4df2-a962-57a6f6b520bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40653,c66b3dcf-3b8b-4df2-a962-57a6f6b520bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40654,d8bf277a-0c2a-4704-9392-2d37f588d308,LIST_ACCOUNTS,hbciListAccounts,false -40655,d8bf277a-0c2a-4704-9392-2d37f588d308,LIST_TRANSACTIONS,hbciListTransactions,false -40656,d8bf277a-0c2a-4704-9392-2d37f588d308,AUTHORIZATION,,false -40657,d8bf277a-0c2a-4704-9392-2d37f588d308,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40658,d8bf277a-0c2a-4704-9392-2d37f588d308,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40659,d8bf277a-0c2a-4704-9392-2d37f588d308,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40654,a58b483e-7679-4e07-818b-abc87f3b4816,LIST_ACCOUNTS,hbciListAccounts,false +40655,a58b483e-7679-4e07-818b-abc87f3b4816,LIST_TRANSACTIONS,hbciListTransactions,false +40656,a58b483e-7679-4e07-818b-abc87f3b4816,AUTHORIZATION,,false +40657,a58b483e-7679-4e07-818b-abc87f3b4816,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40658,a58b483e-7679-4e07-818b-abc87f3b4816,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40659,a58b483e-7679-4e07-818b-abc87f3b4816,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40660,54e297ac-61ee-462c-8da1-6a74b92ab787,LIST_ACCOUNTS,xs2aListAccounts,true -40661,54e297ac-61ee-462c-8da1-6a74b92ab787,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40661,54e297ac-61ee-462c-8da1-6a74b92ab787,LIST_TRANSACTIONS,xs2aListTransactions,true 40662,54e297ac-61ee-462c-8da1-6a74b92ab787,AUTHORIZATION,,true 40663,54e297ac-61ee-462c-8da1-6a74b92ab787,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40664,54e297ac-61ee-462c-8da1-6a74b92ab787,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40665,54e297ac-61ee-462c-8da1-6a74b92ab787,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40666,f324ca6a-f0d7-42ef-97bd-b9c6b1e9112f,LIST_ACCOUNTS,hbciListAccounts,false -40667,f324ca6a-f0d7-42ef-97bd-b9c6b1e9112f,LIST_TRANSACTIONS,hbciListTransactions,false -40668,f324ca6a-f0d7-42ef-97bd-b9c6b1e9112f,AUTHORIZATION,,false -40669,f324ca6a-f0d7-42ef-97bd-b9c6b1e9112f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40670,f324ca6a-f0d7-42ef-97bd-b9c6b1e9112f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40671,f324ca6a-f0d7-42ef-97bd-b9c6b1e9112f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40666,04cfca00-ff36-4807-b279-ff53c80ac6f6,LIST_ACCOUNTS,hbciListAccounts,false +40667,04cfca00-ff36-4807-b279-ff53c80ac6f6,LIST_TRANSACTIONS,hbciListTransactions,false +40668,04cfca00-ff36-4807-b279-ff53c80ac6f6,AUTHORIZATION,,false +40669,04cfca00-ff36-4807-b279-ff53c80ac6f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40670,04cfca00-ff36-4807-b279-ff53c80ac6f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40671,04cfca00-ff36-4807-b279-ff53c80ac6f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40672,f53ebba4-85be-4d7e-a7e4-cdd08d2090d8,LIST_ACCOUNTS,xs2aListAccounts,true -40673,f53ebba4-85be-4d7e-a7e4-cdd08d2090d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40673,f53ebba4-85be-4d7e-a7e4-cdd08d2090d8,LIST_TRANSACTIONS,xs2aListTransactions,true 40674,f53ebba4-85be-4d7e-a7e4-cdd08d2090d8,AUTHORIZATION,,true 40675,f53ebba4-85be-4d7e-a7e4-cdd08d2090d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40676,f53ebba4-85be-4d7e-a7e4-cdd08d2090d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40677,f53ebba4-85be-4d7e-a7e4-cdd08d2090d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40678,e4e5675d-2d38-4ae0-9072-574e76f9b22d,LIST_ACCOUNTS,hbciListAccounts,false -40679,e4e5675d-2d38-4ae0-9072-574e76f9b22d,LIST_TRANSACTIONS,hbciListTransactions,false -40680,e4e5675d-2d38-4ae0-9072-574e76f9b22d,AUTHORIZATION,,false -40681,e4e5675d-2d38-4ae0-9072-574e76f9b22d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40682,e4e5675d-2d38-4ae0-9072-574e76f9b22d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40683,e4e5675d-2d38-4ae0-9072-574e76f9b22d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40678,ded0050e-de51-4e51-bed4-e0c0a08e4b31,LIST_ACCOUNTS,hbciListAccounts,false +40679,ded0050e-de51-4e51-bed4-e0c0a08e4b31,LIST_TRANSACTIONS,hbciListTransactions,false +40680,ded0050e-de51-4e51-bed4-e0c0a08e4b31,AUTHORIZATION,,false +40681,ded0050e-de51-4e51-bed4-e0c0a08e4b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40682,ded0050e-de51-4e51-bed4-e0c0a08e4b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40683,ded0050e-de51-4e51-bed4-e0c0a08e4b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40684,f828b3a7-cbfc-46f0-a06a-7d3ce9ccd0c7,LIST_ACCOUNTS,xs2aListAccounts,true -40685,f828b3a7-cbfc-46f0-a06a-7d3ce9ccd0c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40685,f828b3a7-cbfc-46f0-a06a-7d3ce9ccd0c7,LIST_TRANSACTIONS,xs2aListTransactions,true 40686,f828b3a7-cbfc-46f0-a06a-7d3ce9ccd0c7,AUTHORIZATION,,true 40687,f828b3a7-cbfc-46f0-a06a-7d3ce9ccd0c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40688,f828b3a7-cbfc-46f0-a06a-7d3ce9ccd0c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40689,f828b3a7-cbfc-46f0-a06a-7d3ce9ccd0c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40690,6c0e2bb7-18f9-406c-bead-a61b6bd210fd,LIST_ACCOUNTS,hbciListAccounts,false -40691,6c0e2bb7-18f9-406c-bead-a61b6bd210fd,LIST_TRANSACTIONS,hbciListTransactions,false -40692,6c0e2bb7-18f9-406c-bead-a61b6bd210fd,AUTHORIZATION,,false -40693,6c0e2bb7-18f9-406c-bead-a61b6bd210fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40694,6c0e2bb7-18f9-406c-bead-a61b6bd210fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40695,6c0e2bb7-18f9-406c-bead-a61b6bd210fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40690,8acf6334-e5e0-4306-aa18-79c65722341d,LIST_ACCOUNTS,hbciListAccounts,false +40691,8acf6334-e5e0-4306-aa18-79c65722341d,LIST_TRANSACTIONS,hbciListTransactions,false +40692,8acf6334-e5e0-4306-aa18-79c65722341d,AUTHORIZATION,,false +40693,8acf6334-e5e0-4306-aa18-79c65722341d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40694,8acf6334-e5e0-4306-aa18-79c65722341d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40695,8acf6334-e5e0-4306-aa18-79c65722341d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40696,201567e2-29a2-45ed-bda2-0d6bbfa53f02,LIST_ACCOUNTS,xs2aListAccounts,true -40697,201567e2-29a2-45ed-bda2-0d6bbfa53f02,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40697,201567e2-29a2-45ed-bda2-0d6bbfa53f02,LIST_TRANSACTIONS,xs2aListTransactions,true 40698,201567e2-29a2-45ed-bda2-0d6bbfa53f02,AUTHORIZATION,,true 40699,201567e2-29a2-45ed-bda2-0d6bbfa53f02,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40700,201567e2-29a2-45ed-bda2-0d6bbfa53f02,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40701,201567e2-29a2-45ed-bda2-0d6bbfa53f02,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40702,9ebe1bbd-3c45-4ab9-a822-f392ac386da5,LIST_ACCOUNTS,hbciListAccounts,false -40703,9ebe1bbd-3c45-4ab9-a822-f392ac386da5,LIST_TRANSACTIONS,hbciListTransactions,false -40704,9ebe1bbd-3c45-4ab9-a822-f392ac386da5,AUTHORIZATION,,false -40705,9ebe1bbd-3c45-4ab9-a822-f392ac386da5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40706,9ebe1bbd-3c45-4ab9-a822-f392ac386da5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40707,9ebe1bbd-3c45-4ab9-a822-f392ac386da5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40702,462f0902-5513-4c0b-a0cf-d9d6fa4d540d,LIST_ACCOUNTS,hbciListAccounts,false +40703,462f0902-5513-4c0b-a0cf-d9d6fa4d540d,LIST_TRANSACTIONS,hbciListTransactions,false +40704,462f0902-5513-4c0b-a0cf-d9d6fa4d540d,AUTHORIZATION,,false +40705,462f0902-5513-4c0b-a0cf-d9d6fa4d540d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40706,462f0902-5513-4c0b-a0cf-d9d6fa4d540d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40707,462f0902-5513-4c0b-a0cf-d9d6fa4d540d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40708,217cf395-07bd-428f-988e-b446fd0cdeff,LIST_ACCOUNTS,xs2aListAccounts,true -40709,217cf395-07bd-428f-988e-b446fd0cdeff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40709,217cf395-07bd-428f-988e-b446fd0cdeff,LIST_TRANSACTIONS,xs2aListTransactions,true 40710,217cf395-07bd-428f-988e-b446fd0cdeff,AUTHORIZATION,,true 40711,217cf395-07bd-428f-988e-b446fd0cdeff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40712,217cf395-07bd-428f-988e-b446fd0cdeff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40713,217cf395-07bd-428f-988e-b446fd0cdeff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40714,adff6c85-213c-4b76-8799-66f8316bf78e,LIST_ACCOUNTS,hbciListAccounts,false -40715,adff6c85-213c-4b76-8799-66f8316bf78e,LIST_TRANSACTIONS,hbciListTransactions,false -40716,adff6c85-213c-4b76-8799-66f8316bf78e,AUTHORIZATION,,false -40717,adff6c85-213c-4b76-8799-66f8316bf78e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40718,adff6c85-213c-4b76-8799-66f8316bf78e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40719,adff6c85-213c-4b76-8799-66f8316bf78e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40714,05ee2207-ee4d-4613-bbc4-dc75182fd83d,LIST_ACCOUNTS,hbciListAccounts,false +40715,05ee2207-ee4d-4613-bbc4-dc75182fd83d,LIST_TRANSACTIONS,hbciListTransactions,false +40716,05ee2207-ee4d-4613-bbc4-dc75182fd83d,AUTHORIZATION,,false +40717,05ee2207-ee4d-4613-bbc4-dc75182fd83d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40718,05ee2207-ee4d-4613-bbc4-dc75182fd83d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40719,05ee2207-ee4d-4613-bbc4-dc75182fd83d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40720,540bf381-47e6-464e-bce6-c05fd7cda035,LIST_ACCOUNTS,xs2aListAccounts,true -40721,540bf381-47e6-464e-bce6-c05fd7cda035,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40721,540bf381-47e6-464e-bce6-c05fd7cda035,LIST_TRANSACTIONS,xs2aListTransactions,true 40722,540bf381-47e6-464e-bce6-c05fd7cda035,AUTHORIZATION,,true 40723,540bf381-47e6-464e-bce6-c05fd7cda035,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40724,540bf381-47e6-464e-bce6-c05fd7cda035,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40725,540bf381-47e6-464e-bce6-c05fd7cda035,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40726,1654e4ae-e3ff-4c06-a150-924377456a2b,LIST_ACCOUNTS,hbciListAccounts,false -40727,1654e4ae-e3ff-4c06-a150-924377456a2b,LIST_TRANSACTIONS,hbciListTransactions,false -40728,1654e4ae-e3ff-4c06-a150-924377456a2b,AUTHORIZATION,,false -40729,1654e4ae-e3ff-4c06-a150-924377456a2b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40730,1654e4ae-e3ff-4c06-a150-924377456a2b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40731,1654e4ae-e3ff-4c06-a150-924377456a2b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40726,8c7edeb0-dda2-45c0-9855-b6538a13f4cc,LIST_ACCOUNTS,hbciListAccounts,false +40727,8c7edeb0-dda2-45c0-9855-b6538a13f4cc,LIST_TRANSACTIONS,hbciListTransactions,false +40728,8c7edeb0-dda2-45c0-9855-b6538a13f4cc,AUTHORIZATION,,false +40729,8c7edeb0-dda2-45c0-9855-b6538a13f4cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40730,8c7edeb0-dda2-45c0-9855-b6538a13f4cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40731,8c7edeb0-dda2-45c0-9855-b6538a13f4cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40732,25d8e6a1-23f0-482d-8566-35b1ab616c0e,LIST_ACCOUNTS,xs2aListAccounts,true -40733,25d8e6a1-23f0-482d-8566-35b1ab616c0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40733,25d8e6a1-23f0-482d-8566-35b1ab616c0e,LIST_TRANSACTIONS,xs2aListTransactions,true 40734,25d8e6a1-23f0-482d-8566-35b1ab616c0e,AUTHORIZATION,,true 40735,25d8e6a1-23f0-482d-8566-35b1ab616c0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40736,25d8e6a1-23f0-482d-8566-35b1ab616c0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40737,25d8e6a1-23f0-482d-8566-35b1ab616c0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40738,1f93e544-7d63-4441-bf11-864cb170e8c4,LIST_ACCOUNTS,hbciListAccounts,false -40739,1f93e544-7d63-4441-bf11-864cb170e8c4,LIST_TRANSACTIONS,hbciListTransactions,false -40740,1f93e544-7d63-4441-bf11-864cb170e8c4,AUTHORIZATION,,false -40741,1f93e544-7d63-4441-bf11-864cb170e8c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40742,1f93e544-7d63-4441-bf11-864cb170e8c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40743,1f93e544-7d63-4441-bf11-864cb170e8c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40738,89084a4a-e7c3-443d-a39f-25467b83d1ed,LIST_ACCOUNTS,hbciListAccounts,false +40739,89084a4a-e7c3-443d-a39f-25467b83d1ed,LIST_TRANSACTIONS,hbciListTransactions,false +40740,89084a4a-e7c3-443d-a39f-25467b83d1ed,AUTHORIZATION,,false +40741,89084a4a-e7c3-443d-a39f-25467b83d1ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40742,89084a4a-e7c3-443d-a39f-25467b83d1ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40743,89084a4a-e7c3-443d-a39f-25467b83d1ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40744,9df1ddbd-8ceb-43c3-8b5c-c8e45c7a4940,LIST_ACCOUNTS,xs2aListAccounts,true -40745,9df1ddbd-8ceb-43c3-8b5c-c8e45c7a4940,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40745,9df1ddbd-8ceb-43c3-8b5c-c8e45c7a4940,LIST_TRANSACTIONS,xs2aListTransactions,true 40746,9df1ddbd-8ceb-43c3-8b5c-c8e45c7a4940,AUTHORIZATION,,true 40747,9df1ddbd-8ceb-43c3-8b5c-c8e45c7a4940,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40748,9df1ddbd-8ceb-43c3-8b5c-c8e45c7a4940,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40749,9df1ddbd-8ceb-43c3-8b5c-c8e45c7a4940,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40750,5ea46f73-04f4-4abf-a636-8de82496c764,LIST_ACCOUNTS,hbciListAccounts,false -40751,5ea46f73-04f4-4abf-a636-8de82496c764,LIST_TRANSACTIONS,hbciListTransactions,false -40752,5ea46f73-04f4-4abf-a636-8de82496c764,AUTHORIZATION,,false -40753,5ea46f73-04f4-4abf-a636-8de82496c764,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40754,5ea46f73-04f4-4abf-a636-8de82496c764,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40755,5ea46f73-04f4-4abf-a636-8de82496c764,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40750,41f0ffa4-a8a3-4f74-b62a-eef7690430db,LIST_ACCOUNTS,hbciListAccounts,false +40751,41f0ffa4-a8a3-4f74-b62a-eef7690430db,LIST_TRANSACTIONS,hbciListTransactions,false +40752,41f0ffa4-a8a3-4f74-b62a-eef7690430db,AUTHORIZATION,,false +40753,41f0ffa4-a8a3-4f74-b62a-eef7690430db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40754,41f0ffa4-a8a3-4f74-b62a-eef7690430db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40755,41f0ffa4-a8a3-4f74-b62a-eef7690430db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40756,8ecdc6be-9257-4335-b7f5-34d7f6c11eae,LIST_ACCOUNTS,xs2aListAccounts,true -40757,8ecdc6be-9257-4335-b7f5-34d7f6c11eae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40757,8ecdc6be-9257-4335-b7f5-34d7f6c11eae,LIST_TRANSACTIONS,xs2aListTransactions,true 40758,8ecdc6be-9257-4335-b7f5-34d7f6c11eae,AUTHORIZATION,,true 40759,8ecdc6be-9257-4335-b7f5-34d7f6c11eae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40760,8ecdc6be-9257-4335-b7f5-34d7f6c11eae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40761,8ecdc6be-9257-4335-b7f5-34d7f6c11eae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40762,e09109d1-477d-4d0d-804e-6ab7c4b227dc,LIST_ACCOUNTS,hbciListAccounts,false -40763,e09109d1-477d-4d0d-804e-6ab7c4b227dc,LIST_TRANSACTIONS,hbciListTransactions,false -40764,e09109d1-477d-4d0d-804e-6ab7c4b227dc,AUTHORIZATION,,false -40765,e09109d1-477d-4d0d-804e-6ab7c4b227dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40766,e09109d1-477d-4d0d-804e-6ab7c4b227dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40767,e09109d1-477d-4d0d-804e-6ab7c4b227dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40762,5c9ecc6e-59cd-4fe3-bc79-96a1620c8380,LIST_ACCOUNTS,hbciListAccounts,false +40763,5c9ecc6e-59cd-4fe3-bc79-96a1620c8380,LIST_TRANSACTIONS,hbciListTransactions,false +40764,5c9ecc6e-59cd-4fe3-bc79-96a1620c8380,AUTHORIZATION,,false +40765,5c9ecc6e-59cd-4fe3-bc79-96a1620c8380,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40766,5c9ecc6e-59cd-4fe3-bc79-96a1620c8380,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40767,5c9ecc6e-59cd-4fe3-bc79-96a1620c8380,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40768,67cda481-9582-450b-897f-ca13cbb1c21b,LIST_ACCOUNTS,xs2aListAccounts,true -40769,67cda481-9582-450b-897f-ca13cbb1c21b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40769,67cda481-9582-450b-897f-ca13cbb1c21b,LIST_TRANSACTIONS,xs2aListTransactions,true 40770,67cda481-9582-450b-897f-ca13cbb1c21b,AUTHORIZATION,,true 40771,67cda481-9582-450b-897f-ca13cbb1c21b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40772,67cda481-9582-450b-897f-ca13cbb1c21b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40773,67cda481-9582-450b-897f-ca13cbb1c21b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40774,b3c585d0-7fac-4fad-84f9-1c8f4ec958e9,LIST_ACCOUNTS,hbciListAccounts,false -40775,b3c585d0-7fac-4fad-84f9-1c8f4ec958e9,LIST_TRANSACTIONS,hbciListTransactions,false -40776,b3c585d0-7fac-4fad-84f9-1c8f4ec958e9,AUTHORIZATION,,false -40777,b3c585d0-7fac-4fad-84f9-1c8f4ec958e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40778,b3c585d0-7fac-4fad-84f9-1c8f4ec958e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40779,b3c585d0-7fac-4fad-84f9-1c8f4ec958e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40774,32f4aaaa-d5d5-4ade-b218-074cb0de8dcd,LIST_ACCOUNTS,hbciListAccounts,false +40775,32f4aaaa-d5d5-4ade-b218-074cb0de8dcd,LIST_TRANSACTIONS,hbciListTransactions,false +40776,32f4aaaa-d5d5-4ade-b218-074cb0de8dcd,AUTHORIZATION,,false +40777,32f4aaaa-d5d5-4ade-b218-074cb0de8dcd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40778,32f4aaaa-d5d5-4ade-b218-074cb0de8dcd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40779,32f4aaaa-d5d5-4ade-b218-074cb0de8dcd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40780,a9d5908e-f0ef-4a6a-8339-e3c5a84a953b,LIST_ACCOUNTS,xs2aListAccounts,true -40781,a9d5908e-f0ef-4a6a-8339-e3c5a84a953b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40781,a9d5908e-f0ef-4a6a-8339-e3c5a84a953b,LIST_TRANSACTIONS,xs2aListTransactions,true 40782,a9d5908e-f0ef-4a6a-8339-e3c5a84a953b,AUTHORIZATION,,true 40783,a9d5908e-f0ef-4a6a-8339-e3c5a84a953b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40784,a9d5908e-f0ef-4a6a-8339-e3c5a84a953b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40785,a9d5908e-f0ef-4a6a-8339-e3c5a84a953b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40786,67aa9027-6275-4521-8beb-d00b3a92fd75,LIST_ACCOUNTS,hbciListAccounts,false -40787,67aa9027-6275-4521-8beb-d00b3a92fd75,LIST_TRANSACTIONS,hbciListTransactions,false -40788,67aa9027-6275-4521-8beb-d00b3a92fd75,AUTHORIZATION,,false -40789,67aa9027-6275-4521-8beb-d00b3a92fd75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40790,67aa9027-6275-4521-8beb-d00b3a92fd75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40791,67aa9027-6275-4521-8beb-d00b3a92fd75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40786,90be751c-74b7-4cf9-857e-4dae785e79c3,LIST_ACCOUNTS,hbciListAccounts,false +40787,90be751c-74b7-4cf9-857e-4dae785e79c3,LIST_TRANSACTIONS,hbciListTransactions,false +40788,90be751c-74b7-4cf9-857e-4dae785e79c3,AUTHORIZATION,,false +40789,90be751c-74b7-4cf9-857e-4dae785e79c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40790,90be751c-74b7-4cf9-857e-4dae785e79c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40791,90be751c-74b7-4cf9-857e-4dae785e79c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40792,ff06ffb1-fca7-4e1d-b027-7fed6b3465c2,LIST_ACCOUNTS,xs2aListAccounts,true -40793,ff06ffb1-fca7-4e1d-b027-7fed6b3465c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40793,ff06ffb1-fca7-4e1d-b027-7fed6b3465c2,LIST_TRANSACTIONS,xs2aListTransactions,true 40794,ff06ffb1-fca7-4e1d-b027-7fed6b3465c2,AUTHORIZATION,,true 40795,ff06ffb1-fca7-4e1d-b027-7fed6b3465c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40796,ff06ffb1-fca7-4e1d-b027-7fed6b3465c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40797,ff06ffb1-fca7-4e1d-b027-7fed6b3465c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40798,0de8228c-3d39-4869-8fe4-cf19b694d9a5,LIST_ACCOUNTS,hbciListAccounts,false -40799,0de8228c-3d39-4869-8fe4-cf19b694d9a5,LIST_TRANSACTIONS,hbciListTransactions,false -40800,0de8228c-3d39-4869-8fe4-cf19b694d9a5,AUTHORIZATION,,false -40801,0de8228c-3d39-4869-8fe4-cf19b694d9a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40802,0de8228c-3d39-4869-8fe4-cf19b694d9a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40803,0de8228c-3d39-4869-8fe4-cf19b694d9a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40798,9c199de1-31ac-4902-ad72-18e6ef935fc8,LIST_ACCOUNTS,hbciListAccounts,false +40799,9c199de1-31ac-4902-ad72-18e6ef935fc8,LIST_TRANSACTIONS,hbciListTransactions,false +40800,9c199de1-31ac-4902-ad72-18e6ef935fc8,AUTHORIZATION,,false +40801,9c199de1-31ac-4902-ad72-18e6ef935fc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40802,9c199de1-31ac-4902-ad72-18e6ef935fc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40803,9c199de1-31ac-4902-ad72-18e6ef935fc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40804,c54c5b58-1d00-4ec0-be1f-bcc4febd5203,LIST_ACCOUNTS,xs2aListAccounts,true -40805,c54c5b58-1d00-4ec0-be1f-bcc4febd5203,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40805,c54c5b58-1d00-4ec0-be1f-bcc4febd5203,LIST_TRANSACTIONS,xs2aListTransactions,true 40806,c54c5b58-1d00-4ec0-be1f-bcc4febd5203,AUTHORIZATION,,true 40807,c54c5b58-1d00-4ec0-be1f-bcc4febd5203,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40808,c54c5b58-1d00-4ec0-be1f-bcc4febd5203,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40809,c54c5b58-1d00-4ec0-be1f-bcc4febd5203,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40810,8b94fc27-9686-41fa-b705-f63b5aa58e15,LIST_ACCOUNTS,hbciListAccounts,false -40811,8b94fc27-9686-41fa-b705-f63b5aa58e15,LIST_TRANSACTIONS,hbciListTransactions,false -40812,8b94fc27-9686-41fa-b705-f63b5aa58e15,AUTHORIZATION,,false -40813,8b94fc27-9686-41fa-b705-f63b5aa58e15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40814,8b94fc27-9686-41fa-b705-f63b5aa58e15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40815,8b94fc27-9686-41fa-b705-f63b5aa58e15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40810,747e174e-1085-4748-83b1-d3b69f3c5301,LIST_ACCOUNTS,hbciListAccounts,false +40811,747e174e-1085-4748-83b1-d3b69f3c5301,LIST_TRANSACTIONS,hbciListTransactions,false +40812,747e174e-1085-4748-83b1-d3b69f3c5301,AUTHORIZATION,,false +40813,747e174e-1085-4748-83b1-d3b69f3c5301,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40814,747e174e-1085-4748-83b1-d3b69f3c5301,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40815,747e174e-1085-4748-83b1-d3b69f3c5301,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40816,f876c3fa-a8d4-4fd9-95d7-c563d7d4ef29,LIST_ACCOUNTS,xs2aListAccounts,true -40817,f876c3fa-a8d4-4fd9-95d7-c563d7d4ef29,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40817,f876c3fa-a8d4-4fd9-95d7-c563d7d4ef29,LIST_TRANSACTIONS,xs2aListTransactions,true 40818,f876c3fa-a8d4-4fd9-95d7-c563d7d4ef29,AUTHORIZATION,,true 40819,f876c3fa-a8d4-4fd9-95d7-c563d7d4ef29,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40820,f876c3fa-a8d4-4fd9-95d7-c563d7d4ef29,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40821,f876c3fa-a8d4-4fd9-95d7-c563d7d4ef29,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40822,a1752c49-a818-439d-9e5d-75dd1e866bb3,LIST_ACCOUNTS,hbciListAccounts,false -40823,a1752c49-a818-439d-9e5d-75dd1e866bb3,LIST_TRANSACTIONS,hbciListTransactions,false -40824,a1752c49-a818-439d-9e5d-75dd1e866bb3,AUTHORIZATION,,false -40825,a1752c49-a818-439d-9e5d-75dd1e866bb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40826,a1752c49-a818-439d-9e5d-75dd1e866bb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40827,a1752c49-a818-439d-9e5d-75dd1e866bb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40822,19f5b5da-eedc-4b67-a3e7-7836a663dfa5,LIST_ACCOUNTS,hbciListAccounts,false +40823,19f5b5da-eedc-4b67-a3e7-7836a663dfa5,LIST_TRANSACTIONS,hbciListTransactions,false +40824,19f5b5da-eedc-4b67-a3e7-7836a663dfa5,AUTHORIZATION,,false +40825,19f5b5da-eedc-4b67-a3e7-7836a663dfa5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40826,19f5b5da-eedc-4b67-a3e7-7836a663dfa5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40827,19f5b5da-eedc-4b67-a3e7-7836a663dfa5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40828,ecef7535-37d8-4e40-b4b2-35004d9e2e83,LIST_ACCOUNTS,xs2aListAccounts,true -40829,ecef7535-37d8-4e40-b4b2-35004d9e2e83,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40829,ecef7535-37d8-4e40-b4b2-35004d9e2e83,LIST_TRANSACTIONS,xs2aListTransactions,true 40830,ecef7535-37d8-4e40-b4b2-35004d9e2e83,AUTHORIZATION,,true 40831,ecef7535-37d8-4e40-b4b2-35004d9e2e83,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40832,ecef7535-37d8-4e40-b4b2-35004d9e2e83,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40833,ecef7535-37d8-4e40-b4b2-35004d9e2e83,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40834,4b362b7b-39b7-4f5f-8846-f22f5f014e57,LIST_ACCOUNTS,hbciListAccounts,false -40835,4b362b7b-39b7-4f5f-8846-f22f5f014e57,LIST_TRANSACTIONS,hbciListTransactions,false -40836,4b362b7b-39b7-4f5f-8846-f22f5f014e57,AUTHORIZATION,,false -40837,4b362b7b-39b7-4f5f-8846-f22f5f014e57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40838,4b362b7b-39b7-4f5f-8846-f22f5f014e57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40839,4b362b7b-39b7-4f5f-8846-f22f5f014e57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40834,e72c61fb-a74c-48ad-a298-e2944bc84a66,LIST_ACCOUNTS,hbciListAccounts,false +40835,e72c61fb-a74c-48ad-a298-e2944bc84a66,LIST_TRANSACTIONS,hbciListTransactions,false +40836,e72c61fb-a74c-48ad-a298-e2944bc84a66,AUTHORIZATION,,false +40837,e72c61fb-a74c-48ad-a298-e2944bc84a66,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40838,e72c61fb-a74c-48ad-a298-e2944bc84a66,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40839,e72c61fb-a74c-48ad-a298-e2944bc84a66,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40840,c2e2a2b9-23b4-4e9e-ac6e-adda1b7f4c60,LIST_ACCOUNTS,xs2aListAccounts,true -40841,c2e2a2b9-23b4-4e9e-ac6e-adda1b7f4c60,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40841,c2e2a2b9-23b4-4e9e-ac6e-adda1b7f4c60,LIST_TRANSACTIONS,xs2aListTransactions,true 40842,c2e2a2b9-23b4-4e9e-ac6e-adda1b7f4c60,AUTHORIZATION,,true 40843,c2e2a2b9-23b4-4e9e-ac6e-adda1b7f4c60,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40844,c2e2a2b9-23b4-4e9e-ac6e-adda1b7f4c60,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40845,c2e2a2b9-23b4-4e9e-ac6e-adda1b7f4c60,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40846,1c1374c7-07c2-4a62-b351-7da0124bffbf,LIST_ACCOUNTS,hbciListAccounts,false -40847,1c1374c7-07c2-4a62-b351-7da0124bffbf,LIST_TRANSACTIONS,hbciListTransactions,false -40848,1c1374c7-07c2-4a62-b351-7da0124bffbf,AUTHORIZATION,,false -40849,1c1374c7-07c2-4a62-b351-7da0124bffbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40850,1c1374c7-07c2-4a62-b351-7da0124bffbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40851,1c1374c7-07c2-4a62-b351-7da0124bffbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40846,73e309dc-1531-4733-b857-48c9a1010668,LIST_ACCOUNTS,hbciListAccounts,false +40847,73e309dc-1531-4733-b857-48c9a1010668,LIST_TRANSACTIONS,hbciListTransactions,false +40848,73e309dc-1531-4733-b857-48c9a1010668,AUTHORIZATION,,false +40849,73e309dc-1531-4733-b857-48c9a1010668,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40850,73e309dc-1531-4733-b857-48c9a1010668,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40851,73e309dc-1531-4733-b857-48c9a1010668,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40852,24dd4501-6419-43c2-8485-ae7b233e26b4,LIST_ACCOUNTS,xs2aListAccounts,true -40853,24dd4501-6419-43c2-8485-ae7b233e26b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40853,24dd4501-6419-43c2-8485-ae7b233e26b4,LIST_TRANSACTIONS,xs2aListTransactions,true 40854,24dd4501-6419-43c2-8485-ae7b233e26b4,AUTHORIZATION,,true 40855,24dd4501-6419-43c2-8485-ae7b233e26b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40856,24dd4501-6419-43c2-8485-ae7b233e26b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40857,24dd4501-6419-43c2-8485-ae7b233e26b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40858,479828c9-3c25-4cdd-8227-b11c2acb66ee,LIST_ACCOUNTS,hbciListAccounts,false -40859,479828c9-3c25-4cdd-8227-b11c2acb66ee,LIST_TRANSACTIONS,hbciListTransactions,false -40860,479828c9-3c25-4cdd-8227-b11c2acb66ee,AUTHORIZATION,,false -40861,479828c9-3c25-4cdd-8227-b11c2acb66ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40862,479828c9-3c25-4cdd-8227-b11c2acb66ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40863,479828c9-3c25-4cdd-8227-b11c2acb66ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40858,1a7fb1c4-65cb-4a0b-ba84-c3cd8a97435c,LIST_ACCOUNTS,hbciListAccounts,false +40859,1a7fb1c4-65cb-4a0b-ba84-c3cd8a97435c,LIST_TRANSACTIONS,hbciListTransactions,false +40860,1a7fb1c4-65cb-4a0b-ba84-c3cd8a97435c,AUTHORIZATION,,false +40861,1a7fb1c4-65cb-4a0b-ba84-c3cd8a97435c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40862,1a7fb1c4-65cb-4a0b-ba84-c3cd8a97435c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40863,1a7fb1c4-65cb-4a0b-ba84-c3cd8a97435c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40864,6ccb764f-e1b5-459b-b448-6e6bd3a2ecd5,LIST_ACCOUNTS,xs2aListAccounts,true -40865,6ccb764f-e1b5-459b-b448-6e6bd3a2ecd5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40865,6ccb764f-e1b5-459b-b448-6e6bd3a2ecd5,LIST_TRANSACTIONS,xs2aListTransactions,true 40866,6ccb764f-e1b5-459b-b448-6e6bd3a2ecd5,AUTHORIZATION,,true 40867,6ccb764f-e1b5-459b-b448-6e6bd3a2ecd5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40868,6ccb764f-e1b5-459b-b448-6e6bd3a2ecd5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40869,6ccb764f-e1b5-459b-b448-6e6bd3a2ecd5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40870,d857c850-2bc8-4fee-b168-1e29c2a4df86,LIST_ACCOUNTS,hbciListAccounts,false -40871,d857c850-2bc8-4fee-b168-1e29c2a4df86,LIST_TRANSACTIONS,hbciListTransactions,false -40872,d857c850-2bc8-4fee-b168-1e29c2a4df86,AUTHORIZATION,,false -40873,d857c850-2bc8-4fee-b168-1e29c2a4df86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40874,d857c850-2bc8-4fee-b168-1e29c2a4df86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40875,d857c850-2bc8-4fee-b168-1e29c2a4df86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40870,ffcffe97-3198-4e27-9846-ff3e2a4bf222,LIST_ACCOUNTS,hbciListAccounts,false +40871,ffcffe97-3198-4e27-9846-ff3e2a4bf222,LIST_TRANSACTIONS,hbciListTransactions,false +40872,ffcffe97-3198-4e27-9846-ff3e2a4bf222,AUTHORIZATION,,false +40873,ffcffe97-3198-4e27-9846-ff3e2a4bf222,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40874,ffcffe97-3198-4e27-9846-ff3e2a4bf222,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40875,ffcffe97-3198-4e27-9846-ff3e2a4bf222,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40876,01df83f3-0830-445c-8d7c-af8d8ace4f0e,LIST_ACCOUNTS,xs2aListAccounts,true -40877,01df83f3-0830-445c-8d7c-af8d8ace4f0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40877,01df83f3-0830-445c-8d7c-af8d8ace4f0e,LIST_TRANSACTIONS,xs2aListTransactions,true 40878,01df83f3-0830-445c-8d7c-af8d8ace4f0e,AUTHORIZATION,,true 40879,01df83f3-0830-445c-8d7c-af8d8ace4f0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40880,01df83f3-0830-445c-8d7c-af8d8ace4f0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40881,01df83f3-0830-445c-8d7c-af8d8ace4f0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40882,be7cc54c-0a77-417f-b9f5-62b6fbb790d6,LIST_ACCOUNTS,hbciListAccounts,false -40883,be7cc54c-0a77-417f-b9f5-62b6fbb790d6,LIST_TRANSACTIONS,hbciListTransactions,false -40884,be7cc54c-0a77-417f-b9f5-62b6fbb790d6,AUTHORIZATION,,false -40885,be7cc54c-0a77-417f-b9f5-62b6fbb790d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40886,be7cc54c-0a77-417f-b9f5-62b6fbb790d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40887,be7cc54c-0a77-417f-b9f5-62b6fbb790d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40882,8997ac6d-0673-4182-bd0c-4ad56922ba6d,LIST_ACCOUNTS,hbciListAccounts,false +40883,8997ac6d-0673-4182-bd0c-4ad56922ba6d,LIST_TRANSACTIONS,hbciListTransactions,false +40884,8997ac6d-0673-4182-bd0c-4ad56922ba6d,AUTHORIZATION,,false +40885,8997ac6d-0673-4182-bd0c-4ad56922ba6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40886,8997ac6d-0673-4182-bd0c-4ad56922ba6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40887,8997ac6d-0673-4182-bd0c-4ad56922ba6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40888,a87972a6-edda-4cce-83ce-98aa1a6824bd,LIST_ACCOUNTS,xs2aListAccounts,true -40889,a87972a6-edda-4cce-83ce-98aa1a6824bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40889,a87972a6-edda-4cce-83ce-98aa1a6824bd,LIST_TRANSACTIONS,xs2aListTransactions,true 40890,a87972a6-edda-4cce-83ce-98aa1a6824bd,AUTHORIZATION,,true 40891,a87972a6-edda-4cce-83ce-98aa1a6824bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40892,a87972a6-edda-4cce-83ce-98aa1a6824bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40893,a87972a6-edda-4cce-83ce-98aa1a6824bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40894,a688a930-c8ad-4930-9f5a-613b8e777ce9,LIST_ACCOUNTS,hbciListAccounts,false -40895,a688a930-c8ad-4930-9f5a-613b8e777ce9,LIST_TRANSACTIONS,hbciListTransactions,false -40896,a688a930-c8ad-4930-9f5a-613b8e777ce9,AUTHORIZATION,,false -40897,a688a930-c8ad-4930-9f5a-613b8e777ce9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40898,a688a930-c8ad-4930-9f5a-613b8e777ce9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40899,a688a930-c8ad-4930-9f5a-613b8e777ce9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40894,806064cc-b409-44c8-a31d-4785f256d3ab,LIST_ACCOUNTS,hbciListAccounts,false +40895,806064cc-b409-44c8-a31d-4785f256d3ab,LIST_TRANSACTIONS,hbciListTransactions,false +40896,806064cc-b409-44c8-a31d-4785f256d3ab,AUTHORIZATION,,false +40897,806064cc-b409-44c8-a31d-4785f256d3ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40898,806064cc-b409-44c8-a31d-4785f256d3ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40899,806064cc-b409-44c8-a31d-4785f256d3ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40900,99530b60-576f-4462-96d3-e210c7434df4,LIST_ACCOUNTS,xs2aListAccounts,true -40901,99530b60-576f-4462-96d3-e210c7434df4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40901,99530b60-576f-4462-96d3-e210c7434df4,LIST_TRANSACTIONS,xs2aListTransactions,true 40902,99530b60-576f-4462-96d3-e210c7434df4,AUTHORIZATION,,true 40903,99530b60-576f-4462-96d3-e210c7434df4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40904,99530b60-576f-4462-96d3-e210c7434df4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40905,99530b60-576f-4462-96d3-e210c7434df4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40906,c0a0d55a-a450-4ae4-aa22-97ea2139d7de,LIST_ACCOUNTS,hbciListAccounts,false -40907,c0a0d55a-a450-4ae4-aa22-97ea2139d7de,LIST_TRANSACTIONS,hbciListTransactions,false -40908,c0a0d55a-a450-4ae4-aa22-97ea2139d7de,AUTHORIZATION,,false -40909,c0a0d55a-a450-4ae4-aa22-97ea2139d7de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40910,c0a0d55a-a450-4ae4-aa22-97ea2139d7de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40911,c0a0d55a-a450-4ae4-aa22-97ea2139d7de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40906,9f9ab56a-7f16-445f-b674-c194b9088d2a,LIST_ACCOUNTS,hbciListAccounts,false +40907,9f9ab56a-7f16-445f-b674-c194b9088d2a,LIST_TRANSACTIONS,hbciListTransactions,false +40908,9f9ab56a-7f16-445f-b674-c194b9088d2a,AUTHORIZATION,,false +40909,9f9ab56a-7f16-445f-b674-c194b9088d2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40910,9f9ab56a-7f16-445f-b674-c194b9088d2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40911,9f9ab56a-7f16-445f-b674-c194b9088d2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40912,c8339262-e724-4d5b-a7a8-9933c2493784,LIST_ACCOUNTS,xs2aListAccounts,true -40913,c8339262-e724-4d5b-a7a8-9933c2493784,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40913,c8339262-e724-4d5b-a7a8-9933c2493784,LIST_TRANSACTIONS,xs2aListTransactions,true 40914,c8339262-e724-4d5b-a7a8-9933c2493784,AUTHORIZATION,,true 40915,c8339262-e724-4d5b-a7a8-9933c2493784,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40916,c8339262-e724-4d5b-a7a8-9933c2493784,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40917,c8339262-e724-4d5b-a7a8-9933c2493784,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40918,9cee9307-cf0d-46d4-867f-84f131c0c50e,LIST_ACCOUNTS,hbciListAccounts,false -40919,9cee9307-cf0d-46d4-867f-84f131c0c50e,LIST_TRANSACTIONS,hbciListTransactions,false -40920,9cee9307-cf0d-46d4-867f-84f131c0c50e,AUTHORIZATION,,false -40921,9cee9307-cf0d-46d4-867f-84f131c0c50e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40922,9cee9307-cf0d-46d4-867f-84f131c0c50e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40923,9cee9307-cf0d-46d4-867f-84f131c0c50e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40918,ed73e1a2-1010-4fce-85dc-96c3a6202656,LIST_ACCOUNTS,hbciListAccounts,false +40919,ed73e1a2-1010-4fce-85dc-96c3a6202656,LIST_TRANSACTIONS,hbciListTransactions,false +40920,ed73e1a2-1010-4fce-85dc-96c3a6202656,AUTHORIZATION,,false +40921,ed73e1a2-1010-4fce-85dc-96c3a6202656,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40922,ed73e1a2-1010-4fce-85dc-96c3a6202656,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40923,ed73e1a2-1010-4fce-85dc-96c3a6202656,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40924,b68b19f8-83da-4e1e-86c3-f1596c92134c,LIST_ACCOUNTS,xs2aListAccounts,true -40925,b68b19f8-83da-4e1e-86c3-f1596c92134c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40925,b68b19f8-83da-4e1e-86c3-f1596c92134c,LIST_TRANSACTIONS,xs2aListTransactions,true 40926,b68b19f8-83da-4e1e-86c3-f1596c92134c,AUTHORIZATION,,true 40927,b68b19f8-83da-4e1e-86c3-f1596c92134c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40928,b68b19f8-83da-4e1e-86c3-f1596c92134c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40929,b68b19f8-83da-4e1e-86c3-f1596c92134c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40930,e15c6b11-9aae-40b6-a717-8ca917c2217f,LIST_ACCOUNTS,hbciListAccounts,false -40931,e15c6b11-9aae-40b6-a717-8ca917c2217f,LIST_TRANSACTIONS,hbciListTransactions,false -40932,e15c6b11-9aae-40b6-a717-8ca917c2217f,AUTHORIZATION,,false -40933,e15c6b11-9aae-40b6-a717-8ca917c2217f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40934,e15c6b11-9aae-40b6-a717-8ca917c2217f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40935,e15c6b11-9aae-40b6-a717-8ca917c2217f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40930,1bb7f472-6945-4ae1-80f7-c2fff703dd41,LIST_ACCOUNTS,hbciListAccounts,false +40931,1bb7f472-6945-4ae1-80f7-c2fff703dd41,LIST_TRANSACTIONS,hbciListTransactions,false +40932,1bb7f472-6945-4ae1-80f7-c2fff703dd41,AUTHORIZATION,,false +40933,1bb7f472-6945-4ae1-80f7-c2fff703dd41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40934,1bb7f472-6945-4ae1-80f7-c2fff703dd41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40935,1bb7f472-6945-4ae1-80f7-c2fff703dd41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40936,fa0d9658-b5a2-4185-9d27-8beaa637ba46,LIST_ACCOUNTS,xs2aListAccounts,true -40937,fa0d9658-b5a2-4185-9d27-8beaa637ba46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40937,fa0d9658-b5a2-4185-9d27-8beaa637ba46,LIST_TRANSACTIONS,xs2aListTransactions,true 40938,fa0d9658-b5a2-4185-9d27-8beaa637ba46,AUTHORIZATION,,true 40939,fa0d9658-b5a2-4185-9d27-8beaa637ba46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40940,fa0d9658-b5a2-4185-9d27-8beaa637ba46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40941,fa0d9658-b5a2-4185-9d27-8beaa637ba46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40942,a04646ad-62cc-4015-a6e4-44ecc1d31918,LIST_ACCOUNTS,hbciListAccounts,false -40943,a04646ad-62cc-4015-a6e4-44ecc1d31918,LIST_TRANSACTIONS,hbciListTransactions,false -40944,a04646ad-62cc-4015-a6e4-44ecc1d31918,AUTHORIZATION,,false -40945,a04646ad-62cc-4015-a6e4-44ecc1d31918,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40946,a04646ad-62cc-4015-a6e4-44ecc1d31918,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40947,a04646ad-62cc-4015-a6e4-44ecc1d31918,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40942,ac343fbb-3054-451b-ae0a-3f80cf3c2c43,LIST_ACCOUNTS,hbciListAccounts,false +40943,ac343fbb-3054-451b-ae0a-3f80cf3c2c43,LIST_TRANSACTIONS,hbciListTransactions,false +40944,ac343fbb-3054-451b-ae0a-3f80cf3c2c43,AUTHORIZATION,,false +40945,ac343fbb-3054-451b-ae0a-3f80cf3c2c43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40946,ac343fbb-3054-451b-ae0a-3f80cf3c2c43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40947,ac343fbb-3054-451b-ae0a-3f80cf3c2c43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40948,18adde0c-c5e6-4268-ba5b-d524e7b27f4e,LIST_ACCOUNTS,xs2aListAccounts,true -40949,18adde0c-c5e6-4268-ba5b-d524e7b27f4e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40949,18adde0c-c5e6-4268-ba5b-d524e7b27f4e,LIST_TRANSACTIONS,xs2aListTransactions,true 40950,18adde0c-c5e6-4268-ba5b-d524e7b27f4e,AUTHORIZATION,,true 40951,18adde0c-c5e6-4268-ba5b-d524e7b27f4e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40952,18adde0c-c5e6-4268-ba5b-d524e7b27f4e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40953,18adde0c-c5e6-4268-ba5b-d524e7b27f4e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40954,5c16b255-8d49-489e-899d-bd06993a699b,LIST_ACCOUNTS,hbciListAccounts,false -40955,5c16b255-8d49-489e-899d-bd06993a699b,LIST_TRANSACTIONS,hbciListTransactions,false -40956,5c16b255-8d49-489e-899d-bd06993a699b,AUTHORIZATION,,false -40957,5c16b255-8d49-489e-899d-bd06993a699b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40958,5c16b255-8d49-489e-899d-bd06993a699b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40959,5c16b255-8d49-489e-899d-bd06993a699b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40954,aaf4841b-29fb-4b62-b374-59a26bee8977,LIST_ACCOUNTS,hbciListAccounts,false +40955,aaf4841b-29fb-4b62-b374-59a26bee8977,LIST_TRANSACTIONS,hbciListTransactions,false +40956,aaf4841b-29fb-4b62-b374-59a26bee8977,AUTHORIZATION,,false +40957,aaf4841b-29fb-4b62-b374-59a26bee8977,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40958,aaf4841b-29fb-4b62-b374-59a26bee8977,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40959,aaf4841b-29fb-4b62-b374-59a26bee8977,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40960,acf21909-3444-4f9b-8a29-c20d16b3973f,LIST_ACCOUNTS,xs2aListAccounts,true -40961,acf21909-3444-4f9b-8a29-c20d16b3973f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40961,acf21909-3444-4f9b-8a29-c20d16b3973f,LIST_TRANSACTIONS,xs2aListTransactions,true 40962,acf21909-3444-4f9b-8a29-c20d16b3973f,AUTHORIZATION,,true 40963,acf21909-3444-4f9b-8a29-c20d16b3973f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40964,acf21909-3444-4f9b-8a29-c20d16b3973f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40965,acf21909-3444-4f9b-8a29-c20d16b3973f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40966,6e725130-c361-4368-88b4-6686eef41875,LIST_ACCOUNTS,hbciListAccounts,false -40967,6e725130-c361-4368-88b4-6686eef41875,LIST_TRANSACTIONS,hbciListTransactions,false -40968,6e725130-c361-4368-88b4-6686eef41875,AUTHORIZATION,,false -40969,6e725130-c361-4368-88b4-6686eef41875,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40970,6e725130-c361-4368-88b4-6686eef41875,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40971,6e725130-c361-4368-88b4-6686eef41875,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40966,e7b39b35-855a-45ed-99ad-1f5a15f22339,LIST_ACCOUNTS,hbciListAccounts,false +40967,e7b39b35-855a-45ed-99ad-1f5a15f22339,LIST_TRANSACTIONS,hbciListTransactions,false +40968,e7b39b35-855a-45ed-99ad-1f5a15f22339,AUTHORIZATION,,false +40969,e7b39b35-855a-45ed-99ad-1f5a15f22339,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40970,e7b39b35-855a-45ed-99ad-1f5a15f22339,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40971,e7b39b35-855a-45ed-99ad-1f5a15f22339,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40972,c87bd6a3-80e2-4d62-90ca-538019b0ec6a,LIST_ACCOUNTS,xs2aListAccounts,true -40973,c87bd6a3-80e2-4d62-90ca-538019b0ec6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40973,c87bd6a3-80e2-4d62-90ca-538019b0ec6a,LIST_TRANSACTIONS,xs2aListTransactions,true 40974,c87bd6a3-80e2-4d62-90ca-538019b0ec6a,AUTHORIZATION,,true 40975,c87bd6a3-80e2-4d62-90ca-538019b0ec6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40976,c87bd6a3-80e2-4d62-90ca-538019b0ec6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40977,c87bd6a3-80e2-4d62-90ca-538019b0ec6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40978,84611884-8eb3-4056-bd70-bf2e83b04600,LIST_ACCOUNTS,hbciListAccounts,false -40979,84611884-8eb3-4056-bd70-bf2e83b04600,LIST_TRANSACTIONS,hbciListTransactions,false -40980,84611884-8eb3-4056-bd70-bf2e83b04600,AUTHORIZATION,,false -40981,84611884-8eb3-4056-bd70-bf2e83b04600,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40982,84611884-8eb3-4056-bd70-bf2e83b04600,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40983,84611884-8eb3-4056-bd70-bf2e83b04600,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40978,c7c2df4b-85ff-40eb-90d6-107ec302d591,LIST_ACCOUNTS,hbciListAccounts,false +40979,c7c2df4b-85ff-40eb-90d6-107ec302d591,LIST_TRANSACTIONS,hbciListTransactions,false +40980,c7c2df4b-85ff-40eb-90d6-107ec302d591,AUTHORIZATION,,false +40981,c7c2df4b-85ff-40eb-90d6-107ec302d591,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40982,c7c2df4b-85ff-40eb-90d6-107ec302d591,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40983,c7c2df4b-85ff-40eb-90d6-107ec302d591,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40984,c0ee712f-9c2a-4f5d-a955-ae62ebda8766,LIST_ACCOUNTS,xs2aListAccounts,true -40985,c0ee712f-9c2a-4f5d-a955-ae62ebda8766,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40985,c0ee712f-9c2a-4f5d-a955-ae62ebda8766,LIST_TRANSACTIONS,xs2aListTransactions,true 40986,c0ee712f-9c2a-4f5d-a955-ae62ebda8766,AUTHORIZATION,,true 40987,c0ee712f-9c2a-4f5d-a955-ae62ebda8766,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 40988,c0ee712f-9c2a-4f5d-a955-ae62ebda8766,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 40989,c0ee712f-9c2a-4f5d-a955-ae62ebda8766,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -40990,47017d54-3224-40bd-b77f-ea5f4368cf4f,LIST_ACCOUNTS,hbciListAccounts,false -40991,47017d54-3224-40bd-b77f-ea5f4368cf4f,LIST_TRANSACTIONS,hbciListTransactions,false -40992,47017d54-3224-40bd-b77f-ea5f4368cf4f,AUTHORIZATION,,false -40993,47017d54-3224-40bd-b77f-ea5f4368cf4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -40994,47017d54-3224-40bd-b77f-ea5f4368cf4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -40995,47017d54-3224-40bd-b77f-ea5f4368cf4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +40990,ee751e5e-b6ec-4c0d-babb-a064550a738b,LIST_ACCOUNTS,hbciListAccounts,false +40991,ee751e5e-b6ec-4c0d-babb-a064550a738b,LIST_TRANSACTIONS,hbciListTransactions,false +40992,ee751e5e-b6ec-4c0d-babb-a064550a738b,AUTHORIZATION,,false +40993,ee751e5e-b6ec-4c0d-babb-a064550a738b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +40994,ee751e5e-b6ec-4c0d-babb-a064550a738b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +40995,ee751e5e-b6ec-4c0d-babb-a064550a738b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 40996,e7e77867-001b-4d75-8681-41db90ee0a29,LIST_ACCOUNTS,xs2aListAccounts,true -40997,e7e77867-001b-4d75-8681-41db90ee0a29,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +40997,e7e77867-001b-4d75-8681-41db90ee0a29,LIST_TRANSACTIONS,xs2aListTransactions,true 40998,e7e77867-001b-4d75-8681-41db90ee0a29,AUTHORIZATION,,true 40999,e7e77867-001b-4d75-8681-41db90ee0a29,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41000,e7e77867-001b-4d75-8681-41db90ee0a29,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41001,e7e77867-001b-4d75-8681-41db90ee0a29,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41002,2360a4b6-11ed-4df8-8788-9e810851e209,LIST_ACCOUNTS,hbciListAccounts,false -41003,2360a4b6-11ed-4df8-8788-9e810851e209,LIST_TRANSACTIONS,hbciListTransactions,false -41004,2360a4b6-11ed-4df8-8788-9e810851e209,AUTHORIZATION,,false -41005,2360a4b6-11ed-4df8-8788-9e810851e209,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41006,2360a4b6-11ed-4df8-8788-9e810851e209,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41007,2360a4b6-11ed-4df8-8788-9e810851e209,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41002,c574d0d4-caa4-43e1-9c7f-6266d84a8725,LIST_ACCOUNTS,hbciListAccounts,false +41003,c574d0d4-caa4-43e1-9c7f-6266d84a8725,LIST_TRANSACTIONS,hbciListTransactions,false +41004,c574d0d4-caa4-43e1-9c7f-6266d84a8725,AUTHORIZATION,,false +41005,c574d0d4-caa4-43e1-9c7f-6266d84a8725,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41006,c574d0d4-caa4-43e1-9c7f-6266d84a8725,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41007,c574d0d4-caa4-43e1-9c7f-6266d84a8725,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41008,95636c06-0762-4ff2-b6b7-3cbd31303b3b,LIST_ACCOUNTS,xs2aListAccounts,true -41009,95636c06-0762-4ff2-b6b7-3cbd31303b3b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41009,95636c06-0762-4ff2-b6b7-3cbd31303b3b,LIST_TRANSACTIONS,xs2aListTransactions,true 41010,95636c06-0762-4ff2-b6b7-3cbd31303b3b,AUTHORIZATION,,true 41011,95636c06-0762-4ff2-b6b7-3cbd31303b3b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41012,95636c06-0762-4ff2-b6b7-3cbd31303b3b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41013,95636c06-0762-4ff2-b6b7-3cbd31303b3b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41014,f688dfa3-27c5-4d7e-9445-e1d1ad3ad4e5,LIST_ACCOUNTS,hbciListAccounts,false -41015,f688dfa3-27c5-4d7e-9445-e1d1ad3ad4e5,LIST_TRANSACTIONS,hbciListTransactions,false -41016,f688dfa3-27c5-4d7e-9445-e1d1ad3ad4e5,AUTHORIZATION,,false -41017,f688dfa3-27c5-4d7e-9445-e1d1ad3ad4e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41018,f688dfa3-27c5-4d7e-9445-e1d1ad3ad4e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41019,f688dfa3-27c5-4d7e-9445-e1d1ad3ad4e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41014,ec307e4d-8448-40ce-86b5-dba6ac6ad708,LIST_ACCOUNTS,hbciListAccounts,false +41015,ec307e4d-8448-40ce-86b5-dba6ac6ad708,LIST_TRANSACTIONS,hbciListTransactions,false +41016,ec307e4d-8448-40ce-86b5-dba6ac6ad708,AUTHORIZATION,,false +41017,ec307e4d-8448-40ce-86b5-dba6ac6ad708,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41018,ec307e4d-8448-40ce-86b5-dba6ac6ad708,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41019,ec307e4d-8448-40ce-86b5-dba6ac6ad708,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41020,fefee215-efcf-43dc-b933-6f2e16e98c1e,LIST_ACCOUNTS,xs2aListAccounts,true -41021,fefee215-efcf-43dc-b933-6f2e16e98c1e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41021,fefee215-efcf-43dc-b933-6f2e16e98c1e,LIST_TRANSACTIONS,xs2aListTransactions,true 41022,fefee215-efcf-43dc-b933-6f2e16e98c1e,AUTHORIZATION,,true 41023,fefee215-efcf-43dc-b933-6f2e16e98c1e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41024,fefee215-efcf-43dc-b933-6f2e16e98c1e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41025,fefee215-efcf-43dc-b933-6f2e16e98c1e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41026,e8d49527-b8cb-4047-83fd-6201e557088e,LIST_ACCOUNTS,hbciListAccounts,false -41027,e8d49527-b8cb-4047-83fd-6201e557088e,LIST_TRANSACTIONS,hbciListTransactions,false -41028,e8d49527-b8cb-4047-83fd-6201e557088e,AUTHORIZATION,,false -41029,e8d49527-b8cb-4047-83fd-6201e557088e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41030,e8d49527-b8cb-4047-83fd-6201e557088e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41031,e8d49527-b8cb-4047-83fd-6201e557088e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41026,0e27384d-8f4a-4573-a135-17e3d20ba153,LIST_ACCOUNTS,hbciListAccounts,false +41027,0e27384d-8f4a-4573-a135-17e3d20ba153,LIST_TRANSACTIONS,hbciListTransactions,false +41028,0e27384d-8f4a-4573-a135-17e3d20ba153,AUTHORIZATION,,false +41029,0e27384d-8f4a-4573-a135-17e3d20ba153,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41030,0e27384d-8f4a-4573-a135-17e3d20ba153,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41031,0e27384d-8f4a-4573-a135-17e3d20ba153,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41032,ed38fdc0-1719-41f4-a33a-0cdaf4e0da47,LIST_ACCOUNTS,xs2aListAccounts,true -41033,ed38fdc0-1719-41f4-a33a-0cdaf4e0da47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41033,ed38fdc0-1719-41f4-a33a-0cdaf4e0da47,LIST_TRANSACTIONS,xs2aListTransactions,true 41034,ed38fdc0-1719-41f4-a33a-0cdaf4e0da47,AUTHORIZATION,,true 41035,ed38fdc0-1719-41f4-a33a-0cdaf4e0da47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41036,ed38fdc0-1719-41f4-a33a-0cdaf4e0da47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41037,ed38fdc0-1719-41f4-a33a-0cdaf4e0da47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41038,8c879880-6ab6-421c-a613-60f620330f87,LIST_ACCOUNTS,hbciListAccounts,false -41039,8c879880-6ab6-421c-a613-60f620330f87,LIST_TRANSACTIONS,hbciListTransactions,false -41040,8c879880-6ab6-421c-a613-60f620330f87,AUTHORIZATION,,false -41041,8c879880-6ab6-421c-a613-60f620330f87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41042,8c879880-6ab6-421c-a613-60f620330f87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41043,8c879880-6ab6-421c-a613-60f620330f87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41038,21f0e4f3-9e8e-4856-8ed1-59311b592709,LIST_ACCOUNTS,hbciListAccounts,false +41039,21f0e4f3-9e8e-4856-8ed1-59311b592709,LIST_TRANSACTIONS,hbciListTransactions,false +41040,21f0e4f3-9e8e-4856-8ed1-59311b592709,AUTHORIZATION,,false +41041,21f0e4f3-9e8e-4856-8ed1-59311b592709,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41042,21f0e4f3-9e8e-4856-8ed1-59311b592709,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41043,21f0e4f3-9e8e-4856-8ed1-59311b592709,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41044,63fa750e-7a39-4055-b510-98edb828771a,LIST_ACCOUNTS,xs2aListAccounts,true -41045,63fa750e-7a39-4055-b510-98edb828771a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41045,63fa750e-7a39-4055-b510-98edb828771a,LIST_TRANSACTIONS,xs2aListTransactions,true 41046,63fa750e-7a39-4055-b510-98edb828771a,AUTHORIZATION,,true 41047,63fa750e-7a39-4055-b510-98edb828771a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41048,63fa750e-7a39-4055-b510-98edb828771a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41049,63fa750e-7a39-4055-b510-98edb828771a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41050,2eb9d327-2df4-43ab-8532-09a713c18f15,LIST_ACCOUNTS,hbciListAccounts,false -41051,2eb9d327-2df4-43ab-8532-09a713c18f15,LIST_TRANSACTIONS,hbciListTransactions,false -41052,2eb9d327-2df4-43ab-8532-09a713c18f15,AUTHORIZATION,,false -41053,2eb9d327-2df4-43ab-8532-09a713c18f15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41054,2eb9d327-2df4-43ab-8532-09a713c18f15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41055,2eb9d327-2df4-43ab-8532-09a713c18f15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41050,d85c2f4e-a6c5-4a1d-a111-cc2be46788e1,LIST_ACCOUNTS,hbciListAccounts,false +41051,d85c2f4e-a6c5-4a1d-a111-cc2be46788e1,LIST_TRANSACTIONS,hbciListTransactions,false +41052,d85c2f4e-a6c5-4a1d-a111-cc2be46788e1,AUTHORIZATION,,false +41053,d85c2f4e-a6c5-4a1d-a111-cc2be46788e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41054,d85c2f4e-a6c5-4a1d-a111-cc2be46788e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41055,d85c2f4e-a6c5-4a1d-a111-cc2be46788e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41056,d8020479-9fd7-4a3c-bec5-fd25b5665228,LIST_ACCOUNTS,xs2aListAccounts,true -41057,d8020479-9fd7-4a3c-bec5-fd25b5665228,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41057,d8020479-9fd7-4a3c-bec5-fd25b5665228,LIST_TRANSACTIONS,xs2aListTransactions,true 41058,d8020479-9fd7-4a3c-bec5-fd25b5665228,AUTHORIZATION,,true 41059,d8020479-9fd7-4a3c-bec5-fd25b5665228,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41060,d8020479-9fd7-4a3c-bec5-fd25b5665228,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41061,d8020479-9fd7-4a3c-bec5-fd25b5665228,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41062,4bb7a7f2-cfed-49e9-8ec0-0025cbe60614,LIST_ACCOUNTS,hbciListAccounts,false -41063,4bb7a7f2-cfed-49e9-8ec0-0025cbe60614,LIST_TRANSACTIONS,hbciListTransactions,false -41064,4bb7a7f2-cfed-49e9-8ec0-0025cbe60614,AUTHORIZATION,,false -41065,4bb7a7f2-cfed-49e9-8ec0-0025cbe60614,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41066,4bb7a7f2-cfed-49e9-8ec0-0025cbe60614,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41067,4bb7a7f2-cfed-49e9-8ec0-0025cbe60614,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41062,e7db49c7-dc8c-4718-a69f-b6ce15879888,LIST_ACCOUNTS,hbciListAccounts,false +41063,e7db49c7-dc8c-4718-a69f-b6ce15879888,LIST_TRANSACTIONS,hbciListTransactions,false +41064,e7db49c7-dc8c-4718-a69f-b6ce15879888,AUTHORIZATION,,false +41065,e7db49c7-dc8c-4718-a69f-b6ce15879888,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41066,e7db49c7-dc8c-4718-a69f-b6ce15879888,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41067,e7db49c7-dc8c-4718-a69f-b6ce15879888,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41068,4f5a51a6-cf3c-4e5e-af1a-9f36cc2c3cc8,LIST_ACCOUNTS,xs2aListAccounts,true -41069,4f5a51a6-cf3c-4e5e-af1a-9f36cc2c3cc8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41069,4f5a51a6-cf3c-4e5e-af1a-9f36cc2c3cc8,LIST_TRANSACTIONS,xs2aListTransactions,true 41070,4f5a51a6-cf3c-4e5e-af1a-9f36cc2c3cc8,AUTHORIZATION,,true 41071,4f5a51a6-cf3c-4e5e-af1a-9f36cc2c3cc8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41072,4f5a51a6-cf3c-4e5e-af1a-9f36cc2c3cc8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41073,4f5a51a6-cf3c-4e5e-af1a-9f36cc2c3cc8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41074,a5a3292c-db67-44cc-a034-10c46c662e0b,LIST_ACCOUNTS,hbciListAccounts,false -41075,a5a3292c-db67-44cc-a034-10c46c662e0b,LIST_TRANSACTIONS,hbciListTransactions,false -41076,a5a3292c-db67-44cc-a034-10c46c662e0b,AUTHORIZATION,,false -41077,a5a3292c-db67-44cc-a034-10c46c662e0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41078,a5a3292c-db67-44cc-a034-10c46c662e0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41079,a5a3292c-db67-44cc-a034-10c46c662e0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41074,2a9b9206-4af0-42ff-9ba8-4a73468aba6c,LIST_ACCOUNTS,hbciListAccounts,false +41075,2a9b9206-4af0-42ff-9ba8-4a73468aba6c,LIST_TRANSACTIONS,hbciListTransactions,false +41076,2a9b9206-4af0-42ff-9ba8-4a73468aba6c,AUTHORIZATION,,false +41077,2a9b9206-4af0-42ff-9ba8-4a73468aba6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41078,2a9b9206-4af0-42ff-9ba8-4a73468aba6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41079,2a9b9206-4af0-42ff-9ba8-4a73468aba6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41080,99064129-4f4d-4fdc-bdc2-9bea2fdf7237,LIST_ACCOUNTS,xs2aListAccounts,true -41081,99064129-4f4d-4fdc-bdc2-9bea2fdf7237,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41081,99064129-4f4d-4fdc-bdc2-9bea2fdf7237,LIST_TRANSACTIONS,xs2aListTransactions,true 41082,99064129-4f4d-4fdc-bdc2-9bea2fdf7237,AUTHORIZATION,,true 41083,99064129-4f4d-4fdc-bdc2-9bea2fdf7237,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41084,99064129-4f4d-4fdc-bdc2-9bea2fdf7237,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41085,99064129-4f4d-4fdc-bdc2-9bea2fdf7237,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41086,a609d04c-2f02-4c1c-b334-670246a3f709,LIST_ACCOUNTS,hbciListAccounts,false -41087,a609d04c-2f02-4c1c-b334-670246a3f709,LIST_TRANSACTIONS,hbciListTransactions,false -41088,a609d04c-2f02-4c1c-b334-670246a3f709,AUTHORIZATION,,false -41089,a609d04c-2f02-4c1c-b334-670246a3f709,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41090,a609d04c-2f02-4c1c-b334-670246a3f709,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41091,a609d04c-2f02-4c1c-b334-670246a3f709,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41086,457e2fe7-8e68-4bd3-8462-0d6e2ce69060,LIST_ACCOUNTS,hbciListAccounts,false +41087,457e2fe7-8e68-4bd3-8462-0d6e2ce69060,LIST_TRANSACTIONS,hbciListTransactions,false +41088,457e2fe7-8e68-4bd3-8462-0d6e2ce69060,AUTHORIZATION,,false +41089,457e2fe7-8e68-4bd3-8462-0d6e2ce69060,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41090,457e2fe7-8e68-4bd3-8462-0d6e2ce69060,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41091,457e2fe7-8e68-4bd3-8462-0d6e2ce69060,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41092,5e6aa741-af36-4742-a14d-22bcd9c9d64c,LIST_ACCOUNTS,xs2aListAccounts,true -41093,5e6aa741-af36-4742-a14d-22bcd9c9d64c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41093,5e6aa741-af36-4742-a14d-22bcd9c9d64c,LIST_TRANSACTIONS,xs2aListTransactions,true 41094,5e6aa741-af36-4742-a14d-22bcd9c9d64c,AUTHORIZATION,,true 41095,5e6aa741-af36-4742-a14d-22bcd9c9d64c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41096,5e6aa741-af36-4742-a14d-22bcd9c9d64c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41097,5e6aa741-af36-4742-a14d-22bcd9c9d64c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41098,f365d0c4-f9a5-4eea-874d-95c3a62aee96,LIST_ACCOUNTS,hbciListAccounts,false -41099,f365d0c4-f9a5-4eea-874d-95c3a62aee96,LIST_TRANSACTIONS,hbciListTransactions,false -41100,f365d0c4-f9a5-4eea-874d-95c3a62aee96,AUTHORIZATION,,false -41101,f365d0c4-f9a5-4eea-874d-95c3a62aee96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41102,f365d0c4-f9a5-4eea-874d-95c3a62aee96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41103,f365d0c4-f9a5-4eea-874d-95c3a62aee96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41098,3d978959-816e-41df-94e1-0bad74859e92,LIST_ACCOUNTS,hbciListAccounts,false +41099,3d978959-816e-41df-94e1-0bad74859e92,LIST_TRANSACTIONS,hbciListTransactions,false +41100,3d978959-816e-41df-94e1-0bad74859e92,AUTHORIZATION,,false +41101,3d978959-816e-41df-94e1-0bad74859e92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41102,3d978959-816e-41df-94e1-0bad74859e92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41103,3d978959-816e-41df-94e1-0bad74859e92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41104,2dfd81d2-9a8d-4672-ad61-a09d10d79f7d,LIST_ACCOUNTS,xs2aListAccounts,true -41105,2dfd81d2-9a8d-4672-ad61-a09d10d79f7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41105,2dfd81d2-9a8d-4672-ad61-a09d10d79f7d,LIST_TRANSACTIONS,xs2aListTransactions,true 41106,2dfd81d2-9a8d-4672-ad61-a09d10d79f7d,AUTHORIZATION,,true 41107,2dfd81d2-9a8d-4672-ad61-a09d10d79f7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41108,2dfd81d2-9a8d-4672-ad61-a09d10d79f7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41109,2dfd81d2-9a8d-4672-ad61-a09d10d79f7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41110,e878bdf7-cfbc-4c0b-8a67-d54f405a6ca3,LIST_ACCOUNTS,hbciListAccounts,false -41111,e878bdf7-cfbc-4c0b-8a67-d54f405a6ca3,LIST_TRANSACTIONS,hbciListTransactions,false -41112,e878bdf7-cfbc-4c0b-8a67-d54f405a6ca3,AUTHORIZATION,,false -41113,e878bdf7-cfbc-4c0b-8a67-d54f405a6ca3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41114,e878bdf7-cfbc-4c0b-8a67-d54f405a6ca3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41115,e878bdf7-cfbc-4c0b-8a67-d54f405a6ca3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41110,e5f86c64-171f-4155-9f6d-4ad61f5f37b6,LIST_ACCOUNTS,hbciListAccounts,false +41111,e5f86c64-171f-4155-9f6d-4ad61f5f37b6,LIST_TRANSACTIONS,hbciListTransactions,false +41112,e5f86c64-171f-4155-9f6d-4ad61f5f37b6,AUTHORIZATION,,false +41113,e5f86c64-171f-4155-9f6d-4ad61f5f37b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41114,e5f86c64-171f-4155-9f6d-4ad61f5f37b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41115,e5f86c64-171f-4155-9f6d-4ad61f5f37b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41116,447defa3-a7fd-4e64-91a8-4298ec3f1705,LIST_ACCOUNTS,xs2aListAccounts,true -41117,447defa3-a7fd-4e64-91a8-4298ec3f1705,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41117,447defa3-a7fd-4e64-91a8-4298ec3f1705,LIST_TRANSACTIONS,xs2aListTransactions,true 41118,447defa3-a7fd-4e64-91a8-4298ec3f1705,AUTHORIZATION,,true 41119,447defa3-a7fd-4e64-91a8-4298ec3f1705,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41120,447defa3-a7fd-4e64-91a8-4298ec3f1705,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41121,447defa3-a7fd-4e64-91a8-4298ec3f1705,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41122,e09b035c-a322-494b-bc81-bd18759c0bbf,LIST_ACCOUNTS,hbciListAccounts,false -41123,e09b035c-a322-494b-bc81-bd18759c0bbf,LIST_TRANSACTIONS,hbciListTransactions,false -41124,e09b035c-a322-494b-bc81-bd18759c0bbf,AUTHORIZATION,,false -41125,e09b035c-a322-494b-bc81-bd18759c0bbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41126,e09b035c-a322-494b-bc81-bd18759c0bbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41127,e09b035c-a322-494b-bc81-bd18759c0bbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41122,364a6f58-6216-433f-9ef4-8a6ef3d5f0a4,LIST_ACCOUNTS,hbciListAccounts,false +41123,364a6f58-6216-433f-9ef4-8a6ef3d5f0a4,LIST_TRANSACTIONS,hbciListTransactions,false +41124,364a6f58-6216-433f-9ef4-8a6ef3d5f0a4,AUTHORIZATION,,false +41125,364a6f58-6216-433f-9ef4-8a6ef3d5f0a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41126,364a6f58-6216-433f-9ef4-8a6ef3d5f0a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41127,364a6f58-6216-433f-9ef4-8a6ef3d5f0a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41128,9c1d4a6c-6f6d-4817-a624-ac1b2dd96e79,LIST_ACCOUNTS,xs2aListAccounts,true -41129,9c1d4a6c-6f6d-4817-a624-ac1b2dd96e79,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41129,9c1d4a6c-6f6d-4817-a624-ac1b2dd96e79,LIST_TRANSACTIONS,xs2aListTransactions,true 41130,9c1d4a6c-6f6d-4817-a624-ac1b2dd96e79,AUTHORIZATION,,true 41131,9c1d4a6c-6f6d-4817-a624-ac1b2dd96e79,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41132,9c1d4a6c-6f6d-4817-a624-ac1b2dd96e79,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41133,9c1d4a6c-6f6d-4817-a624-ac1b2dd96e79,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41134,6c652bc9-e071-4497-b2bf-2f77cb4ffa84,LIST_ACCOUNTS,hbciListAccounts,false -41135,6c652bc9-e071-4497-b2bf-2f77cb4ffa84,LIST_TRANSACTIONS,hbciListTransactions,false -41136,6c652bc9-e071-4497-b2bf-2f77cb4ffa84,AUTHORIZATION,,false -41137,6c652bc9-e071-4497-b2bf-2f77cb4ffa84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41138,6c652bc9-e071-4497-b2bf-2f77cb4ffa84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41139,6c652bc9-e071-4497-b2bf-2f77cb4ffa84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41134,ebcf1a0b-5c87-4031-8a16-fbec028e690f,LIST_ACCOUNTS,hbciListAccounts,false +41135,ebcf1a0b-5c87-4031-8a16-fbec028e690f,LIST_TRANSACTIONS,hbciListTransactions,false +41136,ebcf1a0b-5c87-4031-8a16-fbec028e690f,AUTHORIZATION,,false +41137,ebcf1a0b-5c87-4031-8a16-fbec028e690f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41138,ebcf1a0b-5c87-4031-8a16-fbec028e690f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41139,ebcf1a0b-5c87-4031-8a16-fbec028e690f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41140,52bb75d2-188e-4bac-90a9-20b447ed9d7b,LIST_ACCOUNTS,xs2aListAccounts,true -41141,52bb75d2-188e-4bac-90a9-20b447ed9d7b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41141,52bb75d2-188e-4bac-90a9-20b447ed9d7b,LIST_TRANSACTIONS,xs2aListTransactions,true 41142,52bb75d2-188e-4bac-90a9-20b447ed9d7b,AUTHORIZATION,,true 41143,52bb75d2-188e-4bac-90a9-20b447ed9d7b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41144,52bb75d2-188e-4bac-90a9-20b447ed9d7b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41145,52bb75d2-188e-4bac-90a9-20b447ed9d7b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41146,4eaa7654-5194-4cc5-bab9-ef226b27e4b5,LIST_ACCOUNTS,hbciListAccounts,false -41147,4eaa7654-5194-4cc5-bab9-ef226b27e4b5,LIST_TRANSACTIONS,hbciListTransactions,false -41148,4eaa7654-5194-4cc5-bab9-ef226b27e4b5,AUTHORIZATION,,false -41149,4eaa7654-5194-4cc5-bab9-ef226b27e4b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41150,4eaa7654-5194-4cc5-bab9-ef226b27e4b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41151,4eaa7654-5194-4cc5-bab9-ef226b27e4b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41146,a734ad38-d8e4-4b3f-a5fb-134e025e58be,LIST_ACCOUNTS,hbciListAccounts,false +41147,a734ad38-d8e4-4b3f-a5fb-134e025e58be,LIST_TRANSACTIONS,hbciListTransactions,false +41148,a734ad38-d8e4-4b3f-a5fb-134e025e58be,AUTHORIZATION,,false +41149,a734ad38-d8e4-4b3f-a5fb-134e025e58be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41150,a734ad38-d8e4-4b3f-a5fb-134e025e58be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41151,a734ad38-d8e4-4b3f-a5fb-134e025e58be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41152,2e653c0f-7710-4f2c-9635-9b2d2d912472,LIST_ACCOUNTS,xs2aListAccounts,true -41153,2e653c0f-7710-4f2c-9635-9b2d2d912472,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41153,2e653c0f-7710-4f2c-9635-9b2d2d912472,LIST_TRANSACTIONS,xs2aListTransactions,true 41154,2e653c0f-7710-4f2c-9635-9b2d2d912472,AUTHORIZATION,,true 41155,2e653c0f-7710-4f2c-9635-9b2d2d912472,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41156,2e653c0f-7710-4f2c-9635-9b2d2d912472,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41157,2e653c0f-7710-4f2c-9635-9b2d2d912472,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41158,37e214a1-4a7f-4c36-9ae7-1a3a176adb10,LIST_ACCOUNTS,hbciListAccounts,false -41159,37e214a1-4a7f-4c36-9ae7-1a3a176adb10,LIST_TRANSACTIONS,hbciListTransactions,false -41160,37e214a1-4a7f-4c36-9ae7-1a3a176adb10,AUTHORIZATION,,false -41161,37e214a1-4a7f-4c36-9ae7-1a3a176adb10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41162,37e214a1-4a7f-4c36-9ae7-1a3a176adb10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41163,37e214a1-4a7f-4c36-9ae7-1a3a176adb10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41158,0cde66c5-3e2f-48eb-b6a5-79e6172c568e,LIST_ACCOUNTS,hbciListAccounts,false +41159,0cde66c5-3e2f-48eb-b6a5-79e6172c568e,LIST_TRANSACTIONS,hbciListTransactions,false +41160,0cde66c5-3e2f-48eb-b6a5-79e6172c568e,AUTHORIZATION,,false +41161,0cde66c5-3e2f-48eb-b6a5-79e6172c568e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41162,0cde66c5-3e2f-48eb-b6a5-79e6172c568e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41163,0cde66c5-3e2f-48eb-b6a5-79e6172c568e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41164,a797ec21-99a4-4ffd-a25b-da06722b013d,LIST_ACCOUNTS,xs2aListAccounts,true -41165,a797ec21-99a4-4ffd-a25b-da06722b013d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41165,a797ec21-99a4-4ffd-a25b-da06722b013d,LIST_TRANSACTIONS,xs2aListTransactions,true 41166,a797ec21-99a4-4ffd-a25b-da06722b013d,AUTHORIZATION,,true 41167,a797ec21-99a4-4ffd-a25b-da06722b013d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41168,a797ec21-99a4-4ffd-a25b-da06722b013d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41169,a797ec21-99a4-4ffd-a25b-da06722b013d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41170,3129d7f3-bc3f-4948-aa25-e1797ca4ed45,LIST_ACCOUNTS,hbciListAccounts,false -41171,3129d7f3-bc3f-4948-aa25-e1797ca4ed45,LIST_TRANSACTIONS,hbciListTransactions,false -41172,3129d7f3-bc3f-4948-aa25-e1797ca4ed45,AUTHORIZATION,,false -41173,3129d7f3-bc3f-4948-aa25-e1797ca4ed45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41174,3129d7f3-bc3f-4948-aa25-e1797ca4ed45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41175,3129d7f3-bc3f-4948-aa25-e1797ca4ed45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41170,ce432861-8cbc-4b53-850c-a7bc525dd5d7,LIST_ACCOUNTS,hbciListAccounts,false +41171,ce432861-8cbc-4b53-850c-a7bc525dd5d7,LIST_TRANSACTIONS,hbciListTransactions,false +41172,ce432861-8cbc-4b53-850c-a7bc525dd5d7,AUTHORIZATION,,false +41173,ce432861-8cbc-4b53-850c-a7bc525dd5d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41174,ce432861-8cbc-4b53-850c-a7bc525dd5d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41175,ce432861-8cbc-4b53-850c-a7bc525dd5d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41176,0450c2bb-3766-40b9-ba0a-83b2fa043352,LIST_ACCOUNTS,xs2aListAccounts,true -41177,0450c2bb-3766-40b9-ba0a-83b2fa043352,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41177,0450c2bb-3766-40b9-ba0a-83b2fa043352,LIST_TRANSACTIONS,xs2aListTransactions,true 41178,0450c2bb-3766-40b9-ba0a-83b2fa043352,AUTHORIZATION,,true 41179,0450c2bb-3766-40b9-ba0a-83b2fa043352,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41180,0450c2bb-3766-40b9-ba0a-83b2fa043352,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41181,0450c2bb-3766-40b9-ba0a-83b2fa043352,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41182,8aa44df1-faf8-422b-a6f7-7a13da0a59b9,LIST_ACCOUNTS,hbciListAccounts,false -41183,8aa44df1-faf8-422b-a6f7-7a13da0a59b9,LIST_TRANSACTIONS,hbciListTransactions,false -41184,8aa44df1-faf8-422b-a6f7-7a13da0a59b9,AUTHORIZATION,,false -41185,8aa44df1-faf8-422b-a6f7-7a13da0a59b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41186,8aa44df1-faf8-422b-a6f7-7a13da0a59b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41187,8aa44df1-faf8-422b-a6f7-7a13da0a59b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41182,c9e98db6-cf9b-4fac-9b24-8b84163289ef,LIST_ACCOUNTS,hbciListAccounts,false +41183,c9e98db6-cf9b-4fac-9b24-8b84163289ef,LIST_TRANSACTIONS,hbciListTransactions,false +41184,c9e98db6-cf9b-4fac-9b24-8b84163289ef,AUTHORIZATION,,false +41185,c9e98db6-cf9b-4fac-9b24-8b84163289ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41186,c9e98db6-cf9b-4fac-9b24-8b84163289ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41187,c9e98db6-cf9b-4fac-9b24-8b84163289ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41188,26721e1e-7912-40b9-aa4b-ee5718a33638,LIST_ACCOUNTS,xs2aListAccounts,true -41189,26721e1e-7912-40b9-aa4b-ee5718a33638,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41189,26721e1e-7912-40b9-aa4b-ee5718a33638,LIST_TRANSACTIONS,xs2aListTransactions,true 41190,26721e1e-7912-40b9-aa4b-ee5718a33638,AUTHORIZATION,,true 41191,26721e1e-7912-40b9-aa4b-ee5718a33638,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41192,26721e1e-7912-40b9-aa4b-ee5718a33638,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41193,26721e1e-7912-40b9-aa4b-ee5718a33638,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41194,8c8c72be-6596-47ab-a771-20ee2b50d52e,LIST_ACCOUNTS,hbciListAccounts,false -41195,8c8c72be-6596-47ab-a771-20ee2b50d52e,LIST_TRANSACTIONS,hbciListTransactions,false -41196,8c8c72be-6596-47ab-a771-20ee2b50d52e,AUTHORIZATION,,false -41197,8c8c72be-6596-47ab-a771-20ee2b50d52e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41198,8c8c72be-6596-47ab-a771-20ee2b50d52e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41199,8c8c72be-6596-47ab-a771-20ee2b50d52e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41194,519c20a8-22a8-4431-ad09-bd40ea7a6e3f,LIST_ACCOUNTS,hbciListAccounts,false +41195,519c20a8-22a8-4431-ad09-bd40ea7a6e3f,LIST_TRANSACTIONS,hbciListTransactions,false +41196,519c20a8-22a8-4431-ad09-bd40ea7a6e3f,AUTHORIZATION,,false +41197,519c20a8-22a8-4431-ad09-bd40ea7a6e3f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41198,519c20a8-22a8-4431-ad09-bd40ea7a6e3f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41199,519c20a8-22a8-4431-ad09-bd40ea7a6e3f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41200,fb1b482c-e002-4e61-8b07-7f0ca08c96db,LIST_ACCOUNTS,xs2aListAccounts,true -41201,fb1b482c-e002-4e61-8b07-7f0ca08c96db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41201,fb1b482c-e002-4e61-8b07-7f0ca08c96db,LIST_TRANSACTIONS,xs2aListTransactions,true 41202,fb1b482c-e002-4e61-8b07-7f0ca08c96db,AUTHORIZATION,,true 41203,fb1b482c-e002-4e61-8b07-7f0ca08c96db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41204,fb1b482c-e002-4e61-8b07-7f0ca08c96db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41205,fb1b482c-e002-4e61-8b07-7f0ca08c96db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41206,6b22efb7-fc15-4e2c-8918-e8b18c9b50e8,LIST_ACCOUNTS,hbciListAccounts,false -41207,6b22efb7-fc15-4e2c-8918-e8b18c9b50e8,LIST_TRANSACTIONS,hbciListTransactions,false -41208,6b22efb7-fc15-4e2c-8918-e8b18c9b50e8,AUTHORIZATION,,false -41209,6b22efb7-fc15-4e2c-8918-e8b18c9b50e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41210,6b22efb7-fc15-4e2c-8918-e8b18c9b50e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41211,6b22efb7-fc15-4e2c-8918-e8b18c9b50e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41206,8870cead-6358-46df-8b7a-87b9f9a34c25,LIST_ACCOUNTS,hbciListAccounts,false +41207,8870cead-6358-46df-8b7a-87b9f9a34c25,LIST_TRANSACTIONS,hbciListTransactions,false +41208,8870cead-6358-46df-8b7a-87b9f9a34c25,AUTHORIZATION,,false +41209,8870cead-6358-46df-8b7a-87b9f9a34c25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41210,8870cead-6358-46df-8b7a-87b9f9a34c25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41211,8870cead-6358-46df-8b7a-87b9f9a34c25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41212,82d4dc21-7168-49ed-9a3f-88528d11c325,LIST_ACCOUNTS,xs2aListAccounts,true -41213,82d4dc21-7168-49ed-9a3f-88528d11c325,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41213,82d4dc21-7168-49ed-9a3f-88528d11c325,LIST_TRANSACTIONS,xs2aListTransactions,true 41214,82d4dc21-7168-49ed-9a3f-88528d11c325,AUTHORIZATION,,true 41215,82d4dc21-7168-49ed-9a3f-88528d11c325,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41216,82d4dc21-7168-49ed-9a3f-88528d11c325,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41217,82d4dc21-7168-49ed-9a3f-88528d11c325,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41218,1bb96082-f9a4-4c99-91b0-879598b8327f,LIST_ACCOUNTS,hbciListAccounts,false -41219,1bb96082-f9a4-4c99-91b0-879598b8327f,LIST_TRANSACTIONS,hbciListTransactions,false -41220,1bb96082-f9a4-4c99-91b0-879598b8327f,AUTHORIZATION,,false -41221,1bb96082-f9a4-4c99-91b0-879598b8327f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41222,1bb96082-f9a4-4c99-91b0-879598b8327f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41223,1bb96082-f9a4-4c99-91b0-879598b8327f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41218,6b33b99b-9f52-4953-a513-d06c45cda005,LIST_ACCOUNTS,hbciListAccounts,false +41219,6b33b99b-9f52-4953-a513-d06c45cda005,LIST_TRANSACTIONS,hbciListTransactions,false +41220,6b33b99b-9f52-4953-a513-d06c45cda005,AUTHORIZATION,,false +41221,6b33b99b-9f52-4953-a513-d06c45cda005,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41222,6b33b99b-9f52-4953-a513-d06c45cda005,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41223,6b33b99b-9f52-4953-a513-d06c45cda005,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41224,3623db06-c026-48a8-ad92-9968c3f45d96,LIST_ACCOUNTS,xs2aListAccounts,true -41225,3623db06-c026-48a8-ad92-9968c3f45d96,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41225,3623db06-c026-48a8-ad92-9968c3f45d96,LIST_TRANSACTIONS,xs2aListTransactions,true 41226,3623db06-c026-48a8-ad92-9968c3f45d96,AUTHORIZATION,,true 41227,3623db06-c026-48a8-ad92-9968c3f45d96,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41228,3623db06-c026-48a8-ad92-9968c3f45d96,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41229,3623db06-c026-48a8-ad92-9968c3f45d96,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41230,e27ce474-f7d7-425a-bc78-f8916b09ffdc,LIST_ACCOUNTS,hbciListAccounts,false -41231,e27ce474-f7d7-425a-bc78-f8916b09ffdc,LIST_TRANSACTIONS,hbciListTransactions,false -41232,e27ce474-f7d7-425a-bc78-f8916b09ffdc,AUTHORIZATION,,false -41233,e27ce474-f7d7-425a-bc78-f8916b09ffdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41234,e27ce474-f7d7-425a-bc78-f8916b09ffdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41235,e27ce474-f7d7-425a-bc78-f8916b09ffdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41230,8596da3a-49ac-456f-9c0f-b7a6c36874f2,LIST_ACCOUNTS,hbciListAccounts,false +41231,8596da3a-49ac-456f-9c0f-b7a6c36874f2,LIST_TRANSACTIONS,hbciListTransactions,false +41232,8596da3a-49ac-456f-9c0f-b7a6c36874f2,AUTHORIZATION,,false +41233,8596da3a-49ac-456f-9c0f-b7a6c36874f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41234,8596da3a-49ac-456f-9c0f-b7a6c36874f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41235,8596da3a-49ac-456f-9c0f-b7a6c36874f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41236,0a7ebb14-2824-4955-97de-9041142071eb,LIST_ACCOUNTS,xs2aListAccounts,true -41237,0a7ebb14-2824-4955-97de-9041142071eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41237,0a7ebb14-2824-4955-97de-9041142071eb,LIST_TRANSACTIONS,xs2aListTransactions,true 41238,0a7ebb14-2824-4955-97de-9041142071eb,AUTHORIZATION,,true 41239,0a7ebb14-2824-4955-97de-9041142071eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41240,0a7ebb14-2824-4955-97de-9041142071eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41241,0a7ebb14-2824-4955-97de-9041142071eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41242,f414558d-96b1-4362-95f8-87a72d279585,LIST_ACCOUNTS,hbciListAccounts,false -41243,f414558d-96b1-4362-95f8-87a72d279585,LIST_TRANSACTIONS,hbciListTransactions,false -41244,f414558d-96b1-4362-95f8-87a72d279585,AUTHORIZATION,,false -41245,f414558d-96b1-4362-95f8-87a72d279585,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41246,f414558d-96b1-4362-95f8-87a72d279585,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41247,f414558d-96b1-4362-95f8-87a72d279585,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41242,23d2b279-b4b5-45b7-ab75-5a28d8267185,LIST_ACCOUNTS,hbciListAccounts,false +41243,23d2b279-b4b5-45b7-ab75-5a28d8267185,LIST_TRANSACTIONS,hbciListTransactions,false +41244,23d2b279-b4b5-45b7-ab75-5a28d8267185,AUTHORIZATION,,false +41245,23d2b279-b4b5-45b7-ab75-5a28d8267185,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41246,23d2b279-b4b5-45b7-ab75-5a28d8267185,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41247,23d2b279-b4b5-45b7-ab75-5a28d8267185,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41248,e198957f-48a5-4b61-9180-341a5f5c6a1e,LIST_ACCOUNTS,xs2aListAccounts,true -41249,e198957f-48a5-4b61-9180-341a5f5c6a1e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41249,e198957f-48a5-4b61-9180-341a5f5c6a1e,LIST_TRANSACTIONS,xs2aListTransactions,true 41250,e198957f-48a5-4b61-9180-341a5f5c6a1e,AUTHORIZATION,,true 41251,e198957f-48a5-4b61-9180-341a5f5c6a1e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41252,e198957f-48a5-4b61-9180-341a5f5c6a1e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41253,e198957f-48a5-4b61-9180-341a5f5c6a1e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41254,85a641f2-9458-4e01-8890-d9d96e4c26c2,LIST_ACCOUNTS,hbciListAccounts,false -41255,85a641f2-9458-4e01-8890-d9d96e4c26c2,LIST_TRANSACTIONS,hbciListTransactions,false -41256,85a641f2-9458-4e01-8890-d9d96e4c26c2,AUTHORIZATION,,false -41257,85a641f2-9458-4e01-8890-d9d96e4c26c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41258,85a641f2-9458-4e01-8890-d9d96e4c26c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41259,85a641f2-9458-4e01-8890-d9d96e4c26c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41254,a8de55ed-2182-49cd-9d6b-7a153b4d42b3,LIST_ACCOUNTS,hbciListAccounts,false +41255,a8de55ed-2182-49cd-9d6b-7a153b4d42b3,LIST_TRANSACTIONS,hbciListTransactions,false +41256,a8de55ed-2182-49cd-9d6b-7a153b4d42b3,AUTHORIZATION,,false +41257,a8de55ed-2182-49cd-9d6b-7a153b4d42b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41258,a8de55ed-2182-49cd-9d6b-7a153b4d42b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41259,a8de55ed-2182-49cd-9d6b-7a153b4d42b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41260,1de20ce2-6cdd-4de8-9e0a-0ff9296b9620,LIST_ACCOUNTS,xs2aListAccounts,true -41261,1de20ce2-6cdd-4de8-9e0a-0ff9296b9620,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41261,1de20ce2-6cdd-4de8-9e0a-0ff9296b9620,LIST_TRANSACTIONS,xs2aListTransactions,true 41262,1de20ce2-6cdd-4de8-9e0a-0ff9296b9620,AUTHORIZATION,,true 41263,1de20ce2-6cdd-4de8-9e0a-0ff9296b9620,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41264,1de20ce2-6cdd-4de8-9e0a-0ff9296b9620,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41265,1de20ce2-6cdd-4de8-9e0a-0ff9296b9620,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41266,4fc28ecd-ec11-46f9-9db6-0eb08680f138,LIST_ACCOUNTS,hbciListAccounts,false -41267,4fc28ecd-ec11-46f9-9db6-0eb08680f138,LIST_TRANSACTIONS,hbciListTransactions,false -41268,4fc28ecd-ec11-46f9-9db6-0eb08680f138,AUTHORIZATION,,false -41269,4fc28ecd-ec11-46f9-9db6-0eb08680f138,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41270,4fc28ecd-ec11-46f9-9db6-0eb08680f138,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41271,4fc28ecd-ec11-46f9-9db6-0eb08680f138,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41266,9a0cf17d-09af-4833-9d18-355a220822d5,LIST_ACCOUNTS,hbciListAccounts,false +41267,9a0cf17d-09af-4833-9d18-355a220822d5,LIST_TRANSACTIONS,hbciListTransactions,false +41268,9a0cf17d-09af-4833-9d18-355a220822d5,AUTHORIZATION,,false +41269,9a0cf17d-09af-4833-9d18-355a220822d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41270,9a0cf17d-09af-4833-9d18-355a220822d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41271,9a0cf17d-09af-4833-9d18-355a220822d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41272,0e15b653-77c6-426a-9790-6e874b2f632f,LIST_ACCOUNTS,xs2aListAccounts,true -41273,0e15b653-77c6-426a-9790-6e874b2f632f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41273,0e15b653-77c6-426a-9790-6e874b2f632f,LIST_TRANSACTIONS,xs2aListTransactions,true 41274,0e15b653-77c6-426a-9790-6e874b2f632f,AUTHORIZATION,,true 41275,0e15b653-77c6-426a-9790-6e874b2f632f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41276,0e15b653-77c6-426a-9790-6e874b2f632f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41277,0e15b653-77c6-426a-9790-6e874b2f632f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41278,96a67d6d-e51d-4cc0-a0c2-4512f461b1be,LIST_ACCOUNTS,hbciListAccounts,false -41279,96a67d6d-e51d-4cc0-a0c2-4512f461b1be,LIST_TRANSACTIONS,hbciListTransactions,false -41280,96a67d6d-e51d-4cc0-a0c2-4512f461b1be,AUTHORIZATION,,false -41281,96a67d6d-e51d-4cc0-a0c2-4512f461b1be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41282,96a67d6d-e51d-4cc0-a0c2-4512f461b1be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41283,96a67d6d-e51d-4cc0-a0c2-4512f461b1be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41278,7b761df6-20ed-4c3a-8554-119f1065178a,LIST_ACCOUNTS,hbciListAccounts,false +41279,7b761df6-20ed-4c3a-8554-119f1065178a,LIST_TRANSACTIONS,hbciListTransactions,false +41280,7b761df6-20ed-4c3a-8554-119f1065178a,AUTHORIZATION,,false +41281,7b761df6-20ed-4c3a-8554-119f1065178a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41282,7b761df6-20ed-4c3a-8554-119f1065178a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41283,7b761df6-20ed-4c3a-8554-119f1065178a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41284,253e2538-6fea-4132-9fac-270d5c4a09e6,LIST_ACCOUNTS,xs2aListAccounts,true -41285,253e2538-6fea-4132-9fac-270d5c4a09e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41285,253e2538-6fea-4132-9fac-270d5c4a09e6,LIST_TRANSACTIONS,xs2aListTransactions,true 41286,253e2538-6fea-4132-9fac-270d5c4a09e6,AUTHORIZATION,,true 41287,253e2538-6fea-4132-9fac-270d5c4a09e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41288,253e2538-6fea-4132-9fac-270d5c4a09e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41289,253e2538-6fea-4132-9fac-270d5c4a09e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41290,0bb64609-cec5-44c5-aafd-c28bce2568fd,LIST_ACCOUNTS,hbciListAccounts,false -41291,0bb64609-cec5-44c5-aafd-c28bce2568fd,LIST_TRANSACTIONS,hbciListTransactions,false -41292,0bb64609-cec5-44c5-aafd-c28bce2568fd,AUTHORIZATION,,false -41293,0bb64609-cec5-44c5-aafd-c28bce2568fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41294,0bb64609-cec5-44c5-aafd-c28bce2568fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41295,0bb64609-cec5-44c5-aafd-c28bce2568fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41290,11433fc3-5402-406e-8307-db5b35973f6f,LIST_ACCOUNTS,hbciListAccounts,false +41291,11433fc3-5402-406e-8307-db5b35973f6f,LIST_TRANSACTIONS,hbciListTransactions,false +41292,11433fc3-5402-406e-8307-db5b35973f6f,AUTHORIZATION,,false +41293,11433fc3-5402-406e-8307-db5b35973f6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41294,11433fc3-5402-406e-8307-db5b35973f6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41295,11433fc3-5402-406e-8307-db5b35973f6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41296,8dd6475f-8784-4719-b2c1-4ecef15eef15,LIST_ACCOUNTS,xs2aListAccounts,true -41297,8dd6475f-8784-4719-b2c1-4ecef15eef15,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41297,8dd6475f-8784-4719-b2c1-4ecef15eef15,LIST_TRANSACTIONS,xs2aListTransactions,true 41298,8dd6475f-8784-4719-b2c1-4ecef15eef15,AUTHORIZATION,,true 41299,8dd6475f-8784-4719-b2c1-4ecef15eef15,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41300,8dd6475f-8784-4719-b2c1-4ecef15eef15,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41301,8dd6475f-8784-4719-b2c1-4ecef15eef15,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41302,431c2d62-bde2-4732-98a2-28272beeb2b3,LIST_ACCOUNTS,hbciListAccounts,false -41303,431c2d62-bde2-4732-98a2-28272beeb2b3,LIST_TRANSACTIONS,hbciListTransactions,false -41304,431c2d62-bde2-4732-98a2-28272beeb2b3,AUTHORIZATION,,false -41305,431c2d62-bde2-4732-98a2-28272beeb2b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41306,431c2d62-bde2-4732-98a2-28272beeb2b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41307,431c2d62-bde2-4732-98a2-28272beeb2b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41302,84dcaa35-37f5-4782-99d6-b7bb67c85197,LIST_ACCOUNTS,hbciListAccounts,false +41303,84dcaa35-37f5-4782-99d6-b7bb67c85197,LIST_TRANSACTIONS,hbciListTransactions,false +41304,84dcaa35-37f5-4782-99d6-b7bb67c85197,AUTHORIZATION,,false +41305,84dcaa35-37f5-4782-99d6-b7bb67c85197,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41306,84dcaa35-37f5-4782-99d6-b7bb67c85197,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41307,84dcaa35-37f5-4782-99d6-b7bb67c85197,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41308,7396fdea-fae1-4fc0-957e-92c1fe1a2284,LIST_ACCOUNTS,xs2aListAccounts,true -41309,7396fdea-fae1-4fc0-957e-92c1fe1a2284,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41309,7396fdea-fae1-4fc0-957e-92c1fe1a2284,LIST_TRANSACTIONS,xs2aListTransactions,true 41310,7396fdea-fae1-4fc0-957e-92c1fe1a2284,AUTHORIZATION,,true 41311,7396fdea-fae1-4fc0-957e-92c1fe1a2284,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41312,7396fdea-fae1-4fc0-957e-92c1fe1a2284,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41313,7396fdea-fae1-4fc0-957e-92c1fe1a2284,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41314,3de6e35d-aec1-4dc8-99e1-89e55e616547,LIST_ACCOUNTS,hbciListAccounts,false -41315,3de6e35d-aec1-4dc8-99e1-89e55e616547,LIST_TRANSACTIONS,hbciListTransactions,false -41316,3de6e35d-aec1-4dc8-99e1-89e55e616547,AUTHORIZATION,,false -41317,3de6e35d-aec1-4dc8-99e1-89e55e616547,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41318,3de6e35d-aec1-4dc8-99e1-89e55e616547,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41319,3de6e35d-aec1-4dc8-99e1-89e55e616547,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41314,b1d3559a-7007-483f-af11-e454d6a4d7a6,LIST_ACCOUNTS,hbciListAccounts,false +41315,b1d3559a-7007-483f-af11-e454d6a4d7a6,LIST_TRANSACTIONS,hbciListTransactions,false +41316,b1d3559a-7007-483f-af11-e454d6a4d7a6,AUTHORIZATION,,false +41317,b1d3559a-7007-483f-af11-e454d6a4d7a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41318,b1d3559a-7007-483f-af11-e454d6a4d7a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41319,b1d3559a-7007-483f-af11-e454d6a4d7a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41320,75444cb8-94dc-4e9b-bad9-234a7fedaeff,LIST_ACCOUNTS,xs2aListAccounts,true -41321,75444cb8-94dc-4e9b-bad9-234a7fedaeff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41321,75444cb8-94dc-4e9b-bad9-234a7fedaeff,LIST_TRANSACTIONS,xs2aListTransactions,true 41322,75444cb8-94dc-4e9b-bad9-234a7fedaeff,AUTHORIZATION,,true 41323,75444cb8-94dc-4e9b-bad9-234a7fedaeff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41324,75444cb8-94dc-4e9b-bad9-234a7fedaeff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41325,75444cb8-94dc-4e9b-bad9-234a7fedaeff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41326,0c16f39f-ca49-4764-9d08-cc6dee935e9c,LIST_ACCOUNTS,hbciListAccounts,false -41327,0c16f39f-ca49-4764-9d08-cc6dee935e9c,LIST_TRANSACTIONS,hbciListTransactions,false -41328,0c16f39f-ca49-4764-9d08-cc6dee935e9c,AUTHORIZATION,,false -41329,0c16f39f-ca49-4764-9d08-cc6dee935e9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41330,0c16f39f-ca49-4764-9d08-cc6dee935e9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41331,0c16f39f-ca49-4764-9d08-cc6dee935e9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41326,a186fb32-c1de-4013-903f-6f8dda866f1d,LIST_ACCOUNTS,hbciListAccounts,false +41327,a186fb32-c1de-4013-903f-6f8dda866f1d,LIST_TRANSACTIONS,hbciListTransactions,false +41328,a186fb32-c1de-4013-903f-6f8dda866f1d,AUTHORIZATION,,false +41329,a186fb32-c1de-4013-903f-6f8dda866f1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41330,a186fb32-c1de-4013-903f-6f8dda866f1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41331,a186fb32-c1de-4013-903f-6f8dda866f1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41332,21d393fc-bb92-4873-b04b-c421c37ba145,LIST_ACCOUNTS,xs2aListAccounts,true -41333,21d393fc-bb92-4873-b04b-c421c37ba145,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41333,21d393fc-bb92-4873-b04b-c421c37ba145,LIST_TRANSACTIONS,xs2aListTransactions,true 41334,21d393fc-bb92-4873-b04b-c421c37ba145,AUTHORIZATION,,true 41335,21d393fc-bb92-4873-b04b-c421c37ba145,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41336,21d393fc-bb92-4873-b04b-c421c37ba145,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41337,21d393fc-bb92-4873-b04b-c421c37ba145,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41338,10f97dc6-40ef-4c43-93d4-0aa039c14e57,LIST_ACCOUNTS,hbciListAccounts,false -41339,10f97dc6-40ef-4c43-93d4-0aa039c14e57,LIST_TRANSACTIONS,hbciListTransactions,false -41340,10f97dc6-40ef-4c43-93d4-0aa039c14e57,AUTHORIZATION,,false -41341,10f97dc6-40ef-4c43-93d4-0aa039c14e57,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41342,10f97dc6-40ef-4c43-93d4-0aa039c14e57,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41343,10f97dc6-40ef-4c43-93d4-0aa039c14e57,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41338,2ab28c6a-8909-4533-96d1-a097208af969,LIST_ACCOUNTS,hbciListAccounts,false +41339,2ab28c6a-8909-4533-96d1-a097208af969,LIST_TRANSACTIONS,hbciListTransactions,false +41340,2ab28c6a-8909-4533-96d1-a097208af969,AUTHORIZATION,,false +41341,2ab28c6a-8909-4533-96d1-a097208af969,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41342,2ab28c6a-8909-4533-96d1-a097208af969,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41343,2ab28c6a-8909-4533-96d1-a097208af969,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41344,ca3b0f32-aeb9-4886-900f-139fcf0a6a98,LIST_ACCOUNTS,xs2aListAccounts,true -41345,ca3b0f32-aeb9-4886-900f-139fcf0a6a98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41345,ca3b0f32-aeb9-4886-900f-139fcf0a6a98,LIST_TRANSACTIONS,xs2aListTransactions,true 41346,ca3b0f32-aeb9-4886-900f-139fcf0a6a98,AUTHORIZATION,,true 41347,ca3b0f32-aeb9-4886-900f-139fcf0a6a98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41348,ca3b0f32-aeb9-4886-900f-139fcf0a6a98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41349,ca3b0f32-aeb9-4886-900f-139fcf0a6a98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41350,1dd4a964-c292-47b2-af48-94578435c25b,LIST_ACCOUNTS,hbciListAccounts,false -41351,1dd4a964-c292-47b2-af48-94578435c25b,LIST_TRANSACTIONS,hbciListTransactions,false -41352,1dd4a964-c292-47b2-af48-94578435c25b,AUTHORIZATION,,false -41353,1dd4a964-c292-47b2-af48-94578435c25b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41354,1dd4a964-c292-47b2-af48-94578435c25b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41355,1dd4a964-c292-47b2-af48-94578435c25b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41350,c8d47496-2bba-41c8-882d-f1a7282633db,LIST_ACCOUNTS,hbciListAccounts,false +41351,c8d47496-2bba-41c8-882d-f1a7282633db,LIST_TRANSACTIONS,hbciListTransactions,false +41352,c8d47496-2bba-41c8-882d-f1a7282633db,AUTHORIZATION,,false +41353,c8d47496-2bba-41c8-882d-f1a7282633db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41354,c8d47496-2bba-41c8-882d-f1a7282633db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41355,c8d47496-2bba-41c8-882d-f1a7282633db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41356,977612b1-25c3-4664-b23c-0e9a4daf9c2e,LIST_ACCOUNTS,xs2aListAccounts,true -41357,977612b1-25c3-4664-b23c-0e9a4daf9c2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41357,977612b1-25c3-4664-b23c-0e9a4daf9c2e,LIST_TRANSACTIONS,xs2aListTransactions,true 41358,977612b1-25c3-4664-b23c-0e9a4daf9c2e,AUTHORIZATION,,true 41359,977612b1-25c3-4664-b23c-0e9a4daf9c2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41360,977612b1-25c3-4664-b23c-0e9a4daf9c2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41361,977612b1-25c3-4664-b23c-0e9a4daf9c2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41362,988b2996-466d-4e60-a9dd-4fe1db1b9671,LIST_ACCOUNTS,hbciListAccounts,false -41363,988b2996-466d-4e60-a9dd-4fe1db1b9671,LIST_TRANSACTIONS,hbciListTransactions,false -41364,988b2996-466d-4e60-a9dd-4fe1db1b9671,AUTHORIZATION,,false -41365,988b2996-466d-4e60-a9dd-4fe1db1b9671,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41366,988b2996-466d-4e60-a9dd-4fe1db1b9671,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41367,988b2996-466d-4e60-a9dd-4fe1db1b9671,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41362,8630c6e9-3cd4-4902-9a47-bfbbf2740d46,LIST_ACCOUNTS,hbciListAccounts,false +41363,8630c6e9-3cd4-4902-9a47-bfbbf2740d46,LIST_TRANSACTIONS,hbciListTransactions,false +41364,8630c6e9-3cd4-4902-9a47-bfbbf2740d46,AUTHORIZATION,,false +41365,8630c6e9-3cd4-4902-9a47-bfbbf2740d46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41366,8630c6e9-3cd4-4902-9a47-bfbbf2740d46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41367,8630c6e9-3cd4-4902-9a47-bfbbf2740d46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41368,5b607730-d0ea-4c36-b873-01f2724453c3,LIST_ACCOUNTS,xs2aListAccounts,true -41369,5b607730-d0ea-4c36-b873-01f2724453c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41369,5b607730-d0ea-4c36-b873-01f2724453c3,LIST_TRANSACTIONS,xs2aListTransactions,true 41370,5b607730-d0ea-4c36-b873-01f2724453c3,AUTHORIZATION,,true 41371,5b607730-d0ea-4c36-b873-01f2724453c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41372,5b607730-d0ea-4c36-b873-01f2724453c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41373,5b607730-d0ea-4c36-b873-01f2724453c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41374,b97bb33c-dd95-47b5-bbc1-03640989bf77,LIST_ACCOUNTS,hbciListAccounts,false -41375,b97bb33c-dd95-47b5-bbc1-03640989bf77,LIST_TRANSACTIONS,hbciListTransactions,false -41376,b97bb33c-dd95-47b5-bbc1-03640989bf77,AUTHORIZATION,,false -41377,b97bb33c-dd95-47b5-bbc1-03640989bf77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41378,b97bb33c-dd95-47b5-bbc1-03640989bf77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41379,b97bb33c-dd95-47b5-bbc1-03640989bf77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41374,f519dfea-d8e8-4abf-851a-d9b6f22af37b,LIST_ACCOUNTS,hbciListAccounts,false +41375,f519dfea-d8e8-4abf-851a-d9b6f22af37b,LIST_TRANSACTIONS,hbciListTransactions,false +41376,f519dfea-d8e8-4abf-851a-d9b6f22af37b,AUTHORIZATION,,false +41377,f519dfea-d8e8-4abf-851a-d9b6f22af37b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41378,f519dfea-d8e8-4abf-851a-d9b6f22af37b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41379,f519dfea-d8e8-4abf-851a-d9b6f22af37b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41380,662f9b2a-3489-4fda-b01d-e7c58d968781,LIST_ACCOUNTS,xs2aListAccounts,true -41381,662f9b2a-3489-4fda-b01d-e7c58d968781,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41381,662f9b2a-3489-4fda-b01d-e7c58d968781,LIST_TRANSACTIONS,xs2aListTransactions,true 41382,662f9b2a-3489-4fda-b01d-e7c58d968781,AUTHORIZATION,,true 41383,662f9b2a-3489-4fda-b01d-e7c58d968781,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41384,662f9b2a-3489-4fda-b01d-e7c58d968781,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41385,662f9b2a-3489-4fda-b01d-e7c58d968781,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41386,bc1cef46-390d-4c2c-8a97-bf21ffde3a05,LIST_ACCOUNTS,hbciListAccounts,false -41387,bc1cef46-390d-4c2c-8a97-bf21ffde3a05,LIST_TRANSACTIONS,hbciListTransactions,false -41388,bc1cef46-390d-4c2c-8a97-bf21ffde3a05,AUTHORIZATION,,false -41389,bc1cef46-390d-4c2c-8a97-bf21ffde3a05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41390,bc1cef46-390d-4c2c-8a97-bf21ffde3a05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41391,bc1cef46-390d-4c2c-8a97-bf21ffde3a05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41386,ef1ad44c-9f1c-4533-bbff-57f9e89d4967,LIST_ACCOUNTS,hbciListAccounts,false +41387,ef1ad44c-9f1c-4533-bbff-57f9e89d4967,LIST_TRANSACTIONS,hbciListTransactions,false +41388,ef1ad44c-9f1c-4533-bbff-57f9e89d4967,AUTHORIZATION,,false +41389,ef1ad44c-9f1c-4533-bbff-57f9e89d4967,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41390,ef1ad44c-9f1c-4533-bbff-57f9e89d4967,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41391,ef1ad44c-9f1c-4533-bbff-57f9e89d4967,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41392,98c8c913-a757-409f-a7d6-ab074463cf26,LIST_ACCOUNTS,xs2aListAccounts,true -41393,98c8c913-a757-409f-a7d6-ab074463cf26,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41393,98c8c913-a757-409f-a7d6-ab074463cf26,LIST_TRANSACTIONS,xs2aListTransactions,true 41394,98c8c913-a757-409f-a7d6-ab074463cf26,AUTHORIZATION,,true 41395,98c8c913-a757-409f-a7d6-ab074463cf26,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41396,98c8c913-a757-409f-a7d6-ab074463cf26,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41397,98c8c913-a757-409f-a7d6-ab074463cf26,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41398,b980c4fd-1cbc-4bf0-99b6-9e3c41807f03,LIST_ACCOUNTS,hbciListAccounts,false -41399,b980c4fd-1cbc-4bf0-99b6-9e3c41807f03,LIST_TRANSACTIONS,hbciListTransactions,false -41400,b980c4fd-1cbc-4bf0-99b6-9e3c41807f03,AUTHORIZATION,,false -41401,b980c4fd-1cbc-4bf0-99b6-9e3c41807f03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41402,b980c4fd-1cbc-4bf0-99b6-9e3c41807f03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41403,b980c4fd-1cbc-4bf0-99b6-9e3c41807f03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41398,613b72ee-b7ba-4d0a-a3da-88416f1233aa,LIST_ACCOUNTS,hbciListAccounts,false +41399,613b72ee-b7ba-4d0a-a3da-88416f1233aa,LIST_TRANSACTIONS,hbciListTransactions,false +41400,613b72ee-b7ba-4d0a-a3da-88416f1233aa,AUTHORIZATION,,false +41401,613b72ee-b7ba-4d0a-a3da-88416f1233aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41402,613b72ee-b7ba-4d0a-a3da-88416f1233aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41403,613b72ee-b7ba-4d0a-a3da-88416f1233aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41404,04e4350b-e73d-459e-b340-e62c81eb9660,LIST_ACCOUNTS,xs2aListAccounts,true -41405,04e4350b-e73d-459e-b340-e62c81eb9660,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41405,04e4350b-e73d-459e-b340-e62c81eb9660,LIST_TRANSACTIONS,xs2aListTransactions,true 41406,04e4350b-e73d-459e-b340-e62c81eb9660,AUTHORIZATION,,true 41407,04e4350b-e73d-459e-b340-e62c81eb9660,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41408,04e4350b-e73d-459e-b340-e62c81eb9660,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41409,04e4350b-e73d-459e-b340-e62c81eb9660,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41410,c4ce31f1-afa6-47ea-83d8-968444228fc2,LIST_ACCOUNTS,hbciListAccounts,false -41411,c4ce31f1-afa6-47ea-83d8-968444228fc2,LIST_TRANSACTIONS,hbciListTransactions,false -41412,c4ce31f1-afa6-47ea-83d8-968444228fc2,AUTHORIZATION,,false -41413,c4ce31f1-afa6-47ea-83d8-968444228fc2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41414,c4ce31f1-afa6-47ea-83d8-968444228fc2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41415,c4ce31f1-afa6-47ea-83d8-968444228fc2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41410,ebe44f6e-167b-4421-8bf7-91a922c34511,LIST_ACCOUNTS,hbciListAccounts,false +41411,ebe44f6e-167b-4421-8bf7-91a922c34511,LIST_TRANSACTIONS,hbciListTransactions,false +41412,ebe44f6e-167b-4421-8bf7-91a922c34511,AUTHORIZATION,,false +41413,ebe44f6e-167b-4421-8bf7-91a922c34511,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41414,ebe44f6e-167b-4421-8bf7-91a922c34511,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41415,ebe44f6e-167b-4421-8bf7-91a922c34511,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41416,890860a5-0217-4638-9c4b-9b2bdc477774,LIST_ACCOUNTS,xs2aListAccounts,true -41417,890860a5-0217-4638-9c4b-9b2bdc477774,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41417,890860a5-0217-4638-9c4b-9b2bdc477774,LIST_TRANSACTIONS,xs2aListTransactions,true 41418,890860a5-0217-4638-9c4b-9b2bdc477774,AUTHORIZATION,,true 41419,890860a5-0217-4638-9c4b-9b2bdc477774,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41420,890860a5-0217-4638-9c4b-9b2bdc477774,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41421,890860a5-0217-4638-9c4b-9b2bdc477774,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41422,19aee7ad-d4f9-4148-94b1-edc2972da2a6,LIST_ACCOUNTS,hbciListAccounts,false -41423,19aee7ad-d4f9-4148-94b1-edc2972da2a6,LIST_TRANSACTIONS,hbciListTransactions,false -41424,19aee7ad-d4f9-4148-94b1-edc2972da2a6,AUTHORIZATION,,false -41425,19aee7ad-d4f9-4148-94b1-edc2972da2a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41426,19aee7ad-d4f9-4148-94b1-edc2972da2a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41427,19aee7ad-d4f9-4148-94b1-edc2972da2a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41422,b1d6b67b-c7bd-4a68-871d-1d481fbf3955,LIST_ACCOUNTS,hbciListAccounts,false +41423,b1d6b67b-c7bd-4a68-871d-1d481fbf3955,LIST_TRANSACTIONS,hbciListTransactions,false +41424,b1d6b67b-c7bd-4a68-871d-1d481fbf3955,AUTHORIZATION,,false +41425,b1d6b67b-c7bd-4a68-871d-1d481fbf3955,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41426,b1d6b67b-c7bd-4a68-871d-1d481fbf3955,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41427,b1d6b67b-c7bd-4a68-871d-1d481fbf3955,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41428,525cceab-7710-4772-b8f7-0ce3ae5a2a9b,LIST_ACCOUNTS,xs2aListAccounts,true -41429,525cceab-7710-4772-b8f7-0ce3ae5a2a9b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41429,525cceab-7710-4772-b8f7-0ce3ae5a2a9b,LIST_TRANSACTIONS,xs2aListTransactions,true 41430,525cceab-7710-4772-b8f7-0ce3ae5a2a9b,AUTHORIZATION,,true 41431,525cceab-7710-4772-b8f7-0ce3ae5a2a9b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41432,525cceab-7710-4772-b8f7-0ce3ae5a2a9b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41433,525cceab-7710-4772-b8f7-0ce3ae5a2a9b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41434,3fe3be7c-268b-4643-8c28-4c811f7ecaa8,LIST_ACCOUNTS,hbciListAccounts,false -41435,3fe3be7c-268b-4643-8c28-4c811f7ecaa8,LIST_TRANSACTIONS,hbciListTransactions,false -41436,3fe3be7c-268b-4643-8c28-4c811f7ecaa8,AUTHORIZATION,,false -41437,3fe3be7c-268b-4643-8c28-4c811f7ecaa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41438,3fe3be7c-268b-4643-8c28-4c811f7ecaa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41439,3fe3be7c-268b-4643-8c28-4c811f7ecaa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41434,227f2098-fd29-4865-beb8-064797325d6c,LIST_ACCOUNTS,hbciListAccounts,false +41435,227f2098-fd29-4865-beb8-064797325d6c,LIST_TRANSACTIONS,hbciListTransactions,false +41436,227f2098-fd29-4865-beb8-064797325d6c,AUTHORIZATION,,false +41437,227f2098-fd29-4865-beb8-064797325d6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41438,227f2098-fd29-4865-beb8-064797325d6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41439,227f2098-fd29-4865-beb8-064797325d6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41440,7a73b278-5fa0-40d9-ab18-f02b8343d5e1,LIST_ACCOUNTS,xs2aListAccounts,true -41441,7a73b278-5fa0-40d9-ab18-f02b8343d5e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41441,7a73b278-5fa0-40d9-ab18-f02b8343d5e1,LIST_TRANSACTIONS,xs2aListTransactions,true 41442,7a73b278-5fa0-40d9-ab18-f02b8343d5e1,AUTHORIZATION,,true 41443,7a73b278-5fa0-40d9-ab18-f02b8343d5e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41444,7a73b278-5fa0-40d9-ab18-f02b8343d5e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41445,7a73b278-5fa0-40d9-ab18-f02b8343d5e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41446,ef6ce91a-25e6-4c7b-8f30-f0d597f4bf7d,LIST_ACCOUNTS,hbciListAccounts,false -41447,ef6ce91a-25e6-4c7b-8f30-f0d597f4bf7d,LIST_TRANSACTIONS,hbciListTransactions,false -41448,ef6ce91a-25e6-4c7b-8f30-f0d597f4bf7d,AUTHORIZATION,,false -41449,ef6ce91a-25e6-4c7b-8f30-f0d597f4bf7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41450,ef6ce91a-25e6-4c7b-8f30-f0d597f4bf7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41451,ef6ce91a-25e6-4c7b-8f30-f0d597f4bf7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41446,f64814bf-d60a-4751-9e51-ebbd93fcd2fb,LIST_ACCOUNTS,hbciListAccounts,false +41447,f64814bf-d60a-4751-9e51-ebbd93fcd2fb,LIST_TRANSACTIONS,hbciListTransactions,false +41448,f64814bf-d60a-4751-9e51-ebbd93fcd2fb,AUTHORIZATION,,false +41449,f64814bf-d60a-4751-9e51-ebbd93fcd2fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41450,f64814bf-d60a-4751-9e51-ebbd93fcd2fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41451,f64814bf-d60a-4751-9e51-ebbd93fcd2fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41452,90dc3f24-b319-468d-8f82-04ef42b9f2a8,LIST_ACCOUNTS,xs2aListAccounts,true -41453,90dc3f24-b319-468d-8f82-04ef42b9f2a8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41453,90dc3f24-b319-468d-8f82-04ef42b9f2a8,LIST_TRANSACTIONS,xs2aListTransactions,true 41454,90dc3f24-b319-468d-8f82-04ef42b9f2a8,AUTHORIZATION,,true 41455,90dc3f24-b319-468d-8f82-04ef42b9f2a8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41456,90dc3f24-b319-468d-8f82-04ef42b9f2a8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41457,90dc3f24-b319-468d-8f82-04ef42b9f2a8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41458,66712aeb-0aa2-468a-b21d-61298838a2d6,LIST_ACCOUNTS,hbciListAccounts,false -41459,66712aeb-0aa2-468a-b21d-61298838a2d6,LIST_TRANSACTIONS,hbciListTransactions,false -41460,66712aeb-0aa2-468a-b21d-61298838a2d6,AUTHORIZATION,,false -41461,66712aeb-0aa2-468a-b21d-61298838a2d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41462,66712aeb-0aa2-468a-b21d-61298838a2d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41463,66712aeb-0aa2-468a-b21d-61298838a2d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41458,5ad4f471-c330-4ab5-9b32-d4dda57d35ed,LIST_ACCOUNTS,hbciListAccounts,false +41459,5ad4f471-c330-4ab5-9b32-d4dda57d35ed,LIST_TRANSACTIONS,hbciListTransactions,false +41460,5ad4f471-c330-4ab5-9b32-d4dda57d35ed,AUTHORIZATION,,false +41461,5ad4f471-c330-4ab5-9b32-d4dda57d35ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41462,5ad4f471-c330-4ab5-9b32-d4dda57d35ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41463,5ad4f471-c330-4ab5-9b32-d4dda57d35ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41464,7570c03d-9fa4-432b-ab6d-9fca99a7745e,LIST_ACCOUNTS,xs2aListAccounts,true -41465,7570c03d-9fa4-432b-ab6d-9fca99a7745e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41465,7570c03d-9fa4-432b-ab6d-9fca99a7745e,LIST_TRANSACTIONS,xs2aListTransactions,true 41466,7570c03d-9fa4-432b-ab6d-9fca99a7745e,AUTHORIZATION,,true 41467,7570c03d-9fa4-432b-ab6d-9fca99a7745e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41468,7570c03d-9fa4-432b-ab6d-9fca99a7745e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41469,7570c03d-9fa4-432b-ab6d-9fca99a7745e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41470,e219d197-e225-4625-a8af-2b15e5e20483,LIST_ACCOUNTS,hbciListAccounts,false -41471,e219d197-e225-4625-a8af-2b15e5e20483,LIST_TRANSACTIONS,hbciListTransactions,false -41472,e219d197-e225-4625-a8af-2b15e5e20483,AUTHORIZATION,,false -41473,e219d197-e225-4625-a8af-2b15e5e20483,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41474,e219d197-e225-4625-a8af-2b15e5e20483,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41475,e219d197-e225-4625-a8af-2b15e5e20483,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41470,d663605e-37c3-4f12-901b-5200741decd1,LIST_ACCOUNTS,hbciListAccounts,false +41471,d663605e-37c3-4f12-901b-5200741decd1,LIST_TRANSACTIONS,hbciListTransactions,false +41472,d663605e-37c3-4f12-901b-5200741decd1,AUTHORIZATION,,false +41473,d663605e-37c3-4f12-901b-5200741decd1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41474,d663605e-37c3-4f12-901b-5200741decd1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41475,d663605e-37c3-4f12-901b-5200741decd1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41476,44373b79-32f2-49d4-b8c5-09e849194e80,LIST_ACCOUNTS,xs2aListAccounts,true -41477,44373b79-32f2-49d4-b8c5-09e849194e80,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41477,44373b79-32f2-49d4-b8c5-09e849194e80,LIST_TRANSACTIONS,xs2aListTransactions,true 41478,44373b79-32f2-49d4-b8c5-09e849194e80,AUTHORIZATION,,true 41479,44373b79-32f2-49d4-b8c5-09e849194e80,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41480,44373b79-32f2-49d4-b8c5-09e849194e80,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41481,44373b79-32f2-49d4-b8c5-09e849194e80,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41482,b1b80395-1dc8-4c64-8c79-835bd33d4299,LIST_ACCOUNTS,hbciListAccounts,false -41483,b1b80395-1dc8-4c64-8c79-835bd33d4299,LIST_TRANSACTIONS,hbciListTransactions,false -41484,b1b80395-1dc8-4c64-8c79-835bd33d4299,AUTHORIZATION,,false -41485,b1b80395-1dc8-4c64-8c79-835bd33d4299,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41486,b1b80395-1dc8-4c64-8c79-835bd33d4299,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41487,b1b80395-1dc8-4c64-8c79-835bd33d4299,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41482,6ee24628-7bc7-4db4-8229-ad7814b11de2,LIST_ACCOUNTS,hbciListAccounts,false +41483,6ee24628-7bc7-4db4-8229-ad7814b11de2,LIST_TRANSACTIONS,hbciListTransactions,false +41484,6ee24628-7bc7-4db4-8229-ad7814b11de2,AUTHORIZATION,,false +41485,6ee24628-7bc7-4db4-8229-ad7814b11de2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41486,6ee24628-7bc7-4db4-8229-ad7814b11de2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41487,6ee24628-7bc7-4db4-8229-ad7814b11de2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41488,7dc98f79-c4e1-4e57-a9d0-7fe320f39ef3,LIST_ACCOUNTS,xs2aListAccounts,true -41489,7dc98f79-c4e1-4e57-a9d0-7fe320f39ef3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41489,7dc98f79-c4e1-4e57-a9d0-7fe320f39ef3,LIST_TRANSACTIONS,xs2aListTransactions,true 41490,7dc98f79-c4e1-4e57-a9d0-7fe320f39ef3,AUTHORIZATION,,true 41491,7dc98f79-c4e1-4e57-a9d0-7fe320f39ef3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41492,7dc98f79-c4e1-4e57-a9d0-7fe320f39ef3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41493,7dc98f79-c4e1-4e57-a9d0-7fe320f39ef3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41494,ae44fe0b-679f-4e19-b5f3-8c540310230e,LIST_ACCOUNTS,hbciListAccounts,false -41495,ae44fe0b-679f-4e19-b5f3-8c540310230e,LIST_TRANSACTIONS,hbciListTransactions,false -41496,ae44fe0b-679f-4e19-b5f3-8c540310230e,AUTHORIZATION,,false -41497,ae44fe0b-679f-4e19-b5f3-8c540310230e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41498,ae44fe0b-679f-4e19-b5f3-8c540310230e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41499,ae44fe0b-679f-4e19-b5f3-8c540310230e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41494,4fab4101-ebd5-4522-aa02-eaf3bb95a74d,LIST_ACCOUNTS,hbciListAccounts,false +41495,4fab4101-ebd5-4522-aa02-eaf3bb95a74d,LIST_TRANSACTIONS,hbciListTransactions,false +41496,4fab4101-ebd5-4522-aa02-eaf3bb95a74d,AUTHORIZATION,,false +41497,4fab4101-ebd5-4522-aa02-eaf3bb95a74d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41498,4fab4101-ebd5-4522-aa02-eaf3bb95a74d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41499,4fab4101-ebd5-4522-aa02-eaf3bb95a74d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41500,5b5efa11-cec3-4c27-b1a5-87f892ce0b8e,LIST_ACCOUNTS,xs2aListAccounts,true -41501,5b5efa11-cec3-4c27-b1a5-87f892ce0b8e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41501,5b5efa11-cec3-4c27-b1a5-87f892ce0b8e,LIST_TRANSACTIONS,xs2aListTransactions,true 41502,5b5efa11-cec3-4c27-b1a5-87f892ce0b8e,AUTHORIZATION,,true 41503,5b5efa11-cec3-4c27-b1a5-87f892ce0b8e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41504,5b5efa11-cec3-4c27-b1a5-87f892ce0b8e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41505,5b5efa11-cec3-4c27-b1a5-87f892ce0b8e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41506,972a2395-89f2-42b6-8666-76dc9cd102ba,LIST_ACCOUNTS,hbciListAccounts,false -41507,972a2395-89f2-42b6-8666-76dc9cd102ba,LIST_TRANSACTIONS,hbciListTransactions,false -41508,972a2395-89f2-42b6-8666-76dc9cd102ba,AUTHORIZATION,,false -41509,972a2395-89f2-42b6-8666-76dc9cd102ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41510,972a2395-89f2-42b6-8666-76dc9cd102ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41511,972a2395-89f2-42b6-8666-76dc9cd102ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41506,83d2ea02-a340-4344-8c9f-044016b8e2d0,LIST_ACCOUNTS,hbciListAccounts,false +41507,83d2ea02-a340-4344-8c9f-044016b8e2d0,LIST_TRANSACTIONS,hbciListTransactions,false +41508,83d2ea02-a340-4344-8c9f-044016b8e2d0,AUTHORIZATION,,false +41509,83d2ea02-a340-4344-8c9f-044016b8e2d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41510,83d2ea02-a340-4344-8c9f-044016b8e2d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41511,83d2ea02-a340-4344-8c9f-044016b8e2d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41512,abb822ce-1ea4-4b65-9c51-5b5da4e20a54,LIST_ACCOUNTS,xs2aListAccounts,true -41513,abb822ce-1ea4-4b65-9c51-5b5da4e20a54,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41513,abb822ce-1ea4-4b65-9c51-5b5da4e20a54,LIST_TRANSACTIONS,xs2aListTransactions,true 41514,abb822ce-1ea4-4b65-9c51-5b5da4e20a54,AUTHORIZATION,,true 41515,abb822ce-1ea4-4b65-9c51-5b5da4e20a54,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41516,abb822ce-1ea4-4b65-9c51-5b5da4e20a54,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41517,abb822ce-1ea4-4b65-9c51-5b5da4e20a54,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41518,4f04bcf0-2a74-4b7e-9214-b8935997af1a,LIST_ACCOUNTS,hbciListAccounts,false -41519,4f04bcf0-2a74-4b7e-9214-b8935997af1a,LIST_TRANSACTIONS,hbciListTransactions,false -41520,4f04bcf0-2a74-4b7e-9214-b8935997af1a,AUTHORIZATION,,false -41521,4f04bcf0-2a74-4b7e-9214-b8935997af1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41522,4f04bcf0-2a74-4b7e-9214-b8935997af1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41523,4f04bcf0-2a74-4b7e-9214-b8935997af1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41518,b2cc158b-ffac-42e9-aa81-9ade66ef46de,LIST_ACCOUNTS,hbciListAccounts,false +41519,b2cc158b-ffac-42e9-aa81-9ade66ef46de,LIST_TRANSACTIONS,hbciListTransactions,false +41520,b2cc158b-ffac-42e9-aa81-9ade66ef46de,AUTHORIZATION,,false +41521,b2cc158b-ffac-42e9-aa81-9ade66ef46de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41522,b2cc158b-ffac-42e9-aa81-9ade66ef46de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41523,b2cc158b-ffac-42e9-aa81-9ade66ef46de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41524,2bd4efad-ac79-495d-8745-c5186117c4ba,LIST_ACCOUNTS,xs2aListAccounts,true -41525,2bd4efad-ac79-495d-8745-c5186117c4ba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41525,2bd4efad-ac79-495d-8745-c5186117c4ba,LIST_TRANSACTIONS,xs2aListTransactions,true 41526,2bd4efad-ac79-495d-8745-c5186117c4ba,AUTHORIZATION,,true 41527,2bd4efad-ac79-495d-8745-c5186117c4ba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41528,2bd4efad-ac79-495d-8745-c5186117c4ba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41529,2bd4efad-ac79-495d-8745-c5186117c4ba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41530,3581cae7-de6b-411e-92d2-2f7149d951af,LIST_ACCOUNTS,hbciListAccounts,false -41531,3581cae7-de6b-411e-92d2-2f7149d951af,LIST_TRANSACTIONS,hbciListTransactions,false -41532,3581cae7-de6b-411e-92d2-2f7149d951af,AUTHORIZATION,,false -41533,3581cae7-de6b-411e-92d2-2f7149d951af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41534,3581cae7-de6b-411e-92d2-2f7149d951af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41535,3581cae7-de6b-411e-92d2-2f7149d951af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41530,612da494-bfb5-4799-9ed9-beb9ccb4ee43,LIST_ACCOUNTS,hbciListAccounts,false +41531,612da494-bfb5-4799-9ed9-beb9ccb4ee43,LIST_TRANSACTIONS,hbciListTransactions,false +41532,612da494-bfb5-4799-9ed9-beb9ccb4ee43,AUTHORIZATION,,false +41533,612da494-bfb5-4799-9ed9-beb9ccb4ee43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41534,612da494-bfb5-4799-9ed9-beb9ccb4ee43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41535,612da494-bfb5-4799-9ed9-beb9ccb4ee43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41536,2fe0fdea-2d03-4906-a267-634af19247a1,LIST_ACCOUNTS,xs2aListAccounts,true -41537,2fe0fdea-2d03-4906-a267-634af19247a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41537,2fe0fdea-2d03-4906-a267-634af19247a1,LIST_TRANSACTIONS,xs2aListTransactions,true 41538,2fe0fdea-2d03-4906-a267-634af19247a1,AUTHORIZATION,,true 41539,2fe0fdea-2d03-4906-a267-634af19247a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41540,2fe0fdea-2d03-4906-a267-634af19247a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41541,2fe0fdea-2d03-4906-a267-634af19247a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41542,65e1f959-91b4-4695-bff1-2189de10cec1,LIST_ACCOUNTS,hbciListAccounts,false -41543,65e1f959-91b4-4695-bff1-2189de10cec1,LIST_TRANSACTIONS,hbciListTransactions,false -41544,65e1f959-91b4-4695-bff1-2189de10cec1,AUTHORIZATION,,false -41545,65e1f959-91b4-4695-bff1-2189de10cec1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41546,65e1f959-91b4-4695-bff1-2189de10cec1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41547,65e1f959-91b4-4695-bff1-2189de10cec1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41542,7249b26e-6a43-4043-83ec-b5ddfdcd985a,LIST_ACCOUNTS,hbciListAccounts,false +41543,7249b26e-6a43-4043-83ec-b5ddfdcd985a,LIST_TRANSACTIONS,hbciListTransactions,false +41544,7249b26e-6a43-4043-83ec-b5ddfdcd985a,AUTHORIZATION,,false +41545,7249b26e-6a43-4043-83ec-b5ddfdcd985a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41546,7249b26e-6a43-4043-83ec-b5ddfdcd985a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41547,7249b26e-6a43-4043-83ec-b5ddfdcd985a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41548,45db46b0-f160-4c7c-ae7a-de74410d8108,LIST_ACCOUNTS,xs2aListAccounts,true -41549,45db46b0-f160-4c7c-ae7a-de74410d8108,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41549,45db46b0-f160-4c7c-ae7a-de74410d8108,LIST_TRANSACTIONS,xs2aListTransactions,true 41550,45db46b0-f160-4c7c-ae7a-de74410d8108,AUTHORIZATION,,true 41551,45db46b0-f160-4c7c-ae7a-de74410d8108,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41552,45db46b0-f160-4c7c-ae7a-de74410d8108,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41553,45db46b0-f160-4c7c-ae7a-de74410d8108,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41554,722b327a-64fa-4054-a49f-4e0754857f83,LIST_ACCOUNTS,hbciListAccounts,false -41555,722b327a-64fa-4054-a49f-4e0754857f83,LIST_TRANSACTIONS,hbciListTransactions,false -41556,722b327a-64fa-4054-a49f-4e0754857f83,AUTHORIZATION,,false -41557,722b327a-64fa-4054-a49f-4e0754857f83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41558,722b327a-64fa-4054-a49f-4e0754857f83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41559,722b327a-64fa-4054-a49f-4e0754857f83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41554,1108586e-b1fb-454d-9cfc-cda5f259b589,LIST_ACCOUNTS,hbciListAccounts,false +41555,1108586e-b1fb-454d-9cfc-cda5f259b589,LIST_TRANSACTIONS,hbciListTransactions,false +41556,1108586e-b1fb-454d-9cfc-cda5f259b589,AUTHORIZATION,,false +41557,1108586e-b1fb-454d-9cfc-cda5f259b589,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41558,1108586e-b1fb-454d-9cfc-cda5f259b589,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41559,1108586e-b1fb-454d-9cfc-cda5f259b589,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41560,2c92a471-270d-4af4-bada-d32e72d655a2,LIST_ACCOUNTS,xs2aListAccounts,true -41561,2c92a471-270d-4af4-bada-d32e72d655a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41561,2c92a471-270d-4af4-bada-d32e72d655a2,LIST_TRANSACTIONS,xs2aListTransactions,true 41562,2c92a471-270d-4af4-bada-d32e72d655a2,AUTHORIZATION,,true 41563,2c92a471-270d-4af4-bada-d32e72d655a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41564,2c92a471-270d-4af4-bada-d32e72d655a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41565,2c92a471-270d-4af4-bada-d32e72d655a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41566,92ea1270-59e7-4e19-ad2a-7bd1830cd742,LIST_ACCOUNTS,hbciListAccounts,false -41567,92ea1270-59e7-4e19-ad2a-7bd1830cd742,LIST_TRANSACTIONS,hbciListTransactions,false -41568,92ea1270-59e7-4e19-ad2a-7bd1830cd742,AUTHORIZATION,,false -41569,92ea1270-59e7-4e19-ad2a-7bd1830cd742,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41570,92ea1270-59e7-4e19-ad2a-7bd1830cd742,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41571,92ea1270-59e7-4e19-ad2a-7bd1830cd742,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41566,61ebcdf9-6ebf-4df4-9cef-b1a5d740e2da,LIST_ACCOUNTS,hbciListAccounts,false +41567,61ebcdf9-6ebf-4df4-9cef-b1a5d740e2da,LIST_TRANSACTIONS,hbciListTransactions,false +41568,61ebcdf9-6ebf-4df4-9cef-b1a5d740e2da,AUTHORIZATION,,false +41569,61ebcdf9-6ebf-4df4-9cef-b1a5d740e2da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41570,61ebcdf9-6ebf-4df4-9cef-b1a5d740e2da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41571,61ebcdf9-6ebf-4df4-9cef-b1a5d740e2da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41572,f59451bd-a099-40f4-bede-97f683772607,LIST_ACCOUNTS,xs2aListAccounts,true -41573,f59451bd-a099-40f4-bede-97f683772607,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41573,f59451bd-a099-40f4-bede-97f683772607,LIST_TRANSACTIONS,xs2aListTransactions,true 41574,f59451bd-a099-40f4-bede-97f683772607,AUTHORIZATION,,true 41575,f59451bd-a099-40f4-bede-97f683772607,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41576,f59451bd-a099-40f4-bede-97f683772607,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41577,f59451bd-a099-40f4-bede-97f683772607,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41578,fe03ed03-1fd4-4584-b61b-b36e855e6273,LIST_ACCOUNTS,hbciListAccounts,false -41579,fe03ed03-1fd4-4584-b61b-b36e855e6273,LIST_TRANSACTIONS,hbciListTransactions,false -41580,fe03ed03-1fd4-4584-b61b-b36e855e6273,AUTHORIZATION,,false -41581,fe03ed03-1fd4-4584-b61b-b36e855e6273,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41582,fe03ed03-1fd4-4584-b61b-b36e855e6273,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41583,fe03ed03-1fd4-4584-b61b-b36e855e6273,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41578,06e75fbc-4b4b-4b3f-acf0-bbbd724f9d1e,LIST_ACCOUNTS,hbciListAccounts,false +41579,06e75fbc-4b4b-4b3f-acf0-bbbd724f9d1e,LIST_TRANSACTIONS,hbciListTransactions,false +41580,06e75fbc-4b4b-4b3f-acf0-bbbd724f9d1e,AUTHORIZATION,,false +41581,06e75fbc-4b4b-4b3f-acf0-bbbd724f9d1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41582,06e75fbc-4b4b-4b3f-acf0-bbbd724f9d1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41583,06e75fbc-4b4b-4b3f-acf0-bbbd724f9d1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41584,17629c81-103a-44c8-91e7-0582c1fd58f0,LIST_ACCOUNTS,xs2aListAccounts,true -41585,17629c81-103a-44c8-91e7-0582c1fd58f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41585,17629c81-103a-44c8-91e7-0582c1fd58f0,LIST_TRANSACTIONS,xs2aListTransactions,true 41586,17629c81-103a-44c8-91e7-0582c1fd58f0,AUTHORIZATION,,true 41587,17629c81-103a-44c8-91e7-0582c1fd58f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41588,17629c81-103a-44c8-91e7-0582c1fd58f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41589,17629c81-103a-44c8-91e7-0582c1fd58f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41590,e7700671-e562-4983-aeee-869b916bfd4a,LIST_ACCOUNTS,hbciListAccounts,false -41591,e7700671-e562-4983-aeee-869b916bfd4a,LIST_TRANSACTIONS,hbciListTransactions,false -41592,e7700671-e562-4983-aeee-869b916bfd4a,AUTHORIZATION,,false -41593,e7700671-e562-4983-aeee-869b916bfd4a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41594,e7700671-e562-4983-aeee-869b916bfd4a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41595,e7700671-e562-4983-aeee-869b916bfd4a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41590,f8ca91b4-f366-4a5b-8dd7-f657ddd4ac84,LIST_ACCOUNTS,hbciListAccounts,false +41591,f8ca91b4-f366-4a5b-8dd7-f657ddd4ac84,LIST_TRANSACTIONS,hbciListTransactions,false +41592,f8ca91b4-f366-4a5b-8dd7-f657ddd4ac84,AUTHORIZATION,,false +41593,f8ca91b4-f366-4a5b-8dd7-f657ddd4ac84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41594,f8ca91b4-f366-4a5b-8dd7-f657ddd4ac84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41595,f8ca91b4-f366-4a5b-8dd7-f657ddd4ac84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41596,8fb65d24-87f8-4a42-a3d2-ba9f1e3f9652,LIST_ACCOUNTS,xs2aListAccounts,true -41597,8fb65d24-87f8-4a42-a3d2-ba9f1e3f9652,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41597,8fb65d24-87f8-4a42-a3d2-ba9f1e3f9652,LIST_TRANSACTIONS,xs2aListTransactions,true 41598,8fb65d24-87f8-4a42-a3d2-ba9f1e3f9652,AUTHORIZATION,,true 41599,8fb65d24-87f8-4a42-a3d2-ba9f1e3f9652,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41600,8fb65d24-87f8-4a42-a3d2-ba9f1e3f9652,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41601,8fb65d24-87f8-4a42-a3d2-ba9f1e3f9652,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41602,9fdb7450-bb5f-4707-9149-f7b57dc6d598,LIST_ACCOUNTS,hbciListAccounts,false -41603,9fdb7450-bb5f-4707-9149-f7b57dc6d598,LIST_TRANSACTIONS,hbciListTransactions,false -41604,9fdb7450-bb5f-4707-9149-f7b57dc6d598,AUTHORIZATION,,false -41605,9fdb7450-bb5f-4707-9149-f7b57dc6d598,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41606,9fdb7450-bb5f-4707-9149-f7b57dc6d598,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41607,9fdb7450-bb5f-4707-9149-f7b57dc6d598,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41602,fed619a2-0986-4d86-a3c1-9c7ae5fdbf8b,LIST_ACCOUNTS,hbciListAccounts,false +41603,fed619a2-0986-4d86-a3c1-9c7ae5fdbf8b,LIST_TRANSACTIONS,hbciListTransactions,false +41604,fed619a2-0986-4d86-a3c1-9c7ae5fdbf8b,AUTHORIZATION,,false +41605,fed619a2-0986-4d86-a3c1-9c7ae5fdbf8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41606,fed619a2-0986-4d86-a3c1-9c7ae5fdbf8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41607,fed619a2-0986-4d86-a3c1-9c7ae5fdbf8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41608,ff7ccc26-90cb-40b3-8ac0-5b5b1b40b299,LIST_ACCOUNTS,xs2aListAccounts,true -41609,ff7ccc26-90cb-40b3-8ac0-5b5b1b40b299,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41609,ff7ccc26-90cb-40b3-8ac0-5b5b1b40b299,LIST_TRANSACTIONS,xs2aListTransactions,true 41610,ff7ccc26-90cb-40b3-8ac0-5b5b1b40b299,AUTHORIZATION,,true 41611,ff7ccc26-90cb-40b3-8ac0-5b5b1b40b299,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41612,ff7ccc26-90cb-40b3-8ac0-5b5b1b40b299,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41613,ff7ccc26-90cb-40b3-8ac0-5b5b1b40b299,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41614,28b98b2e-71c9-4d9a-af56-9e5cc5511156,LIST_ACCOUNTS,hbciListAccounts,false -41615,28b98b2e-71c9-4d9a-af56-9e5cc5511156,LIST_TRANSACTIONS,hbciListTransactions,false -41616,28b98b2e-71c9-4d9a-af56-9e5cc5511156,AUTHORIZATION,,false -41617,28b98b2e-71c9-4d9a-af56-9e5cc5511156,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41618,28b98b2e-71c9-4d9a-af56-9e5cc5511156,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41619,28b98b2e-71c9-4d9a-af56-9e5cc5511156,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41614,53440c29-0d6f-4342-9be9-969599456ed4,LIST_ACCOUNTS,hbciListAccounts,false +41615,53440c29-0d6f-4342-9be9-969599456ed4,LIST_TRANSACTIONS,hbciListTransactions,false +41616,53440c29-0d6f-4342-9be9-969599456ed4,AUTHORIZATION,,false +41617,53440c29-0d6f-4342-9be9-969599456ed4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41618,53440c29-0d6f-4342-9be9-969599456ed4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41619,53440c29-0d6f-4342-9be9-969599456ed4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41620,bff41496-b1af-4a91-8157-dd7747e110ad,LIST_ACCOUNTS,xs2aListAccounts,true -41621,bff41496-b1af-4a91-8157-dd7747e110ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41621,bff41496-b1af-4a91-8157-dd7747e110ad,LIST_TRANSACTIONS,xs2aListTransactions,true 41622,bff41496-b1af-4a91-8157-dd7747e110ad,AUTHORIZATION,,true 41623,bff41496-b1af-4a91-8157-dd7747e110ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41624,bff41496-b1af-4a91-8157-dd7747e110ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41625,bff41496-b1af-4a91-8157-dd7747e110ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41626,173d00ca-8158-4389-ba82-63202516703d,LIST_ACCOUNTS,hbciListAccounts,false -41627,173d00ca-8158-4389-ba82-63202516703d,LIST_TRANSACTIONS,hbciListTransactions,false -41628,173d00ca-8158-4389-ba82-63202516703d,AUTHORIZATION,,false -41629,173d00ca-8158-4389-ba82-63202516703d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41630,173d00ca-8158-4389-ba82-63202516703d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41631,173d00ca-8158-4389-ba82-63202516703d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41626,6f1a7500-7744-41e6-8e65-241671f42119,LIST_ACCOUNTS,hbciListAccounts,false +41627,6f1a7500-7744-41e6-8e65-241671f42119,LIST_TRANSACTIONS,hbciListTransactions,false +41628,6f1a7500-7744-41e6-8e65-241671f42119,AUTHORIZATION,,false +41629,6f1a7500-7744-41e6-8e65-241671f42119,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41630,6f1a7500-7744-41e6-8e65-241671f42119,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41631,6f1a7500-7744-41e6-8e65-241671f42119,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41632,fa532637-f2b6-483e-9d0c-bfa15818b14a,LIST_ACCOUNTS,xs2aListAccounts,true -41633,fa532637-f2b6-483e-9d0c-bfa15818b14a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41633,fa532637-f2b6-483e-9d0c-bfa15818b14a,LIST_TRANSACTIONS,xs2aListTransactions,true 41634,fa532637-f2b6-483e-9d0c-bfa15818b14a,AUTHORIZATION,,true 41635,fa532637-f2b6-483e-9d0c-bfa15818b14a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41636,fa532637-f2b6-483e-9d0c-bfa15818b14a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41637,fa532637-f2b6-483e-9d0c-bfa15818b14a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41638,dac0d5e7-1f44-4427-a717-4b7bcb8e823a,LIST_ACCOUNTS,hbciListAccounts,false -41639,dac0d5e7-1f44-4427-a717-4b7bcb8e823a,LIST_TRANSACTIONS,hbciListTransactions,false -41640,dac0d5e7-1f44-4427-a717-4b7bcb8e823a,AUTHORIZATION,,false -41641,dac0d5e7-1f44-4427-a717-4b7bcb8e823a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41642,dac0d5e7-1f44-4427-a717-4b7bcb8e823a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41643,dac0d5e7-1f44-4427-a717-4b7bcb8e823a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41638,2fc7cbd8-2a67-4a1e-807e-0b752d2ab394,LIST_ACCOUNTS,hbciListAccounts,false +41639,2fc7cbd8-2a67-4a1e-807e-0b752d2ab394,LIST_TRANSACTIONS,hbciListTransactions,false +41640,2fc7cbd8-2a67-4a1e-807e-0b752d2ab394,AUTHORIZATION,,false +41641,2fc7cbd8-2a67-4a1e-807e-0b752d2ab394,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41642,2fc7cbd8-2a67-4a1e-807e-0b752d2ab394,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41643,2fc7cbd8-2a67-4a1e-807e-0b752d2ab394,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41644,adf61347-e14e-48c0-bf6e-5cd450d6e64b,LIST_ACCOUNTS,xs2aListAccounts,true -41645,adf61347-e14e-48c0-bf6e-5cd450d6e64b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41645,adf61347-e14e-48c0-bf6e-5cd450d6e64b,LIST_TRANSACTIONS,xs2aListTransactions,true 41646,adf61347-e14e-48c0-bf6e-5cd450d6e64b,AUTHORIZATION,,true 41647,adf61347-e14e-48c0-bf6e-5cd450d6e64b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41648,adf61347-e14e-48c0-bf6e-5cd450d6e64b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41649,adf61347-e14e-48c0-bf6e-5cd450d6e64b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41650,62cfa298-7d63-4881-a126-40f6b41e2a64,LIST_ACCOUNTS,hbciListAccounts,false -41651,62cfa298-7d63-4881-a126-40f6b41e2a64,LIST_TRANSACTIONS,hbciListTransactions,false -41652,62cfa298-7d63-4881-a126-40f6b41e2a64,AUTHORIZATION,,false -41653,62cfa298-7d63-4881-a126-40f6b41e2a64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41654,62cfa298-7d63-4881-a126-40f6b41e2a64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41655,62cfa298-7d63-4881-a126-40f6b41e2a64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41650,8cc92355-284c-4149-ac32-1c8d32ec8d5c,LIST_ACCOUNTS,hbciListAccounts,false +41651,8cc92355-284c-4149-ac32-1c8d32ec8d5c,LIST_TRANSACTIONS,hbciListTransactions,false +41652,8cc92355-284c-4149-ac32-1c8d32ec8d5c,AUTHORIZATION,,false +41653,8cc92355-284c-4149-ac32-1c8d32ec8d5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41654,8cc92355-284c-4149-ac32-1c8d32ec8d5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41655,8cc92355-284c-4149-ac32-1c8d32ec8d5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41656,814f585c-28ae-4dd6-a451-0fa0225e65dd,LIST_ACCOUNTS,xs2aListAccounts,true -41657,814f585c-28ae-4dd6-a451-0fa0225e65dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41657,814f585c-28ae-4dd6-a451-0fa0225e65dd,LIST_TRANSACTIONS,xs2aListTransactions,true 41658,814f585c-28ae-4dd6-a451-0fa0225e65dd,AUTHORIZATION,,true 41659,814f585c-28ae-4dd6-a451-0fa0225e65dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41660,814f585c-28ae-4dd6-a451-0fa0225e65dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41661,814f585c-28ae-4dd6-a451-0fa0225e65dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41662,3f11b316-6b8e-4f41-8589-5586d8b32d9f,LIST_ACCOUNTS,hbciListAccounts,false -41663,3f11b316-6b8e-4f41-8589-5586d8b32d9f,LIST_TRANSACTIONS,hbciListTransactions,false -41664,3f11b316-6b8e-4f41-8589-5586d8b32d9f,AUTHORIZATION,,false -41665,3f11b316-6b8e-4f41-8589-5586d8b32d9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41666,3f11b316-6b8e-4f41-8589-5586d8b32d9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41667,3f11b316-6b8e-4f41-8589-5586d8b32d9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41662,dd2295b1-bf89-4f10-bcf7-3e9487a76f52,LIST_ACCOUNTS,hbciListAccounts,false +41663,dd2295b1-bf89-4f10-bcf7-3e9487a76f52,LIST_TRANSACTIONS,hbciListTransactions,false +41664,dd2295b1-bf89-4f10-bcf7-3e9487a76f52,AUTHORIZATION,,false +41665,dd2295b1-bf89-4f10-bcf7-3e9487a76f52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41666,dd2295b1-bf89-4f10-bcf7-3e9487a76f52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41667,dd2295b1-bf89-4f10-bcf7-3e9487a76f52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41668,4ea5702c-ad75-4431-a796-bab1ca3e66c9,LIST_ACCOUNTS,xs2aListAccounts,true -41669,4ea5702c-ad75-4431-a796-bab1ca3e66c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41669,4ea5702c-ad75-4431-a796-bab1ca3e66c9,LIST_TRANSACTIONS,xs2aListTransactions,true 41670,4ea5702c-ad75-4431-a796-bab1ca3e66c9,AUTHORIZATION,,true 41671,4ea5702c-ad75-4431-a796-bab1ca3e66c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41672,4ea5702c-ad75-4431-a796-bab1ca3e66c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41673,4ea5702c-ad75-4431-a796-bab1ca3e66c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41674,71397f45-2863-4744-8547-f3fbd7f3b92d,LIST_ACCOUNTS,hbciListAccounts,false -41675,71397f45-2863-4744-8547-f3fbd7f3b92d,LIST_TRANSACTIONS,hbciListTransactions,false -41676,71397f45-2863-4744-8547-f3fbd7f3b92d,AUTHORIZATION,,false -41677,71397f45-2863-4744-8547-f3fbd7f3b92d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41678,71397f45-2863-4744-8547-f3fbd7f3b92d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41679,71397f45-2863-4744-8547-f3fbd7f3b92d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41674,cbb870d0-4db1-4b03-a69b-9a02c6ebde28,LIST_ACCOUNTS,hbciListAccounts,false +41675,cbb870d0-4db1-4b03-a69b-9a02c6ebde28,LIST_TRANSACTIONS,hbciListTransactions,false +41676,cbb870d0-4db1-4b03-a69b-9a02c6ebde28,AUTHORIZATION,,false +41677,cbb870d0-4db1-4b03-a69b-9a02c6ebde28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41678,cbb870d0-4db1-4b03-a69b-9a02c6ebde28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41679,cbb870d0-4db1-4b03-a69b-9a02c6ebde28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41680,13f65ed0-e8fc-4eeb-8089-59bad9cd117f,LIST_ACCOUNTS,xs2aListAccounts,true -41681,13f65ed0-e8fc-4eeb-8089-59bad9cd117f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41681,13f65ed0-e8fc-4eeb-8089-59bad9cd117f,LIST_TRANSACTIONS,xs2aListTransactions,true 41682,13f65ed0-e8fc-4eeb-8089-59bad9cd117f,AUTHORIZATION,,true 41683,13f65ed0-e8fc-4eeb-8089-59bad9cd117f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41684,13f65ed0-e8fc-4eeb-8089-59bad9cd117f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41685,13f65ed0-e8fc-4eeb-8089-59bad9cd117f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41686,3e0d6f8a-68f1-47a3-8d76-8f862adb8c7a,LIST_ACCOUNTS,hbciListAccounts,false -41687,3e0d6f8a-68f1-47a3-8d76-8f862adb8c7a,LIST_TRANSACTIONS,hbciListTransactions,false -41688,3e0d6f8a-68f1-47a3-8d76-8f862adb8c7a,AUTHORIZATION,,false -41689,3e0d6f8a-68f1-47a3-8d76-8f862adb8c7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41690,3e0d6f8a-68f1-47a3-8d76-8f862adb8c7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41691,3e0d6f8a-68f1-47a3-8d76-8f862adb8c7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41686,ced61029-6e45-41aa-bfaf-b51c1cf12d27,LIST_ACCOUNTS,hbciListAccounts,false +41687,ced61029-6e45-41aa-bfaf-b51c1cf12d27,LIST_TRANSACTIONS,hbciListTransactions,false +41688,ced61029-6e45-41aa-bfaf-b51c1cf12d27,AUTHORIZATION,,false +41689,ced61029-6e45-41aa-bfaf-b51c1cf12d27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41690,ced61029-6e45-41aa-bfaf-b51c1cf12d27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41691,ced61029-6e45-41aa-bfaf-b51c1cf12d27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41692,03668d3e-c2a7-425a-b50a-f73347fbfb33,LIST_ACCOUNTS,xs2aListAccounts,true -41693,03668d3e-c2a7-425a-b50a-f73347fbfb33,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41693,03668d3e-c2a7-425a-b50a-f73347fbfb33,LIST_TRANSACTIONS,xs2aListTransactions,true 41694,03668d3e-c2a7-425a-b50a-f73347fbfb33,AUTHORIZATION,,true 41695,03668d3e-c2a7-425a-b50a-f73347fbfb33,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41696,03668d3e-c2a7-425a-b50a-f73347fbfb33,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41697,03668d3e-c2a7-425a-b50a-f73347fbfb33,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41698,23d7c1dc-b327-469d-ac02-2c72d289f793,LIST_ACCOUNTS,hbciListAccounts,false -41699,23d7c1dc-b327-469d-ac02-2c72d289f793,LIST_TRANSACTIONS,hbciListTransactions,false -41700,23d7c1dc-b327-469d-ac02-2c72d289f793,AUTHORIZATION,,false -41701,23d7c1dc-b327-469d-ac02-2c72d289f793,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41702,23d7c1dc-b327-469d-ac02-2c72d289f793,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41703,23d7c1dc-b327-469d-ac02-2c72d289f793,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41698,7ad4ece5-3487-4cab-bd34-6055e4a72221,LIST_ACCOUNTS,hbciListAccounts,false +41699,7ad4ece5-3487-4cab-bd34-6055e4a72221,LIST_TRANSACTIONS,hbciListTransactions,false +41700,7ad4ece5-3487-4cab-bd34-6055e4a72221,AUTHORIZATION,,false +41701,7ad4ece5-3487-4cab-bd34-6055e4a72221,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41702,7ad4ece5-3487-4cab-bd34-6055e4a72221,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41703,7ad4ece5-3487-4cab-bd34-6055e4a72221,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41704,4bda19be-f1ea-4259-9b8b-dbf3fa3935a0,LIST_ACCOUNTS,xs2aListAccounts,true -41705,4bda19be-f1ea-4259-9b8b-dbf3fa3935a0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41705,4bda19be-f1ea-4259-9b8b-dbf3fa3935a0,LIST_TRANSACTIONS,xs2aListTransactions,true 41706,4bda19be-f1ea-4259-9b8b-dbf3fa3935a0,AUTHORIZATION,,true 41707,4bda19be-f1ea-4259-9b8b-dbf3fa3935a0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41708,4bda19be-f1ea-4259-9b8b-dbf3fa3935a0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41709,4bda19be-f1ea-4259-9b8b-dbf3fa3935a0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41710,7f722ef9-0e21-4b09-b32e-b225003bde1b,LIST_ACCOUNTS,hbciListAccounts,false -41711,7f722ef9-0e21-4b09-b32e-b225003bde1b,LIST_TRANSACTIONS,hbciListTransactions,false -41712,7f722ef9-0e21-4b09-b32e-b225003bde1b,AUTHORIZATION,,false -41713,7f722ef9-0e21-4b09-b32e-b225003bde1b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41714,7f722ef9-0e21-4b09-b32e-b225003bde1b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41715,7f722ef9-0e21-4b09-b32e-b225003bde1b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41710,e9e1b81e-fe5c-4a2a-9e79-ab7ae94b7468,LIST_ACCOUNTS,hbciListAccounts,false +41711,e9e1b81e-fe5c-4a2a-9e79-ab7ae94b7468,LIST_TRANSACTIONS,hbciListTransactions,false +41712,e9e1b81e-fe5c-4a2a-9e79-ab7ae94b7468,AUTHORIZATION,,false +41713,e9e1b81e-fe5c-4a2a-9e79-ab7ae94b7468,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41714,e9e1b81e-fe5c-4a2a-9e79-ab7ae94b7468,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41715,e9e1b81e-fe5c-4a2a-9e79-ab7ae94b7468,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41716,603cbf2b-e38a-4d48-8624-913f65ad4d6a,LIST_ACCOUNTS,xs2aListAccounts,true -41717,603cbf2b-e38a-4d48-8624-913f65ad4d6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41717,603cbf2b-e38a-4d48-8624-913f65ad4d6a,LIST_TRANSACTIONS,xs2aListTransactions,true 41718,603cbf2b-e38a-4d48-8624-913f65ad4d6a,AUTHORIZATION,,true 41719,603cbf2b-e38a-4d48-8624-913f65ad4d6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41720,603cbf2b-e38a-4d48-8624-913f65ad4d6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41721,603cbf2b-e38a-4d48-8624-913f65ad4d6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41722,03773928-cbff-4eb6-a925-88724f05d128,LIST_ACCOUNTS,hbciListAccounts,false -41723,03773928-cbff-4eb6-a925-88724f05d128,LIST_TRANSACTIONS,hbciListTransactions,false -41724,03773928-cbff-4eb6-a925-88724f05d128,AUTHORIZATION,,false -41725,03773928-cbff-4eb6-a925-88724f05d128,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41726,03773928-cbff-4eb6-a925-88724f05d128,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41727,03773928-cbff-4eb6-a925-88724f05d128,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41722,018565ef-01ce-4b51-859f-64794f9cc8d1,LIST_ACCOUNTS,hbciListAccounts,false +41723,018565ef-01ce-4b51-859f-64794f9cc8d1,LIST_TRANSACTIONS,hbciListTransactions,false +41724,018565ef-01ce-4b51-859f-64794f9cc8d1,AUTHORIZATION,,false +41725,018565ef-01ce-4b51-859f-64794f9cc8d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41726,018565ef-01ce-4b51-859f-64794f9cc8d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41727,018565ef-01ce-4b51-859f-64794f9cc8d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41728,83d150d0-0778-4648-963c-d8eb5144327b,LIST_ACCOUNTS,xs2aListAccounts,true -41729,83d150d0-0778-4648-963c-d8eb5144327b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41729,83d150d0-0778-4648-963c-d8eb5144327b,LIST_TRANSACTIONS,xs2aListTransactions,true 41730,83d150d0-0778-4648-963c-d8eb5144327b,AUTHORIZATION,,true 41731,83d150d0-0778-4648-963c-d8eb5144327b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41732,83d150d0-0778-4648-963c-d8eb5144327b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41733,83d150d0-0778-4648-963c-d8eb5144327b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41734,0589fefb-730d-4a07-82d9-70a8ce32842a,LIST_ACCOUNTS,hbciListAccounts,false -41735,0589fefb-730d-4a07-82d9-70a8ce32842a,LIST_TRANSACTIONS,hbciListTransactions,false -41736,0589fefb-730d-4a07-82d9-70a8ce32842a,AUTHORIZATION,,false -41737,0589fefb-730d-4a07-82d9-70a8ce32842a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41738,0589fefb-730d-4a07-82d9-70a8ce32842a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41739,0589fefb-730d-4a07-82d9-70a8ce32842a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41734,547550bf-6005-4d1d-9963-2af16b8345a7,LIST_ACCOUNTS,hbciListAccounts,false +41735,547550bf-6005-4d1d-9963-2af16b8345a7,LIST_TRANSACTIONS,hbciListTransactions,false +41736,547550bf-6005-4d1d-9963-2af16b8345a7,AUTHORIZATION,,false +41737,547550bf-6005-4d1d-9963-2af16b8345a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41738,547550bf-6005-4d1d-9963-2af16b8345a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41739,547550bf-6005-4d1d-9963-2af16b8345a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41740,71aa757a-076b-48ba-bd5b-34300cf79a7a,LIST_ACCOUNTS,xs2aListAccounts,true -41741,71aa757a-076b-48ba-bd5b-34300cf79a7a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41741,71aa757a-076b-48ba-bd5b-34300cf79a7a,LIST_TRANSACTIONS,xs2aListTransactions,true 41742,71aa757a-076b-48ba-bd5b-34300cf79a7a,AUTHORIZATION,,true 41743,71aa757a-076b-48ba-bd5b-34300cf79a7a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41744,71aa757a-076b-48ba-bd5b-34300cf79a7a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41745,71aa757a-076b-48ba-bd5b-34300cf79a7a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41746,28b4b79d-3c3a-46b5-a389-61ee7fcefa70,LIST_ACCOUNTS,hbciListAccounts,false -41747,28b4b79d-3c3a-46b5-a389-61ee7fcefa70,LIST_TRANSACTIONS,hbciListTransactions,false -41748,28b4b79d-3c3a-46b5-a389-61ee7fcefa70,AUTHORIZATION,,false -41749,28b4b79d-3c3a-46b5-a389-61ee7fcefa70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41750,28b4b79d-3c3a-46b5-a389-61ee7fcefa70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41751,28b4b79d-3c3a-46b5-a389-61ee7fcefa70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41746,b2295be3-2f18-4faa-b9d8-5c6f1eff436a,LIST_ACCOUNTS,hbciListAccounts,false +41747,b2295be3-2f18-4faa-b9d8-5c6f1eff436a,LIST_TRANSACTIONS,hbciListTransactions,false +41748,b2295be3-2f18-4faa-b9d8-5c6f1eff436a,AUTHORIZATION,,false +41749,b2295be3-2f18-4faa-b9d8-5c6f1eff436a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41750,b2295be3-2f18-4faa-b9d8-5c6f1eff436a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41751,b2295be3-2f18-4faa-b9d8-5c6f1eff436a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41752,110b276d-efbb-49dd-9ff4-10b95de9b662,LIST_ACCOUNTS,xs2aListAccounts,true -41753,110b276d-efbb-49dd-9ff4-10b95de9b662,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41753,110b276d-efbb-49dd-9ff4-10b95de9b662,LIST_TRANSACTIONS,xs2aListTransactions,true 41754,110b276d-efbb-49dd-9ff4-10b95de9b662,AUTHORIZATION,,true 41755,110b276d-efbb-49dd-9ff4-10b95de9b662,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41756,110b276d-efbb-49dd-9ff4-10b95de9b662,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41757,110b276d-efbb-49dd-9ff4-10b95de9b662,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41758,a4180835-5570-498f-9e32-474262cffb21,LIST_ACCOUNTS,hbciListAccounts,false -41759,a4180835-5570-498f-9e32-474262cffb21,LIST_TRANSACTIONS,hbciListTransactions,false -41760,a4180835-5570-498f-9e32-474262cffb21,AUTHORIZATION,,false -41761,a4180835-5570-498f-9e32-474262cffb21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41762,a4180835-5570-498f-9e32-474262cffb21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41763,a4180835-5570-498f-9e32-474262cffb21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41758,9669e822-5fdd-418e-b9ee-d0f8b29feb01,LIST_ACCOUNTS,hbciListAccounts,false +41759,9669e822-5fdd-418e-b9ee-d0f8b29feb01,LIST_TRANSACTIONS,hbciListTransactions,false +41760,9669e822-5fdd-418e-b9ee-d0f8b29feb01,AUTHORIZATION,,false +41761,9669e822-5fdd-418e-b9ee-d0f8b29feb01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41762,9669e822-5fdd-418e-b9ee-d0f8b29feb01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41763,9669e822-5fdd-418e-b9ee-d0f8b29feb01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41764,99e36051-8d0c-4946-a119-d219eaafffa3,LIST_ACCOUNTS,xs2aListAccounts,true -41765,99e36051-8d0c-4946-a119-d219eaafffa3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41765,99e36051-8d0c-4946-a119-d219eaafffa3,LIST_TRANSACTIONS,xs2aListTransactions,true 41766,99e36051-8d0c-4946-a119-d219eaafffa3,AUTHORIZATION,,true 41767,99e36051-8d0c-4946-a119-d219eaafffa3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41768,99e36051-8d0c-4946-a119-d219eaafffa3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41769,99e36051-8d0c-4946-a119-d219eaafffa3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41770,ddf374b7-0ebe-415f-bcab-5c2a7d103684,LIST_ACCOUNTS,hbciListAccounts,false -41771,ddf374b7-0ebe-415f-bcab-5c2a7d103684,LIST_TRANSACTIONS,hbciListTransactions,false -41772,ddf374b7-0ebe-415f-bcab-5c2a7d103684,AUTHORIZATION,,false -41773,ddf374b7-0ebe-415f-bcab-5c2a7d103684,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41774,ddf374b7-0ebe-415f-bcab-5c2a7d103684,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41775,ddf374b7-0ebe-415f-bcab-5c2a7d103684,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41770,d0bbd354-835c-4142-8453-3b3b4ff7e397,LIST_ACCOUNTS,hbciListAccounts,false +41771,d0bbd354-835c-4142-8453-3b3b4ff7e397,LIST_TRANSACTIONS,hbciListTransactions,false +41772,d0bbd354-835c-4142-8453-3b3b4ff7e397,AUTHORIZATION,,false +41773,d0bbd354-835c-4142-8453-3b3b4ff7e397,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41774,d0bbd354-835c-4142-8453-3b3b4ff7e397,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41775,d0bbd354-835c-4142-8453-3b3b4ff7e397,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41776,eb755b52-bcef-402a-9c2c-c704171dc497,LIST_ACCOUNTS,xs2aListAccounts,true -41777,eb755b52-bcef-402a-9c2c-c704171dc497,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41777,eb755b52-bcef-402a-9c2c-c704171dc497,LIST_TRANSACTIONS,xs2aListTransactions,true 41778,eb755b52-bcef-402a-9c2c-c704171dc497,AUTHORIZATION,,true 41779,eb755b52-bcef-402a-9c2c-c704171dc497,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41780,eb755b52-bcef-402a-9c2c-c704171dc497,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41781,eb755b52-bcef-402a-9c2c-c704171dc497,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41782,6dce9684-d2b7-4ea2-9bbc-2ff538a84a28,LIST_ACCOUNTS,hbciListAccounts,false -41783,6dce9684-d2b7-4ea2-9bbc-2ff538a84a28,LIST_TRANSACTIONS,hbciListTransactions,false -41784,6dce9684-d2b7-4ea2-9bbc-2ff538a84a28,AUTHORIZATION,,false -41785,6dce9684-d2b7-4ea2-9bbc-2ff538a84a28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41786,6dce9684-d2b7-4ea2-9bbc-2ff538a84a28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41787,6dce9684-d2b7-4ea2-9bbc-2ff538a84a28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41782,ac8057dd-38be-44bc-b149-89e2f20d0e58,LIST_ACCOUNTS,hbciListAccounts,false +41783,ac8057dd-38be-44bc-b149-89e2f20d0e58,LIST_TRANSACTIONS,hbciListTransactions,false +41784,ac8057dd-38be-44bc-b149-89e2f20d0e58,AUTHORIZATION,,false +41785,ac8057dd-38be-44bc-b149-89e2f20d0e58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41786,ac8057dd-38be-44bc-b149-89e2f20d0e58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41787,ac8057dd-38be-44bc-b149-89e2f20d0e58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41788,c8bdc84a-acaa-49fc-a43e-1bacfdbbac7e,LIST_ACCOUNTS,xs2aListAccounts,true -41789,c8bdc84a-acaa-49fc-a43e-1bacfdbbac7e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41789,c8bdc84a-acaa-49fc-a43e-1bacfdbbac7e,LIST_TRANSACTIONS,xs2aListTransactions,true 41790,c8bdc84a-acaa-49fc-a43e-1bacfdbbac7e,AUTHORIZATION,,true 41791,c8bdc84a-acaa-49fc-a43e-1bacfdbbac7e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41792,c8bdc84a-acaa-49fc-a43e-1bacfdbbac7e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41793,c8bdc84a-acaa-49fc-a43e-1bacfdbbac7e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41794,be279458-9fd6-4c8a-a34c-a4922de76571,LIST_ACCOUNTS,hbciListAccounts,false -41795,be279458-9fd6-4c8a-a34c-a4922de76571,LIST_TRANSACTIONS,hbciListTransactions,false -41796,be279458-9fd6-4c8a-a34c-a4922de76571,AUTHORIZATION,,false -41797,be279458-9fd6-4c8a-a34c-a4922de76571,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41798,be279458-9fd6-4c8a-a34c-a4922de76571,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41799,be279458-9fd6-4c8a-a34c-a4922de76571,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41794,cc9e0e93-d82a-40b3-92da-c9973bcafada,LIST_ACCOUNTS,hbciListAccounts,false +41795,cc9e0e93-d82a-40b3-92da-c9973bcafada,LIST_TRANSACTIONS,hbciListTransactions,false +41796,cc9e0e93-d82a-40b3-92da-c9973bcafada,AUTHORIZATION,,false +41797,cc9e0e93-d82a-40b3-92da-c9973bcafada,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41798,cc9e0e93-d82a-40b3-92da-c9973bcafada,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41799,cc9e0e93-d82a-40b3-92da-c9973bcafada,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41800,0fc67303-fc2d-4974-98bb-1afa4ab0c649,LIST_ACCOUNTS,xs2aListAccounts,true -41801,0fc67303-fc2d-4974-98bb-1afa4ab0c649,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41801,0fc67303-fc2d-4974-98bb-1afa4ab0c649,LIST_TRANSACTIONS,xs2aListTransactions,true 41802,0fc67303-fc2d-4974-98bb-1afa4ab0c649,AUTHORIZATION,,true 41803,0fc67303-fc2d-4974-98bb-1afa4ab0c649,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41804,0fc67303-fc2d-4974-98bb-1afa4ab0c649,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41805,0fc67303-fc2d-4974-98bb-1afa4ab0c649,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41806,91beaa6b-8b01-4cfa-b799-d78a8cbaf306,LIST_ACCOUNTS,hbciListAccounts,false -41807,91beaa6b-8b01-4cfa-b799-d78a8cbaf306,LIST_TRANSACTIONS,hbciListTransactions,false -41808,91beaa6b-8b01-4cfa-b799-d78a8cbaf306,AUTHORIZATION,,false -41809,91beaa6b-8b01-4cfa-b799-d78a8cbaf306,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41810,91beaa6b-8b01-4cfa-b799-d78a8cbaf306,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41811,91beaa6b-8b01-4cfa-b799-d78a8cbaf306,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41806,8ac5e593-78ab-49fc-9d75-004c3fd60260,LIST_ACCOUNTS,hbciListAccounts,false +41807,8ac5e593-78ab-49fc-9d75-004c3fd60260,LIST_TRANSACTIONS,hbciListTransactions,false +41808,8ac5e593-78ab-49fc-9d75-004c3fd60260,AUTHORIZATION,,false +41809,8ac5e593-78ab-49fc-9d75-004c3fd60260,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41810,8ac5e593-78ab-49fc-9d75-004c3fd60260,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41811,8ac5e593-78ab-49fc-9d75-004c3fd60260,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41812,e29a5b69-d32b-447d-94fe-5ec29714ce5a,LIST_ACCOUNTS,xs2aListAccounts,true -41813,e29a5b69-d32b-447d-94fe-5ec29714ce5a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41813,e29a5b69-d32b-447d-94fe-5ec29714ce5a,LIST_TRANSACTIONS,xs2aListTransactions,true 41814,e29a5b69-d32b-447d-94fe-5ec29714ce5a,AUTHORIZATION,,true 41815,e29a5b69-d32b-447d-94fe-5ec29714ce5a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41816,e29a5b69-d32b-447d-94fe-5ec29714ce5a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41817,e29a5b69-d32b-447d-94fe-5ec29714ce5a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41818,c6e9bcfc-c906-422e-b453-7cda31929638,LIST_ACCOUNTS,hbciListAccounts,false -41819,c6e9bcfc-c906-422e-b453-7cda31929638,LIST_TRANSACTIONS,hbciListTransactions,false -41820,c6e9bcfc-c906-422e-b453-7cda31929638,AUTHORIZATION,,false -41821,c6e9bcfc-c906-422e-b453-7cda31929638,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41822,c6e9bcfc-c906-422e-b453-7cda31929638,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41823,c6e9bcfc-c906-422e-b453-7cda31929638,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41818,27183040-8ffa-41e2-9948-ed46409695a3,LIST_ACCOUNTS,hbciListAccounts,false +41819,27183040-8ffa-41e2-9948-ed46409695a3,LIST_TRANSACTIONS,hbciListTransactions,false +41820,27183040-8ffa-41e2-9948-ed46409695a3,AUTHORIZATION,,false +41821,27183040-8ffa-41e2-9948-ed46409695a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41822,27183040-8ffa-41e2-9948-ed46409695a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41823,27183040-8ffa-41e2-9948-ed46409695a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41824,c7a2c9fd-ac4f-45be-8297-d4aa34332a23,LIST_ACCOUNTS,xs2aListAccounts,true -41825,c7a2c9fd-ac4f-45be-8297-d4aa34332a23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41825,c7a2c9fd-ac4f-45be-8297-d4aa34332a23,LIST_TRANSACTIONS,xs2aListTransactions,true 41826,c7a2c9fd-ac4f-45be-8297-d4aa34332a23,AUTHORIZATION,,true 41827,c7a2c9fd-ac4f-45be-8297-d4aa34332a23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41828,c7a2c9fd-ac4f-45be-8297-d4aa34332a23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41829,c7a2c9fd-ac4f-45be-8297-d4aa34332a23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41830,2314397d-9390-4756-a5ed-35ef66a8bf7c,LIST_ACCOUNTS,hbciListAccounts,false -41831,2314397d-9390-4756-a5ed-35ef66a8bf7c,LIST_TRANSACTIONS,hbciListTransactions,false -41832,2314397d-9390-4756-a5ed-35ef66a8bf7c,AUTHORIZATION,,false -41833,2314397d-9390-4756-a5ed-35ef66a8bf7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41834,2314397d-9390-4756-a5ed-35ef66a8bf7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41835,2314397d-9390-4756-a5ed-35ef66a8bf7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41830,0787876a-3502-4771-b683-9d64d1c288fe,LIST_ACCOUNTS,hbciListAccounts,false +41831,0787876a-3502-4771-b683-9d64d1c288fe,LIST_TRANSACTIONS,hbciListTransactions,false +41832,0787876a-3502-4771-b683-9d64d1c288fe,AUTHORIZATION,,false +41833,0787876a-3502-4771-b683-9d64d1c288fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41834,0787876a-3502-4771-b683-9d64d1c288fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41835,0787876a-3502-4771-b683-9d64d1c288fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41836,82089561-0767-48eb-b252-0ec8b24aad3d,LIST_ACCOUNTS,xs2aListAccounts,true -41837,82089561-0767-48eb-b252-0ec8b24aad3d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41837,82089561-0767-48eb-b252-0ec8b24aad3d,LIST_TRANSACTIONS,xs2aListTransactions,true 41838,82089561-0767-48eb-b252-0ec8b24aad3d,AUTHORIZATION,,true 41839,82089561-0767-48eb-b252-0ec8b24aad3d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41840,82089561-0767-48eb-b252-0ec8b24aad3d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41841,82089561-0767-48eb-b252-0ec8b24aad3d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41842,e43e56f6-65a2-48e7-a96d-a19047ed38c0,LIST_ACCOUNTS,hbciListAccounts,false -41843,e43e56f6-65a2-48e7-a96d-a19047ed38c0,LIST_TRANSACTIONS,hbciListTransactions,false -41844,e43e56f6-65a2-48e7-a96d-a19047ed38c0,AUTHORIZATION,,false -41845,e43e56f6-65a2-48e7-a96d-a19047ed38c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41846,e43e56f6-65a2-48e7-a96d-a19047ed38c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41847,e43e56f6-65a2-48e7-a96d-a19047ed38c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41842,6d1bfca0-73f3-49df-8aa0-6931ad899aa8,LIST_ACCOUNTS,hbciListAccounts,false +41843,6d1bfca0-73f3-49df-8aa0-6931ad899aa8,LIST_TRANSACTIONS,hbciListTransactions,false +41844,6d1bfca0-73f3-49df-8aa0-6931ad899aa8,AUTHORIZATION,,false +41845,6d1bfca0-73f3-49df-8aa0-6931ad899aa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41846,6d1bfca0-73f3-49df-8aa0-6931ad899aa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41847,6d1bfca0-73f3-49df-8aa0-6931ad899aa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41848,4b041139-0f01-4db0-814e-6df04c256f5b,LIST_ACCOUNTS,xs2aListAccounts,true -41849,4b041139-0f01-4db0-814e-6df04c256f5b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41849,4b041139-0f01-4db0-814e-6df04c256f5b,LIST_TRANSACTIONS,xs2aListTransactions,true 41850,4b041139-0f01-4db0-814e-6df04c256f5b,AUTHORIZATION,,true 41851,4b041139-0f01-4db0-814e-6df04c256f5b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41852,4b041139-0f01-4db0-814e-6df04c256f5b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41853,4b041139-0f01-4db0-814e-6df04c256f5b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41854,15b3c6b7-d4b3-4d1a-b1e7-2ad6fa08e5e9,LIST_ACCOUNTS,hbciListAccounts,false -41855,15b3c6b7-d4b3-4d1a-b1e7-2ad6fa08e5e9,LIST_TRANSACTIONS,hbciListTransactions,false -41856,15b3c6b7-d4b3-4d1a-b1e7-2ad6fa08e5e9,AUTHORIZATION,,false -41857,15b3c6b7-d4b3-4d1a-b1e7-2ad6fa08e5e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41858,15b3c6b7-d4b3-4d1a-b1e7-2ad6fa08e5e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41859,15b3c6b7-d4b3-4d1a-b1e7-2ad6fa08e5e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41854,23aa39bf-3dba-4ae7-8464-aa9d21a12a6e,LIST_ACCOUNTS,hbciListAccounts,false +41855,23aa39bf-3dba-4ae7-8464-aa9d21a12a6e,LIST_TRANSACTIONS,hbciListTransactions,false +41856,23aa39bf-3dba-4ae7-8464-aa9d21a12a6e,AUTHORIZATION,,false +41857,23aa39bf-3dba-4ae7-8464-aa9d21a12a6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41858,23aa39bf-3dba-4ae7-8464-aa9d21a12a6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41859,23aa39bf-3dba-4ae7-8464-aa9d21a12a6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41860,e86c8ec5-94e2-442b-82bf-389cbb3112eb,LIST_ACCOUNTS,xs2aListAccounts,true -41861,e86c8ec5-94e2-442b-82bf-389cbb3112eb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41861,e86c8ec5-94e2-442b-82bf-389cbb3112eb,LIST_TRANSACTIONS,xs2aListTransactions,true 41862,e86c8ec5-94e2-442b-82bf-389cbb3112eb,AUTHORIZATION,,true 41863,e86c8ec5-94e2-442b-82bf-389cbb3112eb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41864,e86c8ec5-94e2-442b-82bf-389cbb3112eb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41865,e86c8ec5-94e2-442b-82bf-389cbb3112eb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41866,023c0bf7-94a1-4377-9216-bdb4c2c197aa,LIST_ACCOUNTS,hbciListAccounts,false -41867,023c0bf7-94a1-4377-9216-bdb4c2c197aa,LIST_TRANSACTIONS,hbciListTransactions,false -41868,023c0bf7-94a1-4377-9216-bdb4c2c197aa,AUTHORIZATION,,false -41869,023c0bf7-94a1-4377-9216-bdb4c2c197aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41870,023c0bf7-94a1-4377-9216-bdb4c2c197aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41871,023c0bf7-94a1-4377-9216-bdb4c2c197aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41866,e87c4815-9f46-461c-91f3-19d0afafde92,LIST_ACCOUNTS,hbciListAccounts,false +41867,e87c4815-9f46-461c-91f3-19d0afafde92,LIST_TRANSACTIONS,hbciListTransactions,false +41868,e87c4815-9f46-461c-91f3-19d0afafde92,AUTHORIZATION,,false +41869,e87c4815-9f46-461c-91f3-19d0afafde92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41870,e87c4815-9f46-461c-91f3-19d0afafde92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41871,e87c4815-9f46-461c-91f3-19d0afafde92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41872,15f171d6-0766-43d3-b00a-b3e2046e9aa8,LIST_ACCOUNTS,xs2aListAccounts,true -41873,15f171d6-0766-43d3-b00a-b3e2046e9aa8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41873,15f171d6-0766-43d3-b00a-b3e2046e9aa8,LIST_TRANSACTIONS,xs2aListTransactions,true 41874,15f171d6-0766-43d3-b00a-b3e2046e9aa8,AUTHORIZATION,,true 41875,15f171d6-0766-43d3-b00a-b3e2046e9aa8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41876,15f171d6-0766-43d3-b00a-b3e2046e9aa8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41877,15f171d6-0766-43d3-b00a-b3e2046e9aa8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41878,c037d3a5-6913-45dd-8131-8a3aaa1e1900,LIST_ACCOUNTS,hbciListAccounts,false -41879,c037d3a5-6913-45dd-8131-8a3aaa1e1900,LIST_TRANSACTIONS,hbciListTransactions,false -41880,c037d3a5-6913-45dd-8131-8a3aaa1e1900,AUTHORIZATION,,false -41881,c037d3a5-6913-45dd-8131-8a3aaa1e1900,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41882,c037d3a5-6913-45dd-8131-8a3aaa1e1900,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41883,c037d3a5-6913-45dd-8131-8a3aaa1e1900,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41878,5e7fee70-cab6-441f-8195-3364b034a8e6,LIST_ACCOUNTS,hbciListAccounts,false +41879,5e7fee70-cab6-441f-8195-3364b034a8e6,LIST_TRANSACTIONS,hbciListTransactions,false +41880,5e7fee70-cab6-441f-8195-3364b034a8e6,AUTHORIZATION,,false +41881,5e7fee70-cab6-441f-8195-3364b034a8e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41882,5e7fee70-cab6-441f-8195-3364b034a8e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41883,5e7fee70-cab6-441f-8195-3364b034a8e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41884,4d0cfb37-3e0f-4094-8962-25cf7cf91ed4,LIST_ACCOUNTS,xs2aListAccounts,true -41885,4d0cfb37-3e0f-4094-8962-25cf7cf91ed4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41885,4d0cfb37-3e0f-4094-8962-25cf7cf91ed4,LIST_TRANSACTIONS,xs2aListTransactions,true 41886,4d0cfb37-3e0f-4094-8962-25cf7cf91ed4,AUTHORIZATION,,true 41887,4d0cfb37-3e0f-4094-8962-25cf7cf91ed4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41888,4d0cfb37-3e0f-4094-8962-25cf7cf91ed4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41889,4d0cfb37-3e0f-4094-8962-25cf7cf91ed4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41890,c907960a-674f-4d14-9334-78a84287b0c6,LIST_ACCOUNTS,hbciListAccounts,false -41891,c907960a-674f-4d14-9334-78a84287b0c6,LIST_TRANSACTIONS,hbciListTransactions,false -41892,c907960a-674f-4d14-9334-78a84287b0c6,AUTHORIZATION,,false -41893,c907960a-674f-4d14-9334-78a84287b0c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41894,c907960a-674f-4d14-9334-78a84287b0c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41895,c907960a-674f-4d14-9334-78a84287b0c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41890,231b6f6a-9ba0-4294-a9e7-2d48067d3e40,LIST_ACCOUNTS,hbciListAccounts,false +41891,231b6f6a-9ba0-4294-a9e7-2d48067d3e40,LIST_TRANSACTIONS,hbciListTransactions,false +41892,231b6f6a-9ba0-4294-a9e7-2d48067d3e40,AUTHORIZATION,,false +41893,231b6f6a-9ba0-4294-a9e7-2d48067d3e40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41894,231b6f6a-9ba0-4294-a9e7-2d48067d3e40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41895,231b6f6a-9ba0-4294-a9e7-2d48067d3e40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41896,9b40664f-3245-4db4-b36f-83f28292c0fd,LIST_ACCOUNTS,xs2aListAccounts,true -41897,9b40664f-3245-4db4-b36f-83f28292c0fd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41897,9b40664f-3245-4db4-b36f-83f28292c0fd,LIST_TRANSACTIONS,xs2aListTransactions,true 41898,9b40664f-3245-4db4-b36f-83f28292c0fd,AUTHORIZATION,,true 41899,9b40664f-3245-4db4-b36f-83f28292c0fd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41900,9b40664f-3245-4db4-b36f-83f28292c0fd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41901,9b40664f-3245-4db4-b36f-83f28292c0fd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41902,257317a1-4b62-45d2-8507-7b7fe409872b,LIST_ACCOUNTS,hbciListAccounts,false -41903,257317a1-4b62-45d2-8507-7b7fe409872b,LIST_TRANSACTIONS,hbciListTransactions,false -41904,257317a1-4b62-45d2-8507-7b7fe409872b,AUTHORIZATION,,false -41905,257317a1-4b62-45d2-8507-7b7fe409872b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41906,257317a1-4b62-45d2-8507-7b7fe409872b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41907,257317a1-4b62-45d2-8507-7b7fe409872b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41902,69e30f01-bbec-4ee9-b04a-443082e90303,LIST_ACCOUNTS,hbciListAccounts,false +41903,69e30f01-bbec-4ee9-b04a-443082e90303,LIST_TRANSACTIONS,hbciListTransactions,false +41904,69e30f01-bbec-4ee9-b04a-443082e90303,AUTHORIZATION,,false +41905,69e30f01-bbec-4ee9-b04a-443082e90303,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41906,69e30f01-bbec-4ee9-b04a-443082e90303,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41907,69e30f01-bbec-4ee9-b04a-443082e90303,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41908,d62cc6c9-9112-4b9c-b452-69f6d0009769,LIST_ACCOUNTS,xs2aListAccounts,true -41909,d62cc6c9-9112-4b9c-b452-69f6d0009769,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41909,d62cc6c9-9112-4b9c-b452-69f6d0009769,LIST_TRANSACTIONS,xs2aListTransactions,true 41910,d62cc6c9-9112-4b9c-b452-69f6d0009769,AUTHORIZATION,,true 41911,d62cc6c9-9112-4b9c-b452-69f6d0009769,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41912,d62cc6c9-9112-4b9c-b452-69f6d0009769,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41913,d62cc6c9-9112-4b9c-b452-69f6d0009769,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41914,ff833600-6c7a-41d8-b1d2-a8e6b1eaef29,LIST_ACCOUNTS,hbciListAccounts,false -41915,ff833600-6c7a-41d8-b1d2-a8e6b1eaef29,LIST_TRANSACTIONS,hbciListTransactions,false -41916,ff833600-6c7a-41d8-b1d2-a8e6b1eaef29,AUTHORIZATION,,false -41917,ff833600-6c7a-41d8-b1d2-a8e6b1eaef29,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41918,ff833600-6c7a-41d8-b1d2-a8e6b1eaef29,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41919,ff833600-6c7a-41d8-b1d2-a8e6b1eaef29,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41914,294a199e-d744-4ca0-9cc0-c5abcd8adc88,LIST_ACCOUNTS,hbciListAccounts,false +41915,294a199e-d744-4ca0-9cc0-c5abcd8adc88,LIST_TRANSACTIONS,hbciListTransactions,false +41916,294a199e-d744-4ca0-9cc0-c5abcd8adc88,AUTHORIZATION,,false +41917,294a199e-d744-4ca0-9cc0-c5abcd8adc88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41918,294a199e-d744-4ca0-9cc0-c5abcd8adc88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41919,294a199e-d744-4ca0-9cc0-c5abcd8adc88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41920,9fee3911-d07d-4f17-ad94-315fc90a11d0,LIST_ACCOUNTS,xs2aListAccounts,true -41921,9fee3911-d07d-4f17-ad94-315fc90a11d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41921,9fee3911-d07d-4f17-ad94-315fc90a11d0,LIST_TRANSACTIONS,xs2aListTransactions,true 41922,9fee3911-d07d-4f17-ad94-315fc90a11d0,AUTHORIZATION,,true 41923,9fee3911-d07d-4f17-ad94-315fc90a11d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41924,9fee3911-d07d-4f17-ad94-315fc90a11d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41925,9fee3911-d07d-4f17-ad94-315fc90a11d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41926,de0addc4-a74d-47e1-aafb-0ecac971fa62,LIST_ACCOUNTS,hbciListAccounts,false -41927,de0addc4-a74d-47e1-aafb-0ecac971fa62,LIST_TRANSACTIONS,hbciListTransactions,false -41928,de0addc4-a74d-47e1-aafb-0ecac971fa62,AUTHORIZATION,,false -41929,de0addc4-a74d-47e1-aafb-0ecac971fa62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41930,de0addc4-a74d-47e1-aafb-0ecac971fa62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41931,de0addc4-a74d-47e1-aafb-0ecac971fa62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41926,6495a58a-0dec-4049-ab4c-a9cfb005d12b,LIST_ACCOUNTS,hbciListAccounts,false +41927,6495a58a-0dec-4049-ab4c-a9cfb005d12b,LIST_TRANSACTIONS,hbciListTransactions,false +41928,6495a58a-0dec-4049-ab4c-a9cfb005d12b,AUTHORIZATION,,false +41929,6495a58a-0dec-4049-ab4c-a9cfb005d12b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41930,6495a58a-0dec-4049-ab4c-a9cfb005d12b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41931,6495a58a-0dec-4049-ab4c-a9cfb005d12b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41932,f879c4d8-9565-4781-babd-ba9c8da38dd1,LIST_ACCOUNTS,xs2aListAccounts,true -41933,f879c4d8-9565-4781-babd-ba9c8da38dd1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41933,f879c4d8-9565-4781-babd-ba9c8da38dd1,LIST_TRANSACTIONS,xs2aListTransactions,true 41934,f879c4d8-9565-4781-babd-ba9c8da38dd1,AUTHORIZATION,,true 41935,f879c4d8-9565-4781-babd-ba9c8da38dd1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41936,f879c4d8-9565-4781-babd-ba9c8da38dd1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41937,f879c4d8-9565-4781-babd-ba9c8da38dd1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41938,19699b93-fc2d-437e-afd7-bbd5344c1a3f,LIST_ACCOUNTS,hbciListAccounts,false -41939,19699b93-fc2d-437e-afd7-bbd5344c1a3f,LIST_TRANSACTIONS,hbciListTransactions,false -41940,19699b93-fc2d-437e-afd7-bbd5344c1a3f,AUTHORIZATION,,false -41941,19699b93-fc2d-437e-afd7-bbd5344c1a3f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41942,19699b93-fc2d-437e-afd7-bbd5344c1a3f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41943,19699b93-fc2d-437e-afd7-bbd5344c1a3f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41938,ddb669f3-e54f-440f-af68-5d9b8b911ac3,LIST_ACCOUNTS,hbciListAccounts,false +41939,ddb669f3-e54f-440f-af68-5d9b8b911ac3,LIST_TRANSACTIONS,hbciListTransactions,false +41940,ddb669f3-e54f-440f-af68-5d9b8b911ac3,AUTHORIZATION,,false +41941,ddb669f3-e54f-440f-af68-5d9b8b911ac3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41942,ddb669f3-e54f-440f-af68-5d9b8b911ac3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41943,ddb669f3-e54f-440f-af68-5d9b8b911ac3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41944,2949e309-94f6-4af8-89ca-e848552fd4e7,LIST_ACCOUNTS,xs2aListAccounts,true -41945,2949e309-94f6-4af8-89ca-e848552fd4e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41945,2949e309-94f6-4af8-89ca-e848552fd4e7,LIST_TRANSACTIONS,xs2aListTransactions,true 41946,2949e309-94f6-4af8-89ca-e848552fd4e7,AUTHORIZATION,,true 41947,2949e309-94f6-4af8-89ca-e848552fd4e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41948,2949e309-94f6-4af8-89ca-e848552fd4e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41949,2949e309-94f6-4af8-89ca-e848552fd4e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41950,13394af0-753b-4806-bbad-1202838fc49c,LIST_ACCOUNTS,hbciListAccounts,false -41951,13394af0-753b-4806-bbad-1202838fc49c,LIST_TRANSACTIONS,hbciListTransactions,false -41952,13394af0-753b-4806-bbad-1202838fc49c,AUTHORIZATION,,false -41953,13394af0-753b-4806-bbad-1202838fc49c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41954,13394af0-753b-4806-bbad-1202838fc49c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41955,13394af0-753b-4806-bbad-1202838fc49c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41950,90b2fce5-8a46-4a55-b266-d3d4e73c5d1e,LIST_ACCOUNTS,hbciListAccounts,false +41951,90b2fce5-8a46-4a55-b266-d3d4e73c5d1e,LIST_TRANSACTIONS,hbciListTransactions,false +41952,90b2fce5-8a46-4a55-b266-d3d4e73c5d1e,AUTHORIZATION,,false +41953,90b2fce5-8a46-4a55-b266-d3d4e73c5d1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41954,90b2fce5-8a46-4a55-b266-d3d4e73c5d1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41955,90b2fce5-8a46-4a55-b266-d3d4e73c5d1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41956,461cc7cd-b6f6-4ed5-9e2c-6150e86fcc89,LIST_ACCOUNTS,xs2aListAccounts,true -41957,461cc7cd-b6f6-4ed5-9e2c-6150e86fcc89,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41957,461cc7cd-b6f6-4ed5-9e2c-6150e86fcc89,LIST_TRANSACTIONS,xs2aListTransactions,true 41958,461cc7cd-b6f6-4ed5-9e2c-6150e86fcc89,AUTHORIZATION,,true 41959,461cc7cd-b6f6-4ed5-9e2c-6150e86fcc89,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41960,461cc7cd-b6f6-4ed5-9e2c-6150e86fcc89,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41961,461cc7cd-b6f6-4ed5-9e2c-6150e86fcc89,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41962,0faff791-4c60-4aac-b861-c3f1b7e7c950,LIST_ACCOUNTS,hbciListAccounts,false -41963,0faff791-4c60-4aac-b861-c3f1b7e7c950,LIST_TRANSACTIONS,hbciListTransactions,false -41964,0faff791-4c60-4aac-b861-c3f1b7e7c950,AUTHORIZATION,,false -41965,0faff791-4c60-4aac-b861-c3f1b7e7c950,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41966,0faff791-4c60-4aac-b861-c3f1b7e7c950,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41967,0faff791-4c60-4aac-b861-c3f1b7e7c950,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41962,81d81241-a959-4684-b7c3-7d0ae564516c,LIST_ACCOUNTS,hbciListAccounts,false +41963,81d81241-a959-4684-b7c3-7d0ae564516c,LIST_TRANSACTIONS,hbciListTransactions,false +41964,81d81241-a959-4684-b7c3-7d0ae564516c,AUTHORIZATION,,false +41965,81d81241-a959-4684-b7c3-7d0ae564516c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41966,81d81241-a959-4684-b7c3-7d0ae564516c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41967,81d81241-a959-4684-b7c3-7d0ae564516c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41968,af5fd9f1-4c96-4dc3-9f2c-985f8198350c,LIST_ACCOUNTS,xs2aListAccounts,true -41969,af5fd9f1-4c96-4dc3-9f2c-985f8198350c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41969,af5fd9f1-4c96-4dc3-9f2c-985f8198350c,LIST_TRANSACTIONS,xs2aListTransactions,true 41970,af5fd9f1-4c96-4dc3-9f2c-985f8198350c,AUTHORIZATION,,true 41971,af5fd9f1-4c96-4dc3-9f2c-985f8198350c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41972,af5fd9f1-4c96-4dc3-9f2c-985f8198350c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41973,af5fd9f1-4c96-4dc3-9f2c-985f8198350c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41974,c259e585-b26e-462f-8fd8-f576321d1436,LIST_ACCOUNTS,hbciListAccounts,false -41975,c259e585-b26e-462f-8fd8-f576321d1436,LIST_TRANSACTIONS,hbciListTransactions,false -41976,c259e585-b26e-462f-8fd8-f576321d1436,AUTHORIZATION,,false -41977,c259e585-b26e-462f-8fd8-f576321d1436,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41978,c259e585-b26e-462f-8fd8-f576321d1436,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41979,c259e585-b26e-462f-8fd8-f576321d1436,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41974,fdcb2001-5ebf-4dfe-b99b-caa30db29c48,LIST_ACCOUNTS,hbciListAccounts,false +41975,fdcb2001-5ebf-4dfe-b99b-caa30db29c48,LIST_TRANSACTIONS,hbciListTransactions,false +41976,fdcb2001-5ebf-4dfe-b99b-caa30db29c48,AUTHORIZATION,,false +41977,fdcb2001-5ebf-4dfe-b99b-caa30db29c48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41978,fdcb2001-5ebf-4dfe-b99b-caa30db29c48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41979,fdcb2001-5ebf-4dfe-b99b-caa30db29c48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41980,832c88d1-de13-490a-b092-2c6fd234053d,LIST_ACCOUNTS,xs2aListAccounts,true -41981,832c88d1-de13-490a-b092-2c6fd234053d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41981,832c88d1-de13-490a-b092-2c6fd234053d,LIST_TRANSACTIONS,xs2aListTransactions,true 41982,832c88d1-de13-490a-b092-2c6fd234053d,AUTHORIZATION,,true 41983,832c88d1-de13-490a-b092-2c6fd234053d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41984,832c88d1-de13-490a-b092-2c6fd234053d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41985,832c88d1-de13-490a-b092-2c6fd234053d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41986,679b2a33-6b60-491e-9da1-90aa9a46fa12,LIST_ACCOUNTS,hbciListAccounts,false -41987,679b2a33-6b60-491e-9da1-90aa9a46fa12,LIST_TRANSACTIONS,hbciListTransactions,false -41988,679b2a33-6b60-491e-9da1-90aa9a46fa12,AUTHORIZATION,,false -41989,679b2a33-6b60-491e-9da1-90aa9a46fa12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -41990,679b2a33-6b60-491e-9da1-90aa9a46fa12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -41991,679b2a33-6b60-491e-9da1-90aa9a46fa12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41986,b9d71582-a201-46df-ad24-c3ad313efca9,LIST_ACCOUNTS,hbciListAccounts,false +41987,b9d71582-a201-46df-ad24-c3ad313efca9,LIST_TRANSACTIONS,hbciListTransactions,false +41988,b9d71582-a201-46df-ad24-c3ad313efca9,AUTHORIZATION,,false +41989,b9d71582-a201-46df-ad24-c3ad313efca9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +41990,b9d71582-a201-46df-ad24-c3ad313efca9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +41991,b9d71582-a201-46df-ad24-c3ad313efca9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 41992,66216b2a-cd61-4854-8428-10d9896d698b,LIST_ACCOUNTS,xs2aListAccounts,true -41993,66216b2a-cd61-4854-8428-10d9896d698b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +41993,66216b2a-cd61-4854-8428-10d9896d698b,LIST_TRANSACTIONS,xs2aListTransactions,true 41994,66216b2a-cd61-4854-8428-10d9896d698b,AUTHORIZATION,,true 41995,66216b2a-cd61-4854-8428-10d9896d698b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 41996,66216b2a-cd61-4854-8428-10d9896d698b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 41997,66216b2a-cd61-4854-8428-10d9896d698b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -41998,3fb19941-cdde-4afe-9df7-f89be4e494fe,LIST_ACCOUNTS,hbciListAccounts,false -41999,3fb19941-cdde-4afe-9df7-f89be4e494fe,LIST_TRANSACTIONS,hbciListTransactions,false -42000,3fb19941-cdde-4afe-9df7-f89be4e494fe,AUTHORIZATION,,false -42001,3fb19941-cdde-4afe-9df7-f89be4e494fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42002,3fb19941-cdde-4afe-9df7-f89be4e494fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42003,3fb19941-cdde-4afe-9df7-f89be4e494fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +41998,903fa0f2-8a5f-4b08-94d7-dc1c3dd27471,LIST_ACCOUNTS,hbciListAccounts,false +41999,903fa0f2-8a5f-4b08-94d7-dc1c3dd27471,LIST_TRANSACTIONS,hbciListTransactions,false +42000,903fa0f2-8a5f-4b08-94d7-dc1c3dd27471,AUTHORIZATION,,false +42001,903fa0f2-8a5f-4b08-94d7-dc1c3dd27471,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42002,903fa0f2-8a5f-4b08-94d7-dc1c3dd27471,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42003,903fa0f2-8a5f-4b08-94d7-dc1c3dd27471,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42004,44f36a56-292a-4b13-b6d9-44e7e9ce7426,LIST_ACCOUNTS,xs2aListAccounts,true -42005,44f36a56-292a-4b13-b6d9-44e7e9ce7426,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42005,44f36a56-292a-4b13-b6d9-44e7e9ce7426,LIST_TRANSACTIONS,xs2aListTransactions,true 42006,44f36a56-292a-4b13-b6d9-44e7e9ce7426,AUTHORIZATION,,true 42007,44f36a56-292a-4b13-b6d9-44e7e9ce7426,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42008,44f36a56-292a-4b13-b6d9-44e7e9ce7426,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42009,44f36a56-292a-4b13-b6d9-44e7e9ce7426,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42010,6530a38f-4f37-409c-80cb-87390ed08c7b,LIST_ACCOUNTS,hbciListAccounts,false -42011,6530a38f-4f37-409c-80cb-87390ed08c7b,LIST_TRANSACTIONS,hbciListTransactions,false -42012,6530a38f-4f37-409c-80cb-87390ed08c7b,AUTHORIZATION,,false -42013,6530a38f-4f37-409c-80cb-87390ed08c7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42014,6530a38f-4f37-409c-80cb-87390ed08c7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42015,6530a38f-4f37-409c-80cb-87390ed08c7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42010,534278fc-4c67-4195-88de-74ae9e74b381,LIST_ACCOUNTS,hbciListAccounts,false +42011,534278fc-4c67-4195-88de-74ae9e74b381,LIST_TRANSACTIONS,hbciListTransactions,false +42012,534278fc-4c67-4195-88de-74ae9e74b381,AUTHORIZATION,,false +42013,534278fc-4c67-4195-88de-74ae9e74b381,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42014,534278fc-4c67-4195-88de-74ae9e74b381,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42015,534278fc-4c67-4195-88de-74ae9e74b381,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42016,8981c50e-2b54-4903-8152-2acb34f127fe,LIST_ACCOUNTS,xs2aListAccounts,true -42017,8981c50e-2b54-4903-8152-2acb34f127fe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42017,8981c50e-2b54-4903-8152-2acb34f127fe,LIST_TRANSACTIONS,xs2aListTransactions,true 42018,8981c50e-2b54-4903-8152-2acb34f127fe,AUTHORIZATION,,true 42019,8981c50e-2b54-4903-8152-2acb34f127fe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42020,8981c50e-2b54-4903-8152-2acb34f127fe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42021,8981c50e-2b54-4903-8152-2acb34f127fe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42022,2d0a78b7-86de-474d-8e18-7dea598d1f30,LIST_ACCOUNTS,hbciListAccounts,false -42023,2d0a78b7-86de-474d-8e18-7dea598d1f30,LIST_TRANSACTIONS,hbciListTransactions,false -42024,2d0a78b7-86de-474d-8e18-7dea598d1f30,AUTHORIZATION,,false -42025,2d0a78b7-86de-474d-8e18-7dea598d1f30,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42026,2d0a78b7-86de-474d-8e18-7dea598d1f30,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42027,2d0a78b7-86de-474d-8e18-7dea598d1f30,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42022,45935289-ae6e-48df-96ec-8097922a1354,LIST_ACCOUNTS,hbciListAccounts,false +42023,45935289-ae6e-48df-96ec-8097922a1354,LIST_TRANSACTIONS,hbciListTransactions,false +42024,45935289-ae6e-48df-96ec-8097922a1354,AUTHORIZATION,,false +42025,45935289-ae6e-48df-96ec-8097922a1354,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42026,45935289-ae6e-48df-96ec-8097922a1354,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42027,45935289-ae6e-48df-96ec-8097922a1354,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42028,abd71674-3143-4391-bbce-2dfc473874b0,LIST_ACCOUNTS,xs2aListAccounts,true -42029,abd71674-3143-4391-bbce-2dfc473874b0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42029,abd71674-3143-4391-bbce-2dfc473874b0,LIST_TRANSACTIONS,xs2aListTransactions,true 42030,abd71674-3143-4391-bbce-2dfc473874b0,AUTHORIZATION,,true 42031,abd71674-3143-4391-bbce-2dfc473874b0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42032,abd71674-3143-4391-bbce-2dfc473874b0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42033,abd71674-3143-4391-bbce-2dfc473874b0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42034,b8c44db2-ca12-45b1-b914-f96664a6a1fc,LIST_ACCOUNTS,hbciListAccounts,false -42035,b8c44db2-ca12-45b1-b914-f96664a6a1fc,LIST_TRANSACTIONS,hbciListTransactions,false -42036,b8c44db2-ca12-45b1-b914-f96664a6a1fc,AUTHORIZATION,,false -42037,b8c44db2-ca12-45b1-b914-f96664a6a1fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42038,b8c44db2-ca12-45b1-b914-f96664a6a1fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42039,b8c44db2-ca12-45b1-b914-f96664a6a1fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42034,cddc8044-5b45-44b0-b8e5-b584c1e1b052,LIST_ACCOUNTS,hbciListAccounts,false +42035,cddc8044-5b45-44b0-b8e5-b584c1e1b052,LIST_TRANSACTIONS,hbciListTransactions,false +42036,cddc8044-5b45-44b0-b8e5-b584c1e1b052,AUTHORIZATION,,false +42037,cddc8044-5b45-44b0-b8e5-b584c1e1b052,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42038,cddc8044-5b45-44b0-b8e5-b584c1e1b052,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42039,cddc8044-5b45-44b0-b8e5-b584c1e1b052,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42040,a0e1d5fe-5815-43f4-aa54-06c8e3ba5eaa,LIST_ACCOUNTS,xs2aListAccounts,true -42041,a0e1d5fe-5815-43f4-aa54-06c8e3ba5eaa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42041,a0e1d5fe-5815-43f4-aa54-06c8e3ba5eaa,LIST_TRANSACTIONS,xs2aListTransactions,true 42042,a0e1d5fe-5815-43f4-aa54-06c8e3ba5eaa,AUTHORIZATION,,true 42043,a0e1d5fe-5815-43f4-aa54-06c8e3ba5eaa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42044,a0e1d5fe-5815-43f4-aa54-06c8e3ba5eaa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42045,a0e1d5fe-5815-43f4-aa54-06c8e3ba5eaa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42046,e4ee31f4-bf08-462d-a8b3-61c3b69d2dc5,LIST_ACCOUNTS,hbciListAccounts,false -42047,e4ee31f4-bf08-462d-a8b3-61c3b69d2dc5,LIST_TRANSACTIONS,hbciListTransactions,false -42048,e4ee31f4-bf08-462d-a8b3-61c3b69d2dc5,AUTHORIZATION,,false -42049,e4ee31f4-bf08-462d-a8b3-61c3b69d2dc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42050,e4ee31f4-bf08-462d-a8b3-61c3b69d2dc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42051,e4ee31f4-bf08-462d-a8b3-61c3b69d2dc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42046,925f566b-f8b2-4f6d-bbe9-f4ab2a3b04d8,LIST_ACCOUNTS,hbciListAccounts,false +42047,925f566b-f8b2-4f6d-bbe9-f4ab2a3b04d8,LIST_TRANSACTIONS,hbciListTransactions,false +42048,925f566b-f8b2-4f6d-bbe9-f4ab2a3b04d8,AUTHORIZATION,,false +42049,925f566b-f8b2-4f6d-bbe9-f4ab2a3b04d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42050,925f566b-f8b2-4f6d-bbe9-f4ab2a3b04d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42051,925f566b-f8b2-4f6d-bbe9-f4ab2a3b04d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42052,2b35ec96-76d1-4f62-a630-6785e315b3a4,LIST_ACCOUNTS,xs2aListAccounts,true -42053,2b35ec96-76d1-4f62-a630-6785e315b3a4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42053,2b35ec96-76d1-4f62-a630-6785e315b3a4,LIST_TRANSACTIONS,xs2aListTransactions,true 42054,2b35ec96-76d1-4f62-a630-6785e315b3a4,AUTHORIZATION,,true 42055,2b35ec96-76d1-4f62-a630-6785e315b3a4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42056,2b35ec96-76d1-4f62-a630-6785e315b3a4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42057,2b35ec96-76d1-4f62-a630-6785e315b3a4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42058,6556a194-3bc4-486f-894e-1e3f74a45139,LIST_ACCOUNTS,hbciListAccounts,false -42059,6556a194-3bc4-486f-894e-1e3f74a45139,LIST_TRANSACTIONS,hbciListTransactions,false -42060,6556a194-3bc4-486f-894e-1e3f74a45139,AUTHORIZATION,,false -42061,6556a194-3bc4-486f-894e-1e3f74a45139,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42062,6556a194-3bc4-486f-894e-1e3f74a45139,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42063,6556a194-3bc4-486f-894e-1e3f74a45139,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42058,85f9e438-8aac-4462-9146-296462e039c0,LIST_ACCOUNTS,hbciListAccounts,false +42059,85f9e438-8aac-4462-9146-296462e039c0,LIST_TRANSACTIONS,hbciListTransactions,false +42060,85f9e438-8aac-4462-9146-296462e039c0,AUTHORIZATION,,false +42061,85f9e438-8aac-4462-9146-296462e039c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42062,85f9e438-8aac-4462-9146-296462e039c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42063,85f9e438-8aac-4462-9146-296462e039c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42064,2ab99455-85ef-4bd6-bf77-0d7538c9d090,LIST_ACCOUNTS,xs2aListAccounts,true -42065,2ab99455-85ef-4bd6-bf77-0d7538c9d090,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42065,2ab99455-85ef-4bd6-bf77-0d7538c9d090,LIST_TRANSACTIONS,xs2aListTransactions,true 42066,2ab99455-85ef-4bd6-bf77-0d7538c9d090,AUTHORIZATION,,true 42067,2ab99455-85ef-4bd6-bf77-0d7538c9d090,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42068,2ab99455-85ef-4bd6-bf77-0d7538c9d090,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42069,2ab99455-85ef-4bd6-bf77-0d7538c9d090,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42070,3d46d4c3-7e27-4e42-8f5a-6cf791335c3d,LIST_ACCOUNTS,hbciListAccounts,false -42071,3d46d4c3-7e27-4e42-8f5a-6cf791335c3d,LIST_TRANSACTIONS,hbciListTransactions,false -42072,3d46d4c3-7e27-4e42-8f5a-6cf791335c3d,AUTHORIZATION,,false -42073,3d46d4c3-7e27-4e42-8f5a-6cf791335c3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42074,3d46d4c3-7e27-4e42-8f5a-6cf791335c3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42075,3d46d4c3-7e27-4e42-8f5a-6cf791335c3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42070,9ac83fdd-103e-4edf-895a-d7705c4e71cb,LIST_ACCOUNTS,hbciListAccounts,false +42071,9ac83fdd-103e-4edf-895a-d7705c4e71cb,LIST_TRANSACTIONS,hbciListTransactions,false +42072,9ac83fdd-103e-4edf-895a-d7705c4e71cb,AUTHORIZATION,,false +42073,9ac83fdd-103e-4edf-895a-d7705c4e71cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42074,9ac83fdd-103e-4edf-895a-d7705c4e71cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42075,9ac83fdd-103e-4edf-895a-d7705c4e71cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42076,55f963cc-98fa-4aec-99eb-03c950a644a9,LIST_ACCOUNTS,xs2aListAccounts,true -42077,55f963cc-98fa-4aec-99eb-03c950a644a9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42077,55f963cc-98fa-4aec-99eb-03c950a644a9,LIST_TRANSACTIONS,xs2aListTransactions,true 42078,55f963cc-98fa-4aec-99eb-03c950a644a9,AUTHORIZATION,,true 42079,55f963cc-98fa-4aec-99eb-03c950a644a9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42080,55f963cc-98fa-4aec-99eb-03c950a644a9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42081,55f963cc-98fa-4aec-99eb-03c950a644a9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42082,f6929a9e-8ef4-4cda-8002-d919188bbc7f,LIST_ACCOUNTS,hbciListAccounts,false -42083,f6929a9e-8ef4-4cda-8002-d919188bbc7f,LIST_TRANSACTIONS,hbciListTransactions,false -42084,f6929a9e-8ef4-4cda-8002-d919188bbc7f,AUTHORIZATION,,false -42085,f6929a9e-8ef4-4cda-8002-d919188bbc7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42086,f6929a9e-8ef4-4cda-8002-d919188bbc7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42087,f6929a9e-8ef4-4cda-8002-d919188bbc7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42082,c24d9cd4-4b5e-4b17-9957-cb34bb95a9e3,LIST_ACCOUNTS,hbciListAccounts,false +42083,c24d9cd4-4b5e-4b17-9957-cb34bb95a9e3,LIST_TRANSACTIONS,hbciListTransactions,false +42084,c24d9cd4-4b5e-4b17-9957-cb34bb95a9e3,AUTHORIZATION,,false +42085,c24d9cd4-4b5e-4b17-9957-cb34bb95a9e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42086,c24d9cd4-4b5e-4b17-9957-cb34bb95a9e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42087,c24d9cd4-4b5e-4b17-9957-cb34bb95a9e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42088,88a23e82-764c-45cf-a8c6-7620976a6aa3,LIST_ACCOUNTS,xs2aListAccounts,true -42089,88a23e82-764c-45cf-a8c6-7620976a6aa3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42089,88a23e82-764c-45cf-a8c6-7620976a6aa3,LIST_TRANSACTIONS,xs2aListTransactions,true 42090,88a23e82-764c-45cf-a8c6-7620976a6aa3,AUTHORIZATION,,true 42091,88a23e82-764c-45cf-a8c6-7620976a6aa3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42092,88a23e82-764c-45cf-a8c6-7620976a6aa3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42093,88a23e82-764c-45cf-a8c6-7620976a6aa3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42094,dc92f52e-b988-4b14-bc52-ea813eeb21ac,LIST_ACCOUNTS,hbciListAccounts,false -42095,dc92f52e-b988-4b14-bc52-ea813eeb21ac,LIST_TRANSACTIONS,hbciListTransactions,false -42096,dc92f52e-b988-4b14-bc52-ea813eeb21ac,AUTHORIZATION,,false -42097,dc92f52e-b988-4b14-bc52-ea813eeb21ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42098,dc92f52e-b988-4b14-bc52-ea813eeb21ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42099,dc92f52e-b988-4b14-bc52-ea813eeb21ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42094,69308912-0e79-451c-b3be-1f7a6eca92b7,LIST_ACCOUNTS,hbciListAccounts,false +42095,69308912-0e79-451c-b3be-1f7a6eca92b7,LIST_TRANSACTIONS,hbciListTransactions,false +42096,69308912-0e79-451c-b3be-1f7a6eca92b7,AUTHORIZATION,,false +42097,69308912-0e79-451c-b3be-1f7a6eca92b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42098,69308912-0e79-451c-b3be-1f7a6eca92b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42099,69308912-0e79-451c-b3be-1f7a6eca92b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42100,fbc276fc-cfa1-44f3-bf84-a078206217ec,LIST_ACCOUNTS,xs2aListAccounts,true -42101,fbc276fc-cfa1-44f3-bf84-a078206217ec,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42101,fbc276fc-cfa1-44f3-bf84-a078206217ec,LIST_TRANSACTIONS,xs2aListTransactions,true 42102,fbc276fc-cfa1-44f3-bf84-a078206217ec,AUTHORIZATION,,true 42103,fbc276fc-cfa1-44f3-bf84-a078206217ec,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42104,fbc276fc-cfa1-44f3-bf84-a078206217ec,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42105,fbc276fc-cfa1-44f3-bf84-a078206217ec,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42106,0b29e2f7-72e6-42b5-bf33-2e48a8187778,LIST_ACCOUNTS,hbciListAccounts,false -42107,0b29e2f7-72e6-42b5-bf33-2e48a8187778,LIST_TRANSACTIONS,hbciListTransactions,false -42108,0b29e2f7-72e6-42b5-bf33-2e48a8187778,AUTHORIZATION,,false -42109,0b29e2f7-72e6-42b5-bf33-2e48a8187778,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42110,0b29e2f7-72e6-42b5-bf33-2e48a8187778,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42111,0b29e2f7-72e6-42b5-bf33-2e48a8187778,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42106,e3d2e214-884a-4226-aa53-1ef38b854e4b,LIST_ACCOUNTS,hbciListAccounts,false +42107,e3d2e214-884a-4226-aa53-1ef38b854e4b,LIST_TRANSACTIONS,hbciListTransactions,false +42108,e3d2e214-884a-4226-aa53-1ef38b854e4b,AUTHORIZATION,,false +42109,e3d2e214-884a-4226-aa53-1ef38b854e4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42110,e3d2e214-884a-4226-aa53-1ef38b854e4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42111,e3d2e214-884a-4226-aa53-1ef38b854e4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42112,aeeea5ee-7130-4cae-9aea-559bff5d8dbd,LIST_ACCOUNTS,xs2aListAccounts,true -42113,aeeea5ee-7130-4cae-9aea-559bff5d8dbd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42113,aeeea5ee-7130-4cae-9aea-559bff5d8dbd,LIST_TRANSACTIONS,xs2aListTransactions,true 42114,aeeea5ee-7130-4cae-9aea-559bff5d8dbd,AUTHORIZATION,,true 42115,aeeea5ee-7130-4cae-9aea-559bff5d8dbd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42116,aeeea5ee-7130-4cae-9aea-559bff5d8dbd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42117,aeeea5ee-7130-4cae-9aea-559bff5d8dbd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42118,cee540ef-6f53-490c-9463-3d9e805fe825,LIST_ACCOUNTS,hbciListAccounts,false -42119,cee540ef-6f53-490c-9463-3d9e805fe825,LIST_TRANSACTIONS,hbciListTransactions,false -42120,cee540ef-6f53-490c-9463-3d9e805fe825,AUTHORIZATION,,false -42121,cee540ef-6f53-490c-9463-3d9e805fe825,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42122,cee540ef-6f53-490c-9463-3d9e805fe825,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42123,cee540ef-6f53-490c-9463-3d9e805fe825,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42118,d49a7465-fe7c-4cee-a8c1-9455844fae42,LIST_ACCOUNTS,hbciListAccounts,false +42119,d49a7465-fe7c-4cee-a8c1-9455844fae42,LIST_TRANSACTIONS,hbciListTransactions,false +42120,d49a7465-fe7c-4cee-a8c1-9455844fae42,AUTHORIZATION,,false +42121,d49a7465-fe7c-4cee-a8c1-9455844fae42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42122,d49a7465-fe7c-4cee-a8c1-9455844fae42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42123,d49a7465-fe7c-4cee-a8c1-9455844fae42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42124,318efc1d-511a-4e12-a0a8-ab1192cfa8d7,LIST_ACCOUNTS,xs2aListAccounts,true -42125,318efc1d-511a-4e12-a0a8-ab1192cfa8d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42125,318efc1d-511a-4e12-a0a8-ab1192cfa8d7,LIST_TRANSACTIONS,xs2aListTransactions,true 42126,318efc1d-511a-4e12-a0a8-ab1192cfa8d7,AUTHORIZATION,,true 42127,318efc1d-511a-4e12-a0a8-ab1192cfa8d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42128,318efc1d-511a-4e12-a0a8-ab1192cfa8d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42129,318efc1d-511a-4e12-a0a8-ab1192cfa8d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42130,0c489046-11bf-4fbe-9bb4-33b1aa281ae1,LIST_ACCOUNTS,hbciListAccounts,false -42131,0c489046-11bf-4fbe-9bb4-33b1aa281ae1,LIST_TRANSACTIONS,hbciListTransactions,false -42132,0c489046-11bf-4fbe-9bb4-33b1aa281ae1,AUTHORIZATION,,false -42133,0c489046-11bf-4fbe-9bb4-33b1aa281ae1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42134,0c489046-11bf-4fbe-9bb4-33b1aa281ae1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42135,0c489046-11bf-4fbe-9bb4-33b1aa281ae1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42130,2beba6bf-cda2-4598-9b44-0b4e98a9a520,LIST_ACCOUNTS,hbciListAccounts,false +42131,2beba6bf-cda2-4598-9b44-0b4e98a9a520,LIST_TRANSACTIONS,hbciListTransactions,false +42132,2beba6bf-cda2-4598-9b44-0b4e98a9a520,AUTHORIZATION,,false +42133,2beba6bf-cda2-4598-9b44-0b4e98a9a520,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42134,2beba6bf-cda2-4598-9b44-0b4e98a9a520,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42135,2beba6bf-cda2-4598-9b44-0b4e98a9a520,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42136,b54873dc-8172-464c-8d1a-f7bf29050a0a,LIST_ACCOUNTS,xs2aListAccounts,true -42137,b54873dc-8172-464c-8d1a-f7bf29050a0a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42137,b54873dc-8172-464c-8d1a-f7bf29050a0a,LIST_TRANSACTIONS,xs2aListTransactions,true 42138,b54873dc-8172-464c-8d1a-f7bf29050a0a,AUTHORIZATION,,true 42139,b54873dc-8172-464c-8d1a-f7bf29050a0a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42140,b54873dc-8172-464c-8d1a-f7bf29050a0a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42141,b54873dc-8172-464c-8d1a-f7bf29050a0a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42142,0c9dcb6e-32b5-4b17-9648-3729c74a7a27,LIST_ACCOUNTS,hbciListAccounts,false -42143,0c9dcb6e-32b5-4b17-9648-3729c74a7a27,LIST_TRANSACTIONS,hbciListTransactions,false -42144,0c9dcb6e-32b5-4b17-9648-3729c74a7a27,AUTHORIZATION,,false -42145,0c9dcb6e-32b5-4b17-9648-3729c74a7a27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42146,0c9dcb6e-32b5-4b17-9648-3729c74a7a27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42147,0c9dcb6e-32b5-4b17-9648-3729c74a7a27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42142,7ef9fe18-68c0-4a7b-85ec-af463afddddc,LIST_ACCOUNTS,hbciListAccounts,false +42143,7ef9fe18-68c0-4a7b-85ec-af463afddddc,LIST_TRANSACTIONS,hbciListTransactions,false +42144,7ef9fe18-68c0-4a7b-85ec-af463afddddc,AUTHORIZATION,,false +42145,7ef9fe18-68c0-4a7b-85ec-af463afddddc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42146,7ef9fe18-68c0-4a7b-85ec-af463afddddc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42147,7ef9fe18-68c0-4a7b-85ec-af463afddddc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42148,e5545acf-7084-44a7-ba1c-6ddd77fe092b,LIST_ACCOUNTS,xs2aListAccounts,true -42149,e5545acf-7084-44a7-ba1c-6ddd77fe092b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42149,e5545acf-7084-44a7-ba1c-6ddd77fe092b,LIST_TRANSACTIONS,xs2aListTransactions,true 42150,e5545acf-7084-44a7-ba1c-6ddd77fe092b,AUTHORIZATION,,true 42151,e5545acf-7084-44a7-ba1c-6ddd77fe092b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42152,e5545acf-7084-44a7-ba1c-6ddd77fe092b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42153,e5545acf-7084-44a7-ba1c-6ddd77fe092b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42154,364c904e-f18c-44dc-b50c-8657bc98ca45,LIST_ACCOUNTS,hbciListAccounts,false -42155,364c904e-f18c-44dc-b50c-8657bc98ca45,LIST_TRANSACTIONS,hbciListTransactions,false -42156,364c904e-f18c-44dc-b50c-8657bc98ca45,AUTHORIZATION,,false -42157,364c904e-f18c-44dc-b50c-8657bc98ca45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42158,364c904e-f18c-44dc-b50c-8657bc98ca45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42159,364c904e-f18c-44dc-b50c-8657bc98ca45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42154,2678eb8f-569c-4a3f-91b4-bc8fa3263478,LIST_ACCOUNTS,hbciListAccounts,false +42155,2678eb8f-569c-4a3f-91b4-bc8fa3263478,LIST_TRANSACTIONS,hbciListTransactions,false +42156,2678eb8f-569c-4a3f-91b4-bc8fa3263478,AUTHORIZATION,,false +42157,2678eb8f-569c-4a3f-91b4-bc8fa3263478,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42158,2678eb8f-569c-4a3f-91b4-bc8fa3263478,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42159,2678eb8f-569c-4a3f-91b4-bc8fa3263478,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42160,f308093d-d664-46df-af4f-302ef6a5a3c2,LIST_ACCOUNTS,xs2aListAccounts,true -42161,f308093d-d664-46df-af4f-302ef6a5a3c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42161,f308093d-d664-46df-af4f-302ef6a5a3c2,LIST_TRANSACTIONS,xs2aListTransactions,true 42162,f308093d-d664-46df-af4f-302ef6a5a3c2,AUTHORIZATION,,true 42163,f308093d-d664-46df-af4f-302ef6a5a3c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42164,f308093d-d664-46df-af4f-302ef6a5a3c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42165,f308093d-d664-46df-af4f-302ef6a5a3c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42166,0a0e08f6-1cd1-4958-b047-a2a7663fb37b,LIST_ACCOUNTS,hbciListAccounts,false -42167,0a0e08f6-1cd1-4958-b047-a2a7663fb37b,LIST_TRANSACTIONS,hbciListTransactions,false -42168,0a0e08f6-1cd1-4958-b047-a2a7663fb37b,AUTHORIZATION,,false -42169,0a0e08f6-1cd1-4958-b047-a2a7663fb37b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42170,0a0e08f6-1cd1-4958-b047-a2a7663fb37b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42171,0a0e08f6-1cd1-4958-b047-a2a7663fb37b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42166,03e4411f-f444-465f-af61-e2fa3ea58039,LIST_ACCOUNTS,hbciListAccounts,false +42167,03e4411f-f444-465f-af61-e2fa3ea58039,LIST_TRANSACTIONS,hbciListTransactions,false +42168,03e4411f-f444-465f-af61-e2fa3ea58039,AUTHORIZATION,,false +42169,03e4411f-f444-465f-af61-e2fa3ea58039,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42170,03e4411f-f444-465f-af61-e2fa3ea58039,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42171,03e4411f-f444-465f-af61-e2fa3ea58039,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42172,f68039c3-cf06-4412-b686-c91200f06cbb,LIST_ACCOUNTS,xs2aListAccounts,true -42173,f68039c3-cf06-4412-b686-c91200f06cbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42173,f68039c3-cf06-4412-b686-c91200f06cbb,LIST_TRANSACTIONS,xs2aListTransactions,true 42174,f68039c3-cf06-4412-b686-c91200f06cbb,AUTHORIZATION,,true 42175,f68039c3-cf06-4412-b686-c91200f06cbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42176,f68039c3-cf06-4412-b686-c91200f06cbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42177,f68039c3-cf06-4412-b686-c91200f06cbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42178,704a4fc9-ad20-4fdb-b261-22ed00e640bf,LIST_ACCOUNTS,hbciListAccounts,false -42179,704a4fc9-ad20-4fdb-b261-22ed00e640bf,LIST_TRANSACTIONS,hbciListTransactions,false -42180,704a4fc9-ad20-4fdb-b261-22ed00e640bf,AUTHORIZATION,,false -42181,704a4fc9-ad20-4fdb-b261-22ed00e640bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42182,704a4fc9-ad20-4fdb-b261-22ed00e640bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42183,704a4fc9-ad20-4fdb-b261-22ed00e640bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42178,9837fe05-eee5-4ead-adc0-310cf9c40244,LIST_ACCOUNTS,hbciListAccounts,false +42179,9837fe05-eee5-4ead-adc0-310cf9c40244,LIST_TRANSACTIONS,hbciListTransactions,false +42180,9837fe05-eee5-4ead-adc0-310cf9c40244,AUTHORIZATION,,false +42181,9837fe05-eee5-4ead-adc0-310cf9c40244,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42182,9837fe05-eee5-4ead-adc0-310cf9c40244,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42183,9837fe05-eee5-4ead-adc0-310cf9c40244,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42184,855bce9c-6443-4c69-8292-8990de96fe80,LIST_ACCOUNTS,xs2aListAccounts,true -42185,855bce9c-6443-4c69-8292-8990de96fe80,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42185,855bce9c-6443-4c69-8292-8990de96fe80,LIST_TRANSACTIONS,xs2aListTransactions,true 42186,855bce9c-6443-4c69-8292-8990de96fe80,AUTHORIZATION,,true 42187,855bce9c-6443-4c69-8292-8990de96fe80,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42188,855bce9c-6443-4c69-8292-8990de96fe80,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42189,855bce9c-6443-4c69-8292-8990de96fe80,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42190,8e91566e-0541-4755-9563-32a8b4278a20,LIST_ACCOUNTS,hbciListAccounts,false -42191,8e91566e-0541-4755-9563-32a8b4278a20,LIST_TRANSACTIONS,hbciListTransactions,false -42192,8e91566e-0541-4755-9563-32a8b4278a20,AUTHORIZATION,,false -42193,8e91566e-0541-4755-9563-32a8b4278a20,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42194,8e91566e-0541-4755-9563-32a8b4278a20,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42195,8e91566e-0541-4755-9563-32a8b4278a20,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42190,69e609ee-a328-4695-bd82-46df24a26dc8,LIST_ACCOUNTS,hbciListAccounts,false +42191,69e609ee-a328-4695-bd82-46df24a26dc8,LIST_TRANSACTIONS,hbciListTransactions,false +42192,69e609ee-a328-4695-bd82-46df24a26dc8,AUTHORIZATION,,false +42193,69e609ee-a328-4695-bd82-46df24a26dc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42194,69e609ee-a328-4695-bd82-46df24a26dc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42195,69e609ee-a328-4695-bd82-46df24a26dc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42196,79846d70-43bd-4dab-a420-5fb7cb3061be,LIST_ACCOUNTS,xs2aListAccounts,true -42197,79846d70-43bd-4dab-a420-5fb7cb3061be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42197,79846d70-43bd-4dab-a420-5fb7cb3061be,LIST_TRANSACTIONS,xs2aListTransactions,true 42198,79846d70-43bd-4dab-a420-5fb7cb3061be,AUTHORIZATION,,true 42199,79846d70-43bd-4dab-a420-5fb7cb3061be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42200,79846d70-43bd-4dab-a420-5fb7cb3061be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42201,79846d70-43bd-4dab-a420-5fb7cb3061be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42202,269fd09b-06cc-45e4-a8c9-2466c3145d6f,LIST_ACCOUNTS,hbciListAccounts,false -42203,269fd09b-06cc-45e4-a8c9-2466c3145d6f,LIST_TRANSACTIONS,hbciListTransactions,false -42204,269fd09b-06cc-45e4-a8c9-2466c3145d6f,AUTHORIZATION,,false -42205,269fd09b-06cc-45e4-a8c9-2466c3145d6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42206,269fd09b-06cc-45e4-a8c9-2466c3145d6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42207,269fd09b-06cc-45e4-a8c9-2466c3145d6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42202,987116e9-df7e-4cf5-9818-79a8bec38649,LIST_ACCOUNTS,hbciListAccounts,false +42203,987116e9-df7e-4cf5-9818-79a8bec38649,LIST_TRANSACTIONS,hbciListTransactions,false +42204,987116e9-df7e-4cf5-9818-79a8bec38649,AUTHORIZATION,,false +42205,987116e9-df7e-4cf5-9818-79a8bec38649,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42206,987116e9-df7e-4cf5-9818-79a8bec38649,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42207,987116e9-df7e-4cf5-9818-79a8bec38649,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42208,0ec26362-72ac-4f7c-8798-37d8328c8749,LIST_ACCOUNTS,xs2aListAccounts,true -42209,0ec26362-72ac-4f7c-8798-37d8328c8749,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42209,0ec26362-72ac-4f7c-8798-37d8328c8749,LIST_TRANSACTIONS,xs2aListTransactions,true 42210,0ec26362-72ac-4f7c-8798-37d8328c8749,AUTHORIZATION,,true 42211,0ec26362-72ac-4f7c-8798-37d8328c8749,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42212,0ec26362-72ac-4f7c-8798-37d8328c8749,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42213,0ec26362-72ac-4f7c-8798-37d8328c8749,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42214,846b57a6-9f2f-433c-89b9-f4aac49e3418,LIST_ACCOUNTS,hbciListAccounts,false -42215,846b57a6-9f2f-433c-89b9-f4aac49e3418,LIST_TRANSACTIONS,hbciListTransactions,false -42216,846b57a6-9f2f-433c-89b9-f4aac49e3418,AUTHORIZATION,,false -42217,846b57a6-9f2f-433c-89b9-f4aac49e3418,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42218,846b57a6-9f2f-433c-89b9-f4aac49e3418,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42219,846b57a6-9f2f-433c-89b9-f4aac49e3418,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42214,91f059a9-def6-45bc-b88a-78d22fd1925f,LIST_ACCOUNTS,hbciListAccounts,false +42215,91f059a9-def6-45bc-b88a-78d22fd1925f,LIST_TRANSACTIONS,hbciListTransactions,false +42216,91f059a9-def6-45bc-b88a-78d22fd1925f,AUTHORIZATION,,false +42217,91f059a9-def6-45bc-b88a-78d22fd1925f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42218,91f059a9-def6-45bc-b88a-78d22fd1925f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42219,91f059a9-def6-45bc-b88a-78d22fd1925f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42220,f4d70e22-9199-48a1-acfe-617588f5d847,LIST_ACCOUNTS,xs2aListAccounts,true -42221,f4d70e22-9199-48a1-acfe-617588f5d847,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42221,f4d70e22-9199-48a1-acfe-617588f5d847,LIST_TRANSACTIONS,xs2aListTransactions,true 42222,f4d70e22-9199-48a1-acfe-617588f5d847,AUTHORIZATION,,true 42223,f4d70e22-9199-48a1-acfe-617588f5d847,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42224,f4d70e22-9199-48a1-acfe-617588f5d847,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42225,f4d70e22-9199-48a1-acfe-617588f5d847,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42226,e2bfab56-90f1-4675-ad6d-40a60c86f5ed,LIST_ACCOUNTS,hbciListAccounts,false -42227,e2bfab56-90f1-4675-ad6d-40a60c86f5ed,LIST_TRANSACTIONS,hbciListTransactions,false -42228,e2bfab56-90f1-4675-ad6d-40a60c86f5ed,AUTHORIZATION,,false -42229,e2bfab56-90f1-4675-ad6d-40a60c86f5ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42230,e2bfab56-90f1-4675-ad6d-40a60c86f5ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42231,e2bfab56-90f1-4675-ad6d-40a60c86f5ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42226,0fc8e92b-7a65-4b0c-9be9-a7998ae78f4e,LIST_ACCOUNTS,hbciListAccounts,false +42227,0fc8e92b-7a65-4b0c-9be9-a7998ae78f4e,LIST_TRANSACTIONS,hbciListTransactions,false +42228,0fc8e92b-7a65-4b0c-9be9-a7998ae78f4e,AUTHORIZATION,,false +42229,0fc8e92b-7a65-4b0c-9be9-a7998ae78f4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42230,0fc8e92b-7a65-4b0c-9be9-a7998ae78f4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42231,0fc8e92b-7a65-4b0c-9be9-a7998ae78f4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42232,97f1ae1f-554b-4031-baa4-daf73f7ce982,LIST_ACCOUNTS,xs2aListAccounts,true -42233,97f1ae1f-554b-4031-baa4-daf73f7ce982,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42233,97f1ae1f-554b-4031-baa4-daf73f7ce982,LIST_TRANSACTIONS,xs2aListTransactions,true 42234,97f1ae1f-554b-4031-baa4-daf73f7ce982,AUTHORIZATION,,true 42235,97f1ae1f-554b-4031-baa4-daf73f7ce982,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42236,97f1ae1f-554b-4031-baa4-daf73f7ce982,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42237,97f1ae1f-554b-4031-baa4-daf73f7ce982,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42238,1a63748f-c6d4-4efd-bcd7-40e4c769b0c4,LIST_ACCOUNTS,hbciListAccounts,false -42239,1a63748f-c6d4-4efd-bcd7-40e4c769b0c4,LIST_TRANSACTIONS,hbciListTransactions,false -42240,1a63748f-c6d4-4efd-bcd7-40e4c769b0c4,AUTHORIZATION,,false -42241,1a63748f-c6d4-4efd-bcd7-40e4c769b0c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42242,1a63748f-c6d4-4efd-bcd7-40e4c769b0c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42243,1a63748f-c6d4-4efd-bcd7-40e4c769b0c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42238,58256954-446f-459c-bcd7-e0e4bf7f993c,LIST_ACCOUNTS,hbciListAccounts,false +42239,58256954-446f-459c-bcd7-e0e4bf7f993c,LIST_TRANSACTIONS,hbciListTransactions,false +42240,58256954-446f-459c-bcd7-e0e4bf7f993c,AUTHORIZATION,,false +42241,58256954-446f-459c-bcd7-e0e4bf7f993c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42242,58256954-446f-459c-bcd7-e0e4bf7f993c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42243,58256954-446f-459c-bcd7-e0e4bf7f993c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42244,0d3fbf0b-6799-444b-af37-4117ea095060,LIST_ACCOUNTS,xs2aListAccounts,true -42245,0d3fbf0b-6799-444b-af37-4117ea095060,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42245,0d3fbf0b-6799-444b-af37-4117ea095060,LIST_TRANSACTIONS,xs2aListTransactions,true 42246,0d3fbf0b-6799-444b-af37-4117ea095060,AUTHORIZATION,,true 42247,0d3fbf0b-6799-444b-af37-4117ea095060,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42248,0d3fbf0b-6799-444b-af37-4117ea095060,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42249,0d3fbf0b-6799-444b-af37-4117ea095060,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42250,c14d20f7-cbcb-4843-bdd2-df6123e33fa6,LIST_ACCOUNTS,hbciListAccounts,false -42251,c14d20f7-cbcb-4843-bdd2-df6123e33fa6,LIST_TRANSACTIONS,hbciListTransactions,false -42252,c14d20f7-cbcb-4843-bdd2-df6123e33fa6,AUTHORIZATION,,false -42253,c14d20f7-cbcb-4843-bdd2-df6123e33fa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42254,c14d20f7-cbcb-4843-bdd2-df6123e33fa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42255,c14d20f7-cbcb-4843-bdd2-df6123e33fa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42250,f4a279de-d51b-47e2-939a-2373fb8ab4a2,LIST_ACCOUNTS,hbciListAccounts,false +42251,f4a279de-d51b-47e2-939a-2373fb8ab4a2,LIST_TRANSACTIONS,hbciListTransactions,false +42252,f4a279de-d51b-47e2-939a-2373fb8ab4a2,AUTHORIZATION,,false +42253,f4a279de-d51b-47e2-939a-2373fb8ab4a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42254,f4a279de-d51b-47e2-939a-2373fb8ab4a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42255,f4a279de-d51b-47e2-939a-2373fb8ab4a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42256,2d904bb8-ab14-4327-ab49-29d61e83a701,LIST_ACCOUNTS,xs2aListAccounts,true -42257,2d904bb8-ab14-4327-ab49-29d61e83a701,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42257,2d904bb8-ab14-4327-ab49-29d61e83a701,LIST_TRANSACTIONS,xs2aListTransactions,true 42258,2d904bb8-ab14-4327-ab49-29d61e83a701,AUTHORIZATION,,true 42259,2d904bb8-ab14-4327-ab49-29d61e83a701,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42260,2d904bb8-ab14-4327-ab49-29d61e83a701,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42261,2d904bb8-ab14-4327-ab49-29d61e83a701,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42262,36d1a6d8-ae69-4b5a-ade9-6f079fd59203,LIST_ACCOUNTS,hbciListAccounts,false -42263,36d1a6d8-ae69-4b5a-ade9-6f079fd59203,LIST_TRANSACTIONS,hbciListTransactions,false -42264,36d1a6d8-ae69-4b5a-ade9-6f079fd59203,AUTHORIZATION,,false -42265,36d1a6d8-ae69-4b5a-ade9-6f079fd59203,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42266,36d1a6d8-ae69-4b5a-ade9-6f079fd59203,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42267,36d1a6d8-ae69-4b5a-ade9-6f079fd59203,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42262,d144810f-915b-4bbb-9f7a-03b17780ccbb,LIST_ACCOUNTS,hbciListAccounts,false +42263,d144810f-915b-4bbb-9f7a-03b17780ccbb,LIST_TRANSACTIONS,hbciListTransactions,false +42264,d144810f-915b-4bbb-9f7a-03b17780ccbb,AUTHORIZATION,,false +42265,d144810f-915b-4bbb-9f7a-03b17780ccbb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42266,d144810f-915b-4bbb-9f7a-03b17780ccbb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42267,d144810f-915b-4bbb-9f7a-03b17780ccbb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42268,b14cb749-e15e-48ec-8e77-6c811de264a7,LIST_ACCOUNTS,xs2aListAccounts,true -42269,b14cb749-e15e-48ec-8e77-6c811de264a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42269,b14cb749-e15e-48ec-8e77-6c811de264a7,LIST_TRANSACTIONS,xs2aListTransactions,true 42270,b14cb749-e15e-48ec-8e77-6c811de264a7,AUTHORIZATION,,true 42271,b14cb749-e15e-48ec-8e77-6c811de264a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42272,b14cb749-e15e-48ec-8e77-6c811de264a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42273,b14cb749-e15e-48ec-8e77-6c811de264a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42274,c0ed16da-0fa9-4a29-aa6a-63966b3271a4,LIST_ACCOUNTS,hbciListAccounts,false -42275,c0ed16da-0fa9-4a29-aa6a-63966b3271a4,LIST_TRANSACTIONS,hbciListTransactions,false -42276,c0ed16da-0fa9-4a29-aa6a-63966b3271a4,AUTHORIZATION,,false -42277,c0ed16da-0fa9-4a29-aa6a-63966b3271a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42278,c0ed16da-0fa9-4a29-aa6a-63966b3271a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42279,c0ed16da-0fa9-4a29-aa6a-63966b3271a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42274,9beafc71-fc69-4d64-9eea-9470a6419b5c,LIST_ACCOUNTS,hbciListAccounts,false +42275,9beafc71-fc69-4d64-9eea-9470a6419b5c,LIST_TRANSACTIONS,hbciListTransactions,false +42276,9beafc71-fc69-4d64-9eea-9470a6419b5c,AUTHORIZATION,,false +42277,9beafc71-fc69-4d64-9eea-9470a6419b5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42278,9beafc71-fc69-4d64-9eea-9470a6419b5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42279,9beafc71-fc69-4d64-9eea-9470a6419b5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42280,e9765172-f8d9-4be7-b48f-df60e9a43efd,LIST_ACCOUNTS,xs2aListAccounts,true -42281,e9765172-f8d9-4be7-b48f-df60e9a43efd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42281,e9765172-f8d9-4be7-b48f-df60e9a43efd,LIST_TRANSACTIONS,xs2aListTransactions,true 42282,e9765172-f8d9-4be7-b48f-df60e9a43efd,AUTHORIZATION,,true 42283,e9765172-f8d9-4be7-b48f-df60e9a43efd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42284,e9765172-f8d9-4be7-b48f-df60e9a43efd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42285,e9765172-f8d9-4be7-b48f-df60e9a43efd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42286,4087d774-6c96-44e1-82a6-ac6ee678fda1,LIST_ACCOUNTS,hbciListAccounts,false -42287,4087d774-6c96-44e1-82a6-ac6ee678fda1,LIST_TRANSACTIONS,hbciListTransactions,false -42288,4087d774-6c96-44e1-82a6-ac6ee678fda1,AUTHORIZATION,,false -42289,4087d774-6c96-44e1-82a6-ac6ee678fda1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42290,4087d774-6c96-44e1-82a6-ac6ee678fda1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42291,4087d774-6c96-44e1-82a6-ac6ee678fda1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42286,f04cb0f6-dfb9-47af-ba5e-f3bb9a906964,LIST_ACCOUNTS,hbciListAccounts,false +42287,f04cb0f6-dfb9-47af-ba5e-f3bb9a906964,LIST_TRANSACTIONS,hbciListTransactions,false +42288,f04cb0f6-dfb9-47af-ba5e-f3bb9a906964,AUTHORIZATION,,false +42289,f04cb0f6-dfb9-47af-ba5e-f3bb9a906964,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42290,f04cb0f6-dfb9-47af-ba5e-f3bb9a906964,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42291,f04cb0f6-dfb9-47af-ba5e-f3bb9a906964,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42292,6a3d4641-5e18-4bd3-baed-662c3f4b7d6f,LIST_ACCOUNTS,xs2aListAccounts,true -42293,6a3d4641-5e18-4bd3-baed-662c3f4b7d6f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42293,6a3d4641-5e18-4bd3-baed-662c3f4b7d6f,LIST_TRANSACTIONS,xs2aListTransactions,true 42294,6a3d4641-5e18-4bd3-baed-662c3f4b7d6f,AUTHORIZATION,,true 42295,6a3d4641-5e18-4bd3-baed-662c3f4b7d6f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42296,6a3d4641-5e18-4bd3-baed-662c3f4b7d6f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42297,6a3d4641-5e18-4bd3-baed-662c3f4b7d6f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42298,638c3ba7-9db5-42d0-932e-a822debe0485,LIST_ACCOUNTS,hbciListAccounts,false -42299,638c3ba7-9db5-42d0-932e-a822debe0485,LIST_TRANSACTIONS,hbciListTransactions,false -42300,638c3ba7-9db5-42d0-932e-a822debe0485,AUTHORIZATION,,false -42301,638c3ba7-9db5-42d0-932e-a822debe0485,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42302,638c3ba7-9db5-42d0-932e-a822debe0485,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42303,638c3ba7-9db5-42d0-932e-a822debe0485,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42298,48f7e037-9db7-4d2f-a146-c29a07122337,LIST_ACCOUNTS,hbciListAccounts,false +42299,48f7e037-9db7-4d2f-a146-c29a07122337,LIST_TRANSACTIONS,hbciListTransactions,false +42300,48f7e037-9db7-4d2f-a146-c29a07122337,AUTHORIZATION,,false +42301,48f7e037-9db7-4d2f-a146-c29a07122337,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42302,48f7e037-9db7-4d2f-a146-c29a07122337,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42303,48f7e037-9db7-4d2f-a146-c29a07122337,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42304,e59b4fc4-01cd-4d25-a2ce-40cb04e69e79,LIST_ACCOUNTS,xs2aListAccounts,true -42305,e59b4fc4-01cd-4d25-a2ce-40cb04e69e79,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42305,e59b4fc4-01cd-4d25-a2ce-40cb04e69e79,LIST_TRANSACTIONS,xs2aListTransactions,true 42306,e59b4fc4-01cd-4d25-a2ce-40cb04e69e79,AUTHORIZATION,,true 42307,e59b4fc4-01cd-4d25-a2ce-40cb04e69e79,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42308,e59b4fc4-01cd-4d25-a2ce-40cb04e69e79,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42309,e59b4fc4-01cd-4d25-a2ce-40cb04e69e79,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42310,5edca546-2e2d-4857-a9ae-f50cd21e186a,LIST_ACCOUNTS,hbciListAccounts,false -42311,5edca546-2e2d-4857-a9ae-f50cd21e186a,LIST_TRANSACTIONS,hbciListTransactions,false -42312,5edca546-2e2d-4857-a9ae-f50cd21e186a,AUTHORIZATION,,false -42313,5edca546-2e2d-4857-a9ae-f50cd21e186a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42314,5edca546-2e2d-4857-a9ae-f50cd21e186a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42315,5edca546-2e2d-4857-a9ae-f50cd21e186a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42310,8e7138df-e7e7-4152-baed-552c51620f62,LIST_ACCOUNTS,hbciListAccounts,false +42311,8e7138df-e7e7-4152-baed-552c51620f62,LIST_TRANSACTIONS,hbciListTransactions,false +42312,8e7138df-e7e7-4152-baed-552c51620f62,AUTHORIZATION,,false +42313,8e7138df-e7e7-4152-baed-552c51620f62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42314,8e7138df-e7e7-4152-baed-552c51620f62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42315,8e7138df-e7e7-4152-baed-552c51620f62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42316,25eef01b-f088-4f55-8d00-dcb2c3caa4e6,LIST_ACCOUNTS,xs2aListAccounts,true -42317,25eef01b-f088-4f55-8d00-dcb2c3caa4e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42317,25eef01b-f088-4f55-8d00-dcb2c3caa4e6,LIST_TRANSACTIONS,xs2aListTransactions,true 42318,25eef01b-f088-4f55-8d00-dcb2c3caa4e6,AUTHORIZATION,,true 42319,25eef01b-f088-4f55-8d00-dcb2c3caa4e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42320,25eef01b-f088-4f55-8d00-dcb2c3caa4e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42321,25eef01b-f088-4f55-8d00-dcb2c3caa4e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42322,dfbd81b2-d658-4c19-88b2-4a5b1ed25adb,LIST_ACCOUNTS,hbciListAccounts,false -42323,dfbd81b2-d658-4c19-88b2-4a5b1ed25adb,LIST_TRANSACTIONS,hbciListTransactions,false -42324,dfbd81b2-d658-4c19-88b2-4a5b1ed25adb,AUTHORIZATION,,false -42325,dfbd81b2-d658-4c19-88b2-4a5b1ed25adb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42326,dfbd81b2-d658-4c19-88b2-4a5b1ed25adb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42327,dfbd81b2-d658-4c19-88b2-4a5b1ed25adb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42322,e53fb1aa-f216-4155-b4f9-3e6f38f0124e,LIST_ACCOUNTS,hbciListAccounts,false +42323,e53fb1aa-f216-4155-b4f9-3e6f38f0124e,LIST_TRANSACTIONS,hbciListTransactions,false +42324,e53fb1aa-f216-4155-b4f9-3e6f38f0124e,AUTHORIZATION,,false +42325,e53fb1aa-f216-4155-b4f9-3e6f38f0124e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42326,e53fb1aa-f216-4155-b4f9-3e6f38f0124e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42327,e53fb1aa-f216-4155-b4f9-3e6f38f0124e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42328,1027a5fc-08fc-44c9-909e-e025a15f63f7,LIST_ACCOUNTS,xs2aListAccounts,true -42329,1027a5fc-08fc-44c9-909e-e025a15f63f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42329,1027a5fc-08fc-44c9-909e-e025a15f63f7,LIST_TRANSACTIONS,xs2aListTransactions,true 42330,1027a5fc-08fc-44c9-909e-e025a15f63f7,AUTHORIZATION,,true 42331,1027a5fc-08fc-44c9-909e-e025a15f63f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42332,1027a5fc-08fc-44c9-909e-e025a15f63f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42333,1027a5fc-08fc-44c9-909e-e025a15f63f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42334,f9103a4a-65fa-455e-9ded-ef5c7aacab97,LIST_ACCOUNTS,hbciListAccounts,false -42335,f9103a4a-65fa-455e-9ded-ef5c7aacab97,LIST_TRANSACTIONS,hbciListTransactions,false -42336,f9103a4a-65fa-455e-9ded-ef5c7aacab97,AUTHORIZATION,,false -42337,f9103a4a-65fa-455e-9ded-ef5c7aacab97,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42338,f9103a4a-65fa-455e-9ded-ef5c7aacab97,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42339,f9103a4a-65fa-455e-9ded-ef5c7aacab97,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42334,888fb9a4-f94e-4b9a-9e01-b30ae23ceaa8,LIST_ACCOUNTS,hbciListAccounts,false +42335,888fb9a4-f94e-4b9a-9e01-b30ae23ceaa8,LIST_TRANSACTIONS,hbciListTransactions,false +42336,888fb9a4-f94e-4b9a-9e01-b30ae23ceaa8,AUTHORIZATION,,false +42337,888fb9a4-f94e-4b9a-9e01-b30ae23ceaa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42338,888fb9a4-f94e-4b9a-9e01-b30ae23ceaa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42339,888fb9a4-f94e-4b9a-9e01-b30ae23ceaa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42340,06466db0-860c-40c3-8df9-8a4efd4e63cd,LIST_ACCOUNTS,xs2aListAccounts,true -42341,06466db0-860c-40c3-8df9-8a4efd4e63cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42341,06466db0-860c-40c3-8df9-8a4efd4e63cd,LIST_TRANSACTIONS,xs2aListTransactions,true 42342,06466db0-860c-40c3-8df9-8a4efd4e63cd,AUTHORIZATION,,true 42343,06466db0-860c-40c3-8df9-8a4efd4e63cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42344,06466db0-860c-40c3-8df9-8a4efd4e63cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42345,06466db0-860c-40c3-8df9-8a4efd4e63cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42346,7efdc5b4-a58b-489b-950d-e070c0f4c202,LIST_ACCOUNTS,hbciListAccounts,false -42347,7efdc5b4-a58b-489b-950d-e070c0f4c202,LIST_TRANSACTIONS,hbciListTransactions,false -42348,7efdc5b4-a58b-489b-950d-e070c0f4c202,AUTHORIZATION,,false -42349,7efdc5b4-a58b-489b-950d-e070c0f4c202,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42350,7efdc5b4-a58b-489b-950d-e070c0f4c202,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42351,7efdc5b4-a58b-489b-950d-e070c0f4c202,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42346,620e41c5-242c-4fa7-be19-eb8264bae1ef,LIST_ACCOUNTS,hbciListAccounts,false +42347,620e41c5-242c-4fa7-be19-eb8264bae1ef,LIST_TRANSACTIONS,hbciListTransactions,false +42348,620e41c5-242c-4fa7-be19-eb8264bae1ef,AUTHORIZATION,,false +42349,620e41c5-242c-4fa7-be19-eb8264bae1ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42350,620e41c5-242c-4fa7-be19-eb8264bae1ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42351,620e41c5-242c-4fa7-be19-eb8264bae1ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42352,54110127-543e-493a-a9cd-226ace45d2ae,LIST_ACCOUNTS,xs2aListAccounts,true -42353,54110127-543e-493a-a9cd-226ace45d2ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42353,54110127-543e-493a-a9cd-226ace45d2ae,LIST_TRANSACTIONS,xs2aListTransactions,true 42354,54110127-543e-493a-a9cd-226ace45d2ae,AUTHORIZATION,,true 42355,54110127-543e-493a-a9cd-226ace45d2ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42356,54110127-543e-493a-a9cd-226ace45d2ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42357,54110127-543e-493a-a9cd-226ace45d2ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42358,ffa3cb39-79bd-4b1e-9fdf-4c9bd8e69dba,LIST_ACCOUNTS,hbciListAccounts,false -42359,ffa3cb39-79bd-4b1e-9fdf-4c9bd8e69dba,LIST_TRANSACTIONS,hbciListTransactions,false -42360,ffa3cb39-79bd-4b1e-9fdf-4c9bd8e69dba,AUTHORIZATION,,false -42361,ffa3cb39-79bd-4b1e-9fdf-4c9bd8e69dba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42362,ffa3cb39-79bd-4b1e-9fdf-4c9bd8e69dba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42363,ffa3cb39-79bd-4b1e-9fdf-4c9bd8e69dba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42358,972a60c5-aa22-4029-8fcf-41f6ec539bd2,LIST_ACCOUNTS,hbciListAccounts,false +42359,972a60c5-aa22-4029-8fcf-41f6ec539bd2,LIST_TRANSACTIONS,hbciListTransactions,false +42360,972a60c5-aa22-4029-8fcf-41f6ec539bd2,AUTHORIZATION,,false +42361,972a60c5-aa22-4029-8fcf-41f6ec539bd2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42362,972a60c5-aa22-4029-8fcf-41f6ec539bd2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42363,972a60c5-aa22-4029-8fcf-41f6ec539bd2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42364,785ae49a-9230-437f-bce7-f07147bcbfab,LIST_ACCOUNTS,xs2aListAccounts,true -42365,785ae49a-9230-437f-bce7-f07147bcbfab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42365,785ae49a-9230-437f-bce7-f07147bcbfab,LIST_TRANSACTIONS,xs2aListTransactions,true 42366,785ae49a-9230-437f-bce7-f07147bcbfab,AUTHORIZATION,,true 42367,785ae49a-9230-437f-bce7-f07147bcbfab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42368,785ae49a-9230-437f-bce7-f07147bcbfab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42369,785ae49a-9230-437f-bce7-f07147bcbfab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42370,dcffb43d-b7fe-4914-b6d5-8168fcd298a0,LIST_ACCOUNTS,hbciListAccounts,false -42371,dcffb43d-b7fe-4914-b6d5-8168fcd298a0,LIST_TRANSACTIONS,hbciListTransactions,false -42372,dcffb43d-b7fe-4914-b6d5-8168fcd298a0,AUTHORIZATION,,false -42373,dcffb43d-b7fe-4914-b6d5-8168fcd298a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42374,dcffb43d-b7fe-4914-b6d5-8168fcd298a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42375,dcffb43d-b7fe-4914-b6d5-8168fcd298a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42370,9a08d258-7ae5-4580-833a-9da58d151b5f,LIST_ACCOUNTS,hbciListAccounts,false +42371,9a08d258-7ae5-4580-833a-9da58d151b5f,LIST_TRANSACTIONS,hbciListTransactions,false +42372,9a08d258-7ae5-4580-833a-9da58d151b5f,AUTHORIZATION,,false +42373,9a08d258-7ae5-4580-833a-9da58d151b5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42374,9a08d258-7ae5-4580-833a-9da58d151b5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42375,9a08d258-7ae5-4580-833a-9da58d151b5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42376,efe7f5c7-adfd-4143-9549-28aa6c66db1a,LIST_ACCOUNTS,xs2aListAccounts,true -42377,efe7f5c7-adfd-4143-9549-28aa6c66db1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42377,efe7f5c7-adfd-4143-9549-28aa6c66db1a,LIST_TRANSACTIONS,xs2aListTransactions,true 42378,efe7f5c7-adfd-4143-9549-28aa6c66db1a,AUTHORIZATION,,true 42379,efe7f5c7-adfd-4143-9549-28aa6c66db1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42380,efe7f5c7-adfd-4143-9549-28aa6c66db1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42381,efe7f5c7-adfd-4143-9549-28aa6c66db1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42382,f15a3c02-54c4-4d42-9e1d-605ad7463a5e,LIST_ACCOUNTS,hbciListAccounts,false -42383,f15a3c02-54c4-4d42-9e1d-605ad7463a5e,LIST_TRANSACTIONS,hbciListTransactions,false -42384,f15a3c02-54c4-4d42-9e1d-605ad7463a5e,AUTHORIZATION,,false -42385,f15a3c02-54c4-4d42-9e1d-605ad7463a5e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42386,f15a3c02-54c4-4d42-9e1d-605ad7463a5e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42387,f15a3c02-54c4-4d42-9e1d-605ad7463a5e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42382,26901235-4e3e-47f8-9ca6-085d84ec9c6f,LIST_ACCOUNTS,hbciListAccounts,false +42383,26901235-4e3e-47f8-9ca6-085d84ec9c6f,LIST_TRANSACTIONS,hbciListTransactions,false +42384,26901235-4e3e-47f8-9ca6-085d84ec9c6f,AUTHORIZATION,,false +42385,26901235-4e3e-47f8-9ca6-085d84ec9c6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42386,26901235-4e3e-47f8-9ca6-085d84ec9c6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42387,26901235-4e3e-47f8-9ca6-085d84ec9c6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42388,318db6b0-24d9-43f0-b426-cf92c8a77109,LIST_ACCOUNTS,xs2aListAccounts,true -42389,318db6b0-24d9-43f0-b426-cf92c8a77109,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42389,318db6b0-24d9-43f0-b426-cf92c8a77109,LIST_TRANSACTIONS,xs2aListTransactions,true 42390,318db6b0-24d9-43f0-b426-cf92c8a77109,AUTHORIZATION,,true 42391,318db6b0-24d9-43f0-b426-cf92c8a77109,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42392,318db6b0-24d9-43f0-b426-cf92c8a77109,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42393,318db6b0-24d9-43f0-b426-cf92c8a77109,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42394,4627833e-a13d-415d-8759-eb93e3afbed4,LIST_ACCOUNTS,hbciListAccounts,false -42395,4627833e-a13d-415d-8759-eb93e3afbed4,LIST_TRANSACTIONS,hbciListTransactions,false -42396,4627833e-a13d-415d-8759-eb93e3afbed4,AUTHORIZATION,,false -42397,4627833e-a13d-415d-8759-eb93e3afbed4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42398,4627833e-a13d-415d-8759-eb93e3afbed4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42399,4627833e-a13d-415d-8759-eb93e3afbed4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42394,7ec4e790-c51d-44c9-9d3e-a6216574d9a2,LIST_ACCOUNTS,hbciListAccounts,false +42395,7ec4e790-c51d-44c9-9d3e-a6216574d9a2,LIST_TRANSACTIONS,hbciListTransactions,false +42396,7ec4e790-c51d-44c9-9d3e-a6216574d9a2,AUTHORIZATION,,false +42397,7ec4e790-c51d-44c9-9d3e-a6216574d9a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42398,7ec4e790-c51d-44c9-9d3e-a6216574d9a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42399,7ec4e790-c51d-44c9-9d3e-a6216574d9a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42400,03d6edfb-56b2-4b1c-8d16-eba87ebc5e76,LIST_ACCOUNTS,xs2aListAccounts,true -42401,03d6edfb-56b2-4b1c-8d16-eba87ebc5e76,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42401,03d6edfb-56b2-4b1c-8d16-eba87ebc5e76,LIST_TRANSACTIONS,xs2aListTransactions,true 42402,03d6edfb-56b2-4b1c-8d16-eba87ebc5e76,AUTHORIZATION,,true 42403,03d6edfb-56b2-4b1c-8d16-eba87ebc5e76,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42404,03d6edfb-56b2-4b1c-8d16-eba87ebc5e76,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42405,03d6edfb-56b2-4b1c-8d16-eba87ebc5e76,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42406,7dee5af8-3951-4c7e-9b27-c6fb81e73fe3,LIST_ACCOUNTS,hbciListAccounts,false -42407,7dee5af8-3951-4c7e-9b27-c6fb81e73fe3,LIST_TRANSACTIONS,hbciListTransactions,false -42408,7dee5af8-3951-4c7e-9b27-c6fb81e73fe3,AUTHORIZATION,,false -42409,7dee5af8-3951-4c7e-9b27-c6fb81e73fe3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42410,7dee5af8-3951-4c7e-9b27-c6fb81e73fe3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42411,7dee5af8-3951-4c7e-9b27-c6fb81e73fe3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42406,24a7e2c7-dd47-416c-befe-72c1a4057481,LIST_ACCOUNTS,hbciListAccounts,false +42407,24a7e2c7-dd47-416c-befe-72c1a4057481,LIST_TRANSACTIONS,hbciListTransactions,false +42408,24a7e2c7-dd47-416c-befe-72c1a4057481,AUTHORIZATION,,false +42409,24a7e2c7-dd47-416c-befe-72c1a4057481,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42410,24a7e2c7-dd47-416c-befe-72c1a4057481,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42411,24a7e2c7-dd47-416c-befe-72c1a4057481,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42412,5fa50818-d5fa-4350-82e1-a9d9cc56dd16,LIST_ACCOUNTS,xs2aListAccounts,true -42413,5fa50818-d5fa-4350-82e1-a9d9cc56dd16,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42413,5fa50818-d5fa-4350-82e1-a9d9cc56dd16,LIST_TRANSACTIONS,xs2aListTransactions,true 42414,5fa50818-d5fa-4350-82e1-a9d9cc56dd16,AUTHORIZATION,,true 42415,5fa50818-d5fa-4350-82e1-a9d9cc56dd16,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42416,5fa50818-d5fa-4350-82e1-a9d9cc56dd16,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42417,5fa50818-d5fa-4350-82e1-a9d9cc56dd16,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42418,7a47b3b3-f0bc-4131-b425-d7f13b72a6d1,LIST_ACCOUNTS,hbciListAccounts,false -42419,7a47b3b3-f0bc-4131-b425-d7f13b72a6d1,LIST_TRANSACTIONS,hbciListTransactions,false -42420,7a47b3b3-f0bc-4131-b425-d7f13b72a6d1,AUTHORIZATION,,false -42421,7a47b3b3-f0bc-4131-b425-d7f13b72a6d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42422,7a47b3b3-f0bc-4131-b425-d7f13b72a6d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42423,7a47b3b3-f0bc-4131-b425-d7f13b72a6d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42418,a09f41ad-aed9-4b0c-9f77-fd8099671edb,LIST_ACCOUNTS,hbciListAccounts,false +42419,a09f41ad-aed9-4b0c-9f77-fd8099671edb,LIST_TRANSACTIONS,hbciListTransactions,false +42420,a09f41ad-aed9-4b0c-9f77-fd8099671edb,AUTHORIZATION,,false +42421,a09f41ad-aed9-4b0c-9f77-fd8099671edb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42422,a09f41ad-aed9-4b0c-9f77-fd8099671edb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42423,a09f41ad-aed9-4b0c-9f77-fd8099671edb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42424,23605721-218a-4966-8953-702c0066ab72,LIST_ACCOUNTS,xs2aListAccounts,true -42425,23605721-218a-4966-8953-702c0066ab72,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42425,23605721-218a-4966-8953-702c0066ab72,LIST_TRANSACTIONS,xs2aListTransactions,true 42426,23605721-218a-4966-8953-702c0066ab72,AUTHORIZATION,,true 42427,23605721-218a-4966-8953-702c0066ab72,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42428,23605721-218a-4966-8953-702c0066ab72,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42429,23605721-218a-4966-8953-702c0066ab72,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42430,a6710fb6-014e-4199-9431-7de1b1c34b19,LIST_ACCOUNTS,hbciListAccounts,false -42431,a6710fb6-014e-4199-9431-7de1b1c34b19,LIST_TRANSACTIONS,hbciListTransactions,false -42432,a6710fb6-014e-4199-9431-7de1b1c34b19,AUTHORIZATION,,false -42433,a6710fb6-014e-4199-9431-7de1b1c34b19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42434,a6710fb6-014e-4199-9431-7de1b1c34b19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42435,a6710fb6-014e-4199-9431-7de1b1c34b19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42430,587cf70a-16ae-4b96-9498-cb03c8c2885b,LIST_ACCOUNTS,hbciListAccounts,false +42431,587cf70a-16ae-4b96-9498-cb03c8c2885b,LIST_TRANSACTIONS,hbciListTransactions,false +42432,587cf70a-16ae-4b96-9498-cb03c8c2885b,AUTHORIZATION,,false +42433,587cf70a-16ae-4b96-9498-cb03c8c2885b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42434,587cf70a-16ae-4b96-9498-cb03c8c2885b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42435,587cf70a-16ae-4b96-9498-cb03c8c2885b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42436,25121a5f-48b3-48b2-8065-b4a5203f90dd,LIST_ACCOUNTS,xs2aListAccounts,true -42437,25121a5f-48b3-48b2-8065-b4a5203f90dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42437,25121a5f-48b3-48b2-8065-b4a5203f90dd,LIST_TRANSACTIONS,xs2aListTransactions,true 42438,25121a5f-48b3-48b2-8065-b4a5203f90dd,AUTHORIZATION,,true 42439,25121a5f-48b3-48b2-8065-b4a5203f90dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42440,25121a5f-48b3-48b2-8065-b4a5203f90dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42441,25121a5f-48b3-48b2-8065-b4a5203f90dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42442,ce08a230-eca9-4b3e-8ed4-2e54e58b4878,LIST_ACCOUNTS,hbciListAccounts,false -42443,ce08a230-eca9-4b3e-8ed4-2e54e58b4878,LIST_TRANSACTIONS,hbciListTransactions,false -42444,ce08a230-eca9-4b3e-8ed4-2e54e58b4878,AUTHORIZATION,,false -42445,ce08a230-eca9-4b3e-8ed4-2e54e58b4878,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42446,ce08a230-eca9-4b3e-8ed4-2e54e58b4878,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42447,ce08a230-eca9-4b3e-8ed4-2e54e58b4878,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42442,777e0fb3-9204-4a01-a53b-ff6ef12eb014,LIST_ACCOUNTS,hbciListAccounts,false +42443,777e0fb3-9204-4a01-a53b-ff6ef12eb014,LIST_TRANSACTIONS,hbciListTransactions,false +42444,777e0fb3-9204-4a01-a53b-ff6ef12eb014,AUTHORIZATION,,false +42445,777e0fb3-9204-4a01-a53b-ff6ef12eb014,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42446,777e0fb3-9204-4a01-a53b-ff6ef12eb014,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42447,777e0fb3-9204-4a01-a53b-ff6ef12eb014,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42448,3a70f9f1-ebf0-4a8c-bfb7-39b20e54f89d,LIST_ACCOUNTS,xs2aListAccounts,true -42449,3a70f9f1-ebf0-4a8c-bfb7-39b20e54f89d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42449,3a70f9f1-ebf0-4a8c-bfb7-39b20e54f89d,LIST_TRANSACTIONS,xs2aListTransactions,true 42450,3a70f9f1-ebf0-4a8c-bfb7-39b20e54f89d,AUTHORIZATION,,true 42451,3a70f9f1-ebf0-4a8c-bfb7-39b20e54f89d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42452,3a70f9f1-ebf0-4a8c-bfb7-39b20e54f89d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42453,3a70f9f1-ebf0-4a8c-bfb7-39b20e54f89d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42454,e6e7f913-dc6f-47be-9e8f-e674b4fe1438,LIST_ACCOUNTS,hbciListAccounts,false -42455,e6e7f913-dc6f-47be-9e8f-e674b4fe1438,LIST_TRANSACTIONS,hbciListTransactions,false -42456,e6e7f913-dc6f-47be-9e8f-e674b4fe1438,AUTHORIZATION,,false -42457,e6e7f913-dc6f-47be-9e8f-e674b4fe1438,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42458,e6e7f913-dc6f-47be-9e8f-e674b4fe1438,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42459,e6e7f913-dc6f-47be-9e8f-e674b4fe1438,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42454,2651972d-64aa-44a7-9929-958594057b91,LIST_ACCOUNTS,hbciListAccounts,false +42455,2651972d-64aa-44a7-9929-958594057b91,LIST_TRANSACTIONS,hbciListTransactions,false +42456,2651972d-64aa-44a7-9929-958594057b91,AUTHORIZATION,,false +42457,2651972d-64aa-44a7-9929-958594057b91,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42458,2651972d-64aa-44a7-9929-958594057b91,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42459,2651972d-64aa-44a7-9929-958594057b91,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42460,d39200e7-e765-4c85-9f51-69bb9ab24c21,LIST_ACCOUNTS,xs2aListAccounts,true -42461,d39200e7-e765-4c85-9f51-69bb9ab24c21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42461,d39200e7-e765-4c85-9f51-69bb9ab24c21,LIST_TRANSACTIONS,xs2aListTransactions,true 42462,d39200e7-e765-4c85-9f51-69bb9ab24c21,AUTHORIZATION,,true 42463,d39200e7-e765-4c85-9f51-69bb9ab24c21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42464,d39200e7-e765-4c85-9f51-69bb9ab24c21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42465,d39200e7-e765-4c85-9f51-69bb9ab24c21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42466,82c4051b-5a26-4b04-aaff-da24d4b4949c,LIST_ACCOUNTS,hbciListAccounts,false -42467,82c4051b-5a26-4b04-aaff-da24d4b4949c,LIST_TRANSACTIONS,hbciListTransactions,false -42468,82c4051b-5a26-4b04-aaff-da24d4b4949c,AUTHORIZATION,,false -42469,82c4051b-5a26-4b04-aaff-da24d4b4949c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42470,82c4051b-5a26-4b04-aaff-da24d4b4949c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42471,82c4051b-5a26-4b04-aaff-da24d4b4949c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42466,786a351e-ff33-44b7-9a3a-1d81b534b410,LIST_ACCOUNTS,hbciListAccounts,false +42467,786a351e-ff33-44b7-9a3a-1d81b534b410,LIST_TRANSACTIONS,hbciListTransactions,false +42468,786a351e-ff33-44b7-9a3a-1d81b534b410,AUTHORIZATION,,false +42469,786a351e-ff33-44b7-9a3a-1d81b534b410,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42470,786a351e-ff33-44b7-9a3a-1d81b534b410,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42471,786a351e-ff33-44b7-9a3a-1d81b534b410,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42472,4a952772-750d-4197-9c30-ad3723c6a849,LIST_ACCOUNTS,xs2aListAccounts,true -42473,4a952772-750d-4197-9c30-ad3723c6a849,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42473,4a952772-750d-4197-9c30-ad3723c6a849,LIST_TRANSACTIONS,xs2aListTransactions,true 42474,4a952772-750d-4197-9c30-ad3723c6a849,AUTHORIZATION,,true 42475,4a952772-750d-4197-9c30-ad3723c6a849,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42476,4a952772-750d-4197-9c30-ad3723c6a849,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42477,4a952772-750d-4197-9c30-ad3723c6a849,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42478,c05a3cfc-ae4f-4e54-b7ca-c9ae4ba475ec,LIST_ACCOUNTS,hbciListAccounts,false -42479,c05a3cfc-ae4f-4e54-b7ca-c9ae4ba475ec,LIST_TRANSACTIONS,hbciListTransactions,false -42480,c05a3cfc-ae4f-4e54-b7ca-c9ae4ba475ec,AUTHORIZATION,,false -42481,c05a3cfc-ae4f-4e54-b7ca-c9ae4ba475ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42482,c05a3cfc-ae4f-4e54-b7ca-c9ae4ba475ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42483,c05a3cfc-ae4f-4e54-b7ca-c9ae4ba475ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42478,48815f86-22d8-4988-9f69-a4a1f29fa8f0,LIST_ACCOUNTS,hbciListAccounts,false +42479,48815f86-22d8-4988-9f69-a4a1f29fa8f0,LIST_TRANSACTIONS,hbciListTransactions,false +42480,48815f86-22d8-4988-9f69-a4a1f29fa8f0,AUTHORIZATION,,false +42481,48815f86-22d8-4988-9f69-a4a1f29fa8f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42482,48815f86-22d8-4988-9f69-a4a1f29fa8f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42483,48815f86-22d8-4988-9f69-a4a1f29fa8f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42484,6a774960-4568-410d-8537-3124b9887cc3,LIST_ACCOUNTS,xs2aListAccounts,true -42485,6a774960-4568-410d-8537-3124b9887cc3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42485,6a774960-4568-410d-8537-3124b9887cc3,LIST_TRANSACTIONS,xs2aListTransactions,true 42486,6a774960-4568-410d-8537-3124b9887cc3,AUTHORIZATION,,true 42487,6a774960-4568-410d-8537-3124b9887cc3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42488,6a774960-4568-410d-8537-3124b9887cc3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42489,6a774960-4568-410d-8537-3124b9887cc3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42490,af367022-949c-4308-8d8e-c9972c0f0514,LIST_ACCOUNTS,hbciListAccounts,false -42491,af367022-949c-4308-8d8e-c9972c0f0514,LIST_TRANSACTIONS,hbciListTransactions,false -42492,af367022-949c-4308-8d8e-c9972c0f0514,AUTHORIZATION,,false -42493,af367022-949c-4308-8d8e-c9972c0f0514,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42494,af367022-949c-4308-8d8e-c9972c0f0514,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42495,af367022-949c-4308-8d8e-c9972c0f0514,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42490,639deb6f-a108-4bb3-a05e-14d0d9f81706,LIST_ACCOUNTS,hbciListAccounts,false +42491,639deb6f-a108-4bb3-a05e-14d0d9f81706,LIST_TRANSACTIONS,hbciListTransactions,false +42492,639deb6f-a108-4bb3-a05e-14d0d9f81706,AUTHORIZATION,,false +42493,639deb6f-a108-4bb3-a05e-14d0d9f81706,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42494,639deb6f-a108-4bb3-a05e-14d0d9f81706,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42495,639deb6f-a108-4bb3-a05e-14d0d9f81706,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42496,65df997b-6c0f-45b8-b6d1-82ae711bc4de,LIST_ACCOUNTS,xs2aListAccounts,true -42497,65df997b-6c0f-45b8-b6d1-82ae711bc4de,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42497,65df997b-6c0f-45b8-b6d1-82ae711bc4de,LIST_TRANSACTIONS,xs2aListTransactions,true 42498,65df997b-6c0f-45b8-b6d1-82ae711bc4de,AUTHORIZATION,,true 42499,65df997b-6c0f-45b8-b6d1-82ae711bc4de,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42500,65df997b-6c0f-45b8-b6d1-82ae711bc4de,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42501,65df997b-6c0f-45b8-b6d1-82ae711bc4de,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42502,a174d148-d3c5-46b0-bc76-ef32f7241bcc,LIST_ACCOUNTS,hbciListAccounts,false -42503,a174d148-d3c5-46b0-bc76-ef32f7241bcc,LIST_TRANSACTIONS,hbciListTransactions,false -42504,a174d148-d3c5-46b0-bc76-ef32f7241bcc,AUTHORIZATION,,false -42505,a174d148-d3c5-46b0-bc76-ef32f7241bcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42506,a174d148-d3c5-46b0-bc76-ef32f7241bcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42507,a174d148-d3c5-46b0-bc76-ef32f7241bcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42502,1eab16a5-9992-4dbf-a98f-4b3820d6b6ad,LIST_ACCOUNTS,hbciListAccounts,false +42503,1eab16a5-9992-4dbf-a98f-4b3820d6b6ad,LIST_TRANSACTIONS,hbciListTransactions,false +42504,1eab16a5-9992-4dbf-a98f-4b3820d6b6ad,AUTHORIZATION,,false +42505,1eab16a5-9992-4dbf-a98f-4b3820d6b6ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42506,1eab16a5-9992-4dbf-a98f-4b3820d6b6ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42507,1eab16a5-9992-4dbf-a98f-4b3820d6b6ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42508,ca00f5a0-fb23-400b-85df-46fb32156497,LIST_ACCOUNTS,xs2aListAccounts,true -42509,ca00f5a0-fb23-400b-85df-46fb32156497,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42509,ca00f5a0-fb23-400b-85df-46fb32156497,LIST_TRANSACTIONS,xs2aListTransactions,true 42510,ca00f5a0-fb23-400b-85df-46fb32156497,AUTHORIZATION,,true 42511,ca00f5a0-fb23-400b-85df-46fb32156497,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42512,ca00f5a0-fb23-400b-85df-46fb32156497,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42513,ca00f5a0-fb23-400b-85df-46fb32156497,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42514,7fc97a83-9211-4453-936b-b94d4c4e71b0,LIST_ACCOUNTS,hbciListAccounts,false -42515,7fc97a83-9211-4453-936b-b94d4c4e71b0,LIST_TRANSACTIONS,hbciListTransactions,false -42516,7fc97a83-9211-4453-936b-b94d4c4e71b0,AUTHORIZATION,,false -42517,7fc97a83-9211-4453-936b-b94d4c4e71b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42518,7fc97a83-9211-4453-936b-b94d4c4e71b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42519,7fc97a83-9211-4453-936b-b94d4c4e71b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42514,0781764d-13b1-4682-a7a9-ae34a408eb2f,LIST_ACCOUNTS,hbciListAccounts,false +42515,0781764d-13b1-4682-a7a9-ae34a408eb2f,LIST_TRANSACTIONS,hbciListTransactions,false +42516,0781764d-13b1-4682-a7a9-ae34a408eb2f,AUTHORIZATION,,false +42517,0781764d-13b1-4682-a7a9-ae34a408eb2f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42518,0781764d-13b1-4682-a7a9-ae34a408eb2f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42519,0781764d-13b1-4682-a7a9-ae34a408eb2f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42520,eed087a4-ca9b-4258-9b46-e9fda415486f,LIST_ACCOUNTS,xs2aListAccounts,true -42521,eed087a4-ca9b-4258-9b46-e9fda415486f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42521,eed087a4-ca9b-4258-9b46-e9fda415486f,LIST_TRANSACTIONS,xs2aListTransactions,true 42522,eed087a4-ca9b-4258-9b46-e9fda415486f,AUTHORIZATION,,true 42523,eed087a4-ca9b-4258-9b46-e9fda415486f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42524,eed087a4-ca9b-4258-9b46-e9fda415486f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42525,eed087a4-ca9b-4258-9b46-e9fda415486f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42526,dc7239f1-fa55-46a9-b019-156787aa36cb,LIST_ACCOUNTS,hbciListAccounts,false -42527,dc7239f1-fa55-46a9-b019-156787aa36cb,LIST_TRANSACTIONS,hbciListTransactions,false -42528,dc7239f1-fa55-46a9-b019-156787aa36cb,AUTHORIZATION,,false -42529,dc7239f1-fa55-46a9-b019-156787aa36cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42530,dc7239f1-fa55-46a9-b019-156787aa36cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42531,dc7239f1-fa55-46a9-b019-156787aa36cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42526,1010f422-cfdc-43a0-8b42-ed8d4c4f7789,LIST_ACCOUNTS,hbciListAccounts,false +42527,1010f422-cfdc-43a0-8b42-ed8d4c4f7789,LIST_TRANSACTIONS,hbciListTransactions,false +42528,1010f422-cfdc-43a0-8b42-ed8d4c4f7789,AUTHORIZATION,,false +42529,1010f422-cfdc-43a0-8b42-ed8d4c4f7789,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42530,1010f422-cfdc-43a0-8b42-ed8d4c4f7789,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42531,1010f422-cfdc-43a0-8b42-ed8d4c4f7789,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42532,335562a2-26e2-4105-b31e-08de285234e0,LIST_ACCOUNTS,xs2aListAccounts,true -42533,335562a2-26e2-4105-b31e-08de285234e0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42533,335562a2-26e2-4105-b31e-08de285234e0,LIST_TRANSACTIONS,xs2aListTransactions,true 42534,335562a2-26e2-4105-b31e-08de285234e0,AUTHORIZATION,,true 42535,335562a2-26e2-4105-b31e-08de285234e0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42536,335562a2-26e2-4105-b31e-08de285234e0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42537,335562a2-26e2-4105-b31e-08de285234e0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42538,ccec5d5e-fde8-4f2c-9b1f-dbc4c25b5b9e,LIST_ACCOUNTS,hbciListAccounts,false -42539,ccec5d5e-fde8-4f2c-9b1f-dbc4c25b5b9e,LIST_TRANSACTIONS,hbciListTransactions,false -42540,ccec5d5e-fde8-4f2c-9b1f-dbc4c25b5b9e,AUTHORIZATION,,false -42541,ccec5d5e-fde8-4f2c-9b1f-dbc4c25b5b9e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42542,ccec5d5e-fde8-4f2c-9b1f-dbc4c25b5b9e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42543,ccec5d5e-fde8-4f2c-9b1f-dbc4c25b5b9e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42538,9f859675-e17f-4875-988c-cdebe508b419,LIST_ACCOUNTS,hbciListAccounts,false +42539,9f859675-e17f-4875-988c-cdebe508b419,LIST_TRANSACTIONS,hbciListTransactions,false +42540,9f859675-e17f-4875-988c-cdebe508b419,AUTHORIZATION,,false +42541,9f859675-e17f-4875-988c-cdebe508b419,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42542,9f859675-e17f-4875-988c-cdebe508b419,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42543,9f859675-e17f-4875-988c-cdebe508b419,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42544,c3d74b9d-6dee-4014-a992-032facbcb90c,LIST_ACCOUNTS,xs2aListAccounts,true -42545,c3d74b9d-6dee-4014-a992-032facbcb90c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42545,c3d74b9d-6dee-4014-a992-032facbcb90c,LIST_TRANSACTIONS,xs2aListTransactions,true 42546,c3d74b9d-6dee-4014-a992-032facbcb90c,AUTHORIZATION,,true 42547,c3d74b9d-6dee-4014-a992-032facbcb90c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42548,c3d74b9d-6dee-4014-a992-032facbcb90c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42549,c3d74b9d-6dee-4014-a992-032facbcb90c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42550,2b9fbe14-2ee3-40af-9592-d753573aef2e,LIST_ACCOUNTS,hbciListAccounts,false -42551,2b9fbe14-2ee3-40af-9592-d753573aef2e,LIST_TRANSACTIONS,hbciListTransactions,false -42552,2b9fbe14-2ee3-40af-9592-d753573aef2e,AUTHORIZATION,,false -42553,2b9fbe14-2ee3-40af-9592-d753573aef2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42554,2b9fbe14-2ee3-40af-9592-d753573aef2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42555,2b9fbe14-2ee3-40af-9592-d753573aef2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42550,e68731f7-2e91-4c6a-97d2-a5259b94f281,LIST_ACCOUNTS,hbciListAccounts,false +42551,e68731f7-2e91-4c6a-97d2-a5259b94f281,LIST_TRANSACTIONS,hbciListTransactions,false +42552,e68731f7-2e91-4c6a-97d2-a5259b94f281,AUTHORIZATION,,false +42553,e68731f7-2e91-4c6a-97d2-a5259b94f281,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42554,e68731f7-2e91-4c6a-97d2-a5259b94f281,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42555,e68731f7-2e91-4c6a-97d2-a5259b94f281,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42556,ab50dcec-05de-457b-aec9-682ed1409445,LIST_ACCOUNTS,xs2aListAccounts,true -42557,ab50dcec-05de-457b-aec9-682ed1409445,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42557,ab50dcec-05de-457b-aec9-682ed1409445,LIST_TRANSACTIONS,xs2aListTransactions,true 42558,ab50dcec-05de-457b-aec9-682ed1409445,AUTHORIZATION,,true 42559,ab50dcec-05de-457b-aec9-682ed1409445,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42560,ab50dcec-05de-457b-aec9-682ed1409445,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42561,ab50dcec-05de-457b-aec9-682ed1409445,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42562,246cd595-1064-43d3-b957-34104edad423,LIST_ACCOUNTS,hbciListAccounts,false -42563,246cd595-1064-43d3-b957-34104edad423,LIST_TRANSACTIONS,hbciListTransactions,false -42564,246cd595-1064-43d3-b957-34104edad423,AUTHORIZATION,,false -42565,246cd595-1064-43d3-b957-34104edad423,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42566,246cd595-1064-43d3-b957-34104edad423,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42567,246cd595-1064-43d3-b957-34104edad423,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42562,f797f083-8a71-4c6c-9651-19c1ae4702ba,LIST_ACCOUNTS,hbciListAccounts,false +42563,f797f083-8a71-4c6c-9651-19c1ae4702ba,LIST_TRANSACTIONS,hbciListTransactions,false +42564,f797f083-8a71-4c6c-9651-19c1ae4702ba,AUTHORIZATION,,false +42565,f797f083-8a71-4c6c-9651-19c1ae4702ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42566,f797f083-8a71-4c6c-9651-19c1ae4702ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42567,f797f083-8a71-4c6c-9651-19c1ae4702ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42568,fe97b021-de6c-4d18-b560-0e3f8bef2e49,LIST_ACCOUNTS,xs2aListAccounts,true -42569,fe97b021-de6c-4d18-b560-0e3f8bef2e49,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42569,fe97b021-de6c-4d18-b560-0e3f8bef2e49,LIST_TRANSACTIONS,xs2aListTransactions,true 42570,fe97b021-de6c-4d18-b560-0e3f8bef2e49,AUTHORIZATION,,true 42571,fe97b021-de6c-4d18-b560-0e3f8bef2e49,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42572,fe97b021-de6c-4d18-b560-0e3f8bef2e49,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42573,fe97b021-de6c-4d18-b560-0e3f8bef2e49,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42574,ef1261d9-b6f6-4cf2-bcfd-b8c59995936c,LIST_ACCOUNTS,hbciListAccounts,false -42575,ef1261d9-b6f6-4cf2-bcfd-b8c59995936c,LIST_TRANSACTIONS,hbciListTransactions,false -42576,ef1261d9-b6f6-4cf2-bcfd-b8c59995936c,AUTHORIZATION,,false -42577,ef1261d9-b6f6-4cf2-bcfd-b8c59995936c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42578,ef1261d9-b6f6-4cf2-bcfd-b8c59995936c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42579,ef1261d9-b6f6-4cf2-bcfd-b8c59995936c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42574,b9acc77c-f624-4be1-ac18-44938a6caee3,LIST_ACCOUNTS,hbciListAccounts,false +42575,b9acc77c-f624-4be1-ac18-44938a6caee3,LIST_TRANSACTIONS,hbciListTransactions,false +42576,b9acc77c-f624-4be1-ac18-44938a6caee3,AUTHORIZATION,,false +42577,b9acc77c-f624-4be1-ac18-44938a6caee3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42578,b9acc77c-f624-4be1-ac18-44938a6caee3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42579,b9acc77c-f624-4be1-ac18-44938a6caee3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42580,5625b835-2bc8-48a1-887a-4682c53d6376,LIST_ACCOUNTS,xs2aListAccounts,true -42581,5625b835-2bc8-48a1-887a-4682c53d6376,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42581,5625b835-2bc8-48a1-887a-4682c53d6376,LIST_TRANSACTIONS,xs2aListTransactions,true 42582,5625b835-2bc8-48a1-887a-4682c53d6376,AUTHORIZATION,,true 42583,5625b835-2bc8-48a1-887a-4682c53d6376,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42584,5625b835-2bc8-48a1-887a-4682c53d6376,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42585,5625b835-2bc8-48a1-887a-4682c53d6376,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42586,ddb1e9d6-f2d2-41d0-9d45-aca123f43380,LIST_ACCOUNTS,hbciListAccounts,false -42587,ddb1e9d6-f2d2-41d0-9d45-aca123f43380,LIST_TRANSACTIONS,hbciListTransactions,false -42588,ddb1e9d6-f2d2-41d0-9d45-aca123f43380,AUTHORIZATION,,false -42589,ddb1e9d6-f2d2-41d0-9d45-aca123f43380,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42590,ddb1e9d6-f2d2-41d0-9d45-aca123f43380,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42591,ddb1e9d6-f2d2-41d0-9d45-aca123f43380,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42586,87e15cc5-2da0-40a8-b5e8-49ab977af4d9,LIST_ACCOUNTS,hbciListAccounts,false +42587,87e15cc5-2da0-40a8-b5e8-49ab977af4d9,LIST_TRANSACTIONS,hbciListTransactions,false +42588,87e15cc5-2da0-40a8-b5e8-49ab977af4d9,AUTHORIZATION,,false +42589,87e15cc5-2da0-40a8-b5e8-49ab977af4d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42590,87e15cc5-2da0-40a8-b5e8-49ab977af4d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42591,87e15cc5-2da0-40a8-b5e8-49ab977af4d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42592,cb9a6ea2-35a1-4c1e-b1ed-263c765d6e68,LIST_ACCOUNTS,xs2aListAccounts,true -42593,cb9a6ea2-35a1-4c1e-b1ed-263c765d6e68,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42593,cb9a6ea2-35a1-4c1e-b1ed-263c765d6e68,LIST_TRANSACTIONS,xs2aListTransactions,true 42594,cb9a6ea2-35a1-4c1e-b1ed-263c765d6e68,AUTHORIZATION,,true 42595,cb9a6ea2-35a1-4c1e-b1ed-263c765d6e68,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42596,cb9a6ea2-35a1-4c1e-b1ed-263c765d6e68,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42597,cb9a6ea2-35a1-4c1e-b1ed-263c765d6e68,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42598,32882f1f-e286-4ebe-a6b3-efa576d4fca1,LIST_ACCOUNTS,hbciListAccounts,false -42599,32882f1f-e286-4ebe-a6b3-efa576d4fca1,LIST_TRANSACTIONS,hbciListTransactions,false -42600,32882f1f-e286-4ebe-a6b3-efa576d4fca1,AUTHORIZATION,,false -42601,32882f1f-e286-4ebe-a6b3-efa576d4fca1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42602,32882f1f-e286-4ebe-a6b3-efa576d4fca1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42603,32882f1f-e286-4ebe-a6b3-efa576d4fca1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42598,ddb72eff-e669-47a8-af69-a3638cddd9d9,LIST_ACCOUNTS,hbciListAccounts,false +42599,ddb72eff-e669-47a8-af69-a3638cddd9d9,LIST_TRANSACTIONS,hbciListTransactions,false +42600,ddb72eff-e669-47a8-af69-a3638cddd9d9,AUTHORIZATION,,false +42601,ddb72eff-e669-47a8-af69-a3638cddd9d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42602,ddb72eff-e669-47a8-af69-a3638cddd9d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42603,ddb72eff-e669-47a8-af69-a3638cddd9d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42604,dec9b704-372b-4629-ad9c-6c3b2ae44573,LIST_ACCOUNTS,xs2aListAccounts,true -42605,dec9b704-372b-4629-ad9c-6c3b2ae44573,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42605,dec9b704-372b-4629-ad9c-6c3b2ae44573,LIST_TRANSACTIONS,xs2aListTransactions,true 42606,dec9b704-372b-4629-ad9c-6c3b2ae44573,AUTHORIZATION,,true 42607,dec9b704-372b-4629-ad9c-6c3b2ae44573,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42608,dec9b704-372b-4629-ad9c-6c3b2ae44573,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42609,dec9b704-372b-4629-ad9c-6c3b2ae44573,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42610,00e8b631-a803-49ac-a6cc-c722de047e32,LIST_ACCOUNTS,hbciListAccounts,false -42611,00e8b631-a803-49ac-a6cc-c722de047e32,LIST_TRANSACTIONS,hbciListTransactions,false -42612,00e8b631-a803-49ac-a6cc-c722de047e32,AUTHORIZATION,,false -42613,00e8b631-a803-49ac-a6cc-c722de047e32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42614,00e8b631-a803-49ac-a6cc-c722de047e32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42615,00e8b631-a803-49ac-a6cc-c722de047e32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42610,9bebcd1f-bdb1-4240-add5-96c8c8709126,LIST_ACCOUNTS,hbciListAccounts,false +42611,9bebcd1f-bdb1-4240-add5-96c8c8709126,LIST_TRANSACTIONS,hbciListTransactions,false +42612,9bebcd1f-bdb1-4240-add5-96c8c8709126,AUTHORIZATION,,false +42613,9bebcd1f-bdb1-4240-add5-96c8c8709126,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42614,9bebcd1f-bdb1-4240-add5-96c8c8709126,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42615,9bebcd1f-bdb1-4240-add5-96c8c8709126,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42616,aaf8885d-0dc7-402a-9eb6-a70b6c5ac954,LIST_ACCOUNTS,xs2aListAccounts,true -42617,aaf8885d-0dc7-402a-9eb6-a70b6c5ac954,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42617,aaf8885d-0dc7-402a-9eb6-a70b6c5ac954,LIST_TRANSACTIONS,xs2aListTransactions,true 42618,aaf8885d-0dc7-402a-9eb6-a70b6c5ac954,AUTHORIZATION,,true 42619,aaf8885d-0dc7-402a-9eb6-a70b6c5ac954,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42620,aaf8885d-0dc7-402a-9eb6-a70b6c5ac954,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42621,aaf8885d-0dc7-402a-9eb6-a70b6c5ac954,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42622,168dbf52-95d5-4c9f-a2bb-8458d80415ac,LIST_ACCOUNTS,hbciListAccounts,false -42623,168dbf52-95d5-4c9f-a2bb-8458d80415ac,LIST_TRANSACTIONS,hbciListTransactions,false -42624,168dbf52-95d5-4c9f-a2bb-8458d80415ac,AUTHORIZATION,,false -42625,168dbf52-95d5-4c9f-a2bb-8458d80415ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42626,168dbf52-95d5-4c9f-a2bb-8458d80415ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42627,168dbf52-95d5-4c9f-a2bb-8458d80415ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42622,997b9bf3-6b0c-45b8-8bb8-d5f93f697972,LIST_ACCOUNTS,hbciListAccounts,false +42623,997b9bf3-6b0c-45b8-8bb8-d5f93f697972,LIST_TRANSACTIONS,hbciListTransactions,false +42624,997b9bf3-6b0c-45b8-8bb8-d5f93f697972,AUTHORIZATION,,false +42625,997b9bf3-6b0c-45b8-8bb8-d5f93f697972,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42626,997b9bf3-6b0c-45b8-8bb8-d5f93f697972,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42627,997b9bf3-6b0c-45b8-8bb8-d5f93f697972,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42628,2c5e18d6-a0b8-4dac-8889-43d5669a5370,LIST_ACCOUNTS,xs2aListAccounts,true -42629,2c5e18d6-a0b8-4dac-8889-43d5669a5370,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42629,2c5e18d6-a0b8-4dac-8889-43d5669a5370,LIST_TRANSACTIONS,xs2aListTransactions,true 42630,2c5e18d6-a0b8-4dac-8889-43d5669a5370,AUTHORIZATION,,true 42631,2c5e18d6-a0b8-4dac-8889-43d5669a5370,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42632,2c5e18d6-a0b8-4dac-8889-43d5669a5370,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42633,2c5e18d6-a0b8-4dac-8889-43d5669a5370,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42634,59044515-1ea2-4258-8d4f-de6afbed5981,LIST_ACCOUNTS,hbciListAccounts,false -42635,59044515-1ea2-4258-8d4f-de6afbed5981,LIST_TRANSACTIONS,hbciListTransactions,false -42636,59044515-1ea2-4258-8d4f-de6afbed5981,AUTHORIZATION,,false -42637,59044515-1ea2-4258-8d4f-de6afbed5981,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42638,59044515-1ea2-4258-8d4f-de6afbed5981,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42639,59044515-1ea2-4258-8d4f-de6afbed5981,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42634,5a2c0ea9-0b29-4e3e-a24b-cb94f3741d4f,LIST_ACCOUNTS,hbciListAccounts,false +42635,5a2c0ea9-0b29-4e3e-a24b-cb94f3741d4f,LIST_TRANSACTIONS,hbciListTransactions,false +42636,5a2c0ea9-0b29-4e3e-a24b-cb94f3741d4f,AUTHORIZATION,,false +42637,5a2c0ea9-0b29-4e3e-a24b-cb94f3741d4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42638,5a2c0ea9-0b29-4e3e-a24b-cb94f3741d4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42639,5a2c0ea9-0b29-4e3e-a24b-cb94f3741d4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42640,72b07610-3e7f-401e-94fd-6469b941f9f9,LIST_ACCOUNTS,xs2aListAccounts,true -42641,72b07610-3e7f-401e-94fd-6469b941f9f9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42641,72b07610-3e7f-401e-94fd-6469b941f9f9,LIST_TRANSACTIONS,xs2aListTransactions,true 42642,72b07610-3e7f-401e-94fd-6469b941f9f9,AUTHORIZATION,,true 42643,72b07610-3e7f-401e-94fd-6469b941f9f9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42644,72b07610-3e7f-401e-94fd-6469b941f9f9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42645,72b07610-3e7f-401e-94fd-6469b941f9f9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42646,c75c9d09-c587-4d77-bfd6-d09fd4251147,LIST_ACCOUNTS,hbciListAccounts,false -42647,c75c9d09-c587-4d77-bfd6-d09fd4251147,LIST_TRANSACTIONS,hbciListTransactions,false -42648,c75c9d09-c587-4d77-bfd6-d09fd4251147,AUTHORIZATION,,false -42649,c75c9d09-c587-4d77-bfd6-d09fd4251147,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42650,c75c9d09-c587-4d77-bfd6-d09fd4251147,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42651,c75c9d09-c587-4d77-bfd6-d09fd4251147,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42646,9143b8b0-ef06-4327-b52f-c062b35ddd8f,LIST_ACCOUNTS,hbciListAccounts,false +42647,9143b8b0-ef06-4327-b52f-c062b35ddd8f,LIST_TRANSACTIONS,hbciListTransactions,false +42648,9143b8b0-ef06-4327-b52f-c062b35ddd8f,AUTHORIZATION,,false +42649,9143b8b0-ef06-4327-b52f-c062b35ddd8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42650,9143b8b0-ef06-4327-b52f-c062b35ddd8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42651,9143b8b0-ef06-4327-b52f-c062b35ddd8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42652,f0d3781b-eef5-465e-8832-f21ab75562bb,LIST_ACCOUNTS,xs2aListAccounts,true -42653,f0d3781b-eef5-465e-8832-f21ab75562bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42653,f0d3781b-eef5-465e-8832-f21ab75562bb,LIST_TRANSACTIONS,xs2aListTransactions,true 42654,f0d3781b-eef5-465e-8832-f21ab75562bb,AUTHORIZATION,,true 42655,f0d3781b-eef5-465e-8832-f21ab75562bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42656,f0d3781b-eef5-465e-8832-f21ab75562bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42657,f0d3781b-eef5-465e-8832-f21ab75562bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42658,784b8bfe-1867-4c2d-98ff-99051c49d19d,LIST_ACCOUNTS,hbciListAccounts,false -42659,784b8bfe-1867-4c2d-98ff-99051c49d19d,LIST_TRANSACTIONS,hbciListTransactions,false -42660,784b8bfe-1867-4c2d-98ff-99051c49d19d,AUTHORIZATION,,false -42661,784b8bfe-1867-4c2d-98ff-99051c49d19d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42662,784b8bfe-1867-4c2d-98ff-99051c49d19d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42663,784b8bfe-1867-4c2d-98ff-99051c49d19d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42658,da396ed8-e618-4518-9ca2-33a22071deb8,LIST_ACCOUNTS,hbciListAccounts,false +42659,da396ed8-e618-4518-9ca2-33a22071deb8,LIST_TRANSACTIONS,hbciListTransactions,false +42660,da396ed8-e618-4518-9ca2-33a22071deb8,AUTHORIZATION,,false +42661,da396ed8-e618-4518-9ca2-33a22071deb8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42662,da396ed8-e618-4518-9ca2-33a22071deb8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42663,da396ed8-e618-4518-9ca2-33a22071deb8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42664,ed06e102-7eda-43a2-b682-7ec9c65e3eea,LIST_ACCOUNTS,xs2aListAccounts,true -42665,ed06e102-7eda-43a2-b682-7ec9c65e3eea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42665,ed06e102-7eda-43a2-b682-7ec9c65e3eea,LIST_TRANSACTIONS,xs2aListTransactions,true 42666,ed06e102-7eda-43a2-b682-7ec9c65e3eea,AUTHORIZATION,,true 42667,ed06e102-7eda-43a2-b682-7ec9c65e3eea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42668,ed06e102-7eda-43a2-b682-7ec9c65e3eea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42669,ed06e102-7eda-43a2-b682-7ec9c65e3eea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42670,c34936e2-a312-492e-9979-f239ace9e131,LIST_ACCOUNTS,hbciListAccounts,false -42671,c34936e2-a312-492e-9979-f239ace9e131,LIST_TRANSACTIONS,hbciListTransactions,false -42672,c34936e2-a312-492e-9979-f239ace9e131,AUTHORIZATION,,false -42673,c34936e2-a312-492e-9979-f239ace9e131,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42674,c34936e2-a312-492e-9979-f239ace9e131,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42675,c34936e2-a312-492e-9979-f239ace9e131,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42670,49f09aa0-6dec-47a4-b336-1a451bd19078,LIST_ACCOUNTS,hbciListAccounts,false +42671,49f09aa0-6dec-47a4-b336-1a451bd19078,LIST_TRANSACTIONS,hbciListTransactions,false +42672,49f09aa0-6dec-47a4-b336-1a451bd19078,AUTHORIZATION,,false +42673,49f09aa0-6dec-47a4-b336-1a451bd19078,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42674,49f09aa0-6dec-47a4-b336-1a451bd19078,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42675,49f09aa0-6dec-47a4-b336-1a451bd19078,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42676,9c15fb1e-d2f7-47e0-ad1e-e12e048e0128,LIST_ACCOUNTS,xs2aListAccounts,true -42677,9c15fb1e-d2f7-47e0-ad1e-e12e048e0128,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42677,9c15fb1e-d2f7-47e0-ad1e-e12e048e0128,LIST_TRANSACTIONS,xs2aListTransactions,true 42678,9c15fb1e-d2f7-47e0-ad1e-e12e048e0128,AUTHORIZATION,,true 42679,9c15fb1e-d2f7-47e0-ad1e-e12e048e0128,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42680,9c15fb1e-d2f7-47e0-ad1e-e12e048e0128,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42681,9c15fb1e-d2f7-47e0-ad1e-e12e048e0128,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42682,687088ca-c258-4b3b-8ba4-2bc4644f510a,LIST_ACCOUNTS,hbciListAccounts,false -42683,687088ca-c258-4b3b-8ba4-2bc4644f510a,LIST_TRANSACTIONS,hbciListTransactions,false -42684,687088ca-c258-4b3b-8ba4-2bc4644f510a,AUTHORIZATION,,false -42685,687088ca-c258-4b3b-8ba4-2bc4644f510a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42686,687088ca-c258-4b3b-8ba4-2bc4644f510a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42687,687088ca-c258-4b3b-8ba4-2bc4644f510a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42682,de8743ee-05c6-4d0d-8410-1c8069324b69,LIST_ACCOUNTS,hbciListAccounts,false +42683,de8743ee-05c6-4d0d-8410-1c8069324b69,LIST_TRANSACTIONS,hbciListTransactions,false +42684,de8743ee-05c6-4d0d-8410-1c8069324b69,AUTHORIZATION,,false +42685,de8743ee-05c6-4d0d-8410-1c8069324b69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42686,de8743ee-05c6-4d0d-8410-1c8069324b69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42687,de8743ee-05c6-4d0d-8410-1c8069324b69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42688,fa2fc954-ca15-4589-94b0-bfe362b6f744,LIST_ACCOUNTS,xs2aListAccounts,true -42689,fa2fc954-ca15-4589-94b0-bfe362b6f744,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42689,fa2fc954-ca15-4589-94b0-bfe362b6f744,LIST_TRANSACTIONS,xs2aListTransactions,true 42690,fa2fc954-ca15-4589-94b0-bfe362b6f744,AUTHORIZATION,,true 42691,fa2fc954-ca15-4589-94b0-bfe362b6f744,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42692,fa2fc954-ca15-4589-94b0-bfe362b6f744,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42693,fa2fc954-ca15-4589-94b0-bfe362b6f744,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42694,78f1e554-90c3-4de4-aca1-2bf7d06b6cba,LIST_ACCOUNTS,hbciListAccounts,false -42695,78f1e554-90c3-4de4-aca1-2bf7d06b6cba,LIST_TRANSACTIONS,hbciListTransactions,false -42696,78f1e554-90c3-4de4-aca1-2bf7d06b6cba,AUTHORIZATION,,false -42697,78f1e554-90c3-4de4-aca1-2bf7d06b6cba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42698,78f1e554-90c3-4de4-aca1-2bf7d06b6cba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42699,78f1e554-90c3-4de4-aca1-2bf7d06b6cba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42694,a2a078c1-1242-4f77-9e07-db30f7ddf2ad,LIST_ACCOUNTS,hbciListAccounts,false +42695,a2a078c1-1242-4f77-9e07-db30f7ddf2ad,LIST_TRANSACTIONS,hbciListTransactions,false +42696,a2a078c1-1242-4f77-9e07-db30f7ddf2ad,AUTHORIZATION,,false +42697,a2a078c1-1242-4f77-9e07-db30f7ddf2ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42698,a2a078c1-1242-4f77-9e07-db30f7ddf2ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42699,a2a078c1-1242-4f77-9e07-db30f7ddf2ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42700,446901cb-2204-40d1-af05-3706c6c891c5,LIST_ACCOUNTS,xs2aListAccounts,true -42701,446901cb-2204-40d1-af05-3706c6c891c5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42701,446901cb-2204-40d1-af05-3706c6c891c5,LIST_TRANSACTIONS,xs2aListTransactions,true 42702,446901cb-2204-40d1-af05-3706c6c891c5,AUTHORIZATION,,true 42703,446901cb-2204-40d1-af05-3706c6c891c5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42704,446901cb-2204-40d1-af05-3706c6c891c5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42705,446901cb-2204-40d1-af05-3706c6c891c5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42706,4d11ba32-c35b-44c2-9285-2a085808a24c,LIST_ACCOUNTS,hbciListAccounts,false -42707,4d11ba32-c35b-44c2-9285-2a085808a24c,LIST_TRANSACTIONS,hbciListTransactions,false -42708,4d11ba32-c35b-44c2-9285-2a085808a24c,AUTHORIZATION,,false -42709,4d11ba32-c35b-44c2-9285-2a085808a24c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42710,4d11ba32-c35b-44c2-9285-2a085808a24c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42711,4d11ba32-c35b-44c2-9285-2a085808a24c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42706,e1db69a1-bacd-4482-951b-e9cf95e0e863,LIST_ACCOUNTS,hbciListAccounts,false +42707,e1db69a1-bacd-4482-951b-e9cf95e0e863,LIST_TRANSACTIONS,hbciListTransactions,false +42708,e1db69a1-bacd-4482-951b-e9cf95e0e863,AUTHORIZATION,,false +42709,e1db69a1-bacd-4482-951b-e9cf95e0e863,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42710,e1db69a1-bacd-4482-951b-e9cf95e0e863,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42711,e1db69a1-bacd-4482-951b-e9cf95e0e863,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42712,8bbd04b5-f7ff-486e-aa22-9dcbfd195176,LIST_ACCOUNTS,xs2aListAccounts,true -42713,8bbd04b5-f7ff-486e-aa22-9dcbfd195176,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42713,8bbd04b5-f7ff-486e-aa22-9dcbfd195176,LIST_TRANSACTIONS,xs2aListTransactions,true 42714,8bbd04b5-f7ff-486e-aa22-9dcbfd195176,AUTHORIZATION,,true 42715,8bbd04b5-f7ff-486e-aa22-9dcbfd195176,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42716,8bbd04b5-f7ff-486e-aa22-9dcbfd195176,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42717,8bbd04b5-f7ff-486e-aa22-9dcbfd195176,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42718,0250f4d3-5dda-4c72-ad67-eb7165d93448,LIST_ACCOUNTS,hbciListAccounts,false -42719,0250f4d3-5dda-4c72-ad67-eb7165d93448,LIST_TRANSACTIONS,hbciListTransactions,false -42720,0250f4d3-5dda-4c72-ad67-eb7165d93448,AUTHORIZATION,,false -42721,0250f4d3-5dda-4c72-ad67-eb7165d93448,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42722,0250f4d3-5dda-4c72-ad67-eb7165d93448,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42723,0250f4d3-5dda-4c72-ad67-eb7165d93448,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42718,105149dc-53cc-406b-9d80-aed61552a72e,LIST_ACCOUNTS,hbciListAccounts,false +42719,105149dc-53cc-406b-9d80-aed61552a72e,LIST_TRANSACTIONS,hbciListTransactions,false +42720,105149dc-53cc-406b-9d80-aed61552a72e,AUTHORIZATION,,false +42721,105149dc-53cc-406b-9d80-aed61552a72e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42722,105149dc-53cc-406b-9d80-aed61552a72e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42723,105149dc-53cc-406b-9d80-aed61552a72e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42724,a30aa85b-4189-420e-a349-e167302b2490,LIST_ACCOUNTS,xs2aListAccounts,true -42725,a30aa85b-4189-420e-a349-e167302b2490,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42725,a30aa85b-4189-420e-a349-e167302b2490,LIST_TRANSACTIONS,xs2aListTransactions,true 42726,a30aa85b-4189-420e-a349-e167302b2490,AUTHORIZATION,,true 42727,a30aa85b-4189-420e-a349-e167302b2490,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42728,a30aa85b-4189-420e-a349-e167302b2490,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42729,a30aa85b-4189-420e-a349-e167302b2490,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42730,d976ebca-b25b-4759-917c-9d6f5c981c5d,LIST_ACCOUNTS,hbciListAccounts,false -42731,d976ebca-b25b-4759-917c-9d6f5c981c5d,LIST_TRANSACTIONS,hbciListTransactions,false -42732,d976ebca-b25b-4759-917c-9d6f5c981c5d,AUTHORIZATION,,false -42733,d976ebca-b25b-4759-917c-9d6f5c981c5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42734,d976ebca-b25b-4759-917c-9d6f5c981c5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42735,d976ebca-b25b-4759-917c-9d6f5c981c5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42730,f754ca95-272f-4212-83e5-0f1fa2893417,LIST_ACCOUNTS,hbciListAccounts,false +42731,f754ca95-272f-4212-83e5-0f1fa2893417,LIST_TRANSACTIONS,hbciListTransactions,false +42732,f754ca95-272f-4212-83e5-0f1fa2893417,AUTHORIZATION,,false +42733,f754ca95-272f-4212-83e5-0f1fa2893417,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42734,f754ca95-272f-4212-83e5-0f1fa2893417,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42735,f754ca95-272f-4212-83e5-0f1fa2893417,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42736,92739911-7a97-44fd-8a72-9bef99df3211,LIST_ACCOUNTS,xs2aListAccounts,true -42737,92739911-7a97-44fd-8a72-9bef99df3211,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42737,92739911-7a97-44fd-8a72-9bef99df3211,LIST_TRANSACTIONS,xs2aListTransactions,true 42738,92739911-7a97-44fd-8a72-9bef99df3211,AUTHORIZATION,,true 42739,92739911-7a97-44fd-8a72-9bef99df3211,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42740,92739911-7a97-44fd-8a72-9bef99df3211,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42741,92739911-7a97-44fd-8a72-9bef99df3211,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42742,94e2b4c6-c303-4a9a-8017-e59e44479af0,LIST_ACCOUNTS,hbciListAccounts,false -42743,94e2b4c6-c303-4a9a-8017-e59e44479af0,LIST_TRANSACTIONS,hbciListTransactions,false -42744,94e2b4c6-c303-4a9a-8017-e59e44479af0,AUTHORIZATION,,false -42745,94e2b4c6-c303-4a9a-8017-e59e44479af0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42746,94e2b4c6-c303-4a9a-8017-e59e44479af0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42747,94e2b4c6-c303-4a9a-8017-e59e44479af0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42742,19cf12f2-597a-4be3-852c-38741d9dbd86,LIST_ACCOUNTS,hbciListAccounts,false +42743,19cf12f2-597a-4be3-852c-38741d9dbd86,LIST_TRANSACTIONS,hbciListTransactions,false +42744,19cf12f2-597a-4be3-852c-38741d9dbd86,AUTHORIZATION,,false +42745,19cf12f2-597a-4be3-852c-38741d9dbd86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42746,19cf12f2-597a-4be3-852c-38741d9dbd86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42747,19cf12f2-597a-4be3-852c-38741d9dbd86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42748,8daf11fc-6573-4dea-8504-4cd915a58b9b,LIST_ACCOUNTS,xs2aListAccounts,true -42749,8daf11fc-6573-4dea-8504-4cd915a58b9b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42749,8daf11fc-6573-4dea-8504-4cd915a58b9b,LIST_TRANSACTIONS,xs2aListTransactions,true 42750,8daf11fc-6573-4dea-8504-4cd915a58b9b,AUTHORIZATION,,true 42751,8daf11fc-6573-4dea-8504-4cd915a58b9b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42752,8daf11fc-6573-4dea-8504-4cd915a58b9b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42753,8daf11fc-6573-4dea-8504-4cd915a58b9b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42754,df0be897-7360-4104-89b4-bca84994c78d,LIST_ACCOUNTS,hbciListAccounts,false -42755,df0be897-7360-4104-89b4-bca84994c78d,LIST_TRANSACTIONS,hbciListTransactions,false -42756,df0be897-7360-4104-89b4-bca84994c78d,AUTHORIZATION,,false -42757,df0be897-7360-4104-89b4-bca84994c78d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42758,df0be897-7360-4104-89b4-bca84994c78d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42759,df0be897-7360-4104-89b4-bca84994c78d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42754,fbd9f4ab-cb43-4275-9fa0-768e272886c0,LIST_ACCOUNTS,hbciListAccounts,false +42755,fbd9f4ab-cb43-4275-9fa0-768e272886c0,LIST_TRANSACTIONS,hbciListTransactions,false +42756,fbd9f4ab-cb43-4275-9fa0-768e272886c0,AUTHORIZATION,,false +42757,fbd9f4ab-cb43-4275-9fa0-768e272886c0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42758,fbd9f4ab-cb43-4275-9fa0-768e272886c0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42759,fbd9f4ab-cb43-4275-9fa0-768e272886c0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42760,fe4dbcc7-da5d-453f-8aa4-65f5519b2c4b,LIST_ACCOUNTS,xs2aListAccounts,true -42761,fe4dbcc7-da5d-453f-8aa4-65f5519b2c4b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42761,fe4dbcc7-da5d-453f-8aa4-65f5519b2c4b,LIST_TRANSACTIONS,xs2aListTransactions,true 42762,fe4dbcc7-da5d-453f-8aa4-65f5519b2c4b,AUTHORIZATION,,true 42763,fe4dbcc7-da5d-453f-8aa4-65f5519b2c4b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42764,fe4dbcc7-da5d-453f-8aa4-65f5519b2c4b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42765,fe4dbcc7-da5d-453f-8aa4-65f5519b2c4b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42766,f091781e-ad89-461c-951e-d3a8f172d2d1,LIST_ACCOUNTS,hbciListAccounts,false -42767,f091781e-ad89-461c-951e-d3a8f172d2d1,LIST_TRANSACTIONS,hbciListTransactions,false -42768,f091781e-ad89-461c-951e-d3a8f172d2d1,AUTHORIZATION,,false -42769,f091781e-ad89-461c-951e-d3a8f172d2d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42770,f091781e-ad89-461c-951e-d3a8f172d2d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42771,f091781e-ad89-461c-951e-d3a8f172d2d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42766,3170b032-6882-4f8a-b427-2fc2ce41c364,LIST_ACCOUNTS,hbciListAccounts,false +42767,3170b032-6882-4f8a-b427-2fc2ce41c364,LIST_TRANSACTIONS,hbciListTransactions,false +42768,3170b032-6882-4f8a-b427-2fc2ce41c364,AUTHORIZATION,,false +42769,3170b032-6882-4f8a-b427-2fc2ce41c364,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42770,3170b032-6882-4f8a-b427-2fc2ce41c364,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42771,3170b032-6882-4f8a-b427-2fc2ce41c364,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42772,5b2a186f-bf54-4fdd-8eeb-8ba2a34a99da,LIST_ACCOUNTS,xs2aListAccounts,true -42773,5b2a186f-bf54-4fdd-8eeb-8ba2a34a99da,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42773,5b2a186f-bf54-4fdd-8eeb-8ba2a34a99da,LIST_TRANSACTIONS,xs2aListTransactions,true 42774,5b2a186f-bf54-4fdd-8eeb-8ba2a34a99da,AUTHORIZATION,,true 42775,5b2a186f-bf54-4fdd-8eeb-8ba2a34a99da,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42776,5b2a186f-bf54-4fdd-8eeb-8ba2a34a99da,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42777,5b2a186f-bf54-4fdd-8eeb-8ba2a34a99da,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42778,80854144-3fd6-4204-b036-37b2129b3e0e,LIST_ACCOUNTS,hbciListAccounts,false -42779,80854144-3fd6-4204-b036-37b2129b3e0e,LIST_TRANSACTIONS,hbciListTransactions,false -42780,80854144-3fd6-4204-b036-37b2129b3e0e,AUTHORIZATION,,false -42781,80854144-3fd6-4204-b036-37b2129b3e0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42782,80854144-3fd6-4204-b036-37b2129b3e0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42783,80854144-3fd6-4204-b036-37b2129b3e0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42778,6fe90636-ac2c-4b1f-a75a-f43eb411e32e,LIST_ACCOUNTS,hbciListAccounts,false +42779,6fe90636-ac2c-4b1f-a75a-f43eb411e32e,LIST_TRANSACTIONS,hbciListTransactions,false +42780,6fe90636-ac2c-4b1f-a75a-f43eb411e32e,AUTHORIZATION,,false +42781,6fe90636-ac2c-4b1f-a75a-f43eb411e32e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42782,6fe90636-ac2c-4b1f-a75a-f43eb411e32e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42783,6fe90636-ac2c-4b1f-a75a-f43eb411e32e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42784,ab99379b-2ca9-4c3a-b657-87a84c7f303f,LIST_ACCOUNTS,xs2aListAccounts,true -42785,ab99379b-2ca9-4c3a-b657-87a84c7f303f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42785,ab99379b-2ca9-4c3a-b657-87a84c7f303f,LIST_TRANSACTIONS,xs2aListTransactions,true 42786,ab99379b-2ca9-4c3a-b657-87a84c7f303f,AUTHORIZATION,,true 42787,ab99379b-2ca9-4c3a-b657-87a84c7f303f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42788,ab99379b-2ca9-4c3a-b657-87a84c7f303f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42789,ab99379b-2ca9-4c3a-b657-87a84c7f303f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42790,724ec001-8bf2-4717-930c-fa00c45e57bc,LIST_ACCOUNTS,hbciListAccounts,false -42791,724ec001-8bf2-4717-930c-fa00c45e57bc,LIST_TRANSACTIONS,hbciListTransactions,false -42792,724ec001-8bf2-4717-930c-fa00c45e57bc,AUTHORIZATION,,false -42793,724ec001-8bf2-4717-930c-fa00c45e57bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42794,724ec001-8bf2-4717-930c-fa00c45e57bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42795,724ec001-8bf2-4717-930c-fa00c45e57bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42790,94ee17bd-10a8-4855-9287-79be572feba2,LIST_ACCOUNTS,hbciListAccounts,false +42791,94ee17bd-10a8-4855-9287-79be572feba2,LIST_TRANSACTIONS,hbciListTransactions,false +42792,94ee17bd-10a8-4855-9287-79be572feba2,AUTHORIZATION,,false +42793,94ee17bd-10a8-4855-9287-79be572feba2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42794,94ee17bd-10a8-4855-9287-79be572feba2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42795,94ee17bd-10a8-4855-9287-79be572feba2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42796,b3a32164-3cee-4b5b-9b67-b00ed10afc43,LIST_ACCOUNTS,xs2aListAccounts,true -42797,b3a32164-3cee-4b5b-9b67-b00ed10afc43,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42797,b3a32164-3cee-4b5b-9b67-b00ed10afc43,LIST_TRANSACTIONS,xs2aListTransactions,true 42798,b3a32164-3cee-4b5b-9b67-b00ed10afc43,AUTHORIZATION,,true 42799,b3a32164-3cee-4b5b-9b67-b00ed10afc43,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42800,b3a32164-3cee-4b5b-9b67-b00ed10afc43,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42801,b3a32164-3cee-4b5b-9b67-b00ed10afc43,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42802,d38f7df3-3ef9-4fe4-936e-937726cbd885,LIST_ACCOUNTS,hbciListAccounts,false -42803,d38f7df3-3ef9-4fe4-936e-937726cbd885,LIST_TRANSACTIONS,hbciListTransactions,false -42804,d38f7df3-3ef9-4fe4-936e-937726cbd885,AUTHORIZATION,,false -42805,d38f7df3-3ef9-4fe4-936e-937726cbd885,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42806,d38f7df3-3ef9-4fe4-936e-937726cbd885,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42807,d38f7df3-3ef9-4fe4-936e-937726cbd885,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42802,afd54411-4f70-4c28-a3f8-a437a84ad5ff,LIST_ACCOUNTS,hbciListAccounts,false +42803,afd54411-4f70-4c28-a3f8-a437a84ad5ff,LIST_TRANSACTIONS,hbciListTransactions,false +42804,afd54411-4f70-4c28-a3f8-a437a84ad5ff,AUTHORIZATION,,false +42805,afd54411-4f70-4c28-a3f8-a437a84ad5ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42806,afd54411-4f70-4c28-a3f8-a437a84ad5ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42807,afd54411-4f70-4c28-a3f8-a437a84ad5ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42808,19be4375-1622-40dd-a827-65b252cc1088,LIST_ACCOUNTS,xs2aListAccounts,true -42809,19be4375-1622-40dd-a827-65b252cc1088,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42809,19be4375-1622-40dd-a827-65b252cc1088,LIST_TRANSACTIONS,xs2aListTransactions,true 42810,19be4375-1622-40dd-a827-65b252cc1088,AUTHORIZATION,,true 42811,19be4375-1622-40dd-a827-65b252cc1088,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42812,19be4375-1622-40dd-a827-65b252cc1088,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42813,19be4375-1622-40dd-a827-65b252cc1088,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42814,a4992223-e800-4f04-9334-664123e821bb,LIST_ACCOUNTS,hbciListAccounts,false -42815,a4992223-e800-4f04-9334-664123e821bb,LIST_TRANSACTIONS,hbciListTransactions,false -42816,a4992223-e800-4f04-9334-664123e821bb,AUTHORIZATION,,false -42817,a4992223-e800-4f04-9334-664123e821bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42818,a4992223-e800-4f04-9334-664123e821bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42819,a4992223-e800-4f04-9334-664123e821bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42814,bed358ac-d2a8-4543-858f-91c5a6adcbea,LIST_ACCOUNTS,hbciListAccounts,false +42815,bed358ac-d2a8-4543-858f-91c5a6adcbea,LIST_TRANSACTIONS,hbciListTransactions,false +42816,bed358ac-d2a8-4543-858f-91c5a6adcbea,AUTHORIZATION,,false +42817,bed358ac-d2a8-4543-858f-91c5a6adcbea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42818,bed358ac-d2a8-4543-858f-91c5a6adcbea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42819,bed358ac-d2a8-4543-858f-91c5a6adcbea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42820,094c849d-1af3-479a-870d-79600389ae76,LIST_ACCOUNTS,xs2aListAccounts,true -42821,094c849d-1af3-479a-870d-79600389ae76,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42821,094c849d-1af3-479a-870d-79600389ae76,LIST_TRANSACTIONS,xs2aListTransactions,true 42822,094c849d-1af3-479a-870d-79600389ae76,AUTHORIZATION,,true 42823,094c849d-1af3-479a-870d-79600389ae76,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42824,094c849d-1af3-479a-870d-79600389ae76,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42825,094c849d-1af3-479a-870d-79600389ae76,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42826,386fba73-dcbd-4ced-ab15-803d4567b031,LIST_ACCOUNTS,hbciListAccounts,false -42827,386fba73-dcbd-4ced-ab15-803d4567b031,LIST_TRANSACTIONS,hbciListTransactions,false -42828,386fba73-dcbd-4ced-ab15-803d4567b031,AUTHORIZATION,,false -42829,386fba73-dcbd-4ced-ab15-803d4567b031,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42830,386fba73-dcbd-4ced-ab15-803d4567b031,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42831,386fba73-dcbd-4ced-ab15-803d4567b031,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42826,45a69d8c-8d04-4306-b184-5dd655ab0ab4,LIST_ACCOUNTS,hbciListAccounts,false +42827,45a69d8c-8d04-4306-b184-5dd655ab0ab4,LIST_TRANSACTIONS,hbciListTransactions,false +42828,45a69d8c-8d04-4306-b184-5dd655ab0ab4,AUTHORIZATION,,false +42829,45a69d8c-8d04-4306-b184-5dd655ab0ab4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42830,45a69d8c-8d04-4306-b184-5dd655ab0ab4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42831,45a69d8c-8d04-4306-b184-5dd655ab0ab4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42832,be8c159f-ab5c-4d3f-9871-98d41c159b34,LIST_ACCOUNTS,xs2aListAccounts,true -42833,be8c159f-ab5c-4d3f-9871-98d41c159b34,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42833,be8c159f-ab5c-4d3f-9871-98d41c159b34,LIST_TRANSACTIONS,xs2aListTransactions,true 42834,be8c159f-ab5c-4d3f-9871-98d41c159b34,AUTHORIZATION,,true 42835,be8c159f-ab5c-4d3f-9871-98d41c159b34,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42836,be8c159f-ab5c-4d3f-9871-98d41c159b34,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42837,be8c159f-ab5c-4d3f-9871-98d41c159b34,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42838,2f781a2c-da43-4704-b3df-d1e2220bc564,LIST_ACCOUNTS,hbciListAccounts,false -42839,2f781a2c-da43-4704-b3df-d1e2220bc564,LIST_TRANSACTIONS,hbciListTransactions,false -42840,2f781a2c-da43-4704-b3df-d1e2220bc564,AUTHORIZATION,,false -42841,2f781a2c-da43-4704-b3df-d1e2220bc564,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42842,2f781a2c-da43-4704-b3df-d1e2220bc564,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42843,2f781a2c-da43-4704-b3df-d1e2220bc564,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42838,5fac0a94-8600-49b7-b885-21f9f1f64a33,LIST_ACCOUNTS,hbciListAccounts,false +42839,5fac0a94-8600-49b7-b885-21f9f1f64a33,LIST_TRANSACTIONS,hbciListTransactions,false +42840,5fac0a94-8600-49b7-b885-21f9f1f64a33,AUTHORIZATION,,false +42841,5fac0a94-8600-49b7-b885-21f9f1f64a33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42842,5fac0a94-8600-49b7-b885-21f9f1f64a33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42843,5fac0a94-8600-49b7-b885-21f9f1f64a33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42844,3743e1c0-60fa-4f11-a979-1a0bd101756a,LIST_ACCOUNTS,xs2aListAccounts,true -42845,3743e1c0-60fa-4f11-a979-1a0bd101756a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42845,3743e1c0-60fa-4f11-a979-1a0bd101756a,LIST_TRANSACTIONS,xs2aListTransactions,true 42846,3743e1c0-60fa-4f11-a979-1a0bd101756a,AUTHORIZATION,,true 42847,3743e1c0-60fa-4f11-a979-1a0bd101756a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42848,3743e1c0-60fa-4f11-a979-1a0bd101756a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42849,3743e1c0-60fa-4f11-a979-1a0bd101756a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42850,cc045544-598a-4598-92b1-cb69766911e1,LIST_ACCOUNTS,hbciListAccounts,false -42851,cc045544-598a-4598-92b1-cb69766911e1,LIST_TRANSACTIONS,hbciListTransactions,false -42852,cc045544-598a-4598-92b1-cb69766911e1,AUTHORIZATION,,false -42853,cc045544-598a-4598-92b1-cb69766911e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42854,cc045544-598a-4598-92b1-cb69766911e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42855,cc045544-598a-4598-92b1-cb69766911e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42850,f52cb3e6-2427-48a8-8e90-3cd36bc7d3f1,LIST_ACCOUNTS,hbciListAccounts,false +42851,f52cb3e6-2427-48a8-8e90-3cd36bc7d3f1,LIST_TRANSACTIONS,hbciListTransactions,false +42852,f52cb3e6-2427-48a8-8e90-3cd36bc7d3f1,AUTHORIZATION,,false +42853,f52cb3e6-2427-48a8-8e90-3cd36bc7d3f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42854,f52cb3e6-2427-48a8-8e90-3cd36bc7d3f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42855,f52cb3e6-2427-48a8-8e90-3cd36bc7d3f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42856,49770ea6-a72e-43d2-b750-c4d5ee92fa09,LIST_ACCOUNTS,xs2aListAccounts,true -42857,49770ea6-a72e-43d2-b750-c4d5ee92fa09,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42857,49770ea6-a72e-43d2-b750-c4d5ee92fa09,LIST_TRANSACTIONS,xs2aListTransactions,true 42858,49770ea6-a72e-43d2-b750-c4d5ee92fa09,AUTHORIZATION,,true 42859,49770ea6-a72e-43d2-b750-c4d5ee92fa09,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42860,49770ea6-a72e-43d2-b750-c4d5ee92fa09,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42861,49770ea6-a72e-43d2-b750-c4d5ee92fa09,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42862,6e6b56af-c090-46f5-be33-ee6799e7eb1c,LIST_ACCOUNTS,hbciListAccounts,false -42863,6e6b56af-c090-46f5-be33-ee6799e7eb1c,LIST_TRANSACTIONS,hbciListTransactions,false -42864,6e6b56af-c090-46f5-be33-ee6799e7eb1c,AUTHORIZATION,,false -42865,6e6b56af-c090-46f5-be33-ee6799e7eb1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42866,6e6b56af-c090-46f5-be33-ee6799e7eb1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42867,6e6b56af-c090-46f5-be33-ee6799e7eb1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42862,cef78eab-9d79-4ac6-9dbc-e3fca4501368,LIST_ACCOUNTS,hbciListAccounts,false +42863,cef78eab-9d79-4ac6-9dbc-e3fca4501368,LIST_TRANSACTIONS,hbciListTransactions,false +42864,cef78eab-9d79-4ac6-9dbc-e3fca4501368,AUTHORIZATION,,false +42865,cef78eab-9d79-4ac6-9dbc-e3fca4501368,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42866,cef78eab-9d79-4ac6-9dbc-e3fca4501368,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42867,cef78eab-9d79-4ac6-9dbc-e3fca4501368,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42868,9790d4d9-d335-4995-b222-b478552456d1,LIST_ACCOUNTS,xs2aListAccounts,true -42869,9790d4d9-d335-4995-b222-b478552456d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42869,9790d4d9-d335-4995-b222-b478552456d1,LIST_TRANSACTIONS,xs2aListTransactions,true 42870,9790d4d9-d335-4995-b222-b478552456d1,AUTHORIZATION,,true 42871,9790d4d9-d335-4995-b222-b478552456d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42872,9790d4d9-d335-4995-b222-b478552456d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42873,9790d4d9-d335-4995-b222-b478552456d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42874,a9370655-79f5-4088-8563-3119ff906532,LIST_ACCOUNTS,hbciListAccounts,false -42875,a9370655-79f5-4088-8563-3119ff906532,LIST_TRANSACTIONS,hbciListTransactions,false -42876,a9370655-79f5-4088-8563-3119ff906532,AUTHORIZATION,,false -42877,a9370655-79f5-4088-8563-3119ff906532,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42878,a9370655-79f5-4088-8563-3119ff906532,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42879,a9370655-79f5-4088-8563-3119ff906532,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42874,ba98d648-43ff-4de3-b3bf-04f2b69e8a32,LIST_ACCOUNTS,hbciListAccounts,false +42875,ba98d648-43ff-4de3-b3bf-04f2b69e8a32,LIST_TRANSACTIONS,hbciListTransactions,false +42876,ba98d648-43ff-4de3-b3bf-04f2b69e8a32,AUTHORIZATION,,false +42877,ba98d648-43ff-4de3-b3bf-04f2b69e8a32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42878,ba98d648-43ff-4de3-b3bf-04f2b69e8a32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42879,ba98d648-43ff-4de3-b3bf-04f2b69e8a32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42880,0101006c-6c75-4673-a487-490c2d8dd815,LIST_ACCOUNTS,xs2aListAccounts,true -42881,0101006c-6c75-4673-a487-490c2d8dd815,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42881,0101006c-6c75-4673-a487-490c2d8dd815,LIST_TRANSACTIONS,xs2aListTransactions,true 42882,0101006c-6c75-4673-a487-490c2d8dd815,AUTHORIZATION,,true 42883,0101006c-6c75-4673-a487-490c2d8dd815,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42884,0101006c-6c75-4673-a487-490c2d8dd815,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42885,0101006c-6c75-4673-a487-490c2d8dd815,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42886,ea4448f1-6c48-4870-84fb-e15c648b5a8c,LIST_ACCOUNTS,hbciListAccounts,false -42887,ea4448f1-6c48-4870-84fb-e15c648b5a8c,LIST_TRANSACTIONS,hbciListTransactions,false -42888,ea4448f1-6c48-4870-84fb-e15c648b5a8c,AUTHORIZATION,,false -42889,ea4448f1-6c48-4870-84fb-e15c648b5a8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42890,ea4448f1-6c48-4870-84fb-e15c648b5a8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42891,ea4448f1-6c48-4870-84fb-e15c648b5a8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42886,ba691513-b761-4045-a15a-351aa2cf755c,LIST_ACCOUNTS,hbciListAccounts,false +42887,ba691513-b761-4045-a15a-351aa2cf755c,LIST_TRANSACTIONS,hbciListTransactions,false +42888,ba691513-b761-4045-a15a-351aa2cf755c,AUTHORIZATION,,false +42889,ba691513-b761-4045-a15a-351aa2cf755c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42890,ba691513-b761-4045-a15a-351aa2cf755c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42891,ba691513-b761-4045-a15a-351aa2cf755c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42892,f35c94d4-fb37-4e70-a7de-f098e97ecf8e,LIST_ACCOUNTS,xs2aListAccounts,true -42893,f35c94d4-fb37-4e70-a7de-f098e97ecf8e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42893,f35c94d4-fb37-4e70-a7de-f098e97ecf8e,LIST_TRANSACTIONS,xs2aListTransactions,true 42894,f35c94d4-fb37-4e70-a7de-f098e97ecf8e,AUTHORIZATION,,true 42895,f35c94d4-fb37-4e70-a7de-f098e97ecf8e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42896,f35c94d4-fb37-4e70-a7de-f098e97ecf8e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42897,f35c94d4-fb37-4e70-a7de-f098e97ecf8e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42898,b671f38d-7c7f-428b-a129-a6fc434897e3,LIST_ACCOUNTS,hbciListAccounts,false -42899,b671f38d-7c7f-428b-a129-a6fc434897e3,LIST_TRANSACTIONS,hbciListTransactions,false -42900,b671f38d-7c7f-428b-a129-a6fc434897e3,AUTHORIZATION,,false -42901,b671f38d-7c7f-428b-a129-a6fc434897e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42902,b671f38d-7c7f-428b-a129-a6fc434897e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42903,b671f38d-7c7f-428b-a129-a6fc434897e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42898,7111d092-d0a7-429c-9144-df6f8dc62341,LIST_ACCOUNTS,hbciListAccounts,false +42899,7111d092-d0a7-429c-9144-df6f8dc62341,LIST_TRANSACTIONS,hbciListTransactions,false +42900,7111d092-d0a7-429c-9144-df6f8dc62341,AUTHORIZATION,,false +42901,7111d092-d0a7-429c-9144-df6f8dc62341,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42902,7111d092-d0a7-429c-9144-df6f8dc62341,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42903,7111d092-d0a7-429c-9144-df6f8dc62341,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42904,b28f40b5-4506-46fa-9871-dfc642d2e1aa,LIST_ACCOUNTS,xs2aListAccounts,true -42905,b28f40b5-4506-46fa-9871-dfc642d2e1aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42905,b28f40b5-4506-46fa-9871-dfc642d2e1aa,LIST_TRANSACTIONS,xs2aListTransactions,true 42906,b28f40b5-4506-46fa-9871-dfc642d2e1aa,AUTHORIZATION,,true 42907,b28f40b5-4506-46fa-9871-dfc642d2e1aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42908,b28f40b5-4506-46fa-9871-dfc642d2e1aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42909,b28f40b5-4506-46fa-9871-dfc642d2e1aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42910,4e3814e9-6eaf-422c-9c9e-c9c62dc27ace,LIST_ACCOUNTS,hbciListAccounts,false -42911,4e3814e9-6eaf-422c-9c9e-c9c62dc27ace,LIST_TRANSACTIONS,hbciListTransactions,false -42912,4e3814e9-6eaf-422c-9c9e-c9c62dc27ace,AUTHORIZATION,,false -42913,4e3814e9-6eaf-422c-9c9e-c9c62dc27ace,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42914,4e3814e9-6eaf-422c-9c9e-c9c62dc27ace,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42915,4e3814e9-6eaf-422c-9c9e-c9c62dc27ace,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42910,c237b23d-561a-43f6-9763-3c23c8b60afb,LIST_ACCOUNTS,hbciListAccounts,false +42911,c237b23d-561a-43f6-9763-3c23c8b60afb,LIST_TRANSACTIONS,hbciListTransactions,false +42912,c237b23d-561a-43f6-9763-3c23c8b60afb,AUTHORIZATION,,false +42913,c237b23d-561a-43f6-9763-3c23c8b60afb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42914,c237b23d-561a-43f6-9763-3c23c8b60afb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42915,c237b23d-561a-43f6-9763-3c23c8b60afb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42916,a597ac78-8e45-4d58-b044-db1f8be5a54e,LIST_ACCOUNTS,xs2aListAccounts,true -42917,a597ac78-8e45-4d58-b044-db1f8be5a54e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42917,a597ac78-8e45-4d58-b044-db1f8be5a54e,LIST_TRANSACTIONS,xs2aListTransactions,true 42918,a597ac78-8e45-4d58-b044-db1f8be5a54e,AUTHORIZATION,,true 42919,a597ac78-8e45-4d58-b044-db1f8be5a54e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42920,a597ac78-8e45-4d58-b044-db1f8be5a54e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42921,a597ac78-8e45-4d58-b044-db1f8be5a54e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42922,18ad076e-61f2-4560-8f1c-54fa91bd1501,LIST_ACCOUNTS,hbciListAccounts,false -42923,18ad076e-61f2-4560-8f1c-54fa91bd1501,LIST_TRANSACTIONS,hbciListTransactions,false -42924,18ad076e-61f2-4560-8f1c-54fa91bd1501,AUTHORIZATION,,false -42925,18ad076e-61f2-4560-8f1c-54fa91bd1501,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42926,18ad076e-61f2-4560-8f1c-54fa91bd1501,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42927,18ad076e-61f2-4560-8f1c-54fa91bd1501,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42922,6c955676-d8ba-4f6a-b21c-a7349fcb6b61,LIST_ACCOUNTS,hbciListAccounts,false +42923,6c955676-d8ba-4f6a-b21c-a7349fcb6b61,LIST_TRANSACTIONS,hbciListTransactions,false +42924,6c955676-d8ba-4f6a-b21c-a7349fcb6b61,AUTHORIZATION,,false +42925,6c955676-d8ba-4f6a-b21c-a7349fcb6b61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42926,6c955676-d8ba-4f6a-b21c-a7349fcb6b61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42927,6c955676-d8ba-4f6a-b21c-a7349fcb6b61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42928,948a56cd-96ff-4530-a091-359cf5e8bc66,LIST_ACCOUNTS,xs2aListAccounts,true -42929,948a56cd-96ff-4530-a091-359cf5e8bc66,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42929,948a56cd-96ff-4530-a091-359cf5e8bc66,LIST_TRANSACTIONS,xs2aListTransactions,true 42930,948a56cd-96ff-4530-a091-359cf5e8bc66,AUTHORIZATION,,true 42931,948a56cd-96ff-4530-a091-359cf5e8bc66,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42932,948a56cd-96ff-4530-a091-359cf5e8bc66,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42933,948a56cd-96ff-4530-a091-359cf5e8bc66,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42934,f3402b92-6be4-487a-bc1a-6a174ccabfa0,LIST_ACCOUNTS,hbciListAccounts,false -42935,f3402b92-6be4-487a-bc1a-6a174ccabfa0,LIST_TRANSACTIONS,hbciListTransactions,false -42936,f3402b92-6be4-487a-bc1a-6a174ccabfa0,AUTHORIZATION,,false -42937,f3402b92-6be4-487a-bc1a-6a174ccabfa0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42938,f3402b92-6be4-487a-bc1a-6a174ccabfa0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42939,f3402b92-6be4-487a-bc1a-6a174ccabfa0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42934,ba03aca6-7a1d-492f-b434-a2d0ebe20f95,LIST_ACCOUNTS,hbciListAccounts,false +42935,ba03aca6-7a1d-492f-b434-a2d0ebe20f95,LIST_TRANSACTIONS,hbciListTransactions,false +42936,ba03aca6-7a1d-492f-b434-a2d0ebe20f95,AUTHORIZATION,,false +42937,ba03aca6-7a1d-492f-b434-a2d0ebe20f95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42938,ba03aca6-7a1d-492f-b434-a2d0ebe20f95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42939,ba03aca6-7a1d-492f-b434-a2d0ebe20f95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42940,b9c15c61-344c-4b5d-ac72-997061833018,LIST_ACCOUNTS,xs2aListAccounts,true -42941,b9c15c61-344c-4b5d-ac72-997061833018,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42941,b9c15c61-344c-4b5d-ac72-997061833018,LIST_TRANSACTIONS,xs2aListTransactions,true 42942,b9c15c61-344c-4b5d-ac72-997061833018,AUTHORIZATION,,true 42943,b9c15c61-344c-4b5d-ac72-997061833018,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42944,b9c15c61-344c-4b5d-ac72-997061833018,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42945,b9c15c61-344c-4b5d-ac72-997061833018,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42946,9ad7b2d9-e899-4200-a963-6b4f6dfa4f16,LIST_ACCOUNTS,hbciListAccounts,false -42947,9ad7b2d9-e899-4200-a963-6b4f6dfa4f16,LIST_TRANSACTIONS,hbciListTransactions,false -42948,9ad7b2d9-e899-4200-a963-6b4f6dfa4f16,AUTHORIZATION,,false -42949,9ad7b2d9-e899-4200-a963-6b4f6dfa4f16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42950,9ad7b2d9-e899-4200-a963-6b4f6dfa4f16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42951,9ad7b2d9-e899-4200-a963-6b4f6dfa4f16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42946,1bdce090-fbab-401f-8865-eff6caa31d28,LIST_ACCOUNTS,hbciListAccounts,false +42947,1bdce090-fbab-401f-8865-eff6caa31d28,LIST_TRANSACTIONS,hbciListTransactions,false +42948,1bdce090-fbab-401f-8865-eff6caa31d28,AUTHORIZATION,,false +42949,1bdce090-fbab-401f-8865-eff6caa31d28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42950,1bdce090-fbab-401f-8865-eff6caa31d28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42951,1bdce090-fbab-401f-8865-eff6caa31d28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42952,b9f9f2f5-3624-44bd-af5d-a84765ab9211,LIST_ACCOUNTS,xs2aListAccounts,true -42953,b9f9f2f5-3624-44bd-af5d-a84765ab9211,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42953,b9f9f2f5-3624-44bd-af5d-a84765ab9211,LIST_TRANSACTIONS,xs2aListTransactions,true 42954,b9f9f2f5-3624-44bd-af5d-a84765ab9211,AUTHORIZATION,,true 42955,b9f9f2f5-3624-44bd-af5d-a84765ab9211,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42956,b9f9f2f5-3624-44bd-af5d-a84765ab9211,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42957,b9f9f2f5-3624-44bd-af5d-a84765ab9211,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42958,05377b84-d75c-4634-9321-8ba62e51bfc9,LIST_ACCOUNTS,hbciListAccounts,false -42959,05377b84-d75c-4634-9321-8ba62e51bfc9,LIST_TRANSACTIONS,hbciListTransactions,false -42960,05377b84-d75c-4634-9321-8ba62e51bfc9,AUTHORIZATION,,false -42961,05377b84-d75c-4634-9321-8ba62e51bfc9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42962,05377b84-d75c-4634-9321-8ba62e51bfc9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42963,05377b84-d75c-4634-9321-8ba62e51bfc9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42958,4e079dce-fda6-4757-a60e-69b32e5f5a5c,LIST_ACCOUNTS,hbciListAccounts,false +42959,4e079dce-fda6-4757-a60e-69b32e5f5a5c,LIST_TRANSACTIONS,hbciListTransactions,false +42960,4e079dce-fda6-4757-a60e-69b32e5f5a5c,AUTHORIZATION,,false +42961,4e079dce-fda6-4757-a60e-69b32e5f5a5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42962,4e079dce-fda6-4757-a60e-69b32e5f5a5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42963,4e079dce-fda6-4757-a60e-69b32e5f5a5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42964,e7ac7eb6-dead-407a-ad05-81d4428837ab,LIST_ACCOUNTS,xs2aListAccounts,true -42965,e7ac7eb6-dead-407a-ad05-81d4428837ab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42965,e7ac7eb6-dead-407a-ad05-81d4428837ab,LIST_TRANSACTIONS,xs2aListTransactions,true 42966,e7ac7eb6-dead-407a-ad05-81d4428837ab,AUTHORIZATION,,true 42967,e7ac7eb6-dead-407a-ad05-81d4428837ab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42968,e7ac7eb6-dead-407a-ad05-81d4428837ab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42969,e7ac7eb6-dead-407a-ad05-81d4428837ab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42970,e1d78795-3c14-4b34-a31b-cd12bb3ae58e,LIST_ACCOUNTS,hbciListAccounts,false -42971,e1d78795-3c14-4b34-a31b-cd12bb3ae58e,LIST_TRANSACTIONS,hbciListTransactions,false -42972,e1d78795-3c14-4b34-a31b-cd12bb3ae58e,AUTHORIZATION,,false -42973,e1d78795-3c14-4b34-a31b-cd12bb3ae58e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42974,e1d78795-3c14-4b34-a31b-cd12bb3ae58e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42975,e1d78795-3c14-4b34-a31b-cd12bb3ae58e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42970,10fd0398-4960-4d90-ba1d-b60ca267c603,LIST_ACCOUNTS,hbciListAccounts,false +42971,10fd0398-4960-4d90-ba1d-b60ca267c603,LIST_TRANSACTIONS,hbciListTransactions,false +42972,10fd0398-4960-4d90-ba1d-b60ca267c603,AUTHORIZATION,,false +42973,10fd0398-4960-4d90-ba1d-b60ca267c603,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42974,10fd0398-4960-4d90-ba1d-b60ca267c603,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42975,10fd0398-4960-4d90-ba1d-b60ca267c603,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42976,d4d46d26-a623-4ae0-a0f1-3ecbfb70cc09,LIST_ACCOUNTS,xs2aListAccounts,true -42977,d4d46d26-a623-4ae0-a0f1-3ecbfb70cc09,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42977,d4d46d26-a623-4ae0-a0f1-3ecbfb70cc09,LIST_TRANSACTIONS,xs2aListTransactions,true 42978,d4d46d26-a623-4ae0-a0f1-3ecbfb70cc09,AUTHORIZATION,,true 42979,d4d46d26-a623-4ae0-a0f1-3ecbfb70cc09,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42980,d4d46d26-a623-4ae0-a0f1-3ecbfb70cc09,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42981,d4d46d26-a623-4ae0-a0f1-3ecbfb70cc09,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42982,486f0689-2d8b-4030-88b2-41105aebc988,LIST_ACCOUNTS,hbciListAccounts,false -42983,486f0689-2d8b-4030-88b2-41105aebc988,LIST_TRANSACTIONS,hbciListTransactions,false -42984,486f0689-2d8b-4030-88b2-41105aebc988,AUTHORIZATION,,false -42985,486f0689-2d8b-4030-88b2-41105aebc988,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42986,486f0689-2d8b-4030-88b2-41105aebc988,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42987,486f0689-2d8b-4030-88b2-41105aebc988,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42982,484ad691-dc9a-4aa5-a65e-6d871ea1a3a6,LIST_ACCOUNTS,hbciListAccounts,false +42983,484ad691-dc9a-4aa5-a65e-6d871ea1a3a6,LIST_TRANSACTIONS,hbciListTransactions,false +42984,484ad691-dc9a-4aa5-a65e-6d871ea1a3a6,AUTHORIZATION,,false +42985,484ad691-dc9a-4aa5-a65e-6d871ea1a3a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42986,484ad691-dc9a-4aa5-a65e-6d871ea1a3a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42987,484ad691-dc9a-4aa5-a65e-6d871ea1a3a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 42988,9cd5fd2c-b56b-4714-855f-65434d4e7cab,LIST_ACCOUNTS,xs2aListAccounts,true -42989,9cd5fd2c-b56b-4714-855f-65434d4e7cab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +42989,9cd5fd2c-b56b-4714-855f-65434d4e7cab,LIST_TRANSACTIONS,xs2aListTransactions,true 42990,9cd5fd2c-b56b-4714-855f-65434d4e7cab,AUTHORIZATION,,true 42991,9cd5fd2c-b56b-4714-855f-65434d4e7cab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 42992,9cd5fd2c-b56b-4714-855f-65434d4e7cab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 42993,9cd5fd2c-b56b-4714-855f-65434d4e7cab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -42994,a3e3ba60-d19a-4e3a-850d-d5fd8fed4702,LIST_ACCOUNTS,hbciListAccounts,false -42995,a3e3ba60-d19a-4e3a-850d-d5fd8fed4702,LIST_TRANSACTIONS,hbciListTransactions,false -42996,a3e3ba60-d19a-4e3a-850d-d5fd8fed4702,AUTHORIZATION,,false -42997,a3e3ba60-d19a-4e3a-850d-d5fd8fed4702,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -42998,a3e3ba60-d19a-4e3a-850d-d5fd8fed4702,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -42999,a3e3ba60-d19a-4e3a-850d-d5fd8fed4702,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +42994,1c48095d-cead-4ea0-99cb-577fabb1ef9b,LIST_ACCOUNTS,hbciListAccounts,false +42995,1c48095d-cead-4ea0-99cb-577fabb1ef9b,LIST_TRANSACTIONS,hbciListTransactions,false +42996,1c48095d-cead-4ea0-99cb-577fabb1ef9b,AUTHORIZATION,,false +42997,1c48095d-cead-4ea0-99cb-577fabb1ef9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +42998,1c48095d-cead-4ea0-99cb-577fabb1ef9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +42999,1c48095d-cead-4ea0-99cb-577fabb1ef9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43000,e7c5552f-a7dd-4e9b-a875-ab1f81820fce,LIST_ACCOUNTS,xs2aListAccounts,true -43001,e7c5552f-a7dd-4e9b-a875-ab1f81820fce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43001,e7c5552f-a7dd-4e9b-a875-ab1f81820fce,LIST_TRANSACTIONS,xs2aListTransactions,true 43002,e7c5552f-a7dd-4e9b-a875-ab1f81820fce,AUTHORIZATION,,true 43003,e7c5552f-a7dd-4e9b-a875-ab1f81820fce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43004,e7c5552f-a7dd-4e9b-a875-ab1f81820fce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43005,e7c5552f-a7dd-4e9b-a875-ab1f81820fce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43006,a1543522-60a6-4c4a-a7af-727cf1719d8c,LIST_ACCOUNTS,hbciListAccounts,false -43007,a1543522-60a6-4c4a-a7af-727cf1719d8c,LIST_TRANSACTIONS,hbciListTransactions,false -43008,a1543522-60a6-4c4a-a7af-727cf1719d8c,AUTHORIZATION,,false -43009,a1543522-60a6-4c4a-a7af-727cf1719d8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43010,a1543522-60a6-4c4a-a7af-727cf1719d8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43011,a1543522-60a6-4c4a-a7af-727cf1719d8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43006,bf9cab43-17cb-4560-a981-37513f0ef3ee,LIST_ACCOUNTS,hbciListAccounts,false +43007,bf9cab43-17cb-4560-a981-37513f0ef3ee,LIST_TRANSACTIONS,hbciListTransactions,false +43008,bf9cab43-17cb-4560-a981-37513f0ef3ee,AUTHORIZATION,,false +43009,bf9cab43-17cb-4560-a981-37513f0ef3ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43010,bf9cab43-17cb-4560-a981-37513f0ef3ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43011,bf9cab43-17cb-4560-a981-37513f0ef3ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43012,4b2187bd-50f8-4169-a7d5-e7cac3da9e3c,LIST_ACCOUNTS,xs2aListAccounts,true -43013,4b2187bd-50f8-4169-a7d5-e7cac3da9e3c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43013,4b2187bd-50f8-4169-a7d5-e7cac3da9e3c,LIST_TRANSACTIONS,xs2aListTransactions,true 43014,4b2187bd-50f8-4169-a7d5-e7cac3da9e3c,AUTHORIZATION,,true 43015,4b2187bd-50f8-4169-a7d5-e7cac3da9e3c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43016,4b2187bd-50f8-4169-a7d5-e7cac3da9e3c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43017,4b2187bd-50f8-4169-a7d5-e7cac3da9e3c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43018,29c17eb8-d5ee-4c54-bb94-63dc2be2785c,LIST_ACCOUNTS,hbciListAccounts,false -43019,29c17eb8-d5ee-4c54-bb94-63dc2be2785c,LIST_TRANSACTIONS,hbciListTransactions,false -43020,29c17eb8-d5ee-4c54-bb94-63dc2be2785c,AUTHORIZATION,,false -43021,29c17eb8-d5ee-4c54-bb94-63dc2be2785c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43022,29c17eb8-d5ee-4c54-bb94-63dc2be2785c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43023,29c17eb8-d5ee-4c54-bb94-63dc2be2785c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43018,8f1c1a2a-00c9-432d-a0e5-4fb4fa3cf101,LIST_ACCOUNTS,hbciListAccounts,false +43019,8f1c1a2a-00c9-432d-a0e5-4fb4fa3cf101,LIST_TRANSACTIONS,hbciListTransactions,false +43020,8f1c1a2a-00c9-432d-a0e5-4fb4fa3cf101,AUTHORIZATION,,false +43021,8f1c1a2a-00c9-432d-a0e5-4fb4fa3cf101,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43022,8f1c1a2a-00c9-432d-a0e5-4fb4fa3cf101,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43023,8f1c1a2a-00c9-432d-a0e5-4fb4fa3cf101,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43024,36c8352d-9a8c-4036-973f-19168bac032a,LIST_ACCOUNTS,xs2aListAccounts,true -43025,36c8352d-9a8c-4036-973f-19168bac032a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43025,36c8352d-9a8c-4036-973f-19168bac032a,LIST_TRANSACTIONS,xs2aListTransactions,true 43026,36c8352d-9a8c-4036-973f-19168bac032a,AUTHORIZATION,,true 43027,36c8352d-9a8c-4036-973f-19168bac032a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43028,36c8352d-9a8c-4036-973f-19168bac032a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43029,36c8352d-9a8c-4036-973f-19168bac032a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43030,66acfe1e-1dae-4171-811b-10dfe9710702,LIST_ACCOUNTS,hbciListAccounts,false -43031,66acfe1e-1dae-4171-811b-10dfe9710702,LIST_TRANSACTIONS,hbciListTransactions,false -43032,66acfe1e-1dae-4171-811b-10dfe9710702,AUTHORIZATION,,false -43033,66acfe1e-1dae-4171-811b-10dfe9710702,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43034,66acfe1e-1dae-4171-811b-10dfe9710702,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43035,66acfe1e-1dae-4171-811b-10dfe9710702,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43030,020d2849-2664-4cce-b4e2-a5a75dbabdd4,LIST_ACCOUNTS,hbciListAccounts,false +43031,020d2849-2664-4cce-b4e2-a5a75dbabdd4,LIST_TRANSACTIONS,hbciListTransactions,false +43032,020d2849-2664-4cce-b4e2-a5a75dbabdd4,AUTHORIZATION,,false +43033,020d2849-2664-4cce-b4e2-a5a75dbabdd4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43034,020d2849-2664-4cce-b4e2-a5a75dbabdd4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43035,020d2849-2664-4cce-b4e2-a5a75dbabdd4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43036,4d5aa7de-0aed-4fbe-9ca9-ef8745a25f27,LIST_ACCOUNTS,xs2aListAccounts,true -43037,4d5aa7de-0aed-4fbe-9ca9-ef8745a25f27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43037,4d5aa7de-0aed-4fbe-9ca9-ef8745a25f27,LIST_TRANSACTIONS,xs2aListTransactions,true 43038,4d5aa7de-0aed-4fbe-9ca9-ef8745a25f27,AUTHORIZATION,,true 43039,4d5aa7de-0aed-4fbe-9ca9-ef8745a25f27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43040,4d5aa7de-0aed-4fbe-9ca9-ef8745a25f27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43041,4d5aa7de-0aed-4fbe-9ca9-ef8745a25f27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43042,a2be5886-31a3-430d-aee1-3b2a2db54d55,LIST_ACCOUNTS,hbciListAccounts,false -43043,a2be5886-31a3-430d-aee1-3b2a2db54d55,LIST_TRANSACTIONS,hbciListTransactions,false -43044,a2be5886-31a3-430d-aee1-3b2a2db54d55,AUTHORIZATION,,false -43045,a2be5886-31a3-430d-aee1-3b2a2db54d55,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43046,a2be5886-31a3-430d-aee1-3b2a2db54d55,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43047,a2be5886-31a3-430d-aee1-3b2a2db54d55,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43042,855c7a5d-d0cf-4929-a869-09b854054361,LIST_ACCOUNTS,hbciListAccounts,false +43043,855c7a5d-d0cf-4929-a869-09b854054361,LIST_TRANSACTIONS,hbciListTransactions,false +43044,855c7a5d-d0cf-4929-a869-09b854054361,AUTHORIZATION,,false +43045,855c7a5d-d0cf-4929-a869-09b854054361,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43046,855c7a5d-d0cf-4929-a869-09b854054361,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43047,855c7a5d-d0cf-4929-a869-09b854054361,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43048,7b54c1d6-d92e-4cde-8fd0-8638d809a5a5,LIST_ACCOUNTS,xs2aListAccounts,true -43049,7b54c1d6-d92e-4cde-8fd0-8638d809a5a5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43049,7b54c1d6-d92e-4cde-8fd0-8638d809a5a5,LIST_TRANSACTIONS,xs2aListTransactions,true 43050,7b54c1d6-d92e-4cde-8fd0-8638d809a5a5,AUTHORIZATION,,true 43051,7b54c1d6-d92e-4cde-8fd0-8638d809a5a5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43052,7b54c1d6-d92e-4cde-8fd0-8638d809a5a5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43053,7b54c1d6-d92e-4cde-8fd0-8638d809a5a5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43054,22682720-6963-4ade-9d64-f28fc37467ad,LIST_ACCOUNTS,hbciListAccounts,false -43055,22682720-6963-4ade-9d64-f28fc37467ad,LIST_TRANSACTIONS,hbciListTransactions,false -43056,22682720-6963-4ade-9d64-f28fc37467ad,AUTHORIZATION,,false -43057,22682720-6963-4ade-9d64-f28fc37467ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43058,22682720-6963-4ade-9d64-f28fc37467ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43059,22682720-6963-4ade-9d64-f28fc37467ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43054,f1060fc7-43b5-43df-8aa2-e1f7c8695a00,LIST_ACCOUNTS,hbciListAccounts,false +43055,f1060fc7-43b5-43df-8aa2-e1f7c8695a00,LIST_TRANSACTIONS,hbciListTransactions,false +43056,f1060fc7-43b5-43df-8aa2-e1f7c8695a00,AUTHORIZATION,,false +43057,f1060fc7-43b5-43df-8aa2-e1f7c8695a00,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43058,f1060fc7-43b5-43df-8aa2-e1f7c8695a00,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43059,f1060fc7-43b5-43df-8aa2-e1f7c8695a00,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43060,cac5e0c3-915d-4568-a767-5afaac50e95c,LIST_ACCOUNTS,xs2aListAccounts,true -43061,cac5e0c3-915d-4568-a767-5afaac50e95c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43061,cac5e0c3-915d-4568-a767-5afaac50e95c,LIST_TRANSACTIONS,xs2aListTransactions,true 43062,cac5e0c3-915d-4568-a767-5afaac50e95c,AUTHORIZATION,,true 43063,cac5e0c3-915d-4568-a767-5afaac50e95c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43064,cac5e0c3-915d-4568-a767-5afaac50e95c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43065,cac5e0c3-915d-4568-a767-5afaac50e95c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43066,e7b72ce7-572a-4036-9f63-b1b1d73d779d,LIST_ACCOUNTS,hbciListAccounts,false -43067,e7b72ce7-572a-4036-9f63-b1b1d73d779d,LIST_TRANSACTIONS,hbciListTransactions,false -43068,e7b72ce7-572a-4036-9f63-b1b1d73d779d,AUTHORIZATION,,false -43069,e7b72ce7-572a-4036-9f63-b1b1d73d779d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43070,e7b72ce7-572a-4036-9f63-b1b1d73d779d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43071,e7b72ce7-572a-4036-9f63-b1b1d73d779d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43066,851d0bdb-160e-4668-b773-0824ba2b9fce,LIST_ACCOUNTS,hbciListAccounts,false +43067,851d0bdb-160e-4668-b773-0824ba2b9fce,LIST_TRANSACTIONS,hbciListTransactions,false +43068,851d0bdb-160e-4668-b773-0824ba2b9fce,AUTHORIZATION,,false +43069,851d0bdb-160e-4668-b773-0824ba2b9fce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43070,851d0bdb-160e-4668-b773-0824ba2b9fce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43071,851d0bdb-160e-4668-b773-0824ba2b9fce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43072,7c6900c3-907e-41e5-9505-2860017a124f,LIST_ACCOUNTS,xs2aListAccounts,true -43073,7c6900c3-907e-41e5-9505-2860017a124f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43073,7c6900c3-907e-41e5-9505-2860017a124f,LIST_TRANSACTIONS,xs2aListTransactions,true 43074,7c6900c3-907e-41e5-9505-2860017a124f,AUTHORIZATION,,true 43075,7c6900c3-907e-41e5-9505-2860017a124f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43076,7c6900c3-907e-41e5-9505-2860017a124f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43077,7c6900c3-907e-41e5-9505-2860017a124f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43078,1bf0c4f2-eca5-4476-a0ce-fdc3a9799fad,LIST_ACCOUNTS,hbciListAccounts,false -43079,1bf0c4f2-eca5-4476-a0ce-fdc3a9799fad,LIST_TRANSACTIONS,hbciListTransactions,false -43080,1bf0c4f2-eca5-4476-a0ce-fdc3a9799fad,AUTHORIZATION,,false -43081,1bf0c4f2-eca5-4476-a0ce-fdc3a9799fad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43082,1bf0c4f2-eca5-4476-a0ce-fdc3a9799fad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43083,1bf0c4f2-eca5-4476-a0ce-fdc3a9799fad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43078,71ab3291-803d-45a0-81e4-03befe43f488,LIST_ACCOUNTS,hbciListAccounts,false +43079,71ab3291-803d-45a0-81e4-03befe43f488,LIST_TRANSACTIONS,hbciListTransactions,false +43080,71ab3291-803d-45a0-81e4-03befe43f488,AUTHORIZATION,,false +43081,71ab3291-803d-45a0-81e4-03befe43f488,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43082,71ab3291-803d-45a0-81e4-03befe43f488,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43083,71ab3291-803d-45a0-81e4-03befe43f488,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43084,b471ab7d-ceec-44b6-bbeb-96ae4e54ab06,LIST_ACCOUNTS,xs2aListAccounts,true -43085,b471ab7d-ceec-44b6-bbeb-96ae4e54ab06,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43085,b471ab7d-ceec-44b6-bbeb-96ae4e54ab06,LIST_TRANSACTIONS,xs2aListTransactions,true 43086,b471ab7d-ceec-44b6-bbeb-96ae4e54ab06,AUTHORIZATION,,true 43087,b471ab7d-ceec-44b6-bbeb-96ae4e54ab06,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43088,b471ab7d-ceec-44b6-bbeb-96ae4e54ab06,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43089,b471ab7d-ceec-44b6-bbeb-96ae4e54ab06,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43090,3c8993b1-9aeb-4335-a5d7-0cf110599fa1,LIST_ACCOUNTS,hbciListAccounts,false -43091,3c8993b1-9aeb-4335-a5d7-0cf110599fa1,LIST_TRANSACTIONS,hbciListTransactions,false -43092,3c8993b1-9aeb-4335-a5d7-0cf110599fa1,AUTHORIZATION,,false -43093,3c8993b1-9aeb-4335-a5d7-0cf110599fa1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43094,3c8993b1-9aeb-4335-a5d7-0cf110599fa1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43095,3c8993b1-9aeb-4335-a5d7-0cf110599fa1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43090,c3fd9188-41ee-4f84-9e78-56a32005cbec,LIST_ACCOUNTS,hbciListAccounts,false +43091,c3fd9188-41ee-4f84-9e78-56a32005cbec,LIST_TRANSACTIONS,hbciListTransactions,false +43092,c3fd9188-41ee-4f84-9e78-56a32005cbec,AUTHORIZATION,,false +43093,c3fd9188-41ee-4f84-9e78-56a32005cbec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43094,c3fd9188-41ee-4f84-9e78-56a32005cbec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43095,c3fd9188-41ee-4f84-9e78-56a32005cbec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43096,4804e79e-9e54-4d25-8a8a-3d5475732a4e,LIST_ACCOUNTS,xs2aListAccounts,true -43097,4804e79e-9e54-4d25-8a8a-3d5475732a4e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43097,4804e79e-9e54-4d25-8a8a-3d5475732a4e,LIST_TRANSACTIONS,xs2aListTransactions,true 43098,4804e79e-9e54-4d25-8a8a-3d5475732a4e,AUTHORIZATION,,true 43099,4804e79e-9e54-4d25-8a8a-3d5475732a4e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43100,4804e79e-9e54-4d25-8a8a-3d5475732a4e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43101,4804e79e-9e54-4d25-8a8a-3d5475732a4e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43102,6baa766c-8d74-4599-be34-8b75b2275071,LIST_ACCOUNTS,hbciListAccounts,false -43103,6baa766c-8d74-4599-be34-8b75b2275071,LIST_TRANSACTIONS,hbciListTransactions,false -43104,6baa766c-8d74-4599-be34-8b75b2275071,AUTHORIZATION,,false -43105,6baa766c-8d74-4599-be34-8b75b2275071,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43106,6baa766c-8d74-4599-be34-8b75b2275071,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43107,6baa766c-8d74-4599-be34-8b75b2275071,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43102,793e2f0e-9220-45e1-8f65-c31cdb8c144e,LIST_ACCOUNTS,hbciListAccounts,false +43103,793e2f0e-9220-45e1-8f65-c31cdb8c144e,LIST_TRANSACTIONS,hbciListTransactions,false +43104,793e2f0e-9220-45e1-8f65-c31cdb8c144e,AUTHORIZATION,,false +43105,793e2f0e-9220-45e1-8f65-c31cdb8c144e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43106,793e2f0e-9220-45e1-8f65-c31cdb8c144e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43107,793e2f0e-9220-45e1-8f65-c31cdb8c144e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43108,1726ee86-d60a-42b4-837a-b0ac5b3efb3f,LIST_ACCOUNTS,xs2aListAccounts,true -43109,1726ee86-d60a-42b4-837a-b0ac5b3efb3f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43109,1726ee86-d60a-42b4-837a-b0ac5b3efb3f,LIST_TRANSACTIONS,xs2aListTransactions,true 43110,1726ee86-d60a-42b4-837a-b0ac5b3efb3f,AUTHORIZATION,,true 43111,1726ee86-d60a-42b4-837a-b0ac5b3efb3f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43112,1726ee86-d60a-42b4-837a-b0ac5b3efb3f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43113,1726ee86-d60a-42b4-837a-b0ac5b3efb3f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43114,e6df2270-4525-42a8-ac57-35e9daafcbb5,LIST_ACCOUNTS,hbciListAccounts,false -43115,e6df2270-4525-42a8-ac57-35e9daafcbb5,LIST_TRANSACTIONS,hbciListTransactions,false -43116,e6df2270-4525-42a8-ac57-35e9daafcbb5,AUTHORIZATION,,false -43117,e6df2270-4525-42a8-ac57-35e9daafcbb5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43118,e6df2270-4525-42a8-ac57-35e9daafcbb5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43119,e6df2270-4525-42a8-ac57-35e9daafcbb5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43114,a313dfda-fb70-4b7a-a1db-5e365da65de5,LIST_ACCOUNTS,hbciListAccounts,false +43115,a313dfda-fb70-4b7a-a1db-5e365da65de5,LIST_TRANSACTIONS,hbciListTransactions,false +43116,a313dfda-fb70-4b7a-a1db-5e365da65de5,AUTHORIZATION,,false +43117,a313dfda-fb70-4b7a-a1db-5e365da65de5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43118,a313dfda-fb70-4b7a-a1db-5e365da65de5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43119,a313dfda-fb70-4b7a-a1db-5e365da65de5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43120,7c0a016a-74ae-4363-93ce-197f36b8d252,LIST_ACCOUNTS,xs2aListAccounts,true -43121,7c0a016a-74ae-4363-93ce-197f36b8d252,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43121,7c0a016a-74ae-4363-93ce-197f36b8d252,LIST_TRANSACTIONS,xs2aListTransactions,true 43122,7c0a016a-74ae-4363-93ce-197f36b8d252,AUTHORIZATION,,true 43123,7c0a016a-74ae-4363-93ce-197f36b8d252,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43124,7c0a016a-74ae-4363-93ce-197f36b8d252,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43125,7c0a016a-74ae-4363-93ce-197f36b8d252,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43126,81f7872a-689c-43d6-b577-600b316a7411,LIST_ACCOUNTS,hbciListAccounts,false -43127,81f7872a-689c-43d6-b577-600b316a7411,LIST_TRANSACTIONS,hbciListTransactions,false -43128,81f7872a-689c-43d6-b577-600b316a7411,AUTHORIZATION,,false -43129,81f7872a-689c-43d6-b577-600b316a7411,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43130,81f7872a-689c-43d6-b577-600b316a7411,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43131,81f7872a-689c-43d6-b577-600b316a7411,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43126,89f6e5b2-70fa-4bc6-b8ef-01c89683cce4,LIST_ACCOUNTS,hbciListAccounts,false +43127,89f6e5b2-70fa-4bc6-b8ef-01c89683cce4,LIST_TRANSACTIONS,hbciListTransactions,false +43128,89f6e5b2-70fa-4bc6-b8ef-01c89683cce4,AUTHORIZATION,,false +43129,89f6e5b2-70fa-4bc6-b8ef-01c89683cce4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43130,89f6e5b2-70fa-4bc6-b8ef-01c89683cce4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43131,89f6e5b2-70fa-4bc6-b8ef-01c89683cce4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43132,3072aaf7-8ab9-42a6-8d27-e5f7c6fff9f3,LIST_ACCOUNTS,xs2aListAccounts,true -43133,3072aaf7-8ab9-42a6-8d27-e5f7c6fff9f3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43133,3072aaf7-8ab9-42a6-8d27-e5f7c6fff9f3,LIST_TRANSACTIONS,xs2aListTransactions,true 43134,3072aaf7-8ab9-42a6-8d27-e5f7c6fff9f3,AUTHORIZATION,,true 43135,3072aaf7-8ab9-42a6-8d27-e5f7c6fff9f3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43136,3072aaf7-8ab9-42a6-8d27-e5f7c6fff9f3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43137,3072aaf7-8ab9-42a6-8d27-e5f7c6fff9f3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43138,cdabefa3-1318-4bc8-a371-8f88065b2ac4,LIST_ACCOUNTS,hbciListAccounts,false -43139,cdabefa3-1318-4bc8-a371-8f88065b2ac4,LIST_TRANSACTIONS,hbciListTransactions,false -43140,cdabefa3-1318-4bc8-a371-8f88065b2ac4,AUTHORIZATION,,false -43141,cdabefa3-1318-4bc8-a371-8f88065b2ac4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43142,cdabefa3-1318-4bc8-a371-8f88065b2ac4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43143,cdabefa3-1318-4bc8-a371-8f88065b2ac4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43138,cff510e5-be63-4731-88bd-d62c72583ea2,LIST_ACCOUNTS,hbciListAccounts,false +43139,cff510e5-be63-4731-88bd-d62c72583ea2,LIST_TRANSACTIONS,hbciListTransactions,false +43140,cff510e5-be63-4731-88bd-d62c72583ea2,AUTHORIZATION,,false +43141,cff510e5-be63-4731-88bd-d62c72583ea2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43142,cff510e5-be63-4731-88bd-d62c72583ea2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43143,cff510e5-be63-4731-88bd-d62c72583ea2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43144,56735de6-e263-4f23-a005-338e8c1ec91a,LIST_ACCOUNTS,xs2aListAccounts,true -43145,56735de6-e263-4f23-a005-338e8c1ec91a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43145,56735de6-e263-4f23-a005-338e8c1ec91a,LIST_TRANSACTIONS,xs2aListTransactions,true 43146,56735de6-e263-4f23-a005-338e8c1ec91a,AUTHORIZATION,,true 43147,56735de6-e263-4f23-a005-338e8c1ec91a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43148,56735de6-e263-4f23-a005-338e8c1ec91a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43149,56735de6-e263-4f23-a005-338e8c1ec91a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43150,0329fb91-b14c-47d6-b4db-0642977fe377,LIST_ACCOUNTS,hbciListAccounts,false -43151,0329fb91-b14c-47d6-b4db-0642977fe377,LIST_TRANSACTIONS,hbciListTransactions,false -43152,0329fb91-b14c-47d6-b4db-0642977fe377,AUTHORIZATION,,false -43153,0329fb91-b14c-47d6-b4db-0642977fe377,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43154,0329fb91-b14c-47d6-b4db-0642977fe377,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43155,0329fb91-b14c-47d6-b4db-0642977fe377,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43150,8e0f908d-5bae-43da-88f5-457276c0ef9b,LIST_ACCOUNTS,hbciListAccounts,false +43151,8e0f908d-5bae-43da-88f5-457276c0ef9b,LIST_TRANSACTIONS,hbciListTransactions,false +43152,8e0f908d-5bae-43da-88f5-457276c0ef9b,AUTHORIZATION,,false +43153,8e0f908d-5bae-43da-88f5-457276c0ef9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43154,8e0f908d-5bae-43da-88f5-457276c0ef9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43155,8e0f908d-5bae-43da-88f5-457276c0ef9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43156,5911f725-0077-4d00-95c0-a944c6a30ead,LIST_ACCOUNTS,xs2aListAccounts,true -43157,5911f725-0077-4d00-95c0-a944c6a30ead,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43157,5911f725-0077-4d00-95c0-a944c6a30ead,LIST_TRANSACTIONS,xs2aListTransactions,true 43158,5911f725-0077-4d00-95c0-a944c6a30ead,AUTHORIZATION,,true 43159,5911f725-0077-4d00-95c0-a944c6a30ead,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43160,5911f725-0077-4d00-95c0-a944c6a30ead,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43161,5911f725-0077-4d00-95c0-a944c6a30ead,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43162,397a95b3-288a-4e6c-9b15-62a735fc2ecb,LIST_ACCOUNTS,hbciListAccounts,false -43163,397a95b3-288a-4e6c-9b15-62a735fc2ecb,LIST_TRANSACTIONS,hbciListTransactions,false -43164,397a95b3-288a-4e6c-9b15-62a735fc2ecb,AUTHORIZATION,,false -43165,397a95b3-288a-4e6c-9b15-62a735fc2ecb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43166,397a95b3-288a-4e6c-9b15-62a735fc2ecb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43167,397a95b3-288a-4e6c-9b15-62a735fc2ecb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43162,05daa99c-64da-4304-bb34-704449235bd3,LIST_ACCOUNTS,hbciListAccounts,false +43163,05daa99c-64da-4304-bb34-704449235bd3,LIST_TRANSACTIONS,hbciListTransactions,false +43164,05daa99c-64da-4304-bb34-704449235bd3,AUTHORIZATION,,false +43165,05daa99c-64da-4304-bb34-704449235bd3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43166,05daa99c-64da-4304-bb34-704449235bd3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43167,05daa99c-64da-4304-bb34-704449235bd3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43168,a7589c49-9dc6-4e09-ae5e-ad94ca3eeaf6,LIST_ACCOUNTS,xs2aListAccounts,true -43169,a7589c49-9dc6-4e09-ae5e-ad94ca3eeaf6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43169,a7589c49-9dc6-4e09-ae5e-ad94ca3eeaf6,LIST_TRANSACTIONS,xs2aListTransactions,true 43170,a7589c49-9dc6-4e09-ae5e-ad94ca3eeaf6,AUTHORIZATION,,true 43171,a7589c49-9dc6-4e09-ae5e-ad94ca3eeaf6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43172,a7589c49-9dc6-4e09-ae5e-ad94ca3eeaf6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43173,a7589c49-9dc6-4e09-ae5e-ad94ca3eeaf6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43174,1d11ec24-4088-4075-9f66-9a84f3469266,LIST_ACCOUNTS,hbciListAccounts,false -43175,1d11ec24-4088-4075-9f66-9a84f3469266,LIST_TRANSACTIONS,hbciListTransactions,false -43176,1d11ec24-4088-4075-9f66-9a84f3469266,AUTHORIZATION,,false -43177,1d11ec24-4088-4075-9f66-9a84f3469266,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43178,1d11ec24-4088-4075-9f66-9a84f3469266,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43179,1d11ec24-4088-4075-9f66-9a84f3469266,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43174,c40aa7c9-fa16-4558-8996-8dbda22c34e1,LIST_ACCOUNTS,hbciListAccounts,false +43175,c40aa7c9-fa16-4558-8996-8dbda22c34e1,LIST_TRANSACTIONS,hbciListTransactions,false +43176,c40aa7c9-fa16-4558-8996-8dbda22c34e1,AUTHORIZATION,,false +43177,c40aa7c9-fa16-4558-8996-8dbda22c34e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43178,c40aa7c9-fa16-4558-8996-8dbda22c34e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43179,c40aa7c9-fa16-4558-8996-8dbda22c34e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43180,cb633b3b-6202-411c-8997-55c6ad14f992,LIST_ACCOUNTS,xs2aListAccounts,true -43181,cb633b3b-6202-411c-8997-55c6ad14f992,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43181,cb633b3b-6202-411c-8997-55c6ad14f992,LIST_TRANSACTIONS,xs2aListTransactions,true 43182,cb633b3b-6202-411c-8997-55c6ad14f992,AUTHORIZATION,,true 43183,cb633b3b-6202-411c-8997-55c6ad14f992,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43184,cb633b3b-6202-411c-8997-55c6ad14f992,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43185,cb633b3b-6202-411c-8997-55c6ad14f992,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43186,f6a1f901-c52a-4be9-9afa-188c69b3f40e,LIST_ACCOUNTS,hbciListAccounts,false -43187,f6a1f901-c52a-4be9-9afa-188c69b3f40e,LIST_TRANSACTIONS,hbciListTransactions,false -43188,f6a1f901-c52a-4be9-9afa-188c69b3f40e,AUTHORIZATION,,false -43189,f6a1f901-c52a-4be9-9afa-188c69b3f40e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43190,f6a1f901-c52a-4be9-9afa-188c69b3f40e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43191,f6a1f901-c52a-4be9-9afa-188c69b3f40e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43186,e38275bb-0068-4f30-be0b-fbdbe5ad2761,LIST_ACCOUNTS,hbciListAccounts,false +43187,e38275bb-0068-4f30-be0b-fbdbe5ad2761,LIST_TRANSACTIONS,hbciListTransactions,false +43188,e38275bb-0068-4f30-be0b-fbdbe5ad2761,AUTHORIZATION,,false +43189,e38275bb-0068-4f30-be0b-fbdbe5ad2761,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43190,e38275bb-0068-4f30-be0b-fbdbe5ad2761,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43191,e38275bb-0068-4f30-be0b-fbdbe5ad2761,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43192,9c361e86-c084-414a-b9cd-de0285a50d2a,LIST_ACCOUNTS,xs2aListAccounts,true -43193,9c361e86-c084-414a-b9cd-de0285a50d2a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43193,9c361e86-c084-414a-b9cd-de0285a50d2a,LIST_TRANSACTIONS,xs2aListTransactions,true 43194,9c361e86-c084-414a-b9cd-de0285a50d2a,AUTHORIZATION,,true 43195,9c361e86-c084-414a-b9cd-de0285a50d2a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43196,9c361e86-c084-414a-b9cd-de0285a50d2a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43197,9c361e86-c084-414a-b9cd-de0285a50d2a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43198,6b3361cc-5a64-4080-8b44-0896031c91e5,LIST_ACCOUNTS,hbciListAccounts,false -43199,6b3361cc-5a64-4080-8b44-0896031c91e5,LIST_TRANSACTIONS,hbciListTransactions,false -43200,6b3361cc-5a64-4080-8b44-0896031c91e5,AUTHORIZATION,,false -43201,6b3361cc-5a64-4080-8b44-0896031c91e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43202,6b3361cc-5a64-4080-8b44-0896031c91e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43203,6b3361cc-5a64-4080-8b44-0896031c91e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43198,f36c68d2-5a95-4d7a-8b46-397ce7c39139,LIST_ACCOUNTS,hbciListAccounts,false +43199,f36c68d2-5a95-4d7a-8b46-397ce7c39139,LIST_TRANSACTIONS,hbciListTransactions,false +43200,f36c68d2-5a95-4d7a-8b46-397ce7c39139,AUTHORIZATION,,false +43201,f36c68d2-5a95-4d7a-8b46-397ce7c39139,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43202,f36c68d2-5a95-4d7a-8b46-397ce7c39139,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43203,f36c68d2-5a95-4d7a-8b46-397ce7c39139,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43204,66f6b04c-b8c4-4c24-b5ae-012a0223b5e8,LIST_ACCOUNTS,xs2aListAccounts,true -43205,66f6b04c-b8c4-4c24-b5ae-012a0223b5e8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43205,66f6b04c-b8c4-4c24-b5ae-012a0223b5e8,LIST_TRANSACTIONS,xs2aListTransactions,true 43206,66f6b04c-b8c4-4c24-b5ae-012a0223b5e8,AUTHORIZATION,,true 43207,66f6b04c-b8c4-4c24-b5ae-012a0223b5e8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43208,66f6b04c-b8c4-4c24-b5ae-012a0223b5e8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43209,66f6b04c-b8c4-4c24-b5ae-012a0223b5e8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43210,98e766e6-be31-4a81-89af-8054e8275cdc,LIST_ACCOUNTS,hbciListAccounts,false -43211,98e766e6-be31-4a81-89af-8054e8275cdc,LIST_TRANSACTIONS,hbciListTransactions,false -43212,98e766e6-be31-4a81-89af-8054e8275cdc,AUTHORIZATION,,false -43213,98e766e6-be31-4a81-89af-8054e8275cdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43214,98e766e6-be31-4a81-89af-8054e8275cdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43215,98e766e6-be31-4a81-89af-8054e8275cdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43210,b33d2bbe-f17f-43dd-8caf-95ea97f6dc4f,LIST_ACCOUNTS,hbciListAccounts,false +43211,b33d2bbe-f17f-43dd-8caf-95ea97f6dc4f,LIST_TRANSACTIONS,hbciListTransactions,false +43212,b33d2bbe-f17f-43dd-8caf-95ea97f6dc4f,AUTHORIZATION,,false +43213,b33d2bbe-f17f-43dd-8caf-95ea97f6dc4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43214,b33d2bbe-f17f-43dd-8caf-95ea97f6dc4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43215,b33d2bbe-f17f-43dd-8caf-95ea97f6dc4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43216,b61743a9-12dc-471d-86c2-78940ec6f72e,LIST_ACCOUNTS,xs2aListAccounts,true -43217,b61743a9-12dc-471d-86c2-78940ec6f72e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43217,b61743a9-12dc-471d-86c2-78940ec6f72e,LIST_TRANSACTIONS,xs2aListTransactions,true 43218,b61743a9-12dc-471d-86c2-78940ec6f72e,AUTHORIZATION,,true 43219,b61743a9-12dc-471d-86c2-78940ec6f72e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43220,b61743a9-12dc-471d-86c2-78940ec6f72e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43221,b61743a9-12dc-471d-86c2-78940ec6f72e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43222,913066d5-0144-4994-bf82-24ec7afdb6ce,LIST_ACCOUNTS,hbciListAccounts,false -43223,913066d5-0144-4994-bf82-24ec7afdb6ce,LIST_TRANSACTIONS,hbciListTransactions,false -43224,913066d5-0144-4994-bf82-24ec7afdb6ce,AUTHORIZATION,,false -43225,913066d5-0144-4994-bf82-24ec7afdb6ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43226,913066d5-0144-4994-bf82-24ec7afdb6ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43227,913066d5-0144-4994-bf82-24ec7afdb6ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43222,44ead6d2-1385-420b-ab90-928fb9909c96,LIST_ACCOUNTS,hbciListAccounts,false +43223,44ead6d2-1385-420b-ab90-928fb9909c96,LIST_TRANSACTIONS,hbciListTransactions,false +43224,44ead6d2-1385-420b-ab90-928fb9909c96,AUTHORIZATION,,false +43225,44ead6d2-1385-420b-ab90-928fb9909c96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43226,44ead6d2-1385-420b-ab90-928fb9909c96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43227,44ead6d2-1385-420b-ab90-928fb9909c96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43228,c1798081-4b5a-494d-9e7a-ad66c4ced524,LIST_ACCOUNTS,xs2aListAccounts,true -43229,c1798081-4b5a-494d-9e7a-ad66c4ced524,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43229,c1798081-4b5a-494d-9e7a-ad66c4ced524,LIST_TRANSACTIONS,xs2aListTransactions,true 43230,c1798081-4b5a-494d-9e7a-ad66c4ced524,AUTHORIZATION,,true 43231,c1798081-4b5a-494d-9e7a-ad66c4ced524,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43232,c1798081-4b5a-494d-9e7a-ad66c4ced524,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43233,c1798081-4b5a-494d-9e7a-ad66c4ced524,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43234,d0cf291d-7865-47ad-a62d-4d596638b343,LIST_ACCOUNTS,hbciListAccounts,false -43235,d0cf291d-7865-47ad-a62d-4d596638b343,LIST_TRANSACTIONS,hbciListTransactions,false -43236,d0cf291d-7865-47ad-a62d-4d596638b343,AUTHORIZATION,,false -43237,d0cf291d-7865-47ad-a62d-4d596638b343,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43238,d0cf291d-7865-47ad-a62d-4d596638b343,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43239,d0cf291d-7865-47ad-a62d-4d596638b343,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43234,ca70e57b-9915-4cbb-9440-fbcf46f69f88,LIST_ACCOUNTS,hbciListAccounts,false +43235,ca70e57b-9915-4cbb-9440-fbcf46f69f88,LIST_TRANSACTIONS,hbciListTransactions,false +43236,ca70e57b-9915-4cbb-9440-fbcf46f69f88,AUTHORIZATION,,false +43237,ca70e57b-9915-4cbb-9440-fbcf46f69f88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43238,ca70e57b-9915-4cbb-9440-fbcf46f69f88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43239,ca70e57b-9915-4cbb-9440-fbcf46f69f88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43240,4ea7ef91-4c06-448d-8dad-1e38fae57246,LIST_ACCOUNTS,xs2aListAccounts,true -43241,4ea7ef91-4c06-448d-8dad-1e38fae57246,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43241,4ea7ef91-4c06-448d-8dad-1e38fae57246,LIST_TRANSACTIONS,xs2aListTransactions,true 43242,4ea7ef91-4c06-448d-8dad-1e38fae57246,AUTHORIZATION,,true 43243,4ea7ef91-4c06-448d-8dad-1e38fae57246,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43244,4ea7ef91-4c06-448d-8dad-1e38fae57246,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43245,4ea7ef91-4c06-448d-8dad-1e38fae57246,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43246,a117aa04-d40d-472a-b5bb-a061cff0a2f7,LIST_ACCOUNTS,hbciListAccounts,false -43247,a117aa04-d40d-472a-b5bb-a061cff0a2f7,LIST_TRANSACTIONS,hbciListTransactions,false -43248,a117aa04-d40d-472a-b5bb-a061cff0a2f7,AUTHORIZATION,,false -43249,a117aa04-d40d-472a-b5bb-a061cff0a2f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43250,a117aa04-d40d-472a-b5bb-a061cff0a2f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43251,a117aa04-d40d-472a-b5bb-a061cff0a2f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43246,e73d2d48-f5e2-4944-8e24-3bc2499296b4,LIST_ACCOUNTS,hbciListAccounts,false +43247,e73d2d48-f5e2-4944-8e24-3bc2499296b4,LIST_TRANSACTIONS,hbciListTransactions,false +43248,e73d2d48-f5e2-4944-8e24-3bc2499296b4,AUTHORIZATION,,false +43249,e73d2d48-f5e2-4944-8e24-3bc2499296b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43250,e73d2d48-f5e2-4944-8e24-3bc2499296b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43251,e73d2d48-f5e2-4944-8e24-3bc2499296b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43252,e17a5b1d-fc52-4314-85c9-b3f894139a57,LIST_ACCOUNTS,xs2aListAccounts,true -43253,e17a5b1d-fc52-4314-85c9-b3f894139a57,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43253,e17a5b1d-fc52-4314-85c9-b3f894139a57,LIST_TRANSACTIONS,xs2aListTransactions,true 43254,e17a5b1d-fc52-4314-85c9-b3f894139a57,AUTHORIZATION,,true 43255,e17a5b1d-fc52-4314-85c9-b3f894139a57,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43256,e17a5b1d-fc52-4314-85c9-b3f894139a57,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43257,e17a5b1d-fc52-4314-85c9-b3f894139a57,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43258,18410a6b-1dc2-496d-8b0d-b439ed5c6a27,LIST_ACCOUNTS,hbciListAccounts,false -43259,18410a6b-1dc2-496d-8b0d-b439ed5c6a27,LIST_TRANSACTIONS,hbciListTransactions,false -43260,18410a6b-1dc2-496d-8b0d-b439ed5c6a27,AUTHORIZATION,,false -43261,18410a6b-1dc2-496d-8b0d-b439ed5c6a27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43262,18410a6b-1dc2-496d-8b0d-b439ed5c6a27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43263,18410a6b-1dc2-496d-8b0d-b439ed5c6a27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43258,5dfa69bf-660c-4225-84cf-eaabbdfda447,LIST_ACCOUNTS,hbciListAccounts,false +43259,5dfa69bf-660c-4225-84cf-eaabbdfda447,LIST_TRANSACTIONS,hbciListTransactions,false +43260,5dfa69bf-660c-4225-84cf-eaabbdfda447,AUTHORIZATION,,false +43261,5dfa69bf-660c-4225-84cf-eaabbdfda447,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43262,5dfa69bf-660c-4225-84cf-eaabbdfda447,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43263,5dfa69bf-660c-4225-84cf-eaabbdfda447,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43264,4a33bfc4-6711-4dd3-a077-6e2c2d9a48dc,LIST_ACCOUNTS,xs2aListAccounts,true -43265,4a33bfc4-6711-4dd3-a077-6e2c2d9a48dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43265,4a33bfc4-6711-4dd3-a077-6e2c2d9a48dc,LIST_TRANSACTIONS,xs2aListTransactions,true 43266,4a33bfc4-6711-4dd3-a077-6e2c2d9a48dc,AUTHORIZATION,,true 43267,4a33bfc4-6711-4dd3-a077-6e2c2d9a48dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43268,4a33bfc4-6711-4dd3-a077-6e2c2d9a48dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43269,4a33bfc4-6711-4dd3-a077-6e2c2d9a48dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43270,02b3df07-accf-49c9-8ad2-86dc59441979,LIST_ACCOUNTS,hbciListAccounts,false -43271,02b3df07-accf-49c9-8ad2-86dc59441979,LIST_TRANSACTIONS,hbciListTransactions,false -43272,02b3df07-accf-49c9-8ad2-86dc59441979,AUTHORIZATION,,false -43273,02b3df07-accf-49c9-8ad2-86dc59441979,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43274,02b3df07-accf-49c9-8ad2-86dc59441979,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43275,02b3df07-accf-49c9-8ad2-86dc59441979,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43270,99a777d7-a8ac-455c-b756-d87bef50e63c,LIST_ACCOUNTS,hbciListAccounts,false +43271,99a777d7-a8ac-455c-b756-d87bef50e63c,LIST_TRANSACTIONS,hbciListTransactions,false +43272,99a777d7-a8ac-455c-b756-d87bef50e63c,AUTHORIZATION,,false +43273,99a777d7-a8ac-455c-b756-d87bef50e63c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43274,99a777d7-a8ac-455c-b756-d87bef50e63c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43275,99a777d7-a8ac-455c-b756-d87bef50e63c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43276,0a127481-8f79-4a70-8317-13925acf0ac3,LIST_ACCOUNTS,xs2aListAccounts,true -43277,0a127481-8f79-4a70-8317-13925acf0ac3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43277,0a127481-8f79-4a70-8317-13925acf0ac3,LIST_TRANSACTIONS,xs2aListTransactions,true 43278,0a127481-8f79-4a70-8317-13925acf0ac3,AUTHORIZATION,,true 43279,0a127481-8f79-4a70-8317-13925acf0ac3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43280,0a127481-8f79-4a70-8317-13925acf0ac3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43281,0a127481-8f79-4a70-8317-13925acf0ac3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43282,89eaa7c3-b65b-40d6-a308-277430f6cf86,LIST_ACCOUNTS,hbciListAccounts,false -43283,89eaa7c3-b65b-40d6-a308-277430f6cf86,LIST_TRANSACTIONS,hbciListTransactions,false -43284,89eaa7c3-b65b-40d6-a308-277430f6cf86,AUTHORIZATION,,false -43285,89eaa7c3-b65b-40d6-a308-277430f6cf86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43286,89eaa7c3-b65b-40d6-a308-277430f6cf86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43287,89eaa7c3-b65b-40d6-a308-277430f6cf86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43282,cb408c84-d138-471d-84cc-b80c6e67ed98,LIST_ACCOUNTS,hbciListAccounts,false +43283,cb408c84-d138-471d-84cc-b80c6e67ed98,LIST_TRANSACTIONS,hbciListTransactions,false +43284,cb408c84-d138-471d-84cc-b80c6e67ed98,AUTHORIZATION,,false +43285,cb408c84-d138-471d-84cc-b80c6e67ed98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43286,cb408c84-d138-471d-84cc-b80c6e67ed98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43287,cb408c84-d138-471d-84cc-b80c6e67ed98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43288,74ec47e1-10b6-44c0-a9db-56aa288aa118,LIST_ACCOUNTS,xs2aListAccounts,true -43289,74ec47e1-10b6-44c0-a9db-56aa288aa118,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43289,74ec47e1-10b6-44c0-a9db-56aa288aa118,LIST_TRANSACTIONS,xs2aListTransactions,true 43290,74ec47e1-10b6-44c0-a9db-56aa288aa118,AUTHORIZATION,,true 43291,74ec47e1-10b6-44c0-a9db-56aa288aa118,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43292,74ec47e1-10b6-44c0-a9db-56aa288aa118,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43293,74ec47e1-10b6-44c0-a9db-56aa288aa118,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43294,b05e255a-74e1-48ff-9241-2db520f26422,LIST_ACCOUNTS,hbciListAccounts,false -43295,b05e255a-74e1-48ff-9241-2db520f26422,LIST_TRANSACTIONS,hbciListTransactions,false -43296,b05e255a-74e1-48ff-9241-2db520f26422,AUTHORIZATION,,false -43297,b05e255a-74e1-48ff-9241-2db520f26422,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43298,b05e255a-74e1-48ff-9241-2db520f26422,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43299,b05e255a-74e1-48ff-9241-2db520f26422,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43294,2ee63193-da54-44a0-a69c-28c6904b327a,LIST_ACCOUNTS,hbciListAccounts,false +43295,2ee63193-da54-44a0-a69c-28c6904b327a,LIST_TRANSACTIONS,hbciListTransactions,false +43296,2ee63193-da54-44a0-a69c-28c6904b327a,AUTHORIZATION,,false +43297,2ee63193-da54-44a0-a69c-28c6904b327a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43298,2ee63193-da54-44a0-a69c-28c6904b327a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43299,2ee63193-da54-44a0-a69c-28c6904b327a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43300,12a2a314-920c-44f6-b86b-ece8ec4ce71d,LIST_ACCOUNTS,xs2aListAccounts,true -43301,12a2a314-920c-44f6-b86b-ece8ec4ce71d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43301,12a2a314-920c-44f6-b86b-ece8ec4ce71d,LIST_TRANSACTIONS,xs2aListTransactions,true 43302,12a2a314-920c-44f6-b86b-ece8ec4ce71d,AUTHORIZATION,,true 43303,12a2a314-920c-44f6-b86b-ece8ec4ce71d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43304,12a2a314-920c-44f6-b86b-ece8ec4ce71d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43305,12a2a314-920c-44f6-b86b-ece8ec4ce71d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43306,c3cfedac-99d7-4e31-9a6a-8892a476c594,LIST_ACCOUNTS,hbciListAccounts,false -43307,c3cfedac-99d7-4e31-9a6a-8892a476c594,LIST_TRANSACTIONS,hbciListTransactions,false -43308,c3cfedac-99d7-4e31-9a6a-8892a476c594,AUTHORIZATION,,false -43309,c3cfedac-99d7-4e31-9a6a-8892a476c594,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43310,c3cfedac-99d7-4e31-9a6a-8892a476c594,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43311,c3cfedac-99d7-4e31-9a6a-8892a476c594,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43306,46d5772e-a6b9-4c2e-a5b8-e6e289bbc086,LIST_ACCOUNTS,hbciListAccounts,false +43307,46d5772e-a6b9-4c2e-a5b8-e6e289bbc086,LIST_TRANSACTIONS,hbciListTransactions,false +43308,46d5772e-a6b9-4c2e-a5b8-e6e289bbc086,AUTHORIZATION,,false +43309,46d5772e-a6b9-4c2e-a5b8-e6e289bbc086,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43310,46d5772e-a6b9-4c2e-a5b8-e6e289bbc086,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43311,46d5772e-a6b9-4c2e-a5b8-e6e289bbc086,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43312,cd61d785-171c-4987-afe3-0c564a46ac25,LIST_ACCOUNTS,xs2aListAccounts,true -43313,cd61d785-171c-4987-afe3-0c564a46ac25,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43313,cd61d785-171c-4987-afe3-0c564a46ac25,LIST_TRANSACTIONS,xs2aListTransactions,true 43314,cd61d785-171c-4987-afe3-0c564a46ac25,AUTHORIZATION,,true 43315,cd61d785-171c-4987-afe3-0c564a46ac25,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43316,cd61d785-171c-4987-afe3-0c564a46ac25,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43317,cd61d785-171c-4987-afe3-0c564a46ac25,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43318,32656792-c11f-4462-bd10-076d1bbb985d,LIST_ACCOUNTS,hbciListAccounts,false -43319,32656792-c11f-4462-bd10-076d1bbb985d,LIST_TRANSACTIONS,hbciListTransactions,false -43320,32656792-c11f-4462-bd10-076d1bbb985d,AUTHORIZATION,,false -43321,32656792-c11f-4462-bd10-076d1bbb985d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43322,32656792-c11f-4462-bd10-076d1bbb985d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43323,32656792-c11f-4462-bd10-076d1bbb985d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43318,8ca36237-2245-44b7-944c-45c71418149b,LIST_ACCOUNTS,hbciListAccounts,false +43319,8ca36237-2245-44b7-944c-45c71418149b,LIST_TRANSACTIONS,hbciListTransactions,false +43320,8ca36237-2245-44b7-944c-45c71418149b,AUTHORIZATION,,false +43321,8ca36237-2245-44b7-944c-45c71418149b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43322,8ca36237-2245-44b7-944c-45c71418149b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43323,8ca36237-2245-44b7-944c-45c71418149b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43324,76bd0ec9-4c6b-4f85-9f18-09b7e067a73c,LIST_ACCOUNTS,xs2aListAccounts,true -43325,76bd0ec9-4c6b-4f85-9f18-09b7e067a73c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43325,76bd0ec9-4c6b-4f85-9f18-09b7e067a73c,LIST_TRANSACTIONS,xs2aListTransactions,true 43326,76bd0ec9-4c6b-4f85-9f18-09b7e067a73c,AUTHORIZATION,,true 43327,76bd0ec9-4c6b-4f85-9f18-09b7e067a73c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43328,76bd0ec9-4c6b-4f85-9f18-09b7e067a73c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43329,76bd0ec9-4c6b-4f85-9f18-09b7e067a73c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43330,732adbad-48b1-4031-8082-d766ff1b0d2e,LIST_ACCOUNTS,hbciListAccounts,false -43331,732adbad-48b1-4031-8082-d766ff1b0d2e,LIST_TRANSACTIONS,hbciListTransactions,false -43332,732adbad-48b1-4031-8082-d766ff1b0d2e,AUTHORIZATION,,false -43333,732adbad-48b1-4031-8082-d766ff1b0d2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43334,732adbad-48b1-4031-8082-d766ff1b0d2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43335,732adbad-48b1-4031-8082-d766ff1b0d2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43330,4a98075d-1b1e-410e-98e0-67a9ce2b075e,LIST_ACCOUNTS,hbciListAccounts,false +43331,4a98075d-1b1e-410e-98e0-67a9ce2b075e,LIST_TRANSACTIONS,hbciListTransactions,false +43332,4a98075d-1b1e-410e-98e0-67a9ce2b075e,AUTHORIZATION,,false +43333,4a98075d-1b1e-410e-98e0-67a9ce2b075e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43334,4a98075d-1b1e-410e-98e0-67a9ce2b075e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43335,4a98075d-1b1e-410e-98e0-67a9ce2b075e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43336,d2bb5141-dbbb-4ee0-932b-6a2a5079a0db,LIST_ACCOUNTS,xs2aListAccounts,true -43337,d2bb5141-dbbb-4ee0-932b-6a2a5079a0db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43337,d2bb5141-dbbb-4ee0-932b-6a2a5079a0db,LIST_TRANSACTIONS,xs2aListTransactions,true 43338,d2bb5141-dbbb-4ee0-932b-6a2a5079a0db,AUTHORIZATION,,true 43339,d2bb5141-dbbb-4ee0-932b-6a2a5079a0db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43340,d2bb5141-dbbb-4ee0-932b-6a2a5079a0db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43341,d2bb5141-dbbb-4ee0-932b-6a2a5079a0db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43342,b7d9a7fe-bf9c-4116-a580-4885347b3c44,LIST_ACCOUNTS,hbciListAccounts,false -43343,b7d9a7fe-bf9c-4116-a580-4885347b3c44,LIST_TRANSACTIONS,hbciListTransactions,false -43344,b7d9a7fe-bf9c-4116-a580-4885347b3c44,AUTHORIZATION,,false -43345,b7d9a7fe-bf9c-4116-a580-4885347b3c44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43346,b7d9a7fe-bf9c-4116-a580-4885347b3c44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43347,b7d9a7fe-bf9c-4116-a580-4885347b3c44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43342,cf6a7cbe-6123-4e1e-bea1-91d6a047abe3,LIST_ACCOUNTS,hbciListAccounts,false +43343,cf6a7cbe-6123-4e1e-bea1-91d6a047abe3,LIST_TRANSACTIONS,hbciListTransactions,false +43344,cf6a7cbe-6123-4e1e-bea1-91d6a047abe3,AUTHORIZATION,,false +43345,cf6a7cbe-6123-4e1e-bea1-91d6a047abe3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43346,cf6a7cbe-6123-4e1e-bea1-91d6a047abe3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43347,cf6a7cbe-6123-4e1e-bea1-91d6a047abe3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43348,85c755f5-b240-402c-8fed-1618d104c3b1,LIST_ACCOUNTS,xs2aListAccounts,true -43349,85c755f5-b240-402c-8fed-1618d104c3b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43349,85c755f5-b240-402c-8fed-1618d104c3b1,LIST_TRANSACTIONS,xs2aListTransactions,true 43350,85c755f5-b240-402c-8fed-1618d104c3b1,AUTHORIZATION,,true 43351,85c755f5-b240-402c-8fed-1618d104c3b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43352,85c755f5-b240-402c-8fed-1618d104c3b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43353,85c755f5-b240-402c-8fed-1618d104c3b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43354,f1a1c1ec-65b5-4173-8005-7c573d1563c6,LIST_ACCOUNTS,hbciListAccounts,false -43355,f1a1c1ec-65b5-4173-8005-7c573d1563c6,LIST_TRANSACTIONS,hbciListTransactions,false -43356,f1a1c1ec-65b5-4173-8005-7c573d1563c6,AUTHORIZATION,,false -43357,f1a1c1ec-65b5-4173-8005-7c573d1563c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43358,f1a1c1ec-65b5-4173-8005-7c573d1563c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43359,f1a1c1ec-65b5-4173-8005-7c573d1563c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43354,04613f50-de2a-4105-b963-54604e7fc8d1,LIST_ACCOUNTS,hbciListAccounts,false +43355,04613f50-de2a-4105-b963-54604e7fc8d1,LIST_TRANSACTIONS,hbciListTransactions,false +43356,04613f50-de2a-4105-b963-54604e7fc8d1,AUTHORIZATION,,false +43357,04613f50-de2a-4105-b963-54604e7fc8d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43358,04613f50-de2a-4105-b963-54604e7fc8d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43359,04613f50-de2a-4105-b963-54604e7fc8d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43360,cbc41577-4e3c-4c67-8ca5-eb8755c827b2,LIST_ACCOUNTS,xs2aListAccounts,true -43361,cbc41577-4e3c-4c67-8ca5-eb8755c827b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43361,cbc41577-4e3c-4c67-8ca5-eb8755c827b2,LIST_TRANSACTIONS,xs2aListTransactions,true 43362,cbc41577-4e3c-4c67-8ca5-eb8755c827b2,AUTHORIZATION,,true 43363,cbc41577-4e3c-4c67-8ca5-eb8755c827b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43364,cbc41577-4e3c-4c67-8ca5-eb8755c827b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43365,cbc41577-4e3c-4c67-8ca5-eb8755c827b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43366,6795f456-5ab2-4a38-9dc5-975dda8ed377,LIST_ACCOUNTS,hbciListAccounts,false -43367,6795f456-5ab2-4a38-9dc5-975dda8ed377,LIST_TRANSACTIONS,hbciListTransactions,false -43368,6795f456-5ab2-4a38-9dc5-975dda8ed377,AUTHORIZATION,,false -43369,6795f456-5ab2-4a38-9dc5-975dda8ed377,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43370,6795f456-5ab2-4a38-9dc5-975dda8ed377,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43371,6795f456-5ab2-4a38-9dc5-975dda8ed377,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43366,dfadbf6b-47ef-473e-acb6-d66919e18cac,LIST_ACCOUNTS,hbciListAccounts,false +43367,dfadbf6b-47ef-473e-acb6-d66919e18cac,LIST_TRANSACTIONS,hbciListTransactions,false +43368,dfadbf6b-47ef-473e-acb6-d66919e18cac,AUTHORIZATION,,false +43369,dfadbf6b-47ef-473e-acb6-d66919e18cac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43370,dfadbf6b-47ef-473e-acb6-d66919e18cac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43371,dfadbf6b-47ef-473e-acb6-d66919e18cac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43372,dfa27dd8-76c6-4dcc-a9de-68444116e207,LIST_ACCOUNTS,xs2aListAccounts,true -43373,dfa27dd8-76c6-4dcc-a9de-68444116e207,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43373,dfa27dd8-76c6-4dcc-a9de-68444116e207,LIST_TRANSACTIONS,xs2aListTransactions,true 43374,dfa27dd8-76c6-4dcc-a9de-68444116e207,AUTHORIZATION,,true 43375,dfa27dd8-76c6-4dcc-a9de-68444116e207,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43376,dfa27dd8-76c6-4dcc-a9de-68444116e207,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43377,dfa27dd8-76c6-4dcc-a9de-68444116e207,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43378,5a55d1ac-8ac5-4910-a841-042b17e46689,LIST_ACCOUNTS,hbciListAccounts,false -43379,5a55d1ac-8ac5-4910-a841-042b17e46689,LIST_TRANSACTIONS,hbciListTransactions,false -43380,5a55d1ac-8ac5-4910-a841-042b17e46689,AUTHORIZATION,,false -43381,5a55d1ac-8ac5-4910-a841-042b17e46689,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43382,5a55d1ac-8ac5-4910-a841-042b17e46689,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43383,5a55d1ac-8ac5-4910-a841-042b17e46689,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43378,26e52c31-c9f9-461f-968f-24b87ac42088,LIST_ACCOUNTS,hbciListAccounts,false +43379,26e52c31-c9f9-461f-968f-24b87ac42088,LIST_TRANSACTIONS,hbciListTransactions,false +43380,26e52c31-c9f9-461f-968f-24b87ac42088,AUTHORIZATION,,false +43381,26e52c31-c9f9-461f-968f-24b87ac42088,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43382,26e52c31-c9f9-461f-968f-24b87ac42088,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43383,26e52c31-c9f9-461f-968f-24b87ac42088,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43384,15c8ba30-e3b6-458d-95ff-aebf2adc7a5e,LIST_ACCOUNTS,xs2aListAccounts,true -43385,15c8ba30-e3b6-458d-95ff-aebf2adc7a5e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43385,15c8ba30-e3b6-458d-95ff-aebf2adc7a5e,LIST_TRANSACTIONS,xs2aListTransactions,true 43386,15c8ba30-e3b6-458d-95ff-aebf2adc7a5e,AUTHORIZATION,,true 43387,15c8ba30-e3b6-458d-95ff-aebf2adc7a5e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43388,15c8ba30-e3b6-458d-95ff-aebf2adc7a5e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43389,15c8ba30-e3b6-458d-95ff-aebf2adc7a5e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43390,e2aa23eb-aea3-4aac-833a-e09ab3971e9d,LIST_ACCOUNTS,hbciListAccounts,false -43391,e2aa23eb-aea3-4aac-833a-e09ab3971e9d,LIST_TRANSACTIONS,hbciListTransactions,false -43392,e2aa23eb-aea3-4aac-833a-e09ab3971e9d,AUTHORIZATION,,false -43393,e2aa23eb-aea3-4aac-833a-e09ab3971e9d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43394,e2aa23eb-aea3-4aac-833a-e09ab3971e9d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43395,e2aa23eb-aea3-4aac-833a-e09ab3971e9d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43390,61c667fb-0f62-4179-9c14-aeaa548e4489,LIST_ACCOUNTS,hbciListAccounts,false +43391,61c667fb-0f62-4179-9c14-aeaa548e4489,LIST_TRANSACTIONS,hbciListTransactions,false +43392,61c667fb-0f62-4179-9c14-aeaa548e4489,AUTHORIZATION,,false +43393,61c667fb-0f62-4179-9c14-aeaa548e4489,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43394,61c667fb-0f62-4179-9c14-aeaa548e4489,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43395,61c667fb-0f62-4179-9c14-aeaa548e4489,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43396,d355ddb7-4330-44df-beea-3635ccd754b9,LIST_ACCOUNTS,xs2aListAccounts,true -43397,d355ddb7-4330-44df-beea-3635ccd754b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43397,d355ddb7-4330-44df-beea-3635ccd754b9,LIST_TRANSACTIONS,xs2aListTransactions,true 43398,d355ddb7-4330-44df-beea-3635ccd754b9,AUTHORIZATION,,true 43399,d355ddb7-4330-44df-beea-3635ccd754b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43400,d355ddb7-4330-44df-beea-3635ccd754b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43401,d355ddb7-4330-44df-beea-3635ccd754b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43402,cda604c3-ce28-480b-b2ad-ee064422e64e,LIST_ACCOUNTS,hbciListAccounts,false -43403,cda604c3-ce28-480b-b2ad-ee064422e64e,LIST_TRANSACTIONS,hbciListTransactions,false -43404,cda604c3-ce28-480b-b2ad-ee064422e64e,AUTHORIZATION,,false -43405,cda604c3-ce28-480b-b2ad-ee064422e64e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43406,cda604c3-ce28-480b-b2ad-ee064422e64e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43407,cda604c3-ce28-480b-b2ad-ee064422e64e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43402,e8a14683-82a0-49f4-8ccb-af3525e1c482,LIST_ACCOUNTS,hbciListAccounts,false +43403,e8a14683-82a0-49f4-8ccb-af3525e1c482,LIST_TRANSACTIONS,hbciListTransactions,false +43404,e8a14683-82a0-49f4-8ccb-af3525e1c482,AUTHORIZATION,,false +43405,e8a14683-82a0-49f4-8ccb-af3525e1c482,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43406,e8a14683-82a0-49f4-8ccb-af3525e1c482,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43407,e8a14683-82a0-49f4-8ccb-af3525e1c482,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43408,72c29a1e-19e0-4cdb-8993-6fc3fd7ffb35,LIST_ACCOUNTS,xs2aListAccounts,true -43409,72c29a1e-19e0-4cdb-8993-6fc3fd7ffb35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43409,72c29a1e-19e0-4cdb-8993-6fc3fd7ffb35,LIST_TRANSACTIONS,xs2aListTransactions,true 43410,72c29a1e-19e0-4cdb-8993-6fc3fd7ffb35,AUTHORIZATION,,true 43411,72c29a1e-19e0-4cdb-8993-6fc3fd7ffb35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43412,72c29a1e-19e0-4cdb-8993-6fc3fd7ffb35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43413,72c29a1e-19e0-4cdb-8993-6fc3fd7ffb35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43414,730d3105-0879-4746-ab0e-bbf25c6657ca,LIST_ACCOUNTS,hbciListAccounts,false -43415,730d3105-0879-4746-ab0e-bbf25c6657ca,LIST_TRANSACTIONS,hbciListTransactions,false -43416,730d3105-0879-4746-ab0e-bbf25c6657ca,AUTHORIZATION,,false -43417,730d3105-0879-4746-ab0e-bbf25c6657ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43418,730d3105-0879-4746-ab0e-bbf25c6657ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43419,730d3105-0879-4746-ab0e-bbf25c6657ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43414,135c7313-21bf-4472-9d2f-18c8bf5532ed,LIST_ACCOUNTS,hbciListAccounts,false +43415,135c7313-21bf-4472-9d2f-18c8bf5532ed,LIST_TRANSACTIONS,hbciListTransactions,false +43416,135c7313-21bf-4472-9d2f-18c8bf5532ed,AUTHORIZATION,,false +43417,135c7313-21bf-4472-9d2f-18c8bf5532ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43418,135c7313-21bf-4472-9d2f-18c8bf5532ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43419,135c7313-21bf-4472-9d2f-18c8bf5532ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43420,2172ba92-78e3-44e7-963a-7ffcbac0b1f1,LIST_ACCOUNTS,xs2aListAccounts,true -43421,2172ba92-78e3-44e7-963a-7ffcbac0b1f1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43421,2172ba92-78e3-44e7-963a-7ffcbac0b1f1,LIST_TRANSACTIONS,xs2aListTransactions,true 43422,2172ba92-78e3-44e7-963a-7ffcbac0b1f1,AUTHORIZATION,,true 43423,2172ba92-78e3-44e7-963a-7ffcbac0b1f1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43424,2172ba92-78e3-44e7-963a-7ffcbac0b1f1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43425,2172ba92-78e3-44e7-963a-7ffcbac0b1f1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43426,cc36f4ad-db2b-4058-af43-8465967ea491,LIST_ACCOUNTS,hbciListAccounts,false -43427,cc36f4ad-db2b-4058-af43-8465967ea491,LIST_TRANSACTIONS,hbciListTransactions,false -43428,cc36f4ad-db2b-4058-af43-8465967ea491,AUTHORIZATION,,false -43429,cc36f4ad-db2b-4058-af43-8465967ea491,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43430,cc36f4ad-db2b-4058-af43-8465967ea491,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43431,cc36f4ad-db2b-4058-af43-8465967ea491,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43426,56de46eb-6cec-4953-aaad-6c8e7ada88c2,LIST_ACCOUNTS,hbciListAccounts,false +43427,56de46eb-6cec-4953-aaad-6c8e7ada88c2,LIST_TRANSACTIONS,hbciListTransactions,false +43428,56de46eb-6cec-4953-aaad-6c8e7ada88c2,AUTHORIZATION,,false +43429,56de46eb-6cec-4953-aaad-6c8e7ada88c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43430,56de46eb-6cec-4953-aaad-6c8e7ada88c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43431,56de46eb-6cec-4953-aaad-6c8e7ada88c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43432,aa9d34db-f627-488f-92bc-2899d1832d37,LIST_ACCOUNTS,xs2aListAccounts,true -43433,aa9d34db-f627-488f-92bc-2899d1832d37,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43433,aa9d34db-f627-488f-92bc-2899d1832d37,LIST_TRANSACTIONS,xs2aListTransactions,true 43434,aa9d34db-f627-488f-92bc-2899d1832d37,AUTHORIZATION,,true 43435,aa9d34db-f627-488f-92bc-2899d1832d37,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43436,aa9d34db-f627-488f-92bc-2899d1832d37,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43437,aa9d34db-f627-488f-92bc-2899d1832d37,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43438,043e6e70-9d1f-413c-8764-fd41fbe4dd52,LIST_ACCOUNTS,hbciListAccounts,false -43439,043e6e70-9d1f-413c-8764-fd41fbe4dd52,LIST_TRANSACTIONS,hbciListTransactions,false -43440,043e6e70-9d1f-413c-8764-fd41fbe4dd52,AUTHORIZATION,,false -43441,043e6e70-9d1f-413c-8764-fd41fbe4dd52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43442,043e6e70-9d1f-413c-8764-fd41fbe4dd52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43443,043e6e70-9d1f-413c-8764-fd41fbe4dd52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43438,70abe2a3-903c-498b-9ae7-afa48ec154ed,LIST_ACCOUNTS,hbciListAccounts,false +43439,70abe2a3-903c-498b-9ae7-afa48ec154ed,LIST_TRANSACTIONS,hbciListTransactions,false +43440,70abe2a3-903c-498b-9ae7-afa48ec154ed,AUTHORIZATION,,false +43441,70abe2a3-903c-498b-9ae7-afa48ec154ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43442,70abe2a3-903c-498b-9ae7-afa48ec154ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43443,70abe2a3-903c-498b-9ae7-afa48ec154ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43444,43d8188a-01f3-4202-8d15-a9bf9635d5c7,LIST_ACCOUNTS,xs2aListAccounts,true -43445,43d8188a-01f3-4202-8d15-a9bf9635d5c7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43445,43d8188a-01f3-4202-8d15-a9bf9635d5c7,LIST_TRANSACTIONS,xs2aListTransactions,true 43446,43d8188a-01f3-4202-8d15-a9bf9635d5c7,AUTHORIZATION,,true 43447,43d8188a-01f3-4202-8d15-a9bf9635d5c7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43448,43d8188a-01f3-4202-8d15-a9bf9635d5c7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43449,43d8188a-01f3-4202-8d15-a9bf9635d5c7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43450,bce6343c-eb6a-424b-a6c3-02eac7b27788,LIST_ACCOUNTS,hbciListAccounts,false -43451,bce6343c-eb6a-424b-a6c3-02eac7b27788,LIST_TRANSACTIONS,hbciListTransactions,false -43452,bce6343c-eb6a-424b-a6c3-02eac7b27788,AUTHORIZATION,,false -43453,bce6343c-eb6a-424b-a6c3-02eac7b27788,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43454,bce6343c-eb6a-424b-a6c3-02eac7b27788,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43455,bce6343c-eb6a-424b-a6c3-02eac7b27788,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43450,55e44abd-7c50-4415-a026-e84543e1b5bf,LIST_ACCOUNTS,hbciListAccounts,false +43451,55e44abd-7c50-4415-a026-e84543e1b5bf,LIST_TRANSACTIONS,hbciListTransactions,false +43452,55e44abd-7c50-4415-a026-e84543e1b5bf,AUTHORIZATION,,false +43453,55e44abd-7c50-4415-a026-e84543e1b5bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43454,55e44abd-7c50-4415-a026-e84543e1b5bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43455,55e44abd-7c50-4415-a026-e84543e1b5bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43456,c66fff43-2374-4327-9431-073528f9dd0e,LIST_ACCOUNTS,xs2aListAccounts,true -43457,c66fff43-2374-4327-9431-073528f9dd0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43457,c66fff43-2374-4327-9431-073528f9dd0e,LIST_TRANSACTIONS,xs2aListTransactions,true 43458,c66fff43-2374-4327-9431-073528f9dd0e,AUTHORIZATION,,true 43459,c66fff43-2374-4327-9431-073528f9dd0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43460,c66fff43-2374-4327-9431-073528f9dd0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43461,c66fff43-2374-4327-9431-073528f9dd0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43462,774a54b0-e6ac-4ec1-94c7-24abee8787c8,LIST_ACCOUNTS,hbciListAccounts,false -43463,774a54b0-e6ac-4ec1-94c7-24abee8787c8,LIST_TRANSACTIONS,hbciListTransactions,false -43464,774a54b0-e6ac-4ec1-94c7-24abee8787c8,AUTHORIZATION,,false -43465,774a54b0-e6ac-4ec1-94c7-24abee8787c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43466,774a54b0-e6ac-4ec1-94c7-24abee8787c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43467,774a54b0-e6ac-4ec1-94c7-24abee8787c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43462,5707911b-d080-4475-93d2-8d2f9af7865a,LIST_ACCOUNTS,hbciListAccounts,false +43463,5707911b-d080-4475-93d2-8d2f9af7865a,LIST_TRANSACTIONS,hbciListTransactions,false +43464,5707911b-d080-4475-93d2-8d2f9af7865a,AUTHORIZATION,,false +43465,5707911b-d080-4475-93d2-8d2f9af7865a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43466,5707911b-d080-4475-93d2-8d2f9af7865a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43467,5707911b-d080-4475-93d2-8d2f9af7865a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43468,aaa2fac6-3bb1-4157-856e-8776028779f3,LIST_ACCOUNTS,xs2aListAccounts,true -43469,aaa2fac6-3bb1-4157-856e-8776028779f3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43469,aaa2fac6-3bb1-4157-856e-8776028779f3,LIST_TRANSACTIONS,xs2aListTransactions,true 43470,aaa2fac6-3bb1-4157-856e-8776028779f3,AUTHORIZATION,,true 43471,aaa2fac6-3bb1-4157-856e-8776028779f3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43472,aaa2fac6-3bb1-4157-856e-8776028779f3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43473,aaa2fac6-3bb1-4157-856e-8776028779f3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43474,582735f2-7b88-43cf-a98c-c059544482bc,LIST_ACCOUNTS,hbciListAccounts,false -43475,582735f2-7b88-43cf-a98c-c059544482bc,LIST_TRANSACTIONS,hbciListTransactions,false -43476,582735f2-7b88-43cf-a98c-c059544482bc,AUTHORIZATION,,false -43477,582735f2-7b88-43cf-a98c-c059544482bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43478,582735f2-7b88-43cf-a98c-c059544482bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43479,582735f2-7b88-43cf-a98c-c059544482bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43474,8851bbe7-9131-462c-bceb-4b995ea62736,LIST_ACCOUNTS,hbciListAccounts,false +43475,8851bbe7-9131-462c-bceb-4b995ea62736,LIST_TRANSACTIONS,hbciListTransactions,false +43476,8851bbe7-9131-462c-bceb-4b995ea62736,AUTHORIZATION,,false +43477,8851bbe7-9131-462c-bceb-4b995ea62736,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43478,8851bbe7-9131-462c-bceb-4b995ea62736,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43479,8851bbe7-9131-462c-bceb-4b995ea62736,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43480,08a67f4f-59c5-43b7-9e8d-76f11538add1,LIST_ACCOUNTS,xs2aListAccounts,true -43481,08a67f4f-59c5-43b7-9e8d-76f11538add1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43481,08a67f4f-59c5-43b7-9e8d-76f11538add1,LIST_TRANSACTIONS,xs2aListTransactions,true 43482,08a67f4f-59c5-43b7-9e8d-76f11538add1,AUTHORIZATION,,true 43483,08a67f4f-59c5-43b7-9e8d-76f11538add1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43484,08a67f4f-59c5-43b7-9e8d-76f11538add1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43485,08a67f4f-59c5-43b7-9e8d-76f11538add1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43486,18787d1c-d0ed-40f6-bbc9-02a31e4b6d73,LIST_ACCOUNTS,hbciListAccounts,false -43487,18787d1c-d0ed-40f6-bbc9-02a31e4b6d73,LIST_TRANSACTIONS,hbciListTransactions,false -43488,18787d1c-d0ed-40f6-bbc9-02a31e4b6d73,AUTHORIZATION,,false -43489,18787d1c-d0ed-40f6-bbc9-02a31e4b6d73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43490,18787d1c-d0ed-40f6-bbc9-02a31e4b6d73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43491,18787d1c-d0ed-40f6-bbc9-02a31e4b6d73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43486,8a2c8a6d-a03f-48b3-82fc-e9530636caca,LIST_ACCOUNTS,hbciListAccounts,false +43487,8a2c8a6d-a03f-48b3-82fc-e9530636caca,LIST_TRANSACTIONS,hbciListTransactions,false +43488,8a2c8a6d-a03f-48b3-82fc-e9530636caca,AUTHORIZATION,,false +43489,8a2c8a6d-a03f-48b3-82fc-e9530636caca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43490,8a2c8a6d-a03f-48b3-82fc-e9530636caca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43491,8a2c8a6d-a03f-48b3-82fc-e9530636caca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43492,6132528c-8981-46d4-8812-70be6ab3516c,LIST_ACCOUNTS,xs2aListAccounts,true -43493,6132528c-8981-46d4-8812-70be6ab3516c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43493,6132528c-8981-46d4-8812-70be6ab3516c,LIST_TRANSACTIONS,xs2aListTransactions,true 43494,6132528c-8981-46d4-8812-70be6ab3516c,AUTHORIZATION,,true 43495,6132528c-8981-46d4-8812-70be6ab3516c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43496,6132528c-8981-46d4-8812-70be6ab3516c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43497,6132528c-8981-46d4-8812-70be6ab3516c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43498,b3ac44fd-a36c-4fa3-8cc5-81ffb2ae1423,LIST_ACCOUNTS,hbciListAccounts,false -43499,b3ac44fd-a36c-4fa3-8cc5-81ffb2ae1423,LIST_TRANSACTIONS,hbciListTransactions,false -43500,b3ac44fd-a36c-4fa3-8cc5-81ffb2ae1423,AUTHORIZATION,,false -43501,b3ac44fd-a36c-4fa3-8cc5-81ffb2ae1423,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43502,b3ac44fd-a36c-4fa3-8cc5-81ffb2ae1423,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43503,b3ac44fd-a36c-4fa3-8cc5-81ffb2ae1423,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43498,8f76deeb-c62b-465f-a867-8e5a58c1e80b,LIST_ACCOUNTS,hbciListAccounts,false +43499,8f76deeb-c62b-465f-a867-8e5a58c1e80b,LIST_TRANSACTIONS,hbciListTransactions,false +43500,8f76deeb-c62b-465f-a867-8e5a58c1e80b,AUTHORIZATION,,false +43501,8f76deeb-c62b-465f-a867-8e5a58c1e80b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43502,8f76deeb-c62b-465f-a867-8e5a58c1e80b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43503,8f76deeb-c62b-465f-a867-8e5a58c1e80b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43504,1c8ddd14-e05c-4995-b672-03723a40b8ca,LIST_ACCOUNTS,xs2aListAccounts,true -43505,1c8ddd14-e05c-4995-b672-03723a40b8ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43505,1c8ddd14-e05c-4995-b672-03723a40b8ca,LIST_TRANSACTIONS,xs2aListTransactions,true 43506,1c8ddd14-e05c-4995-b672-03723a40b8ca,AUTHORIZATION,,true 43507,1c8ddd14-e05c-4995-b672-03723a40b8ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43508,1c8ddd14-e05c-4995-b672-03723a40b8ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43509,1c8ddd14-e05c-4995-b672-03723a40b8ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43510,54985661-f87b-4f77-9d8a-e9ed0fd80ef5,LIST_ACCOUNTS,hbciListAccounts,false -43511,54985661-f87b-4f77-9d8a-e9ed0fd80ef5,LIST_TRANSACTIONS,hbciListTransactions,false -43512,54985661-f87b-4f77-9d8a-e9ed0fd80ef5,AUTHORIZATION,,false -43513,54985661-f87b-4f77-9d8a-e9ed0fd80ef5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43514,54985661-f87b-4f77-9d8a-e9ed0fd80ef5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43515,54985661-f87b-4f77-9d8a-e9ed0fd80ef5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43510,ee521a21-ff55-47ff-b7c6-e18ecf0368fc,LIST_ACCOUNTS,hbciListAccounts,false +43511,ee521a21-ff55-47ff-b7c6-e18ecf0368fc,LIST_TRANSACTIONS,hbciListTransactions,false +43512,ee521a21-ff55-47ff-b7c6-e18ecf0368fc,AUTHORIZATION,,false +43513,ee521a21-ff55-47ff-b7c6-e18ecf0368fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43514,ee521a21-ff55-47ff-b7c6-e18ecf0368fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43515,ee521a21-ff55-47ff-b7c6-e18ecf0368fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43516,61f74541-8aa9-4572-ae80-14777154ebdb,LIST_ACCOUNTS,xs2aListAccounts,true -43517,61f74541-8aa9-4572-ae80-14777154ebdb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43517,61f74541-8aa9-4572-ae80-14777154ebdb,LIST_TRANSACTIONS,xs2aListTransactions,true 43518,61f74541-8aa9-4572-ae80-14777154ebdb,AUTHORIZATION,,true 43519,61f74541-8aa9-4572-ae80-14777154ebdb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43520,61f74541-8aa9-4572-ae80-14777154ebdb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43521,61f74541-8aa9-4572-ae80-14777154ebdb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43522,05665950-7a0a-4c50-886e-4c9250329cf4,LIST_ACCOUNTS,hbciListAccounts,false -43523,05665950-7a0a-4c50-886e-4c9250329cf4,LIST_TRANSACTIONS,hbciListTransactions,false -43524,05665950-7a0a-4c50-886e-4c9250329cf4,AUTHORIZATION,,false -43525,05665950-7a0a-4c50-886e-4c9250329cf4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43526,05665950-7a0a-4c50-886e-4c9250329cf4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43527,05665950-7a0a-4c50-886e-4c9250329cf4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43522,d0e84b65-ef0a-46ec-a0e1-26f9c9485574,LIST_ACCOUNTS,hbciListAccounts,false +43523,d0e84b65-ef0a-46ec-a0e1-26f9c9485574,LIST_TRANSACTIONS,hbciListTransactions,false +43524,d0e84b65-ef0a-46ec-a0e1-26f9c9485574,AUTHORIZATION,,false +43525,d0e84b65-ef0a-46ec-a0e1-26f9c9485574,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43526,d0e84b65-ef0a-46ec-a0e1-26f9c9485574,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43527,d0e84b65-ef0a-46ec-a0e1-26f9c9485574,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43528,56792b2f-6d03-41c4-baa6-513f9faf152f,LIST_ACCOUNTS,xs2aListAccounts,true -43529,56792b2f-6d03-41c4-baa6-513f9faf152f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43529,56792b2f-6d03-41c4-baa6-513f9faf152f,LIST_TRANSACTIONS,xs2aListTransactions,true 43530,56792b2f-6d03-41c4-baa6-513f9faf152f,AUTHORIZATION,,true 43531,56792b2f-6d03-41c4-baa6-513f9faf152f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43532,56792b2f-6d03-41c4-baa6-513f9faf152f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43533,56792b2f-6d03-41c4-baa6-513f9faf152f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43534,cbf36c50-5eba-483c-9895-4f73f5643186,LIST_ACCOUNTS,hbciListAccounts,false -43535,cbf36c50-5eba-483c-9895-4f73f5643186,LIST_TRANSACTIONS,hbciListTransactions,false -43536,cbf36c50-5eba-483c-9895-4f73f5643186,AUTHORIZATION,,false -43537,cbf36c50-5eba-483c-9895-4f73f5643186,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43538,cbf36c50-5eba-483c-9895-4f73f5643186,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43539,cbf36c50-5eba-483c-9895-4f73f5643186,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43534,e4f62f91-8026-44fe-b053-bbbaa82f1ccc,LIST_ACCOUNTS,hbciListAccounts,false +43535,e4f62f91-8026-44fe-b053-bbbaa82f1ccc,LIST_TRANSACTIONS,hbciListTransactions,false +43536,e4f62f91-8026-44fe-b053-bbbaa82f1ccc,AUTHORIZATION,,false +43537,e4f62f91-8026-44fe-b053-bbbaa82f1ccc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43538,e4f62f91-8026-44fe-b053-bbbaa82f1ccc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43539,e4f62f91-8026-44fe-b053-bbbaa82f1ccc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43540,2f28bfc7-fab7-4d59-886e-d4def797fa90,LIST_ACCOUNTS,xs2aListAccounts,true -43541,2f28bfc7-fab7-4d59-886e-d4def797fa90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43541,2f28bfc7-fab7-4d59-886e-d4def797fa90,LIST_TRANSACTIONS,xs2aListTransactions,true 43542,2f28bfc7-fab7-4d59-886e-d4def797fa90,AUTHORIZATION,,true 43543,2f28bfc7-fab7-4d59-886e-d4def797fa90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43544,2f28bfc7-fab7-4d59-886e-d4def797fa90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43545,2f28bfc7-fab7-4d59-886e-d4def797fa90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43546,cf96aeac-62ec-49d2-9734-a8290f794263,LIST_ACCOUNTS,hbciListAccounts,false -43547,cf96aeac-62ec-49d2-9734-a8290f794263,LIST_TRANSACTIONS,hbciListTransactions,false -43548,cf96aeac-62ec-49d2-9734-a8290f794263,AUTHORIZATION,,false -43549,cf96aeac-62ec-49d2-9734-a8290f794263,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43550,cf96aeac-62ec-49d2-9734-a8290f794263,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43551,cf96aeac-62ec-49d2-9734-a8290f794263,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43546,77884ab0-e83a-465d-923c-c5b664e22a47,LIST_ACCOUNTS,hbciListAccounts,false +43547,77884ab0-e83a-465d-923c-c5b664e22a47,LIST_TRANSACTIONS,hbciListTransactions,false +43548,77884ab0-e83a-465d-923c-c5b664e22a47,AUTHORIZATION,,false +43549,77884ab0-e83a-465d-923c-c5b664e22a47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43550,77884ab0-e83a-465d-923c-c5b664e22a47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43551,77884ab0-e83a-465d-923c-c5b664e22a47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43552,d41445a3-942c-4811-9d96-17142d35ae4a,LIST_ACCOUNTS,xs2aListAccounts,true -43553,d41445a3-942c-4811-9d96-17142d35ae4a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43553,d41445a3-942c-4811-9d96-17142d35ae4a,LIST_TRANSACTIONS,xs2aListTransactions,true 43554,d41445a3-942c-4811-9d96-17142d35ae4a,AUTHORIZATION,,true 43555,d41445a3-942c-4811-9d96-17142d35ae4a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43556,d41445a3-942c-4811-9d96-17142d35ae4a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43557,d41445a3-942c-4811-9d96-17142d35ae4a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43558,bd59c2fc-9f51-4d44-a108-d2904a0220b0,LIST_ACCOUNTS,hbciListAccounts,false -43559,bd59c2fc-9f51-4d44-a108-d2904a0220b0,LIST_TRANSACTIONS,hbciListTransactions,false -43560,bd59c2fc-9f51-4d44-a108-d2904a0220b0,AUTHORIZATION,,false -43561,bd59c2fc-9f51-4d44-a108-d2904a0220b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43562,bd59c2fc-9f51-4d44-a108-d2904a0220b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43563,bd59c2fc-9f51-4d44-a108-d2904a0220b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43558,02ac8c3a-ac20-4dd5-b20e-83f381d5aedf,LIST_ACCOUNTS,hbciListAccounts,false +43559,02ac8c3a-ac20-4dd5-b20e-83f381d5aedf,LIST_TRANSACTIONS,hbciListTransactions,false +43560,02ac8c3a-ac20-4dd5-b20e-83f381d5aedf,AUTHORIZATION,,false +43561,02ac8c3a-ac20-4dd5-b20e-83f381d5aedf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43562,02ac8c3a-ac20-4dd5-b20e-83f381d5aedf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43563,02ac8c3a-ac20-4dd5-b20e-83f381d5aedf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43564,fc4f7e7d-c095-4a26-a41f-7c5c8a77ba37,LIST_ACCOUNTS,xs2aListAccounts,true -43565,fc4f7e7d-c095-4a26-a41f-7c5c8a77ba37,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43565,fc4f7e7d-c095-4a26-a41f-7c5c8a77ba37,LIST_TRANSACTIONS,xs2aListTransactions,true 43566,fc4f7e7d-c095-4a26-a41f-7c5c8a77ba37,AUTHORIZATION,,true 43567,fc4f7e7d-c095-4a26-a41f-7c5c8a77ba37,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43568,fc4f7e7d-c095-4a26-a41f-7c5c8a77ba37,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43569,fc4f7e7d-c095-4a26-a41f-7c5c8a77ba37,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43570,d50eb822-8f60-4746-a5ba-6e424e4683ea,LIST_ACCOUNTS,hbciListAccounts,false -43571,d50eb822-8f60-4746-a5ba-6e424e4683ea,LIST_TRANSACTIONS,hbciListTransactions,false -43572,d50eb822-8f60-4746-a5ba-6e424e4683ea,AUTHORIZATION,,false -43573,d50eb822-8f60-4746-a5ba-6e424e4683ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43574,d50eb822-8f60-4746-a5ba-6e424e4683ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43575,d50eb822-8f60-4746-a5ba-6e424e4683ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43570,7496c80c-c616-4cd5-918c-7e67139cab8f,LIST_ACCOUNTS,hbciListAccounts,false +43571,7496c80c-c616-4cd5-918c-7e67139cab8f,LIST_TRANSACTIONS,hbciListTransactions,false +43572,7496c80c-c616-4cd5-918c-7e67139cab8f,AUTHORIZATION,,false +43573,7496c80c-c616-4cd5-918c-7e67139cab8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43574,7496c80c-c616-4cd5-918c-7e67139cab8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43575,7496c80c-c616-4cd5-918c-7e67139cab8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43576,49e559b2-6de1-4b7a-bad7-1118671fc7d8,LIST_ACCOUNTS,xs2aListAccounts,true -43577,49e559b2-6de1-4b7a-bad7-1118671fc7d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43577,49e559b2-6de1-4b7a-bad7-1118671fc7d8,LIST_TRANSACTIONS,xs2aListTransactions,true 43578,49e559b2-6de1-4b7a-bad7-1118671fc7d8,AUTHORIZATION,,true 43579,49e559b2-6de1-4b7a-bad7-1118671fc7d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43580,49e559b2-6de1-4b7a-bad7-1118671fc7d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43581,49e559b2-6de1-4b7a-bad7-1118671fc7d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43582,f82d18c3-d909-4334-81b8-608136ba4376,LIST_ACCOUNTS,hbciListAccounts,false -43583,f82d18c3-d909-4334-81b8-608136ba4376,LIST_TRANSACTIONS,hbciListTransactions,false -43584,f82d18c3-d909-4334-81b8-608136ba4376,AUTHORIZATION,,false -43585,f82d18c3-d909-4334-81b8-608136ba4376,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43586,f82d18c3-d909-4334-81b8-608136ba4376,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43587,f82d18c3-d909-4334-81b8-608136ba4376,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43582,daf23af5-70af-4495-8479-97210716c4b2,LIST_ACCOUNTS,hbciListAccounts,false +43583,daf23af5-70af-4495-8479-97210716c4b2,LIST_TRANSACTIONS,hbciListTransactions,false +43584,daf23af5-70af-4495-8479-97210716c4b2,AUTHORIZATION,,false +43585,daf23af5-70af-4495-8479-97210716c4b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43586,daf23af5-70af-4495-8479-97210716c4b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43587,daf23af5-70af-4495-8479-97210716c4b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43588,bbc59739-961c-43d0-913d-224d6dce3880,LIST_ACCOUNTS,xs2aListAccounts,true -43589,bbc59739-961c-43d0-913d-224d6dce3880,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43589,bbc59739-961c-43d0-913d-224d6dce3880,LIST_TRANSACTIONS,xs2aListTransactions,true 43590,bbc59739-961c-43d0-913d-224d6dce3880,AUTHORIZATION,,true 43591,bbc59739-961c-43d0-913d-224d6dce3880,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43592,bbc59739-961c-43d0-913d-224d6dce3880,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43593,bbc59739-961c-43d0-913d-224d6dce3880,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43594,04bc99ba-726c-42f2-991e-37cc0bfd984e,LIST_ACCOUNTS,hbciListAccounts,false -43595,04bc99ba-726c-42f2-991e-37cc0bfd984e,LIST_TRANSACTIONS,hbciListTransactions,false -43596,04bc99ba-726c-42f2-991e-37cc0bfd984e,AUTHORIZATION,,false -43597,04bc99ba-726c-42f2-991e-37cc0bfd984e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43598,04bc99ba-726c-42f2-991e-37cc0bfd984e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43599,04bc99ba-726c-42f2-991e-37cc0bfd984e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43594,c8b78d3c-04ba-40ec-ad82-f1cd5bb00da4,LIST_ACCOUNTS,hbciListAccounts,false +43595,c8b78d3c-04ba-40ec-ad82-f1cd5bb00da4,LIST_TRANSACTIONS,hbciListTransactions,false +43596,c8b78d3c-04ba-40ec-ad82-f1cd5bb00da4,AUTHORIZATION,,false +43597,c8b78d3c-04ba-40ec-ad82-f1cd5bb00da4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43598,c8b78d3c-04ba-40ec-ad82-f1cd5bb00da4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43599,c8b78d3c-04ba-40ec-ad82-f1cd5bb00da4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43600,274cdfbf-e50c-47b1-8e2f-119eec2fc443,LIST_ACCOUNTS,xs2aListAccounts,true -43601,274cdfbf-e50c-47b1-8e2f-119eec2fc443,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43601,274cdfbf-e50c-47b1-8e2f-119eec2fc443,LIST_TRANSACTIONS,xs2aListTransactions,true 43602,274cdfbf-e50c-47b1-8e2f-119eec2fc443,AUTHORIZATION,,true 43603,274cdfbf-e50c-47b1-8e2f-119eec2fc443,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43604,274cdfbf-e50c-47b1-8e2f-119eec2fc443,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43605,274cdfbf-e50c-47b1-8e2f-119eec2fc443,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43606,73cce166-bad5-45c1-a3cb-8776c83dbc1a,LIST_ACCOUNTS,hbciListAccounts,false -43607,73cce166-bad5-45c1-a3cb-8776c83dbc1a,LIST_TRANSACTIONS,hbciListTransactions,false -43608,73cce166-bad5-45c1-a3cb-8776c83dbc1a,AUTHORIZATION,,false -43609,73cce166-bad5-45c1-a3cb-8776c83dbc1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43610,73cce166-bad5-45c1-a3cb-8776c83dbc1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43611,73cce166-bad5-45c1-a3cb-8776c83dbc1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43606,bfd149f5-b6cd-4033-a2c1-65b52fe99d4d,LIST_ACCOUNTS,hbciListAccounts,false +43607,bfd149f5-b6cd-4033-a2c1-65b52fe99d4d,LIST_TRANSACTIONS,hbciListTransactions,false +43608,bfd149f5-b6cd-4033-a2c1-65b52fe99d4d,AUTHORIZATION,,false +43609,bfd149f5-b6cd-4033-a2c1-65b52fe99d4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43610,bfd149f5-b6cd-4033-a2c1-65b52fe99d4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43611,bfd149f5-b6cd-4033-a2c1-65b52fe99d4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43612,dbb5cea9-e342-42d6-95e8-9af8e34bcbed,LIST_ACCOUNTS,xs2aListAccounts,true -43613,dbb5cea9-e342-42d6-95e8-9af8e34bcbed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43613,dbb5cea9-e342-42d6-95e8-9af8e34bcbed,LIST_TRANSACTIONS,xs2aListTransactions,true 43614,dbb5cea9-e342-42d6-95e8-9af8e34bcbed,AUTHORIZATION,,true 43615,dbb5cea9-e342-42d6-95e8-9af8e34bcbed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43616,dbb5cea9-e342-42d6-95e8-9af8e34bcbed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43617,dbb5cea9-e342-42d6-95e8-9af8e34bcbed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43618,9cc87fea-46a6-41ce-99ce-0ec901b58a21,LIST_ACCOUNTS,hbciListAccounts,false -43619,9cc87fea-46a6-41ce-99ce-0ec901b58a21,LIST_TRANSACTIONS,hbciListTransactions,false -43620,9cc87fea-46a6-41ce-99ce-0ec901b58a21,AUTHORIZATION,,false -43621,9cc87fea-46a6-41ce-99ce-0ec901b58a21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43622,9cc87fea-46a6-41ce-99ce-0ec901b58a21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43623,9cc87fea-46a6-41ce-99ce-0ec901b58a21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43618,bda39781-9f86-4f1c-a32b-6f897b8d6cee,LIST_ACCOUNTS,hbciListAccounts,false +43619,bda39781-9f86-4f1c-a32b-6f897b8d6cee,LIST_TRANSACTIONS,hbciListTransactions,false +43620,bda39781-9f86-4f1c-a32b-6f897b8d6cee,AUTHORIZATION,,false +43621,bda39781-9f86-4f1c-a32b-6f897b8d6cee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43622,bda39781-9f86-4f1c-a32b-6f897b8d6cee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43623,bda39781-9f86-4f1c-a32b-6f897b8d6cee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43624,61d8dd5b-428a-48a3-ac7f-575df897ae47,LIST_ACCOUNTS,xs2aListAccounts,true -43625,61d8dd5b-428a-48a3-ac7f-575df897ae47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43625,61d8dd5b-428a-48a3-ac7f-575df897ae47,LIST_TRANSACTIONS,xs2aListTransactions,true 43626,61d8dd5b-428a-48a3-ac7f-575df897ae47,AUTHORIZATION,,true 43627,61d8dd5b-428a-48a3-ac7f-575df897ae47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43628,61d8dd5b-428a-48a3-ac7f-575df897ae47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43629,61d8dd5b-428a-48a3-ac7f-575df897ae47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43630,3d96e45b-de69-4ea5-bfea-b783747d3191,LIST_ACCOUNTS,hbciListAccounts,false -43631,3d96e45b-de69-4ea5-bfea-b783747d3191,LIST_TRANSACTIONS,hbciListTransactions,false -43632,3d96e45b-de69-4ea5-bfea-b783747d3191,AUTHORIZATION,,false -43633,3d96e45b-de69-4ea5-bfea-b783747d3191,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43634,3d96e45b-de69-4ea5-bfea-b783747d3191,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43635,3d96e45b-de69-4ea5-bfea-b783747d3191,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43630,ec85beaf-49c2-4123-af9a-d884c13907ca,LIST_ACCOUNTS,hbciListAccounts,false +43631,ec85beaf-49c2-4123-af9a-d884c13907ca,LIST_TRANSACTIONS,hbciListTransactions,false +43632,ec85beaf-49c2-4123-af9a-d884c13907ca,AUTHORIZATION,,false +43633,ec85beaf-49c2-4123-af9a-d884c13907ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43634,ec85beaf-49c2-4123-af9a-d884c13907ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43635,ec85beaf-49c2-4123-af9a-d884c13907ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43636,17ad4246-142c-46d7-b84b-1fb03cf32700,LIST_ACCOUNTS,xs2aListAccounts,true -43637,17ad4246-142c-46d7-b84b-1fb03cf32700,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43637,17ad4246-142c-46d7-b84b-1fb03cf32700,LIST_TRANSACTIONS,xs2aListTransactions,true 43638,17ad4246-142c-46d7-b84b-1fb03cf32700,AUTHORIZATION,,true 43639,17ad4246-142c-46d7-b84b-1fb03cf32700,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43640,17ad4246-142c-46d7-b84b-1fb03cf32700,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43641,17ad4246-142c-46d7-b84b-1fb03cf32700,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43642,9ab5d816-b505-49dc-baea-a5ae79c6b518,LIST_ACCOUNTS,hbciListAccounts,false -43643,9ab5d816-b505-49dc-baea-a5ae79c6b518,LIST_TRANSACTIONS,hbciListTransactions,false -43644,9ab5d816-b505-49dc-baea-a5ae79c6b518,AUTHORIZATION,,false -43645,9ab5d816-b505-49dc-baea-a5ae79c6b518,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43646,9ab5d816-b505-49dc-baea-a5ae79c6b518,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43647,9ab5d816-b505-49dc-baea-a5ae79c6b518,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43642,d7bc9a6a-226f-4409-9948-ce7d9f4bc402,LIST_ACCOUNTS,hbciListAccounts,false +43643,d7bc9a6a-226f-4409-9948-ce7d9f4bc402,LIST_TRANSACTIONS,hbciListTransactions,false +43644,d7bc9a6a-226f-4409-9948-ce7d9f4bc402,AUTHORIZATION,,false +43645,d7bc9a6a-226f-4409-9948-ce7d9f4bc402,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43646,d7bc9a6a-226f-4409-9948-ce7d9f4bc402,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43647,d7bc9a6a-226f-4409-9948-ce7d9f4bc402,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43648,f922ddf7-5295-46ea-84e4-4369ada6d21c,LIST_ACCOUNTS,xs2aListAccounts,true -43649,f922ddf7-5295-46ea-84e4-4369ada6d21c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43649,f922ddf7-5295-46ea-84e4-4369ada6d21c,LIST_TRANSACTIONS,xs2aListTransactions,true 43650,f922ddf7-5295-46ea-84e4-4369ada6d21c,AUTHORIZATION,,true 43651,f922ddf7-5295-46ea-84e4-4369ada6d21c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43652,f922ddf7-5295-46ea-84e4-4369ada6d21c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43653,f922ddf7-5295-46ea-84e4-4369ada6d21c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43654,e9b73857-5136-41d8-ae3d-68a6cddeac70,LIST_ACCOUNTS,hbciListAccounts,false -43655,e9b73857-5136-41d8-ae3d-68a6cddeac70,LIST_TRANSACTIONS,hbciListTransactions,false -43656,e9b73857-5136-41d8-ae3d-68a6cddeac70,AUTHORIZATION,,false -43657,e9b73857-5136-41d8-ae3d-68a6cddeac70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43658,e9b73857-5136-41d8-ae3d-68a6cddeac70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43659,e9b73857-5136-41d8-ae3d-68a6cddeac70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43654,86a2c53c-4060-438b-8baa-c0e442c7f2e1,LIST_ACCOUNTS,hbciListAccounts,false +43655,86a2c53c-4060-438b-8baa-c0e442c7f2e1,LIST_TRANSACTIONS,hbciListTransactions,false +43656,86a2c53c-4060-438b-8baa-c0e442c7f2e1,AUTHORIZATION,,false +43657,86a2c53c-4060-438b-8baa-c0e442c7f2e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43658,86a2c53c-4060-438b-8baa-c0e442c7f2e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43659,86a2c53c-4060-438b-8baa-c0e442c7f2e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43660,6b2ca964-7bf6-45dd-b7ef-74e54a9dae5b,LIST_ACCOUNTS,xs2aListAccounts,true -43661,6b2ca964-7bf6-45dd-b7ef-74e54a9dae5b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43661,6b2ca964-7bf6-45dd-b7ef-74e54a9dae5b,LIST_TRANSACTIONS,xs2aListTransactions,true 43662,6b2ca964-7bf6-45dd-b7ef-74e54a9dae5b,AUTHORIZATION,,true 43663,6b2ca964-7bf6-45dd-b7ef-74e54a9dae5b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43664,6b2ca964-7bf6-45dd-b7ef-74e54a9dae5b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43665,6b2ca964-7bf6-45dd-b7ef-74e54a9dae5b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43666,53171df3-4504-4bad-9c3c-05ff09fab1eb,LIST_ACCOUNTS,hbciListAccounts,false -43667,53171df3-4504-4bad-9c3c-05ff09fab1eb,LIST_TRANSACTIONS,hbciListTransactions,false -43668,53171df3-4504-4bad-9c3c-05ff09fab1eb,AUTHORIZATION,,false -43669,53171df3-4504-4bad-9c3c-05ff09fab1eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43670,53171df3-4504-4bad-9c3c-05ff09fab1eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43671,53171df3-4504-4bad-9c3c-05ff09fab1eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43666,ea77c022-0c7c-4ba0-97c4-b817e4b255d5,LIST_ACCOUNTS,hbciListAccounts,false +43667,ea77c022-0c7c-4ba0-97c4-b817e4b255d5,LIST_TRANSACTIONS,hbciListTransactions,false +43668,ea77c022-0c7c-4ba0-97c4-b817e4b255d5,AUTHORIZATION,,false +43669,ea77c022-0c7c-4ba0-97c4-b817e4b255d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43670,ea77c022-0c7c-4ba0-97c4-b817e4b255d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43671,ea77c022-0c7c-4ba0-97c4-b817e4b255d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43672,e9f4c83a-2232-41fb-a264-816ccfa79023,LIST_ACCOUNTS,xs2aListAccounts,true -43673,e9f4c83a-2232-41fb-a264-816ccfa79023,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43673,e9f4c83a-2232-41fb-a264-816ccfa79023,LIST_TRANSACTIONS,xs2aListTransactions,true 43674,e9f4c83a-2232-41fb-a264-816ccfa79023,AUTHORIZATION,,true 43675,e9f4c83a-2232-41fb-a264-816ccfa79023,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43676,e9f4c83a-2232-41fb-a264-816ccfa79023,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43677,e9f4c83a-2232-41fb-a264-816ccfa79023,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43678,a5d3435d-e53b-4f87-ac97-61a9c8fb4537,LIST_ACCOUNTS,hbciListAccounts,false -43679,a5d3435d-e53b-4f87-ac97-61a9c8fb4537,LIST_TRANSACTIONS,hbciListTransactions,false -43680,a5d3435d-e53b-4f87-ac97-61a9c8fb4537,AUTHORIZATION,,false -43681,a5d3435d-e53b-4f87-ac97-61a9c8fb4537,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43682,a5d3435d-e53b-4f87-ac97-61a9c8fb4537,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43683,a5d3435d-e53b-4f87-ac97-61a9c8fb4537,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43678,2ede5990-0c42-4cc5-865b-afd0cfc296ac,LIST_ACCOUNTS,hbciListAccounts,false +43679,2ede5990-0c42-4cc5-865b-afd0cfc296ac,LIST_TRANSACTIONS,hbciListTransactions,false +43680,2ede5990-0c42-4cc5-865b-afd0cfc296ac,AUTHORIZATION,,false +43681,2ede5990-0c42-4cc5-865b-afd0cfc296ac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43682,2ede5990-0c42-4cc5-865b-afd0cfc296ac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43683,2ede5990-0c42-4cc5-865b-afd0cfc296ac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43684,1b7d3637-cd26-4566-b530-b0a52560dc93,LIST_ACCOUNTS,xs2aListAccounts,true -43685,1b7d3637-cd26-4566-b530-b0a52560dc93,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43685,1b7d3637-cd26-4566-b530-b0a52560dc93,LIST_TRANSACTIONS,xs2aListTransactions,true 43686,1b7d3637-cd26-4566-b530-b0a52560dc93,AUTHORIZATION,,true 43687,1b7d3637-cd26-4566-b530-b0a52560dc93,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43688,1b7d3637-cd26-4566-b530-b0a52560dc93,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43689,1b7d3637-cd26-4566-b530-b0a52560dc93,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43690,0585d351-511f-4f85-821e-ad485ea10f0b,LIST_ACCOUNTS,hbciListAccounts,false -43691,0585d351-511f-4f85-821e-ad485ea10f0b,LIST_TRANSACTIONS,hbciListTransactions,false -43692,0585d351-511f-4f85-821e-ad485ea10f0b,AUTHORIZATION,,false -43693,0585d351-511f-4f85-821e-ad485ea10f0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43694,0585d351-511f-4f85-821e-ad485ea10f0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43695,0585d351-511f-4f85-821e-ad485ea10f0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43690,b9e0207e-3641-4579-80a5-5c8d665f96b5,LIST_ACCOUNTS,hbciListAccounts,false +43691,b9e0207e-3641-4579-80a5-5c8d665f96b5,LIST_TRANSACTIONS,hbciListTransactions,false +43692,b9e0207e-3641-4579-80a5-5c8d665f96b5,AUTHORIZATION,,false +43693,b9e0207e-3641-4579-80a5-5c8d665f96b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43694,b9e0207e-3641-4579-80a5-5c8d665f96b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43695,b9e0207e-3641-4579-80a5-5c8d665f96b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43696,2a5ff529-2a47-42f7-9fe2-107e1e3f49af,LIST_ACCOUNTS,xs2aListAccounts,true -43697,2a5ff529-2a47-42f7-9fe2-107e1e3f49af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43697,2a5ff529-2a47-42f7-9fe2-107e1e3f49af,LIST_TRANSACTIONS,xs2aListTransactions,true 43698,2a5ff529-2a47-42f7-9fe2-107e1e3f49af,AUTHORIZATION,,true 43699,2a5ff529-2a47-42f7-9fe2-107e1e3f49af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43700,2a5ff529-2a47-42f7-9fe2-107e1e3f49af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43701,2a5ff529-2a47-42f7-9fe2-107e1e3f49af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43702,6af4529b-7988-430d-969f-7c1cc70db093,LIST_ACCOUNTS,hbciListAccounts,false -43703,6af4529b-7988-430d-969f-7c1cc70db093,LIST_TRANSACTIONS,hbciListTransactions,false -43704,6af4529b-7988-430d-969f-7c1cc70db093,AUTHORIZATION,,false -43705,6af4529b-7988-430d-969f-7c1cc70db093,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43706,6af4529b-7988-430d-969f-7c1cc70db093,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43707,6af4529b-7988-430d-969f-7c1cc70db093,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43702,bf0367db-2800-4831-97b4-5a3401070188,LIST_ACCOUNTS,hbciListAccounts,false +43703,bf0367db-2800-4831-97b4-5a3401070188,LIST_TRANSACTIONS,hbciListTransactions,false +43704,bf0367db-2800-4831-97b4-5a3401070188,AUTHORIZATION,,false +43705,bf0367db-2800-4831-97b4-5a3401070188,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43706,bf0367db-2800-4831-97b4-5a3401070188,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43707,bf0367db-2800-4831-97b4-5a3401070188,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43708,35c8ac52-4827-4b9f-bdfb-01b7281eb15a,LIST_ACCOUNTS,xs2aListAccounts,true -43709,35c8ac52-4827-4b9f-bdfb-01b7281eb15a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43709,35c8ac52-4827-4b9f-bdfb-01b7281eb15a,LIST_TRANSACTIONS,xs2aListTransactions,true 43710,35c8ac52-4827-4b9f-bdfb-01b7281eb15a,AUTHORIZATION,,true 43711,35c8ac52-4827-4b9f-bdfb-01b7281eb15a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43712,35c8ac52-4827-4b9f-bdfb-01b7281eb15a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43713,35c8ac52-4827-4b9f-bdfb-01b7281eb15a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43714,eaa64f2e-ae9e-4ec4-8c8a-a9688f0b1a86,LIST_ACCOUNTS,hbciListAccounts,false -43715,eaa64f2e-ae9e-4ec4-8c8a-a9688f0b1a86,LIST_TRANSACTIONS,hbciListTransactions,false -43716,eaa64f2e-ae9e-4ec4-8c8a-a9688f0b1a86,AUTHORIZATION,,false -43717,eaa64f2e-ae9e-4ec4-8c8a-a9688f0b1a86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43718,eaa64f2e-ae9e-4ec4-8c8a-a9688f0b1a86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43719,eaa64f2e-ae9e-4ec4-8c8a-a9688f0b1a86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43714,d30ac80a-08e2-454e-bd53-cc39ad8b93a8,LIST_ACCOUNTS,hbciListAccounts,false +43715,d30ac80a-08e2-454e-bd53-cc39ad8b93a8,LIST_TRANSACTIONS,hbciListTransactions,false +43716,d30ac80a-08e2-454e-bd53-cc39ad8b93a8,AUTHORIZATION,,false +43717,d30ac80a-08e2-454e-bd53-cc39ad8b93a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43718,d30ac80a-08e2-454e-bd53-cc39ad8b93a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43719,d30ac80a-08e2-454e-bd53-cc39ad8b93a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43720,40f04021-2d37-431a-9d0b-8811e30f1c36,LIST_ACCOUNTS,xs2aListAccounts,true -43721,40f04021-2d37-431a-9d0b-8811e30f1c36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43721,40f04021-2d37-431a-9d0b-8811e30f1c36,LIST_TRANSACTIONS,xs2aListTransactions,true 43722,40f04021-2d37-431a-9d0b-8811e30f1c36,AUTHORIZATION,,true 43723,40f04021-2d37-431a-9d0b-8811e30f1c36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43724,40f04021-2d37-431a-9d0b-8811e30f1c36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43725,40f04021-2d37-431a-9d0b-8811e30f1c36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43726,153b9a58-1e9a-4335-8951-11fa4494bd46,LIST_ACCOUNTS,hbciListAccounts,false -43727,153b9a58-1e9a-4335-8951-11fa4494bd46,LIST_TRANSACTIONS,hbciListTransactions,false -43728,153b9a58-1e9a-4335-8951-11fa4494bd46,AUTHORIZATION,,false -43729,153b9a58-1e9a-4335-8951-11fa4494bd46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43730,153b9a58-1e9a-4335-8951-11fa4494bd46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43731,153b9a58-1e9a-4335-8951-11fa4494bd46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43726,31206c63-c8a1-4386-ba83-4cd0f12bb4c9,LIST_ACCOUNTS,hbciListAccounts,false +43727,31206c63-c8a1-4386-ba83-4cd0f12bb4c9,LIST_TRANSACTIONS,hbciListTransactions,false +43728,31206c63-c8a1-4386-ba83-4cd0f12bb4c9,AUTHORIZATION,,false +43729,31206c63-c8a1-4386-ba83-4cd0f12bb4c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43730,31206c63-c8a1-4386-ba83-4cd0f12bb4c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43731,31206c63-c8a1-4386-ba83-4cd0f12bb4c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43732,453a0a05-9b47-46f7-bce6-2ea616d1eed4,LIST_ACCOUNTS,xs2aListAccounts,true -43733,453a0a05-9b47-46f7-bce6-2ea616d1eed4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43733,453a0a05-9b47-46f7-bce6-2ea616d1eed4,LIST_TRANSACTIONS,xs2aListTransactions,true 43734,453a0a05-9b47-46f7-bce6-2ea616d1eed4,AUTHORIZATION,,true 43735,453a0a05-9b47-46f7-bce6-2ea616d1eed4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43736,453a0a05-9b47-46f7-bce6-2ea616d1eed4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43737,453a0a05-9b47-46f7-bce6-2ea616d1eed4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43738,42b925dc-0613-4879-b9d8-40e2f594dc00,LIST_ACCOUNTS,hbciListAccounts,false -43739,42b925dc-0613-4879-b9d8-40e2f594dc00,LIST_TRANSACTIONS,hbciListTransactions,false -43740,42b925dc-0613-4879-b9d8-40e2f594dc00,AUTHORIZATION,,false -43741,42b925dc-0613-4879-b9d8-40e2f594dc00,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43742,42b925dc-0613-4879-b9d8-40e2f594dc00,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43743,42b925dc-0613-4879-b9d8-40e2f594dc00,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43738,e5bd3c3c-a43d-43b8-a5bc-0eeff9f5ec00,LIST_ACCOUNTS,hbciListAccounts,false +43739,e5bd3c3c-a43d-43b8-a5bc-0eeff9f5ec00,LIST_TRANSACTIONS,hbciListTransactions,false +43740,e5bd3c3c-a43d-43b8-a5bc-0eeff9f5ec00,AUTHORIZATION,,false +43741,e5bd3c3c-a43d-43b8-a5bc-0eeff9f5ec00,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43742,e5bd3c3c-a43d-43b8-a5bc-0eeff9f5ec00,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43743,e5bd3c3c-a43d-43b8-a5bc-0eeff9f5ec00,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43744,66e77d8a-8f49-4c4b-916c-52cbe3a8eaa6,LIST_ACCOUNTS,xs2aListAccounts,true -43745,66e77d8a-8f49-4c4b-916c-52cbe3a8eaa6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43745,66e77d8a-8f49-4c4b-916c-52cbe3a8eaa6,LIST_TRANSACTIONS,xs2aListTransactions,true 43746,66e77d8a-8f49-4c4b-916c-52cbe3a8eaa6,AUTHORIZATION,,true 43747,66e77d8a-8f49-4c4b-916c-52cbe3a8eaa6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43748,66e77d8a-8f49-4c4b-916c-52cbe3a8eaa6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43749,66e77d8a-8f49-4c4b-916c-52cbe3a8eaa6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43750,3f8f11b1-091e-4f1e-8c52-26fa8775cdc6,LIST_ACCOUNTS,hbciListAccounts,false -43751,3f8f11b1-091e-4f1e-8c52-26fa8775cdc6,LIST_TRANSACTIONS,hbciListTransactions,false -43752,3f8f11b1-091e-4f1e-8c52-26fa8775cdc6,AUTHORIZATION,,false -43753,3f8f11b1-091e-4f1e-8c52-26fa8775cdc6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43754,3f8f11b1-091e-4f1e-8c52-26fa8775cdc6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43755,3f8f11b1-091e-4f1e-8c52-26fa8775cdc6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43750,d9da96d9-c3d6-4b79-9e48-e51a3c78caa6,LIST_ACCOUNTS,hbciListAccounts,false +43751,d9da96d9-c3d6-4b79-9e48-e51a3c78caa6,LIST_TRANSACTIONS,hbciListTransactions,false +43752,d9da96d9-c3d6-4b79-9e48-e51a3c78caa6,AUTHORIZATION,,false +43753,d9da96d9-c3d6-4b79-9e48-e51a3c78caa6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43754,d9da96d9-c3d6-4b79-9e48-e51a3c78caa6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43755,d9da96d9-c3d6-4b79-9e48-e51a3c78caa6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43756,eec07aeb-e956-4273-a3d9-96ba604bbe94,LIST_ACCOUNTS,xs2aListAccounts,true -43757,eec07aeb-e956-4273-a3d9-96ba604bbe94,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43757,eec07aeb-e956-4273-a3d9-96ba604bbe94,LIST_TRANSACTIONS,xs2aListTransactions,true 43758,eec07aeb-e956-4273-a3d9-96ba604bbe94,AUTHORIZATION,,true 43759,eec07aeb-e956-4273-a3d9-96ba604bbe94,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43760,eec07aeb-e956-4273-a3d9-96ba604bbe94,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43761,eec07aeb-e956-4273-a3d9-96ba604bbe94,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43762,44ca7cdc-00e9-4d4c-9391-f9bc47b93d71,LIST_ACCOUNTS,hbciListAccounts,false -43763,44ca7cdc-00e9-4d4c-9391-f9bc47b93d71,LIST_TRANSACTIONS,hbciListTransactions,false -43764,44ca7cdc-00e9-4d4c-9391-f9bc47b93d71,AUTHORIZATION,,false -43765,44ca7cdc-00e9-4d4c-9391-f9bc47b93d71,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43766,44ca7cdc-00e9-4d4c-9391-f9bc47b93d71,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43767,44ca7cdc-00e9-4d4c-9391-f9bc47b93d71,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43762,8eddcb8b-7ed4-4082-8f80-8c18cda26888,LIST_ACCOUNTS,hbciListAccounts,false +43763,8eddcb8b-7ed4-4082-8f80-8c18cda26888,LIST_TRANSACTIONS,hbciListTransactions,false +43764,8eddcb8b-7ed4-4082-8f80-8c18cda26888,AUTHORIZATION,,false +43765,8eddcb8b-7ed4-4082-8f80-8c18cda26888,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43766,8eddcb8b-7ed4-4082-8f80-8c18cda26888,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43767,8eddcb8b-7ed4-4082-8f80-8c18cda26888,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43768,4cee4b78-c027-45c8-a883-ae7b9af43807,LIST_ACCOUNTS,xs2aListAccounts,true -43769,4cee4b78-c027-45c8-a883-ae7b9af43807,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43769,4cee4b78-c027-45c8-a883-ae7b9af43807,LIST_TRANSACTIONS,xs2aListTransactions,true 43770,4cee4b78-c027-45c8-a883-ae7b9af43807,AUTHORIZATION,,true 43771,4cee4b78-c027-45c8-a883-ae7b9af43807,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43772,4cee4b78-c027-45c8-a883-ae7b9af43807,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43773,4cee4b78-c027-45c8-a883-ae7b9af43807,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43774,aecf2263-b790-4a00-8468-c6191fe43728,LIST_ACCOUNTS,hbciListAccounts,false -43775,aecf2263-b790-4a00-8468-c6191fe43728,LIST_TRANSACTIONS,hbciListTransactions,false -43776,aecf2263-b790-4a00-8468-c6191fe43728,AUTHORIZATION,,false -43777,aecf2263-b790-4a00-8468-c6191fe43728,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43778,aecf2263-b790-4a00-8468-c6191fe43728,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43779,aecf2263-b790-4a00-8468-c6191fe43728,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43774,0bfeab76-c8c8-4655-bf1a-d5b2c4182ece,LIST_ACCOUNTS,hbciListAccounts,false +43775,0bfeab76-c8c8-4655-bf1a-d5b2c4182ece,LIST_TRANSACTIONS,hbciListTransactions,false +43776,0bfeab76-c8c8-4655-bf1a-d5b2c4182ece,AUTHORIZATION,,false +43777,0bfeab76-c8c8-4655-bf1a-d5b2c4182ece,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43778,0bfeab76-c8c8-4655-bf1a-d5b2c4182ece,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43779,0bfeab76-c8c8-4655-bf1a-d5b2c4182ece,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43780,422598d9-6f3e-496c-98f4-8f6dc24f32a2,LIST_ACCOUNTS,xs2aListAccounts,true -43781,422598d9-6f3e-496c-98f4-8f6dc24f32a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43781,422598d9-6f3e-496c-98f4-8f6dc24f32a2,LIST_TRANSACTIONS,xs2aListTransactions,true 43782,422598d9-6f3e-496c-98f4-8f6dc24f32a2,AUTHORIZATION,,true 43783,422598d9-6f3e-496c-98f4-8f6dc24f32a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43784,422598d9-6f3e-496c-98f4-8f6dc24f32a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43785,422598d9-6f3e-496c-98f4-8f6dc24f32a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43786,3de2565f-8457-448b-b177-ac59251beb0c,LIST_ACCOUNTS,hbciListAccounts,false -43787,3de2565f-8457-448b-b177-ac59251beb0c,LIST_TRANSACTIONS,hbciListTransactions,false -43788,3de2565f-8457-448b-b177-ac59251beb0c,AUTHORIZATION,,false -43789,3de2565f-8457-448b-b177-ac59251beb0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43790,3de2565f-8457-448b-b177-ac59251beb0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43791,3de2565f-8457-448b-b177-ac59251beb0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43786,36252a8a-51b9-472f-8c34-8b1559f224c3,LIST_ACCOUNTS,hbciListAccounts,false +43787,36252a8a-51b9-472f-8c34-8b1559f224c3,LIST_TRANSACTIONS,hbciListTransactions,false +43788,36252a8a-51b9-472f-8c34-8b1559f224c3,AUTHORIZATION,,false +43789,36252a8a-51b9-472f-8c34-8b1559f224c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43790,36252a8a-51b9-472f-8c34-8b1559f224c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43791,36252a8a-51b9-472f-8c34-8b1559f224c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43792,2fef3076-907d-4733-8f3d-a93d23ce1809,LIST_ACCOUNTS,xs2aListAccounts,true -43793,2fef3076-907d-4733-8f3d-a93d23ce1809,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43793,2fef3076-907d-4733-8f3d-a93d23ce1809,LIST_TRANSACTIONS,xs2aListTransactions,true 43794,2fef3076-907d-4733-8f3d-a93d23ce1809,AUTHORIZATION,,true 43795,2fef3076-907d-4733-8f3d-a93d23ce1809,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43796,2fef3076-907d-4733-8f3d-a93d23ce1809,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43797,2fef3076-907d-4733-8f3d-a93d23ce1809,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43798,fe35f9eb-2026-4cb1-af0e-b8edc50f1e75,LIST_ACCOUNTS,hbciListAccounts,false -43799,fe35f9eb-2026-4cb1-af0e-b8edc50f1e75,LIST_TRANSACTIONS,hbciListTransactions,false -43800,fe35f9eb-2026-4cb1-af0e-b8edc50f1e75,AUTHORIZATION,,false -43801,fe35f9eb-2026-4cb1-af0e-b8edc50f1e75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43802,fe35f9eb-2026-4cb1-af0e-b8edc50f1e75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43803,fe35f9eb-2026-4cb1-af0e-b8edc50f1e75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43798,0dba39ff-fdd2-40f6-a255-f4a384746d70,LIST_ACCOUNTS,hbciListAccounts,false +43799,0dba39ff-fdd2-40f6-a255-f4a384746d70,LIST_TRANSACTIONS,hbciListTransactions,false +43800,0dba39ff-fdd2-40f6-a255-f4a384746d70,AUTHORIZATION,,false +43801,0dba39ff-fdd2-40f6-a255-f4a384746d70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43802,0dba39ff-fdd2-40f6-a255-f4a384746d70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43803,0dba39ff-fdd2-40f6-a255-f4a384746d70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43804,a73da4e9-a919-4628-972d-2858f3a5efd3,LIST_ACCOUNTS,xs2aListAccounts,true -43805,a73da4e9-a919-4628-972d-2858f3a5efd3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43805,a73da4e9-a919-4628-972d-2858f3a5efd3,LIST_TRANSACTIONS,xs2aListTransactions,true 43806,a73da4e9-a919-4628-972d-2858f3a5efd3,AUTHORIZATION,,true 43807,a73da4e9-a919-4628-972d-2858f3a5efd3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43808,a73da4e9-a919-4628-972d-2858f3a5efd3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43809,a73da4e9-a919-4628-972d-2858f3a5efd3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43810,d1fa066f-82fb-48b4-b60f-f3c1a942bb26,LIST_ACCOUNTS,hbciListAccounts,false -43811,d1fa066f-82fb-48b4-b60f-f3c1a942bb26,LIST_TRANSACTIONS,hbciListTransactions,false -43812,d1fa066f-82fb-48b4-b60f-f3c1a942bb26,AUTHORIZATION,,false -43813,d1fa066f-82fb-48b4-b60f-f3c1a942bb26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43814,d1fa066f-82fb-48b4-b60f-f3c1a942bb26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43815,d1fa066f-82fb-48b4-b60f-f3c1a942bb26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43810,730b71d1-46b0-4cae-9b3f-a630fb6572f3,LIST_ACCOUNTS,hbciListAccounts,false +43811,730b71d1-46b0-4cae-9b3f-a630fb6572f3,LIST_TRANSACTIONS,hbciListTransactions,false +43812,730b71d1-46b0-4cae-9b3f-a630fb6572f3,AUTHORIZATION,,false +43813,730b71d1-46b0-4cae-9b3f-a630fb6572f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43814,730b71d1-46b0-4cae-9b3f-a630fb6572f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43815,730b71d1-46b0-4cae-9b3f-a630fb6572f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43816,585e1a8e-dbdc-4686-9f09-ff8c36a30ae7,LIST_ACCOUNTS,xs2aListAccounts,true -43817,585e1a8e-dbdc-4686-9f09-ff8c36a30ae7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43817,585e1a8e-dbdc-4686-9f09-ff8c36a30ae7,LIST_TRANSACTIONS,xs2aListTransactions,true 43818,585e1a8e-dbdc-4686-9f09-ff8c36a30ae7,AUTHORIZATION,,true 43819,585e1a8e-dbdc-4686-9f09-ff8c36a30ae7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43820,585e1a8e-dbdc-4686-9f09-ff8c36a30ae7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43821,585e1a8e-dbdc-4686-9f09-ff8c36a30ae7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43822,dedc280b-4923-4db9-b40f-23ff405402d5,LIST_ACCOUNTS,hbciListAccounts,false -43823,dedc280b-4923-4db9-b40f-23ff405402d5,LIST_TRANSACTIONS,hbciListTransactions,false -43824,dedc280b-4923-4db9-b40f-23ff405402d5,AUTHORIZATION,,false -43825,dedc280b-4923-4db9-b40f-23ff405402d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43826,dedc280b-4923-4db9-b40f-23ff405402d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43827,dedc280b-4923-4db9-b40f-23ff405402d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43822,a4ff81c4-656f-4ad3-b866-c546c7244cd8,LIST_ACCOUNTS,hbciListAccounts,false +43823,a4ff81c4-656f-4ad3-b866-c546c7244cd8,LIST_TRANSACTIONS,hbciListTransactions,false +43824,a4ff81c4-656f-4ad3-b866-c546c7244cd8,AUTHORIZATION,,false +43825,a4ff81c4-656f-4ad3-b866-c546c7244cd8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43826,a4ff81c4-656f-4ad3-b866-c546c7244cd8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43827,a4ff81c4-656f-4ad3-b866-c546c7244cd8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43828,a47ceee1-622d-443c-b2cd-93601a6ea7c4,LIST_ACCOUNTS,xs2aListAccounts,true -43829,a47ceee1-622d-443c-b2cd-93601a6ea7c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43829,a47ceee1-622d-443c-b2cd-93601a6ea7c4,LIST_TRANSACTIONS,xs2aListTransactions,true 43830,a47ceee1-622d-443c-b2cd-93601a6ea7c4,AUTHORIZATION,,true 43831,a47ceee1-622d-443c-b2cd-93601a6ea7c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43832,a47ceee1-622d-443c-b2cd-93601a6ea7c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43833,a47ceee1-622d-443c-b2cd-93601a6ea7c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43834,2f7b8016-c54d-4a0a-a713-a74b80004e40,LIST_ACCOUNTS,hbciListAccounts,false -43835,2f7b8016-c54d-4a0a-a713-a74b80004e40,LIST_TRANSACTIONS,hbciListTransactions,false -43836,2f7b8016-c54d-4a0a-a713-a74b80004e40,AUTHORIZATION,,false -43837,2f7b8016-c54d-4a0a-a713-a74b80004e40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43838,2f7b8016-c54d-4a0a-a713-a74b80004e40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43839,2f7b8016-c54d-4a0a-a713-a74b80004e40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43834,3b57889d-f2d1-4cd6-a6ae-95580ddc77da,LIST_ACCOUNTS,hbciListAccounts,false +43835,3b57889d-f2d1-4cd6-a6ae-95580ddc77da,LIST_TRANSACTIONS,hbciListTransactions,false +43836,3b57889d-f2d1-4cd6-a6ae-95580ddc77da,AUTHORIZATION,,false +43837,3b57889d-f2d1-4cd6-a6ae-95580ddc77da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43838,3b57889d-f2d1-4cd6-a6ae-95580ddc77da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43839,3b57889d-f2d1-4cd6-a6ae-95580ddc77da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43840,47918fe2-9b95-417c-98c6-f8012d6c6999,LIST_ACCOUNTS,xs2aListAccounts,true -43841,47918fe2-9b95-417c-98c6-f8012d6c6999,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43841,47918fe2-9b95-417c-98c6-f8012d6c6999,LIST_TRANSACTIONS,xs2aListTransactions,true 43842,47918fe2-9b95-417c-98c6-f8012d6c6999,AUTHORIZATION,,true 43843,47918fe2-9b95-417c-98c6-f8012d6c6999,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43844,47918fe2-9b95-417c-98c6-f8012d6c6999,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43845,47918fe2-9b95-417c-98c6-f8012d6c6999,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43846,1c002868-6e6f-482e-a0f0-e9c5e73ad406,LIST_ACCOUNTS,hbciListAccounts,false -43847,1c002868-6e6f-482e-a0f0-e9c5e73ad406,LIST_TRANSACTIONS,hbciListTransactions,false -43848,1c002868-6e6f-482e-a0f0-e9c5e73ad406,AUTHORIZATION,,false -43849,1c002868-6e6f-482e-a0f0-e9c5e73ad406,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43850,1c002868-6e6f-482e-a0f0-e9c5e73ad406,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43851,1c002868-6e6f-482e-a0f0-e9c5e73ad406,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43846,16b7b14c-50ca-46f8-b7a6-2a4bbc9b214d,LIST_ACCOUNTS,hbciListAccounts,false +43847,16b7b14c-50ca-46f8-b7a6-2a4bbc9b214d,LIST_TRANSACTIONS,hbciListTransactions,false +43848,16b7b14c-50ca-46f8-b7a6-2a4bbc9b214d,AUTHORIZATION,,false +43849,16b7b14c-50ca-46f8-b7a6-2a4bbc9b214d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43850,16b7b14c-50ca-46f8-b7a6-2a4bbc9b214d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43851,16b7b14c-50ca-46f8-b7a6-2a4bbc9b214d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43852,49dca30b-acb2-4569-a458-a0eccbcbb133,LIST_ACCOUNTS,xs2aListAccounts,true -43853,49dca30b-acb2-4569-a458-a0eccbcbb133,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43853,49dca30b-acb2-4569-a458-a0eccbcbb133,LIST_TRANSACTIONS,xs2aListTransactions,true 43854,49dca30b-acb2-4569-a458-a0eccbcbb133,AUTHORIZATION,,true 43855,49dca30b-acb2-4569-a458-a0eccbcbb133,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43856,49dca30b-acb2-4569-a458-a0eccbcbb133,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43857,49dca30b-acb2-4569-a458-a0eccbcbb133,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43858,c0cdd0b1-c466-401e-8a81-81e93e18fe74,LIST_ACCOUNTS,hbciListAccounts,false -43859,c0cdd0b1-c466-401e-8a81-81e93e18fe74,LIST_TRANSACTIONS,hbciListTransactions,false -43860,c0cdd0b1-c466-401e-8a81-81e93e18fe74,AUTHORIZATION,,false -43861,c0cdd0b1-c466-401e-8a81-81e93e18fe74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43862,c0cdd0b1-c466-401e-8a81-81e93e18fe74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43863,c0cdd0b1-c466-401e-8a81-81e93e18fe74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43858,a29f2219-c44a-4ba9-9da0-27f7bf01cd38,LIST_ACCOUNTS,hbciListAccounts,false +43859,a29f2219-c44a-4ba9-9da0-27f7bf01cd38,LIST_TRANSACTIONS,hbciListTransactions,false +43860,a29f2219-c44a-4ba9-9da0-27f7bf01cd38,AUTHORIZATION,,false +43861,a29f2219-c44a-4ba9-9da0-27f7bf01cd38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43862,a29f2219-c44a-4ba9-9da0-27f7bf01cd38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43863,a29f2219-c44a-4ba9-9da0-27f7bf01cd38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43864,6d4db614-001e-44fd-8b68-5a450b154a1f,LIST_ACCOUNTS,xs2aListAccounts,true -43865,6d4db614-001e-44fd-8b68-5a450b154a1f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43865,6d4db614-001e-44fd-8b68-5a450b154a1f,LIST_TRANSACTIONS,xs2aListTransactions,true 43866,6d4db614-001e-44fd-8b68-5a450b154a1f,AUTHORIZATION,,true 43867,6d4db614-001e-44fd-8b68-5a450b154a1f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43868,6d4db614-001e-44fd-8b68-5a450b154a1f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43869,6d4db614-001e-44fd-8b68-5a450b154a1f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43870,129dbe94-0d2f-45e2-8f39-84ac072771ee,LIST_ACCOUNTS,hbciListAccounts,false -43871,129dbe94-0d2f-45e2-8f39-84ac072771ee,LIST_TRANSACTIONS,hbciListTransactions,false -43872,129dbe94-0d2f-45e2-8f39-84ac072771ee,AUTHORIZATION,,false -43873,129dbe94-0d2f-45e2-8f39-84ac072771ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43874,129dbe94-0d2f-45e2-8f39-84ac072771ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43875,129dbe94-0d2f-45e2-8f39-84ac072771ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43870,678b6adb-d3df-4ce1-8384-0c6c6056cab1,LIST_ACCOUNTS,hbciListAccounts,false +43871,678b6adb-d3df-4ce1-8384-0c6c6056cab1,LIST_TRANSACTIONS,hbciListTransactions,false +43872,678b6adb-d3df-4ce1-8384-0c6c6056cab1,AUTHORIZATION,,false +43873,678b6adb-d3df-4ce1-8384-0c6c6056cab1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43874,678b6adb-d3df-4ce1-8384-0c6c6056cab1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43875,678b6adb-d3df-4ce1-8384-0c6c6056cab1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43876,8c7394bb-0032-4be7-8919-f8dbf56477ff,LIST_ACCOUNTS,xs2aListAccounts,true -43877,8c7394bb-0032-4be7-8919-f8dbf56477ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43877,8c7394bb-0032-4be7-8919-f8dbf56477ff,LIST_TRANSACTIONS,xs2aListTransactions,true 43878,8c7394bb-0032-4be7-8919-f8dbf56477ff,AUTHORIZATION,,true 43879,8c7394bb-0032-4be7-8919-f8dbf56477ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43880,8c7394bb-0032-4be7-8919-f8dbf56477ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43881,8c7394bb-0032-4be7-8919-f8dbf56477ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43882,6d9ac12c-fb91-4e77-ab62-c2d38845a0ea,LIST_ACCOUNTS,hbciListAccounts,false -43883,6d9ac12c-fb91-4e77-ab62-c2d38845a0ea,LIST_TRANSACTIONS,hbciListTransactions,false -43884,6d9ac12c-fb91-4e77-ab62-c2d38845a0ea,AUTHORIZATION,,false -43885,6d9ac12c-fb91-4e77-ab62-c2d38845a0ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43886,6d9ac12c-fb91-4e77-ab62-c2d38845a0ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43887,6d9ac12c-fb91-4e77-ab62-c2d38845a0ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43882,28262c39-e78b-4fa9-a0dc-d9c0863c893d,LIST_ACCOUNTS,hbciListAccounts,false +43883,28262c39-e78b-4fa9-a0dc-d9c0863c893d,LIST_TRANSACTIONS,hbciListTransactions,false +43884,28262c39-e78b-4fa9-a0dc-d9c0863c893d,AUTHORIZATION,,false +43885,28262c39-e78b-4fa9-a0dc-d9c0863c893d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43886,28262c39-e78b-4fa9-a0dc-d9c0863c893d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43887,28262c39-e78b-4fa9-a0dc-d9c0863c893d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43888,88292ae0-ef59-4d51-af33-3afc5ae0d00f,LIST_ACCOUNTS,xs2aListAccounts,true -43889,88292ae0-ef59-4d51-af33-3afc5ae0d00f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43889,88292ae0-ef59-4d51-af33-3afc5ae0d00f,LIST_TRANSACTIONS,xs2aListTransactions,true 43890,88292ae0-ef59-4d51-af33-3afc5ae0d00f,AUTHORIZATION,,true 43891,88292ae0-ef59-4d51-af33-3afc5ae0d00f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43892,88292ae0-ef59-4d51-af33-3afc5ae0d00f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43893,88292ae0-ef59-4d51-af33-3afc5ae0d00f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43894,b1a8426d-cb19-4723-b65b-5a8520685399,LIST_ACCOUNTS,hbciListAccounts,false -43895,b1a8426d-cb19-4723-b65b-5a8520685399,LIST_TRANSACTIONS,hbciListTransactions,false -43896,b1a8426d-cb19-4723-b65b-5a8520685399,AUTHORIZATION,,false -43897,b1a8426d-cb19-4723-b65b-5a8520685399,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43898,b1a8426d-cb19-4723-b65b-5a8520685399,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43899,b1a8426d-cb19-4723-b65b-5a8520685399,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43894,cd233963-21a3-4fd9-8aa6-cef2978913df,LIST_ACCOUNTS,hbciListAccounts,false +43895,cd233963-21a3-4fd9-8aa6-cef2978913df,LIST_TRANSACTIONS,hbciListTransactions,false +43896,cd233963-21a3-4fd9-8aa6-cef2978913df,AUTHORIZATION,,false +43897,cd233963-21a3-4fd9-8aa6-cef2978913df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43898,cd233963-21a3-4fd9-8aa6-cef2978913df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43899,cd233963-21a3-4fd9-8aa6-cef2978913df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43900,b1e28596-71b4-43f9-a11f-222e6052e222,LIST_ACCOUNTS,xs2aListAccounts,true -43901,b1e28596-71b4-43f9-a11f-222e6052e222,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43901,b1e28596-71b4-43f9-a11f-222e6052e222,LIST_TRANSACTIONS,xs2aListTransactions,true 43902,b1e28596-71b4-43f9-a11f-222e6052e222,AUTHORIZATION,,true 43903,b1e28596-71b4-43f9-a11f-222e6052e222,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43904,b1e28596-71b4-43f9-a11f-222e6052e222,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43905,b1e28596-71b4-43f9-a11f-222e6052e222,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43906,e09af5c6-0981-4f4e-a676-901a7412222f,LIST_ACCOUNTS,hbciListAccounts,false -43907,e09af5c6-0981-4f4e-a676-901a7412222f,LIST_TRANSACTIONS,hbciListTransactions,false -43908,e09af5c6-0981-4f4e-a676-901a7412222f,AUTHORIZATION,,false -43909,e09af5c6-0981-4f4e-a676-901a7412222f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43910,e09af5c6-0981-4f4e-a676-901a7412222f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43911,e09af5c6-0981-4f4e-a676-901a7412222f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43906,69006e90-6695-45c3-a8eb-59612478b6a8,LIST_ACCOUNTS,hbciListAccounts,false +43907,69006e90-6695-45c3-a8eb-59612478b6a8,LIST_TRANSACTIONS,hbciListTransactions,false +43908,69006e90-6695-45c3-a8eb-59612478b6a8,AUTHORIZATION,,false +43909,69006e90-6695-45c3-a8eb-59612478b6a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43910,69006e90-6695-45c3-a8eb-59612478b6a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43911,69006e90-6695-45c3-a8eb-59612478b6a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43912,4f7367f7-a78d-4ec4-ae3c-29976eff9622,LIST_ACCOUNTS,xs2aListAccounts,true -43913,4f7367f7-a78d-4ec4-ae3c-29976eff9622,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43913,4f7367f7-a78d-4ec4-ae3c-29976eff9622,LIST_TRANSACTIONS,xs2aListTransactions,true 43914,4f7367f7-a78d-4ec4-ae3c-29976eff9622,AUTHORIZATION,,true 43915,4f7367f7-a78d-4ec4-ae3c-29976eff9622,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43916,4f7367f7-a78d-4ec4-ae3c-29976eff9622,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43917,4f7367f7-a78d-4ec4-ae3c-29976eff9622,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43918,7e54d6e5-3e94-44be-a1da-d9d389ea36ef,LIST_ACCOUNTS,hbciListAccounts,false -43919,7e54d6e5-3e94-44be-a1da-d9d389ea36ef,LIST_TRANSACTIONS,hbciListTransactions,false -43920,7e54d6e5-3e94-44be-a1da-d9d389ea36ef,AUTHORIZATION,,false -43921,7e54d6e5-3e94-44be-a1da-d9d389ea36ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43922,7e54d6e5-3e94-44be-a1da-d9d389ea36ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43923,7e54d6e5-3e94-44be-a1da-d9d389ea36ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43918,c72f440f-56eb-4ef3-9ecc-169ce07c2567,LIST_ACCOUNTS,hbciListAccounts,false +43919,c72f440f-56eb-4ef3-9ecc-169ce07c2567,LIST_TRANSACTIONS,hbciListTransactions,false +43920,c72f440f-56eb-4ef3-9ecc-169ce07c2567,AUTHORIZATION,,false +43921,c72f440f-56eb-4ef3-9ecc-169ce07c2567,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43922,c72f440f-56eb-4ef3-9ecc-169ce07c2567,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43923,c72f440f-56eb-4ef3-9ecc-169ce07c2567,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43924,b0d1f4b3-7e3c-46ab-8a77-6e2009d435dc,LIST_ACCOUNTS,xs2aListAccounts,true -43925,b0d1f4b3-7e3c-46ab-8a77-6e2009d435dc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43925,b0d1f4b3-7e3c-46ab-8a77-6e2009d435dc,LIST_TRANSACTIONS,xs2aListTransactions,true 43926,b0d1f4b3-7e3c-46ab-8a77-6e2009d435dc,AUTHORIZATION,,true 43927,b0d1f4b3-7e3c-46ab-8a77-6e2009d435dc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43928,b0d1f4b3-7e3c-46ab-8a77-6e2009d435dc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43929,b0d1f4b3-7e3c-46ab-8a77-6e2009d435dc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43930,d0d69efd-796e-415f-8279-258a80010d7d,LIST_ACCOUNTS,hbciListAccounts,false -43931,d0d69efd-796e-415f-8279-258a80010d7d,LIST_TRANSACTIONS,hbciListTransactions,false -43932,d0d69efd-796e-415f-8279-258a80010d7d,AUTHORIZATION,,false -43933,d0d69efd-796e-415f-8279-258a80010d7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43934,d0d69efd-796e-415f-8279-258a80010d7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43935,d0d69efd-796e-415f-8279-258a80010d7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43930,50617fa3-5af5-4854-ad83-7a5bde4c5571,LIST_ACCOUNTS,hbciListAccounts,false +43931,50617fa3-5af5-4854-ad83-7a5bde4c5571,LIST_TRANSACTIONS,hbciListTransactions,false +43932,50617fa3-5af5-4854-ad83-7a5bde4c5571,AUTHORIZATION,,false +43933,50617fa3-5af5-4854-ad83-7a5bde4c5571,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43934,50617fa3-5af5-4854-ad83-7a5bde4c5571,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43935,50617fa3-5af5-4854-ad83-7a5bde4c5571,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43936,5c84effa-c24b-4f3a-b61a-6a38db193c24,LIST_ACCOUNTS,xs2aListAccounts,true -43937,5c84effa-c24b-4f3a-b61a-6a38db193c24,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43937,5c84effa-c24b-4f3a-b61a-6a38db193c24,LIST_TRANSACTIONS,xs2aListTransactions,true 43938,5c84effa-c24b-4f3a-b61a-6a38db193c24,AUTHORIZATION,,true 43939,5c84effa-c24b-4f3a-b61a-6a38db193c24,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43940,5c84effa-c24b-4f3a-b61a-6a38db193c24,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43941,5c84effa-c24b-4f3a-b61a-6a38db193c24,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43942,44d80093-6aa6-4ee2-9697-d06f4518112b,LIST_ACCOUNTS,hbciListAccounts,false -43943,44d80093-6aa6-4ee2-9697-d06f4518112b,LIST_TRANSACTIONS,hbciListTransactions,false -43944,44d80093-6aa6-4ee2-9697-d06f4518112b,AUTHORIZATION,,false -43945,44d80093-6aa6-4ee2-9697-d06f4518112b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43946,44d80093-6aa6-4ee2-9697-d06f4518112b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43947,44d80093-6aa6-4ee2-9697-d06f4518112b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43942,48667f3f-2e05-4d54-b09c-4a8bead9050d,LIST_ACCOUNTS,hbciListAccounts,false +43943,48667f3f-2e05-4d54-b09c-4a8bead9050d,LIST_TRANSACTIONS,hbciListTransactions,false +43944,48667f3f-2e05-4d54-b09c-4a8bead9050d,AUTHORIZATION,,false +43945,48667f3f-2e05-4d54-b09c-4a8bead9050d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43946,48667f3f-2e05-4d54-b09c-4a8bead9050d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43947,48667f3f-2e05-4d54-b09c-4a8bead9050d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43948,fe363896-7618-43e7-9027-96b4b3601d20,LIST_ACCOUNTS,xs2aListAccounts,true -43949,fe363896-7618-43e7-9027-96b4b3601d20,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43949,fe363896-7618-43e7-9027-96b4b3601d20,LIST_TRANSACTIONS,xs2aListTransactions,true 43950,fe363896-7618-43e7-9027-96b4b3601d20,AUTHORIZATION,,true 43951,fe363896-7618-43e7-9027-96b4b3601d20,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43952,fe363896-7618-43e7-9027-96b4b3601d20,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43953,fe363896-7618-43e7-9027-96b4b3601d20,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43954,74845839-e51c-49d7-8e96-604ee7c7b2da,LIST_ACCOUNTS,hbciListAccounts,false -43955,74845839-e51c-49d7-8e96-604ee7c7b2da,LIST_TRANSACTIONS,hbciListTransactions,false -43956,74845839-e51c-49d7-8e96-604ee7c7b2da,AUTHORIZATION,,false -43957,74845839-e51c-49d7-8e96-604ee7c7b2da,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43958,74845839-e51c-49d7-8e96-604ee7c7b2da,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43959,74845839-e51c-49d7-8e96-604ee7c7b2da,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43954,776460b8-fc5b-4756-acbb-8082942972a8,LIST_ACCOUNTS,hbciListAccounts,false +43955,776460b8-fc5b-4756-acbb-8082942972a8,LIST_TRANSACTIONS,hbciListTransactions,false +43956,776460b8-fc5b-4756-acbb-8082942972a8,AUTHORIZATION,,false +43957,776460b8-fc5b-4756-acbb-8082942972a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43958,776460b8-fc5b-4756-acbb-8082942972a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43959,776460b8-fc5b-4756-acbb-8082942972a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43960,9134aca2-d5b4-40e5-9e63-2b4085605a2d,LIST_ACCOUNTS,xs2aListAccounts,true -43961,9134aca2-d5b4-40e5-9e63-2b4085605a2d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43961,9134aca2-d5b4-40e5-9e63-2b4085605a2d,LIST_TRANSACTIONS,xs2aListTransactions,true 43962,9134aca2-d5b4-40e5-9e63-2b4085605a2d,AUTHORIZATION,,true 43963,9134aca2-d5b4-40e5-9e63-2b4085605a2d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43964,9134aca2-d5b4-40e5-9e63-2b4085605a2d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43965,9134aca2-d5b4-40e5-9e63-2b4085605a2d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43966,2179b3dd-3ec2-464b-b1bd-1048866ad074,LIST_ACCOUNTS,hbciListAccounts,false -43967,2179b3dd-3ec2-464b-b1bd-1048866ad074,LIST_TRANSACTIONS,hbciListTransactions,false -43968,2179b3dd-3ec2-464b-b1bd-1048866ad074,AUTHORIZATION,,false -43969,2179b3dd-3ec2-464b-b1bd-1048866ad074,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43970,2179b3dd-3ec2-464b-b1bd-1048866ad074,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43971,2179b3dd-3ec2-464b-b1bd-1048866ad074,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43966,003b7fc2-3b4c-4ac7-bf67-a3f3fa383b0c,LIST_ACCOUNTS,hbciListAccounts,false +43967,003b7fc2-3b4c-4ac7-bf67-a3f3fa383b0c,LIST_TRANSACTIONS,hbciListTransactions,false +43968,003b7fc2-3b4c-4ac7-bf67-a3f3fa383b0c,AUTHORIZATION,,false +43969,003b7fc2-3b4c-4ac7-bf67-a3f3fa383b0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43970,003b7fc2-3b4c-4ac7-bf67-a3f3fa383b0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43971,003b7fc2-3b4c-4ac7-bf67-a3f3fa383b0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43972,13a8850a-a5c1-445a-a62f-1aba4651c2a8,LIST_ACCOUNTS,xs2aListAccounts,true -43973,13a8850a-a5c1-445a-a62f-1aba4651c2a8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43973,13a8850a-a5c1-445a-a62f-1aba4651c2a8,LIST_TRANSACTIONS,xs2aListTransactions,true 43974,13a8850a-a5c1-445a-a62f-1aba4651c2a8,AUTHORIZATION,,true 43975,13a8850a-a5c1-445a-a62f-1aba4651c2a8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43976,13a8850a-a5c1-445a-a62f-1aba4651c2a8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43977,13a8850a-a5c1-445a-a62f-1aba4651c2a8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43978,448393ac-8855-4cb6-bb02-30d15d34f622,LIST_ACCOUNTS,hbciListAccounts,false -43979,448393ac-8855-4cb6-bb02-30d15d34f622,LIST_TRANSACTIONS,hbciListTransactions,false -43980,448393ac-8855-4cb6-bb02-30d15d34f622,AUTHORIZATION,,false -43981,448393ac-8855-4cb6-bb02-30d15d34f622,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43982,448393ac-8855-4cb6-bb02-30d15d34f622,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43983,448393ac-8855-4cb6-bb02-30d15d34f622,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43978,c2266cb8-0656-42fb-80d6-a599cf12acdb,LIST_ACCOUNTS,hbciListAccounts,false +43979,c2266cb8-0656-42fb-80d6-a599cf12acdb,LIST_TRANSACTIONS,hbciListTransactions,false +43980,c2266cb8-0656-42fb-80d6-a599cf12acdb,AUTHORIZATION,,false +43981,c2266cb8-0656-42fb-80d6-a599cf12acdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43982,c2266cb8-0656-42fb-80d6-a599cf12acdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43983,c2266cb8-0656-42fb-80d6-a599cf12acdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43984,03ff8fd0-790e-488d-9b67-22afae2c109b,LIST_ACCOUNTS,xs2aListAccounts,true -43985,03ff8fd0-790e-488d-9b67-22afae2c109b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43985,03ff8fd0-790e-488d-9b67-22afae2c109b,LIST_TRANSACTIONS,xs2aListTransactions,true 43986,03ff8fd0-790e-488d-9b67-22afae2c109b,AUTHORIZATION,,true 43987,03ff8fd0-790e-488d-9b67-22afae2c109b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 43988,03ff8fd0-790e-488d-9b67-22afae2c109b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 43989,03ff8fd0-790e-488d-9b67-22afae2c109b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -43990,6f67fb8f-e9c8-486d-857b-c6f7542b5c38,LIST_ACCOUNTS,hbciListAccounts,false -43991,6f67fb8f-e9c8-486d-857b-c6f7542b5c38,LIST_TRANSACTIONS,hbciListTransactions,false -43992,6f67fb8f-e9c8-486d-857b-c6f7542b5c38,AUTHORIZATION,,false -43993,6f67fb8f-e9c8-486d-857b-c6f7542b5c38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -43994,6f67fb8f-e9c8-486d-857b-c6f7542b5c38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -43995,6f67fb8f-e9c8-486d-857b-c6f7542b5c38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +43990,75419512-14e1-4d8b-8cdc-88f7cb3ddbcf,LIST_ACCOUNTS,hbciListAccounts,false +43991,75419512-14e1-4d8b-8cdc-88f7cb3ddbcf,LIST_TRANSACTIONS,hbciListTransactions,false +43992,75419512-14e1-4d8b-8cdc-88f7cb3ddbcf,AUTHORIZATION,,false +43993,75419512-14e1-4d8b-8cdc-88f7cb3ddbcf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +43994,75419512-14e1-4d8b-8cdc-88f7cb3ddbcf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +43995,75419512-14e1-4d8b-8cdc-88f7cb3ddbcf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 43996,3dede553-d643-4630-aba5-18a2fa3545f7,LIST_ACCOUNTS,xs2aListAccounts,true -43997,3dede553-d643-4630-aba5-18a2fa3545f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +43997,3dede553-d643-4630-aba5-18a2fa3545f7,LIST_TRANSACTIONS,xs2aListTransactions,true 43998,3dede553-d643-4630-aba5-18a2fa3545f7,AUTHORIZATION,,true 43999,3dede553-d643-4630-aba5-18a2fa3545f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44000,3dede553-d643-4630-aba5-18a2fa3545f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44001,3dede553-d643-4630-aba5-18a2fa3545f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44002,ba58da08-f7c2-418d-bea2-a54464516a80,LIST_ACCOUNTS,hbciListAccounts,false -44003,ba58da08-f7c2-418d-bea2-a54464516a80,LIST_TRANSACTIONS,hbciListTransactions,false -44004,ba58da08-f7c2-418d-bea2-a54464516a80,AUTHORIZATION,,false -44005,ba58da08-f7c2-418d-bea2-a54464516a80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44006,ba58da08-f7c2-418d-bea2-a54464516a80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44007,ba58da08-f7c2-418d-bea2-a54464516a80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44002,a76116cf-a804-4eb4-a0d4-a090e1a525e0,LIST_ACCOUNTS,hbciListAccounts,false +44003,a76116cf-a804-4eb4-a0d4-a090e1a525e0,LIST_TRANSACTIONS,hbciListTransactions,false +44004,a76116cf-a804-4eb4-a0d4-a090e1a525e0,AUTHORIZATION,,false +44005,a76116cf-a804-4eb4-a0d4-a090e1a525e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44006,a76116cf-a804-4eb4-a0d4-a090e1a525e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44007,a76116cf-a804-4eb4-a0d4-a090e1a525e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44008,cd2705c9-f7a5-45c7-a8f5-69125942a126,LIST_ACCOUNTS,xs2aListAccounts,true -44009,cd2705c9-f7a5-45c7-a8f5-69125942a126,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44009,cd2705c9-f7a5-45c7-a8f5-69125942a126,LIST_TRANSACTIONS,xs2aListTransactions,true 44010,cd2705c9-f7a5-45c7-a8f5-69125942a126,AUTHORIZATION,,true 44011,cd2705c9-f7a5-45c7-a8f5-69125942a126,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44012,cd2705c9-f7a5-45c7-a8f5-69125942a126,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44013,cd2705c9-f7a5-45c7-a8f5-69125942a126,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44014,289788e0-ccb7-43a3-9acb-1b8139dbc3b7,LIST_ACCOUNTS,hbciListAccounts,false -44015,289788e0-ccb7-43a3-9acb-1b8139dbc3b7,LIST_TRANSACTIONS,hbciListTransactions,false -44016,289788e0-ccb7-43a3-9acb-1b8139dbc3b7,AUTHORIZATION,,false -44017,289788e0-ccb7-43a3-9acb-1b8139dbc3b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44018,289788e0-ccb7-43a3-9acb-1b8139dbc3b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44019,289788e0-ccb7-43a3-9acb-1b8139dbc3b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44014,0a6da57b-7546-4fb7-bc2f-3fe6845be6d6,LIST_ACCOUNTS,hbciListAccounts,false +44015,0a6da57b-7546-4fb7-bc2f-3fe6845be6d6,LIST_TRANSACTIONS,hbciListTransactions,false +44016,0a6da57b-7546-4fb7-bc2f-3fe6845be6d6,AUTHORIZATION,,false +44017,0a6da57b-7546-4fb7-bc2f-3fe6845be6d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44018,0a6da57b-7546-4fb7-bc2f-3fe6845be6d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44019,0a6da57b-7546-4fb7-bc2f-3fe6845be6d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44020,6efbab28-8a57-49cd-9cec-828882b6c074,LIST_ACCOUNTS,xs2aListAccounts,true -44021,6efbab28-8a57-49cd-9cec-828882b6c074,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44021,6efbab28-8a57-49cd-9cec-828882b6c074,LIST_TRANSACTIONS,xs2aListTransactions,true 44022,6efbab28-8a57-49cd-9cec-828882b6c074,AUTHORIZATION,,true 44023,6efbab28-8a57-49cd-9cec-828882b6c074,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44024,6efbab28-8a57-49cd-9cec-828882b6c074,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44025,6efbab28-8a57-49cd-9cec-828882b6c074,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44026,2a0ed1cd-71a5-43e4-9f60-68c678bf95f1,LIST_ACCOUNTS,hbciListAccounts,false -44027,2a0ed1cd-71a5-43e4-9f60-68c678bf95f1,LIST_TRANSACTIONS,hbciListTransactions,false -44028,2a0ed1cd-71a5-43e4-9f60-68c678bf95f1,AUTHORIZATION,,false -44029,2a0ed1cd-71a5-43e4-9f60-68c678bf95f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44030,2a0ed1cd-71a5-43e4-9f60-68c678bf95f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44031,2a0ed1cd-71a5-43e4-9f60-68c678bf95f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44026,a9f410a5-5ec6-451f-88e1-9e2dc68b7e27,LIST_ACCOUNTS,hbciListAccounts,false +44027,a9f410a5-5ec6-451f-88e1-9e2dc68b7e27,LIST_TRANSACTIONS,hbciListTransactions,false +44028,a9f410a5-5ec6-451f-88e1-9e2dc68b7e27,AUTHORIZATION,,false +44029,a9f410a5-5ec6-451f-88e1-9e2dc68b7e27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44030,a9f410a5-5ec6-451f-88e1-9e2dc68b7e27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44031,a9f410a5-5ec6-451f-88e1-9e2dc68b7e27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44032,d8ed5b76-12b0-4e4b-b645-63db6fe95420,LIST_ACCOUNTS,xs2aListAccounts,true -44033,d8ed5b76-12b0-4e4b-b645-63db6fe95420,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44033,d8ed5b76-12b0-4e4b-b645-63db6fe95420,LIST_TRANSACTIONS,xs2aListTransactions,true 44034,d8ed5b76-12b0-4e4b-b645-63db6fe95420,AUTHORIZATION,,true 44035,d8ed5b76-12b0-4e4b-b645-63db6fe95420,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44036,d8ed5b76-12b0-4e4b-b645-63db6fe95420,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44037,d8ed5b76-12b0-4e4b-b645-63db6fe95420,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44038,9fd741ed-9d86-49b8-9590-98f124c87868,LIST_ACCOUNTS,hbciListAccounts,false -44039,9fd741ed-9d86-49b8-9590-98f124c87868,LIST_TRANSACTIONS,hbciListTransactions,false -44040,9fd741ed-9d86-49b8-9590-98f124c87868,AUTHORIZATION,,false -44041,9fd741ed-9d86-49b8-9590-98f124c87868,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44042,9fd741ed-9d86-49b8-9590-98f124c87868,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44043,9fd741ed-9d86-49b8-9590-98f124c87868,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44038,10f29714-821f-4ed5-94ce-7462c05d82e1,LIST_ACCOUNTS,hbciListAccounts,false +44039,10f29714-821f-4ed5-94ce-7462c05d82e1,LIST_TRANSACTIONS,hbciListTransactions,false +44040,10f29714-821f-4ed5-94ce-7462c05d82e1,AUTHORIZATION,,false +44041,10f29714-821f-4ed5-94ce-7462c05d82e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44042,10f29714-821f-4ed5-94ce-7462c05d82e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44043,10f29714-821f-4ed5-94ce-7462c05d82e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44044,77254712-1f21-4154-85fc-1a47243b1859,LIST_ACCOUNTS,xs2aListAccounts,true -44045,77254712-1f21-4154-85fc-1a47243b1859,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44045,77254712-1f21-4154-85fc-1a47243b1859,LIST_TRANSACTIONS,xs2aListTransactions,true 44046,77254712-1f21-4154-85fc-1a47243b1859,AUTHORIZATION,,true 44047,77254712-1f21-4154-85fc-1a47243b1859,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44048,77254712-1f21-4154-85fc-1a47243b1859,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44049,77254712-1f21-4154-85fc-1a47243b1859,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44050,7fa378cf-cda8-4b19-8044-9faab1dc8f1a,LIST_ACCOUNTS,hbciListAccounts,false -44051,7fa378cf-cda8-4b19-8044-9faab1dc8f1a,LIST_TRANSACTIONS,hbciListTransactions,false -44052,7fa378cf-cda8-4b19-8044-9faab1dc8f1a,AUTHORIZATION,,false -44053,7fa378cf-cda8-4b19-8044-9faab1dc8f1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44054,7fa378cf-cda8-4b19-8044-9faab1dc8f1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44055,7fa378cf-cda8-4b19-8044-9faab1dc8f1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44050,daedf771-d00d-42c3-b3c4-bcffa1fcc666,LIST_ACCOUNTS,hbciListAccounts,false +44051,daedf771-d00d-42c3-b3c4-bcffa1fcc666,LIST_TRANSACTIONS,hbciListTransactions,false +44052,daedf771-d00d-42c3-b3c4-bcffa1fcc666,AUTHORIZATION,,false +44053,daedf771-d00d-42c3-b3c4-bcffa1fcc666,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44054,daedf771-d00d-42c3-b3c4-bcffa1fcc666,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44055,daedf771-d00d-42c3-b3c4-bcffa1fcc666,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44056,00a894e9-cdec-4d32-83b0-49e3e85166b3,LIST_ACCOUNTS,xs2aListAccounts,true -44057,00a894e9-cdec-4d32-83b0-49e3e85166b3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44057,00a894e9-cdec-4d32-83b0-49e3e85166b3,LIST_TRANSACTIONS,xs2aListTransactions,true 44058,00a894e9-cdec-4d32-83b0-49e3e85166b3,AUTHORIZATION,,true 44059,00a894e9-cdec-4d32-83b0-49e3e85166b3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44060,00a894e9-cdec-4d32-83b0-49e3e85166b3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44061,00a894e9-cdec-4d32-83b0-49e3e85166b3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44062,43e15946-354d-4233-83cf-bb5c3e7d098f,LIST_ACCOUNTS,hbciListAccounts,false -44063,43e15946-354d-4233-83cf-bb5c3e7d098f,LIST_TRANSACTIONS,hbciListTransactions,false -44064,43e15946-354d-4233-83cf-bb5c3e7d098f,AUTHORIZATION,,false -44065,43e15946-354d-4233-83cf-bb5c3e7d098f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44066,43e15946-354d-4233-83cf-bb5c3e7d098f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44067,43e15946-354d-4233-83cf-bb5c3e7d098f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44062,3f9592bf-4ff6-4474-ad18-1a4290d6537a,LIST_ACCOUNTS,hbciListAccounts,false +44063,3f9592bf-4ff6-4474-ad18-1a4290d6537a,LIST_TRANSACTIONS,hbciListTransactions,false +44064,3f9592bf-4ff6-4474-ad18-1a4290d6537a,AUTHORIZATION,,false +44065,3f9592bf-4ff6-4474-ad18-1a4290d6537a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44066,3f9592bf-4ff6-4474-ad18-1a4290d6537a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44067,3f9592bf-4ff6-4474-ad18-1a4290d6537a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44068,c4abfad0-c78e-4a7f-ab4c-d1d323013c84,LIST_ACCOUNTS,xs2aListAccounts,true -44069,c4abfad0-c78e-4a7f-ab4c-d1d323013c84,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44069,c4abfad0-c78e-4a7f-ab4c-d1d323013c84,LIST_TRANSACTIONS,xs2aListTransactions,true 44070,c4abfad0-c78e-4a7f-ab4c-d1d323013c84,AUTHORIZATION,,true 44071,c4abfad0-c78e-4a7f-ab4c-d1d323013c84,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44072,c4abfad0-c78e-4a7f-ab4c-d1d323013c84,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44073,c4abfad0-c78e-4a7f-ab4c-d1d323013c84,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44074,ff58c973-85ba-4004-b4f0-5ea622b9e555,LIST_ACCOUNTS,hbciListAccounts,false -44075,ff58c973-85ba-4004-b4f0-5ea622b9e555,LIST_TRANSACTIONS,hbciListTransactions,false -44076,ff58c973-85ba-4004-b4f0-5ea622b9e555,AUTHORIZATION,,false -44077,ff58c973-85ba-4004-b4f0-5ea622b9e555,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44078,ff58c973-85ba-4004-b4f0-5ea622b9e555,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44079,ff58c973-85ba-4004-b4f0-5ea622b9e555,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44074,3eb45ae8-a573-486b-b75a-a212104abc92,LIST_ACCOUNTS,hbciListAccounts,false +44075,3eb45ae8-a573-486b-b75a-a212104abc92,LIST_TRANSACTIONS,hbciListTransactions,false +44076,3eb45ae8-a573-486b-b75a-a212104abc92,AUTHORIZATION,,false +44077,3eb45ae8-a573-486b-b75a-a212104abc92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44078,3eb45ae8-a573-486b-b75a-a212104abc92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44079,3eb45ae8-a573-486b-b75a-a212104abc92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44080,deb9f67a-53be-4ced-bca2-6e3e5152c28f,LIST_ACCOUNTS,xs2aListAccounts,true -44081,deb9f67a-53be-4ced-bca2-6e3e5152c28f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44081,deb9f67a-53be-4ced-bca2-6e3e5152c28f,LIST_TRANSACTIONS,xs2aListTransactions,true 44082,deb9f67a-53be-4ced-bca2-6e3e5152c28f,AUTHORIZATION,,true 44083,deb9f67a-53be-4ced-bca2-6e3e5152c28f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44084,deb9f67a-53be-4ced-bca2-6e3e5152c28f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44085,deb9f67a-53be-4ced-bca2-6e3e5152c28f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44086,6367d7f1-7d05-4ccc-8764-37c5f766910a,LIST_ACCOUNTS,hbciListAccounts,false -44087,6367d7f1-7d05-4ccc-8764-37c5f766910a,LIST_TRANSACTIONS,hbciListTransactions,false -44088,6367d7f1-7d05-4ccc-8764-37c5f766910a,AUTHORIZATION,,false -44089,6367d7f1-7d05-4ccc-8764-37c5f766910a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44090,6367d7f1-7d05-4ccc-8764-37c5f766910a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44091,6367d7f1-7d05-4ccc-8764-37c5f766910a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44086,56bce42d-b143-465f-b268-3cbb320ea568,LIST_ACCOUNTS,hbciListAccounts,false +44087,56bce42d-b143-465f-b268-3cbb320ea568,LIST_TRANSACTIONS,hbciListTransactions,false +44088,56bce42d-b143-465f-b268-3cbb320ea568,AUTHORIZATION,,false +44089,56bce42d-b143-465f-b268-3cbb320ea568,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44090,56bce42d-b143-465f-b268-3cbb320ea568,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44091,56bce42d-b143-465f-b268-3cbb320ea568,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44092,e70e547c-c55b-444d-a701-ce77381304c9,LIST_ACCOUNTS,xs2aListAccounts,true -44093,e70e547c-c55b-444d-a701-ce77381304c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44093,e70e547c-c55b-444d-a701-ce77381304c9,LIST_TRANSACTIONS,xs2aListTransactions,true 44094,e70e547c-c55b-444d-a701-ce77381304c9,AUTHORIZATION,,true 44095,e70e547c-c55b-444d-a701-ce77381304c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44096,e70e547c-c55b-444d-a701-ce77381304c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44097,e70e547c-c55b-444d-a701-ce77381304c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44098,40588c8c-d708-4c8f-936e-d7f42caa1e31,LIST_ACCOUNTS,hbciListAccounts,false -44099,40588c8c-d708-4c8f-936e-d7f42caa1e31,LIST_TRANSACTIONS,hbciListTransactions,false -44100,40588c8c-d708-4c8f-936e-d7f42caa1e31,AUTHORIZATION,,false -44101,40588c8c-d708-4c8f-936e-d7f42caa1e31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44102,40588c8c-d708-4c8f-936e-d7f42caa1e31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44103,40588c8c-d708-4c8f-936e-d7f42caa1e31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44098,3c4014c6-ebb5-462e-806b-31980412b3b2,LIST_ACCOUNTS,hbciListAccounts,false +44099,3c4014c6-ebb5-462e-806b-31980412b3b2,LIST_TRANSACTIONS,hbciListTransactions,false +44100,3c4014c6-ebb5-462e-806b-31980412b3b2,AUTHORIZATION,,false +44101,3c4014c6-ebb5-462e-806b-31980412b3b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44102,3c4014c6-ebb5-462e-806b-31980412b3b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44103,3c4014c6-ebb5-462e-806b-31980412b3b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44104,35088fcf-218b-43c4-b6c6-b9d2dedc296e,LIST_ACCOUNTS,xs2aListAccounts,true -44105,35088fcf-218b-43c4-b6c6-b9d2dedc296e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44105,35088fcf-218b-43c4-b6c6-b9d2dedc296e,LIST_TRANSACTIONS,xs2aListTransactions,true 44106,35088fcf-218b-43c4-b6c6-b9d2dedc296e,AUTHORIZATION,,true 44107,35088fcf-218b-43c4-b6c6-b9d2dedc296e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44108,35088fcf-218b-43c4-b6c6-b9d2dedc296e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44109,35088fcf-218b-43c4-b6c6-b9d2dedc296e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44110,ea0a0e4b-3fec-45f0-93a4-588312ebe3e5,LIST_ACCOUNTS,hbciListAccounts,false -44111,ea0a0e4b-3fec-45f0-93a4-588312ebe3e5,LIST_TRANSACTIONS,hbciListTransactions,false -44112,ea0a0e4b-3fec-45f0-93a4-588312ebe3e5,AUTHORIZATION,,false -44113,ea0a0e4b-3fec-45f0-93a4-588312ebe3e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44114,ea0a0e4b-3fec-45f0-93a4-588312ebe3e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44115,ea0a0e4b-3fec-45f0-93a4-588312ebe3e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44110,827e7429-3df6-4c49-af5a-4e0ce883e7ff,LIST_ACCOUNTS,hbciListAccounts,false +44111,827e7429-3df6-4c49-af5a-4e0ce883e7ff,LIST_TRANSACTIONS,hbciListTransactions,false +44112,827e7429-3df6-4c49-af5a-4e0ce883e7ff,AUTHORIZATION,,false +44113,827e7429-3df6-4c49-af5a-4e0ce883e7ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44114,827e7429-3df6-4c49-af5a-4e0ce883e7ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44115,827e7429-3df6-4c49-af5a-4e0ce883e7ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44116,38ca948f-db78-46ff-8f10-9a07a0500f90,LIST_ACCOUNTS,xs2aListAccounts,true -44117,38ca948f-db78-46ff-8f10-9a07a0500f90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44117,38ca948f-db78-46ff-8f10-9a07a0500f90,LIST_TRANSACTIONS,xs2aListTransactions,true 44118,38ca948f-db78-46ff-8f10-9a07a0500f90,AUTHORIZATION,,true 44119,38ca948f-db78-46ff-8f10-9a07a0500f90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44120,38ca948f-db78-46ff-8f10-9a07a0500f90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44121,38ca948f-db78-46ff-8f10-9a07a0500f90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44122,f840c7f8-4c9d-4b54-848a-03b7ffe8ffa8,LIST_ACCOUNTS,hbciListAccounts,false -44123,f840c7f8-4c9d-4b54-848a-03b7ffe8ffa8,LIST_TRANSACTIONS,hbciListTransactions,false -44124,f840c7f8-4c9d-4b54-848a-03b7ffe8ffa8,AUTHORIZATION,,false -44125,f840c7f8-4c9d-4b54-848a-03b7ffe8ffa8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44126,f840c7f8-4c9d-4b54-848a-03b7ffe8ffa8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44127,f840c7f8-4c9d-4b54-848a-03b7ffe8ffa8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44122,8318740d-9d38-4726-a63a-1f5b656d9c21,LIST_ACCOUNTS,hbciListAccounts,false +44123,8318740d-9d38-4726-a63a-1f5b656d9c21,LIST_TRANSACTIONS,hbciListTransactions,false +44124,8318740d-9d38-4726-a63a-1f5b656d9c21,AUTHORIZATION,,false +44125,8318740d-9d38-4726-a63a-1f5b656d9c21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44126,8318740d-9d38-4726-a63a-1f5b656d9c21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44127,8318740d-9d38-4726-a63a-1f5b656d9c21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44128,b2022810-6188-4bf7-8923-3d620b2c25d3,LIST_ACCOUNTS,xs2aListAccounts,true -44129,b2022810-6188-4bf7-8923-3d620b2c25d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44129,b2022810-6188-4bf7-8923-3d620b2c25d3,LIST_TRANSACTIONS,xs2aListTransactions,true 44130,b2022810-6188-4bf7-8923-3d620b2c25d3,AUTHORIZATION,,true 44131,b2022810-6188-4bf7-8923-3d620b2c25d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44132,b2022810-6188-4bf7-8923-3d620b2c25d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44133,b2022810-6188-4bf7-8923-3d620b2c25d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44134,c563365b-6491-451d-a777-b8aae3ad9a16,LIST_ACCOUNTS,hbciListAccounts,false -44135,c563365b-6491-451d-a777-b8aae3ad9a16,LIST_TRANSACTIONS,hbciListTransactions,false -44136,c563365b-6491-451d-a777-b8aae3ad9a16,AUTHORIZATION,,false -44137,c563365b-6491-451d-a777-b8aae3ad9a16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44138,c563365b-6491-451d-a777-b8aae3ad9a16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44139,c563365b-6491-451d-a777-b8aae3ad9a16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44134,134fab25-262b-4098-947b-5b4407ea796d,LIST_ACCOUNTS,hbciListAccounts,false +44135,134fab25-262b-4098-947b-5b4407ea796d,LIST_TRANSACTIONS,hbciListTransactions,false +44136,134fab25-262b-4098-947b-5b4407ea796d,AUTHORIZATION,,false +44137,134fab25-262b-4098-947b-5b4407ea796d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44138,134fab25-262b-4098-947b-5b4407ea796d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44139,134fab25-262b-4098-947b-5b4407ea796d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44140,f32bc2cf-e5d2-44bb-90b0-3472cb3df6b7,LIST_ACCOUNTS,xs2aListAccounts,true -44141,f32bc2cf-e5d2-44bb-90b0-3472cb3df6b7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44141,f32bc2cf-e5d2-44bb-90b0-3472cb3df6b7,LIST_TRANSACTIONS,xs2aListTransactions,true 44142,f32bc2cf-e5d2-44bb-90b0-3472cb3df6b7,AUTHORIZATION,,true 44143,f32bc2cf-e5d2-44bb-90b0-3472cb3df6b7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44144,f32bc2cf-e5d2-44bb-90b0-3472cb3df6b7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44145,f32bc2cf-e5d2-44bb-90b0-3472cb3df6b7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44146,336a8051-d417-475e-a1c6-a70333130f2e,LIST_ACCOUNTS,hbciListAccounts,false -44147,336a8051-d417-475e-a1c6-a70333130f2e,LIST_TRANSACTIONS,hbciListTransactions,false -44148,336a8051-d417-475e-a1c6-a70333130f2e,AUTHORIZATION,,false -44149,336a8051-d417-475e-a1c6-a70333130f2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44150,336a8051-d417-475e-a1c6-a70333130f2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44151,336a8051-d417-475e-a1c6-a70333130f2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44146,f86743fd-1417-4e67-9b5e-eaa3977bf4c5,LIST_ACCOUNTS,hbciListAccounts,false +44147,f86743fd-1417-4e67-9b5e-eaa3977bf4c5,LIST_TRANSACTIONS,hbciListTransactions,false +44148,f86743fd-1417-4e67-9b5e-eaa3977bf4c5,AUTHORIZATION,,false +44149,f86743fd-1417-4e67-9b5e-eaa3977bf4c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44150,f86743fd-1417-4e67-9b5e-eaa3977bf4c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44151,f86743fd-1417-4e67-9b5e-eaa3977bf4c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44152,84f46864-cf19-4e18-979a-f3cfba1c03bc,LIST_ACCOUNTS,xs2aListAccounts,true -44153,84f46864-cf19-4e18-979a-f3cfba1c03bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44153,84f46864-cf19-4e18-979a-f3cfba1c03bc,LIST_TRANSACTIONS,xs2aListTransactions,true 44154,84f46864-cf19-4e18-979a-f3cfba1c03bc,AUTHORIZATION,,true 44155,84f46864-cf19-4e18-979a-f3cfba1c03bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44156,84f46864-cf19-4e18-979a-f3cfba1c03bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44157,84f46864-cf19-4e18-979a-f3cfba1c03bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44158,60a887d0-fee8-4523-b642-cf0bf8c116dc,LIST_ACCOUNTS,hbciListAccounts,false -44159,60a887d0-fee8-4523-b642-cf0bf8c116dc,LIST_TRANSACTIONS,hbciListTransactions,false -44160,60a887d0-fee8-4523-b642-cf0bf8c116dc,AUTHORIZATION,,false -44161,60a887d0-fee8-4523-b642-cf0bf8c116dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44162,60a887d0-fee8-4523-b642-cf0bf8c116dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44163,60a887d0-fee8-4523-b642-cf0bf8c116dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44158,c8dbdaa7-347c-4f6b-b6a4-c0d3e8f4c79a,LIST_ACCOUNTS,hbciListAccounts,false +44159,c8dbdaa7-347c-4f6b-b6a4-c0d3e8f4c79a,LIST_TRANSACTIONS,hbciListTransactions,false +44160,c8dbdaa7-347c-4f6b-b6a4-c0d3e8f4c79a,AUTHORIZATION,,false +44161,c8dbdaa7-347c-4f6b-b6a4-c0d3e8f4c79a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44162,c8dbdaa7-347c-4f6b-b6a4-c0d3e8f4c79a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44163,c8dbdaa7-347c-4f6b-b6a4-c0d3e8f4c79a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44164,3a564f05-56ab-4b00-810d-7efe9266db85,LIST_ACCOUNTS,xs2aListAccounts,true -44165,3a564f05-56ab-4b00-810d-7efe9266db85,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44165,3a564f05-56ab-4b00-810d-7efe9266db85,LIST_TRANSACTIONS,xs2aListTransactions,true 44166,3a564f05-56ab-4b00-810d-7efe9266db85,AUTHORIZATION,,true 44167,3a564f05-56ab-4b00-810d-7efe9266db85,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44168,3a564f05-56ab-4b00-810d-7efe9266db85,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44169,3a564f05-56ab-4b00-810d-7efe9266db85,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44170,6d25644e-62fb-43f6-8322-ad0d1af579dd,LIST_ACCOUNTS,hbciListAccounts,false -44171,6d25644e-62fb-43f6-8322-ad0d1af579dd,LIST_TRANSACTIONS,hbciListTransactions,false -44172,6d25644e-62fb-43f6-8322-ad0d1af579dd,AUTHORIZATION,,false -44173,6d25644e-62fb-43f6-8322-ad0d1af579dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44174,6d25644e-62fb-43f6-8322-ad0d1af579dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44175,6d25644e-62fb-43f6-8322-ad0d1af579dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44170,c85c7d3b-be06-4a2c-89c5-526e362c02cd,LIST_ACCOUNTS,hbciListAccounts,false +44171,c85c7d3b-be06-4a2c-89c5-526e362c02cd,LIST_TRANSACTIONS,hbciListTransactions,false +44172,c85c7d3b-be06-4a2c-89c5-526e362c02cd,AUTHORIZATION,,false +44173,c85c7d3b-be06-4a2c-89c5-526e362c02cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44174,c85c7d3b-be06-4a2c-89c5-526e362c02cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44175,c85c7d3b-be06-4a2c-89c5-526e362c02cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44176,1adbc2a4-acd1-4486-8bf9-4e0dba35ea05,LIST_ACCOUNTS,xs2aListAccounts,true -44177,1adbc2a4-acd1-4486-8bf9-4e0dba35ea05,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44177,1adbc2a4-acd1-4486-8bf9-4e0dba35ea05,LIST_TRANSACTIONS,xs2aListTransactions,true 44178,1adbc2a4-acd1-4486-8bf9-4e0dba35ea05,AUTHORIZATION,,true 44179,1adbc2a4-acd1-4486-8bf9-4e0dba35ea05,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44180,1adbc2a4-acd1-4486-8bf9-4e0dba35ea05,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44181,1adbc2a4-acd1-4486-8bf9-4e0dba35ea05,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44182,9f11c6b3-5464-4f6d-94b8-d5ce384b8443,LIST_ACCOUNTS,hbciListAccounts,false -44183,9f11c6b3-5464-4f6d-94b8-d5ce384b8443,LIST_TRANSACTIONS,hbciListTransactions,false -44184,9f11c6b3-5464-4f6d-94b8-d5ce384b8443,AUTHORIZATION,,false -44185,9f11c6b3-5464-4f6d-94b8-d5ce384b8443,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44186,9f11c6b3-5464-4f6d-94b8-d5ce384b8443,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44187,9f11c6b3-5464-4f6d-94b8-d5ce384b8443,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44182,8876cc40-e40b-4128-8308-695b1f471921,LIST_ACCOUNTS,hbciListAccounts,false +44183,8876cc40-e40b-4128-8308-695b1f471921,LIST_TRANSACTIONS,hbciListTransactions,false +44184,8876cc40-e40b-4128-8308-695b1f471921,AUTHORIZATION,,false +44185,8876cc40-e40b-4128-8308-695b1f471921,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44186,8876cc40-e40b-4128-8308-695b1f471921,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44187,8876cc40-e40b-4128-8308-695b1f471921,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44188,579e0971-9399-4742-8ac0-71456b8f7380,LIST_ACCOUNTS,xs2aListAccounts,true -44189,579e0971-9399-4742-8ac0-71456b8f7380,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44189,579e0971-9399-4742-8ac0-71456b8f7380,LIST_TRANSACTIONS,xs2aListTransactions,true 44190,579e0971-9399-4742-8ac0-71456b8f7380,AUTHORIZATION,,true 44191,579e0971-9399-4742-8ac0-71456b8f7380,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44192,579e0971-9399-4742-8ac0-71456b8f7380,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44193,579e0971-9399-4742-8ac0-71456b8f7380,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44194,84460a04-b48b-4c2e-8b47-cffc019498a9,LIST_ACCOUNTS,hbciListAccounts,false -44195,84460a04-b48b-4c2e-8b47-cffc019498a9,LIST_TRANSACTIONS,hbciListTransactions,false -44196,84460a04-b48b-4c2e-8b47-cffc019498a9,AUTHORIZATION,,false -44197,84460a04-b48b-4c2e-8b47-cffc019498a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44198,84460a04-b48b-4c2e-8b47-cffc019498a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44199,84460a04-b48b-4c2e-8b47-cffc019498a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44194,5ffa40bd-6c73-4ae4-872d-4a8fc6a10923,LIST_ACCOUNTS,hbciListAccounts,false +44195,5ffa40bd-6c73-4ae4-872d-4a8fc6a10923,LIST_TRANSACTIONS,hbciListTransactions,false +44196,5ffa40bd-6c73-4ae4-872d-4a8fc6a10923,AUTHORIZATION,,false +44197,5ffa40bd-6c73-4ae4-872d-4a8fc6a10923,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44198,5ffa40bd-6c73-4ae4-872d-4a8fc6a10923,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44199,5ffa40bd-6c73-4ae4-872d-4a8fc6a10923,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44200,8b7fbeec-6ad2-4889-9bd4-5444d334889d,LIST_ACCOUNTS,xs2aListAccounts,true -44201,8b7fbeec-6ad2-4889-9bd4-5444d334889d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44201,8b7fbeec-6ad2-4889-9bd4-5444d334889d,LIST_TRANSACTIONS,xs2aListTransactions,true 44202,8b7fbeec-6ad2-4889-9bd4-5444d334889d,AUTHORIZATION,,true 44203,8b7fbeec-6ad2-4889-9bd4-5444d334889d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44204,8b7fbeec-6ad2-4889-9bd4-5444d334889d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44205,8b7fbeec-6ad2-4889-9bd4-5444d334889d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44206,2abbbb9a-bfc8-4245-8236-eb56f6202893,LIST_ACCOUNTS,hbciListAccounts,false -44207,2abbbb9a-bfc8-4245-8236-eb56f6202893,LIST_TRANSACTIONS,hbciListTransactions,false -44208,2abbbb9a-bfc8-4245-8236-eb56f6202893,AUTHORIZATION,,false -44209,2abbbb9a-bfc8-4245-8236-eb56f6202893,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44210,2abbbb9a-bfc8-4245-8236-eb56f6202893,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44211,2abbbb9a-bfc8-4245-8236-eb56f6202893,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44206,650c04fe-c024-4bbc-8abf-08e8035bc9bd,LIST_ACCOUNTS,hbciListAccounts,false +44207,650c04fe-c024-4bbc-8abf-08e8035bc9bd,LIST_TRANSACTIONS,hbciListTransactions,false +44208,650c04fe-c024-4bbc-8abf-08e8035bc9bd,AUTHORIZATION,,false +44209,650c04fe-c024-4bbc-8abf-08e8035bc9bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44210,650c04fe-c024-4bbc-8abf-08e8035bc9bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44211,650c04fe-c024-4bbc-8abf-08e8035bc9bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44212,1ace1efd-e8d1-43ab-96e6-36b274b776ee,LIST_ACCOUNTS,xs2aListAccounts,true -44213,1ace1efd-e8d1-43ab-96e6-36b274b776ee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44213,1ace1efd-e8d1-43ab-96e6-36b274b776ee,LIST_TRANSACTIONS,xs2aListTransactions,true 44214,1ace1efd-e8d1-43ab-96e6-36b274b776ee,AUTHORIZATION,,true 44215,1ace1efd-e8d1-43ab-96e6-36b274b776ee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44216,1ace1efd-e8d1-43ab-96e6-36b274b776ee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44217,1ace1efd-e8d1-43ab-96e6-36b274b776ee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44218,d16816e7-1822-4b1b-b6f6-e0fba829b384,LIST_ACCOUNTS,hbciListAccounts,false -44219,d16816e7-1822-4b1b-b6f6-e0fba829b384,LIST_TRANSACTIONS,hbciListTransactions,false -44220,d16816e7-1822-4b1b-b6f6-e0fba829b384,AUTHORIZATION,,false -44221,d16816e7-1822-4b1b-b6f6-e0fba829b384,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44222,d16816e7-1822-4b1b-b6f6-e0fba829b384,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44223,d16816e7-1822-4b1b-b6f6-e0fba829b384,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44218,acee1d05-984a-4af7-9039-e08075488bf5,LIST_ACCOUNTS,hbciListAccounts,false +44219,acee1d05-984a-4af7-9039-e08075488bf5,LIST_TRANSACTIONS,hbciListTransactions,false +44220,acee1d05-984a-4af7-9039-e08075488bf5,AUTHORIZATION,,false +44221,acee1d05-984a-4af7-9039-e08075488bf5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44222,acee1d05-984a-4af7-9039-e08075488bf5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44223,acee1d05-984a-4af7-9039-e08075488bf5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44224,b0f5ee13-d03f-48e8-a5ec-5384630c3f27,LIST_ACCOUNTS,xs2aListAccounts,true -44225,b0f5ee13-d03f-48e8-a5ec-5384630c3f27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44225,b0f5ee13-d03f-48e8-a5ec-5384630c3f27,LIST_TRANSACTIONS,xs2aListTransactions,true 44226,b0f5ee13-d03f-48e8-a5ec-5384630c3f27,AUTHORIZATION,,true 44227,b0f5ee13-d03f-48e8-a5ec-5384630c3f27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44228,b0f5ee13-d03f-48e8-a5ec-5384630c3f27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44229,b0f5ee13-d03f-48e8-a5ec-5384630c3f27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44230,f4107e86-3bfd-4b9d-bb6f-0f12d3f55818,LIST_ACCOUNTS,hbciListAccounts,false -44231,f4107e86-3bfd-4b9d-bb6f-0f12d3f55818,LIST_TRANSACTIONS,hbciListTransactions,false -44232,f4107e86-3bfd-4b9d-bb6f-0f12d3f55818,AUTHORIZATION,,false -44233,f4107e86-3bfd-4b9d-bb6f-0f12d3f55818,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44234,f4107e86-3bfd-4b9d-bb6f-0f12d3f55818,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44235,f4107e86-3bfd-4b9d-bb6f-0f12d3f55818,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44230,d973bbdd-0632-4a97-a307-db454010c2e7,LIST_ACCOUNTS,hbciListAccounts,false +44231,d973bbdd-0632-4a97-a307-db454010c2e7,LIST_TRANSACTIONS,hbciListTransactions,false +44232,d973bbdd-0632-4a97-a307-db454010c2e7,AUTHORIZATION,,false +44233,d973bbdd-0632-4a97-a307-db454010c2e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44234,d973bbdd-0632-4a97-a307-db454010c2e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44235,d973bbdd-0632-4a97-a307-db454010c2e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44236,ed127fa6-e425-48f7-8505-0e34481815e1,LIST_ACCOUNTS,xs2aListAccounts,true -44237,ed127fa6-e425-48f7-8505-0e34481815e1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44237,ed127fa6-e425-48f7-8505-0e34481815e1,LIST_TRANSACTIONS,xs2aListTransactions,true 44238,ed127fa6-e425-48f7-8505-0e34481815e1,AUTHORIZATION,,true 44239,ed127fa6-e425-48f7-8505-0e34481815e1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44240,ed127fa6-e425-48f7-8505-0e34481815e1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44241,ed127fa6-e425-48f7-8505-0e34481815e1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44242,e995d294-ce17-4e5e-aa1c-dab0a1225bc5,LIST_ACCOUNTS,hbciListAccounts,false -44243,e995d294-ce17-4e5e-aa1c-dab0a1225bc5,LIST_TRANSACTIONS,hbciListTransactions,false -44244,e995d294-ce17-4e5e-aa1c-dab0a1225bc5,AUTHORIZATION,,false -44245,e995d294-ce17-4e5e-aa1c-dab0a1225bc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44246,e995d294-ce17-4e5e-aa1c-dab0a1225bc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44247,e995d294-ce17-4e5e-aa1c-dab0a1225bc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44242,b8ac54be-9694-4430-a3cb-3587a289f906,LIST_ACCOUNTS,hbciListAccounts,false +44243,b8ac54be-9694-4430-a3cb-3587a289f906,LIST_TRANSACTIONS,hbciListTransactions,false +44244,b8ac54be-9694-4430-a3cb-3587a289f906,AUTHORIZATION,,false +44245,b8ac54be-9694-4430-a3cb-3587a289f906,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44246,b8ac54be-9694-4430-a3cb-3587a289f906,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44247,b8ac54be-9694-4430-a3cb-3587a289f906,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44248,dd75b40c-255c-42b0-be6b-8a723a17061e,LIST_ACCOUNTS,xs2aListAccounts,true -44249,dd75b40c-255c-42b0-be6b-8a723a17061e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44249,dd75b40c-255c-42b0-be6b-8a723a17061e,LIST_TRANSACTIONS,xs2aListTransactions,true 44250,dd75b40c-255c-42b0-be6b-8a723a17061e,AUTHORIZATION,,true 44251,dd75b40c-255c-42b0-be6b-8a723a17061e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44252,dd75b40c-255c-42b0-be6b-8a723a17061e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44253,dd75b40c-255c-42b0-be6b-8a723a17061e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44254,2fab8357-b70b-49ec-90bf-e1242504910f,LIST_ACCOUNTS,hbciListAccounts,false -44255,2fab8357-b70b-49ec-90bf-e1242504910f,LIST_TRANSACTIONS,hbciListTransactions,false -44256,2fab8357-b70b-49ec-90bf-e1242504910f,AUTHORIZATION,,false -44257,2fab8357-b70b-49ec-90bf-e1242504910f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44258,2fab8357-b70b-49ec-90bf-e1242504910f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44259,2fab8357-b70b-49ec-90bf-e1242504910f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44254,f8382bc0-fdf7-472f-9cb9-24627478bcc9,LIST_ACCOUNTS,hbciListAccounts,false +44255,f8382bc0-fdf7-472f-9cb9-24627478bcc9,LIST_TRANSACTIONS,hbciListTransactions,false +44256,f8382bc0-fdf7-472f-9cb9-24627478bcc9,AUTHORIZATION,,false +44257,f8382bc0-fdf7-472f-9cb9-24627478bcc9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44258,f8382bc0-fdf7-472f-9cb9-24627478bcc9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44259,f8382bc0-fdf7-472f-9cb9-24627478bcc9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44260,ec2f4779-62d9-4c99-a5da-b9ef51b55fcd,LIST_ACCOUNTS,xs2aListAccounts,true -44261,ec2f4779-62d9-4c99-a5da-b9ef51b55fcd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44261,ec2f4779-62d9-4c99-a5da-b9ef51b55fcd,LIST_TRANSACTIONS,xs2aListTransactions,true 44262,ec2f4779-62d9-4c99-a5da-b9ef51b55fcd,AUTHORIZATION,,true 44263,ec2f4779-62d9-4c99-a5da-b9ef51b55fcd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44264,ec2f4779-62d9-4c99-a5da-b9ef51b55fcd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44265,ec2f4779-62d9-4c99-a5da-b9ef51b55fcd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44266,8f5ce84d-f738-492b-b80a-0c85a4c59b56,LIST_ACCOUNTS,hbciListAccounts,false -44267,8f5ce84d-f738-492b-b80a-0c85a4c59b56,LIST_TRANSACTIONS,hbciListTransactions,false -44268,8f5ce84d-f738-492b-b80a-0c85a4c59b56,AUTHORIZATION,,false -44269,8f5ce84d-f738-492b-b80a-0c85a4c59b56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44270,8f5ce84d-f738-492b-b80a-0c85a4c59b56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44271,8f5ce84d-f738-492b-b80a-0c85a4c59b56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44266,6a7dbddd-0d54-4c6d-bbb4-552efd1e66c5,LIST_ACCOUNTS,hbciListAccounts,false +44267,6a7dbddd-0d54-4c6d-bbb4-552efd1e66c5,LIST_TRANSACTIONS,hbciListTransactions,false +44268,6a7dbddd-0d54-4c6d-bbb4-552efd1e66c5,AUTHORIZATION,,false +44269,6a7dbddd-0d54-4c6d-bbb4-552efd1e66c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44270,6a7dbddd-0d54-4c6d-bbb4-552efd1e66c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44271,6a7dbddd-0d54-4c6d-bbb4-552efd1e66c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44272,452c8e44-5299-4048-a796-053da6e1aabb,LIST_ACCOUNTS,xs2aListAccounts,true -44273,452c8e44-5299-4048-a796-053da6e1aabb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44273,452c8e44-5299-4048-a796-053da6e1aabb,LIST_TRANSACTIONS,xs2aListTransactions,true 44274,452c8e44-5299-4048-a796-053da6e1aabb,AUTHORIZATION,,true 44275,452c8e44-5299-4048-a796-053da6e1aabb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44276,452c8e44-5299-4048-a796-053da6e1aabb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44277,452c8e44-5299-4048-a796-053da6e1aabb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44278,292a1bfc-6382-413a-998e-d3b187c11d83,LIST_ACCOUNTS,hbciListAccounts,false -44279,292a1bfc-6382-413a-998e-d3b187c11d83,LIST_TRANSACTIONS,hbciListTransactions,false -44280,292a1bfc-6382-413a-998e-d3b187c11d83,AUTHORIZATION,,false -44281,292a1bfc-6382-413a-998e-d3b187c11d83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44282,292a1bfc-6382-413a-998e-d3b187c11d83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44283,292a1bfc-6382-413a-998e-d3b187c11d83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44278,ed182176-ef51-440e-9b68-d4f32cdd593d,LIST_ACCOUNTS,hbciListAccounts,false +44279,ed182176-ef51-440e-9b68-d4f32cdd593d,LIST_TRANSACTIONS,hbciListTransactions,false +44280,ed182176-ef51-440e-9b68-d4f32cdd593d,AUTHORIZATION,,false +44281,ed182176-ef51-440e-9b68-d4f32cdd593d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44282,ed182176-ef51-440e-9b68-d4f32cdd593d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44283,ed182176-ef51-440e-9b68-d4f32cdd593d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44284,a68ca008-a1d7-46cd-90ac-514289c3e970,LIST_ACCOUNTS,xs2aListAccounts,true -44285,a68ca008-a1d7-46cd-90ac-514289c3e970,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44285,a68ca008-a1d7-46cd-90ac-514289c3e970,LIST_TRANSACTIONS,xs2aListTransactions,true 44286,a68ca008-a1d7-46cd-90ac-514289c3e970,AUTHORIZATION,,true 44287,a68ca008-a1d7-46cd-90ac-514289c3e970,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44288,a68ca008-a1d7-46cd-90ac-514289c3e970,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44289,a68ca008-a1d7-46cd-90ac-514289c3e970,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44290,22da142d-597c-4b72-84a2-0b8ac9b5f6b6,LIST_ACCOUNTS,hbciListAccounts,false -44291,22da142d-597c-4b72-84a2-0b8ac9b5f6b6,LIST_TRANSACTIONS,hbciListTransactions,false -44292,22da142d-597c-4b72-84a2-0b8ac9b5f6b6,AUTHORIZATION,,false -44293,22da142d-597c-4b72-84a2-0b8ac9b5f6b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44294,22da142d-597c-4b72-84a2-0b8ac9b5f6b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44295,22da142d-597c-4b72-84a2-0b8ac9b5f6b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44290,b1f5ab00-e050-4c5e-af91-2c7975162c64,LIST_ACCOUNTS,hbciListAccounts,false +44291,b1f5ab00-e050-4c5e-af91-2c7975162c64,LIST_TRANSACTIONS,hbciListTransactions,false +44292,b1f5ab00-e050-4c5e-af91-2c7975162c64,AUTHORIZATION,,false +44293,b1f5ab00-e050-4c5e-af91-2c7975162c64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44294,b1f5ab00-e050-4c5e-af91-2c7975162c64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44295,b1f5ab00-e050-4c5e-af91-2c7975162c64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44296,50237bf4-6406-454e-8e20-405316513aec,LIST_ACCOUNTS,xs2aListAccounts,true -44297,50237bf4-6406-454e-8e20-405316513aec,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44297,50237bf4-6406-454e-8e20-405316513aec,LIST_TRANSACTIONS,xs2aListTransactions,true 44298,50237bf4-6406-454e-8e20-405316513aec,AUTHORIZATION,,true 44299,50237bf4-6406-454e-8e20-405316513aec,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44300,50237bf4-6406-454e-8e20-405316513aec,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44301,50237bf4-6406-454e-8e20-405316513aec,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44302,b4c4907c-8faa-409c-bf17-0d6601995def,LIST_ACCOUNTS,hbciListAccounts,false -44303,b4c4907c-8faa-409c-bf17-0d6601995def,LIST_TRANSACTIONS,hbciListTransactions,false -44304,b4c4907c-8faa-409c-bf17-0d6601995def,AUTHORIZATION,,false -44305,b4c4907c-8faa-409c-bf17-0d6601995def,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44306,b4c4907c-8faa-409c-bf17-0d6601995def,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44307,b4c4907c-8faa-409c-bf17-0d6601995def,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44302,3c5cdd17-d9cf-4e85-97b4-a72568ec01ba,LIST_ACCOUNTS,hbciListAccounts,false +44303,3c5cdd17-d9cf-4e85-97b4-a72568ec01ba,LIST_TRANSACTIONS,hbciListTransactions,false +44304,3c5cdd17-d9cf-4e85-97b4-a72568ec01ba,AUTHORIZATION,,false +44305,3c5cdd17-d9cf-4e85-97b4-a72568ec01ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44306,3c5cdd17-d9cf-4e85-97b4-a72568ec01ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44307,3c5cdd17-d9cf-4e85-97b4-a72568ec01ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44308,2ff14c30-534f-439a-98b7-2736982d6baf,LIST_ACCOUNTS,xs2aListAccounts,true -44309,2ff14c30-534f-439a-98b7-2736982d6baf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44309,2ff14c30-534f-439a-98b7-2736982d6baf,LIST_TRANSACTIONS,xs2aListTransactions,true 44310,2ff14c30-534f-439a-98b7-2736982d6baf,AUTHORIZATION,,true 44311,2ff14c30-534f-439a-98b7-2736982d6baf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44312,2ff14c30-534f-439a-98b7-2736982d6baf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44313,2ff14c30-534f-439a-98b7-2736982d6baf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44314,49200c47-bc6d-4f78-9f75-be5cefee8317,LIST_ACCOUNTS,hbciListAccounts,false -44315,49200c47-bc6d-4f78-9f75-be5cefee8317,LIST_TRANSACTIONS,hbciListTransactions,false -44316,49200c47-bc6d-4f78-9f75-be5cefee8317,AUTHORIZATION,,false -44317,49200c47-bc6d-4f78-9f75-be5cefee8317,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44318,49200c47-bc6d-4f78-9f75-be5cefee8317,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44319,49200c47-bc6d-4f78-9f75-be5cefee8317,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44314,d5fec3cd-c18f-4eee-993d-57197887c916,LIST_ACCOUNTS,hbciListAccounts,false +44315,d5fec3cd-c18f-4eee-993d-57197887c916,LIST_TRANSACTIONS,hbciListTransactions,false +44316,d5fec3cd-c18f-4eee-993d-57197887c916,AUTHORIZATION,,false +44317,d5fec3cd-c18f-4eee-993d-57197887c916,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44318,d5fec3cd-c18f-4eee-993d-57197887c916,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44319,d5fec3cd-c18f-4eee-993d-57197887c916,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44320,e792a7e7-d66a-4a36-b484-c44bb875c0c6,LIST_ACCOUNTS,xs2aListAccounts,true -44321,e792a7e7-d66a-4a36-b484-c44bb875c0c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44321,e792a7e7-d66a-4a36-b484-c44bb875c0c6,LIST_TRANSACTIONS,xs2aListTransactions,true 44322,e792a7e7-d66a-4a36-b484-c44bb875c0c6,AUTHORIZATION,,true 44323,e792a7e7-d66a-4a36-b484-c44bb875c0c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44324,e792a7e7-d66a-4a36-b484-c44bb875c0c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44325,e792a7e7-d66a-4a36-b484-c44bb875c0c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44326,ec482443-aee4-416e-9302-30913a2bdf7e,LIST_ACCOUNTS,hbciListAccounts,false -44327,ec482443-aee4-416e-9302-30913a2bdf7e,LIST_TRANSACTIONS,hbciListTransactions,false -44328,ec482443-aee4-416e-9302-30913a2bdf7e,AUTHORIZATION,,false -44329,ec482443-aee4-416e-9302-30913a2bdf7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44330,ec482443-aee4-416e-9302-30913a2bdf7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44331,ec482443-aee4-416e-9302-30913a2bdf7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44326,db587c18-11ab-4355-8d36-95bbb262bc2a,LIST_ACCOUNTS,hbciListAccounts,false +44327,db587c18-11ab-4355-8d36-95bbb262bc2a,LIST_TRANSACTIONS,hbciListTransactions,false +44328,db587c18-11ab-4355-8d36-95bbb262bc2a,AUTHORIZATION,,false +44329,db587c18-11ab-4355-8d36-95bbb262bc2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44330,db587c18-11ab-4355-8d36-95bbb262bc2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44331,db587c18-11ab-4355-8d36-95bbb262bc2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44332,9f17cd30-33fe-4980-b6a0-aa9c5d56c321,LIST_ACCOUNTS,xs2aListAccounts,true -44333,9f17cd30-33fe-4980-b6a0-aa9c5d56c321,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44333,9f17cd30-33fe-4980-b6a0-aa9c5d56c321,LIST_TRANSACTIONS,xs2aListTransactions,true 44334,9f17cd30-33fe-4980-b6a0-aa9c5d56c321,AUTHORIZATION,,true 44335,9f17cd30-33fe-4980-b6a0-aa9c5d56c321,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44336,9f17cd30-33fe-4980-b6a0-aa9c5d56c321,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44337,9f17cd30-33fe-4980-b6a0-aa9c5d56c321,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44338,07bb33f5-f0b3-45d6-b945-09a186391ef3,LIST_ACCOUNTS,hbciListAccounts,false -44339,07bb33f5-f0b3-45d6-b945-09a186391ef3,LIST_TRANSACTIONS,hbciListTransactions,false -44340,07bb33f5-f0b3-45d6-b945-09a186391ef3,AUTHORIZATION,,false -44341,07bb33f5-f0b3-45d6-b945-09a186391ef3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44342,07bb33f5-f0b3-45d6-b945-09a186391ef3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44343,07bb33f5-f0b3-45d6-b945-09a186391ef3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44338,4994279a-a2ea-456c-b4f0-598da5923f47,LIST_ACCOUNTS,hbciListAccounts,false +44339,4994279a-a2ea-456c-b4f0-598da5923f47,LIST_TRANSACTIONS,hbciListTransactions,false +44340,4994279a-a2ea-456c-b4f0-598da5923f47,AUTHORIZATION,,false +44341,4994279a-a2ea-456c-b4f0-598da5923f47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44342,4994279a-a2ea-456c-b4f0-598da5923f47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44343,4994279a-a2ea-456c-b4f0-598da5923f47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44344,92706bff-6790-4894-a738-2bfc382a57db,LIST_ACCOUNTS,xs2aListAccounts,true -44345,92706bff-6790-4894-a738-2bfc382a57db,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44345,92706bff-6790-4894-a738-2bfc382a57db,LIST_TRANSACTIONS,xs2aListTransactions,true 44346,92706bff-6790-4894-a738-2bfc382a57db,AUTHORIZATION,,true 44347,92706bff-6790-4894-a738-2bfc382a57db,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44348,92706bff-6790-4894-a738-2bfc382a57db,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44349,92706bff-6790-4894-a738-2bfc382a57db,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44350,fef0652e-3190-457e-b511-6ddbe84b089d,LIST_ACCOUNTS,hbciListAccounts,false -44351,fef0652e-3190-457e-b511-6ddbe84b089d,LIST_TRANSACTIONS,hbciListTransactions,false -44352,fef0652e-3190-457e-b511-6ddbe84b089d,AUTHORIZATION,,false -44353,fef0652e-3190-457e-b511-6ddbe84b089d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44354,fef0652e-3190-457e-b511-6ddbe84b089d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44355,fef0652e-3190-457e-b511-6ddbe84b089d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44350,ae17d367-0aa5-4662-8b9e-3869666537c1,LIST_ACCOUNTS,hbciListAccounts,false +44351,ae17d367-0aa5-4662-8b9e-3869666537c1,LIST_TRANSACTIONS,hbciListTransactions,false +44352,ae17d367-0aa5-4662-8b9e-3869666537c1,AUTHORIZATION,,false +44353,ae17d367-0aa5-4662-8b9e-3869666537c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44354,ae17d367-0aa5-4662-8b9e-3869666537c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44355,ae17d367-0aa5-4662-8b9e-3869666537c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44356,cb9a4781-03b8-4ac9-82ae-2b56b6246c7c,LIST_ACCOUNTS,xs2aListAccounts,true -44357,cb9a4781-03b8-4ac9-82ae-2b56b6246c7c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44357,cb9a4781-03b8-4ac9-82ae-2b56b6246c7c,LIST_TRANSACTIONS,xs2aListTransactions,true 44358,cb9a4781-03b8-4ac9-82ae-2b56b6246c7c,AUTHORIZATION,,true 44359,cb9a4781-03b8-4ac9-82ae-2b56b6246c7c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44360,cb9a4781-03b8-4ac9-82ae-2b56b6246c7c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44361,cb9a4781-03b8-4ac9-82ae-2b56b6246c7c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44362,36ed96e0-250e-41d2-9722-104a4423d434,LIST_ACCOUNTS,hbciListAccounts,false -44363,36ed96e0-250e-41d2-9722-104a4423d434,LIST_TRANSACTIONS,hbciListTransactions,false -44364,36ed96e0-250e-41d2-9722-104a4423d434,AUTHORIZATION,,false -44365,36ed96e0-250e-41d2-9722-104a4423d434,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44366,36ed96e0-250e-41d2-9722-104a4423d434,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44367,36ed96e0-250e-41d2-9722-104a4423d434,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44362,e11caf3c-254c-444b-ad54-0fa0591ce325,LIST_ACCOUNTS,hbciListAccounts,false +44363,e11caf3c-254c-444b-ad54-0fa0591ce325,LIST_TRANSACTIONS,hbciListTransactions,false +44364,e11caf3c-254c-444b-ad54-0fa0591ce325,AUTHORIZATION,,false +44365,e11caf3c-254c-444b-ad54-0fa0591ce325,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44366,e11caf3c-254c-444b-ad54-0fa0591ce325,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44367,e11caf3c-254c-444b-ad54-0fa0591ce325,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44368,75eca309-516c-4d0e-b444-82ae37602b6b,LIST_ACCOUNTS,xs2aListAccounts,true -44369,75eca309-516c-4d0e-b444-82ae37602b6b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44369,75eca309-516c-4d0e-b444-82ae37602b6b,LIST_TRANSACTIONS,xs2aListTransactions,true 44370,75eca309-516c-4d0e-b444-82ae37602b6b,AUTHORIZATION,,true 44371,75eca309-516c-4d0e-b444-82ae37602b6b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44372,75eca309-516c-4d0e-b444-82ae37602b6b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44373,75eca309-516c-4d0e-b444-82ae37602b6b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44374,fa668d8b-1a15-465a-8338-a4946d8eb125,LIST_ACCOUNTS,hbciListAccounts,false -44375,fa668d8b-1a15-465a-8338-a4946d8eb125,LIST_TRANSACTIONS,hbciListTransactions,false -44376,fa668d8b-1a15-465a-8338-a4946d8eb125,AUTHORIZATION,,false -44377,fa668d8b-1a15-465a-8338-a4946d8eb125,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44378,fa668d8b-1a15-465a-8338-a4946d8eb125,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44379,fa668d8b-1a15-465a-8338-a4946d8eb125,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44374,bd91a588-0a39-46e2-a12f-ced10b36fa30,LIST_ACCOUNTS,hbciListAccounts,false +44375,bd91a588-0a39-46e2-a12f-ced10b36fa30,LIST_TRANSACTIONS,hbciListTransactions,false +44376,bd91a588-0a39-46e2-a12f-ced10b36fa30,AUTHORIZATION,,false +44377,bd91a588-0a39-46e2-a12f-ced10b36fa30,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44378,bd91a588-0a39-46e2-a12f-ced10b36fa30,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44379,bd91a588-0a39-46e2-a12f-ced10b36fa30,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44380,fce59755-2229-4a60-9bbb-f82f4d25a8c6,LIST_ACCOUNTS,xs2aListAccounts,true -44381,fce59755-2229-4a60-9bbb-f82f4d25a8c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44381,fce59755-2229-4a60-9bbb-f82f4d25a8c6,LIST_TRANSACTIONS,xs2aListTransactions,true 44382,fce59755-2229-4a60-9bbb-f82f4d25a8c6,AUTHORIZATION,,true 44383,fce59755-2229-4a60-9bbb-f82f4d25a8c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44384,fce59755-2229-4a60-9bbb-f82f4d25a8c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44385,fce59755-2229-4a60-9bbb-f82f4d25a8c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44386,668b44d5-a418-464c-acf4-fe95e76659c7,LIST_ACCOUNTS,hbciListAccounts,false -44387,668b44d5-a418-464c-acf4-fe95e76659c7,LIST_TRANSACTIONS,hbciListTransactions,false -44388,668b44d5-a418-464c-acf4-fe95e76659c7,AUTHORIZATION,,false -44389,668b44d5-a418-464c-acf4-fe95e76659c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44390,668b44d5-a418-464c-acf4-fe95e76659c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44391,668b44d5-a418-464c-acf4-fe95e76659c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44386,3f5b8959-555f-47d6-af5a-c4c467e2164e,LIST_ACCOUNTS,hbciListAccounts,false +44387,3f5b8959-555f-47d6-af5a-c4c467e2164e,LIST_TRANSACTIONS,hbciListTransactions,false +44388,3f5b8959-555f-47d6-af5a-c4c467e2164e,AUTHORIZATION,,false +44389,3f5b8959-555f-47d6-af5a-c4c467e2164e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44390,3f5b8959-555f-47d6-af5a-c4c467e2164e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44391,3f5b8959-555f-47d6-af5a-c4c467e2164e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44392,9da0e694-8cf4-4ec3-911c-53122f2c1120,LIST_ACCOUNTS,xs2aListAccounts,true -44393,9da0e694-8cf4-4ec3-911c-53122f2c1120,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44393,9da0e694-8cf4-4ec3-911c-53122f2c1120,LIST_TRANSACTIONS,xs2aListTransactions,true 44394,9da0e694-8cf4-4ec3-911c-53122f2c1120,AUTHORIZATION,,true 44395,9da0e694-8cf4-4ec3-911c-53122f2c1120,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44396,9da0e694-8cf4-4ec3-911c-53122f2c1120,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44397,9da0e694-8cf4-4ec3-911c-53122f2c1120,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44398,8633371e-7033-4947-aa4b-95e259af72d0,LIST_ACCOUNTS,hbciListAccounts,false -44399,8633371e-7033-4947-aa4b-95e259af72d0,LIST_TRANSACTIONS,hbciListTransactions,false -44400,8633371e-7033-4947-aa4b-95e259af72d0,AUTHORIZATION,,false -44401,8633371e-7033-4947-aa4b-95e259af72d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44402,8633371e-7033-4947-aa4b-95e259af72d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44403,8633371e-7033-4947-aa4b-95e259af72d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44398,cc3cdd0f-9783-4a52-9a60-bcc08515291c,LIST_ACCOUNTS,hbciListAccounts,false +44399,cc3cdd0f-9783-4a52-9a60-bcc08515291c,LIST_TRANSACTIONS,hbciListTransactions,false +44400,cc3cdd0f-9783-4a52-9a60-bcc08515291c,AUTHORIZATION,,false +44401,cc3cdd0f-9783-4a52-9a60-bcc08515291c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44402,cc3cdd0f-9783-4a52-9a60-bcc08515291c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44403,cc3cdd0f-9783-4a52-9a60-bcc08515291c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44404,d84881bd-adb1-48bc-877c-6662b699ee03,LIST_ACCOUNTS,xs2aListAccounts,true -44405,d84881bd-adb1-48bc-877c-6662b699ee03,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44405,d84881bd-adb1-48bc-877c-6662b699ee03,LIST_TRANSACTIONS,xs2aListTransactions,true 44406,d84881bd-adb1-48bc-877c-6662b699ee03,AUTHORIZATION,,true 44407,d84881bd-adb1-48bc-877c-6662b699ee03,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44408,d84881bd-adb1-48bc-877c-6662b699ee03,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44409,d84881bd-adb1-48bc-877c-6662b699ee03,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44410,641cccab-2b32-453e-8732-8c8486ec1cf1,LIST_ACCOUNTS,hbciListAccounts,false -44411,641cccab-2b32-453e-8732-8c8486ec1cf1,LIST_TRANSACTIONS,hbciListTransactions,false -44412,641cccab-2b32-453e-8732-8c8486ec1cf1,AUTHORIZATION,,false -44413,641cccab-2b32-453e-8732-8c8486ec1cf1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44414,641cccab-2b32-453e-8732-8c8486ec1cf1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44415,641cccab-2b32-453e-8732-8c8486ec1cf1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44410,bd393878-8d8f-4a01-83d6-d1e7f0605ae0,LIST_ACCOUNTS,hbciListAccounts,false +44411,bd393878-8d8f-4a01-83d6-d1e7f0605ae0,LIST_TRANSACTIONS,hbciListTransactions,false +44412,bd393878-8d8f-4a01-83d6-d1e7f0605ae0,AUTHORIZATION,,false +44413,bd393878-8d8f-4a01-83d6-d1e7f0605ae0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44414,bd393878-8d8f-4a01-83d6-d1e7f0605ae0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44415,bd393878-8d8f-4a01-83d6-d1e7f0605ae0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44416,34ceadb1-4ad2-4188-b066-a6d36d6ed4b6,LIST_ACCOUNTS,xs2aListAccounts,true -44417,34ceadb1-4ad2-4188-b066-a6d36d6ed4b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44417,34ceadb1-4ad2-4188-b066-a6d36d6ed4b6,LIST_TRANSACTIONS,xs2aListTransactions,true 44418,34ceadb1-4ad2-4188-b066-a6d36d6ed4b6,AUTHORIZATION,,true 44419,34ceadb1-4ad2-4188-b066-a6d36d6ed4b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44420,34ceadb1-4ad2-4188-b066-a6d36d6ed4b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44421,34ceadb1-4ad2-4188-b066-a6d36d6ed4b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44422,07a9bd3e-1906-4203-8757-47bbb646f836,LIST_ACCOUNTS,hbciListAccounts,false -44423,07a9bd3e-1906-4203-8757-47bbb646f836,LIST_TRANSACTIONS,hbciListTransactions,false -44424,07a9bd3e-1906-4203-8757-47bbb646f836,AUTHORIZATION,,false -44425,07a9bd3e-1906-4203-8757-47bbb646f836,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44426,07a9bd3e-1906-4203-8757-47bbb646f836,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44427,07a9bd3e-1906-4203-8757-47bbb646f836,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44422,015dafda-78ad-4cba-a057-7323c3c4efd5,LIST_ACCOUNTS,hbciListAccounts,false +44423,015dafda-78ad-4cba-a057-7323c3c4efd5,LIST_TRANSACTIONS,hbciListTransactions,false +44424,015dafda-78ad-4cba-a057-7323c3c4efd5,AUTHORIZATION,,false +44425,015dafda-78ad-4cba-a057-7323c3c4efd5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44426,015dafda-78ad-4cba-a057-7323c3c4efd5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44427,015dafda-78ad-4cba-a057-7323c3c4efd5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44428,44c68c83-148c-4199-8db8-ce8dd2320c17,LIST_ACCOUNTS,xs2aListAccounts,true -44429,44c68c83-148c-4199-8db8-ce8dd2320c17,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44429,44c68c83-148c-4199-8db8-ce8dd2320c17,LIST_TRANSACTIONS,xs2aListTransactions,true 44430,44c68c83-148c-4199-8db8-ce8dd2320c17,AUTHORIZATION,,true 44431,44c68c83-148c-4199-8db8-ce8dd2320c17,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44432,44c68c83-148c-4199-8db8-ce8dd2320c17,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44433,44c68c83-148c-4199-8db8-ce8dd2320c17,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44434,3eb1f5af-fb80-4f25-af80-453474e56f42,LIST_ACCOUNTS,hbciListAccounts,false -44435,3eb1f5af-fb80-4f25-af80-453474e56f42,LIST_TRANSACTIONS,hbciListTransactions,false -44436,3eb1f5af-fb80-4f25-af80-453474e56f42,AUTHORIZATION,,false -44437,3eb1f5af-fb80-4f25-af80-453474e56f42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44438,3eb1f5af-fb80-4f25-af80-453474e56f42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44439,3eb1f5af-fb80-4f25-af80-453474e56f42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44434,6f00685d-a4d7-4974-b040-b67ca327deb6,LIST_ACCOUNTS,hbciListAccounts,false +44435,6f00685d-a4d7-4974-b040-b67ca327deb6,LIST_TRANSACTIONS,hbciListTransactions,false +44436,6f00685d-a4d7-4974-b040-b67ca327deb6,AUTHORIZATION,,false +44437,6f00685d-a4d7-4974-b040-b67ca327deb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44438,6f00685d-a4d7-4974-b040-b67ca327deb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44439,6f00685d-a4d7-4974-b040-b67ca327deb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44440,869ac40f-80e1-4971-b306-84e87f6af0a1,LIST_ACCOUNTS,xs2aListAccounts,true -44441,869ac40f-80e1-4971-b306-84e87f6af0a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44441,869ac40f-80e1-4971-b306-84e87f6af0a1,LIST_TRANSACTIONS,xs2aListTransactions,true 44442,869ac40f-80e1-4971-b306-84e87f6af0a1,AUTHORIZATION,,true 44443,869ac40f-80e1-4971-b306-84e87f6af0a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44444,869ac40f-80e1-4971-b306-84e87f6af0a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44445,869ac40f-80e1-4971-b306-84e87f6af0a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44446,7a9c808d-ff7b-428c-bac4-561719bf1469,LIST_ACCOUNTS,hbciListAccounts,false -44447,7a9c808d-ff7b-428c-bac4-561719bf1469,LIST_TRANSACTIONS,hbciListTransactions,false -44448,7a9c808d-ff7b-428c-bac4-561719bf1469,AUTHORIZATION,,false -44449,7a9c808d-ff7b-428c-bac4-561719bf1469,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44450,7a9c808d-ff7b-428c-bac4-561719bf1469,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44451,7a9c808d-ff7b-428c-bac4-561719bf1469,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44446,99129ed8-9912-43e2-b72c-b43c3e3e7b34,LIST_ACCOUNTS,hbciListAccounts,false +44447,99129ed8-9912-43e2-b72c-b43c3e3e7b34,LIST_TRANSACTIONS,hbciListTransactions,false +44448,99129ed8-9912-43e2-b72c-b43c3e3e7b34,AUTHORIZATION,,false +44449,99129ed8-9912-43e2-b72c-b43c3e3e7b34,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44450,99129ed8-9912-43e2-b72c-b43c3e3e7b34,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44451,99129ed8-9912-43e2-b72c-b43c3e3e7b34,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44452,c6c85e08-f60e-4e2b-89d3-db3eb70640d4,LIST_ACCOUNTS,xs2aListAccounts,true -44453,c6c85e08-f60e-4e2b-89d3-db3eb70640d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44453,c6c85e08-f60e-4e2b-89d3-db3eb70640d4,LIST_TRANSACTIONS,xs2aListTransactions,true 44454,c6c85e08-f60e-4e2b-89d3-db3eb70640d4,AUTHORIZATION,,true 44455,c6c85e08-f60e-4e2b-89d3-db3eb70640d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44456,c6c85e08-f60e-4e2b-89d3-db3eb70640d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44457,c6c85e08-f60e-4e2b-89d3-db3eb70640d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44458,1f583373-198c-4259-9617-962527f621fe,LIST_ACCOUNTS,hbciListAccounts,false -44459,1f583373-198c-4259-9617-962527f621fe,LIST_TRANSACTIONS,hbciListTransactions,false -44460,1f583373-198c-4259-9617-962527f621fe,AUTHORIZATION,,false -44461,1f583373-198c-4259-9617-962527f621fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44462,1f583373-198c-4259-9617-962527f621fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44463,1f583373-198c-4259-9617-962527f621fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44458,430cfee5-ded1-44a6-8fd8-4edda74ae98f,LIST_ACCOUNTS,hbciListAccounts,false +44459,430cfee5-ded1-44a6-8fd8-4edda74ae98f,LIST_TRANSACTIONS,hbciListTransactions,false +44460,430cfee5-ded1-44a6-8fd8-4edda74ae98f,AUTHORIZATION,,false +44461,430cfee5-ded1-44a6-8fd8-4edda74ae98f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44462,430cfee5-ded1-44a6-8fd8-4edda74ae98f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44463,430cfee5-ded1-44a6-8fd8-4edda74ae98f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44464,1742c1fc-edc3-4b8d-814f-2e055d75025a,LIST_ACCOUNTS,xs2aListAccounts,true -44465,1742c1fc-edc3-4b8d-814f-2e055d75025a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44465,1742c1fc-edc3-4b8d-814f-2e055d75025a,LIST_TRANSACTIONS,xs2aListTransactions,true 44466,1742c1fc-edc3-4b8d-814f-2e055d75025a,AUTHORIZATION,,true 44467,1742c1fc-edc3-4b8d-814f-2e055d75025a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44468,1742c1fc-edc3-4b8d-814f-2e055d75025a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44469,1742c1fc-edc3-4b8d-814f-2e055d75025a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44470,4866df7f-bb37-4067-ad30-8052c04c8f4d,LIST_ACCOUNTS,hbciListAccounts,false -44471,4866df7f-bb37-4067-ad30-8052c04c8f4d,LIST_TRANSACTIONS,hbciListTransactions,false -44472,4866df7f-bb37-4067-ad30-8052c04c8f4d,AUTHORIZATION,,false -44473,4866df7f-bb37-4067-ad30-8052c04c8f4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44474,4866df7f-bb37-4067-ad30-8052c04c8f4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44475,4866df7f-bb37-4067-ad30-8052c04c8f4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44470,9739f9b1-3c29-48cc-8bb4-7d37cb5e5f43,LIST_ACCOUNTS,hbciListAccounts,false +44471,9739f9b1-3c29-48cc-8bb4-7d37cb5e5f43,LIST_TRANSACTIONS,hbciListTransactions,false +44472,9739f9b1-3c29-48cc-8bb4-7d37cb5e5f43,AUTHORIZATION,,false +44473,9739f9b1-3c29-48cc-8bb4-7d37cb5e5f43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44474,9739f9b1-3c29-48cc-8bb4-7d37cb5e5f43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44475,9739f9b1-3c29-48cc-8bb4-7d37cb5e5f43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44476,128b6e5d-7389-46be-8ad6-cceaca4ebf2f,LIST_ACCOUNTS,xs2aListAccounts,true -44477,128b6e5d-7389-46be-8ad6-cceaca4ebf2f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44477,128b6e5d-7389-46be-8ad6-cceaca4ebf2f,LIST_TRANSACTIONS,xs2aListTransactions,true 44478,128b6e5d-7389-46be-8ad6-cceaca4ebf2f,AUTHORIZATION,,true 44479,128b6e5d-7389-46be-8ad6-cceaca4ebf2f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44480,128b6e5d-7389-46be-8ad6-cceaca4ebf2f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44481,128b6e5d-7389-46be-8ad6-cceaca4ebf2f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44482,cbb18c6b-7ed0-4c64-ab63-3e128a4e01c3,LIST_ACCOUNTS,hbciListAccounts,false -44483,cbb18c6b-7ed0-4c64-ab63-3e128a4e01c3,LIST_TRANSACTIONS,hbciListTransactions,false -44484,cbb18c6b-7ed0-4c64-ab63-3e128a4e01c3,AUTHORIZATION,,false -44485,cbb18c6b-7ed0-4c64-ab63-3e128a4e01c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44486,cbb18c6b-7ed0-4c64-ab63-3e128a4e01c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44487,cbb18c6b-7ed0-4c64-ab63-3e128a4e01c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44482,d3a0d8ca-6dbb-4507-8869-6df11e7aa6d7,LIST_ACCOUNTS,hbciListAccounts,false +44483,d3a0d8ca-6dbb-4507-8869-6df11e7aa6d7,LIST_TRANSACTIONS,hbciListTransactions,false +44484,d3a0d8ca-6dbb-4507-8869-6df11e7aa6d7,AUTHORIZATION,,false +44485,d3a0d8ca-6dbb-4507-8869-6df11e7aa6d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44486,d3a0d8ca-6dbb-4507-8869-6df11e7aa6d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44487,d3a0d8ca-6dbb-4507-8869-6df11e7aa6d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44488,b0976644-18f0-42b9-9a3d-048c614918af,LIST_ACCOUNTS,xs2aListAccounts,true -44489,b0976644-18f0-42b9-9a3d-048c614918af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44489,b0976644-18f0-42b9-9a3d-048c614918af,LIST_TRANSACTIONS,xs2aListTransactions,true 44490,b0976644-18f0-42b9-9a3d-048c614918af,AUTHORIZATION,,true 44491,b0976644-18f0-42b9-9a3d-048c614918af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44492,b0976644-18f0-42b9-9a3d-048c614918af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44493,b0976644-18f0-42b9-9a3d-048c614918af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44494,61512276-74f9-4bbd-9b87-8fb992f733a8,LIST_ACCOUNTS,hbciListAccounts,false -44495,61512276-74f9-4bbd-9b87-8fb992f733a8,LIST_TRANSACTIONS,hbciListTransactions,false -44496,61512276-74f9-4bbd-9b87-8fb992f733a8,AUTHORIZATION,,false -44497,61512276-74f9-4bbd-9b87-8fb992f733a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44498,61512276-74f9-4bbd-9b87-8fb992f733a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44499,61512276-74f9-4bbd-9b87-8fb992f733a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44494,281e0c6f-8cfe-40ca-8df2-fd995e2e8f05,LIST_ACCOUNTS,hbciListAccounts,false +44495,281e0c6f-8cfe-40ca-8df2-fd995e2e8f05,LIST_TRANSACTIONS,hbciListTransactions,false +44496,281e0c6f-8cfe-40ca-8df2-fd995e2e8f05,AUTHORIZATION,,false +44497,281e0c6f-8cfe-40ca-8df2-fd995e2e8f05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44498,281e0c6f-8cfe-40ca-8df2-fd995e2e8f05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44499,281e0c6f-8cfe-40ca-8df2-fd995e2e8f05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44500,9bc8e3f3-2fc8-4ea6-92b9-aae5a3b94c4b,LIST_ACCOUNTS,xs2aListAccounts,true -44501,9bc8e3f3-2fc8-4ea6-92b9-aae5a3b94c4b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44501,9bc8e3f3-2fc8-4ea6-92b9-aae5a3b94c4b,LIST_TRANSACTIONS,xs2aListTransactions,true 44502,9bc8e3f3-2fc8-4ea6-92b9-aae5a3b94c4b,AUTHORIZATION,,true 44503,9bc8e3f3-2fc8-4ea6-92b9-aae5a3b94c4b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44504,9bc8e3f3-2fc8-4ea6-92b9-aae5a3b94c4b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44505,9bc8e3f3-2fc8-4ea6-92b9-aae5a3b94c4b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44506,ccec8152-1dad-40f0-af21-09ccd44a3b6d,LIST_ACCOUNTS,hbciListAccounts,false -44507,ccec8152-1dad-40f0-af21-09ccd44a3b6d,LIST_TRANSACTIONS,hbciListTransactions,false -44508,ccec8152-1dad-40f0-af21-09ccd44a3b6d,AUTHORIZATION,,false -44509,ccec8152-1dad-40f0-af21-09ccd44a3b6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44510,ccec8152-1dad-40f0-af21-09ccd44a3b6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44511,ccec8152-1dad-40f0-af21-09ccd44a3b6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44506,7e047ead-0bce-40d5-9b36-b164c1b8d033,LIST_ACCOUNTS,hbciListAccounts,false +44507,7e047ead-0bce-40d5-9b36-b164c1b8d033,LIST_TRANSACTIONS,hbciListTransactions,false +44508,7e047ead-0bce-40d5-9b36-b164c1b8d033,AUTHORIZATION,,false +44509,7e047ead-0bce-40d5-9b36-b164c1b8d033,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44510,7e047ead-0bce-40d5-9b36-b164c1b8d033,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44511,7e047ead-0bce-40d5-9b36-b164c1b8d033,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44512,32a7092c-e78f-4807-abac-f9dd9468addd,LIST_ACCOUNTS,xs2aListAccounts,true -44513,32a7092c-e78f-4807-abac-f9dd9468addd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44513,32a7092c-e78f-4807-abac-f9dd9468addd,LIST_TRANSACTIONS,xs2aListTransactions,true 44514,32a7092c-e78f-4807-abac-f9dd9468addd,AUTHORIZATION,,true 44515,32a7092c-e78f-4807-abac-f9dd9468addd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44516,32a7092c-e78f-4807-abac-f9dd9468addd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44517,32a7092c-e78f-4807-abac-f9dd9468addd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44518,515d7c07-b302-41ca-aec3-40a5ee797969,LIST_ACCOUNTS,hbciListAccounts,false -44519,515d7c07-b302-41ca-aec3-40a5ee797969,LIST_TRANSACTIONS,hbciListTransactions,false -44520,515d7c07-b302-41ca-aec3-40a5ee797969,AUTHORIZATION,,false -44521,515d7c07-b302-41ca-aec3-40a5ee797969,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44522,515d7c07-b302-41ca-aec3-40a5ee797969,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44523,515d7c07-b302-41ca-aec3-40a5ee797969,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44518,c3cc794d-d67c-4b6f-a547-0850b2ffb975,LIST_ACCOUNTS,hbciListAccounts,false +44519,c3cc794d-d67c-4b6f-a547-0850b2ffb975,LIST_TRANSACTIONS,hbciListTransactions,false +44520,c3cc794d-d67c-4b6f-a547-0850b2ffb975,AUTHORIZATION,,false +44521,c3cc794d-d67c-4b6f-a547-0850b2ffb975,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44522,c3cc794d-d67c-4b6f-a547-0850b2ffb975,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44523,c3cc794d-d67c-4b6f-a547-0850b2ffb975,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44524,8158d6a1-6365-4537-9cdd-54ea0f3cfd78,LIST_ACCOUNTS,xs2aListAccounts,true -44525,8158d6a1-6365-4537-9cdd-54ea0f3cfd78,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44525,8158d6a1-6365-4537-9cdd-54ea0f3cfd78,LIST_TRANSACTIONS,xs2aListTransactions,true 44526,8158d6a1-6365-4537-9cdd-54ea0f3cfd78,AUTHORIZATION,,true 44527,8158d6a1-6365-4537-9cdd-54ea0f3cfd78,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44528,8158d6a1-6365-4537-9cdd-54ea0f3cfd78,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44529,8158d6a1-6365-4537-9cdd-54ea0f3cfd78,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44530,76ce31ac-df28-4208-b1c5-c18af7e9b4e9,LIST_ACCOUNTS,hbciListAccounts,false -44531,76ce31ac-df28-4208-b1c5-c18af7e9b4e9,LIST_TRANSACTIONS,hbciListTransactions,false -44532,76ce31ac-df28-4208-b1c5-c18af7e9b4e9,AUTHORIZATION,,false -44533,76ce31ac-df28-4208-b1c5-c18af7e9b4e9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44534,76ce31ac-df28-4208-b1c5-c18af7e9b4e9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44535,76ce31ac-df28-4208-b1c5-c18af7e9b4e9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44530,e8c9b2e9-201b-436e-aa60-8585e7830037,LIST_ACCOUNTS,hbciListAccounts,false +44531,e8c9b2e9-201b-436e-aa60-8585e7830037,LIST_TRANSACTIONS,hbciListTransactions,false +44532,e8c9b2e9-201b-436e-aa60-8585e7830037,AUTHORIZATION,,false +44533,e8c9b2e9-201b-436e-aa60-8585e7830037,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44534,e8c9b2e9-201b-436e-aa60-8585e7830037,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44535,e8c9b2e9-201b-436e-aa60-8585e7830037,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44536,3de86930-7646-42f6-ac53-02dcbbd03e3b,LIST_ACCOUNTS,xs2aListAccounts,true -44537,3de86930-7646-42f6-ac53-02dcbbd03e3b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44537,3de86930-7646-42f6-ac53-02dcbbd03e3b,LIST_TRANSACTIONS,xs2aListTransactions,true 44538,3de86930-7646-42f6-ac53-02dcbbd03e3b,AUTHORIZATION,,true 44539,3de86930-7646-42f6-ac53-02dcbbd03e3b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44540,3de86930-7646-42f6-ac53-02dcbbd03e3b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44541,3de86930-7646-42f6-ac53-02dcbbd03e3b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44542,128056a5-31af-4957-87d2-94ed949d188c,LIST_ACCOUNTS,hbciListAccounts,false -44543,128056a5-31af-4957-87d2-94ed949d188c,LIST_TRANSACTIONS,hbciListTransactions,false -44544,128056a5-31af-4957-87d2-94ed949d188c,AUTHORIZATION,,false -44545,128056a5-31af-4957-87d2-94ed949d188c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44546,128056a5-31af-4957-87d2-94ed949d188c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44547,128056a5-31af-4957-87d2-94ed949d188c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44542,6e67ff07-382a-44ee-b4ad-62009e0aa592,LIST_ACCOUNTS,hbciListAccounts,false +44543,6e67ff07-382a-44ee-b4ad-62009e0aa592,LIST_TRANSACTIONS,hbciListTransactions,false +44544,6e67ff07-382a-44ee-b4ad-62009e0aa592,AUTHORIZATION,,false +44545,6e67ff07-382a-44ee-b4ad-62009e0aa592,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44546,6e67ff07-382a-44ee-b4ad-62009e0aa592,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44547,6e67ff07-382a-44ee-b4ad-62009e0aa592,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44548,35d21e8a-338f-40d8-b873-f45a19603b8f,LIST_ACCOUNTS,xs2aListAccounts,true -44549,35d21e8a-338f-40d8-b873-f45a19603b8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44549,35d21e8a-338f-40d8-b873-f45a19603b8f,LIST_TRANSACTIONS,xs2aListTransactions,true 44550,35d21e8a-338f-40d8-b873-f45a19603b8f,AUTHORIZATION,,true 44551,35d21e8a-338f-40d8-b873-f45a19603b8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44552,35d21e8a-338f-40d8-b873-f45a19603b8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44553,35d21e8a-338f-40d8-b873-f45a19603b8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44554,a5622c6f-4d23-4e37-95d1-f83414b0786f,LIST_ACCOUNTS,hbciListAccounts,false -44555,a5622c6f-4d23-4e37-95d1-f83414b0786f,LIST_TRANSACTIONS,hbciListTransactions,false -44556,a5622c6f-4d23-4e37-95d1-f83414b0786f,AUTHORIZATION,,false -44557,a5622c6f-4d23-4e37-95d1-f83414b0786f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44558,a5622c6f-4d23-4e37-95d1-f83414b0786f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44559,a5622c6f-4d23-4e37-95d1-f83414b0786f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44554,69dae978-6dec-4264-b704-16b5fc8ac0d0,LIST_ACCOUNTS,hbciListAccounts,false +44555,69dae978-6dec-4264-b704-16b5fc8ac0d0,LIST_TRANSACTIONS,hbciListTransactions,false +44556,69dae978-6dec-4264-b704-16b5fc8ac0d0,AUTHORIZATION,,false +44557,69dae978-6dec-4264-b704-16b5fc8ac0d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44558,69dae978-6dec-4264-b704-16b5fc8ac0d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44559,69dae978-6dec-4264-b704-16b5fc8ac0d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44560,d2085e3f-9756-428a-b226-98849bc90c65,LIST_ACCOUNTS,xs2aListAccounts,true -44561,d2085e3f-9756-428a-b226-98849bc90c65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44561,d2085e3f-9756-428a-b226-98849bc90c65,LIST_TRANSACTIONS,xs2aListTransactions,true 44562,d2085e3f-9756-428a-b226-98849bc90c65,AUTHORIZATION,,true 44563,d2085e3f-9756-428a-b226-98849bc90c65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44564,d2085e3f-9756-428a-b226-98849bc90c65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44565,d2085e3f-9756-428a-b226-98849bc90c65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44566,273af76f-2094-4d35-9416-732bf86e710a,LIST_ACCOUNTS,hbciListAccounts,false -44567,273af76f-2094-4d35-9416-732bf86e710a,LIST_TRANSACTIONS,hbciListTransactions,false -44568,273af76f-2094-4d35-9416-732bf86e710a,AUTHORIZATION,,false -44569,273af76f-2094-4d35-9416-732bf86e710a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44570,273af76f-2094-4d35-9416-732bf86e710a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44571,273af76f-2094-4d35-9416-732bf86e710a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44566,725a8910-f674-4589-8d8b-8ef4c3292d67,LIST_ACCOUNTS,hbciListAccounts,false +44567,725a8910-f674-4589-8d8b-8ef4c3292d67,LIST_TRANSACTIONS,hbciListTransactions,false +44568,725a8910-f674-4589-8d8b-8ef4c3292d67,AUTHORIZATION,,false +44569,725a8910-f674-4589-8d8b-8ef4c3292d67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44570,725a8910-f674-4589-8d8b-8ef4c3292d67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44571,725a8910-f674-4589-8d8b-8ef4c3292d67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44572,f5624481-3cb2-417f-b70d-ae0de007514e,LIST_ACCOUNTS,xs2aListAccounts,true -44573,f5624481-3cb2-417f-b70d-ae0de007514e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44573,f5624481-3cb2-417f-b70d-ae0de007514e,LIST_TRANSACTIONS,xs2aListTransactions,true 44574,f5624481-3cb2-417f-b70d-ae0de007514e,AUTHORIZATION,,true 44575,f5624481-3cb2-417f-b70d-ae0de007514e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44576,f5624481-3cb2-417f-b70d-ae0de007514e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44577,f5624481-3cb2-417f-b70d-ae0de007514e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44578,1a2ea71e-b5de-48e8-9574-85e04bb87267,LIST_ACCOUNTS,hbciListAccounts,false -44579,1a2ea71e-b5de-48e8-9574-85e04bb87267,LIST_TRANSACTIONS,hbciListTransactions,false -44580,1a2ea71e-b5de-48e8-9574-85e04bb87267,AUTHORIZATION,,false -44581,1a2ea71e-b5de-48e8-9574-85e04bb87267,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44582,1a2ea71e-b5de-48e8-9574-85e04bb87267,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44583,1a2ea71e-b5de-48e8-9574-85e04bb87267,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44578,39f67947-d1a1-4f3d-84ab-f4df5fac10d8,LIST_ACCOUNTS,hbciListAccounts,false +44579,39f67947-d1a1-4f3d-84ab-f4df5fac10d8,LIST_TRANSACTIONS,hbciListTransactions,false +44580,39f67947-d1a1-4f3d-84ab-f4df5fac10d8,AUTHORIZATION,,false +44581,39f67947-d1a1-4f3d-84ab-f4df5fac10d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44582,39f67947-d1a1-4f3d-84ab-f4df5fac10d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44583,39f67947-d1a1-4f3d-84ab-f4df5fac10d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44584,33b9e8cc-5270-4383-9627-6a11cac7fcbd,LIST_ACCOUNTS,xs2aListAccounts,true -44585,33b9e8cc-5270-4383-9627-6a11cac7fcbd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44585,33b9e8cc-5270-4383-9627-6a11cac7fcbd,LIST_TRANSACTIONS,xs2aListTransactions,true 44586,33b9e8cc-5270-4383-9627-6a11cac7fcbd,AUTHORIZATION,,true 44587,33b9e8cc-5270-4383-9627-6a11cac7fcbd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44588,33b9e8cc-5270-4383-9627-6a11cac7fcbd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44589,33b9e8cc-5270-4383-9627-6a11cac7fcbd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44590,cb1c1b5a-6bf8-484f-8d34-38d0c8949f0f,LIST_ACCOUNTS,hbciListAccounts,false -44591,cb1c1b5a-6bf8-484f-8d34-38d0c8949f0f,LIST_TRANSACTIONS,hbciListTransactions,false -44592,cb1c1b5a-6bf8-484f-8d34-38d0c8949f0f,AUTHORIZATION,,false -44593,cb1c1b5a-6bf8-484f-8d34-38d0c8949f0f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44594,cb1c1b5a-6bf8-484f-8d34-38d0c8949f0f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44595,cb1c1b5a-6bf8-484f-8d34-38d0c8949f0f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44590,2650af12-7c6d-49ad-aeb6-9f5da4b4fdeb,LIST_ACCOUNTS,hbciListAccounts,false +44591,2650af12-7c6d-49ad-aeb6-9f5da4b4fdeb,LIST_TRANSACTIONS,hbciListTransactions,false +44592,2650af12-7c6d-49ad-aeb6-9f5da4b4fdeb,AUTHORIZATION,,false +44593,2650af12-7c6d-49ad-aeb6-9f5da4b4fdeb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44594,2650af12-7c6d-49ad-aeb6-9f5da4b4fdeb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44595,2650af12-7c6d-49ad-aeb6-9f5da4b4fdeb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44596,c220d5f9-1a3c-4f0b-a529-d6d9ac01607d,LIST_ACCOUNTS,xs2aListAccounts,true -44597,c220d5f9-1a3c-4f0b-a529-d6d9ac01607d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44597,c220d5f9-1a3c-4f0b-a529-d6d9ac01607d,LIST_TRANSACTIONS,xs2aListTransactions,true 44598,c220d5f9-1a3c-4f0b-a529-d6d9ac01607d,AUTHORIZATION,,true 44599,c220d5f9-1a3c-4f0b-a529-d6d9ac01607d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44600,c220d5f9-1a3c-4f0b-a529-d6d9ac01607d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44601,c220d5f9-1a3c-4f0b-a529-d6d9ac01607d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44602,c7fe6ecd-14bc-4814-a2f5-c18e6c27e92d,LIST_ACCOUNTS,hbciListAccounts,false -44603,c7fe6ecd-14bc-4814-a2f5-c18e6c27e92d,LIST_TRANSACTIONS,hbciListTransactions,false -44604,c7fe6ecd-14bc-4814-a2f5-c18e6c27e92d,AUTHORIZATION,,false -44605,c7fe6ecd-14bc-4814-a2f5-c18e6c27e92d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44606,c7fe6ecd-14bc-4814-a2f5-c18e6c27e92d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44607,c7fe6ecd-14bc-4814-a2f5-c18e6c27e92d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44602,d654a218-f928-43da-995d-952f2efe4118,LIST_ACCOUNTS,hbciListAccounts,false +44603,d654a218-f928-43da-995d-952f2efe4118,LIST_TRANSACTIONS,hbciListTransactions,false +44604,d654a218-f928-43da-995d-952f2efe4118,AUTHORIZATION,,false +44605,d654a218-f928-43da-995d-952f2efe4118,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44606,d654a218-f928-43da-995d-952f2efe4118,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44607,d654a218-f928-43da-995d-952f2efe4118,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44608,2759135d-feef-4b7f-aae1-046e4b7dfce5,LIST_ACCOUNTS,xs2aListAccounts,true -44609,2759135d-feef-4b7f-aae1-046e4b7dfce5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44609,2759135d-feef-4b7f-aae1-046e4b7dfce5,LIST_TRANSACTIONS,xs2aListTransactions,true 44610,2759135d-feef-4b7f-aae1-046e4b7dfce5,AUTHORIZATION,,true 44611,2759135d-feef-4b7f-aae1-046e4b7dfce5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44612,2759135d-feef-4b7f-aae1-046e4b7dfce5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44613,2759135d-feef-4b7f-aae1-046e4b7dfce5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44614,9e6fe244-ea8d-443c-aecc-6dc8809f77f5,LIST_ACCOUNTS,hbciListAccounts,false -44615,9e6fe244-ea8d-443c-aecc-6dc8809f77f5,LIST_TRANSACTIONS,hbciListTransactions,false -44616,9e6fe244-ea8d-443c-aecc-6dc8809f77f5,AUTHORIZATION,,false -44617,9e6fe244-ea8d-443c-aecc-6dc8809f77f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44618,9e6fe244-ea8d-443c-aecc-6dc8809f77f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44619,9e6fe244-ea8d-443c-aecc-6dc8809f77f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44614,b8a7338f-f7a0-4b20-b4b2-966889b61c28,LIST_ACCOUNTS,hbciListAccounts,false +44615,b8a7338f-f7a0-4b20-b4b2-966889b61c28,LIST_TRANSACTIONS,hbciListTransactions,false +44616,b8a7338f-f7a0-4b20-b4b2-966889b61c28,AUTHORIZATION,,false +44617,b8a7338f-f7a0-4b20-b4b2-966889b61c28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44618,b8a7338f-f7a0-4b20-b4b2-966889b61c28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44619,b8a7338f-f7a0-4b20-b4b2-966889b61c28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44620,99e68e76-1177-4bb4-b6cd-db09a9c02e6a,LIST_ACCOUNTS,xs2aListAccounts,true -44621,99e68e76-1177-4bb4-b6cd-db09a9c02e6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44621,99e68e76-1177-4bb4-b6cd-db09a9c02e6a,LIST_TRANSACTIONS,xs2aListTransactions,true 44622,99e68e76-1177-4bb4-b6cd-db09a9c02e6a,AUTHORIZATION,,true 44623,99e68e76-1177-4bb4-b6cd-db09a9c02e6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44624,99e68e76-1177-4bb4-b6cd-db09a9c02e6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44625,99e68e76-1177-4bb4-b6cd-db09a9c02e6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44626,a5b37d96-c7e2-471c-b3df-10c04639fd74,LIST_ACCOUNTS,hbciListAccounts,false -44627,a5b37d96-c7e2-471c-b3df-10c04639fd74,LIST_TRANSACTIONS,hbciListTransactions,false -44628,a5b37d96-c7e2-471c-b3df-10c04639fd74,AUTHORIZATION,,false -44629,a5b37d96-c7e2-471c-b3df-10c04639fd74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44630,a5b37d96-c7e2-471c-b3df-10c04639fd74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44631,a5b37d96-c7e2-471c-b3df-10c04639fd74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44626,ce61f3ac-1725-479c-a36f-262ad3750329,LIST_ACCOUNTS,hbciListAccounts,false +44627,ce61f3ac-1725-479c-a36f-262ad3750329,LIST_TRANSACTIONS,hbciListTransactions,false +44628,ce61f3ac-1725-479c-a36f-262ad3750329,AUTHORIZATION,,false +44629,ce61f3ac-1725-479c-a36f-262ad3750329,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44630,ce61f3ac-1725-479c-a36f-262ad3750329,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44631,ce61f3ac-1725-479c-a36f-262ad3750329,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44632,064d629f-9822-4d7a-b241-80377742e9d0,LIST_ACCOUNTS,xs2aListAccounts,true -44633,064d629f-9822-4d7a-b241-80377742e9d0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44633,064d629f-9822-4d7a-b241-80377742e9d0,LIST_TRANSACTIONS,xs2aListTransactions,true 44634,064d629f-9822-4d7a-b241-80377742e9d0,AUTHORIZATION,,true 44635,064d629f-9822-4d7a-b241-80377742e9d0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44636,064d629f-9822-4d7a-b241-80377742e9d0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44637,064d629f-9822-4d7a-b241-80377742e9d0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44638,ea3ff859-0de2-4a0a-8d11-538cfdabb64e,LIST_ACCOUNTS,hbciListAccounts,false -44639,ea3ff859-0de2-4a0a-8d11-538cfdabb64e,LIST_TRANSACTIONS,hbciListTransactions,false -44640,ea3ff859-0de2-4a0a-8d11-538cfdabb64e,AUTHORIZATION,,false -44641,ea3ff859-0de2-4a0a-8d11-538cfdabb64e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44642,ea3ff859-0de2-4a0a-8d11-538cfdabb64e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44643,ea3ff859-0de2-4a0a-8d11-538cfdabb64e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44638,8ac3fb1b-45bf-4a5d-b232-ab41e8a6d400,LIST_ACCOUNTS,hbciListAccounts,false +44639,8ac3fb1b-45bf-4a5d-b232-ab41e8a6d400,LIST_TRANSACTIONS,hbciListTransactions,false +44640,8ac3fb1b-45bf-4a5d-b232-ab41e8a6d400,AUTHORIZATION,,false +44641,8ac3fb1b-45bf-4a5d-b232-ab41e8a6d400,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44642,8ac3fb1b-45bf-4a5d-b232-ab41e8a6d400,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44643,8ac3fb1b-45bf-4a5d-b232-ab41e8a6d400,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44644,3193e608-5163-4b94-b4b9-b005fbd3b2bf,LIST_ACCOUNTS,xs2aListAccounts,true -44645,3193e608-5163-4b94-b4b9-b005fbd3b2bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44645,3193e608-5163-4b94-b4b9-b005fbd3b2bf,LIST_TRANSACTIONS,xs2aListTransactions,true 44646,3193e608-5163-4b94-b4b9-b005fbd3b2bf,AUTHORIZATION,,true 44647,3193e608-5163-4b94-b4b9-b005fbd3b2bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44648,3193e608-5163-4b94-b4b9-b005fbd3b2bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44649,3193e608-5163-4b94-b4b9-b005fbd3b2bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44650,da0af930-cf7a-40c9-9798-5b862ecc24f2,LIST_ACCOUNTS,hbciListAccounts,false -44651,da0af930-cf7a-40c9-9798-5b862ecc24f2,LIST_TRANSACTIONS,hbciListTransactions,false -44652,da0af930-cf7a-40c9-9798-5b862ecc24f2,AUTHORIZATION,,false -44653,da0af930-cf7a-40c9-9798-5b862ecc24f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44654,da0af930-cf7a-40c9-9798-5b862ecc24f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44655,da0af930-cf7a-40c9-9798-5b862ecc24f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44650,84ec0a46-6052-4569-a34e-863728d5fab9,LIST_ACCOUNTS,hbciListAccounts,false +44651,84ec0a46-6052-4569-a34e-863728d5fab9,LIST_TRANSACTIONS,hbciListTransactions,false +44652,84ec0a46-6052-4569-a34e-863728d5fab9,AUTHORIZATION,,false +44653,84ec0a46-6052-4569-a34e-863728d5fab9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44654,84ec0a46-6052-4569-a34e-863728d5fab9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44655,84ec0a46-6052-4569-a34e-863728d5fab9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44656,d565ffeb-b5b3-4105-8d79-211ed6541d9b,LIST_ACCOUNTS,xs2aListAccounts,true -44657,d565ffeb-b5b3-4105-8d79-211ed6541d9b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44657,d565ffeb-b5b3-4105-8d79-211ed6541d9b,LIST_TRANSACTIONS,xs2aListTransactions,true 44658,d565ffeb-b5b3-4105-8d79-211ed6541d9b,AUTHORIZATION,,true 44659,d565ffeb-b5b3-4105-8d79-211ed6541d9b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44660,d565ffeb-b5b3-4105-8d79-211ed6541d9b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44661,d565ffeb-b5b3-4105-8d79-211ed6541d9b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44662,b1e312bb-8baf-40a1-8c3e-a8f76ec84d10,LIST_ACCOUNTS,hbciListAccounts,false -44663,b1e312bb-8baf-40a1-8c3e-a8f76ec84d10,LIST_TRANSACTIONS,hbciListTransactions,false -44664,b1e312bb-8baf-40a1-8c3e-a8f76ec84d10,AUTHORIZATION,,false -44665,b1e312bb-8baf-40a1-8c3e-a8f76ec84d10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44666,b1e312bb-8baf-40a1-8c3e-a8f76ec84d10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44667,b1e312bb-8baf-40a1-8c3e-a8f76ec84d10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44662,1c45e448-949b-4cc4-b51a-1acb6017488d,LIST_ACCOUNTS,hbciListAccounts,false +44663,1c45e448-949b-4cc4-b51a-1acb6017488d,LIST_TRANSACTIONS,hbciListTransactions,false +44664,1c45e448-949b-4cc4-b51a-1acb6017488d,AUTHORIZATION,,false +44665,1c45e448-949b-4cc4-b51a-1acb6017488d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44666,1c45e448-949b-4cc4-b51a-1acb6017488d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44667,1c45e448-949b-4cc4-b51a-1acb6017488d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44668,aa618dc8-b2c5-44e0-90e0-f04183bf9c2c,LIST_ACCOUNTS,xs2aListAccounts,true -44669,aa618dc8-b2c5-44e0-90e0-f04183bf9c2c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44669,aa618dc8-b2c5-44e0-90e0-f04183bf9c2c,LIST_TRANSACTIONS,xs2aListTransactions,true 44670,aa618dc8-b2c5-44e0-90e0-f04183bf9c2c,AUTHORIZATION,,true 44671,aa618dc8-b2c5-44e0-90e0-f04183bf9c2c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44672,aa618dc8-b2c5-44e0-90e0-f04183bf9c2c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44673,aa618dc8-b2c5-44e0-90e0-f04183bf9c2c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44674,5da450f6-af48-4fe3-b36a-96397a74961b,LIST_ACCOUNTS,hbciListAccounts,false -44675,5da450f6-af48-4fe3-b36a-96397a74961b,LIST_TRANSACTIONS,hbciListTransactions,false -44676,5da450f6-af48-4fe3-b36a-96397a74961b,AUTHORIZATION,,false -44677,5da450f6-af48-4fe3-b36a-96397a74961b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44678,5da450f6-af48-4fe3-b36a-96397a74961b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44679,5da450f6-af48-4fe3-b36a-96397a74961b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44674,2408aa27-6e2e-4af4-9fe9-8a9def239171,LIST_ACCOUNTS,hbciListAccounts,false +44675,2408aa27-6e2e-4af4-9fe9-8a9def239171,LIST_TRANSACTIONS,hbciListTransactions,false +44676,2408aa27-6e2e-4af4-9fe9-8a9def239171,AUTHORIZATION,,false +44677,2408aa27-6e2e-4af4-9fe9-8a9def239171,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44678,2408aa27-6e2e-4af4-9fe9-8a9def239171,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44679,2408aa27-6e2e-4af4-9fe9-8a9def239171,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44680,7bcbed03-1be2-4944-9617-ae829765af47,LIST_ACCOUNTS,xs2aListAccounts,true -44681,7bcbed03-1be2-4944-9617-ae829765af47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44681,7bcbed03-1be2-4944-9617-ae829765af47,LIST_TRANSACTIONS,xs2aListTransactions,true 44682,7bcbed03-1be2-4944-9617-ae829765af47,AUTHORIZATION,,true 44683,7bcbed03-1be2-4944-9617-ae829765af47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44684,7bcbed03-1be2-4944-9617-ae829765af47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44685,7bcbed03-1be2-4944-9617-ae829765af47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44686,0da45443-5590-4bf3-979d-48d32e999f25,LIST_ACCOUNTS,hbciListAccounts,false -44687,0da45443-5590-4bf3-979d-48d32e999f25,LIST_TRANSACTIONS,hbciListTransactions,false -44688,0da45443-5590-4bf3-979d-48d32e999f25,AUTHORIZATION,,false -44689,0da45443-5590-4bf3-979d-48d32e999f25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44690,0da45443-5590-4bf3-979d-48d32e999f25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44691,0da45443-5590-4bf3-979d-48d32e999f25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44686,2c4a2f76-e5f9-4e6f-a9b0-168ec1fa2d15,LIST_ACCOUNTS,hbciListAccounts,false +44687,2c4a2f76-e5f9-4e6f-a9b0-168ec1fa2d15,LIST_TRANSACTIONS,hbciListTransactions,false +44688,2c4a2f76-e5f9-4e6f-a9b0-168ec1fa2d15,AUTHORIZATION,,false +44689,2c4a2f76-e5f9-4e6f-a9b0-168ec1fa2d15,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44690,2c4a2f76-e5f9-4e6f-a9b0-168ec1fa2d15,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44691,2c4a2f76-e5f9-4e6f-a9b0-168ec1fa2d15,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44692,dff96129-cfcf-4c27-a996-84f86fec4fe2,LIST_ACCOUNTS,xs2aListAccounts,true -44693,dff96129-cfcf-4c27-a996-84f86fec4fe2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44693,dff96129-cfcf-4c27-a996-84f86fec4fe2,LIST_TRANSACTIONS,xs2aListTransactions,true 44694,dff96129-cfcf-4c27-a996-84f86fec4fe2,AUTHORIZATION,,true 44695,dff96129-cfcf-4c27-a996-84f86fec4fe2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44696,dff96129-cfcf-4c27-a996-84f86fec4fe2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44697,dff96129-cfcf-4c27-a996-84f86fec4fe2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44698,c72aad27-cda9-4cdb-a48a-d634104db909,LIST_ACCOUNTS,hbciListAccounts,false -44699,c72aad27-cda9-4cdb-a48a-d634104db909,LIST_TRANSACTIONS,hbciListTransactions,false -44700,c72aad27-cda9-4cdb-a48a-d634104db909,AUTHORIZATION,,false -44701,c72aad27-cda9-4cdb-a48a-d634104db909,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44702,c72aad27-cda9-4cdb-a48a-d634104db909,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44703,c72aad27-cda9-4cdb-a48a-d634104db909,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44698,0fd096bd-8854-4ffb-aea0-9c26176ff849,LIST_ACCOUNTS,hbciListAccounts,false +44699,0fd096bd-8854-4ffb-aea0-9c26176ff849,LIST_TRANSACTIONS,hbciListTransactions,false +44700,0fd096bd-8854-4ffb-aea0-9c26176ff849,AUTHORIZATION,,false +44701,0fd096bd-8854-4ffb-aea0-9c26176ff849,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44702,0fd096bd-8854-4ffb-aea0-9c26176ff849,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44703,0fd096bd-8854-4ffb-aea0-9c26176ff849,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44704,9e2d5904-0e20-4441-95c4-6814b6690023,LIST_ACCOUNTS,xs2aListAccounts,true -44705,9e2d5904-0e20-4441-95c4-6814b6690023,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44705,9e2d5904-0e20-4441-95c4-6814b6690023,LIST_TRANSACTIONS,xs2aListTransactions,true 44706,9e2d5904-0e20-4441-95c4-6814b6690023,AUTHORIZATION,,true 44707,9e2d5904-0e20-4441-95c4-6814b6690023,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44708,9e2d5904-0e20-4441-95c4-6814b6690023,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44709,9e2d5904-0e20-4441-95c4-6814b6690023,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44710,fb42305f-ed6d-4afa-a05a-f8d10e97bd8f,LIST_ACCOUNTS,hbciListAccounts,false -44711,fb42305f-ed6d-4afa-a05a-f8d10e97bd8f,LIST_TRANSACTIONS,hbciListTransactions,false -44712,fb42305f-ed6d-4afa-a05a-f8d10e97bd8f,AUTHORIZATION,,false -44713,fb42305f-ed6d-4afa-a05a-f8d10e97bd8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44714,fb42305f-ed6d-4afa-a05a-f8d10e97bd8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44715,fb42305f-ed6d-4afa-a05a-f8d10e97bd8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44710,85985905-370a-4e3c-8472-07749c782d7f,LIST_ACCOUNTS,hbciListAccounts,false +44711,85985905-370a-4e3c-8472-07749c782d7f,LIST_TRANSACTIONS,hbciListTransactions,false +44712,85985905-370a-4e3c-8472-07749c782d7f,AUTHORIZATION,,false +44713,85985905-370a-4e3c-8472-07749c782d7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44714,85985905-370a-4e3c-8472-07749c782d7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44715,85985905-370a-4e3c-8472-07749c782d7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44716,681fc316-fc22-4db2-9de4-cb49c3d26645,LIST_ACCOUNTS,xs2aListAccounts,true -44717,681fc316-fc22-4db2-9de4-cb49c3d26645,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44717,681fc316-fc22-4db2-9de4-cb49c3d26645,LIST_TRANSACTIONS,xs2aListTransactions,true 44718,681fc316-fc22-4db2-9de4-cb49c3d26645,AUTHORIZATION,,true 44719,681fc316-fc22-4db2-9de4-cb49c3d26645,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44720,681fc316-fc22-4db2-9de4-cb49c3d26645,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44721,681fc316-fc22-4db2-9de4-cb49c3d26645,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44722,08c150e1-050a-429e-a60f-477a523a4052,LIST_ACCOUNTS,hbciListAccounts,false -44723,08c150e1-050a-429e-a60f-477a523a4052,LIST_TRANSACTIONS,hbciListTransactions,false -44724,08c150e1-050a-429e-a60f-477a523a4052,AUTHORIZATION,,false -44725,08c150e1-050a-429e-a60f-477a523a4052,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44726,08c150e1-050a-429e-a60f-477a523a4052,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44727,08c150e1-050a-429e-a60f-477a523a4052,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44722,f9fb3802-0ddd-4a5c-b25a-362eeec3bd69,LIST_ACCOUNTS,hbciListAccounts,false +44723,f9fb3802-0ddd-4a5c-b25a-362eeec3bd69,LIST_TRANSACTIONS,hbciListTransactions,false +44724,f9fb3802-0ddd-4a5c-b25a-362eeec3bd69,AUTHORIZATION,,false +44725,f9fb3802-0ddd-4a5c-b25a-362eeec3bd69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44726,f9fb3802-0ddd-4a5c-b25a-362eeec3bd69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44727,f9fb3802-0ddd-4a5c-b25a-362eeec3bd69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44728,1c5a5d91-0e83-4f20-9da6-afd497d9ff5d,LIST_ACCOUNTS,xs2aListAccounts,true -44729,1c5a5d91-0e83-4f20-9da6-afd497d9ff5d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44729,1c5a5d91-0e83-4f20-9da6-afd497d9ff5d,LIST_TRANSACTIONS,xs2aListTransactions,true 44730,1c5a5d91-0e83-4f20-9da6-afd497d9ff5d,AUTHORIZATION,,true 44731,1c5a5d91-0e83-4f20-9da6-afd497d9ff5d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44732,1c5a5d91-0e83-4f20-9da6-afd497d9ff5d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44733,1c5a5d91-0e83-4f20-9da6-afd497d9ff5d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44734,6c57dafd-18c4-4f10-844d-6de2de607465,LIST_ACCOUNTS,hbciListAccounts,false -44735,6c57dafd-18c4-4f10-844d-6de2de607465,LIST_TRANSACTIONS,hbciListTransactions,false -44736,6c57dafd-18c4-4f10-844d-6de2de607465,AUTHORIZATION,,false -44737,6c57dafd-18c4-4f10-844d-6de2de607465,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44738,6c57dafd-18c4-4f10-844d-6de2de607465,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44739,6c57dafd-18c4-4f10-844d-6de2de607465,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44734,26d210bb-9664-4016-a067-b7360dfc7d54,LIST_ACCOUNTS,hbciListAccounts,false +44735,26d210bb-9664-4016-a067-b7360dfc7d54,LIST_TRANSACTIONS,hbciListTransactions,false +44736,26d210bb-9664-4016-a067-b7360dfc7d54,AUTHORIZATION,,false +44737,26d210bb-9664-4016-a067-b7360dfc7d54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44738,26d210bb-9664-4016-a067-b7360dfc7d54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44739,26d210bb-9664-4016-a067-b7360dfc7d54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44740,98eb3563-7966-4e0e-93b7-aa4365f269d7,LIST_ACCOUNTS,xs2aListAccounts,true -44741,98eb3563-7966-4e0e-93b7-aa4365f269d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44741,98eb3563-7966-4e0e-93b7-aa4365f269d7,LIST_TRANSACTIONS,xs2aListTransactions,true 44742,98eb3563-7966-4e0e-93b7-aa4365f269d7,AUTHORIZATION,,true 44743,98eb3563-7966-4e0e-93b7-aa4365f269d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44744,98eb3563-7966-4e0e-93b7-aa4365f269d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44745,98eb3563-7966-4e0e-93b7-aa4365f269d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44746,0b4ed421-d2a9-4044-9a89-1e0d030a4888,LIST_ACCOUNTS,hbciListAccounts,false -44747,0b4ed421-d2a9-4044-9a89-1e0d030a4888,LIST_TRANSACTIONS,hbciListTransactions,false -44748,0b4ed421-d2a9-4044-9a89-1e0d030a4888,AUTHORIZATION,,false -44749,0b4ed421-d2a9-4044-9a89-1e0d030a4888,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44750,0b4ed421-d2a9-4044-9a89-1e0d030a4888,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44751,0b4ed421-d2a9-4044-9a89-1e0d030a4888,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44746,d7e2edb5-762c-4928-bc20-0f10fa013302,LIST_ACCOUNTS,hbciListAccounts,false +44747,d7e2edb5-762c-4928-bc20-0f10fa013302,LIST_TRANSACTIONS,hbciListTransactions,false +44748,d7e2edb5-762c-4928-bc20-0f10fa013302,AUTHORIZATION,,false +44749,d7e2edb5-762c-4928-bc20-0f10fa013302,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44750,d7e2edb5-762c-4928-bc20-0f10fa013302,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44751,d7e2edb5-762c-4928-bc20-0f10fa013302,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44752,866f0ee4-aadf-49c3-b2db-ba490cb365d5,LIST_ACCOUNTS,xs2aListAccounts,true -44753,866f0ee4-aadf-49c3-b2db-ba490cb365d5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44753,866f0ee4-aadf-49c3-b2db-ba490cb365d5,LIST_TRANSACTIONS,xs2aListTransactions,true 44754,866f0ee4-aadf-49c3-b2db-ba490cb365d5,AUTHORIZATION,,true 44755,866f0ee4-aadf-49c3-b2db-ba490cb365d5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44756,866f0ee4-aadf-49c3-b2db-ba490cb365d5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44757,866f0ee4-aadf-49c3-b2db-ba490cb365d5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44758,dd9ce4dc-90af-45a6-89ac-faddd6376cba,LIST_ACCOUNTS,hbciListAccounts,false -44759,dd9ce4dc-90af-45a6-89ac-faddd6376cba,LIST_TRANSACTIONS,hbciListTransactions,false -44760,dd9ce4dc-90af-45a6-89ac-faddd6376cba,AUTHORIZATION,,false -44761,dd9ce4dc-90af-45a6-89ac-faddd6376cba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44762,dd9ce4dc-90af-45a6-89ac-faddd6376cba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44763,dd9ce4dc-90af-45a6-89ac-faddd6376cba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44758,1a024578-2d8f-4a0e-8f00-976392b228ee,LIST_ACCOUNTS,hbciListAccounts,false +44759,1a024578-2d8f-4a0e-8f00-976392b228ee,LIST_TRANSACTIONS,hbciListTransactions,false +44760,1a024578-2d8f-4a0e-8f00-976392b228ee,AUTHORIZATION,,false +44761,1a024578-2d8f-4a0e-8f00-976392b228ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44762,1a024578-2d8f-4a0e-8f00-976392b228ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44763,1a024578-2d8f-4a0e-8f00-976392b228ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44764,a47e4df4-bb92-4165-8d0d-4fe3f7e944be,LIST_ACCOUNTS,xs2aListAccounts,true -44765,a47e4df4-bb92-4165-8d0d-4fe3f7e944be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44765,a47e4df4-bb92-4165-8d0d-4fe3f7e944be,LIST_TRANSACTIONS,xs2aListTransactions,true 44766,a47e4df4-bb92-4165-8d0d-4fe3f7e944be,AUTHORIZATION,,true 44767,a47e4df4-bb92-4165-8d0d-4fe3f7e944be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44768,a47e4df4-bb92-4165-8d0d-4fe3f7e944be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44769,a47e4df4-bb92-4165-8d0d-4fe3f7e944be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44770,7da9df8d-52cf-44e0-809e-16e1f6e45adb,LIST_ACCOUNTS,hbciListAccounts,false -44771,7da9df8d-52cf-44e0-809e-16e1f6e45adb,LIST_TRANSACTIONS,hbciListTransactions,false -44772,7da9df8d-52cf-44e0-809e-16e1f6e45adb,AUTHORIZATION,,false -44773,7da9df8d-52cf-44e0-809e-16e1f6e45adb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44774,7da9df8d-52cf-44e0-809e-16e1f6e45adb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44775,7da9df8d-52cf-44e0-809e-16e1f6e45adb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44770,7cedbf97-7e92-445b-828a-b77567fd7df9,LIST_ACCOUNTS,hbciListAccounts,false +44771,7cedbf97-7e92-445b-828a-b77567fd7df9,LIST_TRANSACTIONS,hbciListTransactions,false +44772,7cedbf97-7e92-445b-828a-b77567fd7df9,AUTHORIZATION,,false +44773,7cedbf97-7e92-445b-828a-b77567fd7df9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44774,7cedbf97-7e92-445b-828a-b77567fd7df9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44775,7cedbf97-7e92-445b-828a-b77567fd7df9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44776,5e7333a5-6e61-4856-b321-73d6874b9e26,LIST_ACCOUNTS,xs2aListAccounts,true -44777,5e7333a5-6e61-4856-b321-73d6874b9e26,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44777,5e7333a5-6e61-4856-b321-73d6874b9e26,LIST_TRANSACTIONS,xs2aListTransactions,true 44778,5e7333a5-6e61-4856-b321-73d6874b9e26,AUTHORIZATION,,true 44779,5e7333a5-6e61-4856-b321-73d6874b9e26,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44780,5e7333a5-6e61-4856-b321-73d6874b9e26,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44781,5e7333a5-6e61-4856-b321-73d6874b9e26,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44782,d74f26cf-dc55-4344-bc24-a425b9cc3c8d,LIST_ACCOUNTS,hbciListAccounts,false -44783,d74f26cf-dc55-4344-bc24-a425b9cc3c8d,LIST_TRANSACTIONS,hbciListTransactions,false -44784,d74f26cf-dc55-4344-bc24-a425b9cc3c8d,AUTHORIZATION,,false -44785,d74f26cf-dc55-4344-bc24-a425b9cc3c8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44786,d74f26cf-dc55-4344-bc24-a425b9cc3c8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44787,d74f26cf-dc55-4344-bc24-a425b9cc3c8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44782,bdbbd73b-e159-4834-95ad-15f2956453cb,LIST_ACCOUNTS,hbciListAccounts,false +44783,bdbbd73b-e159-4834-95ad-15f2956453cb,LIST_TRANSACTIONS,hbciListTransactions,false +44784,bdbbd73b-e159-4834-95ad-15f2956453cb,AUTHORIZATION,,false +44785,bdbbd73b-e159-4834-95ad-15f2956453cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44786,bdbbd73b-e159-4834-95ad-15f2956453cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44787,bdbbd73b-e159-4834-95ad-15f2956453cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44788,75435973-ab8e-43b0-ac7e-dda24e9199c2,LIST_ACCOUNTS,xs2aListAccounts,true -44789,75435973-ab8e-43b0-ac7e-dda24e9199c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44789,75435973-ab8e-43b0-ac7e-dda24e9199c2,LIST_TRANSACTIONS,xs2aListTransactions,true 44790,75435973-ab8e-43b0-ac7e-dda24e9199c2,AUTHORIZATION,,true 44791,75435973-ab8e-43b0-ac7e-dda24e9199c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44792,75435973-ab8e-43b0-ac7e-dda24e9199c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44793,75435973-ab8e-43b0-ac7e-dda24e9199c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44794,3f116384-889d-475c-8c41-07418818be45,LIST_ACCOUNTS,hbciListAccounts,false -44795,3f116384-889d-475c-8c41-07418818be45,LIST_TRANSACTIONS,hbciListTransactions,false -44796,3f116384-889d-475c-8c41-07418818be45,AUTHORIZATION,,false -44797,3f116384-889d-475c-8c41-07418818be45,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44798,3f116384-889d-475c-8c41-07418818be45,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44799,3f116384-889d-475c-8c41-07418818be45,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44794,33dfc362-ac88-4cae-b8c6-83768f112e48,LIST_ACCOUNTS,hbciListAccounts,false +44795,33dfc362-ac88-4cae-b8c6-83768f112e48,LIST_TRANSACTIONS,hbciListTransactions,false +44796,33dfc362-ac88-4cae-b8c6-83768f112e48,AUTHORIZATION,,false +44797,33dfc362-ac88-4cae-b8c6-83768f112e48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44798,33dfc362-ac88-4cae-b8c6-83768f112e48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44799,33dfc362-ac88-4cae-b8c6-83768f112e48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44800,dff11b66-2869-4dfb-aa99-8cd83523ac96,LIST_ACCOUNTS,xs2aListAccounts,true -44801,dff11b66-2869-4dfb-aa99-8cd83523ac96,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44801,dff11b66-2869-4dfb-aa99-8cd83523ac96,LIST_TRANSACTIONS,xs2aListTransactions,true 44802,dff11b66-2869-4dfb-aa99-8cd83523ac96,AUTHORIZATION,,true 44803,dff11b66-2869-4dfb-aa99-8cd83523ac96,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44804,dff11b66-2869-4dfb-aa99-8cd83523ac96,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44805,dff11b66-2869-4dfb-aa99-8cd83523ac96,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44806,2e092f14-fd86-48f8-a21a-87cfd9642603,LIST_ACCOUNTS,hbciListAccounts,false -44807,2e092f14-fd86-48f8-a21a-87cfd9642603,LIST_TRANSACTIONS,hbciListTransactions,false -44808,2e092f14-fd86-48f8-a21a-87cfd9642603,AUTHORIZATION,,false -44809,2e092f14-fd86-48f8-a21a-87cfd9642603,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44810,2e092f14-fd86-48f8-a21a-87cfd9642603,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44811,2e092f14-fd86-48f8-a21a-87cfd9642603,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44806,9b68cd3f-4b4c-4f7a-a9be-94ed3fb4ae7d,LIST_ACCOUNTS,hbciListAccounts,false +44807,9b68cd3f-4b4c-4f7a-a9be-94ed3fb4ae7d,LIST_TRANSACTIONS,hbciListTransactions,false +44808,9b68cd3f-4b4c-4f7a-a9be-94ed3fb4ae7d,AUTHORIZATION,,false +44809,9b68cd3f-4b4c-4f7a-a9be-94ed3fb4ae7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44810,9b68cd3f-4b4c-4f7a-a9be-94ed3fb4ae7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44811,9b68cd3f-4b4c-4f7a-a9be-94ed3fb4ae7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44812,7c7eaefd-47b4-4439-95d7-535fd3ceade2,LIST_ACCOUNTS,xs2aListAccounts,true -44813,7c7eaefd-47b4-4439-95d7-535fd3ceade2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44813,7c7eaefd-47b4-4439-95d7-535fd3ceade2,LIST_TRANSACTIONS,xs2aListTransactions,true 44814,7c7eaefd-47b4-4439-95d7-535fd3ceade2,AUTHORIZATION,,true 44815,7c7eaefd-47b4-4439-95d7-535fd3ceade2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44816,7c7eaefd-47b4-4439-95d7-535fd3ceade2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44817,7c7eaefd-47b4-4439-95d7-535fd3ceade2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44818,43200637-b375-4e1c-a531-11b8cac7fd9d,LIST_ACCOUNTS,hbciListAccounts,false -44819,43200637-b375-4e1c-a531-11b8cac7fd9d,LIST_TRANSACTIONS,hbciListTransactions,false -44820,43200637-b375-4e1c-a531-11b8cac7fd9d,AUTHORIZATION,,false -44821,43200637-b375-4e1c-a531-11b8cac7fd9d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44822,43200637-b375-4e1c-a531-11b8cac7fd9d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44823,43200637-b375-4e1c-a531-11b8cac7fd9d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44818,7737e17a-1f70-4195-b1d1-881ffe5368f5,LIST_ACCOUNTS,hbciListAccounts,false +44819,7737e17a-1f70-4195-b1d1-881ffe5368f5,LIST_TRANSACTIONS,hbciListTransactions,false +44820,7737e17a-1f70-4195-b1d1-881ffe5368f5,AUTHORIZATION,,false +44821,7737e17a-1f70-4195-b1d1-881ffe5368f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44822,7737e17a-1f70-4195-b1d1-881ffe5368f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44823,7737e17a-1f70-4195-b1d1-881ffe5368f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44824,14b252fa-b96d-49d7-b89b-815525bb1632,LIST_ACCOUNTS,xs2aListAccounts,true -44825,14b252fa-b96d-49d7-b89b-815525bb1632,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44825,14b252fa-b96d-49d7-b89b-815525bb1632,LIST_TRANSACTIONS,xs2aListTransactions,true 44826,14b252fa-b96d-49d7-b89b-815525bb1632,AUTHORIZATION,,true 44827,14b252fa-b96d-49d7-b89b-815525bb1632,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44828,14b252fa-b96d-49d7-b89b-815525bb1632,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44829,14b252fa-b96d-49d7-b89b-815525bb1632,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44830,6cac747c-601a-48b7-939a-daa26a6816c3,LIST_ACCOUNTS,hbciListAccounts,false -44831,6cac747c-601a-48b7-939a-daa26a6816c3,LIST_TRANSACTIONS,hbciListTransactions,false -44832,6cac747c-601a-48b7-939a-daa26a6816c3,AUTHORIZATION,,false -44833,6cac747c-601a-48b7-939a-daa26a6816c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44834,6cac747c-601a-48b7-939a-daa26a6816c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44835,6cac747c-601a-48b7-939a-daa26a6816c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44830,2123c886-41ca-470f-aaef-bb87a553d450,LIST_ACCOUNTS,hbciListAccounts,false +44831,2123c886-41ca-470f-aaef-bb87a553d450,LIST_TRANSACTIONS,hbciListTransactions,false +44832,2123c886-41ca-470f-aaef-bb87a553d450,AUTHORIZATION,,false +44833,2123c886-41ca-470f-aaef-bb87a553d450,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44834,2123c886-41ca-470f-aaef-bb87a553d450,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44835,2123c886-41ca-470f-aaef-bb87a553d450,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44836,bd39aae1-6406-43fc-a7dd-aeb248e4d021,LIST_ACCOUNTS,xs2aListAccounts,true -44837,bd39aae1-6406-43fc-a7dd-aeb248e4d021,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44837,bd39aae1-6406-43fc-a7dd-aeb248e4d021,LIST_TRANSACTIONS,xs2aListTransactions,true 44838,bd39aae1-6406-43fc-a7dd-aeb248e4d021,AUTHORIZATION,,true 44839,bd39aae1-6406-43fc-a7dd-aeb248e4d021,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44840,bd39aae1-6406-43fc-a7dd-aeb248e4d021,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44841,bd39aae1-6406-43fc-a7dd-aeb248e4d021,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44842,89640b73-d0d8-4eb2-9fb6-ce337e9e9351,LIST_ACCOUNTS,hbciListAccounts,false -44843,89640b73-d0d8-4eb2-9fb6-ce337e9e9351,LIST_TRANSACTIONS,hbciListTransactions,false -44844,89640b73-d0d8-4eb2-9fb6-ce337e9e9351,AUTHORIZATION,,false -44845,89640b73-d0d8-4eb2-9fb6-ce337e9e9351,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44846,89640b73-d0d8-4eb2-9fb6-ce337e9e9351,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44847,89640b73-d0d8-4eb2-9fb6-ce337e9e9351,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44842,48379c9b-0ad2-4779-bdb8-f0a6bf77551a,LIST_ACCOUNTS,hbciListAccounts,false +44843,48379c9b-0ad2-4779-bdb8-f0a6bf77551a,LIST_TRANSACTIONS,hbciListTransactions,false +44844,48379c9b-0ad2-4779-bdb8-f0a6bf77551a,AUTHORIZATION,,false +44845,48379c9b-0ad2-4779-bdb8-f0a6bf77551a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44846,48379c9b-0ad2-4779-bdb8-f0a6bf77551a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44847,48379c9b-0ad2-4779-bdb8-f0a6bf77551a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44848,84687313-f365-4d06-961c-68b412b1730c,LIST_ACCOUNTS,xs2aListAccounts,true -44849,84687313-f365-4d06-961c-68b412b1730c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44849,84687313-f365-4d06-961c-68b412b1730c,LIST_TRANSACTIONS,xs2aListTransactions,true 44850,84687313-f365-4d06-961c-68b412b1730c,AUTHORIZATION,,true 44851,84687313-f365-4d06-961c-68b412b1730c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44852,84687313-f365-4d06-961c-68b412b1730c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44853,84687313-f365-4d06-961c-68b412b1730c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44854,f96082ea-61fd-41fd-bf62-27eb3f12c14c,LIST_ACCOUNTS,hbciListAccounts,false -44855,f96082ea-61fd-41fd-bf62-27eb3f12c14c,LIST_TRANSACTIONS,hbciListTransactions,false -44856,f96082ea-61fd-41fd-bf62-27eb3f12c14c,AUTHORIZATION,,false -44857,f96082ea-61fd-41fd-bf62-27eb3f12c14c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44858,f96082ea-61fd-41fd-bf62-27eb3f12c14c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44859,f96082ea-61fd-41fd-bf62-27eb3f12c14c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44854,1fb25f59-4f9f-4d72-ad0c-71528591bfa9,LIST_ACCOUNTS,hbciListAccounts,false +44855,1fb25f59-4f9f-4d72-ad0c-71528591bfa9,LIST_TRANSACTIONS,hbciListTransactions,false +44856,1fb25f59-4f9f-4d72-ad0c-71528591bfa9,AUTHORIZATION,,false +44857,1fb25f59-4f9f-4d72-ad0c-71528591bfa9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44858,1fb25f59-4f9f-4d72-ad0c-71528591bfa9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44859,1fb25f59-4f9f-4d72-ad0c-71528591bfa9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44860,b04a57c1-cd0e-4f23-bf7e-bb6e34ae03f6,LIST_ACCOUNTS,xs2aListAccounts,true -44861,b04a57c1-cd0e-4f23-bf7e-bb6e34ae03f6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44861,b04a57c1-cd0e-4f23-bf7e-bb6e34ae03f6,LIST_TRANSACTIONS,xs2aListTransactions,true 44862,b04a57c1-cd0e-4f23-bf7e-bb6e34ae03f6,AUTHORIZATION,,true 44863,b04a57c1-cd0e-4f23-bf7e-bb6e34ae03f6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44864,b04a57c1-cd0e-4f23-bf7e-bb6e34ae03f6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44865,b04a57c1-cd0e-4f23-bf7e-bb6e34ae03f6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44866,6ff7b18c-4e98-407f-b670-202249205c73,LIST_ACCOUNTS,hbciListAccounts,false -44867,6ff7b18c-4e98-407f-b670-202249205c73,LIST_TRANSACTIONS,hbciListTransactions,false -44868,6ff7b18c-4e98-407f-b670-202249205c73,AUTHORIZATION,,false -44869,6ff7b18c-4e98-407f-b670-202249205c73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44870,6ff7b18c-4e98-407f-b670-202249205c73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44871,6ff7b18c-4e98-407f-b670-202249205c73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44866,994bc448-5f0a-47ec-b711-86575f45040e,LIST_ACCOUNTS,hbciListAccounts,false +44867,994bc448-5f0a-47ec-b711-86575f45040e,LIST_TRANSACTIONS,hbciListTransactions,false +44868,994bc448-5f0a-47ec-b711-86575f45040e,AUTHORIZATION,,false +44869,994bc448-5f0a-47ec-b711-86575f45040e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44870,994bc448-5f0a-47ec-b711-86575f45040e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44871,994bc448-5f0a-47ec-b711-86575f45040e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44872,5c96e5a2-5c2a-4e9f-b888-aff9cde1709d,LIST_ACCOUNTS,xs2aListAccounts,true -44873,5c96e5a2-5c2a-4e9f-b888-aff9cde1709d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44873,5c96e5a2-5c2a-4e9f-b888-aff9cde1709d,LIST_TRANSACTIONS,xs2aListTransactions,true 44874,5c96e5a2-5c2a-4e9f-b888-aff9cde1709d,AUTHORIZATION,,true 44875,5c96e5a2-5c2a-4e9f-b888-aff9cde1709d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44876,5c96e5a2-5c2a-4e9f-b888-aff9cde1709d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44877,5c96e5a2-5c2a-4e9f-b888-aff9cde1709d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44878,71c11191-be2c-4961-9e6d-b159c31364f0,LIST_ACCOUNTS,hbciListAccounts,false -44879,71c11191-be2c-4961-9e6d-b159c31364f0,LIST_TRANSACTIONS,hbciListTransactions,false -44880,71c11191-be2c-4961-9e6d-b159c31364f0,AUTHORIZATION,,false -44881,71c11191-be2c-4961-9e6d-b159c31364f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44882,71c11191-be2c-4961-9e6d-b159c31364f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44883,71c11191-be2c-4961-9e6d-b159c31364f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44878,8854d415-0e2a-443f-bafc-1c09441ddbfb,LIST_ACCOUNTS,hbciListAccounts,false +44879,8854d415-0e2a-443f-bafc-1c09441ddbfb,LIST_TRANSACTIONS,hbciListTransactions,false +44880,8854d415-0e2a-443f-bafc-1c09441ddbfb,AUTHORIZATION,,false +44881,8854d415-0e2a-443f-bafc-1c09441ddbfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44882,8854d415-0e2a-443f-bafc-1c09441ddbfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44883,8854d415-0e2a-443f-bafc-1c09441ddbfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44884,68dc40c3-cdfd-41af-ad88-5a0ed441e523,LIST_ACCOUNTS,xs2aListAccounts,true -44885,68dc40c3-cdfd-41af-ad88-5a0ed441e523,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44885,68dc40c3-cdfd-41af-ad88-5a0ed441e523,LIST_TRANSACTIONS,xs2aListTransactions,true 44886,68dc40c3-cdfd-41af-ad88-5a0ed441e523,AUTHORIZATION,,true 44887,68dc40c3-cdfd-41af-ad88-5a0ed441e523,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44888,68dc40c3-cdfd-41af-ad88-5a0ed441e523,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44889,68dc40c3-cdfd-41af-ad88-5a0ed441e523,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44890,a7c6b2cb-edff-401e-ad75-b2b3b005e226,LIST_ACCOUNTS,hbciListAccounts,false -44891,a7c6b2cb-edff-401e-ad75-b2b3b005e226,LIST_TRANSACTIONS,hbciListTransactions,false -44892,a7c6b2cb-edff-401e-ad75-b2b3b005e226,AUTHORIZATION,,false -44893,a7c6b2cb-edff-401e-ad75-b2b3b005e226,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44894,a7c6b2cb-edff-401e-ad75-b2b3b005e226,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44895,a7c6b2cb-edff-401e-ad75-b2b3b005e226,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44890,0fad5617-e7e9-4e0d-a68d-5e9126c10fba,LIST_ACCOUNTS,hbciListAccounts,false +44891,0fad5617-e7e9-4e0d-a68d-5e9126c10fba,LIST_TRANSACTIONS,hbciListTransactions,false +44892,0fad5617-e7e9-4e0d-a68d-5e9126c10fba,AUTHORIZATION,,false +44893,0fad5617-e7e9-4e0d-a68d-5e9126c10fba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44894,0fad5617-e7e9-4e0d-a68d-5e9126c10fba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44895,0fad5617-e7e9-4e0d-a68d-5e9126c10fba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44896,239a5540-a7d6-42ac-85ff-a323a4388fca,LIST_ACCOUNTS,xs2aListAccounts,true -44897,239a5540-a7d6-42ac-85ff-a323a4388fca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44897,239a5540-a7d6-42ac-85ff-a323a4388fca,LIST_TRANSACTIONS,xs2aListTransactions,true 44898,239a5540-a7d6-42ac-85ff-a323a4388fca,AUTHORIZATION,,true 44899,239a5540-a7d6-42ac-85ff-a323a4388fca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44900,239a5540-a7d6-42ac-85ff-a323a4388fca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44901,239a5540-a7d6-42ac-85ff-a323a4388fca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44902,7415d97e-469c-4989-b592-369d8eab4cf6,LIST_ACCOUNTS,hbciListAccounts,false -44903,7415d97e-469c-4989-b592-369d8eab4cf6,LIST_TRANSACTIONS,hbciListTransactions,false -44904,7415d97e-469c-4989-b592-369d8eab4cf6,AUTHORIZATION,,false -44905,7415d97e-469c-4989-b592-369d8eab4cf6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44906,7415d97e-469c-4989-b592-369d8eab4cf6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44907,7415d97e-469c-4989-b592-369d8eab4cf6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44902,cfeddbd0-087c-4872-84cb-7f518eeb282c,LIST_ACCOUNTS,hbciListAccounts,false +44903,cfeddbd0-087c-4872-84cb-7f518eeb282c,LIST_TRANSACTIONS,hbciListTransactions,false +44904,cfeddbd0-087c-4872-84cb-7f518eeb282c,AUTHORIZATION,,false +44905,cfeddbd0-087c-4872-84cb-7f518eeb282c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44906,cfeddbd0-087c-4872-84cb-7f518eeb282c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44907,cfeddbd0-087c-4872-84cb-7f518eeb282c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44908,614d646e-e7ea-4558-84c7-d69c7ba63d37,LIST_ACCOUNTS,xs2aListAccounts,true -44909,614d646e-e7ea-4558-84c7-d69c7ba63d37,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44909,614d646e-e7ea-4558-84c7-d69c7ba63d37,LIST_TRANSACTIONS,xs2aListTransactions,true 44910,614d646e-e7ea-4558-84c7-d69c7ba63d37,AUTHORIZATION,,true 44911,614d646e-e7ea-4558-84c7-d69c7ba63d37,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44912,614d646e-e7ea-4558-84c7-d69c7ba63d37,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44913,614d646e-e7ea-4558-84c7-d69c7ba63d37,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44914,6a8efe06-0878-4bb3-a707-2699cb7c888f,LIST_ACCOUNTS,hbciListAccounts,false -44915,6a8efe06-0878-4bb3-a707-2699cb7c888f,LIST_TRANSACTIONS,hbciListTransactions,false -44916,6a8efe06-0878-4bb3-a707-2699cb7c888f,AUTHORIZATION,,false -44917,6a8efe06-0878-4bb3-a707-2699cb7c888f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44918,6a8efe06-0878-4bb3-a707-2699cb7c888f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44919,6a8efe06-0878-4bb3-a707-2699cb7c888f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44914,2ad15ab3-b7c1-4fbc-8950-9b5c741c5720,LIST_ACCOUNTS,hbciListAccounts,false +44915,2ad15ab3-b7c1-4fbc-8950-9b5c741c5720,LIST_TRANSACTIONS,hbciListTransactions,false +44916,2ad15ab3-b7c1-4fbc-8950-9b5c741c5720,AUTHORIZATION,,false +44917,2ad15ab3-b7c1-4fbc-8950-9b5c741c5720,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44918,2ad15ab3-b7c1-4fbc-8950-9b5c741c5720,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44919,2ad15ab3-b7c1-4fbc-8950-9b5c741c5720,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44920,efd2daf0-1706-44bd-b2ec-883d0625bd9f,LIST_ACCOUNTS,xs2aListAccounts,true -44921,efd2daf0-1706-44bd-b2ec-883d0625bd9f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44921,efd2daf0-1706-44bd-b2ec-883d0625bd9f,LIST_TRANSACTIONS,xs2aListTransactions,true 44922,efd2daf0-1706-44bd-b2ec-883d0625bd9f,AUTHORIZATION,,true 44923,efd2daf0-1706-44bd-b2ec-883d0625bd9f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44924,efd2daf0-1706-44bd-b2ec-883d0625bd9f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44925,efd2daf0-1706-44bd-b2ec-883d0625bd9f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44926,1a29f9b1-7054-4e32-998f-015a5525c328,LIST_ACCOUNTS,hbciListAccounts,false -44927,1a29f9b1-7054-4e32-998f-015a5525c328,LIST_TRANSACTIONS,hbciListTransactions,false -44928,1a29f9b1-7054-4e32-998f-015a5525c328,AUTHORIZATION,,false -44929,1a29f9b1-7054-4e32-998f-015a5525c328,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44930,1a29f9b1-7054-4e32-998f-015a5525c328,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44931,1a29f9b1-7054-4e32-998f-015a5525c328,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44926,d9a438af-b3de-4417-9831-a8e8e857510a,LIST_ACCOUNTS,hbciListAccounts,false +44927,d9a438af-b3de-4417-9831-a8e8e857510a,LIST_TRANSACTIONS,hbciListTransactions,false +44928,d9a438af-b3de-4417-9831-a8e8e857510a,AUTHORIZATION,,false +44929,d9a438af-b3de-4417-9831-a8e8e857510a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44930,d9a438af-b3de-4417-9831-a8e8e857510a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44931,d9a438af-b3de-4417-9831-a8e8e857510a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44932,064930c4-0b19-47ed-9a50-7bf28ba65e97,LIST_ACCOUNTS,xs2aListAccounts,true -44933,064930c4-0b19-47ed-9a50-7bf28ba65e97,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44933,064930c4-0b19-47ed-9a50-7bf28ba65e97,LIST_TRANSACTIONS,xs2aListTransactions,true 44934,064930c4-0b19-47ed-9a50-7bf28ba65e97,AUTHORIZATION,,true 44935,064930c4-0b19-47ed-9a50-7bf28ba65e97,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44936,064930c4-0b19-47ed-9a50-7bf28ba65e97,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44937,064930c4-0b19-47ed-9a50-7bf28ba65e97,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44938,4ef6c7fc-9ed1-41a1-9b2d-b0b2559625fe,LIST_ACCOUNTS,hbciListAccounts,false -44939,4ef6c7fc-9ed1-41a1-9b2d-b0b2559625fe,LIST_TRANSACTIONS,hbciListTransactions,false -44940,4ef6c7fc-9ed1-41a1-9b2d-b0b2559625fe,AUTHORIZATION,,false -44941,4ef6c7fc-9ed1-41a1-9b2d-b0b2559625fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44942,4ef6c7fc-9ed1-41a1-9b2d-b0b2559625fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44943,4ef6c7fc-9ed1-41a1-9b2d-b0b2559625fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44938,16239884-8ba4-41eb-8d0d-abea32cfdf75,LIST_ACCOUNTS,hbciListAccounts,false +44939,16239884-8ba4-41eb-8d0d-abea32cfdf75,LIST_TRANSACTIONS,hbciListTransactions,false +44940,16239884-8ba4-41eb-8d0d-abea32cfdf75,AUTHORIZATION,,false +44941,16239884-8ba4-41eb-8d0d-abea32cfdf75,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44942,16239884-8ba4-41eb-8d0d-abea32cfdf75,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44943,16239884-8ba4-41eb-8d0d-abea32cfdf75,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44944,4a0f2efb-42a2-4325-9849-9dbf6ed8d265,LIST_ACCOUNTS,xs2aListAccounts,true -44945,4a0f2efb-42a2-4325-9849-9dbf6ed8d265,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44945,4a0f2efb-42a2-4325-9849-9dbf6ed8d265,LIST_TRANSACTIONS,xs2aListTransactions,true 44946,4a0f2efb-42a2-4325-9849-9dbf6ed8d265,AUTHORIZATION,,true 44947,4a0f2efb-42a2-4325-9849-9dbf6ed8d265,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44948,4a0f2efb-42a2-4325-9849-9dbf6ed8d265,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44949,4a0f2efb-42a2-4325-9849-9dbf6ed8d265,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44950,00750c73-9967-4792-bdae-5ca5a2c31d86,LIST_ACCOUNTS,hbciListAccounts,false -44951,00750c73-9967-4792-bdae-5ca5a2c31d86,LIST_TRANSACTIONS,hbciListTransactions,false -44952,00750c73-9967-4792-bdae-5ca5a2c31d86,AUTHORIZATION,,false -44953,00750c73-9967-4792-bdae-5ca5a2c31d86,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44954,00750c73-9967-4792-bdae-5ca5a2c31d86,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44955,00750c73-9967-4792-bdae-5ca5a2c31d86,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44950,b78701b7-0e10-46dc-a559-39b470014f39,LIST_ACCOUNTS,hbciListAccounts,false +44951,b78701b7-0e10-46dc-a559-39b470014f39,LIST_TRANSACTIONS,hbciListTransactions,false +44952,b78701b7-0e10-46dc-a559-39b470014f39,AUTHORIZATION,,false +44953,b78701b7-0e10-46dc-a559-39b470014f39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44954,b78701b7-0e10-46dc-a559-39b470014f39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44955,b78701b7-0e10-46dc-a559-39b470014f39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44956,de5f9560-0886-4ccb-998c-37bc8049c652,LIST_ACCOUNTS,xs2aListAccounts,true -44957,de5f9560-0886-4ccb-998c-37bc8049c652,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44957,de5f9560-0886-4ccb-998c-37bc8049c652,LIST_TRANSACTIONS,xs2aListTransactions,true 44958,de5f9560-0886-4ccb-998c-37bc8049c652,AUTHORIZATION,,true 44959,de5f9560-0886-4ccb-998c-37bc8049c652,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44960,de5f9560-0886-4ccb-998c-37bc8049c652,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44961,de5f9560-0886-4ccb-998c-37bc8049c652,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44962,77c9cfc8-cb7a-45f0-8764-c99183d4f15d,LIST_ACCOUNTS,hbciListAccounts,false -44963,77c9cfc8-cb7a-45f0-8764-c99183d4f15d,LIST_TRANSACTIONS,hbciListTransactions,false -44964,77c9cfc8-cb7a-45f0-8764-c99183d4f15d,AUTHORIZATION,,false -44965,77c9cfc8-cb7a-45f0-8764-c99183d4f15d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44966,77c9cfc8-cb7a-45f0-8764-c99183d4f15d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44967,77c9cfc8-cb7a-45f0-8764-c99183d4f15d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44962,593b2dff-892f-4610-b2a9-a1e961c0edca,LIST_ACCOUNTS,hbciListAccounts,false +44963,593b2dff-892f-4610-b2a9-a1e961c0edca,LIST_TRANSACTIONS,hbciListTransactions,false +44964,593b2dff-892f-4610-b2a9-a1e961c0edca,AUTHORIZATION,,false +44965,593b2dff-892f-4610-b2a9-a1e961c0edca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44966,593b2dff-892f-4610-b2a9-a1e961c0edca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44967,593b2dff-892f-4610-b2a9-a1e961c0edca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44968,c324e17f-0279-430a-ae0e-c7786dc24931,LIST_ACCOUNTS,xs2aListAccounts,true -44969,c324e17f-0279-430a-ae0e-c7786dc24931,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44969,c324e17f-0279-430a-ae0e-c7786dc24931,LIST_TRANSACTIONS,xs2aListTransactions,true 44970,c324e17f-0279-430a-ae0e-c7786dc24931,AUTHORIZATION,,true 44971,c324e17f-0279-430a-ae0e-c7786dc24931,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44972,c324e17f-0279-430a-ae0e-c7786dc24931,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44973,c324e17f-0279-430a-ae0e-c7786dc24931,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44974,11f05a27-fe5c-43e8-80d8-d093add86930,LIST_ACCOUNTS,hbciListAccounts,false -44975,11f05a27-fe5c-43e8-80d8-d093add86930,LIST_TRANSACTIONS,hbciListTransactions,false -44976,11f05a27-fe5c-43e8-80d8-d093add86930,AUTHORIZATION,,false -44977,11f05a27-fe5c-43e8-80d8-d093add86930,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44978,11f05a27-fe5c-43e8-80d8-d093add86930,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44979,11f05a27-fe5c-43e8-80d8-d093add86930,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44974,e01cfb85-c456-4a6a-a123-645298eab181,LIST_ACCOUNTS,hbciListAccounts,false +44975,e01cfb85-c456-4a6a-a123-645298eab181,LIST_TRANSACTIONS,hbciListTransactions,false +44976,e01cfb85-c456-4a6a-a123-645298eab181,AUTHORIZATION,,false +44977,e01cfb85-c456-4a6a-a123-645298eab181,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44978,e01cfb85-c456-4a6a-a123-645298eab181,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44979,e01cfb85-c456-4a6a-a123-645298eab181,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44980,239fd093-7362-47c7-8da1-d64df630f604,LIST_ACCOUNTS,xs2aListAccounts,true -44981,239fd093-7362-47c7-8da1-d64df630f604,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44981,239fd093-7362-47c7-8da1-d64df630f604,LIST_TRANSACTIONS,xs2aListTransactions,true 44982,239fd093-7362-47c7-8da1-d64df630f604,AUTHORIZATION,,true 44983,239fd093-7362-47c7-8da1-d64df630f604,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44984,239fd093-7362-47c7-8da1-d64df630f604,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44985,239fd093-7362-47c7-8da1-d64df630f604,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44986,23cf500a-33dd-4342-bb0c-2d8b10de39f6,LIST_ACCOUNTS,hbciListAccounts,false -44987,23cf500a-33dd-4342-bb0c-2d8b10de39f6,LIST_TRANSACTIONS,hbciListTransactions,false -44988,23cf500a-33dd-4342-bb0c-2d8b10de39f6,AUTHORIZATION,,false -44989,23cf500a-33dd-4342-bb0c-2d8b10de39f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -44990,23cf500a-33dd-4342-bb0c-2d8b10de39f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -44991,23cf500a-33dd-4342-bb0c-2d8b10de39f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44986,9040cab3-100a-4b93-8327-f286200db1f0,LIST_ACCOUNTS,hbciListAccounts,false +44987,9040cab3-100a-4b93-8327-f286200db1f0,LIST_TRANSACTIONS,hbciListTransactions,false +44988,9040cab3-100a-4b93-8327-f286200db1f0,AUTHORIZATION,,false +44989,9040cab3-100a-4b93-8327-f286200db1f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +44990,9040cab3-100a-4b93-8327-f286200db1f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +44991,9040cab3-100a-4b93-8327-f286200db1f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 44992,1ad92f7f-6e14-4301-9848-d8be07253a0e,LIST_ACCOUNTS,xs2aListAccounts,true -44993,1ad92f7f-6e14-4301-9848-d8be07253a0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +44993,1ad92f7f-6e14-4301-9848-d8be07253a0e,LIST_TRANSACTIONS,xs2aListTransactions,true 44994,1ad92f7f-6e14-4301-9848-d8be07253a0e,AUTHORIZATION,,true 44995,1ad92f7f-6e14-4301-9848-d8be07253a0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 44996,1ad92f7f-6e14-4301-9848-d8be07253a0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 44997,1ad92f7f-6e14-4301-9848-d8be07253a0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -44998,e3379996-50cb-4030-96e3-2ee8dceb2a97,LIST_ACCOUNTS,hbciListAccounts,false -44999,e3379996-50cb-4030-96e3-2ee8dceb2a97,LIST_TRANSACTIONS,hbciListTransactions,false -45000,e3379996-50cb-4030-96e3-2ee8dceb2a97,AUTHORIZATION,,false -45001,e3379996-50cb-4030-96e3-2ee8dceb2a97,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45002,e3379996-50cb-4030-96e3-2ee8dceb2a97,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45003,e3379996-50cb-4030-96e3-2ee8dceb2a97,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +44998,2a45ba95-2a44-4b2e-8ea5-5adf7665d42c,LIST_ACCOUNTS,hbciListAccounts,false +44999,2a45ba95-2a44-4b2e-8ea5-5adf7665d42c,LIST_TRANSACTIONS,hbciListTransactions,false +45000,2a45ba95-2a44-4b2e-8ea5-5adf7665d42c,AUTHORIZATION,,false +45001,2a45ba95-2a44-4b2e-8ea5-5adf7665d42c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45002,2a45ba95-2a44-4b2e-8ea5-5adf7665d42c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45003,2a45ba95-2a44-4b2e-8ea5-5adf7665d42c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45004,2b00812d-c869-495f-af35-bcfacda0bdd9,LIST_ACCOUNTS,xs2aListAccounts,true -45005,2b00812d-c869-495f-af35-bcfacda0bdd9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45005,2b00812d-c869-495f-af35-bcfacda0bdd9,LIST_TRANSACTIONS,xs2aListTransactions,true 45006,2b00812d-c869-495f-af35-bcfacda0bdd9,AUTHORIZATION,,true 45007,2b00812d-c869-495f-af35-bcfacda0bdd9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45008,2b00812d-c869-495f-af35-bcfacda0bdd9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45009,2b00812d-c869-495f-af35-bcfacda0bdd9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45010,6cd3e376-6e73-4db1-8791-0d7203e9ab64,LIST_ACCOUNTS,hbciListAccounts,false -45011,6cd3e376-6e73-4db1-8791-0d7203e9ab64,LIST_TRANSACTIONS,hbciListTransactions,false -45012,6cd3e376-6e73-4db1-8791-0d7203e9ab64,AUTHORIZATION,,false -45013,6cd3e376-6e73-4db1-8791-0d7203e9ab64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45014,6cd3e376-6e73-4db1-8791-0d7203e9ab64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45015,6cd3e376-6e73-4db1-8791-0d7203e9ab64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45010,6611522f-ea94-48dd-a330-a4819c593358,LIST_ACCOUNTS,hbciListAccounts,false +45011,6611522f-ea94-48dd-a330-a4819c593358,LIST_TRANSACTIONS,hbciListTransactions,false +45012,6611522f-ea94-48dd-a330-a4819c593358,AUTHORIZATION,,false +45013,6611522f-ea94-48dd-a330-a4819c593358,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45014,6611522f-ea94-48dd-a330-a4819c593358,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45015,6611522f-ea94-48dd-a330-a4819c593358,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45016,32c517b6-3d2e-49fa-b2c1-47228836b07b,LIST_ACCOUNTS,xs2aListAccounts,true -45017,32c517b6-3d2e-49fa-b2c1-47228836b07b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45017,32c517b6-3d2e-49fa-b2c1-47228836b07b,LIST_TRANSACTIONS,xs2aListTransactions,true 45018,32c517b6-3d2e-49fa-b2c1-47228836b07b,AUTHORIZATION,,true 45019,32c517b6-3d2e-49fa-b2c1-47228836b07b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45020,32c517b6-3d2e-49fa-b2c1-47228836b07b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45021,32c517b6-3d2e-49fa-b2c1-47228836b07b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45022,d15f3e6a-6f5b-4b0f-bb2f-557c07b2acbd,LIST_ACCOUNTS,hbciListAccounts,false -45023,d15f3e6a-6f5b-4b0f-bb2f-557c07b2acbd,LIST_TRANSACTIONS,hbciListTransactions,false -45024,d15f3e6a-6f5b-4b0f-bb2f-557c07b2acbd,AUTHORIZATION,,false -45025,d15f3e6a-6f5b-4b0f-bb2f-557c07b2acbd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45026,d15f3e6a-6f5b-4b0f-bb2f-557c07b2acbd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45027,d15f3e6a-6f5b-4b0f-bb2f-557c07b2acbd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45022,c34a2bda-f1a6-4692-85c7-6a4341799ec9,LIST_ACCOUNTS,hbciListAccounts,false +45023,c34a2bda-f1a6-4692-85c7-6a4341799ec9,LIST_TRANSACTIONS,hbciListTransactions,false +45024,c34a2bda-f1a6-4692-85c7-6a4341799ec9,AUTHORIZATION,,false +45025,c34a2bda-f1a6-4692-85c7-6a4341799ec9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45026,c34a2bda-f1a6-4692-85c7-6a4341799ec9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45027,c34a2bda-f1a6-4692-85c7-6a4341799ec9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45028,af062b06-ee6e-45f9-9163-b97320c6881a,LIST_ACCOUNTS,xs2aListAccounts,true -45029,af062b06-ee6e-45f9-9163-b97320c6881a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45029,af062b06-ee6e-45f9-9163-b97320c6881a,LIST_TRANSACTIONS,xs2aListTransactions,true 45030,af062b06-ee6e-45f9-9163-b97320c6881a,AUTHORIZATION,,true 45031,af062b06-ee6e-45f9-9163-b97320c6881a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45032,af062b06-ee6e-45f9-9163-b97320c6881a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45033,af062b06-ee6e-45f9-9163-b97320c6881a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45034,ab93d9da-d2cb-4624-930a-47b050df3ae6,LIST_ACCOUNTS,hbciListAccounts,false -45035,ab93d9da-d2cb-4624-930a-47b050df3ae6,LIST_TRANSACTIONS,hbciListTransactions,false -45036,ab93d9da-d2cb-4624-930a-47b050df3ae6,AUTHORIZATION,,false -45037,ab93d9da-d2cb-4624-930a-47b050df3ae6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45038,ab93d9da-d2cb-4624-930a-47b050df3ae6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45039,ab93d9da-d2cb-4624-930a-47b050df3ae6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45034,e54b9781-fc77-4fbc-a017-dd93b90e85d7,LIST_ACCOUNTS,hbciListAccounts,false +45035,e54b9781-fc77-4fbc-a017-dd93b90e85d7,LIST_TRANSACTIONS,hbciListTransactions,false +45036,e54b9781-fc77-4fbc-a017-dd93b90e85d7,AUTHORIZATION,,false +45037,e54b9781-fc77-4fbc-a017-dd93b90e85d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45038,e54b9781-fc77-4fbc-a017-dd93b90e85d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45039,e54b9781-fc77-4fbc-a017-dd93b90e85d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45040,916a284d-8d2d-45d8-a56e-7454154aeb8a,LIST_ACCOUNTS,xs2aListAccounts,true -45041,916a284d-8d2d-45d8-a56e-7454154aeb8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45041,916a284d-8d2d-45d8-a56e-7454154aeb8a,LIST_TRANSACTIONS,xs2aListTransactions,true 45042,916a284d-8d2d-45d8-a56e-7454154aeb8a,AUTHORIZATION,,true 45043,916a284d-8d2d-45d8-a56e-7454154aeb8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45044,916a284d-8d2d-45d8-a56e-7454154aeb8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45045,916a284d-8d2d-45d8-a56e-7454154aeb8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45046,20d0152d-dca0-404c-964b-990eff7e5f8b,LIST_ACCOUNTS,hbciListAccounts,false -45047,20d0152d-dca0-404c-964b-990eff7e5f8b,LIST_TRANSACTIONS,hbciListTransactions,false -45048,20d0152d-dca0-404c-964b-990eff7e5f8b,AUTHORIZATION,,false -45049,20d0152d-dca0-404c-964b-990eff7e5f8b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45050,20d0152d-dca0-404c-964b-990eff7e5f8b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45051,20d0152d-dca0-404c-964b-990eff7e5f8b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45046,fd60fcbc-ed32-4455-872a-9015cb174825,LIST_ACCOUNTS,hbciListAccounts,false +45047,fd60fcbc-ed32-4455-872a-9015cb174825,LIST_TRANSACTIONS,hbciListTransactions,false +45048,fd60fcbc-ed32-4455-872a-9015cb174825,AUTHORIZATION,,false +45049,fd60fcbc-ed32-4455-872a-9015cb174825,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45050,fd60fcbc-ed32-4455-872a-9015cb174825,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45051,fd60fcbc-ed32-4455-872a-9015cb174825,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45052,1d7f9fc4-443a-463c-ac33-1cfd5d4a4300,LIST_ACCOUNTS,xs2aListAccounts,true -45053,1d7f9fc4-443a-463c-ac33-1cfd5d4a4300,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45053,1d7f9fc4-443a-463c-ac33-1cfd5d4a4300,LIST_TRANSACTIONS,xs2aListTransactions,true 45054,1d7f9fc4-443a-463c-ac33-1cfd5d4a4300,AUTHORIZATION,,true 45055,1d7f9fc4-443a-463c-ac33-1cfd5d4a4300,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45056,1d7f9fc4-443a-463c-ac33-1cfd5d4a4300,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45057,1d7f9fc4-443a-463c-ac33-1cfd5d4a4300,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45058,3eae0308-21e9-400f-9810-ea96550b86f4,LIST_ACCOUNTS,hbciListAccounts,false -45059,3eae0308-21e9-400f-9810-ea96550b86f4,LIST_TRANSACTIONS,hbciListTransactions,false -45060,3eae0308-21e9-400f-9810-ea96550b86f4,AUTHORIZATION,,false -45061,3eae0308-21e9-400f-9810-ea96550b86f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45062,3eae0308-21e9-400f-9810-ea96550b86f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45063,3eae0308-21e9-400f-9810-ea96550b86f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45058,e599e0f4-67f5-45e1-8607-85314333390c,LIST_ACCOUNTS,hbciListAccounts,false +45059,e599e0f4-67f5-45e1-8607-85314333390c,LIST_TRANSACTIONS,hbciListTransactions,false +45060,e599e0f4-67f5-45e1-8607-85314333390c,AUTHORIZATION,,false +45061,e599e0f4-67f5-45e1-8607-85314333390c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45062,e599e0f4-67f5-45e1-8607-85314333390c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45063,e599e0f4-67f5-45e1-8607-85314333390c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45064,ea51ce72-d561-42a1-82c3-7ed5a9c4cf20,LIST_ACCOUNTS,xs2aListAccounts,true -45065,ea51ce72-d561-42a1-82c3-7ed5a9c4cf20,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45065,ea51ce72-d561-42a1-82c3-7ed5a9c4cf20,LIST_TRANSACTIONS,xs2aListTransactions,true 45066,ea51ce72-d561-42a1-82c3-7ed5a9c4cf20,AUTHORIZATION,,true 45067,ea51ce72-d561-42a1-82c3-7ed5a9c4cf20,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45068,ea51ce72-d561-42a1-82c3-7ed5a9c4cf20,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45069,ea51ce72-d561-42a1-82c3-7ed5a9c4cf20,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45070,54da194e-dfec-4637-8df9-16a1c8bdf9aa,LIST_ACCOUNTS,hbciListAccounts,false -45071,54da194e-dfec-4637-8df9-16a1c8bdf9aa,LIST_TRANSACTIONS,hbciListTransactions,false -45072,54da194e-dfec-4637-8df9-16a1c8bdf9aa,AUTHORIZATION,,false -45073,54da194e-dfec-4637-8df9-16a1c8bdf9aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45074,54da194e-dfec-4637-8df9-16a1c8bdf9aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45075,54da194e-dfec-4637-8df9-16a1c8bdf9aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45070,3f7a975f-e81c-408d-a09a-c3dcb1c6298d,LIST_ACCOUNTS,hbciListAccounts,false +45071,3f7a975f-e81c-408d-a09a-c3dcb1c6298d,LIST_TRANSACTIONS,hbciListTransactions,false +45072,3f7a975f-e81c-408d-a09a-c3dcb1c6298d,AUTHORIZATION,,false +45073,3f7a975f-e81c-408d-a09a-c3dcb1c6298d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45074,3f7a975f-e81c-408d-a09a-c3dcb1c6298d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45075,3f7a975f-e81c-408d-a09a-c3dcb1c6298d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45076,cf4a1f6a-a191-4beb-b09b-e73a64627629,LIST_ACCOUNTS,xs2aListAccounts,true -45077,cf4a1f6a-a191-4beb-b09b-e73a64627629,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45077,cf4a1f6a-a191-4beb-b09b-e73a64627629,LIST_TRANSACTIONS,xs2aListTransactions,true 45078,cf4a1f6a-a191-4beb-b09b-e73a64627629,AUTHORIZATION,,true 45079,cf4a1f6a-a191-4beb-b09b-e73a64627629,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45080,cf4a1f6a-a191-4beb-b09b-e73a64627629,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45081,cf4a1f6a-a191-4beb-b09b-e73a64627629,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45082,212d92a9-c9b7-40e2-b9d0-a6f264b7900b,LIST_ACCOUNTS,hbciListAccounts,false -45083,212d92a9-c9b7-40e2-b9d0-a6f264b7900b,LIST_TRANSACTIONS,hbciListTransactions,false -45084,212d92a9-c9b7-40e2-b9d0-a6f264b7900b,AUTHORIZATION,,false -45085,212d92a9-c9b7-40e2-b9d0-a6f264b7900b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45086,212d92a9-c9b7-40e2-b9d0-a6f264b7900b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45087,212d92a9-c9b7-40e2-b9d0-a6f264b7900b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45082,308069e5-0536-413d-a716-1e6ab93996ee,LIST_ACCOUNTS,hbciListAccounts,false +45083,308069e5-0536-413d-a716-1e6ab93996ee,LIST_TRANSACTIONS,hbciListTransactions,false +45084,308069e5-0536-413d-a716-1e6ab93996ee,AUTHORIZATION,,false +45085,308069e5-0536-413d-a716-1e6ab93996ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45086,308069e5-0536-413d-a716-1e6ab93996ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45087,308069e5-0536-413d-a716-1e6ab93996ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45088,738a9523-58a2-483c-b5a2-465b3a4dcee7,LIST_ACCOUNTS,xs2aListAccounts,true -45089,738a9523-58a2-483c-b5a2-465b3a4dcee7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45089,738a9523-58a2-483c-b5a2-465b3a4dcee7,LIST_TRANSACTIONS,xs2aListTransactions,true 45090,738a9523-58a2-483c-b5a2-465b3a4dcee7,AUTHORIZATION,,true 45091,738a9523-58a2-483c-b5a2-465b3a4dcee7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45092,738a9523-58a2-483c-b5a2-465b3a4dcee7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45093,738a9523-58a2-483c-b5a2-465b3a4dcee7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45094,c7704de2-58c3-4aeb-a8f4-c223e4798067,LIST_ACCOUNTS,hbciListAccounts,false -45095,c7704de2-58c3-4aeb-a8f4-c223e4798067,LIST_TRANSACTIONS,hbciListTransactions,false -45096,c7704de2-58c3-4aeb-a8f4-c223e4798067,AUTHORIZATION,,false -45097,c7704de2-58c3-4aeb-a8f4-c223e4798067,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45098,c7704de2-58c3-4aeb-a8f4-c223e4798067,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45099,c7704de2-58c3-4aeb-a8f4-c223e4798067,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45094,b834737a-e97d-4048-9e6d-9084b2f47649,LIST_ACCOUNTS,hbciListAccounts,false +45095,b834737a-e97d-4048-9e6d-9084b2f47649,LIST_TRANSACTIONS,hbciListTransactions,false +45096,b834737a-e97d-4048-9e6d-9084b2f47649,AUTHORIZATION,,false +45097,b834737a-e97d-4048-9e6d-9084b2f47649,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45098,b834737a-e97d-4048-9e6d-9084b2f47649,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45099,b834737a-e97d-4048-9e6d-9084b2f47649,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45100,d51c3e21-2f60-4ab3-9389-0bb817e01099,LIST_ACCOUNTS,xs2aListAccounts,true -45101,d51c3e21-2f60-4ab3-9389-0bb817e01099,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45101,d51c3e21-2f60-4ab3-9389-0bb817e01099,LIST_TRANSACTIONS,xs2aListTransactions,true 45102,d51c3e21-2f60-4ab3-9389-0bb817e01099,AUTHORIZATION,,true 45103,d51c3e21-2f60-4ab3-9389-0bb817e01099,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45104,d51c3e21-2f60-4ab3-9389-0bb817e01099,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45105,d51c3e21-2f60-4ab3-9389-0bb817e01099,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45106,bdc99afb-495d-49aa-b63a-6c7df5afe8d2,LIST_ACCOUNTS,hbciListAccounts,false -45107,bdc99afb-495d-49aa-b63a-6c7df5afe8d2,LIST_TRANSACTIONS,hbciListTransactions,false -45108,bdc99afb-495d-49aa-b63a-6c7df5afe8d2,AUTHORIZATION,,false -45109,bdc99afb-495d-49aa-b63a-6c7df5afe8d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45110,bdc99afb-495d-49aa-b63a-6c7df5afe8d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45111,bdc99afb-495d-49aa-b63a-6c7df5afe8d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45106,179df3de-d1fe-48f2-9d04-50ef6544532d,LIST_ACCOUNTS,hbciListAccounts,false +45107,179df3de-d1fe-48f2-9d04-50ef6544532d,LIST_TRANSACTIONS,hbciListTransactions,false +45108,179df3de-d1fe-48f2-9d04-50ef6544532d,AUTHORIZATION,,false +45109,179df3de-d1fe-48f2-9d04-50ef6544532d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45110,179df3de-d1fe-48f2-9d04-50ef6544532d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45111,179df3de-d1fe-48f2-9d04-50ef6544532d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45112,4ae6fabb-561b-40e4-b6ae-c5518d8bbc7a,LIST_ACCOUNTS,xs2aListAccounts,true -45113,4ae6fabb-561b-40e4-b6ae-c5518d8bbc7a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45113,4ae6fabb-561b-40e4-b6ae-c5518d8bbc7a,LIST_TRANSACTIONS,xs2aListTransactions,true 45114,4ae6fabb-561b-40e4-b6ae-c5518d8bbc7a,AUTHORIZATION,,true 45115,4ae6fabb-561b-40e4-b6ae-c5518d8bbc7a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45116,4ae6fabb-561b-40e4-b6ae-c5518d8bbc7a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45117,4ae6fabb-561b-40e4-b6ae-c5518d8bbc7a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45118,ac2bc021-a379-420a-bd25-803f0fb08926,LIST_ACCOUNTS,hbciListAccounts,false -45119,ac2bc021-a379-420a-bd25-803f0fb08926,LIST_TRANSACTIONS,hbciListTransactions,false -45120,ac2bc021-a379-420a-bd25-803f0fb08926,AUTHORIZATION,,false -45121,ac2bc021-a379-420a-bd25-803f0fb08926,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45122,ac2bc021-a379-420a-bd25-803f0fb08926,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45123,ac2bc021-a379-420a-bd25-803f0fb08926,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45118,7671df4a-311b-4c6c-8f7b-4085f816bfac,LIST_ACCOUNTS,hbciListAccounts,false +45119,7671df4a-311b-4c6c-8f7b-4085f816bfac,LIST_TRANSACTIONS,hbciListTransactions,false +45120,7671df4a-311b-4c6c-8f7b-4085f816bfac,AUTHORIZATION,,false +45121,7671df4a-311b-4c6c-8f7b-4085f816bfac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45122,7671df4a-311b-4c6c-8f7b-4085f816bfac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45123,7671df4a-311b-4c6c-8f7b-4085f816bfac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45124,84c7c076-37ed-47ae-9ad6-2e503a813878,LIST_ACCOUNTS,xs2aListAccounts,true -45125,84c7c076-37ed-47ae-9ad6-2e503a813878,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45125,84c7c076-37ed-47ae-9ad6-2e503a813878,LIST_TRANSACTIONS,xs2aListTransactions,true 45126,84c7c076-37ed-47ae-9ad6-2e503a813878,AUTHORIZATION,,true 45127,84c7c076-37ed-47ae-9ad6-2e503a813878,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45128,84c7c076-37ed-47ae-9ad6-2e503a813878,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45129,84c7c076-37ed-47ae-9ad6-2e503a813878,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45130,5b8e6858-f0a4-4d1f-865f-dc6473f6b0b9,LIST_ACCOUNTS,hbciListAccounts,false -45131,5b8e6858-f0a4-4d1f-865f-dc6473f6b0b9,LIST_TRANSACTIONS,hbciListTransactions,false -45132,5b8e6858-f0a4-4d1f-865f-dc6473f6b0b9,AUTHORIZATION,,false -45133,5b8e6858-f0a4-4d1f-865f-dc6473f6b0b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45134,5b8e6858-f0a4-4d1f-865f-dc6473f6b0b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45135,5b8e6858-f0a4-4d1f-865f-dc6473f6b0b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45130,1b164417-1f1a-49d4-b86b-b73d2d76d676,LIST_ACCOUNTS,hbciListAccounts,false +45131,1b164417-1f1a-49d4-b86b-b73d2d76d676,LIST_TRANSACTIONS,hbciListTransactions,false +45132,1b164417-1f1a-49d4-b86b-b73d2d76d676,AUTHORIZATION,,false +45133,1b164417-1f1a-49d4-b86b-b73d2d76d676,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45134,1b164417-1f1a-49d4-b86b-b73d2d76d676,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45135,1b164417-1f1a-49d4-b86b-b73d2d76d676,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45136,1078e4b8-8e46-4f52-be46-fcb8b90eaf47,LIST_ACCOUNTS,xs2aListAccounts,true -45137,1078e4b8-8e46-4f52-be46-fcb8b90eaf47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45137,1078e4b8-8e46-4f52-be46-fcb8b90eaf47,LIST_TRANSACTIONS,xs2aListTransactions,true 45138,1078e4b8-8e46-4f52-be46-fcb8b90eaf47,AUTHORIZATION,,true 45139,1078e4b8-8e46-4f52-be46-fcb8b90eaf47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45140,1078e4b8-8e46-4f52-be46-fcb8b90eaf47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45141,1078e4b8-8e46-4f52-be46-fcb8b90eaf47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45142,8912bee3-b61a-45ab-85e2-6060b0cb601e,LIST_ACCOUNTS,hbciListAccounts,false -45143,8912bee3-b61a-45ab-85e2-6060b0cb601e,LIST_TRANSACTIONS,hbciListTransactions,false -45144,8912bee3-b61a-45ab-85e2-6060b0cb601e,AUTHORIZATION,,false -45145,8912bee3-b61a-45ab-85e2-6060b0cb601e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45146,8912bee3-b61a-45ab-85e2-6060b0cb601e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45147,8912bee3-b61a-45ab-85e2-6060b0cb601e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45142,20ed9a1d-ef4c-461c-bd58-8e4b617a31b3,LIST_ACCOUNTS,hbciListAccounts,false +45143,20ed9a1d-ef4c-461c-bd58-8e4b617a31b3,LIST_TRANSACTIONS,hbciListTransactions,false +45144,20ed9a1d-ef4c-461c-bd58-8e4b617a31b3,AUTHORIZATION,,false +45145,20ed9a1d-ef4c-461c-bd58-8e4b617a31b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45146,20ed9a1d-ef4c-461c-bd58-8e4b617a31b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45147,20ed9a1d-ef4c-461c-bd58-8e4b617a31b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45148,3a7c065f-e23e-4bcc-b9cd-96bce69c1848,LIST_ACCOUNTS,xs2aListAccounts,true -45149,3a7c065f-e23e-4bcc-b9cd-96bce69c1848,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45149,3a7c065f-e23e-4bcc-b9cd-96bce69c1848,LIST_TRANSACTIONS,xs2aListTransactions,true 45150,3a7c065f-e23e-4bcc-b9cd-96bce69c1848,AUTHORIZATION,,true 45151,3a7c065f-e23e-4bcc-b9cd-96bce69c1848,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45152,3a7c065f-e23e-4bcc-b9cd-96bce69c1848,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45153,3a7c065f-e23e-4bcc-b9cd-96bce69c1848,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45154,445f6fc7-15fa-4b0d-8dfb-436c988a281b,LIST_ACCOUNTS,hbciListAccounts,false -45155,445f6fc7-15fa-4b0d-8dfb-436c988a281b,LIST_TRANSACTIONS,hbciListTransactions,false -45156,445f6fc7-15fa-4b0d-8dfb-436c988a281b,AUTHORIZATION,,false -45157,445f6fc7-15fa-4b0d-8dfb-436c988a281b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45158,445f6fc7-15fa-4b0d-8dfb-436c988a281b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45159,445f6fc7-15fa-4b0d-8dfb-436c988a281b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45154,6ec7f2b6-ef75-4ec1-bc82-c3e80eb372bb,LIST_ACCOUNTS,hbciListAccounts,false +45155,6ec7f2b6-ef75-4ec1-bc82-c3e80eb372bb,LIST_TRANSACTIONS,hbciListTransactions,false +45156,6ec7f2b6-ef75-4ec1-bc82-c3e80eb372bb,AUTHORIZATION,,false +45157,6ec7f2b6-ef75-4ec1-bc82-c3e80eb372bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45158,6ec7f2b6-ef75-4ec1-bc82-c3e80eb372bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45159,6ec7f2b6-ef75-4ec1-bc82-c3e80eb372bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45160,626fbe83-040a-407c-a175-52e7fcb0099f,LIST_ACCOUNTS,xs2aListAccounts,true -45161,626fbe83-040a-407c-a175-52e7fcb0099f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45161,626fbe83-040a-407c-a175-52e7fcb0099f,LIST_TRANSACTIONS,xs2aListTransactions,true 45162,626fbe83-040a-407c-a175-52e7fcb0099f,AUTHORIZATION,,true 45163,626fbe83-040a-407c-a175-52e7fcb0099f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45164,626fbe83-040a-407c-a175-52e7fcb0099f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45165,626fbe83-040a-407c-a175-52e7fcb0099f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45166,b7708034-cedb-4114-ae4e-c9e8aa5c1871,LIST_ACCOUNTS,hbciListAccounts,false -45167,b7708034-cedb-4114-ae4e-c9e8aa5c1871,LIST_TRANSACTIONS,hbciListTransactions,false -45168,b7708034-cedb-4114-ae4e-c9e8aa5c1871,AUTHORIZATION,,false -45169,b7708034-cedb-4114-ae4e-c9e8aa5c1871,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45170,b7708034-cedb-4114-ae4e-c9e8aa5c1871,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45171,b7708034-cedb-4114-ae4e-c9e8aa5c1871,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45166,806c491c-aaf4-4c81-a636-d85dc6a460a8,LIST_ACCOUNTS,hbciListAccounts,false +45167,806c491c-aaf4-4c81-a636-d85dc6a460a8,LIST_TRANSACTIONS,hbciListTransactions,false +45168,806c491c-aaf4-4c81-a636-d85dc6a460a8,AUTHORIZATION,,false +45169,806c491c-aaf4-4c81-a636-d85dc6a460a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45170,806c491c-aaf4-4c81-a636-d85dc6a460a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45171,806c491c-aaf4-4c81-a636-d85dc6a460a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45172,53b65086-b46b-43fb-890c-3d73dc5fb336,LIST_ACCOUNTS,xs2aListAccounts,true -45173,53b65086-b46b-43fb-890c-3d73dc5fb336,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45173,53b65086-b46b-43fb-890c-3d73dc5fb336,LIST_TRANSACTIONS,xs2aListTransactions,true 45174,53b65086-b46b-43fb-890c-3d73dc5fb336,AUTHORIZATION,,true 45175,53b65086-b46b-43fb-890c-3d73dc5fb336,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45176,53b65086-b46b-43fb-890c-3d73dc5fb336,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45177,53b65086-b46b-43fb-890c-3d73dc5fb336,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45178,fbb33a77-9e91-43ed-99c8-cb7751b0d91a,LIST_ACCOUNTS,hbciListAccounts,false -45179,fbb33a77-9e91-43ed-99c8-cb7751b0d91a,LIST_TRANSACTIONS,hbciListTransactions,false -45180,fbb33a77-9e91-43ed-99c8-cb7751b0d91a,AUTHORIZATION,,false -45181,fbb33a77-9e91-43ed-99c8-cb7751b0d91a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45182,fbb33a77-9e91-43ed-99c8-cb7751b0d91a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45183,fbb33a77-9e91-43ed-99c8-cb7751b0d91a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45178,5c0257c5-29f4-41c6-9596-929c0d931d6e,LIST_ACCOUNTS,hbciListAccounts,false +45179,5c0257c5-29f4-41c6-9596-929c0d931d6e,LIST_TRANSACTIONS,hbciListTransactions,false +45180,5c0257c5-29f4-41c6-9596-929c0d931d6e,AUTHORIZATION,,false +45181,5c0257c5-29f4-41c6-9596-929c0d931d6e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45182,5c0257c5-29f4-41c6-9596-929c0d931d6e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45183,5c0257c5-29f4-41c6-9596-929c0d931d6e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45184,a158aded-71c3-45ab-a9ab-4493a944c3b9,LIST_ACCOUNTS,xs2aListAccounts,true -45185,a158aded-71c3-45ab-a9ab-4493a944c3b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45185,a158aded-71c3-45ab-a9ab-4493a944c3b9,LIST_TRANSACTIONS,xs2aListTransactions,true 45186,a158aded-71c3-45ab-a9ab-4493a944c3b9,AUTHORIZATION,,true 45187,a158aded-71c3-45ab-a9ab-4493a944c3b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45188,a158aded-71c3-45ab-a9ab-4493a944c3b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45189,a158aded-71c3-45ab-a9ab-4493a944c3b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45190,44f408a4-e0ce-41d0-85e8-46a3c13d2ad1,LIST_ACCOUNTS,hbciListAccounts,false -45191,44f408a4-e0ce-41d0-85e8-46a3c13d2ad1,LIST_TRANSACTIONS,hbciListTransactions,false -45192,44f408a4-e0ce-41d0-85e8-46a3c13d2ad1,AUTHORIZATION,,false -45193,44f408a4-e0ce-41d0-85e8-46a3c13d2ad1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45194,44f408a4-e0ce-41d0-85e8-46a3c13d2ad1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45195,44f408a4-e0ce-41d0-85e8-46a3c13d2ad1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45190,3597d5c9-3c2d-4576-ab67-f4a45a2af572,LIST_ACCOUNTS,hbciListAccounts,false +45191,3597d5c9-3c2d-4576-ab67-f4a45a2af572,LIST_TRANSACTIONS,hbciListTransactions,false +45192,3597d5c9-3c2d-4576-ab67-f4a45a2af572,AUTHORIZATION,,false +45193,3597d5c9-3c2d-4576-ab67-f4a45a2af572,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45194,3597d5c9-3c2d-4576-ab67-f4a45a2af572,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45195,3597d5c9-3c2d-4576-ab67-f4a45a2af572,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45196,d65a8939-04cd-4f14-9f5a-0c7a2da79f4f,LIST_ACCOUNTS,xs2aListAccounts,true -45197,d65a8939-04cd-4f14-9f5a-0c7a2da79f4f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45197,d65a8939-04cd-4f14-9f5a-0c7a2da79f4f,LIST_TRANSACTIONS,xs2aListTransactions,true 45198,d65a8939-04cd-4f14-9f5a-0c7a2da79f4f,AUTHORIZATION,,true 45199,d65a8939-04cd-4f14-9f5a-0c7a2da79f4f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45200,d65a8939-04cd-4f14-9f5a-0c7a2da79f4f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45201,d65a8939-04cd-4f14-9f5a-0c7a2da79f4f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45202,4495c596-08ab-4fa9-95bd-adadf3c85729,LIST_ACCOUNTS,hbciListAccounts,false -45203,4495c596-08ab-4fa9-95bd-adadf3c85729,LIST_TRANSACTIONS,hbciListTransactions,false -45204,4495c596-08ab-4fa9-95bd-adadf3c85729,AUTHORIZATION,,false -45205,4495c596-08ab-4fa9-95bd-adadf3c85729,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45206,4495c596-08ab-4fa9-95bd-adadf3c85729,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45207,4495c596-08ab-4fa9-95bd-adadf3c85729,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45202,3060913b-80a4-42cd-9f96-997541b11d65,LIST_ACCOUNTS,hbciListAccounts,false +45203,3060913b-80a4-42cd-9f96-997541b11d65,LIST_TRANSACTIONS,hbciListTransactions,false +45204,3060913b-80a4-42cd-9f96-997541b11d65,AUTHORIZATION,,false +45205,3060913b-80a4-42cd-9f96-997541b11d65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45206,3060913b-80a4-42cd-9f96-997541b11d65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45207,3060913b-80a4-42cd-9f96-997541b11d65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45208,42f4413a-ce7a-40e6-bd0d-4bb45d644675,LIST_ACCOUNTS,xs2aListAccounts,true -45209,42f4413a-ce7a-40e6-bd0d-4bb45d644675,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45209,42f4413a-ce7a-40e6-bd0d-4bb45d644675,LIST_TRANSACTIONS,xs2aListTransactions,true 45210,42f4413a-ce7a-40e6-bd0d-4bb45d644675,AUTHORIZATION,,true 45211,42f4413a-ce7a-40e6-bd0d-4bb45d644675,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45212,42f4413a-ce7a-40e6-bd0d-4bb45d644675,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45213,42f4413a-ce7a-40e6-bd0d-4bb45d644675,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45214,62ed24a7-a96a-4f60-8e0d-d2827957ccf3,LIST_ACCOUNTS,hbciListAccounts,false -45215,62ed24a7-a96a-4f60-8e0d-d2827957ccf3,LIST_TRANSACTIONS,hbciListTransactions,false -45216,62ed24a7-a96a-4f60-8e0d-d2827957ccf3,AUTHORIZATION,,false -45217,62ed24a7-a96a-4f60-8e0d-d2827957ccf3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45218,62ed24a7-a96a-4f60-8e0d-d2827957ccf3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45219,62ed24a7-a96a-4f60-8e0d-d2827957ccf3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45214,d2b0120d-2672-4f87-b581-cf98c3d85584,LIST_ACCOUNTS,hbciListAccounts,false +45215,d2b0120d-2672-4f87-b581-cf98c3d85584,LIST_TRANSACTIONS,hbciListTransactions,false +45216,d2b0120d-2672-4f87-b581-cf98c3d85584,AUTHORIZATION,,false +45217,d2b0120d-2672-4f87-b581-cf98c3d85584,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45218,d2b0120d-2672-4f87-b581-cf98c3d85584,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45219,d2b0120d-2672-4f87-b581-cf98c3d85584,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45220,cdfff668-5f12-4a3c-b931-3ffb62f6c5f7,LIST_ACCOUNTS,xs2aListAccounts,true -45221,cdfff668-5f12-4a3c-b931-3ffb62f6c5f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45221,cdfff668-5f12-4a3c-b931-3ffb62f6c5f7,LIST_TRANSACTIONS,xs2aListTransactions,true 45222,cdfff668-5f12-4a3c-b931-3ffb62f6c5f7,AUTHORIZATION,,true 45223,cdfff668-5f12-4a3c-b931-3ffb62f6c5f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45224,cdfff668-5f12-4a3c-b931-3ffb62f6c5f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45225,cdfff668-5f12-4a3c-b931-3ffb62f6c5f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45226,3ded80e1-870d-435d-9f3e-07bb53bfe99f,LIST_ACCOUNTS,hbciListAccounts,false -45227,3ded80e1-870d-435d-9f3e-07bb53bfe99f,LIST_TRANSACTIONS,hbciListTransactions,false -45228,3ded80e1-870d-435d-9f3e-07bb53bfe99f,AUTHORIZATION,,false -45229,3ded80e1-870d-435d-9f3e-07bb53bfe99f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45230,3ded80e1-870d-435d-9f3e-07bb53bfe99f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45231,3ded80e1-870d-435d-9f3e-07bb53bfe99f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45226,6c5471f2-7a47-4d43-91d9-df41422ccbaa,LIST_ACCOUNTS,hbciListAccounts,false +45227,6c5471f2-7a47-4d43-91d9-df41422ccbaa,LIST_TRANSACTIONS,hbciListTransactions,false +45228,6c5471f2-7a47-4d43-91d9-df41422ccbaa,AUTHORIZATION,,false +45229,6c5471f2-7a47-4d43-91d9-df41422ccbaa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45230,6c5471f2-7a47-4d43-91d9-df41422ccbaa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45231,6c5471f2-7a47-4d43-91d9-df41422ccbaa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45232,e1961085-42c2-4beb-8233-9607f48a63e5,LIST_ACCOUNTS,xs2aListAccounts,true -45233,e1961085-42c2-4beb-8233-9607f48a63e5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45233,e1961085-42c2-4beb-8233-9607f48a63e5,LIST_TRANSACTIONS,xs2aListTransactions,true 45234,e1961085-42c2-4beb-8233-9607f48a63e5,AUTHORIZATION,,true 45235,e1961085-42c2-4beb-8233-9607f48a63e5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45236,e1961085-42c2-4beb-8233-9607f48a63e5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45237,e1961085-42c2-4beb-8233-9607f48a63e5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45238,5c88970d-20b7-4199-b57b-115970157ca0,LIST_ACCOUNTS,hbciListAccounts,false -45239,5c88970d-20b7-4199-b57b-115970157ca0,LIST_TRANSACTIONS,hbciListTransactions,false -45240,5c88970d-20b7-4199-b57b-115970157ca0,AUTHORIZATION,,false -45241,5c88970d-20b7-4199-b57b-115970157ca0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45242,5c88970d-20b7-4199-b57b-115970157ca0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45243,5c88970d-20b7-4199-b57b-115970157ca0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45238,33fee12f-15e5-4a07-84ef-289f421646d0,LIST_ACCOUNTS,hbciListAccounts,false +45239,33fee12f-15e5-4a07-84ef-289f421646d0,LIST_TRANSACTIONS,hbciListTransactions,false +45240,33fee12f-15e5-4a07-84ef-289f421646d0,AUTHORIZATION,,false +45241,33fee12f-15e5-4a07-84ef-289f421646d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45242,33fee12f-15e5-4a07-84ef-289f421646d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45243,33fee12f-15e5-4a07-84ef-289f421646d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45244,8b64582d-b933-4482-972f-439cf6fdc782,LIST_ACCOUNTS,xs2aListAccounts,true -45245,8b64582d-b933-4482-972f-439cf6fdc782,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45245,8b64582d-b933-4482-972f-439cf6fdc782,LIST_TRANSACTIONS,xs2aListTransactions,true 45246,8b64582d-b933-4482-972f-439cf6fdc782,AUTHORIZATION,,true 45247,8b64582d-b933-4482-972f-439cf6fdc782,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45248,8b64582d-b933-4482-972f-439cf6fdc782,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45249,8b64582d-b933-4482-972f-439cf6fdc782,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45250,ce7f5e92-a234-4d51-82e8-b24580eb31ea,LIST_ACCOUNTS,hbciListAccounts,false -45251,ce7f5e92-a234-4d51-82e8-b24580eb31ea,LIST_TRANSACTIONS,hbciListTransactions,false -45252,ce7f5e92-a234-4d51-82e8-b24580eb31ea,AUTHORIZATION,,false -45253,ce7f5e92-a234-4d51-82e8-b24580eb31ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45254,ce7f5e92-a234-4d51-82e8-b24580eb31ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45255,ce7f5e92-a234-4d51-82e8-b24580eb31ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45250,3c98f572-54d3-4468-8dd7-66158f79c5f6,LIST_ACCOUNTS,hbciListAccounts,false +45251,3c98f572-54d3-4468-8dd7-66158f79c5f6,LIST_TRANSACTIONS,hbciListTransactions,false +45252,3c98f572-54d3-4468-8dd7-66158f79c5f6,AUTHORIZATION,,false +45253,3c98f572-54d3-4468-8dd7-66158f79c5f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45254,3c98f572-54d3-4468-8dd7-66158f79c5f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45255,3c98f572-54d3-4468-8dd7-66158f79c5f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45256,d9fcdf9d-92fe-40f1-84d0-32cca44edbe7,LIST_ACCOUNTS,xs2aListAccounts,true -45257,d9fcdf9d-92fe-40f1-84d0-32cca44edbe7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45257,d9fcdf9d-92fe-40f1-84d0-32cca44edbe7,LIST_TRANSACTIONS,xs2aListTransactions,true 45258,d9fcdf9d-92fe-40f1-84d0-32cca44edbe7,AUTHORIZATION,,true 45259,d9fcdf9d-92fe-40f1-84d0-32cca44edbe7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45260,d9fcdf9d-92fe-40f1-84d0-32cca44edbe7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45261,d9fcdf9d-92fe-40f1-84d0-32cca44edbe7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45262,92385ede-14b3-47d0-886d-d1a2a52e3f6c,LIST_ACCOUNTS,hbciListAccounts,false -45263,92385ede-14b3-47d0-886d-d1a2a52e3f6c,LIST_TRANSACTIONS,hbciListTransactions,false -45264,92385ede-14b3-47d0-886d-d1a2a52e3f6c,AUTHORIZATION,,false -45265,92385ede-14b3-47d0-886d-d1a2a52e3f6c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45266,92385ede-14b3-47d0-886d-d1a2a52e3f6c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45267,92385ede-14b3-47d0-886d-d1a2a52e3f6c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45262,d0812938-c3a2-4270-a51a-150cefc72fd7,LIST_ACCOUNTS,hbciListAccounts,false +45263,d0812938-c3a2-4270-a51a-150cefc72fd7,LIST_TRANSACTIONS,hbciListTransactions,false +45264,d0812938-c3a2-4270-a51a-150cefc72fd7,AUTHORIZATION,,false +45265,d0812938-c3a2-4270-a51a-150cefc72fd7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45266,d0812938-c3a2-4270-a51a-150cefc72fd7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45267,d0812938-c3a2-4270-a51a-150cefc72fd7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45268,1647f976-82e0-4501-b724-5771f33d48bc,LIST_ACCOUNTS,xs2aListAccounts,true -45269,1647f976-82e0-4501-b724-5771f33d48bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45269,1647f976-82e0-4501-b724-5771f33d48bc,LIST_TRANSACTIONS,xs2aListTransactions,true 45270,1647f976-82e0-4501-b724-5771f33d48bc,AUTHORIZATION,,true 45271,1647f976-82e0-4501-b724-5771f33d48bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45272,1647f976-82e0-4501-b724-5771f33d48bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45273,1647f976-82e0-4501-b724-5771f33d48bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45274,1bd707ec-4356-4a21-8294-0dd41e5c2444,LIST_ACCOUNTS,hbciListAccounts,false -45275,1bd707ec-4356-4a21-8294-0dd41e5c2444,LIST_TRANSACTIONS,hbciListTransactions,false -45276,1bd707ec-4356-4a21-8294-0dd41e5c2444,AUTHORIZATION,,false -45277,1bd707ec-4356-4a21-8294-0dd41e5c2444,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45278,1bd707ec-4356-4a21-8294-0dd41e5c2444,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45279,1bd707ec-4356-4a21-8294-0dd41e5c2444,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45274,b5c6e070-5da2-4b5d-aefb-5919dbdae4e3,LIST_ACCOUNTS,hbciListAccounts,false +45275,b5c6e070-5da2-4b5d-aefb-5919dbdae4e3,LIST_TRANSACTIONS,hbciListTransactions,false +45276,b5c6e070-5da2-4b5d-aefb-5919dbdae4e3,AUTHORIZATION,,false +45277,b5c6e070-5da2-4b5d-aefb-5919dbdae4e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45278,b5c6e070-5da2-4b5d-aefb-5919dbdae4e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45279,b5c6e070-5da2-4b5d-aefb-5919dbdae4e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45280,d4d07376-3137-42d1-85e3-61dd444898cf,LIST_ACCOUNTS,xs2aListAccounts,true -45281,d4d07376-3137-42d1-85e3-61dd444898cf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45281,d4d07376-3137-42d1-85e3-61dd444898cf,LIST_TRANSACTIONS,xs2aListTransactions,true 45282,d4d07376-3137-42d1-85e3-61dd444898cf,AUTHORIZATION,,true 45283,d4d07376-3137-42d1-85e3-61dd444898cf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45284,d4d07376-3137-42d1-85e3-61dd444898cf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45285,d4d07376-3137-42d1-85e3-61dd444898cf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45286,3e74ece1-d08f-4a16-a33e-e42b85bb8426,LIST_ACCOUNTS,hbciListAccounts,false -45287,3e74ece1-d08f-4a16-a33e-e42b85bb8426,LIST_TRANSACTIONS,hbciListTransactions,false -45288,3e74ece1-d08f-4a16-a33e-e42b85bb8426,AUTHORIZATION,,false -45289,3e74ece1-d08f-4a16-a33e-e42b85bb8426,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45290,3e74ece1-d08f-4a16-a33e-e42b85bb8426,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45291,3e74ece1-d08f-4a16-a33e-e42b85bb8426,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45286,c421f98c-7a31-4d18-bb76-b5b5edf46a9b,LIST_ACCOUNTS,hbciListAccounts,false +45287,c421f98c-7a31-4d18-bb76-b5b5edf46a9b,LIST_TRANSACTIONS,hbciListTransactions,false +45288,c421f98c-7a31-4d18-bb76-b5b5edf46a9b,AUTHORIZATION,,false +45289,c421f98c-7a31-4d18-bb76-b5b5edf46a9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45290,c421f98c-7a31-4d18-bb76-b5b5edf46a9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45291,c421f98c-7a31-4d18-bb76-b5b5edf46a9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45292,c3e37d1f-0a76-43d7-9214-5d2e83d90d66,LIST_ACCOUNTS,xs2aListAccounts,true -45293,c3e37d1f-0a76-43d7-9214-5d2e83d90d66,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45293,c3e37d1f-0a76-43d7-9214-5d2e83d90d66,LIST_TRANSACTIONS,xs2aListTransactions,true 45294,c3e37d1f-0a76-43d7-9214-5d2e83d90d66,AUTHORIZATION,,true 45295,c3e37d1f-0a76-43d7-9214-5d2e83d90d66,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45296,c3e37d1f-0a76-43d7-9214-5d2e83d90d66,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45297,c3e37d1f-0a76-43d7-9214-5d2e83d90d66,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45298,771f35f2-2b5c-40d5-bbad-88b862df4f02,LIST_ACCOUNTS,hbciListAccounts,false -45299,771f35f2-2b5c-40d5-bbad-88b862df4f02,LIST_TRANSACTIONS,hbciListTransactions,false -45300,771f35f2-2b5c-40d5-bbad-88b862df4f02,AUTHORIZATION,,false -45301,771f35f2-2b5c-40d5-bbad-88b862df4f02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45302,771f35f2-2b5c-40d5-bbad-88b862df4f02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45303,771f35f2-2b5c-40d5-bbad-88b862df4f02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45298,444d075c-a991-441a-b4dc-1d9e1df00802,LIST_ACCOUNTS,hbciListAccounts,false +45299,444d075c-a991-441a-b4dc-1d9e1df00802,LIST_TRANSACTIONS,hbciListTransactions,false +45300,444d075c-a991-441a-b4dc-1d9e1df00802,AUTHORIZATION,,false +45301,444d075c-a991-441a-b4dc-1d9e1df00802,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45302,444d075c-a991-441a-b4dc-1d9e1df00802,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45303,444d075c-a991-441a-b4dc-1d9e1df00802,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45304,b229d63e-7f48-4bb4-bb53-453037ade973,LIST_ACCOUNTS,xs2aListAccounts,true -45305,b229d63e-7f48-4bb4-bb53-453037ade973,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45305,b229d63e-7f48-4bb4-bb53-453037ade973,LIST_TRANSACTIONS,xs2aListTransactions,true 45306,b229d63e-7f48-4bb4-bb53-453037ade973,AUTHORIZATION,,true 45307,b229d63e-7f48-4bb4-bb53-453037ade973,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45308,b229d63e-7f48-4bb4-bb53-453037ade973,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45309,b229d63e-7f48-4bb4-bb53-453037ade973,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45310,93ea0ac0-ea9f-4cc4-97d2-d5f8ae36f283,LIST_ACCOUNTS,hbciListAccounts,false -45311,93ea0ac0-ea9f-4cc4-97d2-d5f8ae36f283,LIST_TRANSACTIONS,hbciListTransactions,false -45312,93ea0ac0-ea9f-4cc4-97d2-d5f8ae36f283,AUTHORIZATION,,false -45313,93ea0ac0-ea9f-4cc4-97d2-d5f8ae36f283,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45314,93ea0ac0-ea9f-4cc4-97d2-d5f8ae36f283,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45315,93ea0ac0-ea9f-4cc4-97d2-d5f8ae36f283,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45310,e41ae322-96fc-457c-921a-f59a9518ffd0,LIST_ACCOUNTS,hbciListAccounts,false +45311,e41ae322-96fc-457c-921a-f59a9518ffd0,LIST_TRANSACTIONS,hbciListTransactions,false +45312,e41ae322-96fc-457c-921a-f59a9518ffd0,AUTHORIZATION,,false +45313,e41ae322-96fc-457c-921a-f59a9518ffd0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45314,e41ae322-96fc-457c-921a-f59a9518ffd0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45315,e41ae322-96fc-457c-921a-f59a9518ffd0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45316,10965eda-1ae2-4a83-9d92-9e0bff39b05a,LIST_ACCOUNTS,xs2aListAccounts,true -45317,10965eda-1ae2-4a83-9d92-9e0bff39b05a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45317,10965eda-1ae2-4a83-9d92-9e0bff39b05a,LIST_TRANSACTIONS,xs2aListTransactions,true 45318,10965eda-1ae2-4a83-9d92-9e0bff39b05a,AUTHORIZATION,,true 45319,10965eda-1ae2-4a83-9d92-9e0bff39b05a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45320,10965eda-1ae2-4a83-9d92-9e0bff39b05a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45321,10965eda-1ae2-4a83-9d92-9e0bff39b05a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45322,a5411b49-3aa1-4194-a035-86061e3aab87,LIST_ACCOUNTS,hbciListAccounts,false -45323,a5411b49-3aa1-4194-a035-86061e3aab87,LIST_TRANSACTIONS,hbciListTransactions,false -45324,a5411b49-3aa1-4194-a035-86061e3aab87,AUTHORIZATION,,false -45325,a5411b49-3aa1-4194-a035-86061e3aab87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45326,a5411b49-3aa1-4194-a035-86061e3aab87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45327,a5411b49-3aa1-4194-a035-86061e3aab87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45322,d575a89d-b02a-4ffd-bc27-58f2cb79b913,LIST_ACCOUNTS,hbciListAccounts,false +45323,d575a89d-b02a-4ffd-bc27-58f2cb79b913,LIST_TRANSACTIONS,hbciListTransactions,false +45324,d575a89d-b02a-4ffd-bc27-58f2cb79b913,AUTHORIZATION,,false +45325,d575a89d-b02a-4ffd-bc27-58f2cb79b913,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45326,d575a89d-b02a-4ffd-bc27-58f2cb79b913,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45327,d575a89d-b02a-4ffd-bc27-58f2cb79b913,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45328,55f6756a-3309-4091-9569-6b4d32c7ba98,LIST_ACCOUNTS,xs2aListAccounts,true -45329,55f6756a-3309-4091-9569-6b4d32c7ba98,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45329,55f6756a-3309-4091-9569-6b4d32c7ba98,LIST_TRANSACTIONS,xs2aListTransactions,true 45330,55f6756a-3309-4091-9569-6b4d32c7ba98,AUTHORIZATION,,true 45331,55f6756a-3309-4091-9569-6b4d32c7ba98,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45332,55f6756a-3309-4091-9569-6b4d32c7ba98,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45333,55f6756a-3309-4091-9569-6b4d32c7ba98,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45334,fb5acdf9-92ec-49b0-9e2e-2a184f4e3375,LIST_ACCOUNTS,hbciListAccounts,false -45335,fb5acdf9-92ec-49b0-9e2e-2a184f4e3375,LIST_TRANSACTIONS,hbciListTransactions,false -45336,fb5acdf9-92ec-49b0-9e2e-2a184f4e3375,AUTHORIZATION,,false -45337,fb5acdf9-92ec-49b0-9e2e-2a184f4e3375,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45338,fb5acdf9-92ec-49b0-9e2e-2a184f4e3375,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45339,fb5acdf9-92ec-49b0-9e2e-2a184f4e3375,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45334,7d503ee6-e493-42f8-b9f8-5e2ca7beb8aa,LIST_ACCOUNTS,hbciListAccounts,false +45335,7d503ee6-e493-42f8-b9f8-5e2ca7beb8aa,LIST_TRANSACTIONS,hbciListTransactions,false +45336,7d503ee6-e493-42f8-b9f8-5e2ca7beb8aa,AUTHORIZATION,,false +45337,7d503ee6-e493-42f8-b9f8-5e2ca7beb8aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45338,7d503ee6-e493-42f8-b9f8-5e2ca7beb8aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45339,7d503ee6-e493-42f8-b9f8-5e2ca7beb8aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45340,49fe7611-d063-450a-8977-39a501c41f9b,LIST_ACCOUNTS,xs2aListAccounts,true -45341,49fe7611-d063-450a-8977-39a501c41f9b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45341,49fe7611-d063-450a-8977-39a501c41f9b,LIST_TRANSACTIONS,xs2aListTransactions,true 45342,49fe7611-d063-450a-8977-39a501c41f9b,AUTHORIZATION,,true 45343,49fe7611-d063-450a-8977-39a501c41f9b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45344,49fe7611-d063-450a-8977-39a501c41f9b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45345,49fe7611-d063-450a-8977-39a501c41f9b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45346,cf3a628a-5d34-416d-a3cd-214b50e68d82,LIST_ACCOUNTS,hbciListAccounts,false -45347,cf3a628a-5d34-416d-a3cd-214b50e68d82,LIST_TRANSACTIONS,hbciListTransactions,false -45348,cf3a628a-5d34-416d-a3cd-214b50e68d82,AUTHORIZATION,,false -45349,cf3a628a-5d34-416d-a3cd-214b50e68d82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45350,cf3a628a-5d34-416d-a3cd-214b50e68d82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45351,cf3a628a-5d34-416d-a3cd-214b50e68d82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45346,12712743-403a-44cc-ae3c-55ef79955866,LIST_ACCOUNTS,hbciListAccounts,false +45347,12712743-403a-44cc-ae3c-55ef79955866,LIST_TRANSACTIONS,hbciListTransactions,false +45348,12712743-403a-44cc-ae3c-55ef79955866,AUTHORIZATION,,false +45349,12712743-403a-44cc-ae3c-55ef79955866,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45350,12712743-403a-44cc-ae3c-55ef79955866,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45351,12712743-403a-44cc-ae3c-55ef79955866,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45352,2451cefe-a044-48a3-a0fd-5d972ec144f2,LIST_ACCOUNTS,xs2aListAccounts,true -45353,2451cefe-a044-48a3-a0fd-5d972ec144f2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45353,2451cefe-a044-48a3-a0fd-5d972ec144f2,LIST_TRANSACTIONS,xs2aListTransactions,true 45354,2451cefe-a044-48a3-a0fd-5d972ec144f2,AUTHORIZATION,,true 45355,2451cefe-a044-48a3-a0fd-5d972ec144f2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45356,2451cefe-a044-48a3-a0fd-5d972ec144f2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45357,2451cefe-a044-48a3-a0fd-5d972ec144f2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45358,78d32a5a-4f0e-4190-92e2-c6f78c84cf93,LIST_ACCOUNTS,hbciListAccounts,false -45359,78d32a5a-4f0e-4190-92e2-c6f78c84cf93,LIST_TRANSACTIONS,hbciListTransactions,false -45360,78d32a5a-4f0e-4190-92e2-c6f78c84cf93,AUTHORIZATION,,false -45361,78d32a5a-4f0e-4190-92e2-c6f78c84cf93,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45362,78d32a5a-4f0e-4190-92e2-c6f78c84cf93,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45363,78d32a5a-4f0e-4190-92e2-c6f78c84cf93,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45358,56a99c4c-7562-496e-85f4-af91c7e2fd02,LIST_ACCOUNTS,hbciListAccounts,false +45359,56a99c4c-7562-496e-85f4-af91c7e2fd02,LIST_TRANSACTIONS,hbciListTransactions,false +45360,56a99c4c-7562-496e-85f4-af91c7e2fd02,AUTHORIZATION,,false +45361,56a99c4c-7562-496e-85f4-af91c7e2fd02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45362,56a99c4c-7562-496e-85f4-af91c7e2fd02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45363,56a99c4c-7562-496e-85f4-af91c7e2fd02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45364,81ca4872-5dd1-431e-a1d9-f8fa9f781fcd,LIST_ACCOUNTS,xs2aListAccounts,true -45365,81ca4872-5dd1-431e-a1d9-f8fa9f781fcd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45365,81ca4872-5dd1-431e-a1d9-f8fa9f781fcd,LIST_TRANSACTIONS,xs2aListTransactions,true 45366,81ca4872-5dd1-431e-a1d9-f8fa9f781fcd,AUTHORIZATION,,true 45367,81ca4872-5dd1-431e-a1d9-f8fa9f781fcd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45368,81ca4872-5dd1-431e-a1d9-f8fa9f781fcd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45369,81ca4872-5dd1-431e-a1d9-f8fa9f781fcd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45370,81b66cec-05dc-4e37-a7bf-a438ba8cbc47,LIST_ACCOUNTS,hbciListAccounts,false -45371,81b66cec-05dc-4e37-a7bf-a438ba8cbc47,LIST_TRANSACTIONS,hbciListTransactions,false -45372,81b66cec-05dc-4e37-a7bf-a438ba8cbc47,AUTHORIZATION,,false -45373,81b66cec-05dc-4e37-a7bf-a438ba8cbc47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45374,81b66cec-05dc-4e37-a7bf-a438ba8cbc47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45375,81b66cec-05dc-4e37-a7bf-a438ba8cbc47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45370,5a1897ec-3b7c-49cd-a310-080585b10e12,LIST_ACCOUNTS,hbciListAccounts,false +45371,5a1897ec-3b7c-49cd-a310-080585b10e12,LIST_TRANSACTIONS,hbciListTransactions,false +45372,5a1897ec-3b7c-49cd-a310-080585b10e12,AUTHORIZATION,,false +45373,5a1897ec-3b7c-49cd-a310-080585b10e12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45374,5a1897ec-3b7c-49cd-a310-080585b10e12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45375,5a1897ec-3b7c-49cd-a310-080585b10e12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45376,89f9848c-bbc8-4d1a-96ba-8603c474f3be,LIST_ACCOUNTS,xs2aListAccounts,true -45377,89f9848c-bbc8-4d1a-96ba-8603c474f3be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45377,89f9848c-bbc8-4d1a-96ba-8603c474f3be,LIST_TRANSACTIONS,xs2aListTransactions,true 45378,89f9848c-bbc8-4d1a-96ba-8603c474f3be,AUTHORIZATION,,true 45379,89f9848c-bbc8-4d1a-96ba-8603c474f3be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45380,89f9848c-bbc8-4d1a-96ba-8603c474f3be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45381,89f9848c-bbc8-4d1a-96ba-8603c474f3be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45382,77f6b3b9-ce41-474b-bdc4-2edb235d62d3,LIST_ACCOUNTS,hbciListAccounts,false -45383,77f6b3b9-ce41-474b-bdc4-2edb235d62d3,LIST_TRANSACTIONS,hbciListTransactions,false -45384,77f6b3b9-ce41-474b-bdc4-2edb235d62d3,AUTHORIZATION,,false -45385,77f6b3b9-ce41-474b-bdc4-2edb235d62d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45386,77f6b3b9-ce41-474b-bdc4-2edb235d62d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45387,77f6b3b9-ce41-474b-bdc4-2edb235d62d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45382,c7a1ec4a-5fe6-4155-9cd0-8cae6e8b9792,LIST_ACCOUNTS,hbciListAccounts,false +45383,c7a1ec4a-5fe6-4155-9cd0-8cae6e8b9792,LIST_TRANSACTIONS,hbciListTransactions,false +45384,c7a1ec4a-5fe6-4155-9cd0-8cae6e8b9792,AUTHORIZATION,,false +45385,c7a1ec4a-5fe6-4155-9cd0-8cae6e8b9792,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45386,c7a1ec4a-5fe6-4155-9cd0-8cae6e8b9792,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45387,c7a1ec4a-5fe6-4155-9cd0-8cae6e8b9792,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45388,3ff15431-5bdb-471b-8fe5-8f53ab02795d,LIST_ACCOUNTS,xs2aListAccounts,true -45389,3ff15431-5bdb-471b-8fe5-8f53ab02795d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45389,3ff15431-5bdb-471b-8fe5-8f53ab02795d,LIST_TRANSACTIONS,xs2aListTransactions,true 45390,3ff15431-5bdb-471b-8fe5-8f53ab02795d,AUTHORIZATION,,true 45391,3ff15431-5bdb-471b-8fe5-8f53ab02795d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45392,3ff15431-5bdb-471b-8fe5-8f53ab02795d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45393,3ff15431-5bdb-471b-8fe5-8f53ab02795d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45394,ffafed71-48b3-4792-824f-1223253420e1,LIST_ACCOUNTS,hbciListAccounts,false -45395,ffafed71-48b3-4792-824f-1223253420e1,LIST_TRANSACTIONS,hbciListTransactions,false -45396,ffafed71-48b3-4792-824f-1223253420e1,AUTHORIZATION,,false -45397,ffafed71-48b3-4792-824f-1223253420e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45398,ffafed71-48b3-4792-824f-1223253420e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45399,ffafed71-48b3-4792-824f-1223253420e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45394,dd35a1b6-12c4-4805-a0ad-7a3fc295a0f9,LIST_ACCOUNTS,hbciListAccounts,false +45395,dd35a1b6-12c4-4805-a0ad-7a3fc295a0f9,LIST_TRANSACTIONS,hbciListTransactions,false +45396,dd35a1b6-12c4-4805-a0ad-7a3fc295a0f9,AUTHORIZATION,,false +45397,dd35a1b6-12c4-4805-a0ad-7a3fc295a0f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45398,dd35a1b6-12c4-4805-a0ad-7a3fc295a0f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45399,dd35a1b6-12c4-4805-a0ad-7a3fc295a0f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45400,d4e02b94-fd9c-4aba-8e55-ff655cfeebc5,LIST_ACCOUNTS,xs2aListAccounts,true -45401,d4e02b94-fd9c-4aba-8e55-ff655cfeebc5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45401,d4e02b94-fd9c-4aba-8e55-ff655cfeebc5,LIST_TRANSACTIONS,xs2aListTransactions,true 45402,d4e02b94-fd9c-4aba-8e55-ff655cfeebc5,AUTHORIZATION,,true 45403,d4e02b94-fd9c-4aba-8e55-ff655cfeebc5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45404,d4e02b94-fd9c-4aba-8e55-ff655cfeebc5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45405,d4e02b94-fd9c-4aba-8e55-ff655cfeebc5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45406,50bfe73a-8583-4806-8f95-d6d4d5428294,LIST_ACCOUNTS,hbciListAccounts,false -45407,50bfe73a-8583-4806-8f95-d6d4d5428294,LIST_TRANSACTIONS,hbciListTransactions,false -45408,50bfe73a-8583-4806-8f95-d6d4d5428294,AUTHORIZATION,,false -45409,50bfe73a-8583-4806-8f95-d6d4d5428294,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45410,50bfe73a-8583-4806-8f95-d6d4d5428294,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45411,50bfe73a-8583-4806-8f95-d6d4d5428294,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45406,2644310e-8392-4469-936d-9fcb60fd1287,LIST_ACCOUNTS,hbciListAccounts,false +45407,2644310e-8392-4469-936d-9fcb60fd1287,LIST_TRANSACTIONS,hbciListTransactions,false +45408,2644310e-8392-4469-936d-9fcb60fd1287,AUTHORIZATION,,false +45409,2644310e-8392-4469-936d-9fcb60fd1287,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45410,2644310e-8392-4469-936d-9fcb60fd1287,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45411,2644310e-8392-4469-936d-9fcb60fd1287,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45412,ece709b3-3899-49ff-a101-8b05844054e3,LIST_ACCOUNTS,xs2aListAccounts,true -45413,ece709b3-3899-49ff-a101-8b05844054e3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45413,ece709b3-3899-49ff-a101-8b05844054e3,LIST_TRANSACTIONS,xs2aListTransactions,true 45414,ece709b3-3899-49ff-a101-8b05844054e3,AUTHORIZATION,,true 45415,ece709b3-3899-49ff-a101-8b05844054e3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45416,ece709b3-3899-49ff-a101-8b05844054e3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45417,ece709b3-3899-49ff-a101-8b05844054e3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45418,afb83d1c-be80-4b6c-affd-4e24fe8e0df0,LIST_ACCOUNTS,hbciListAccounts,false -45419,afb83d1c-be80-4b6c-affd-4e24fe8e0df0,LIST_TRANSACTIONS,hbciListTransactions,false -45420,afb83d1c-be80-4b6c-affd-4e24fe8e0df0,AUTHORIZATION,,false -45421,afb83d1c-be80-4b6c-affd-4e24fe8e0df0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45422,afb83d1c-be80-4b6c-affd-4e24fe8e0df0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45423,afb83d1c-be80-4b6c-affd-4e24fe8e0df0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45418,1a829144-4077-48bf-bb0d-76d248b88106,LIST_ACCOUNTS,hbciListAccounts,false +45419,1a829144-4077-48bf-bb0d-76d248b88106,LIST_TRANSACTIONS,hbciListTransactions,false +45420,1a829144-4077-48bf-bb0d-76d248b88106,AUTHORIZATION,,false +45421,1a829144-4077-48bf-bb0d-76d248b88106,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45422,1a829144-4077-48bf-bb0d-76d248b88106,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45423,1a829144-4077-48bf-bb0d-76d248b88106,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45424,c353fa3e-60e0-4dc8-a8dd-6eff3b8f2bc0,LIST_ACCOUNTS,xs2aListAccounts,true -45425,c353fa3e-60e0-4dc8-a8dd-6eff3b8f2bc0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45425,c353fa3e-60e0-4dc8-a8dd-6eff3b8f2bc0,LIST_TRANSACTIONS,xs2aListTransactions,true 45426,c353fa3e-60e0-4dc8-a8dd-6eff3b8f2bc0,AUTHORIZATION,,true 45427,c353fa3e-60e0-4dc8-a8dd-6eff3b8f2bc0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45428,c353fa3e-60e0-4dc8-a8dd-6eff3b8f2bc0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45429,c353fa3e-60e0-4dc8-a8dd-6eff3b8f2bc0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45430,e1e338b9-48b0-424e-8815-add3552ae7c1,LIST_ACCOUNTS,hbciListAccounts,false -45431,e1e338b9-48b0-424e-8815-add3552ae7c1,LIST_TRANSACTIONS,hbciListTransactions,false -45432,e1e338b9-48b0-424e-8815-add3552ae7c1,AUTHORIZATION,,false -45433,e1e338b9-48b0-424e-8815-add3552ae7c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45434,e1e338b9-48b0-424e-8815-add3552ae7c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45435,e1e338b9-48b0-424e-8815-add3552ae7c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45430,a3231e7e-4b30-4d85-ad3b-b098d06065c5,LIST_ACCOUNTS,hbciListAccounts,false +45431,a3231e7e-4b30-4d85-ad3b-b098d06065c5,LIST_TRANSACTIONS,hbciListTransactions,false +45432,a3231e7e-4b30-4d85-ad3b-b098d06065c5,AUTHORIZATION,,false +45433,a3231e7e-4b30-4d85-ad3b-b098d06065c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45434,a3231e7e-4b30-4d85-ad3b-b098d06065c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45435,a3231e7e-4b30-4d85-ad3b-b098d06065c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45436,462aa96d-c839-46e3-822a-6e0c4e62bca5,LIST_ACCOUNTS,xs2aListAccounts,true -45437,462aa96d-c839-46e3-822a-6e0c4e62bca5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45437,462aa96d-c839-46e3-822a-6e0c4e62bca5,LIST_TRANSACTIONS,xs2aListTransactions,true 45438,462aa96d-c839-46e3-822a-6e0c4e62bca5,AUTHORIZATION,,true 45439,462aa96d-c839-46e3-822a-6e0c4e62bca5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45440,462aa96d-c839-46e3-822a-6e0c4e62bca5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45441,462aa96d-c839-46e3-822a-6e0c4e62bca5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45442,2c837bb9-832d-453c-aa87-c86d9e2eaf9e,LIST_ACCOUNTS,hbciListAccounts,false -45443,2c837bb9-832d-453c-aa87-c86d9e2eaf9e,LIST_TRANSACTIONS,hbciListTransactions,false -45444,2c837bb9-832d-453c-aa87-c86d9e2eaf9e,AUTHORIZATION,,false -45445,2c837bb9-832d-453c-aa87-c86d9e2eaf9e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45446,2c837bb9-832d-453c-aa87-c86d9e2eaf9e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45447,2c837bb9-832d-453c-aa87-c86d9e2eaf9e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45442,b405010b-5f90-4e7c-ba67-5abb5d237a4e,LIST_ACCOUNTS,hbciListAccounts,false +45443,b405010b-5f90-4e7c-ba67-5abb5d237a4e,LIST_TRANSACTIONS,hbciListTransactions,false +45444,b405010b-5f90-4e7c-ba67-5abb5d237a4e,AUTHORIZATION,,false +45445,b405010b-5f90-4e7c-ba67-5abb5d237a4e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45446,b405010b-5f90-4e7c-ba67-5abb5d237a4e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45447,b405010b-5f90-4e7c-ba67-5abb5d237a4e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45448,381ad72a-f2d6-4a3d-8a3f-333ab15c4cc8,LIST_ACCOUNTS,xs2aListAccounts,true -45449,381ad72a-f2d6-4a3d-8a3f-333ab15c4cc8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45449,381ad72a-f2d6-4a3d-8a3f-333ab15c4cc8,LIST_TRANSACTIONS,xs2aListTransactions,true 45450,381ad72a-f2d6-4a3d-8a3f-333ab15c4cc8,AUTHORIZATION,,true 45451,381ad72a-f2d6-4a3d-8a3f-333ab15c4cc8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45452,381ad72a-f2d6-4a3d-8a3f-333ab15c4cc8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45453,381ad72a-f2d6-4a3d-8a3f-333ab15c4cc8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45454,ca18e581-26b8-430b-b814-3703e706fff3,LIST_ACCOUNTS,hbciListAccounts,false -45455,ca18e581-26b8-430b-b814-3703e706fff3,LIST_TRANSACTIONS,hbciListTransactions,false -45456,ca18e581-26b8-430b-b814-3703e706fff3,AUTHORIZATION,,false -45457,ca18e581-26b8-430b-b814-3703e706fff3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45458,ca18e581-26b8-430b-b814-3703e706fff3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45459,ca18e581-26b8-430b-b814-3703e706fff3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45454,452807b8-1dc7-4624-a41f-56efda86bb7c,LIST_ACCOUNTS,hbciListAccounts,false +45455,452807b8-1dc7-4624-a41f-56efda86bb7c,LIST_TRANSACTIONS,hbciListTransactions,false +45456,452807b8-1dc7-4624-a41f-56efda86bb7c,AUTHORIZATION,,false +45457,452807b8-1dc7-4624-a41f-56efda86bb7c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45458,452807b8-1dc7-4624-a41f-56efda86bb7c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45459,452807b8-1dc7-4624-a41f-56efda86bb7c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45460,b5d34dc3-ff5f-411c-ae58-d65f6eb4db6e,LIST_ACCOUNTS,xs2aListAccounts,true -45461,b5d34dc3-ff5f-411c-ae58-d65f6eb4db6e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45461,b5d34dc3-ff5f-411c-ae58-d65f6eb4db6e,LIST_TRANSACTIONS,xs2aListTransactions,true 45462,b5d34dc3-ff5f-411c-ae58-d65f6eb4db6e,AUTHORIZATION,,true 45463,b5d34dc3-ff5f-411c-ae58-d65f6eb4db6e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45464,b5d34dc3-ff5f-411c-ae58-d65f6eb4db6e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45465,b5d34dc3-ff5f-411c-ae58-d65f6eb4db6e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45466,2183400b-97d9-4636-bcea-1386537e6402,LIST_ACCOUNTS,hbciListAccounts,false -45467,2183400b-97d9-4636-bcea-1386537e6402,LIST_TRANSACTIONS,hbciListTransactions,false -45468,2183400b-97d9-4636-bcea-1386537e6402,AUTHORIZATION,,false -45469,2183400b-97d9-4636-bcea-1386537e6402,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45470,2183400b-97d9-4636-bcea-1386537e6402,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45471,2183400b-97d9-4636-bcea-1386537e6402,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45466,4333a263-6b6c-4bc9-8881-a11ce2e69623,LIST_ACCOUNTS,hbciListAccounts,false +45467,4333a263-6b6c-4bc9-8881-a11ce2e69623,LIST_TRANSACTIONS,hbciListTransactions,false +45468,4333a263-6b6c-4bc9-8881-a11ce2e69623,AUTHORIZATION,,false +45469,4333a263-6b6c-4bc9-8881-a11ce2e69623,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45470,4333a263-6b6c-4bc9-8881-a11ce2e69623,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45471,4333a263-6b6c-4bc9-8881-a11ce2e69623,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45472,489e3204-0ecf-4767-918d-19341537e268,LIST_ACCOUNTS,xs2aListAccounts,true -45473,489e3204-0ecf-4767-918d-19341537e268,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45473,489e3204-0ecf-4767-918d-19341537e268,LIST_TRANSACTIONS,xs2aListTransactions,true 45474,489e3204-0ecf-4767-918d-19341537e268,AUTHORIZATION,,true 45475,489e3204-0ecf-4767-918d-19341537e268,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45476,489e3204-0ecf-4767-918d-19341537e268,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45477,489e3204-0ecf-4767-918d-19341537e268,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45478,14db4780-b71c-40a5-a83f-5ba18b8ee09a,LIST_ACCOUNTS,hbciListAccounts,false -45479,14db4780-b71c-40a5-a83f-5ba18b8ee09a,LIST_TRANSACTIONS,hbciListTransactions,false -45480,14db4780-b71c-40a5-a83f-5ba18b8ee09a,AUTHORIZATION,,false -45481,14db4780-b71c-40a5-a83f-5ba18b8ee09a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45482,14db4780-b71c-40a5-a83f-5ba18b8ee09a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45483,14db4780-b71c-40a5-a83f-5ba18b8ee09a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45478,af315f98-eafd-413e-b197-adebe19e5652,LIST_ACCOUNTS,hbciListAccounts,false +45479,af315f98-eafd-413e-b197-adebe19e5652,LIST_TRANSACTIONS,hbciListTransactions,false +45480,af315f98-eafd-413e-b197-adebe19e5652,AUTHORIZATION,,false +45481,af315f98-eafd-413e-b197-adebe19e5652,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45482,af315f98-eafd-413e-b197-adebe19e5652,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45483,af315f98-eafd-413e-b197-adebe19e5652,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45484,dff6c9d5-d5ad-4792-80ec-1d999d394103,LIST_ACCOUNTS,xs2aListAccounts,true -45485,dff6c9d5-d5ad-4792-80ec-1d999d394103,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45485,dff6c9d5-d5ad-4792-80ec-1d999d394103,LIST_TRANSACTIONS,xs2aListTransactions,true 45486,dff6c9d5-d5ad-4792-80ec-1d999d394103,AUTHORIZATION,,true 45487,dff6c9d5-d5ad-4792-80ec-1d999d394103,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45488,dff6c9d5-d5ad-4792-80ec-1d999d394103,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45489,dff6c9d5-d5ad-4792-80ec-1d999d394103,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45490,8cf19dc9-9b21-4c93-b2fd-15f01628a93e,LIST_ACCOUNTS,hbciListAccounts,false -45491,8cf19dc9-9b21-4c93-b2fd-15f01628a93e,LIST_TRANSACTIONS,hbciListTransactions,false -45492,8cf19dc9-9b21-4c93-b2fd-15f01628a93e,AUTHORIZATION,,false -45493,8cf19dc9-9b21-4c93-b2fd-15f01628a93e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45494,8cf19dc9-9b21-4c93-b2fd-15f01628a93e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45495,8cf19dc9-9b21-4c93-b2fd-15f01628a93e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45490,0455d188-af17-40e5-8a7c-2775f8c70744,LIST_ACCOUNTS,hbciListAccounts,false +45491,0455d188-af17-40e5-8a7c-2775f8c70744,LIST_TRANSACTIONS,hbciListTransactions,false +45492,0455d188-af17-40e5-8a7c-2775f8c70744,AUTHORIZATION,,false +45493,0455d188-af17-40e5-8a7c-2775f8c70744,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45494,0455d188-af17-40e5-8a7c-2775f8c70744,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45495,0455d188-af17-40e5-8a7c-2775f8c70744,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45496,1bd3e632-0c2f-41ae-86fb-cd9bcee27986,LIST_ACCOUNTS,xs2aListAccounts,true -45497,1bd3e632-0c2f-41ae-86fb-cd9bcee27986,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45497,1bd3e632-0c2f-41ae-86fb-cd9bcee27986,LIST_TRANSACTIONS,xs2aListTransactions,true 45498,1bd3e632-0c2f-41ae-86fb-cd9bcee27986,AUTHORIZATION,,true 45499,1bd3e632-0c2f-41ae-86fb-cd9bcee27986,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45500,1bd3e632-0c2f-41ae-86fb-cd9bcee27986,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45501,1bd3e632-0c2f-41ae-86fb-cd9bcee27986,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45502,9e47f4f3-bf07-4690-a5eb-74f63c3baf5b,LIST_ACCOUNTS,hbciListAccounts,false -45503,9e47f4f3-bf07-4690-a5eb-74f63c3baf5b,LIST_TRANSACTIONS,hbciListTransactions,false -45504,9e47f4f3-bf07-4690-a5eb-74f63c3baf5b,AUTHORIZATION,,false -45505,9e47f4f3-bf07-4690-a5eb-74f63c3baf5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45506,9e47f4f3-bf07-4690-a5eb-74f63c3baf5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45507,9e47f4f3-bf07-4690-a5eb-74f63c3baf5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45502,e7d010c6-6de3-425e-ba97-9902a1d47441,LIST_ACCOUNTS,hbciListAccounts,false +45503,e7d010c6-6de3-425e-ba97-9902a1d47441,LIST_TRANSACTIONS,hbciListTransactions,false +45504,e7d010c6-6de3-425e-ba97-9902a1d47441,AUTHORIZATION,,false +45505,e7d010c6-6de3-425e-ba97-9902a1d47441,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45506,e7d010c6-6de3-425e-ba97-9902a1d47441,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45507,e7d010c6-6de3-425e-ba97-9902a1d47441,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45508,cc940cb5-e816-4950-9d63-42880da540e3,LIST_ACCOUNTS,xs2aListAccounts,true -45509,cc940cb5-e816-4950-9d63-42880da540e3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45509,cc940cb5-e816-4950-9d63-42880da540e3,LIST_TRANSACTIONS,xs2aListTransactions,true 45510,cc940cb5-e816-4950-9d63-42880da540e3,AUTHORIZATION,,true 45511,cc940cb5-e816-4950-9d63-42880da540e3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45512,cc940cb5-e816-4950-9d63-42880da540e3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45513,cc940cb5-e816-4950-9d63-42880da540e3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45514,8965cc9c-f224-4bf9-a61b-82c70d532ece,LIST_ACCOUNTS,hbciListAccounts,false -45515,8965cc9c-f224-4bf9-a61b-82c70d532ece,LIST_TRANSACTIONS,hbciListTransactions,false -45516,8965cc9c-f224-4bf9-a61b-82c70d532ece,AUTHORIZATION,,false -45517,8965cc9c-f224-4bf9-a61b-82c70d532ece,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45518,8965cc9c-f224-4bf9-a61b-82c70d532ece,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45519,8965cc9c-f224-4bf9-a61b-82c70d532ece,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45514,4c4d2d61-66f9-4fac-9d38-4cac0ce68f37,LIST_ACCOUNTS,hbciListAccounts,false +45515,4c4d2d61-66f9-4fac-9d38-4cac0ce68f37,LIST_TRANSACTIONS,hbciListTransactions,false +45516,4c4d2d61-66f9-4fac-9d38-4cac0ce68f37,AUTHORIZATION,,false +45517,4c4d2d61-66f9-4fac-9d38-4cac0ce68f37,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45518,4c4d2d61-66f9-4fac-9d38-4cac0ce68f37,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45519,4c4d2d61-66f9-4fac-9d38-4cac0ce68f37,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45520,f18d7aa3-e294-47ec-9f0c-1829703d8182,LIST_ACCOUNTS,xs2aListAccounts,true -45521,f18d7aa3-e294-47ec-9f0c-1829703d8182,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45521,f18d7aa3-e294-47ec-9f0c-1829703d8182,LIST_TRANSACTIONS,xs2aListTransactions,true 45522,f18d7aa3-e294-47ec-9f0c-1829703d8182,AUTHORIZATION,,true 45523,f18d7aa3-e294-47ec-9f0c-1829703d8182,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45524,f18d7aa3-e294-47ec-9f0c-1829703d8182,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45525,f18d7aa3-e294-47ec-9f0c-1829703d8182,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45526,f1a8c46d-bdeb-4826-9e92-9776ac3ab59f,LIST_ACCOUNTS,hbciListAccounts,false -45527,f1a8c46d-bdeb-4826-9e92-9776ac3ab59f,LIST_TRANSACTIONS,hbciListTransactions,false -45528,f1a8c46d-bdeb-4826-9e92-9776ac3ab59f,AUTHORIZATION,,false -45529,f1a8c46d-bdeb-4826-9e92-9776ac3ab59f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45530,f1a8c46d-bdeb-4826-9e92-9776ac3ab59f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45531,f1a8c46d-bdeb-4826-9e92-9776ac3ab59f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45526,a768208b-306b-48a1-bcf5-e2818753ef84,LIST_ACCOUNTS,hbciListAccounts,false +45527,a768208b-306b-48a1-bcf5-e2818753ef84,LIST_TRANSACTIONS,hbciListTransactions,false +45528,a768208b-306b-48a1-bcf5-e2818753ef84,AUTHORIZATION,,false +45529,a768208b-306b-48a1-bcf5-e2818753ef84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45530,a768208b-306b-48a1-bcf5-e2818753ef84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45531,a768208b-306b-48a1-bcf5-e2818753ef84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45532,bb521687-1937-4ae4-85a4-6e54f8352f25,LIST_ACCOUNTS,xs2aListAccounts,true -45533,bb521687-1937-4ae4-85a4-6e54f8352f25,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45533,bb521687-1937-4ae4-85a4-6e54f8352f25,LIST_TRANSACTIONS,xs2aListTransactions,true 45534,bb521687-1937-4ae4-85a4-6e54f8352f25,AUTHORIZATION,,true 45535,bb521687-1937-4ae4-85a4-6e54f8352f25,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45536,bb521687-1937-4ae4-85a4-6e54f8352f25,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45537,bb521687-1937-4ae4-85a4-6e54f8352f25,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45538,42af5239-a501-4c93-aaf2-a4d12678be5b,LIST_ACCOUNTS,hbciListAccounts,false -45539,42af5239-a501-4c93-aaf2-a4d12678be5b,LIST_TRANSACTIONS,hbciListTransactions,false -45540,42af5239-a501-4c93-aaf2-a4d12678be5b,AUTHORIZATION,,false -45541,42af5239-a501-4c93-aaf2-a4d12678be5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45542,42af5239-a501-4c93-aaf2-a4d12678be5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45543,42af5239-a501-4c93-aaf2-a4d12678be5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45538,6339f68a-ef9b-4edf-97ac-61ea4a7ef953,LIST_ACCOUNTS,hbciListAccounts,false +45539,6339f68a-ef9b-4edf-97ac-61ea4a7ef953,LIST_TRANSACTIONS,hbciListTransactions,false +45540,6339f68a-ef9b-4edf-97ac-61ea4a7ef953,AUTHORIZATION,,false +45541,6339f68a-ef9b-4edf-97ac-61ea4a7ef953,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45542,6339f68a-ef9b-4edf-97ac-61ea4a7ef953,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45543,6339f68a-ef9b-4edf-97ac-61ea4a7ef953,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45544,454cef7e-3ff4-4926-b746-15062ab0ecd7,LIST_ACCOUNTS,xs2aListAccounts,true -45545,454cef7e-3ff4-4926-b746-15062ab0ecd7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45545,454cef7e-3ff4-4926-b746-15062ab0ecd7,LIST_TRANSACTIONS,xs2aListTransactions,true 45546,454cef7e-3ff4-4926-b746-15062ab0ecd7,AUTHORIZATION,,true 45547,454cef7e-3ff4-4926-b746-15062ab0ecd7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45548,454cef7e-3ff4-4926-b746-15062ab0ecd7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45549,454cef7e-3ff4-4926-b746-15062ab0ecd7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45550,e6d7e565-09f5-4089-8e06-20f31a2cf210,LIST_ACCOUNTS,hbciListAccounts,false -45551,e6d7e565-09f5-4089-8e06-20f31a2cf210,LIST_TRANSACTIONS,hbciListTransactions,false -45552,e6d7e565-09f5-4089-8e06-20f31a2cf210,AUTHORIZATION,,false -45553,e6d7e565-09f5-4089-8e06-20f31a2cf210,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45554,e6d7e565-09f5-4089-8e06-20f31a2cf210,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45555,e6d7e565-09f5-4089-8e06-20f31a2cf210,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45550,95eb957b-4d7c-4bc5-9a8c-815018f66543,LIST_ACCOUNTS,hbciListAccounts,false +45551,95eb957b-4d7c-4bc5-9a8c-815018f66543,LIST_TRANSACTIONS,hbciListTransactions,false +45552,95eb957b-4d7c-4bc5-9a8c-815018f66543,AUTHORIZATION,,false +45553,95eb957b-4d7c-4bc5-9a8c-815018f66543,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45554,95eb957b-4d7c-4bc5-9a8c-815018f66543,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45555,95eb957b-4d7c-4bc5-9a8c-815018f66543,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45556,30d6f472-92ac-4d52-8803-c0752af696be,LIST_ACCOUNTS,xs2aListAccounts,true -45557,30d6f472-92ac-4d52-8803-c0752af696be,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45557,30d6f472-92ac-4d52-8803-c0752af696be,LIST_TRANSACTIONS,xs2aListTransactions,true 45558,30d6f472-92ac-4d52-8803-c0752af696be,AUTHORIZATION,,true 45559,30d6f472-92ac-4d52-8803-c0752af696be,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45560,30d6f472-92ac-4d52-8803-c0752af696be,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45561,30d6f472-92ac-4d52-8803-c0752af696be,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45562,a7188152-056e-4eeb-b8d8-0a8a57b803f7,LIST_ACCOUNTS,hbciListAccounts,false -45563,a7188152-056e-4eeb-b8d8-0a8a57b803f7,LIST_TRANSACTIONS,hbciListTransactions,false -45564,a7188152-056e-4eeb-b8d8-0a8a57b803f7,AUTHORIZATION,,false -45565,a7188152-056e-4eeb-b8d8-0a8a57b803f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45566,a7188152-056e-4eeb-b8d8-0a8a57b803f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45567,a7188152-056e-4eeb-b8d8-0a8a57b803f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45562,9cf522ea-7c42-439e-9b61-53000171d7d2,LIST_ACCOUNTS,hbciListAccounts,false +45563,9cf522ea-7c42-439e-9b61-53000171d7d2,LIST_TRANSACTIONS,hbciListTransactions,false +45564,9cf522ea-7c42-439e-9b61-53000171d7d2,AUTHORIZATION,,false +45565,9cf522ea-7c42-439e-9b61-53000171d7d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45566,9cf522ea-7c42-439e-9b61-53000171d7d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45567,9cf522ea-7c42-439e-9b61-53000171d7d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45568,80192d9f-2680-488d-b984-61e7f8409ca9,LIST_ACCOUNTS,xs2aListAccounts,true -45569,80192d9f-2680-488d-b984-61e7f8409ca9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45569,80192d9f-2680-488d-b984-61e7f8409ca9,LIST_TRANSACTIONS,xs2aListTransactions,true 45570,80192d9f-2680-488d-b984-61e7f8409ca9,AUTHORIZATION,,true 45571,80192d9f-2680-488d-b984-61e7f8409ca9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45572,80192d9f-2680-488d-b984-61e7f8409ca9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45573,80192d9f-2680-488d-b984-61e7f8409ca9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45574,8dc88993-1538-4f0f-b5e8-357a66a0ffe4,LIST_ACCOUNTS,hbciListAccounts,false -45575,8dc88993-1538-4f0f-b5e8-357a66a0ffe4,LIST_TRANSACTIONS,hbciListTransactions,false -45576,8dc88993-1538-4f0f-b5e8-357a66a0ffe4,AUTHORIZATION,,false -45577,8dc88993-1538-4f0f-b5e8-357a66a0ffe4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45578,8dc88993-1538-4f0f-b5e8-357a66a0ffe4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45579,8dc88993-1538-4f0f-b5e8-357a66a0ffe4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45574,f8b2d852-f3ee-4c4d-9977-759c441df8aa,LIST_ACCOUNTS,hbciListAccounts,false +45575,f8b2d852-f3ee-4c4d-9977-759c441df8aa,LIST_TRANSACTIONS,hbciListTransactions,false +45576,f8b2d852-f3ee-4c4d-9977-759c441df8aa,AUTHORIZATION,,false +45577,f8b2d852-f3ee-4c4d-9977-759c441df8aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45578,f8b2d852-f3ee-4c4d-9977-759c441df8aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45579,f8b2d852-f3ee-4c4d-9977-759c441df8aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45580,5c282afb-6344-44cd-be5f-c8afc33c72e6,LIST_ACCOUNTS,xs2aListAccounts,true -45581,5c282afb-6344-44cd-be5f-c8afc33c72e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45581,5c282afb-6344-44cd-be5f-c8afc33c72e6,LIST_TRANSACTIONS,xs2aListTransactions,true 45582,5c282afb-6344-44cd-be5f-c8afc33c72e6,AUTHORIZATION,,true 45583,5c282afb-6344-44cd-be5f-c8afc33c72e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45584,5c282afb-6344-44cd-be5f-c8afc33c72e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45585,5c282afb-6344-44cd-be5f-c8afc33c72e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45586,cf6e1b3c-112f-4130-99cd-5aa8af062b4d,LIST_ACCOUNTS,hbciListAccounts,false -45587,cf6e1b3c-112f-4130-99cd-5aa8af062b4d,LIST_TRANSACTIONS,hbciListTransactions,false -45588,cf6e1b3c-112f-4130-99cd-5aa8af062b4d,AUTHORIZATION,,false -45589,cf6e1b3c-112f-4130-99cd-5aa8af062b4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45590,cf6e1b3c-112f-4130-99cd-5aa8af062b4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45591,cf6e1b3c-112f-4130-99cd-5aa8af062b4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45586,983d48db-8fd8-498b-bbf8-6cc54804053e,LIST_ACCOUNTS,hbciListAccounts,false +45587,983d48db-8fd8-498b-bbf8-6cc54804053e,LIST_TRANSACTIONS,hbciListTransactions,false +45588,983d48db-8fd8-498b-bbf8-6cc54804053e,AUTHORIZATION,,false +45589,983d48db-8fd8-498b-bbf8-6cc54804053e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45590,983d48db-8fd8-498b-bbf8-6cc54804053e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45591,983d48db-8fd8-498b-bbf8-6cc54804053e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45592,b860a363-ab9a-40fc-bc53-e6a16389b44f,LIST_ACCOUNTS,xs2aListAccounts,true -45593,b860a363-ab9a-40fc-bc53-e6a16389b44f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45593,b860a363-ab9a-40fc-bc53-e6a16389b44f,LIST_TRANSACTIONS,xs2aListTransactions,true 45594,b860a363-ab9a-40fc-bc53-e6a16389b44f,AUTHORIZATION,,true 45595,b860a363-ab9a-40fc-bc53-e6a16389b44f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45596,b860a363-ab9a-40fc-bc53-e6a16389b44f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45597,b860a363-ab9a-40fc-bc53-e6a16389b44f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45598,44d6be6f-4e05-454c-a921-dc1fdf37762b,LIST_ACCOUNTS,hbciListAccounts,false -45599,44d6be6f-4e05-454c-a921-dc1fdf37762b,LIST_TRANSACTIONS,hbciListTransactions,false -45600,44d6be6f-4e05-454c-a921-dc1fdf37762b,AUTHORIZATION,,false -45601,44d6be6f-4e05-454c-a921-dc1fdf37762b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45602,44d6be6f-4e05-454c-a921-dc1fdf37762b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45603,44d6be6f-4e05-454c-a921-dc1fdf37762b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45598,1454b59c-6529-452d-aaed-68ec6a4b052d,LIST_ACCOUNTS,hbciListAccounts,false +45599,1454b59c-6529-452d-aaed-68ec6a4b052d,LIST_TRANSACTIONS,hbciListTransactions,false +45600,1454b59c-6529-452d-aaed-68ec6a4b052d,AUTHORIZATION,,false +45601,1454b59c-6529-452d-aaed-68ec6a4b052d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45602,1454b59c-6529-452d-aaed-68ec6a4b052d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45603,1454b59c-6529-452d-aaed-68ec6a4b052d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45604,e9cb186e-7c21-4bb0-8957-8a117d4511d1,LIST_ACCOUNTS,xs2aListAccounts,true -45605,e9cb186e-7c21-4bb0-8957-8a117d4511d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45605,e9cb186e-7c21-4bb0-8957-8a117d4511d1,LIST_TRANSACTIONS,xs2aListTransactions,true 45606,e9cb186e-7c21-4bb0-8957-8a117d4511d1,AUTHORIZATION,,true 45607,e9cb186e-7c21-4bb0-8957-8a117d4511d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45608,e9cb186e-7c21-4bb0-8957-8a117d4511d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45609,e9cb186e-7c21-4bb0-8957-8a117d4511d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45610,605dfdac-ce43-4fab-8c28-4a94e7bf1c8c,LIST_ACCOUNTS,hbciListAccounts,false -45611,605dfdac-ce43-4fab-8c28-4a94e7bf1c8c,LIST_TRANSACTIONS,hbciListTransactions,false -45612,605dfdac-ce43-4fab-8c28-4a94e7bf1c8c,AUTHORIZATION,,false -45613,605dfdac-ce43-4fab-8c28-4a94e7bf1c8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45614,605dfdac-ce43-4fab-8c28-4a94e7bf1c8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45615,605dfdac-ce43-4fab-8c28-4a94e7bf1c8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45610,35858c1b-8d48-4f2b-991a-610d066ceea2,LIST_ACCOUNTS,hbciListAccounts,false +45611,35858c1b-8d48-4f2b-991a-610d066ceea2,LIST_TRANSACTIONS,hbciListTransactions,false +45612,35858c1b-8d48-4f2b-991a-610d066ceea2,AUTHORIZATION,,false +45613,35858c1b-8d48-4f2b-991a-610d066ceea2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45614,35858c1b-8d48-4f2b-991a-610d066ceea2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45615,35858c1b-8d48-4f2b-991a-610d066ceea2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45616,a7da261c-30d1-4491-a250-6aab784fb777,LIST_ACCOUNTS,xs2aListAccounts,true -45617,a7da261c-30d1-4491-a250-6aab784fb777,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45617,a7da261c-30d1-4491-a250-6aab784fb777,LIST_TRANSACTIONS,xs2aListTransactions,true 45618,a7da261c-30d1-4491-a250-6aab784fb777,AUTHORIZATION,,true 45619,a7da261c-30d1-4491-a250-6aab784fb777,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45620,a7da261c-30d1-4491-a250-6aab784fb777,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45621,a7da261c-30d1-4491-a250-6aab784fb777,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45622,ca78d472-52fe-409a-bcba-1d93d1531794,LIST_ACCOUNTS,hbciListAccounts,false -45623,ca78d472-52fe-409a-bcba-1d93d1531794,LIST_TRANSACTIONS,hbciListTransactions,false -45624,ca78d472-52fe-409a-bcba-1d93d1531794,AUTHORIZATION,,false -45625,ca78d472-52fe-409a-bcba-1d93d1531794,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45626,ca78d472-52fe-409a-bcba-1d93d1531794,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45627,ca78d472-52fe-409a-bcba-1d93d1531794,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45622,90cd2496-c114-42cb-9944-a1ad29ac38d3,LIST_ACCOUNTS,hbciListAccounts,false +45623,90cd2496-c114-42cb-9944-a1ad29ac38d3,LIST_TRANSACTIONS,hbciListTransactions,false +45624,90cd2496-c114-42cb-9944-a1ad29ac38d3,AUTHORIZATION,,false +45625,90cd2496-c114-42cb-9944-a1ad29ac38d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45626,90cd2496-c114-42cb-9944-a1ad29ac38d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45627,90cd2496-c114-42cb-9944-a1ad29ac38d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45628,7d20c029-6cc9-4f0a-aabf-f900f66de515,LIST_ACCOUNTS,xs2aListAccounts,true -45629,7d20c029-6cc9-4f0a-aabf-f900f66de515,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45629,7d20c029-6cc9-4f0a-aabf-f900f66de515,LIST_TRANSACTIONS,xs2aListTransactions,true 45630,7d20c029-6cc9-4f0a-aabf-f900f66de515,AUTHORIZATION,,true 45631,7d20c029-6cc9-4f0a-aabf-f900f66de515,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45632,7d20c029-6cc9-4f0a-aabf-f900f66de515,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45633,7d20c029-6cc9-4f0a-aabf-f900f66de515,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45634,3312fcc9-9f02-49d1-b0d9-a6eb849e98de,LIST_ACCOUNTS,hbciListAccounts,false -45635,3312fcc9-9f02-49d1-b0d9-a6eb849e98de,LIST_TRANSACTIONS,hbciListTransactions,false -45636,3312fcc9-9f02-49d1-b0d9-a6eb849e98de,AUTHORIZATION,,false -45637,3312fcc9-9f02-49d1-b0d9-a6eb849e98de,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45638,3312fcc9-9f02-49d1-b0d9-a6eb849e98de,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45639,3312fcc9-9f02-49d1-b0d9-a6eb849e98de,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45634,2be81ded-d397-4a63-81bf-a4041e0fc4a3,LIST_ACCOUNTS,hbciListAccounts,false +45635,2be81ded-d397-4a63-81bf-a4041e0fc4a3,LIST_TRANSACTIONS,hbciListTransactions,false +45636,2be81ded-d397-4a63-81bf-a4041e0fc4a3,AUTHORIZATION,,false +45637,2be81ded-d397-4a63-81bf-a4041e0fc4a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45638,2be81ded-d397-4a63-81bf-a4041e0fc4a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45639,2be81ded-d397-4a63-81bf-a4041e0fc4a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45640,d21c45db-9255-430a-a031-d2e5ea6b141f,LIST_ACCOUNTS,xs2aListAccounts,true -45641,d21c45db-9255-430a-a031-d2e5ea6b141f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45641,d21c45db-9255-430a-a031-d2e5ea6b141f,LIST_TRANSACTIONS,xs2aListTransactions,true 45642,d21c45db-9255-430a-a031-d2e5ea6b141f,AUTHORIZATION,,true 45643,d21c45db-9255-430a-a031-d2e5ea6b141f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45644,d21c45db-9255-430a-a031-d2e5ea6b141f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45645,d21c45db-9255-430a-a031-d2e5ea6b141f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45646,928ae230-47fd-40c7-8598-5043dea4781b,LIST_ACCOUNTS,hbciListAccounts,false -45647,928ae230-47fd-40c7-8598-5043dea4781b,LIST_TRANSACTIONS,hbciListTransactions,false -45648,928ae230-47fd-40c7-8598-5043dea4781b,AUTHORIZATION,,false -45649,928ae230-47fd-40c7-8598-5043dea4781b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45650,928ae230-47fd-40c7-8598-5043dea4781b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45651,928ae230-47fd-40c7-8598-5043dea4781b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45646,c53410f8-b147-4f60-ae0d-85b195a3307d,LIST_ACCOUNTS,hbciListAccounts,false +45647,c53410f8-b147-4f60-ae0d-85b195a3307d,LIST_TRANSACTIONS,hbciListTransactions,false +45648,c53410f8-b147-4f60-ae0d-85b195a3307d,AUTHORIZATION,,false +45649,c53410f8-b147-4f60-ae0d-85b195a3307d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45650,c53410f8-b147-4f60-ae0d-85b195a3307d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45651,c53410f8-b147-4f60-ae0d-85b195a3307d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45652,4aaf9f91-40c5-48ba-8477-a725e1f1d494,LIST_ACCOUNTS,xs2aListAccounts,true -45653,4aaf9f91-40c5-48ba-8477-a725e1f1d494,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45653,4aaf9f91-40c5-48ba-8477-a725e1f1d494,LIST_TRANSACTIONS,xs2aListTransactions,true 45654,4aaf9f91-40c5-48ba-8477-a725e1f1d494,AUTHORIZATION,,true 45655,4aaf9f91-40c5-48ba-8477-a725e1f1d494,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45656,4aaf9f91-40c5-48ba-8477-a725e1f1d494,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45657,4aaf9f91-40c5-48ba-8477-a725e1f1d494,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45658,a78b4520-9664-47d7-b43b-835d7f1213fc,LIST_ACCOUNTS,hbciListAccounts,false -45659,a78b4520-9664-47d7-b43b-835d7f1213fc,LIST_TRANSACTIONS,hbciListTransactions,false -45660,a78b4520-9664-47d7-b43b-835d7f1213fc,AUTHORIZATION,,false -45661,a78b4520-9664-47d7-b43b-835d7f1213fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45662,a78b4520-9664-47d7-b43b-835d7f1213fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45663,a78b4520-9664-47d7-b43b-835d7f1213fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45658,123f29d2-0af6-4da9-ae84-c4dd6082ea89,LIST_ACCOUNTS,hbciListAccounts,false +45659,123f29d2-0af6-4da9-ae84-c4dd6082ea89,LIST_TRANSACTIONS,hbciListTransactions,false +45660,123f29d2-0af6-4da9-ae84-c4dd6082ea89,AUTHORIZATION,,false +45661,123f29d2-0af6-4da9-ae84-c4dd6082ea89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45662,123f29d2-0af6-4da9-ae84-c4dd6082ea89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45663,123f29d2-0af6-4da9-ae84-c4dd6082ea89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45664,5fdd5165-2f3c-4969-83d9-cf4165a624c1,LIST_ACCOUNTS,xs2aListAccounts,true -45665,5fdd5165-2f3c-4969-83d9-cf4165a624c1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45665,5fdd5165-2f3c-4969-83d9-cf4165a624c1,LIST_TRANSACTIONS,xs2aListTransactions,true 45666,5fdd5165-2f3c-4969-83d9-cf4165a624c1,AUTHORIZATION,,true 45667,5fdd5165-2f3c-4969-83d9-cf4165a624c1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45668,5fdd5165-2f3c-4969-83d9-cf4165a624c1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45669,5fdd5165-2f3c-4969-83d9-cf4165a624c1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45670,8071f8df-e413-4b20-90c2-ff60da11fdcc,LIST_ACCOUNTS,hbciListAccounts,false -45671,8071f8df-e413-4b20-90c2-ff60da11fdcc,LIST_TRANSACTIONS,hbciListTransactions,false -45672,8071f8df-e413-4b20-90c2-ff60da11fdcc,AUTHORIZATION,,false -45673,8071f8df-e413-4b20-90c2-ff60da11fdcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45674,8071f8df-e413-4b20-90c2-ff60da11fdcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45675,8071f8df-e413-4b20-90c2-ff60da11fdcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45670,02267544-dae1-47e2-ab74-56811499ff09,LIST_ACCOUNTS,hbciListAccounts,false +45671,02267544-dae1-47e2-ab74-56811499ff09,LIST_TRANSACTIONS,hbciListTransactions,false +45672,02267544-dae1-47e2-ab74-56811499ff09,AUTHORIZATION,,false +45673,02267544-dae1-47e2-ab74-56811499ff09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45674,02267544-dae1-47e2-ab74-56811499ff09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45675,02267544-dae1-47e2-ab74-56811499ff09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45676,887645c9-3b55-443a-8187-a662a2e26c77,LIST_ACCOUNTS,xs2aListAccounts,true -45677,887645c9-3b55-443a-8187-a662a2e26c77,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45677,887645c9-3b55-443a-8187-a662a2e26c77,LIST_TRANSACTIONS,xs2aListTransactions,true 45678,887645c9-3b55-443a-8187-a662a2e26c77,AUTHORIZATION,,true 45679,887645c9-3b55-443a-8187-a662a2e26c77,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45680,887645c9-3b55-443a-8187-a662a2e26c77,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45681,887645c9-3b55-443a-8187-a662a2e26c77,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45682,fa6a2e91-049e-4e5b-ad11-91e6348e06f0,LIST_ACCOUNTS,hbciListAccounts,false -45683,fa6a2e91-049e-4e5b-ad11-91e6348e06f0,LIST_TRANSACTIONS,hbciListTransactions,false -45684,fa6a2e91-049e-4e5b-ad11-91e6348e06f0,AUTHORIZATION,,false -45685,fa6a2e91-049e-4e5b-ad11-91e6348e06f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45686,fa6a2e91-049e-4e5b-ad11-91e6348e06f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45687,fa6a2e91-049e-4e5b-ad11-91e6348e06f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45682,c9291f3a-1f7c-45bd-9e74-2f76889686fe,LIST_ACCOUNTS,hbciListAccounts,false +45683,c9291f3a-1f7c-45bd-9e74-2f76889686fe,LIST_TRANSACTIONS,hbciListTransactions,false +45684,c9291f3a-1f7c-45bd-9e74-2f76889686fe,AUTHORIZATION,,false +45685,c9291f3a-1f7c-45bd-9e74-2f76889686fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45686,c9291f3a-1f7c-45bd-9e74-2f76889686fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45687,c9291f3a-1f7c-45bd-9e74-2f76889686fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45688,366264fc-4555-4df6-b854-df34219b67fc,LIST_ACCOUNTS,xs2aListAccounts,true -45689,366264fc-4555-4df6-b854-df34219b67fc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45689,366264fc-4555-4df6-b854-df34219b67fc,LIST_TRANSACTIONS,xs2aListTransactions,true 45690,366264fc-4555-4df6-b854-df34219b67fc,AUTHORIZATION,,true 45691,366264fc-4555-4df6-b854-df34219b67fc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45692,366264fc-4555-4df6-b854-df34219b67fc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45693,366264fc-4555-4df6-b854-df34219b67fc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45694,5c8cb599-385c-40c1-a5a9-d1b85d72fd84,LIST_ACCOUNTS,hbciListAccounts,false -45695,5c8cb599-385c-40c1-a5a9-d1b85d72fd84,LIST_TRANSACTIONS,hbciListTransactions,false -45696,5c8cb599-385c-40c1-a5a9-d1b85d72fd84,AUTHORIZATION,,false -45697,5c8cb599-385c-40c1-a5a9-d1b85d72fd84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45698,5c8cb599-385c-40c1-a5a9-d1b85d72fd84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45699,5c8cb599-385c-40c1-a5a9-d1b85d72fd84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45694,478ab182-a365-495d-9994-7ba0c93e6f3b,LIST_ACCOUNTS,hbciListAccounts,false +45695,478ab182-a365-495d-9994-7ba0c93e6f3b,LIST_TRANSACTIONS,hbciListTransactions,false +45696,478ab182-a365-495d-9994-7ba0c93e6f3b,AUTHORIZATION,,false +45697,478ab182-a365-495d-9994-7ba0c93e6f3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45698,478ab182-a365-495d-9994-7ba0c93e6f3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45699,478ab182-a365-495d-9994-7ba0c93e6f3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45700,4132ab72-0478-443f-a9f0-1c82dcd831cd,LIST_ACCOUNTS,xs2aListAccounts,true -45701,4132ab72-0478-443f-a9f0-1c82dcd831cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45701,4132ab72-0478-443f-a9f0-1c82dcd831cd,LIST_TRANSACTIONS,xs2aListTransactions,true 45702,4132ab72-0478-443f-a9f0-1c82dcd831cd,AUTHORIZATION,,true 45703,4132ab72-0478-443f-a9f0-1c82dcd831cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45704,4132ab72-0478-443f-a9f0-1c82dcd831cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45705,4132ab72-0478-443f-a9f0-1c82dcd831cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45706,d5c349be-7dd6-40cb-a226-8c2373173d5f,LIST_ACCOUNTS,hbciListAccounts,false -45707,d5c349be-7dd6-40cb-a226-8c2373173d5f,LIST_TRANSACTIONS,hbciListTransactions,false -45708,d5c349be-7dd6-40cb-a226-8c2373173d5f,AUTHORIZATION,,false -45709,d5c349be-7dd6-40cb-a226-8c2373173d5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45710,d5c349be-7dd6-40cb-a226-8c2373173d5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45711,d5c349be-7dd6-40cb-a226-8c2373173d5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45706,49f88a13-0bad-4cae-87be-ffaee1a4df0b,LIST_ACCOUNTS,hbciListAccounts,false +45707,49f88a13-0bad-4cae-87be-ffaee1a4df0b,LIST_TRANSACTIONS,hbciListTransactions,false +45708,49f88a13-0bad-4cae-87be-ffaee1a4df0b,AUTHORIZATION,,false +45709,49f88a13-0bad-4cae-87be-ffaee1a4df0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45710,49f88a13-0bad-4cae-87be-ffaee1a4df0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45711,49f88a13-0bad-4cae-87be-ffaee1a4df0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45712,a1ee5662-ac84-4a29-a4dc-6475364cdf53,LIST_ACCOUNTS,xs2aListAccounts,true -45713,a1ee5662-ac84-4a29-a4dc-6475364cdf53,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45713,a1ee5662-ac84-4a29-a4dc-6475364cdf53,LIST_TRANSACTIONS,xs2aListTransactions,true 45714,a1ee5662-ac84-4a29-a4dc-6475364cdf53,AUTHORIZATION,,true 45715,a1ee5662-ac84-4a29-a4dc-6475364cdf53,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45716,a1ee5662-ac84-4a29-a4dc-6475364cdf53,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45717,a1ee5662-ac84-4a29-a4dc-6475364cdf53,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45718,109e884d-3114-4c3a-a0e5-f1d6c37d6229,LIST_ACCOUNTS,hbciListAccounts,false -45719,109e884d-3114-4c3a-a0e5-f1d6c37d6229,LIST_TRANSACTIONS,hbciListTransactions,false -45720,109e884d-3114-4c3a-a0e5-f1d6c37d6229,AUTHORIZATION,,false -45721,109e884d-3114-4c3a-a0e5-f1d6c37d6229,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45722,109e884d-3114-4c3a-a0e5-f1d6c37d6229,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45723,109e884d-3114-4c3a-a0e5-f1d6c37d6229,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45718,c298c886-a862-45e4-acf7-4fc71b78360c,LIST_ACCOUNTS,hbciListAccounts,false +45719,c298c886-a862-45e4-acf7-4fc71b78360c,LIST_TRANSACTIONS,hbciListTransactions,false +45720,c298c886-a862-45e4-acf7-4fc71b78360c,AUTHORIZATION,,false +45721,c298c886-a862-45e4-acf7-4fc71b78360c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45722,c298c886-a862-45e4-acf7-4fc71b78360c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45723,c298c886-a862-45e4-acf7-4fc71b78360c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45724,c9c54bd0-0082-4151-987a-2118c77ed468,LIST_ACCOUNTS,xs2aListAccounts,true -45725,c9c54bd0-0082-4151-987a-2118c77ed468,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45725,c9c54bd0-0082-4151-987a-2118c77ed468,LIST_TRANSACTIONS,xs2aListTransactions,true 45726,c9c54bd0-0082-4151-987a-2118c77ed468,AUTHORIZATION,,true 45727,c9c54bd0-0082-4151-987a-2118c77ed468,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45728,c9c54bd0-0082-4151-987a-2118c77ed468,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45729,c9c54bd0-0082-4151-987a-2118c77ed468,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45730,f28511f8-2b8f-4924-bcfc-9bc21403849a,LIST_ACCOUNTS,hbciListAccounts,false -45731,f28511f8-2b8f-4924-bcfc-9bc21403849a,LIST_TRANSACTIONS,hbciListTransactions,false -45732,f28511f8-2b8f-4924-bcfc-9bc21403849a,AUTHORIZATION,,false -45733,f28511f8-2b8f-4924-bcfc-9bc21403849a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45734,f28511f8-2b8f-4924-bcfc-9bc21403849a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45735,f28511f8-2b8f-4924-bcfc-9bc21403849a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45730,906c03b6-26b3-4153-8037-33ce1a42bd48,LIST_ACCOUNTS,hbciListAccounts,false +45731,906c03b6-26b3-4153-8037-33ce1a42bd48,LIST_TRANSACTIONS,hbciListTransactions,false +45732,906c03b6-26b3-4153-8037-33ce1a42bd48,AUTHORIZATION,,false +45733,906c03b6-26b3-4153-8037-33ce1a42bd48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45734,906c03b6-26b3-4153-8037-33ce1a42bd48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45735,906c03b6-26b3-4153-8037-33ce1a42bd48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45736,9f5aa38d-8518-47d5-a1d4-38556e32308d,LIST_ACCOUNTS,xs2aListAccounts,true -45737,9f5aa38d-8518-47d5-a1d4-38556e32308d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45737,9f5aa38d-8518-47d5-a1d4-38556e32308d,LIST_TRANSACTIONS,xs2aListTransactions,true 45738,9f5aa38d-8518-47d5-a1d4-38556e32308d,AUTHORIZATION,,true 45739,9f5aa38d-8518-47d5-a1d4-38556e32308d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45740,9f5aa38d-8518-47d5-a1d4-38556e32308d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45741,9f5aa38d-8518-47d5-a1d4-38556e32308d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45742,10e18d1c-34d7-49b1-849b-3efe4c8214b1,LIST_ACCOUNTS,hbciListAccounts,false -45743,10e18d1c-34d7-49b1-849b-3efe4c8214b1,LIST_TRANSACTIONS,hbciListTransactions,false -45744,10e18d1c-34d7-49b1-849b-3efe4c8214b1,AUTHORIZATION,,false -45745,10e18d1c-34d7-49b1-849b-3efe4c8214b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45746,10e18d1c-34d7-49b1-849b-3efe4c8214b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45747,10e18d1c-34d7-49b1-849b-3efe4c8214b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45742,c992534a-5896-4f41-a6ce-8fe3d75b8647,LIST_ACCOUNTS,hbciListAccounts,false +45743,c992534a-5896-4f41-a6ce-8fe3d75b8647,LIST_TRANSACTIONS,hbciListTransactions,false +45744,c992534a-5896-4f41-a6ce-8fe3d75b8647,AUTHORIZATION,,false +45745,c992534a-5896-4f41-a6ce-8fe3d75b8647,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45746,c992534a-5896-4f41-a6ce-8fe3d75b8647,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45747,c992534a-5896-4f41-a6ce-8fe3d75b8647,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45748,25839550-c92e-4ea7-a1d8-c422097db02f,LIST_ACCOUNTS,xs2aListAccounts,true -45749,25839550-c92e-4ea7-a1d8-c422097db02f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45749,25839550-c92e-4ea7-a1d8-c422097db02f,LIST_TRANSACTIONS,xs2aListTransactions,true 45750,25839550-c92e-4ea7-a1d8-c422097db02f,AUTHORIZATION,,true 45751,25839550-c92e-4ea7-a1d8-c422097db02f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45752,25839550-c92e-4ea7-a1d8-c422097db02f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45753,25839550-c92e-4ea7-a1d8-c422097db02f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45754,66413151-d4e1-4cc2-8f93-d9f2e21484ca,LIST_ACCOUNTS,hbciListAccounts,false -45755,66413151-d4e1-4cc2-8f93-d9f2e21484ca,LIST_TRANSACTIONS,hbciListTransactions,false -45756,66413151-d4e1-4cc2-8f93-d9f2e21484ca,AUTHORIZATION,,false -45757,66413151-d4e1-4cc2-8f93-d9f2e21484ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45758,66413151-d4e1-4cc2-8f93-d9f2e21484ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45759,66413151-d4e1-4cc2-8f93-d9f2e21484ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45754,e3d36b29-d24a-422d-971e-9c67950eed59,LIST_ACCOUNTS,hbciListAccounts,false +45755,e3d36b29-d24a-422d-971e-9c67950eed59,LIST_TRANSACTIONS,hbciListTransactions,false +45756,e3d36b29-d24a-422d-971e-9c67950eed59,AUTHORIZATION,,false +45757,e3d36b29-d24a-422d-971e-9c67950eed59,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45758,e3d36b29-d24a-422d-971e-9c67950eed59,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45759,e3d36b29-d24a-422d-971e-9c67950eed59,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45760,5dd214ed-a7ff-4d19-8109-7dd75927e194,LIST_ACCOUNTS,xs2aListAccounts,true -45761,5dd214ed-a7ff-4d19-8109-7dd75927e194,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45761,5dd214ed-a7ff-4d19-8109-7dd75927e194,LIST_TRANSACTIONS,xs2aListTransactions,true 45762,5dd214ed-a7ff-4d19-8109-7dd75927e194,AUTHORIZATION,,true 45763,5dd214ed-a7ff-4d19-8109-7dd75927e194,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45764,5dd214ed-a7ff-4d19-8109-7dd75927e194,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45765,5dd214ed-a7ff-4d19-8109-7dd75927e194,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45766,8cc54cde-acdb-4e02-9c1e-5ac744acc6f4,LIST_ACCOUNTS,hbciListAccounts,false -45767,8cc54cde-acdb-4e02-9c1e-5ac744acc6f4,LIST_TRANSACTIONS,hbciListTransactions,false -45768,8cc54cde-acdb-4e02-9c1e-5ac744acc6f4,AUTHORIZATION,,false -45769,8cc54cde-acdb-4e02-9c1e-5ac744acc6f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45770,8cc54cde-acdb-4e02-9c1e-5ac744acc6f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45771,8cc54cde-acdb-4e02-9c1e-5ac744acc6f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45766,7013cbd9-280a-465f-b505-c02bd2f8579e,LIST_ACCOUNTS,hbciListAccounts,false +45767,7013cbd9-280a-465f-b505-c02bd2f8579e,LIST_TRANSACTIONS,hbciListTransactions,false +45768,7013cbd9-280a-465f-b505-c02bd2f8579e,AUTHORIZATION,,false +45769,7013cbd9-280a-465f-b505-c02bd2f8579e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45770,7013cbd9-280a-465f-b505-c02bd2f8579e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45771,7013cbd9-280a-465f-b505-c02bd2f8579e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45772,3ab0cb19-0ef2-4b6e-b68f-50215e8d245f,LIST_ACCOUNTS,xs2aListAccounts,true -45773,3ab0cb19-0ef2-4b6e-b68f-50215e8d245f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45773,3ab0cb19-0ef2-4b6e-b68f-50215e8d245f,LIST_TRANSACTIONS,xs2aListTransactions,true 45774,3ab0cb19-0ef2-4b6e-b68f-50215e8d245f,AUTHORIZATION,,true 45775,3ab0cb19-0ef2-4b6e-b68f-50215e8d245f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45776,3ab0cb19-0ef2-4b6e-b68f-50215e8d245f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45777,3ab0cb19-0ef2-4b6e-b68f-50215e8d245f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45778,634b2d18-942c-4e31-9635-6b588c9b67f1,LIST_ACCOUNTS,hbciListAccounts,false -45779,634b2d18-942c-4e31-9635-6b588c9b67f1,LIST_TRANSACTIONS,hbciListTransactions,false -45780,634b2d18-942c-4e31-9635-6b588c9b67f1,AUTHORIZATION,,false -45781,634b2d18-942c-4e31-9635-6b588c9b67f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45782,634b2d18-942c-4e31-9635-6b588c9b67f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45783,634b2d18-942c-4e31-9635-6b588c9b67f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45778,2100492d-3ae2-4550-94ef-0ce68e6010a6,LIST_ACCOUNTS,hbciListAccounts,false +45779,2100492d-3ae2-4550-94ef-0ce68e6010a6,LIST_TRANSACTIONS,hbciListTransactions,false +45780,2100492d-3ae2-4550-94ef-0ce68e6010a6,AUTHORIZATION,,false +45781,2100492d-3ae2-4550-94ef-0ce68e6010a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45782,2100492d-3ae2-4550-94ef-0ce68e6010a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45783,2100492d-3ae2-4550-94ef-0ce68e6010a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45784,bebd03a9-3964-4195-88ab-8afe12aacb3a,LIST_ACCOUNTS,xs2aListAccounts,true -45785,bebd03a9-3964-4195-88ab-8afe12aacb3a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45785,bebd03a9-3964-4195-88ab-8afe12aacb3a,LIST_TRANSACTIONS,xs2aListTransactions,true 45786,bebd03a9-3964-4195-88ab-8afe12aacb3a,AUTHORIZATION,,true 45787,bebd03a9-3964-4195-88ab-8afe12aacb3a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45788,bebd03a9-3964-4195-88ab-8afe12aacb3a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45789,bebd03a9-3964-4195-88ab-8afe12aacb3a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45790,ac96baed-cee8-4f1a-ad5c-6d5368e31424,LIST_ACCOUNTS,hbciListAccounts,false -45791,ac96baed-cee8-4f1a-ad5c-6d5368e31424,LIST_TRANSACTIONS,hbciListTransactions,false -45792,ac96baed-cee8-4f1a-ad5c-6d5368e31424,AUTHORIZATION,,false -45793,ac96baed-cee8-4f1a-ad5c-6d5368e31424,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45794,ac96baed-cee8-4f1a-ad5c-6d5368e31424,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45795,ac96baed-cee8-4f1a-ad5c-6d5368e31424,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45790,9513ce1f-d2c6-495a-87b9-588656c5e37a,LIST_ACCOUNTS,hbciListAccounts,false +45791,9513ce1f-d2c6-495a-87b9-588656c5e37a,LIST_TRANSACTIONS,hbciListTransactions,false +45792,9513ce1f-d2c6-495a-87b9-588656c5e37a,AUTHORIZATION,,false +45793,9513ce1f-d2c6-495a-87b9-588656c5e37a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45794,9513ce1f-d2c6-495a-87b9-588656c5e37a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45795,9513ce1f-d2c6-495a-87b9-588656c5e37a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45796,120d939c-40bd-441c-bcb7-7cc24a58a5d1,LIST_ACCOUNTS,xs2aListAccounts,true -45797,120d939c-40bd-441c-bcb7-7cc24a58a5d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45797,120d939c-40bd-441c-bcb7-7cc24a58a5d1,LIST_TRANSACTIONS,xs2aListTransactions,true 45798,120d939c-40bd-441c-bcb7-7cc24a58a5d1,AUTHORIZATION,,true 45799,120d939c-40bd-441c-bcb7-7cc24a58a5d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45800,120d939c-40bd-441c-bcb7-7cc24a58a5d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45801,120d939c-40bd-441c-bcb7-7cc24a58a5d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45802,36286f93-fb07-4fa1-a519-e9e2e2e812ed,LIST_ACCOUNTS,hbciListAccounts,false -45803,36286f93-fb07-4fa1-a519-e9e2e2e812ed,LIST_TRANSACTIONS,hbciListTransactions,false -45804,36286f93-fb07-4fa1-a519-e9e2e2e812ed,AUTHORIZATION,,false -45805,36286f93-fb07-4fa1-a519-e9e2e2e812ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45806,36286f93-fb07-4fa1-a519-e9e2e2e812ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45807,36286f93-fb07-4fa1-a519-e9e2e2e812ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45802,1fbab2a3-51cc-4965-9d9e-178935f60f63,LIST_ACCOUNTS,hbciListAccounts,false +45803,1fbab2a3-51cc-4965-9d9e-178935f60f63,LIST_TRANSACTIONS,hbciListTransactions,false +45804,1fbab2a3-51cc-4965-9d9e-178935f60f63,AUTHORIZATION,,false +45805,1fbab2a3-51cc-4965-9d9e-178935f60f63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45806,1fbab2a3-51cc-4965-9d9e-178935f60f63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45807,1fbab2a3-51cc-4965-9d9e-178935f60f63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45808,4e38cd22-6bd9-4cb8-8311-417644a59e1e,LIST_ACCOUNTS,xs2aListAccounts,true -45809,4e38cd22-6bd9-4cb8-8311-417644a59e1e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45809,4e38cd22-6bd9-4cb8-8311-417644a59e1e,LIST_TRANSACTIONS,xs2aListTransactions,true 45810,4e38cd22-6bd9-4cb8-8311-417644a59e1e,AUTHORIZATION,,true 45811,4e38cd22-6bd9-4cb8-8311-417644a59e1e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45812,4e38cd22-6bd9-4cb8-8311-417644a59e1e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45813,4e38cd22-6bd9-4cb8-8311-417644a59e1e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45814,36de6420-85b9-4608-81d0-83bb1d084847,LIST_ACCOUNTS,hbciListAccounts,false -45815,36de6420-85b9-4608-81d0-83bb1d084847,LIST_TRANSACTIONS,hbciListTransactions,false -45816,36de6420-85b9-4608-81d0-83bb1d084847,AUTHORIZATION,,false -45817,36de6420-85b9-4608-81d0-83bb1d084847,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45818,36de6420-85b9-4608-81d0-83bb1d084847,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45819,36de6420-85b9-4608-81d0-83bb1d084847,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45814,cd4b2216-18df-4ea3-aca3-5b7563e9bce8,LIST_ACCOUNTS,hbciListAccounts,false +45815,cd4b2216-18df-4ea3-aca3-5b7563e9bce8,LIST_TRANSACTIONS,hbciListTransactions,false +45816,cd4b2216-18df-4ea3-aca3-5b7563e9bce8,AUTHORIZATION,,false +45817,cd4b2216-18df-4ea3-aca3-5b7563e9bce8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45818,cd4b2216-18df-4ea3-aca3-5b7563e9bce8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45819,cd4b2216-18df-4ea3-aca3-5b7563e9bce8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45820,4f5c6ee8-cdc2-46bb-a473-da8595b2f370,LIST_ACCOUNTS,xs2aListAccounts,true -45821,4f5c6ee8-cdc2-46bb-a473-da8595b2f370,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45821,4f5c6ee8-cdc2-46bb-a473-da8595b2f370,LIST_TRANSACTIONS,xs2aListTransactions,true 45822,4f5c6ee8-cdc2-46bb-a473-da8595b2f370,AUTHORIZATION,,true 45823,4f5c6ee8-cdc2-46bb-a473-da8595b2f370,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45824,4f5c6ee8-cdc2-46bb-a473-da8595b2f370,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45825,4f5c6ee8-cdc2-46bb-a473-da8595b2f370,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45826,a2b20dd5-0bf9-4f16-943b-9a4b3766f27a,LIST_ACCOUNTS,hbciListAccounts,false -45827,a2b20dd5-0bf9-4f16-943b-9a4b3766f27a,LIST_TRANSACTIONS,hbciListTransactions,false -45828,a2b20dd5-0bf9-4f16-943b-9a4b3766f27a,AUTHORIZATION,,false -45829,a2b20dd5-0bf9-4f16-943b-9a4b3766f27a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45830,a2b20dd5-0bf9-4f16-943b-9a4b3766f27a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45831,a2b20dd5-0bf9-4f16-943b-9a4b3766f27a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45826,2656d497-3014-4618-af1a-aa4c679c849b,LIST_ACCOUNTS,hbciListAccounts,false +45827,2656d497-3014-4618-af1a-aa4c679c849b,LIST_TRANSACTIONS,hbciListTransactions,false +45828,2656d497-3014-4618-af1a-aa4c679c849b,AUTHORIZATION,,false +45829,2656d497-3014-4618-af1a-aa4c679c849b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45830,2656d497-3014-4618-af1a-aa4c679c849b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45831,2656d497-3014-4618-af1a-aa4c679c849b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45832,5ae74e45-ee66-4315-8e73-b91fa531c7d7,LIST_ACCOUNTS,xs2aListAccounts,true -45833,5ae74e45-ee66-4315-8e73-b91fa531c7d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45833,5ae74e45-ee66-4315-8e73-b91fa531c7d7,LIST_TRANSACTIONS,xs2aListTransactions,true 45834,5ae74e45-ee66-4315-8e73-b91fa531c7d7,AUTHORIZATION,,true 45835,5ae74e45-ee66-4315-8e73-b91fa531c7d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45836,5ae74e45-ee66-4315-8e73-b91fa531c7d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45837,5ae74e45-ee66-4315-8e73-b91fa531c7d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45838,20f0c328-a199-42a1-b902-c76ade013fb8,LIST_ACCOUNTS,hbciListAccounts,false -45839,20f0c328-a199-42a1-b902-c76ade013fb8,LIST_TRANSACTIONS,hbciListTransactions,false -45840,20f0c328-a199-42a1-b902-c76ade013fb8,AUTHORIZATION,,false -45841,20f0c328-a199-42a1-b902-c76ade013fb8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45842,20f0c328-a199-42a1-b902-c76ade013fb8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45843,20f0c328-a199-42a1-b902-c76ade013fb8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45838,1c9e9e7a-bef4-4821-b876-30c9452308dc,LIST_ACCOUNTS,hbciListAccounts,false +45839,1c9e9e7a-bef4-4821-b876-30c9452308dc,LIST_TRANSACTIONS,hbciListTransactions,false +45840,1c9e9e7a-bef4-4821-b876-30c9452308dc,AUTHORIZATION,,false +45841,1c9e9e7a-bef4-4821-b876-30c9452308dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45842,1c9e9e7a-bef4-4821-b876-30c9452308dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45843,1c9e9e7a-bef4-4821-b876-30c9452308dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45844,6bf863c9-0247-48f1-8ff5-d6f054b6581b,LIST_ACCOUNTS,xs2aListAccounts,true -45845,6bf863c9-0247-48f1-8ff5-d6f054b6581b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45845,6bf863c9-0247-48f1-8ff5-d6f054b6581b,LIST_TRANSACTIONS,xs2aListTransactions,true 45846,6bf863c9-0247-48f1-8ff5-d6f054b6581b,AUTHORIZATION,,true 45847,6bf863c9-0247-48f1-8ff5-d6f054b6581b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45848,6bf863c9-0247-48f1-8ff5-d6f054b6581b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45849,6bf863c9-0247-48f1-8ff5-d6f054b6581b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45850,5cb7a9f5-8adb-408a-ae3c-28905eb21811,LIST_ACCOUNTS,hbciListAccounts,false -45851,5cb7a9f5-8adb-408a-ae3c-28905eb21811,LIST_TRANSACTIONS,hbciListTransactions,false -45852,5cb7a9f5-8adb-408a-ae3c-28905eb21811,AUTHORIZATION,,false -45853,5cb7a9f5-8adb-408a-ae3c-28905eb21811,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45854,5cb7a9f5-8adb-408a-ae3c-28905eb21811,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45855,5cb7a9f5-8adb-408a-ae3c-28905eb21811,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45850,40896eca-9fe0-447c-befa-26b9ab3555bb,LIST_ACCOUNTS,hbciListAccounts,false +45851,40896eca-9fe0-447c-befa-26b9ab3555bb,LIST_TRANSACTIONS,hbciListTransactions,false +45852,40896eca-9fe0-447c-befa-26b9ab3555bb,AUTHORIZATION,,false +45853,40896eca-9fe0-447c-befa-26b9ab3555bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45854,40896eca-9fe0-447c-befa-26b9ab3555bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45855,40896eca-9fe0-447c-befa-26b9ab3555bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45856,a5ae187c-a32f-4457-8499-e2ba73c2d214,LIST_ACCOUNTS,xs2aListAccounts,true -45857,a5ae187c-a32f-4457-8499-e2ba73c2d214,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45857,a5ae187c-a32f-4457-8499-e2ba73c2d214,LIST_TRANSACTIONS,xs2aListTransactions,true 45858,a5ae187c-a32f-4457-8499-e2ba73c2d214,AUTHORIZATION,,true 45859,a5ae187c-a32f-4457-8499-e2ba73c2d214,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45860,a5ae187c-a32f-4457-8499-e2ba73c2d214,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45861,a5ae187c-a32f-4457-8499-e2ba73c2d214,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45862,d1fbb43d-a85b-40ac-9e4c-0505a682e59f,LIST_ACCOUNTS,hbciListAccounts,false -45863,d1fbb43d-a85b-40ac-9e4c-0505a682e59f,LIST_TRANSACTIONS,hbciListTransactions,false -45864,d1fbb43d-a85b-40ac-9e4c-0505a682e59f,AUTHORIZATION,,false -45865,d1fbb43d-a85b-40ac-9e4c-0505a682e59f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45866,d1fbb43d-a85b-40ac-9e4c-0505a682e59f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45867,d1fbb43d-a85b-40ac-9e4c-0505a682e59f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45862,aff14d5a-9c1b-4bd9-a5cc-f2163c4aa449,LIST_ACCOUNTS,hbciListAccounts,false +45863,aff14d5a-9c1b-4bd9-a5cc-f2163c4aa449,LIST_TRANSACTIONS,hbciListTransactions,false +45864,aff14d5a-9c1b-4bd9-a5cc-f2163c4aa449,AUTHORIZATION,,false +45865,aff14d5a-9c1b-4bd9-a5cc-f2163c4aa449,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45866,aff14d5a-9c1b-4bd9-a5cc-f2163c4aa449,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45867,aff14d5a-9c1b-4bd9-a5cc-f2163c4aa449,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45868,f0ad0c9a-cf6a-4a75-a556-4808bf14f68e,LIST_ACCOUNTS,xs2aListAccounts,true -45869,f0ad0c9a-cf6a-4a75-a556-4808bf14f68e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45869,f0ad0c9a-cf6a-4a75-a556-4808bf14f68e,LIST_TRANSACTIONS,xs2aListTransactions,true 45870,f0ad0c9a-cf6a-4a75-a556-4808bf14f68e,AUTHORIZATION,,true 45871,f0ad0c9a-cf6a-4a75-a556-4808bf14f68e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45872,f0ad0c9a-cf6a-4a75-a556-4808bf14f68e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45873,f0ad0c9a-cf6a-4a75-a556-4808bf14f68e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45874,0a9f4720-f7ac-4a9f-9a5c-6c6ddc188f90,LIST_ACCOUNTS,hbciListAccounts,false -45875,0a9f4720-f7ac-4a9f-9a5c-6c6ddc188f90,LIST_TRANSACTIONS,hbciListTransactions,false -45876,0a9f4720-f7ac-4a9f-9a5c-6c6ddc188f90,AUTHORIZATION,,false -45877,0a9f4720-f7ac-4a9f-9a5c-6c6ddc188f90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45878,0a9f4720-f7ac-4a9f-9a5c-6c6ddc188f90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45879,0a9f4720-f7ac-4a9f-9a5c-6c6ddc188f90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45874,bb9d6eba-761b-4580-9e57-b901360630b0,LIST_ACCOUNTS,hbciListAccounts,false +45875,bb9d6eba-761b-4580-9e57-b901360630b0,LIST_TRANSACTIONS,hbciListTransactions,false +45876,bb9d6eba-761b-4580-9e57-b901360630b0,AUTHORIZATION,,false +45877,bb9d6eba-761b-4580-9e57-b901360630b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45878,bb9d6eba-761b-4580-9e57-b901360630b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45879,bb9d6eba-761b-4580-9e57-b901360630b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45880,b51e9365-6f50-48bd-a5d7-2b7b790137ad,LIST_ACCOUNTS,xs2aListAccounts,true -45881,b51e9365-6f50-48bd-a5d7-2b7b790137ad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45881,b51e9365-6f50-48bd-a5d7-2b7b790137ad,LIST_TRANSACTIONS,xs2aListTransactions,true 45882,b51e9365-6f50-48bd-a5d7-2b7b790137ad,AUTHORIZATION,,true 45883,b51e9365-6f50-48bd-a5d7-2b7b790137ad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45884,b51e9365-6f50-48bd-a5d7-2b7b790137ad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45885,b51e9365-6f50-48bd-a5d7-2b7b790137ad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45886,df0f884b-5ac2-4a87-bb48-48221270ed19,LIST_ACCOUNTS,hbciListAccounts,false -45887,df0f884b-5ac2-4a87-bb48-48221270ed19,LIST_TRANSACTIONS,hbciListTransactions,false -45888,df0f884b-5ac2-4a87-bb48-48221270ed19,AUTHORIZATION,,false -45889,df0f884b-5ac2-4a87-bb48-48221270ed19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45890,df0f884b-5ac2-4a87-bb48-48221270ed19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45891,df0f884b-5ac2-4a87-bb48-48221270ed19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45886,c6edb5ae-bd54-4626-a81f-080aee8752ab,LIST_ACCOUNTS,hbciListAccounts,false +45887,c6edb5ae-bd54-4626-a81f-080aee8752ab,LIST_TRANSACTIONS,hbciListTransactions,false +45888,c6edb5ae-bd54-4626-a81f-080aee8752ab,AUTHORIZATION,,false +45889,c6edb5ae-bd54-4626-a81f-080aee8752ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45890,c6edb5ae-bd54-4626-a81f-080aee8752ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45891,c6edb5ae-bd54-4626-a81f-080aee8752ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45892,55c11ddf-3f06-4027-95f9-8d90d48266e4,LIST_ACCOUNTS,xs2aListAccounts,true -45893,55c11ddf-3f06-4027-95f9-8d90d48266e4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45893,55c11ddf-3f06-4027-95f9-8d90d48266e4,LIST_TRANSACTIONS,xs2aListTransactions,true 45894,55c11ddf-3f06-4027-95f9-8d90d48266e4,AUTHORIZATION,,true 45895,55c11ddf-3f06-4027-95f9-8d90d48266e4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45896,55c11ddf-3f06-4027-95f9-8d90d48266e4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45897,55c11ddf-3f06-4027-95f9-8d90d48266e4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45898,c0a92d8c-cd38-4b4b-9abb-e22955e0d8bc,LIST_ACCOUNTS,hbciListAccounts,false -45899,c0a92d8c-cd38-4b4b-9abb-e22955e0d8bc,LIST_TRANSACTIONS,hbciListTransactions,false -45900,c0a92d8c-cd38-4b4b-9abb-e22955e0d8bc,AUTHORIZATION,,false -45901,c0a92d8c-cd38-4b4b-9abb-e22955e0d8bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45902,c0a92d8c-cd38-4b4b-9abb-e22955e0d8bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45903,c0a92d8c-cd38-4b4b-9abb-e22955e0d8bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45898,e4f0b348-53f5-4d8a-8c15-481c4707ed54,LIST_ACCOUNTS,hbciListAccounts,false +45899,e4f0b348-53f5-4d8a-8c15-481c4707ed54,LIST_TRANSACTIONS,hbciListTransactions,false +45900,e4f0b348-53f5-4d8a-8c15-481c4707ed54,AUTHORIZATION,,false +45901,e4f0b348-53f5-4d8a-8c15-481c4707ed54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45902,e4f0b348-53f5-4d8a-8c15-481c4707ed54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45903,e4f0b348-53f5-4d8a-8c15-481c4707ed54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45904,22ea1461-117f-413f-afbc-8bb7cf55698f,LIST_ACCOUNTS,xs2aListAccounts,true -45905,22ea1461-117f-413f-afbc-8bb7cf55698f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45905,22ea1461-117f-413f-afbc-8bb7cf55698f,LIST_TRANSACTIONS,xs2aListTransactions,true 45906,22ea1461-117f-413f-afbc-8bb7cf55698f,AUTHORIZATION,,true 45907,22ea1461-117f-413f-afbc-8bb7cf55698f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45908,22ea1461-117f-413f-afbc-8bb7cf55698f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45909,22ea1461-117f-413f-afbc-8bb7cf55698f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45910,dd48bf5c-9d07-4eba-a5f3-8814b53060b8,LIST_ACCOUNTS,hbciListAccounts,false -45911,dd48bf5c-9d07-4eba-a5f3-8814b53060b8,LIST_TRANSACTIONS,hbciListTransactions,false -45912,dd48bf5c-9d07-4eba-a5f3-8814b53060b8,AUTHORIZATION,,false -45913,dd48bf5c-9d07-4eba-a5f3-8814b53060b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45914,dd48bf5c-9d07-4eba-a5f3-8814b53060b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45915,dd48bf5c-9d07-4eba-a5f3-8814b53060b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45910,a1df9bd1-c52f-4ab1-9091-2138c492056b,LIST_ACCOUNTS,hbciListAccounts,false +45911,a1df9bd1-c52f-4ab1-9091-2138c492056b,LIST_TRANSACTIONS,hbciListTransactions,false +45912,a1df9bd1-c52f-4ab1-9091-2138c492056b,AUTHORIZATION,,false +45913,a1df9bd1-c52f-4ab1-9091-2138c492056b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45914,a1df9bd1-c52f-4ab1-9091-2138c492056b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45915,a1df9bd1-c52f-4ab1-9091-2138c492056b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45916,842e6862-2fe8-4625-b24f-506a6e8ebe29,LIST_ACCOUNTS,xs2aListAccounts,true -45917,842e6862-2fe8-4625-b24f-506a6e8ebe29,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45917,842e6862-2fe8-4625-b24f-506a6e8ebe29,LIST_TRANSACTIONS,xs2aListTransactions,true 45918,842e6862-2fe8-4625-b24f-506a6e8ebe29,AUTHORIZATION,,true 45919,842e6862-2fe8-4625-b24f-506a6e8ebe29,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45920,842e6862-2fe8-4625-b24f-506a6e8ebe29,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45921,842e6862-2fe8-4625-b24f-506a6e8ebe29,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45922,ea9d8794-06bf-445f-906b-51343325c810,LIST_ACCOUNTS,hbciListAccounts,false -45923,ea9d8794-06bf-445f-906b-51343325c810,LIST_TRANSACTIONS,hbciListTransactions,false -45924,ea9d8794-06bf-445f-906b-51343325c810,AUTHORIZATION,,false -45925,ea9d8794-06bf-445f-906b-51343325c810,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45926,ea9d8794-06bf-445f-906b-51343325c810,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45927,ea9d8794-06bf-445f-906b-51343325c810,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45922,749153c5-5f39-4b6e-b72d-bb64cf9f40e3,LIST_ACCOUNTS,hbciListAccounts,false +45923,749153c5-5f39-4b6e-b72d-bb64cf9f40e3,LIST_TRANSACTIONS,hbciListTransactions,false +45924,749153c5-5f39-4b6e-b72d-bb64cf9f40e3,AUTHORIZATION,,false +45925,749153c5-5f39-4b6e-b72d-bb64cf9f40e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45926,749153c5-5f39-4b6e-b72d-bb64cf9f40e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45927,749153c5-5f39-4b6e-b72d-bb64cf9f40e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45928,5bbcf8df-a4e1-4e33-851c-4c212e918964,LIST_ACCOUNTS,xs2aListAccounts,true -45929,5bbcf8df-a4e1-4e33-851c-4c212e918964,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45929,5bbcf8df-a4e1-4e33-851c-4c212e918964,LIST_TRANSACTIONS,xs2aListTransactions,true 45930,5bbcf8df-a4e1-4e33-851c-4c212e918964,AUTHORIZATION,,true 45931,5bbcf8df-a4e1-4e33-851c-4c212e918964,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45932,5bbcf8df-a4e1-4e33-851c-4c212e918964,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45933,5bbcf8df-a4e1-4e33-851c-4c212e918964,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45934,b3880494-1ee5-40f6-b2bd-aa1b8e8c7a0c,LIST_ACCOUNTS,hbciListAccounts,false -45935,b3880494-1ee5-40f6-b2bd-aa1b8e8c7a0c,LIST_TRANSACTIONS,hbciListTransactions,false -45936,b3880494-1ee5-40f6-b2bd-aa1b8e8c7a0c,AUTHORIZATION,,false -45937,b3880494-1ee5-40f6-b2bd-aa1b8e8c7a0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45938,b3880494-1ee5-40f6-b2bd-aa1b8e8c7a0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45939,b3880494-1ee5-40f6-b2bd-aa1b8e8c7a0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45934,c65873dc-0660-4281-bb39-d9a363dd828e,LIST_ACCOUNTS,hbciListAccounts,false +45935,c65873dc-0660-4281-bb39-d9a363dd828e,LIST_TRANSACTIONS,hbciListTransactions,false +45936,c65873dc-0660-4281-bb39-d9a363dd828e,AUTHORIZATION,,false +45937,c65873dc-0660-4281-bb39-d9a363dd828e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45938,c65873dc-0660-4281-bb39-d9a363dd828e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45939,c65873dc-0660-4281-bb39-d9a363dd828e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45940,9fbe2749-0835-48a9-a994-b943e5dd4e56,LIST_ACCOUNTS,xs2aListAccounts,true -45941,9fbe2749-0835-48a9-a994-b943e5dd4e56,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45941,9fbe2749-0835-48a9-a994-b943e5dd4e56,LIST_TRANSACTIONS,xs2aListTransactions,true 45942,9fbe2749-0835-48a9-a994-b943e5dd4e56,AUTHORIZATION,,true 45943,9fbe2749-0835-48a9-a994-b943e5dd4e56,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45944,9fbe2749-0835-48a9-a994-b943e5dd4e56,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45945,9fbe2749-0835-48a9-a994-b943e5dd4e56,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45946,f57c53ed-1162-49b3-9ded-1e6c0fa8bdd0,LIST_ACCOUNTS,hbciListAccounts,false -45947,f57c53ed-1162-49b3-9ded-1e6c0fa8bdd0,LIST_TRANSACTIONS,hbciListTransactions,false -45948,f57c53ed-1162-49b3-9ded-1e6c0fa8bdd0,AUTHORIZATION,,false -45949,f57c53ed-1162-49b3-9ded-1e6c0fa8bdd0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45950,f57c53ed-1162-49b3-9ded-1e6c0fa8bdd0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45951,f57c53ed-1162-49b3-9ded-1e6c0fa8bdd0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45946,f057ebe0-a710-4e5a-bec7-4d91afca215b,LIST_ACCOUNTS,hbciListAccounts,false +45947,f057ebe0-a710-4e5a-bec7-4d91afca215b,LIST_TRANSACTIONS,hbciListTransactions,false +45948,f057ebe0-a710-4e5a-bec7-4d91afca215b,AUTHORIZATION,,false +45949,f057ebe0-a710-4e5a-bec7-4d91afca215b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45950,f057ebe0-a710-4e5a-bec7-4d91afca215b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45951,f057ebe0-a710-4e5a-bec7-4d91afca215b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45952,00343f88-ae14-4de5-85bb-842ae08f7793,LIST_ACCOUNTS,xs2aListAccounts,true -45953,00343f88-ae14-4de5-85bb-842ae08f7793,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45953,00343f88-ae14-4de5-85bb-842ae08f7793,LIST_TRANSACTIONS,xs2aListTransactions,true 45954,00343f88-ae14-4de5-85bb-842ae08f7793,AUTHORIZATION,,true 45955,00343f88-ae14-4de5-85bb-842ae08f7793,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45956,00343f88-ae14-4de5-85bb-842ae08f7793,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45957,00343f88-ae14-4de5-85bb-842ae08f7793,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45958,e4b02fc6-7559-41db-a9c7-9f140efa7837,LIST_ACCOUNTS,hbciListAccounts,false -45959,e4b02fc6-7559-41db-a9c7-9f140efa7837,LIST_TRANSACTIONS,hbciListTransactions,false -45960,e4b02fc6-7559-41db-a9c7-9f140efa7837,AUTHORIZATION,,false -45961,e4b02fc6-7559-41db-a9c7-9f140efa7837,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45962,e4b02fc6-7559-41db-a9c7-9f140efa7837,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45963,e4b02fc6-7559-41db-a9c7-9f140efa7837,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45958,26b05ad9-93de-4519-8680-64fa0daa818f,LIST_ACCOUNTS,hbciListAccounts,false +45959,26b05ad9-93de-4519-8680-64fa0daa818f,LIST_TRANSACTIONS,hbciListTransactions,false +45960,26b05ad9-93de-4519-8680-64fa0daa818f,AUTHORIZATION,,false +45961,26b05ad9-93de-4519-8680-64fa0daa818f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45962,26b05ad9-93de-4519-8680-64fa0daa818f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45963,26b05ad9-93de-4519-8680-64fa0daa818f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45964,2e03aa91-48f4-4886-85e7-bb219ee6aaaa,LIST_ACCOUNTS,xs2aListAccounts,true -45965,2e03aa91-48f4-4886-85e7-bb219ee6aaaa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45965,2e03aa91-48f4-4886-85e7-bb219ee6aaaa,LIST_TRANSACTIONS,xs2aListTransactions,true 45966,2e03aa91-48f4-4886-85e7-bb219ee6aaaa,AUTHORIZATION,,true 45967,2e03aa91-48f4-4886-85e7-bb219ee6aaaa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45968,2e03aa91-48f4-4886-85e7-bb219ee6aaaa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45969,2e03aa91-48f4-4886-85e7-bb219ee6aaaa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45970,1879e1a6-e837-4641-8dcf-df0f10311637,LIST_ACCOUNTS,hbciListAccounts,false -45971,1879e1a6-e837-4641-8dcf-df0f10311637,LIST_TRANSACTIONS,hbciListTransactions,false -45972,1879e1a6-e837-4641-8dcf-df0f10311637,AUTHORIZATION,,false -45973,1879e1a6-e837-4641-8dcf-df0f10311637,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45974,1879e1a6-e837-4641-8dcf-df0f10311637,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45975,1879e1a6-e837-4641-8dcf-df0f10311637,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45970,1862911d-2115-40f1-88f7-919439584130,LIST_ACCOUNTS,hbciListAccounts,false +45971,1862911d-2115-40f1-88f7-919439584130,LIST_TRANSACTIONS,hbciListTransactions,false +45972,1862911d-2115-40f1-88f7-919439584130,AUTHORIZATION,,false +45973,1862911d-2115-40f1-88f7-919439584130,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45974,1862911d-2115-40f1-88f7-919439584130,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45975,1862911d-2115-40f1-88f7-919439584130,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45976,c288e7b8-ac4f-486e-9101-c15cd68e8f80,LIST_ACCOUNTS,xs2aListAccounts,true -45977,c288e7b8-ac4f-486e-9101-c15cd68e8f80,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45977,c288e7b8-ac4f-486e-9101-c15cd68e8f80,LIST_TRANSACTIONS,xs2aListTransactions,true 45978,c288e7b8-ac4f-486e-9101-c15cd68e8f80,AUTHORIZATION,,true 45979,c288e7b8-ac4f-486e-9101-c15cd68e8f80,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45980,c288e7b8-ac4f-486e-9101-c15cd68e8f80,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45981,c288e7b8-ac4f-486e-9101-c15cd68e8f80,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45982,5b41f72b-b34f-4f3c-a4b3-be794f857743,LIST_ACCOUNTS,hbciListAccounts,false -45983,5b41f72b-b34f-4f3c-a4b3-be794f857743,LIST_TRANSACTIONS,hbciListTransactions,false -45984,5b41f72b-b34f-4f3c-a4b3-be794f857743,AUTHORIZATION,,false -45985,5b41f72b-b34f-4f3c-a4b3-be794f857743,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45986,5b41f72b-b34f-4f3c-a4b3-be794f857743,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45987,5b41f72b-b34f-4f3c-a4b3-be794f857743,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45982,e97f786f-6818-47ca-a547-2fa99159cdc1,LIST_ACCOUNTS,hbciListAccounts,false +45983,e97f786f-6818-47ca-a547-2fa99159cdc1,LIST_TRANSACTIONS,hbciListTransactions,false +45984,e97f786f-6818-47ca-a547-2fa99159cdc1,AUTHORIZATION,,false +45985,e97f786f-6818-47ca-a547-2fa99159cdc1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45986,e97f786f-6818-47ca-a547-2fa99159cdc1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45987,e97f786f-6818-47ca-a547-2fa99159cdc1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 45988,14e56276-a1ea-44d5-9869-cfc53af5269b,LIST_ACCOUNTS,xs2aListAccounts,true -45989,14e56276-a1ea-44d5-9869-cfc53af5269b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +45989,14e56276-a1ea-44d5-9869-cfc53af5269b,LIST_TRANSACTIONS,xs2aListTransactions,true 45990,14e56276-a1ea-44d5-9869-cfc53af5269b,AUTHORIZATION,,true 45991,14e56276-a1ea-44d5-9869-cfc53af5269b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 45992,14e56276-a1ea-44d5-9869-cfc53af5269b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 45993,14e56276-a1ea-44d5-9869-cfc53af5269b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -45994,103fe46a-ea90-47c5-8255-d181d4f83659,LIST_ACCOUNTS,hbciListAccounts,false -45995,103fe46a-ea90-47c5-8255-d181d4f83659,LIST_TRANSACTIONS,hbciListTransactions,false -45996,103fe46a-ea90-47c5-8255-d181d4f83659,AUTHORIZATION,,false -45997,103fe46a-ea90-47c5-8255-d181d4f83659,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -45998,103fe46a-ea90-47c5-8255-d181d4f83659,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -45999,103fe46a-ea90-47c5-8255-d181d4f83659,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +45994,de4cb97b-3dfc-4edc-9464-04a63c76b738,LIST_ACCOUNTS,hbciListAccounts,false +45995,de4cb97b-3dfc-4edc-9464-04a63c76b738,LIST_TRANSACTIONS,hbciListTransactions,false +45996,de4cb97b-3dfc-4edc-9464-04a63c76b738,AUTHORIZATION,,false +45997,de4cb97b-3dfc-4edc-9464-04a63c76b738,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +45998,de4cb97b-3dfc-4edc-9464-04a63c76b738,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +45999,de4cb97b-3dfc-4edc-9464-04a63c76b738,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46000,49ba0048-720c-4d03-854e-afac4ca6efd2,LIST_ACCOUNTS,xs2aListAccounts,true -46001,49ba0048-720c-4d03-854e-afac4ca6efd2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46001,49ba0048-720c-4d03-854e-afac4ca6efd2,LIST_TRANSACTIONS,xs2aListTransactions,true 46002,49ba0048-720c-4d03-854e-afac4ca6efd2,AUTHORIZATION,,true 46003,49ba0048-720c-4d03-854e-afac4ca6efd2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46004,49ba0048-720c-4d03-854e-afac4ca6efd2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46005,49ba0048-720c-4d03-854e-afac4ca6efd2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46006,0c7b2bc4-257d-472a-8601-615b60b23d1c,LIST_ACCOUNTS,hbciListAccounts,false -46007,0c7b2bc4-257d-472a-8601-615b60b23d1c,LIST_TRANSACTIONS,hbciListTransactions,false -46008,0c7b2bc4-257d-472a-8601-615b60b23d1c,AUTHORIZATION,,false -46009,0c7b2bc4-257d-472a-8601-615b60b23d1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46010,0c7b2bc4-257d-472a-8601-615b60b23d1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46011,0c7b2bc4-257d-472a-8601-615b60b23d1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46006,1f3836e2-9fbb-40c7-85bb-062721a9ba8f,LIST_ACCOUNTS,hbciListAccounts,false +46007,1f3836e2-9fbb-40c7-85bb-062721a9ba8f,LIST_TRANSACTIONS,hbciListTransactions,false +46008,1f3836e2-9fbb-40c7-85bb-062721a9ba8f,AUTHORIZATION,,false +46009,1f3836e2-9fbb-40c7-85bb-062721a9ba8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46010,1f3836e2-9fbb-40c7-85bb-062721a9ba8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46011,1f3836e2-9fbb-40c7-85bb-062721a9ba8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46012,f64ad285-a179-43c0-ae5f-b079b1eb3de6,LIST_ACCOUNTS,xs2aListAccounts,true -46013,f64ad285-a179-43c0-ae5f-b079b1eb3de6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46013,f64ad285-a179-43c0-ae5f-b079b1eb3de6,LIST_TRANSACTIONS,xs2aListTransactions,true 46014,f64ad285-a179-43c0-ae5f-b079b1eb3de6,AUTHORIZATION,,true 46015,f64ad285-a179-43c0-ae5f-b079b1eb3de6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46016,f64ad285-a179-43c0-ae5f-b079b1eb3de6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46017,f64ad285-a179-43c0-ae5f-b079b1eb3de6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46018,5fd9f9f1-07b1-4149-8b80-1c252d359c5b,LIST_ACCOUNTS,hbciListAccounts,false -46019,5fd9f9f1-07b1-4149-8b80-1c252d359c5b,LIST_TRANSACTIONS,hbciListTransactions,false -46020,5fd9f9f1-07b1-4149-8b80-1c252d359c5b,AUTHORIZATION,,false -46021,5fd9f9f1-07b1-4149-8b80-1c252d359c5b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46022,5fd9f9f1-07b1-4149-8b80-1c252d359c5b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46023,5fd9f9f1-07b1-4149-8b80-1c252d359c5b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46018,51b55af3-4317-482d-a6de-639cbf817a47,LIST_ACCOUNTS,hbciListAccounts,false +46019,51b55af3-4317-482d-a6de-639cbf817a47,LIST_TRANSACTIONS,hbciListTransactions,false +46020,51b55af3-4317-482d-a6de-639cbf817a47,AUTHORIZATION,,false +46021,51b55af3-4317-482d-a6de-639cbf817a47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46022,51b55af3-4317-482d-a6de-639cbf817a47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46023,51b55af3-4317-482d-a6de-639cbf817a47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46024,833f6cea-38b8-492b-981c-f841a8e49c30,LIST_ACCOUNTS,xs2aListAccounts,true -46025,833f6cea-38b8-492b-981c-f841a8e49c30,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46025,833f6cea-38b8-492b-981c-f841a8e49c30,LIST_TRANSACTIONS,xs2aListTransactions,true 46026,833f6cea-38b8-492b-981c-f841a8e49c30,AUTHORIZATION,,true 46027,833f6cea-38b8-492b-981c-f841a8e49c30,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46028,833f6cea-38b8-492b-981c-f841a8e49c30,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46029,833f6cea-38b8-492b-981c-f841a8e49c30,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46030,a3ae5b46-89dc-4f22-8a6c-655db8731fd9,LIST_ACCOUNTS,hbciListAccounts,false -46031,a3ae5b46-89dc-4f22-8a6c-655db8731fd9,LIST_TRANSACTIONS,hbciListTransactions,false -46032,a3ae5b46-89dc-4f22-8a6c-655db8731fd9,AUTHORIZATION,,false -46033,a3ae5b46-89dc-4f22-8a6c-655db8731fd9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46034,a3ae5b46-89dc-4f22-8a6c-655db8731fd9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46035,a3ae5b46-89dc-4f22-8a6c-655db8731fd9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46030,714bede6-9a34-4f71-9d2f-39b763944967,LIST_ACCOUNTS,hbciListAccounts,false +46031,714bede6-9a34-4f71-9d2f-39b763944967,LIST_TRANSACTIONS,hbciListTransactions,false +46032,714bede6-9a34-4f71-9d2f-39b763944967,AUTHORIZATION,,false +46033,714bede6-9a34-4f71-9d2f-39b763944967,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46034,714bede6-9a34-4f71-9d2f-39b763944967,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46035,714bede6-9a34-4f71-9d2f-39b763944967,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46036,c05cf189-48c0-4ee8-b4ba-4b5d1ba3c78d,LIST_ACCOUNTS,xs2aListAccounts,true -46037,c05cf189-48c0-4ee8-b4ba-4b5d1ba3c78d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46037,c05cf189-48c0-4ee8-b4ba-4b5d1ba3c78d,LIST_TRANSACTIONS,xs2aListTransactions,true 46038,c05cf189-48c0-4ee8-b4ba-4b5d1ba3c78d,AUTHORIZATION,,true 46039,c05cf189-48c0-4ee8-b4ba-4b5d1ba3c78d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46040,c05cf189-48c0-4ee8-b4ba-4b5d1ba3c78d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46041,c05cf189-48c0-4ee8-b4ba-4b5d1ba3c78d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46042,f6b19ef6-f60a-4cf5-80f2-727e4b5ec6a0,LIST_ACCOUNTS,hbciListAccounts,false -46043,f6b19ef6-f60a-4cf5-80f2-727e4b5ec6a0,LIST_TRANSACTIONS,hbciListTransactions,false -46044,f6b19ef6-f60a-4cf5-80f2-727e4b5ec6a0,AUTHORIZATION,,false -46045,f6b19ef6-f60a-4cf5-80f2-727e4b5ec6a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46046,f6b19ef6-f60a-4cf5-80f2-727e4b5ec6a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46047,f6b19ef6-f60a-4cf5-80f2-727e4b5ec6a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46042,9f98a4bc-87dc-4264-b768-de7ea85069df,LIST_ACCOUNTS,hbciListAccounts,false +46043,9f98a4bc-87dc-4264-b768-de7ea85069df,LIST_TRANSACTIONS,hbciListTransactions,false +46044,9f98a4bc-87dc-4264-b768-de7ea85069df,AUTHORIZATION,,false +46045,9f98a4bc-87dc-4264-b768-de7ea85069df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46046,9f98a4bc-87dc-4264-b768-de7ea85069df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46047,9f98a4bc-87dc-4264-b768-de7ea85069df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46048,db163ee5-37bb-4c51-81ed-00fb4bf00241,LIST_ACCOUNTS,xs2aListAccounts,true -46049,db163ee5-37bb-4c51-81ed-00fb4bf00241,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46049,db163ee5-37bb-4c51-81ed-00fb4bf00241,LIST_TRANSACTIONS,xs2aListTransactions,true 46050,db163ee5-37bb-4c51-81ed-00fb4bf00241,AUTHORIZATION,,true 46051,db163ee5-37bb-4c51-81ed-00fb4bf00241,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46052,db163ee5-37bb-4c51-81ed-00fb4bf00241,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46053,db163ee5-37bb-4c51-81ed-00fb4bf00241,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46054,dfbe9037-b5c5-428d-9cee-21fc976630c9,LIST_ACCOUNTS,hbciListAccounts,false -46055,dfbe9037-b5c5-428d-9cee-21fc976630c9,LIST_TRANSACTIONS,hbciListTransactions,false -46056,dfbe9037-b5c5-428d-9cee-21fc976630c9,AUTHORIZATION,,false -46057,dfbe9037-b5c5-428d-9cee-21fc976630c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46058,dfbe9037-b5c5-428d-9cee-21fc976630c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46059,dfbe9037-b5c5-428d-9cee-21fc976630c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46054,a4e4d316-8c71-46d2-b7d8-8fc513d8cb43,LIST_ACCOUNTS,hbciListAccounts,false +46055,a4e4d316-8c71-46d2-b7d8-8fc513d8cb43,LIST_TRANSACTIONS,hbciListTransactions,false +46056,a4e4d316-8c71-46d2-b7d8-8fc513d8cb43,AUTHORIZATION,,false +46057,a4e4d316-8c71-46d2-b7d8-8fc513d8cb43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46058,a4e4d316-8c71-46d2-b7d8-8fc513d8cb43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46059,a4e4d316-8c71-46d2-b7d8-8fc513d8cb43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46060,d686af42-9250-4356-a7ed-72bc24e03323,LIST_ACCOUNTS,xs2aListAccounts,true -46061,d686af42-9250-4356-a7ed-72bc24e03323,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46061,d686af42-9250-4356-a7ed-72bc24e03323,LIST_TRANSACTIONS,xs2aListTransactions,true 46062,d686af42-9250-4356-a7ed-72bc24e03323,AUTHORIZATION,,true 46063,d686af42-9250-4356-a7ed-72bc24e03323,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46064,d686af42-9250-4356-a7ed-72bc24e03323,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46065,d686af42-9250-4356-a7ed-72bc24e03323,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46066,ad6ccd29-d14c-424f-a300-1a1ab70e4cba,LIST_ACCOUNTS,hbciListAccounts,false -46067,ad6ccd29-d14c-424f-a300-1a1ab70e4cba,LIST_TRANSACTIONS,hbciListTransactions,false -46068,ad6ccd29-d14c-424f-a300-1a1ab70e4cba,AUTHORIZATION,,false -46069,ad6ccd29-d14c-424f-a300-1a1ab70e4cba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46070,ad6ccd29-d14c-424f-a300-1a1ab70e4cba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46071,ad6ccd29-d14c-424f-a300-1a1ab70e4cba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46066,d1902b62-7e2e-4ab4-9625-87b67c4c923b,LIST_ACCOUNTS,hbciListAccounts,false +46067,d1902b62-7e2e-4ab4-9625-87b67c4c923b,LIST_TRANSACTIONS,hbciListTransactions,false +46068,d1902b62-7e2e-4ab4-9625-87b67c4c923b,AUTHORIZATION,,false +46069,d1902b62-7e2e-4ab4-9625-87b67c4c923b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46070,d1902b62-7e2e-4ab4-9625-87b67c4c923b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46071,d1902b62-7e2e-4ab4-9625-87b67c4c923b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46072,87325917-a8cb-495b-87fc-5b47edc2be2c,LIST_ACCOUNTS,xs2aListAccounts,true -46073,87325917-a8cb-495b-87fc-5b47edc2be2c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46073,87325917-a8cb-495b-87fc-5b47edc2be2c,LIST_TRANSACTIONS,xs2aListTransactions,true 46074,87325917-a8cb-495b-87fc-5b47edc2be2c,AUTHORIZATION,,true 46075,87325917-a8cb-495b-87fc-5b47edc2be2c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46076,87325917-a8cb-495b-87fc-5b47edc2be2c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46077,87325917-a8cb-495b-87fc-5b47edc2be2c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46078,59335302-3053-4b37-89a4-76cccc890fe5,LIST_ACCOUNTS,hbciListAccounts,false -46079,59335302-3053-4b37-89a4-76cccc890fe5,LIST_TRANSACTIONS,hbciListTransactions,false -46080,59335302-3053-4b37-89a4-76cccc890fe5,AUTHORIZATION,,false -46081,59335302-3053-4b37-89a4-76cccc890fe5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46082,59335302-3053-4b37-89a4-76cccc890fe5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46083,59335302-3053-4b37-89a4-76cccc890fe5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46078,9a7154d3-103c-4a29-b602-a0ce26db1b1b,LIST_ACCOUNTS,hbciListAccounts,false +46079,9a7154d3-103c-4a29-b602-a0ce26db1b1b,LIST_TRANSACTIONS,hbciListTransactions,false +46080,9a7154d3-103c-4a29-b602-a0ce26db1b1b,AUTHORIZATION,,false +46081,9a7154d3-103c-4a29-b602-a0ce26db1b1b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46082,9a7154d3-103c-4a29-b602-a0ce26db1b1b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46083,9a7154d3-103c-4a29-b602-a0ce26db1b1b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46084,14d65f64-0a80-44d5-9f97-384c97b59bcb,LIST_ACCOUNTS,xs2aListAccounts,true -46085,14d65f64-0a80-44d5-9f97-384c97b59bcb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46085,14d65f64-0a80-44d5-9f97-384c97b59bcb,LIST_TRANSACTIONS,xs2aListTransactions,true 46086,14d65f64-0a80-44d5-9f97-384c97b59bcb,AUTHORIZATION,,true 46087,14d65f64-0a80-44d5-9f97-384c97b59bcb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46088,14d65f64-0a80-44d5-9f97-384c97b59bcb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46089,14d65f64-0a80-44d5-9f97-384c97b59bcb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46090,5e521ba2-6eeb-4d0b-a631-7316ce9af2d0,LIST_ACCOUNTS,hbciListAccounts,false -46091,5e521ba2-6eeb-4d0b-a631-7316ce9af2d0,LIST_TRANSACTIONS,hbciListTransactions,false -46092,5e521ba2-6eeb-4d0b-a631-7316ce9af2d0,AUTHORIZATION,,false -46093,5e521ba2-6eeb-4d0b-a631-7316ce9af2d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46094,5e521ba2-6eeb-4d0b-a631-7316ce9af2d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46095,5e521ba2-6eeb-4d0b-a631-7316ce9af2d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46090,c277141c-a41d-4b04-9581-ff7f3a54ae63,LIST_ACCOUNTS,hbciListAccounts,false +46091,c277141c-a41d-4b04-9581-ff7f3a54ae63,LIST_TRANSACTIONS,hbciListTransactions,false +46092,c277141c-a41d-4b04-9581-ff7f3a54ae63,AUTHORIZATION,,false +46093,c277141c-a41d-4b04-9581-ff7f3a54ae63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46094,c277141c-a41d-4b04-9581-ff7f3a54ae63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46095,c277141c-a41d-4b04-9581-ff7f3a54ae63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46096,a67e3850-2510-4a26-8340-55b5f0bd67cb,LIST_ACCOUNTS,xs2aListAccounts,true -46097,a67e3850-2510-4a26-8340-55b5f0bd67cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46097,a67e3850-2510-4a26-8340-55b5f0bd67cb,LIST_TRANSACTIONS,xs2aListTransactions,true 46098,a67e3850-2510-4a26-8340-55b5f0bd67cb,AUTHORIZATION,,true 46099,a67e3850-2510-4a26-8340-55b5f0bd67cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46100,a67e3850-2510-4a26-8340-55b5f0bd67cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46101,a67e3850-2510-4a26-8340-55b5f0bd67cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46102,e1721a66-d3f9-4e39-be60-ccbfe1ddeeeb,LIST_ACCOUNTS,hbciListAccounts,false -46103,e1721a66-d3f9-4e39-be60-ccbfe1ddeeeb,LIST_TRANSACTIONS,hbciListTransactions,false -46104,e1721a66-d3f9-4e39-be60-ccbfe1ddeeeb,AUTHORIZATION,,false -46105,e1721a66-d3f9-4e39-be60-ccbfe1ddeeeb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46106,e1721a66-d3f9-4e39-be60-ccbfe1ddeeeb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46107,e1721a66-d3f9-4e39-be60-ccbfe1ddeeeb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46102,ba434e7c-f894-456b-b145-ed9daf8be40f,LIST_ACCOUNTS,hbciListAccounts,false +46103,ba434e7c-f894-456b-b145-ed9daf8be40f,LIST_TRANSACTIONS,hbciListTransactions,false +46104,ba434e7c-f894-456b-b145-ed9daf8be40f,AUTHORIZATION,,false +46105,ba434e7c-f894-456b-b145-ed9daf8be40f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46106,ba434e7c-f894-456b-b145-ed9daf8be40f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46107,ba434e7c-f894-456b-b145-ed9daf8be40f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46108,8d990477-f770-4fc7-8bad-6066778478c6,LIST_ACCOUNTS,xs2aListAccounts,true -46109,8d990477-f770-4fc7-8bad-6066778478c6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46109,8d990477-f770-4fc7-8bad-6066778478c6,LIST_TRANSACTIONS,xs2aListTransactions,true 46110,8d990477-f770-4fc7-8bad-6066778478c6,AUTHORIZATION,,true 46111,8d990477-f770-4fc7-8bad-6066778478c6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46112,8d990477-f770-4fc7-8bad-6066778478c6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46113,8d990477-f770-4fc7-8bad-6066778478c6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46114,a6f772d7-2ce9-482d-83d7-c734dc55dd00,LIST_ACCOUNTS,hbciListAccounts,false -46115,a6f772d7-2ce9-482d-83d7-c734dc55dd00,LIST_TRANSACTIONS,hbciListTransactions,false -46116,a6f772d7-2ce9-482d-83d7-c734dc55dd00,AUTHORIZATION,,false -46117,a6f772d7-2ce9-482d-83d7-c734dc55dd00,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46118,a6f772d7-2ce9-482d-83d7-c734dc55dd00,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46119,a6f772d7-2ce9-482d-83d7-c734dc55dd00,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46114,39b008be-6440-48df-8c17-e8c39e452028,LIST_ACCOUNTS,hbciListAccounts,false +46115,39b008be-6440-48df-8c17-e8c39e452028,LIST_TRANSACTIONS,hbciListTransactions,false +46116,39b008be-6440-48df-8c17-e8c39e452028,AUTHORIZATION,,false +46117,39b008be-6440-48df-8c17-e8c39e452028,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46118,39b008be-6440-48df-8c17-e8c39e452028,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46119,39b008be-6440-48df-8c17-e8c39e452028,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46120,e596ddf4-9aee-4ea2-bdca-751446428ed8,LIST_ACCOUNTS,xs2aListAccounts,true -46121,e596ddf4-9aee-4ea2-bdca-751446428ed8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46121,e596ddf4-9aee-4ea2-bdca-751446428ed8,LIST_TRANSACTIONS,xs2aListTransactions,true 46122,e596ddf4-9aee-4ea2-bdca-751446428ed8,AUTHORIZATION,,true 46123,e596ddf4-9aee-4ea2-bdca-751446428ed8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46124,e596ddf4-9aee-4ea2-bdca-751446428ed8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46125,e596ddf4-9aee-4ea2-bdca-751446428ed8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46126,2cb952fe-05ce-48c3-b304-0b034ffccf9c,LIST_ACCOUNTS,hbciListAccounts,false -46127,2cb952fe-05ce-48c3-b304-0b034ffccf9c,LIST_TRANSACTIONS,hbciListTransactions,false -46128,2cb952fe-05ce-48c3-b304-0b034ffccf9c,AUTHORIZATION,,false -46129,2cb952fe-05ce-48c3-b304-0b034ffccf9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46130,2cb952fe-05ce-48c3-b304-0b034ffccf9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46131,2cb952fe-05ce-48c3-b304-0b034ffccf9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46126,91149399-d1f1-48d5-a969-88fdb3839e9c,LIST_ACCOUNTS,hbciListAccounts,false +46127,91149399-d1f1-48d5-a969-88fdb3839e9c,LIST_TRANSACTIONS,hbciListTransactions,false +46128,91149399-d1f1-48d5-a969-88fdb3839e9c,AUTHORIZATION,,false +46129,91149399-d1f1-48d5-a969-88fdb3839e9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46130,91149399-d1f1-48d5-a969-88fdb3839e9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46131,91149399-d1f1-48d5-a969-88fdb3839e9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46132,5e03146d-f179-4a24-a820-05c93eb91e3c,LIST_ACCOUNTS,xs2aListAccounts,true -46133,5e03146d-f179-4a24-a820-05c93eb91e3c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46133,5e03146d-f179-4a24-a820-05c93eb91e3c,LIST_TRANSACTIONS,xs2aListTransactions,true 46134,5e03146d-f179-4a24-a820-05c93eb91e3c,AUTHORIZATION,,true 46135,5e03146d-f179-4a24-a820-05c93eb91e3c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46136,5e03146d-f179-4a24-a820-05c93eb91e3c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46137,5e03146d-f179-4a24-a820-05c93eb91e3c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46138,16ec55fe-83db-4dfd-b3f0-713281d84d21,LIST_ACCOUNTS,hbciListAccounts,false -46139,16ec55fe-83db-4dfd-b3f0-713281d84d21,LIST_TRANSACTIONS,hbciListTransactions,false -46140,16ec55fe-83db-4dfd-b3f0-713281d84d21,AUTHORIZATION,,false -46141,16ec55fe-83db-4dfd-b3f0-713281d84d21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46142,16ec55fe-83db-4dfd-b3f0-713281d84d21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46143,16ec55fe-83db-4dfd-b3f0-713281d84d21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46138,97c7bd40-9c59-4c09-b47f-840e5024c67a,LIST_ACCOUNTS,hbciListAccounts,false +46139,97c7bd40-9c59-4c09-b47f-840e5024c67a,LIST_TRANSACTIONS,hbciListTransactions,false +46140,97c7bd40-9c59-4c09-b47f-840e5024c67a,AUTHORIZATION,,false +46141,97c7bd40-9c59-4c09-b47f-840e5024c67a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46142,97c7bd40-9c59-4c09-b47f-840e5024c67a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46143,97c7bd40-9c59-4c09-b47f-840e5024c67a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46144,f0c7609c-f0a5-4383-9264-2ea922e0f59a,LIST_ACCOUNTS,xs2aListAccounts,true -46145,f0c7609c-f0a5-4383-9264-2ea922e0f59a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46145,f0c7609c-f0a5-4383-9264-2ea922e0f59a,LIST_TRANSACTIONS,xs2aListTransactions,true 46146,f0c7609c-f0a5-4383-9264-2ea922e0f59a,AUTHORIZATION,,true 46147,f0c7609c-f0a5-4383-9264-2ea922e0f59a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46148,f0c7609c-f0a5-4383-9264-2ea922e0f59a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46149,f0c7609c-f0a5-4383-9264-2ea922e0f59a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46150,b850e27e-4046-40b7-9241-38ea6427bd85,LIST_ACCOUNTS,hbciListAccounts,false -46151,b850e27e-4046-40b7-9241-38ea6427bd85,LIST_TRANSACTIONS,hbciListTransactions,false -46152,b850e27e-4046-40b7-9241-38ea6427bd85,AUTHORIZATION,,false -46153,b850e27e-4046-40b7-9241-38ea6427bd85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46154,b850e27e-4046-40b7-9241-38ea6427bd85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46155,b850e27e-4046-40b7-9241-38ea6427bd85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46150,6ebe6517-0439-4bc0-a769-3f6ec179dae0,LIST_ACCOUNTS,hbciListAccounts,false +46151,6ebe6517-0439-4bc0-a769-3f6ec179dae0,LIST_TRANSACTIONS,hbciListTransactions,false +46152,6ebe6517-0439-4bc0-a769-3f6ec179dae0,AUTHORIZATION,,false +46153,6ebe6517-0439-4bc0-a769-3f6ec179dae0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46154,6ebe6517-0439-4bc0-a769-3f6ec179dae0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46155,6ebe6517-0439-4bc0-a769-3f6ec179dae0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46156,ceac5b6c-2d42-4fa9-b7a2-3d1fc4e875bd,LIST_ACCOUNTS,xs2aListAccounts,true -46157,ceac5b6c-2d42-4fa9-b7a2-3d1fc4e875bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46157,ceac5b6c-2d42-4fa9-b7a2-3d1fc4e875bd,LIST_TRANSACTIONS,xs2aListTransactions,true 46158,ceac5b6c-2d42-4fa9-b7a2-3d1fc4e875bd,AUTHORIZATION,,true 46159,ceac5b6c-2d42-4fa9-b7a2-3d1fc4e875bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46160,ceac5b6c-2d42-4fa9-b7a2-3d1fc4e875bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46161,ceac5b6c-2d42-4fa9-b7a2-3d1fc4e875bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46162,f7f40b73-3a2b-47ec-9317-2977d8119264,LIST_ACCOUNTS,hbciListAccounts,false -46163,f7f40b73-3a2b-47ec-9317-2977d8119264,LIST_TRANSACTIONS,hbciListTransactions,false -46164,f7f40b73-3a2b-47ec-9317-2977d8119264,AUTHORIZATION,,false -46165,f7f40b73-3a2b-47ec-9317-2977d8119264,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46166,f7f40b73-3a2b-47ec-9317-2977d8119264,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46167,f7f40b73-3a2b-47ec-9317-2977d8119264,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46162,8bb3cf14-80ac-452b-85e5-5ca12d83bb3d,LIST_ACCOUNTS,hbciListAccounts,false +46163,8bb3cf14-80ac-452b-85e5-5ca12d83bb3d,LIST_TRANSACTIONS,hbciListTransactions,false +46164,8bb3cf14-80ac-452b-85e5-5ca12d83bb3d,AUTHORIZATION,,false +46165,8bb3cf14-80ac-452b-85e5-5ca12d83bb3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46166,8bb3cf14-80ac-452b-85e5-5ca12d83bb3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46167,8bb3cf14-80ac-452b-85e5-5ca12d83bb3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46168,9cccf709-a61c-4cb9-b2b8-6750737deb2a,LIST_ACCOUNTS,xs2aListAccounts,true -46169,9cccf709-a61c-4cb9-b2b8-6750737deb2a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46169,9cccf709-a61c-4cb9-b2b8-6750737deb2a,LIST_TRANSACTIONS,xs2aListTransactions,true 46170,9cccf709-a61c-4cb9-b2b8-6750737deb2a,AUTHORIZATION,,true 46171,9cccf709-a61c-4cb9-b2b8-6750737deb2a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46172,9cccf709-a61c-4cb9-b2b8-6750737deb2a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46173,9cccf709-a61c-4cb9-b2b8-6750737deb2a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46174,f0617887-fecf-44b9-a4ba-ff97f010acf7,LIST_ACCOUNTS,hbciListAccounts,false -46175,f0617887-fecf-44b9-a4ba-ff97f010acf7,LIST_TRANSACTIONS,hbciListTransactions,false -46176,f0617887-fecf-44b9-a4ba-ff97f010acf7,AUTHORIZATION,,false -46177,f0617887-fecf-44b9-a4ba-ff97f010acf7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46178,f0617887-fecf-44b9-a4ba-ff97f010acf7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46179,f0617887-fecf-44b9-a4ba-ff97f010acf7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46174,82edf00c-a2c3-46f5-bb17-7bddf78bfbf3,LIST_ACCOUNTS,hbciListAccounts,false +46175,82edf00c-a2c3-46f5-bb17-7bddf78bfbf3,LIST_TRANSACTIONS,hbciListTransactions,false +46176,82edf00c-a2c3-46f5-bb17-7bddf78bfbf3,AUTHORIZATION,,false +46177,82edf00c-a2c3-46f5-bb17-7bddf78bfbf3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46178,82edf00c-a2c3-46f5-bb17-7bddf78bfbf3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46179,82edf00c-a2c3-46f5-bb17-7bddf78bfbf3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46180,9e72f098-8069-4717-bc4c-a7f4ac86d844,LIST_ACCOUNTS,xs2aListAccounts,true -46181,9e72f098-8069-4717-bc4c-a7f4ac86d844,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46181,9e72f098-8069-4717-bc4c-a7f4ac86d844,LIST_TRANSACTIONS,xs2aListTransactions,true 46182,9e72f098-8069-4717-bc4c-a7f4ac86d844,AUTHORIZATION,,true 46183,9e72f098-8069-4717-bc4c-a7f4ac86d844,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46184,9e72f098-8069-4717-bc4c-a7f4ac86d844,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46185,9e72f098-8069-4717-bc4c-a7f4ac86d844,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46186,b6a3dbc9-64fc-44f1-9bc6-9e116cd7d6a0,LIST_ACCOUNTS,hbciListAccounts,false -46187,b6a3dbc9-64fc-44f1-9bc6-9e116cd7d6a0,LIST_TRANSACTIONS,hbciListTransactions,false -46188,b6a3dbc9-64fc-44f1-9bc6-9e116cd7d6a0,AUTHORIZATION,,false -46189,b6a3dbc9-64fc-44f1-9bc6-9e116cd7d6a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46190,b6a3dbc9-64fc-44f1-9bc6-9e116cd7d6a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46191,b6a3dbc9-64fc-44f1-9bc6-9e116cd7d6a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46186,a862fddb-4cba-417b-8c69-a5f6aab2eaa2,LIST_ACCOUNTS,hbciListAccounts,false +46187,a862fddb-4cba-417b-8c69-a5f6aab2eaa2,LIST_TRANSACTIONS,hbciListTransactions,false +46188,a862fddb-4cba-417b-8c69-a5f6aab2eaa2,AUTHORIZATION,,false +46189,a862fddb-4cba-417b-8c69-a5f6aab2eaa2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46190,a862fddb-4cba-417b-8c69-a5f6aab2eaa2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46191,a862fddb-4cba-417b-8c69-a5f6aab2eaa2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46192,569429b7-4cb3-4227-af23-f37079cf4616,LIST_ACCOUNTS,xs2aListAccounts,true -46193,569429b7-4cb3-4227-af23-f37079cf4616,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46193,569429b7-4cb3-4227-af23-f37079cf4616,LIST_TRANSACTIONS,xs2aListTransactions,true 46194,569429b7-4cb3-4227-af23-f37079cf4616,AUTHORIZATION,,true 46195,569429b7-4cb3-4227-af23-f37079cf4616,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46196,569429b7-4cb3-4227-af23-f37079cf4616,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46197,569429b7-4cb3-4227-af23-f37079cf4616,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46198,d4e331a0-baf4-40b3-8bd8-62be289d908b,LIST_ACCOUNTS,hbciListAccounts,false -46199,d4e331a0-baf4-40b3-8bd8-62be289d908b,LIST_TRANSACTIONS,hbciListTransactions,false -46200,d4e331a0-baf4-40b3-8bd8-62be289d908b,AUTHORIZATION,,false -46201,d4e331a0-baf4-40b3-8bd8-62be289d908b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46202,d4e331a0-baf4-40b3-8bd8-62be289d908b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46203,d4e331a0-baf4-40b3-8bd8-62be289d908b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46198,48129c2c-f673-46dc-95a0-3396286cc6e0,LIST_ACCOUNTS,hbciListAccounts,false +46199,48129c2c-f673-46dc-95a0-3396286cc6e0,LIST_TRANSACTIONS,hbciListTransactions,false +46200,48129c2c-f673-46dc-95a0-3396286cc6e0,AUTHORIZATION,,false +46201,48129c2c-f673-46dc-95a0-3396286cc6e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46202,48129c2c-f673-46dc-95a0-3396286cc6e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46203,48129c2c-f673-46dc-95a0-3396286cc6e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46204,982bc32b-48fe-411b-9f41-4dafc9b6ee39,LIST_ACCOUNTS,xs2aListAccounts,true -46205,982bc32b-48fe-411b-9f41-4dafc9b6ee39,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46205,982bc32b-48fe-411b-9f41-4dafc9b6ee39,LIST_TRANSACTIONS,xs2aListTransactions,true 46206,982bc32b-48fe-411b-9f41-4dafc9b6ee39,AUTHORIZATION,,true 46207,982bc32b-48fe-411b-9f41-4dafc9b6ee39,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46208,982bc32b-48fe-411b-9f41-4dafc9b6ee39,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46209,982bc32b-48fe-411b-9f41-4dafc9b6ee39,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46210,cb59069b-7090-40de-b435-533f39767225,LIST_ACCOUNTS,hbciListAccounts,false -46211,cb59069b-7090-40de-b435-533f39767225,LIST_TRANSACTIONS,hbciListTransactions,false -46212,cb59069b-7090-40de-b435-533f39767225,AUTHORIZATION,,false -46213,cb59069b-7090-40de-b435-533f39767225,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46214,cb59069b-7090-40de-b435-533f39767225,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46215,cb59069b-7090-40de-b435-533f39767225,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46210,cbc30ce6-9ffc-445d-ba93-40cdc7802ddd,LIST_ACCOUNTS,hbciListAccounts,false +46211,cbc30ce6-9ffc-445d-ba93-40cdc7802ddd,LIST_TRANSACTIONS,hbciListTransactions,false +46212,cbc30ce6-9ffc-445d-ba93-40cdc7802ddd,AUTHORIZATION,,false +46213,cbc30ce6-9ffc-445d-ba93-40cdc7802ddd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46214,cbc30ce6-9ffc-445d-ba93-40cdc7802ddd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46215,cbc30ce6-9ffc-445d-ba93-40cdc7802ddd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46216,a1cec3b6-a38b-4876-8211-000970b5f54a,LIST_ACCOUNTS,xs2aListAccounts,true -46217,a1cec3b6-a38b-4876-8211-000970b5f54a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46217,a1cec3b6-a38b-4876-8211-000970b5f54a,LIST_TRANSACTIONS,xs2aListTransactions,true 46218,a1cec3b6-a38b-4876-8211-000970b5f54a,AUTHORIZATION,,true 46219,a1cec3b6-a38b-4876-8211-000970b5f54a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46220,a1cec3b6-a38b-4876-8211-000970b5f54a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46221,a1cec3b6-a38b-4876-8211-000970b5f54a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46222,189c5d29-480a-4423-9100-54033212c71d,LIST_ACCOUNTS,hbciListAccounts,false -46223,189c5d29-480a-4423-9100-54033212c71d,LIST_TRANSACTIONS,hbciListTransactions,false -46224,189c5d29-480a-4423-9100-54033212c71d,AUTHORIZATION,,false -46225,189c5d29-480a-4423-9100-54033212c71d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46226,189c5d29-480a-4423-9100-54033212c71d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46227,189c5d29-480a-4423-9100-54033212c71d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46222,167310ec-da34-4e0a-9542-72af145592d2,LIST_ACCOUNTS,hbciListAccounts,false +46223,167310ec-da34-4e0a-9542-72af145592d2,LIST_TRANSACTIONS,hbciListTransactions,false +46224,167310ec-da34-4e0a-9542-72af145592d2,AUTHORIZATION,,false +46225,167310ec-da34-4e0a-9542-72af145592d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46226,167310ec-da34-4e0a-9542-72af145592d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46227,167310ec-da34-4e0a-9542-72af145592d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46228,80ab04c6-1fd3-4418-b40c-f0d00a3df6b8,LIST_ACCOUNTS,xs2aListAccounts,true -46229,80ab04c6-1fd3-4418-b40c-f0d00a3df6b8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46229,80ab04c6-1fd3-4418-b40c-f0d00a3df6b8,LIST_TRANSACTIONS,xs2aListTransactions,true 46230,80ab04c6-1fd3-4418-b40c-f0d00a3df6b8,AUTHORIZATION,,true 46231,80ab04c6-1fd3-4418-b40c-f0d00a3df6b8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46232,80ab04c6-1fd3-4418-b40c-f0d00a3df6b8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46233,80ab04c6-1fd3-4418-b40c-f0d00a3df6b8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46234,e7ef0c17-c041-4c29-92df-249ab7044f22,LIST_ACCOUNTS,hbciListAccounts,false -46235,e7ef0c17-c041-4c29-92df-249ab7044f22,LIST_TRANSACTIONS,hbciListTransactions,false -46236,e7ef0c17-c041-4c29-92df-249ab7044f22,AUTHORIZATION,,false -46237,e7ef0c17-c041-4c29-92df-249ab7044f22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46238,e7ef0c17-c041-4c29-92df-249ab7044f22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46239,e7ef0c17-c041-4c29-92df-249ab7044f22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46234,243e549e-87c3-4df2-9d89-7421b4e5602f,LIST_ACCOUNTS,hbciListAccounts,false +46235,243e549e-87c3-4df2-9d89-7421b4e5602f,LIST_TRANSACTIONS,hbciListTransactions,false +46236,243e549e-87c3-4df2-9d89-7421b4e5602f,AUTHORIZATION,,false +46237,243e549e-87c3-4df2-9d89-7421b4e5602f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46238,243e549e-87c3-4df2-9d89-7421b4e5602f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46239,243e549e-87c3-4df2-9d89-7421b4e5602f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46240,c33bcbc4-2e75-416d-be39-39377929d817,LIST_ACCOUNTS,xs2aListAccounts,true -46241,c33bcbc4-2e75-416d-be39-39377929d817,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46241,c33bcbc4-2e75-416d-be39-39377929d817,LIST_TRANSACTIONS,xs2aListTransactions,true 46242,c33bcbc4-2e75-416d-be39-39377929d817,AUTHORIZATION,,true 46243,c33bcbc4-2e75-416d-be39-39377929d817,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46244,c33bcbc4-2e75-416d-be39-39377929d817,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46245,c33bcbc4-2e75-416d-be39-39377929d817,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46246,4aa243cd-388b-4ce6-834f-cda11d1d40db,LIST_ACCOUNTS,hbciListAccounts,false -46247,4aa243cd-388b-4ce6-834f-cda11d1d40db,LIST_TRANSACTIONS,hbciListTransactions,false -46248,4aa243cd-388b-4ce6-834f-cda11d1d40db,AUTHORIZATION,,false -46249,4aa243cd-388b-4ce6-834f-cda11d1d40db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46250,4aa243cd-388b-4ce6-834f-cda11d1d40db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46251,4aa243cd-388b-4ce6-834f-cda11d1d40db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46246,9639201f-5b9c-47db-a20d-23d57227c1d5,LIST_ACCOUNTS,hbciListAccounts,false +46247,9639201f-5b9c-47db-a20d-23d57227c1d5,LIST_TRANSACTIONS,hbciListTransactions,false +46248,9639201f-5b9c-47db-a20d-23d57227c1d5,AUTHORIZATION,,false +46249,9639201f-5b9c-47db-a20d-23d57227c1d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46250,9639201f-5b9c-47db-a20d-23d57227c1d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46251,9639201f-5b9c-47db-a20d-23d57227c1d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46252,63a96d1f-a5d8-40ea-880a-c08606ef7f33,LIST_ACCOUNTS,xs2aListAccounts,true -46253,63a96d1f-a5d8-40ea-880a-c08606ef7f33,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46253,63a96d1f-a5d8-40ea-880a-c08606ef7f33,LIST_TRANSACTIONS,xs2aListTransactions,true 46254,63a96d1f-a5d8-40ea-880a-c08606ef7f33,AUTHORIZATION,,true 46255,63a96d1f-a5d8-40ea-880a-c08606ef7f33,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46256,63a96d1f-a5d8-40ea-880a-c08606ef7f33,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46257,63a96d1f-a5d8-40ea-880a-c08606ef7f33,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46258,da6e263f-04c8-4f2f-b2f4-c71e6d6adaea,LIST_ACCOUNTS,hbciListAccounts,false -46259,da6e263f-04c8-4f2f-b2f4-c71e6d6adaea,LIST_TRANSACTIONS,hbciListTransactions,false -46260,da6e263f-04c8-4f2f-b2f4-c71e6d6adaea,AUTHORIZATION,,false -46261,da6e263f-04c8-4f2f-b2f4-c71e6d6adaea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46262,da6e263f-04c8-4f2f-b2f4-c71e6d6adaea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46263,da6e263f-04c8-4f2f-b2f4-c71e6d6adaea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46258,3d975950-2530-455e-9a85-705619c9a0ee,LIST_ACCOUNTS,hbciListAccounts,false +46259,3d975950-2530-455e-9a85-705619c9a0ee,LIST_TRANSACTIONS,hbciListTransactions,false +46260,3d975950-2530-455e-9a85-705619c9a0ee,AUTHORIZATION,,false +46261,3d975950-2530-455e-9a85-705619c9a0ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46262,3d975950-2530-455e-9a85-705619c9a0ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46263,3d975950-2530-455e-9a85-705619c9a0ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46264,24a38f81-5708-4fba-8449-0f654f181afd,LIST_ACCOUNTS,xs2aListAccounts,true -46265,24a38f81-5708-4fba-8449-0f654f181afd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46265,24a38f81-5708-4fba-8449-0f654f181afd,LIST_TRANSACTIONS,xs2aListTransactions,true 46266,24a38f81-5708-4fba-8449-0f654f181afd,AUTHORIZATION,,true 46267,24a38f81-5708-4fba-8449-0f654f181afd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46268,24a38f81-5708-4fba-8449-0f654f181afd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46269,24a38f81-5708-4fba-8449-0f654f181afd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46270,6a9314c7-ba1f-45ec-b223-a01f5b6e44e0,LIST_ACCOUNTS,hbciListAccounts,false -46271,6a9314c7-ba1f-45ec-b223-a01f5b6e44e0,LIST_TRANSACTIONS,hbciListTransactions,false -46272,6a9314c7-ba1f-45ec-b223-a01f5b6e44e0,AUTHORIZATION,,false -46273,6a9314c7-ba1f-45ec-b223-a01f5b6e44e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46274,6a9314c7-ba1f-45ec-b223-a01f5b6e44e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46275,6a9314c7-ba1f-45ec-b223-a01f5b6e44e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46270,8f342d1e-a1ce-45d8-bd2c-781a277cd6d4,LIST_ACCOUNTS,hbciListAccounts,false +46271,8f342d1e-a1ce-45d8-bd2c-781a277cd6d4,LIST_TRANSACTIONS,hbciListTransactions,false +46272,8f342d1e-a1ce-45d8-bd2c-781a277cd6d4,AUTHORIZATION,,false +46273,8f342d1e-a1ce-45d8-bd2c-781a277cd6d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46274,8f342d1e-a1ce-45d8-bd2c-781a277cd6d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46275,8f342d1e-a1ce-45d8-bd2c-781a277cd6d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46276,b0b383f2-8319-41cb-88b0-7eb4cb338d1c,LIST_ACCOUNTS,xs2aListAccounts,true -46277,b0b383f2-8319-41cb-88b0-7eb4cb338d1c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46277,b0b383f2-8319-41cb-88b0-7eb4cb338d1c,LIST_TRANSACTIONS,xs2aListTransactions,true 46278,b0b383f2-8319-41cb-88b0-7eb4cb338d1c,AUTHORIZATION,,true 46279,b0b383f2-8319-41cb-88b0-7eb4cb338d1c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46280,b0b383f2-8319-41cb-88b0-7eb4cb338d1c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46281,b0b383f2-8319-41cb-88b0-7eb4cb338d1c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46282,67fd21b9-c6ea-4663-9c03-a576013bc4ef,LIST_ACCOUNTS,hbciListAccounts,false -46283,67fd21b9-c6ea-4663-9c03-a576013bc4ef,LIST_TRANSACTIONS,hbciListTransactions,false -46284,67fd21b9-c6ea-4663-9c03-a576013bc4ef,AUTHORIZATION,,false -46285,67fd21b9-c6ea-4663-9c03-a576013bc4ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46286,67fd21b9-c6ea-4663-9c03-a576013bc4ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46287,67fd21b9-c6ea-4663-9c03-a576013bc4ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46282,7ccf3cf3-985a-4298-915b-35a44057e49d,LIST_ACCOUNTS,hbciListAccounts,false +46283,7ccf3cf3-985a-4298-915b-35a44057e49d,LIST_TRANSACTIONS,hbciListTransactions,false +46284,7ccf3cf3-985a-4298-915b-35a44057e49d,AUTHORIZATION,,false +46285,7ccf3cf3-985a-4298-915b-35a44057e49d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46286,7ccf3cf3-985a-4298-915b-35a44057e49d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46287,7ccf3cf3-985a-4298-915b-35a44057e49d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46288,850f9e53-381b-4874-b6f9-d51a6fe4729c,LIST_ACCOUNTS,xs2aListAccounts,true -46289,850f9e53-381b-4874-b6f9-d51a6fe4729c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46289,850f9e53-381b-4874-b6f9-d51a6fe4729c,LIST_TRANSACTIONS,xs2aListTransactions,true 46290,850f9e53-381b-4874-b6f9-d51a6fe4729c,AUTHORIZATION,,true 46291,850f9e53-381b-4874-b6f9-d51a6fe4729c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46292,850f9e53-381b-4874-b6f9-d51a6fe4729c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46293,850f9e53-381b-4874-b6f9-d51a6fe4729c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46294,a5d72e81-e6fc-47e1-a23c-f2f860035047,LIST_ACCOUNTS,hbciListAccounts,false -46295,a5d72e81-e6fc-47e1-a23c-f2f860035047,LIST_TRANSACTIONS,hbciListTransactions,false -46296,a5d72e81-e6fc-47e1-a23c-f2f860035047,AUTHORIZATION,,false -46297,a5d72e81-e6fc-47e1-a23c-f2f860035047,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46298,a5d72e81-e6fc-47e1-a23c-f2f860035047,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46299,a5d72e81-e6fc-47e1-a23c-f2f860035047,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46294,425787e7-2d75-499c-abe8-6c581b436fed,LIST_ACCOUNTS,hbciListAccounts,false +46295,425787e7-2d75-499c-abe8-6c581b436fed,LIST_TRANSACTIONS,hbciListTransactions,false +46296,425787e7-2d75-499c-abe8-6c581b436fed,AUTHORIZATION,,false +46297,425787e7-2d75-499c-abe8-6c581b436fed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46298,425787e7-2d75-499c-abe8-6c581b436fed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46299,425787e7-2d75-499c-abe8-6c581b436fed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46300,141ecdc5-a43a-419c-b983-2133e4d25f2e,LIST_ACCOUNTS,xs2aListAccounts,true -46301,141ecdc5-a43a-419c-b983-2133e4d25f2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46301,141ecdc5-a43a-419c-b983-2133e4d25f2e,LIST_TRANSACTIONS,xs2aListTransactions,true 46302,141ecdc5-a43a-419c-b983-2133e4d25f2e,AUTHORIZATION,,true 46303,141ecdc5-a43a-419c-b983-2133e4d25f2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46304,141ecdc5-a43a-419c-b983-2133e4d25f2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46305,141ecdc5-a43a-419c-b983-2133e4d25f2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46306,853bb8b3-4e7b-4bec-8836-c1b92cc226e8,LIST_ACCOUNTS,hbciListAccounts,false -46307,853bb8b3-4e7b-4bec-8836-c1b92cc226e8,LIST_TRANSACTIONS,hbciListTransactions,false -46308,853bb8b3-4e7b-4bec-8836-c1b92cc226e8,AUTHORIZATION,,false -46309,853bb8b3-4e7b-4bec-8836-c1b92cc226e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46310,853bb8b3-4e7b-4bec-8836-c1b92cc226e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46311,853bb8b3-4e7b-4bec-8836-c1b92cc226e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46306,d253f228-2829-41fb-9111-703a8323bbc0,LIST_ACCOUNTS,hbciListAccounts,false +46307,d253f228-2829-41fb-9111-703a8323bbc0,LIST_TRANSACTIONS,hbciListTransactions,false +46308,d253f228-2829-41fb-9111-703a8323bbc0,AUTHORIZATION,,false +46309,d253f228-2829-41fb-9111-703a8323bbc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46310,d253f228-2829-41fb-9111-703a8323bbc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46311,d253f228-2829-41fb-9111-703a8323bbc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46312,4137d5d2-1c70-426f-96d7-c7f0d8e8aa08,LIST_ACCOUNTS,xs2aListAccounts,true -46313,4137d5d2-1c70-426f-96d7-c7f0d8e8aa08,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46313,4137d5d2-1c70-426f-96d7-c7f0d8e8aa08,LIST_TRANSACTIONS,xs2aListTransactions,true 46314,4137d5d2-1c70-426f-96d7-c7f0d8e8aa08,AUTHORIZATION,,true 46315,4137d5d2-1c70-426f-96d7-c7f0d8e8aa08,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46316,4137d5d2-1c70-426f-96d7-c7f0d8e8aa08,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46317,4137d5d2-1c70-426f-96d7-c7f0d8e8aa08,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46318,184b81f0-d0e1-4e57-964a-1ce953e84212,LIST_ACCOUNTS,hbciListAccounts,false -46319,184b81f0-d0e1-4e57-964a-1ce953e84212,LIST_TRANSACTIONS,hbciListTransactions,false -46320,184b81f0-d0e1-4e57-964a-1ce953e84212,AUTHORIZATION,,false -46321,184b81f0-d0e1-4e57-964a-1ce953e84212,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46322,184b81f0-d0e1-4e57-964a-1ce953e84212,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46323,184b81f0-d0e1-4e57-964a-1ce953e84212,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46318,8002b102-dac4-47f4-9271-f4c264cf01cd,LIST_ACCOUNTS,hbciListAccounts,false +46319,8002b102-dac4-47f4-9271-f4c264cf01cd,LIST_TRANSACTIONS,hbciListTransactions,false +46320,8002b102-dac4-47f4-9271-f4c264cf01cd,AUTHORIZATION,,false +46321,8002b102-dac4-47f4-9271-f4c264cf01cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46322,8002b102-dac4-47f4-9271-f4c264cf01cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46323,8002b102-dac4-47f4-9271-f4c264cf01cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46324,e75f9dd9-b076-4076-9ff1-47a9ab127051,LIST_ACCOUNTS,xs2aListAccounts,true -46325,e75f9dd9-b076-4076-9ff1-47a9ab127051,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46325,e75f9dd9-b076-4076-9ff1-47a9ab127051,LIST_TRANSACTIONS,xs2aListTransactions,true 46326,e75f9dd9-b076-4076-9ff1-47a9ab127051,AUTHORIZATION,,true 46327,e75f9dd9-b076-4076-9ff1-47a9ab127051,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46328,e75f9dd9-b076-4076-9ff1-47a9ab127051,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46329,e75f9dd9-b076-4076-9ff1-47a9ab127051,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46330,ae6e9a8f-7a31-485d-9d20-76975ad96c7b,LIST_ACCOUNTS,hbciListAccounts,false -46331,ae6e9a8f-7a31-485d-9d20-76975ad96c7b,LIST_TRANSACTIONS,hbciListTransactions,false -46332,ae6e9a8f-7a31-485d-9d20-76975ad96c7b,AUTHORIZATION,,false -46333,ae6e9a8f-7a31-485d-9d20-76975ad96c7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46334,ae6e9a8f-7a31-485d-9d20-76975ad96c7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46335,ae6e9a8f-7a31-485d-9d20-76975ad96c7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46330,c303c9e8-a0a0-421c-9b74-ffed82ba3e14,LIST_ACCOUNTS,hbciListAccounts,false +46331,c303c9e8-a0a0-421c-9b74-ffed82ba3e14,LIST_TRANSACTIONS,hbciListTransactions,false +46332,c303c9e8-a0a0-421c-9b74-ffed82ba3e14,AUTHORIZATION,,false +46333,c303c9e8-a0a0-421c-9b74-ffed82ba3e14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46334,c303c9e8-a0a0-421c-9b74-ffed82ba3e14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46335,c303c9e8-a0a0-421c-9b74-ffed82ba3e14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46336,d843e86a-57a1-49da-a095-69f54ff02db2,LIST_ACCOUNTS,xs2aListAccounts,true -46337,d843e86a-57a1-49da-a095-69f54ff02db2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46337,d843e86a-57a1-49da-a095-69f54ff02db2,LIST_TRANSACTIONS,xs2aListTransactions,true 46338,d843e86a-57a1-49da-a095-69f54ff02db2,AUTHORIZATION,,true 46339,d843e86a-57a1-49da-a095-69f54ff02db2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46340,d843e86a-57a1-49da-a095-69f54ff02db2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46341,d843e86a-57a1-49da-a095-69f54ff02db2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46342,c161e4d5-6dca-4abb-a9ba-03626e7a5a7f,LIST_ACCOUNTS,hbciListAccounts,false -46343,c161e4d5-6dca-4abb-a9ba-03626e7a5a7f,LIST_TRANSACTIONS,hbciListTransactions,false -46344,c161e4d5-6dca-4abb-a9ba-03626e7a5a7f,AUTHORIZATION,,false -46345,c161e4d5-6dca-4abb-a9ba-03626e7a5a7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46346,c161e4d5-6dca-4abb-a9ba-03626e7a5a7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46347,c161e4d5-6dca-4abb-a9ba-03626e7a5a7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46342,34b9b4bd-7a10-45dd-b91d-c9bdf8ae8b63,LIST_ACCOUNTS,hbciListAccounts,false +46343,34b9b4bd-7a10-45dd-b91d-c9bdf8ae8b63,LIST_TRANSACTIONS,hbciListTransactions,false +46344,34b9b4bd-7a10-45dd-b91d-c9bdf8ae8b63,AUTHORIZATION,,false +46345,34b9b4bd-7a10-45dd-b91d-c9bdf8ae8b63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46346,34b9b4bd-7a10-45dd-b91d-c9bdf8ae8b63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46347,34b9b4bd-7a10-45dd-b91d-c9bdf8ae8b63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46348,4733e21f-45b4-4ba1-b1ae-230d6d9fb632,LIST_ACCOUNTS,xs2aListAccounts,true -46349,4733e21f-45b4-4ba1-b1ae-230d6d9fb632,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46349,4733e21f-45b4-4ba1-b1ae-230d6d9fb632,LIST_TRANSACTIONS,xs2aListTransactions,true 46350,4733e21f-45b4-4ba1-b1ae-230d6d9fb632,AUTHORIZATION,,true 46351,4733e21f-45b4-4ba1-b1ae-230d6d9fb632,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46352,4733e21f-45b4-4ba1-b1ae-230d6d9fb632,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46353,4733e21f-45b4-4ba1-b1ae-230d6d9fb632,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46354,88f40178-eb32-4abd-a513-6a5d2689f973,LIST_ACCOUNTS,hbciListAccounts,false -46355,88f40178-eb32-4abd-a513-6a5d2689f973,LIST_TRANSACTIONS,hbciListTransactions,false -46356,88f40178-eb32-4abd-a513-6a5d2689f973,AUTHORIZATION,,false -46357,88f40178-eb32-4abd-a513-6a5d2689f973,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46358,88f40178-eb32-4abd-a513-6a5d2689f973,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46359,88f40178-eb32-4abd-a513-6a5d2689f973,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46354,85a28931-9482-45a9-95c5-98e477178f43,LIST_ACCOUNTS,hbciListAccounts,false +46355,85a28931-9482-45a9-95c5-98e477178f43,LIST_TRANSACTIONS,hbciListTransactions,false +46356,85a28931-9482-45a9-95c5-98e477178f43,AUTHORIZATION,,false +46357,85a28931-9482-45a9-95c5-98e477178f43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46358,85a28931-9482-45a9-95c5-98e477178f43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46359,85a28931-9482-45a9-95c5-98e477178f43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46360,8b9a3562-8d06-4e61-ab85-bc1aa5c52c56,LIST_ACCOUNTS,xs2aListAccounts,true -46361,8b9a3562-8d06-4e61-ab85-bc1aa5c52c56,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46361,8b9a3562-8d06-4e61-ab85-bc1aa5c52c56,LIST_TRANSACTIONS,xs2aListTransactions,true 46362,8b9a3562-8d06-4e61-ab85-bc1aa5c52c56,AUTHORIZATION,,true 46363,8b9a3562-8d06-4e61-ab85-bc1aa5c52c56,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46364,8b9a3562-8d06-4e61-ab85-bc1aa5c52c56,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46365,8b9a3562-8d06-4e61-ab85-bc1aa5c52c56,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46366,2d83e8bb-75a2-431d-97fb-baea6867b34f,LIST_ACCOUNTS,hbciListAccounts,false -46367,2d83e8bb-75a2-431d-97fb-baea6867b34f,LIST_TRANSACTIONS,hbciListTransactions,false -46368,2d83e8bb-75a2-431d-97fb-baea6867b34f,AUTHORIZATION,,false -46369,2d83e8bb-75a2-431d-97fb-baea6867b34f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46370,2d83e8bb-75a2-431d-97fb-baea6867b34f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46371,2d83e8bb-75a2-431d-97fb-baea6867b34f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46366,e166b826-01e1-4a5e-9ad0-1f4407589f26,LIST_ACCOUNTS,hbciListAccounts,false +46367,e166b826-01e1-4a5e-9ad0-1f4407589f26,LIST_TRANSACTIONS,hbciListTransactions,false +46368,e166b826-01e1-4a5e-9ad0-1f4407589f26,AUTHORIZATION,,false +46369,e166b826-01e1-4a5e-9ad0-1f4407589f26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46370,e166b826-01e1-4a5e-9ad0-1f4407589f26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46371,e166b826-01e1-4a5e-9ad0-1f4407589f26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46372,e78ca2e4-2514-4ace-a4fa-e5292aead496,LIST_ACCOUNTS,xs2aListAccounts,true -46373,e78ca2e4-2514-4ace-a4fa-e5292aead496,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46373,e78ca2e4-2514-4ace-a4fa-e5292aead496,LIST_TRANSACTIONS,xs2aListTransactions,true 46374,e78ca2e4-2514-4ace-a4fa-e5292aead496,AUTHORIZATION,,true 46375,e78ca2e4-2514-4ace-a4fa-e5292aead496,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46376,e78ca2e4-2514-4ace-a4fa-e5292aead496,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46377,e78ca2e4-2514-4ace-a4fa-e5292aead496,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46378,d6d0c384-fc71-438e-9e6c-7123536031b9,LIST_ACCOUNTS,hbciListAccounts,false -46379,d6d0c384-fc71-438e-9e6c-7123536031b9,LIST_TRANSACTIONS,hbciListTransactions,false -46380,d6d0c384-fc71-438e-9e6c-7123536031b9,AUTHORIZATION,,false -46381,d6d0c384-fc71-438e-9e6c-7123536031b9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46382,d6d0c384-fc71-438e-9e6c-7123536031b9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46383,d6d0c384-fc71-438e-9e6c-7123536031b9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46378,f8f025df-48e4-44c1-9cce-883c925bd6d3,LIST_ACCOUNTS,hbciListAccounts,false +46379,f8f025df-48e4-44c1-9cce-883c925bd6d3,LIST_TRANSACTIONS,hbciListTransactions,false +46380,f8f025df-48e4-44c1-9cce-883c925bd6d3,AUTHORIZATION,,false +46381,f8f025df-48e4-44c1-9cce-883c925bd6d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46382,f8f025df-48e4-44c1-9cce-883c925bd6d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46383,f8f025df-48e4-44c1-9cce-883c925bd6d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46384,92bc74c0-19d3-4a37-b6bc-9f1c70cbeb8d,LIST_ACCOUNTS,xs2aListAccounts,true -46385,92bc74c0-19d3-4a37-b6bc-9f1c70cbeb8d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46385,92bc74c0-19d3-4a37-b6bc-9f1c70cbeb8d,LIST_TRANSACTIONS,xs2aListTransactions,true 46386,92bc74c0-19d3-4a37-b6bc-9f1c70cbeb8d,AUTHORIZATION,,true 46387,92bc74c0-19d3-4a37-b6bc-9f1c70cbeb8d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46388,92bc74c0-19d3-4a37-b6bc-9f1c70cbeb8d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46389,92bc74c0-19d3-4a37-b6bc-9f1c70cbeb8d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46390,664f6bc3-6570-4962-9329-2f605fc38792,LIST_ACCOUNTS,hbciListAccounts,false -46391,664f6bc3-6570-4962-9329-2f605fc38792,LIST_TRANSACTIONS,hbciListTransactions,false -46392,664f6bc3-6570-4962-9329-2f605fc38792,AUTHORIZATION,,false -46393,664f6bc3-6570-4962-9329-2f605fc38792,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46394,664f6bc3-6570-4962-9329-2f605fc38792,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46395,664f6bc3-6570-4962-9329-2f605fc38792,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46390,0e441876-7722-40db-939a-af0f069bb47f,LIST_ACCOUNTS,hbciListAccounts,false +46391,0e441876-7722-40db-939a-af0f069bb47f,LIST_TRANSACTIONS,hbciListTransactions,false +46392,0e441876-7722-40db-939a-af0f069bb47f,AUTHORIZATION,,false +46393,0e441876-7722-40db-939a-af0f069bb47f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46394,0e441876-7722-40db-939a-af0f069bb47f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46395,0e441876-7722-40db-939a-af0f069bb47f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46396,3c1e4cee-6c9d-4041-9757-27b47f01c14a,LIST_ACCOUNTS,xs2aListAccounts,true -46397,3c1e4cee-6c9d-4041-9757-27b47f01c14a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46397,3c1e4cee-6c9d-4041-9757-27b47f01c14a,LIST_TRANSACTIONS,xs2aListTransactions,true 46398,3c1e4cee-6c9d-4041-9757-27b47f01c14a,AUTHORIZATION,,true 46399,3c1e4cee-6c9d-4041-9757-27b47f01c14a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46400,3c1e4cee-6c9d-4041-9757-27b47f01c14a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46401,3c1e4cee-6c9d-4041-9757-27b47f01c14a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46402,c63b2f25-cada-4ed7-a7fc-77b2462176f9,LIST_ACCOUNTS,hbciListAccounts,false -46403,c63b2f25-cada-4ed7-a7fc-77b2462176f9,LIST_TRANSACTIONS,hbciListTransactions,false -46404,c63b2f25-cada-4ed7-a7fc-77b2462176f9,AUTHORIZATION,,false -46405,c63b2f25-cada-4ed7-a7fc-77b2462176f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46406,c63b2f25-cada-4ed7-a7fc-77b2462176f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46407,c63b2f25-cada-4ed7-a7fc-77b2462176f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46402,b0470490-c2b2-4216-912a-8371c3d98330,LIST_ACCOUNTS,hbciListAccounts,false +46403,b0470490-c2b2-4216-912a-8371c3d98330,LIST_TRANSACTIONS,hbciListTransactions,false +46404,b0470490-c2b2-4216-912a-8371c3d98330,AUTHORIZATION,,false +46405,b0470490-c2b2-4216-912a-8371c3d98330,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46406,b0470490-c2b2-4216-912a-8371c3d98330,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46407,b0470490-c2b2-4216-912a-8371c3d98330,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46408,75ceeb36-276d-439f-8633-db79cdaf9f03,LIST_ACCOUNTS,xs2aListAccounts,true -46409,75ceeb36-276d-439f-8633-db79cdaf9f03,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46409,75ceeb36-276d-439f-8633-db79cdaf9f03,LIST_TRANSACTIONS,xs2aListTransactions,true 46410,75ceeb36-276d-439f-8633-db79cdaf9f03,AUTHORIZATION,,true 46411,75ceeb36-276d-439f-8633-db79cdaf9f03,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46412,75ceeb36-276d-439f-8633-db79cdaf9f03,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46413,75ceeb36-276d-439f-8633-db79cdaf9f03,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46414,1c843bab-2e5d-4a04-bee4-762c8872ab14,LIST_ACCOUNTS,hbciListAccounts,false -46415,1c843bab-2e5d-4a04-bee4-762c8872ab14,LIST_TRANSACTIONS,hbciListTransactions,false -46416,1c843bab-2e5d-4a04-bee4-762c8872ab14,AUTHORIZATION,,false -46417,1c843bab-2e5d-4a04-bee4-762c8872ab14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46418,1c843bab-2e5d-4a04-bee4-762c8872ab14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46419,1c843bab-2e5d-4a04-bee4-762c8872ab14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46414,8bb156bf-f307-4f39-86d2-571d17d0af9c,LIST_ACCOUNTS,hbciListAccounts,false +46415,8bb156bf-f307-4f39-86d2-571d17d0af9c,LIST_TRANSACTIONS,hbciListTransactions,false +46416,8bb156bf-f307-4f39-86d2-571d17d0af9c,AUTHORIZATION,,false +46417,8bb156bf-f307-4f39-86d2-571d17d0af9c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46418,8bb156bf-f307-4f39-86d2-571d17d0af9c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46419,8bb156bf-f307-4f39-86d2-571d17d0af9c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46420,fa956605-d548-4622-8e0f-781bb25b5aad,LIST_ACCOUNTS,xs2aListAccounts,true -46421,fa956605-d548-4622-8e0f-781bb25b5aad,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46421,fa956605-d548-4622-8e0f-781bb25b5aad,LIST_TRANSACTIONS,xs2aListTransactions,true 46422,fa956605-d548-4622-8e0f-781bb25b5aad,AUTHORIZATION,,true 46423,fa956605-d548-4622-8e0f-781bb25b5aad,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46424,fa956605-d548-4622-8e0f-781bb25b5aad,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46425,fa956605-d548-4622-8e0f-781bb25b5aad,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46426,28c6bfc7-60d4-42cc-93e2-2b9fc47e6c00,LIST_ACCOUNTS,hbciListAccounts,false -46427,28c6bfc7-60d4-42cc-93e2-2b9fc47e6c00,LIST_TRANSACTIONS,hbciListTransactions,false -46428,28c6bfc7-60d4-42cc-93e2-2b9fc47e6c00,AUTHORIZATION,,false -46429,28c6bfc7-60d4-42cc-93e2-2b9fc47e6c00,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46430,28c6bfc7-60d4-42cc-93e2-2b9fc47e6c00,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46431,28c6bfc7-60d4-42cc-93e2-2b9fc47e6c00,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46426,f6569af4-d2ec-41f4-819c-295f44401f7a,LIST_ACCOUNTS,hbciListAccounts,false +46427,f6569af4-d2ec-41f4-819c-295f44401f7a,LIST_TRANSACTIONS,hbciListTransactions,false +46428,f6569af4-d2ec-41f4-819c-295f44401f7a,AUTHORIZATION,,false +46429,f6569af4-d2ec-41f4-819c-295f44401f7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46430,f6569af4-d2ec-41f4-819c-295f44401f7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46431,f6569af4-d2ec-41f4-819c-295f44401f7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46432,8b21e07e-ceb8-4915-9b97-388b5ea1f294,LIST_ACCOUNTS,xs2aListAccounts,true -46433,8b21e07e-ceb8-4915-9b97-388b5ea1f294,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46433,8b21e07e-ceb8-4915-9b97-388b5ea1f294,LIST_TRANSACTIONS,xs2aListTransactions,true 46434,8b21e07e-ceb8-4915-9b97-388b5ea1f294,AUTHORIZATION,,true 46435,8b21e07e-ceb8-4915-9b97-388b5ea1f294,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46436,8b21e07e-ceb8-4915-9b97-388b5ea1f294,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46437,8b21e07e-ceb8-4915-9b97-388b5ea1f294,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46438,2f296df3-b091-4dd2-af5d-6012ddd5d628,LIST_ACCOUNTS,hbciListAccounts,false -46439,2f296df3-b091-4dd2-af5d-6012ddd5d628,LIST_TRANSACTIONS,hbciListTransactions,false -46440,2f296df3-b091-4dd2-af5d-6012ddd5d628,AUTHORIZATION,,false -46441,2f296df3-b091-4dd2-af5d-6012ddd5d628,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46442,2f296df3-b091-4dd2-af5d-6012ddd5d628,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46443,2f296df3-b091-4dd2-af5d-6012ddd5d628,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46438,78d3ec91-063a-4889-a221-c27baaaa9764,LIST_ACCOUNTS,hbciListAccounts,false +46439,78d3ec91-063a-4889-a221-c27baaaa9764,LIST_TRANSACTIONS,hbciListTransactions,false +46440,78d3ec91-063a-4889-a221-c27baaaa9764,AUTHORIZATION,,false +46441,78d3ec91-063a-4889-a221-c27baaaa9764,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46442,78d3ec91-063a-4889-a221-c27baaaa9764,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46443,78d3ec91-063a-4889-a221-c27baaaa9764,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46444,3fd3c026-407a-4576-a7c4-d119392a182e,LIST_ACCOUNTS,xs2aListAccounts,true -46445,3fd3c026-407a-4576-a7c4-d119392a182e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46445,3fd3c026-407a-4576-a7c4-d119392a182e,LIST_TRANSACTIONS,xs2aListTransactions,true 46446,3fd3c026-407a-4576-a7c4-d119392a182e,AUTHORIZATION,,true 46447,3fd3c026-407a-4576-a7c4-d119392a182e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46448,3fd3c026-407a-4576-a7c4-d119392a182e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46449,3fd3c026-407a-4576-a7c4-d119392a182e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46450,eeca5219-f154-46c8-bdc6-ca858b189a23,LIST_ACCOUNTS,hbciListAccounts,false -46451,eeca5219-f154-46c8-bdc6-ca858b189a23,LIST_TRANSACTIONS,hbciListTransactions,false -46452,eeca5219-f154-46c8-bdc6-ca858b189a23,AUTHORIZATION,,false -46453,eeca5219-f154-46c8-bdc6-ca858b189a23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46454,eeca5219-f154-46c8-bdc6-ca858b189a23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46455,eeca5219-f154-46c8-bdc6-ca858b189a23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46450,9d0cd4fb-6543-47a4-9ad4-70f730206e03,LIST_ACCOUNTS,hbciListAccounts,false +46451,9d0cd4fb-6543-47a4-9ad4-70f730206e03,LIST_TRANSACTIONS,hbciListTransactions,false +46452,9d0cd4fb-6543-47a4-9ad4-70f730206e03,AUTHORIZATION,,false +46453,9d0cd4fb-6543-47a4-9ad4-70f730206e03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46454,9d0cd4fb-6543-47a4-9ad4-70f730206e03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46455,9d0cd4fb-6543-47a4-9ad4-70f730206e03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46456,c44b985c-b177-4741-a72b-fbe7b7861c87,LIST_ACCOUNTS,xs2aListAccounts,true -46457,c44b985c-b177-4741-a72b-fbe7b7861c87,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46457,c44b985c-b177-4741-a72b-fbe7b7861c87,LIST_TRANSACTIONS,xs2aListTransactions,true 46458,c44b985c-b177-4741-a72b-fbe7b7861c87,AUTHORIZATION,,true 46459,c44b985c-b177-4741-a72b-fbe7b7861c87,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46460,c44b985c-b177-4741-a72b-fbe7b7861c87,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46461,c44b985c-b177-4741-a72b-fbe7b7861c87,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46462,e1c076b1-db2f-4b9c-a8d8-df69e244665e,LIST_ACCOUNTS,hbciListAccounts,false -46463,e1c076b1-db2f-4b9c-a8d8-df69e244665e,LIST_TRANSACTIONS,hbciListTransactions,false -46464,e1c076b1-db2f-4b9c-a8d8-df69e244665e,AUTHORIZATION,,false -46465,e1c076b1-db2f-4b9c-a8d8-df69e244665e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46466,e1c076b1-db2f-4b9c-a8d8-df69e244665e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46467,e1c076b1-db2f-4b9c-a8d8-df69e244665e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46462,d19283a7-f0b6-487c-bf21-1a4043f5a952,LIST_ACCOUNTS,hbciListAccounts,false +46463,d19283a7-f0b6-487c-bf21-1a4043f5a952,LIST_TRANSACTIONS,hbciListTransactions,false +46464,d19283a7-f0b6-487c-bf21-1a4043f5a952,AUTHORIZATION,,false +46465,d19283a7-f0b6-487c-bf21-1a4043f5a952,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46466,d19283a7-f0b6-487c-bf21-1a4043f5a952,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46467,d19283a7-f0b6-487c-bf21-1a4043f5a952,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46468,4f838d45-f3a3-4127-9645-c0dd8d5f8077,LIST_ACCOUNTS,xs2aListAccounts,true -46469,4f838d45-f3a3-4127-9645-c0dd8d5f8077,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46469,4f838d45-f3a3-4127-9645-c0dd8d5f8077,LIST_TRANSACTIONS,xs2aListTransactions,true 46470,4f838d45-f3a3-4127-9645-c0dd8d5f8077,AUTHORIZATION,,true 46471,4f838d45-f3a3-4127-9645-c0dd8d5f8077,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46472,4f838d45-f3a3-4127-9645-c0dd8d5f8077,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46473,4f838d45-f3a3-4127-9645-c0dd8d5f8077,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46474,75198022-1622-4b92-93aa-607b33b48725,LIST_ACCOUNTS,hbciListAccounts,false -46475,75198022-1622-4b92-93aa-607b33b48725,LIST_TRANSACTIONS,hbciListTransactions,false -46476,75198022-1622-4b92-93aa-607b33b48725,AUTHORIZATION,,false -46477,75198022-1622-4b92-93aa-607b33b48725,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46478,75198022-1622-4b92-93aa-607b33b48725,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46479,75198022-1622-4b92-93aa-607b33b48725,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46474,ad8070d1-6228-4a08-bc43-3eb0501ab7a6,LIST_ACCOUNTS,hbciListAccounts,false +46475,ad8070d1-6228-4a08-bc43-3eb0501ab7a6,LIST_TRANSACTIONS,hbciListTransactions,false +46476,ad8070d1-6228-4a08-bc43-3eb0501ab7a6,AUTHORIZATION,,false +46477,ad8070d1-6228-4a08-bc43-3eb0501ab7a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46478,ad8070d1-6228-4a08-bc43-3eb0501ab7a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46479,ad8070d1-6228-4a08-bc43-3eb0501ab7a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46480,ff378b1d-d049-4c97-9173-f6d1c21faadf,LIST_ACCOUNTS,xs2aListAccounts,true -46481,ff378b1d-d049-4c97-9173-f6d1c21faadf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46481,ff378b1d-d049-4c97-9173-f6d1c21faadf,LIST_TRANSACTIONS,xs2aListTransactions,true 46482,ff378b1d-d049-4c97-9173-f6d1c21faadf,AUTHORIZATION,,true 46483,ff378b1d-d049-4c97-9173-f6d1c21faadf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46484,ff378b1d-d049-4c97-9173-f6d1c21faadf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46485,ff378b1d-d049-4c97-9173-f6d1c21faadf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46486,603146e2-3d91-4fbf-b411-59af789bbc02,LIST_ACCOUNTS,hbciListAccounts,false -46487,603146e2-3d91-4fbf-b411-59af789bbc02,LIST_TRANSACTIONS,hbciListTransactions,false -46488,603146e2-3d91-4fbf-b411-59af789bbc02,AUTHORIZATION,,false -46489,603146e2-3d91-4fbf-b411-59af789bbc02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46490,603146e2-3d91-4fbf-b411-59af789bbc02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46491,603146e2-3d91-4fbf-b411-59af789bbc02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46486,198db480-6b2c-4e8c-9da2-f67128dae85c,LIST_ACCOUNTS,hbciListAccounts,false +46487,198db480-6b2c-4e8c-9da2-f67128dae85c,LIST_TRANSACTIONS,hbciListTransactions,false +46488,198db480-6b2c-4e8c-9da2-f67128dae85c,AUTHORIZATION,,false +46489,198db480-6b2c-4e8c-9da2-f67128dae85c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46490,198db480-6b2c-4e8c-9da2-f67128dae85c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46491,198db480-6b2c-4e8c-9da2-f67128dae85c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46492,b4226a8e-8a2d-40f5-a839-3947075e2ad9,LIST_ACCOUNTS,xs2aListAccounts,true -46493,b4226a8e-8a2d-40f5-a839-3947075e2ad9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46493,b4226a8e-8a2d-40f5-a839-3947075e2ad9,LIST_TRANSACTIONS,xs2aListTransactions,true 46494,b4226a8e-8a2d-40f5-a839-3947075e2ad9,AUTHORIZATION,,true 46495,b4226a8e-8a2d-40f5-a839-3947075e2ad9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46496,b4226a8e-8a2d-40f5-a839-3947075e2ad9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46497,b4226a8e-8a2d-40f5-a839-3947075e2ad9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46498,22da09af-e5c9-4d07-954e-3132136d8f24,LIST_ACCOUNTS,hbciListAccounts,false -46499,22da09af-e5c9-4d07-954e-3132136d8f24,LIST_TRANSACTIONS,hbciListTransactions,false -46500,22da09af-e5c9-4d07-954e-3132136d8f24,AUTHORIZATION,,false -46501,22da09af-e5c9-4d07-954e-3132136d8f24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46502,22da09af-e5c9-4d07-954e-3132136d8f24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46503,22da09af-e5c9-4d07-954e-3132136d8f24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46498,1844f419-4d6e-48c7-94d1-d2652aa18cd2,LIST_ACCOUNTS,hbciListAccounts,false +46499,1844f419-4d6e-48c7-94d1-d2652aa18cd2,LIST_TRANSACTIONS,hbciListTransactions,false +46500,1844f419-4d6e-48c7-94d1-d2652aa18cd2,AUTHORIZATION,,false +46501,1844f419-4d6e-48c7-94d1-d2652aa18cd2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46502,1844f419-4d6e-48c7-94d1-d2652aa18cd2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46503,1844f419-4d6e-48c7-94d1-d2652aa18cd2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46504,ea2f99bf-8c3a-4052-8ef1-d950bc5e0dce,LIST_ACCOUNTS,xs2aListAccounts,true -46505,ea2f99bf-8c3a-4052-8ef1-d950bc5e0dce,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46505,ea2f99bf-8c3a-4052-8ef1-d950bc5e0dce,LIST_TRANSACTIONS,xs2aListTransactions,true 46506,ea2f99bf-8c3a-4052-8ef1-d950bc5e0dce,AUTHORIZATION,,true 46507,ea2f99bf-8c3a-4052-8ef1-d950bc5e0dce,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46508,ea2f99bf-8c3a-4052-8ef1-d950bc5e0dce,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46509,ea2f99bf-8c3a-4052-8ef1-d950bc5e0dce,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46510,8d769c1c-c3b6-46fa-b79c-87001f3b1b3b,LIST_ACCOUNTS,hbciListAccounts,false -46511,8d769c1c-c3b6-46fa-b79c-87001f3b1b3b,LIST_TRANSACTIONS,hbciListTransactions,false -46512,8d769c1c-c3b6-46fa-b79c-87001f3b1b3b,AUTHORIZATION,,false -46513,8d769c1c-c3b6-46fa-b79c-87001f3b1b3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46514,8d769c1c-c3b6-46fa-b79c-87001f3b1b3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46515,8d769c1c-c3b6-46fa-b79c-87001f3b1b3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46510,dab2c8c9-8078-46fe-9131-55b33159e92e,LIST_ACCOUNTS,hbciListAccounts,false +46511,dab2c8c9-8078-46fe-9131-55b33159e92e,LIST_TRANSACTIONS,hbciListTransactions,false +46512,dab2c8c9-8078-46fe-9131-55b33159e92e,AUTHORIZATION,,false +46513,dab2c8c9-8078-46fe-9131-55b33159e92e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46514,dab2c8c9-8078-46fe-9131-55b33159e92e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46515,dab2c8c9-8078-46fe-9131-55b33159e92e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46516,f6dd8526-33c7-4042-8a29-c3d06dfead3d,LIST_ACCOUNTS,xs2aListAccounts,true -46517,f6dd8526-33c7-4042-8a29-c3d06dfead3d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46517,f6dd8526-33c7-4042-8a29-c3d06dfead3d,LIST_TRANSACTIONS,xs2aListTransactions,true 46518,f6dd8526-33c7-4042-8a29-c3d06dfead3d,AUTHORIZATION,,true 46519,f6dd8526-33c7-4042-8a29-c3d06dfead3d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46520,f6dd8526-33c7-4042-8a29-c3d06dfead3d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46521,f6dd8526-33c7-4042-8a29-c3d06dfead3d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46522,b3da5174-bb05-44f8-abce-6c4c951832e3,LIST_ACCOUNTS,hbciListAccounts,false -46523,b3da5174-bb05-44f8-abce-6c4c951832e3,LIST_TRANSACTIONS,hbciListTransactions,false -46524,b3da5174-bb05-44f8-abce-6c4c951832e3,AUTHORIZATION,,false -46525,b3da5174-bb05-44f8-abce-6c4c951832e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46526,b3da5174-bb05-44f8-abce-6c4c951832e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46527,b3da5174-bb05-44f8-abce-6c4c951832e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46522,eab3aa93-02ce-4970-ace3-b7ef728e23df,LIST_ACCOUNTS,hbciListAccounts,false +46523,eab3aa93-02ce-4970-ace3-b7ef728e23df,LIST_TRANSACTIONS,hbciListTransactions,false +46524,eab3aa93-02ce-4970-ace3-b7ef728e23df,AUTHORIZATION,,false +46525,eab3aa93-02ce-4970-ace3-b7ef728e23df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46526,eab3aa93-02ce-4970-ace3-b7ef728e23df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46527,eab3aa93-02ce-4970-ace3-b7ef728e23df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46528,5dd7ae1e-0854-4800-b45b-215b22c8403f,LIST_ACCOUNTS,xs2aListAccounts,true -46529,5dd7ae1e-0854-4800-b45b-215b22c8403f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46529,5dd7ae1e-0854-4800-b45b-215b22c8403f,LIST_TRANSACTIONS,xs2aListTransactions,true 46530,5dd7ae1e-0854-4800-b45b-215b22c8403f,AUTHORIZATION,,true 46531,5dd7ae1e-0854-4800-b45b-215b22c8403f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46532,5dd7ae1e-0854-4800-b45b-215b22c8403f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46533,5dd7ae1e-0854-4800-b45b-215b22c8403f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46534,7993eba7-1319-410a-bfc0-00ada6e3b4c3,LIST_ACCOUNTS,hbciListAccounts,false -46535,7993eba7-1319-410a-bfc0-00ada6e3b4c3,LIST_TRANSACTIONS,hbciListTransactions,false -46536,7993eba7-1319-410a-bfc0-00ada6e3b4c3,AUTHORIZATION,,false -46537,7993eba7-1319-410a-bfc0-00ada6e3b4c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46538,7993eba7-1319-410a-bfc0-00ada6e3b4c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46539,7993eba7-1319-410a-bfc0-00ada6e3b4c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46534,78ca02e9-7ea9-4a62-9d53-600970288b87,LIST_ACCOUNTS,hbciListAccounts,false +46535,78ca02e9-7ea9-4a62-9d53-600970288b87,LIST_TRANSACTIONS,hbciListTransactions,false +46536,78ca02e9-7ea9-4a62-9d53-600970288b87,AUTHORIZATION,,false +46537,78ca02e9-7ea9-4a62-9d53-600970288b87,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46538,78ca02e9-7ea9-4a62-9d53-600970288b87,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46539,78ca02e9-7ea9-4a62-9d53-600970288b87,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46540,d06c61a3-19d9-44e6-ae98-a9c65890df27,LIST_ACCOUNTS,xs2aListAccounts,true -46541,d06c61a3-19d9-44e6-ae98-a9c65890df27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46541,d06c61a3-19d9-44e6-ae98-a9c65890df27,LIST_TRANSACTIONS,xs2aListTransactions,true 46542,d06c61a3-19d9-44e6-ae98-a9c65890df27,AUTHORIZATION,,true 46543,d06c61a3-19d9-44e6-ae98-a9c65890df27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46544,d06c61a3-19d9-44e6-ae98-a9c65890df27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46545,d06c61a3-19d9-44e6-ae98-a9c65890df27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46546,44d0b1e9-7923-43b3-96ee-6719d8b67bed,LIST_ACCOUNTS,hbciListAccounts,false -46547,44d0b1e9-7923-43b3-96ee-6719d8b67bed,LIST_TRANSACTIONS,hbciListTransactions,false -46548,44d0b1e9-7923-43b3-96ee-6719d8b67bed,AUTHORIZATION,,false -46549,44d0b1e9-7923-43b3-96ee-6719d8b67bed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46550,44d0b1e9-7923-43b3-96ee-6719d8b67bed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46551,44d0b1e9-7923-43b3-96ee-6719d8b67bed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46546,50853c34-deee-455a-ac89-17fa6230287d,LIST_ACCOUNTS,hbciListAccounts,false +46547,50853c34-deee-455a-ac89-17fa6230287d,LIST_TRANSACTIONS,hbciListTransactions,false +46548,50853c34-deee-455a-ac89-17fa6230287d,AUTHORIZATION,,false +46549,50853c34-deee-455a-ac89-17fa6230287d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46550,50853c34-deee-455a-ac89-17fa6230287d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46551,50853c34-deee-455a-ac89-17fa6230287d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46552,93400dd5-dee7-450e-a4f1-dc8f95354480,LIST_ACCOUNTS,xs2aListAccounts,true -46553,93400dd5-dee7-450e-a4f1-dc8f95354480,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46553,93400dd5-dee7-450e-a4f1-dc8f95354480,LIST_TRANSACTIONS,xs2aListTransactions,true 46554,93400dd5-dee7-450e-a4f1-dc8f95354480,AUTHORIZATION,,true 46555,93400dd5-dee7-450e-a4f1-dc8f95354480,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46556,93400dd5-dee7-450e-a4f1-dc8f95354480,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46557,93400dd5-dee7-450e-a4f1-dc8f95354480,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46558,a818db33-e667-4bef-b982-fdd2ebff226d,LIST_ACCOUNTS,hbciListAccounts,false -46559,a818db33-e667-4bef-b982-fdd2ebff226d,LIST_TRANSACTIONS,hbciListTransactions,false -46560,a818db33-e667-4bef-b982-fdd2ebff226d,AUTHORIZATION,,false -46561,a818db33-e667-4bef-b982-fdd2ebff226d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46562,a818db33-e667-4bef-b982-fdd2ebff226d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46563,a818db33-e667-4bef-b982-fdd2ebff226d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46558,2da8e750-049b-4dcc-9008-00660d6c20e8,LIST_ACCOUNTS,hbciListAccounts,false +46559,2da8e750-049b-4dcc-9008-00660d6c20e8,LIST_TRANSACTIONS,hbciListTransactions,false +46560,2da8e750-049b-4dcc-9008-00660d6c20e8,AUTHORIZATION,,false +46561,2da8e750-049b-4dcc-9008-00660d6c20e8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46562,2da8e750-049b-4dcc-9008-00660d6c20e8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46563,2da8e750-049b-4dcc-9008-00660d6c20e8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46564,7d416e85-3101-4af2-ba2e-57d323014d27,LIST_ACCOUNTS,xs2aListAccounts,true -46565,7d416e85-3101-4af2-ba2e-57d323014d27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46565,7d416e85-3101-4af2-ba2e-57d323014d27,LIST_TRANSACTIONS,xs2aListTransactions,true 46566,7d416e85-3101-4af2-ba2e-57d323014d27,AUTHORIZATION,,true 46567,7d416e85-3101-4af2-ba2e-57d323014d27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46568,7d416e85-3101-4af2-ba2e-57d323014d27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46569,7d416e85-3101-4af2-ba2e-57d323014d27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46570,283edb3f-8a99-4a67-90a0-8058ed2c7bce,LIST_ACCOUNTS,hbciListAccounts,false -46571,283edb3f-8a99-4a67-90a0-8058ed2c7bce,LIST_TRANSACTIONS,hbciListTransactions,false -46572,283edb3f-8a99-4a67-90a0-8058ed2c7bce,AUTHORIZATION,,false -46573,283edb3f-8a99-4a67-90a0-8058ed2c7bce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46574,283edb3f-8a99-4a67-90a0-8058ed2c7bce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46575,283edb3f-8a99-4a67-90a0-8058ed2c7bce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46570,df6210a2-88fd-4486-b3a0-281545d08108,LIST_ACCOUNTS,hbciListAccounts,false +46571,df6210a2-88fd-4486-b3a0-281545d08108,LIST_TRANSACTIONS,hbciListTransactions,false +46572,df6210a2-88fd-4486-b3a0-281545d08108,AUTHORIZATION,,false +46573,df6210a2-88fd-4486-b3a0-281545d08108,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46574,df6210a2-88fd-4486-b3a0-281545d08108,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46575,df6210a2-88fd-4486-b3a0-281545d08108,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46576,9a73aa9e-08dd-4d5b-8cba-52872012daf6,LIST_ACCOUNTS,xs2aListAccounts,true -46577,9a73aa9e-08dd-4d5b-8cba-52872012daf6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46577,9a73aa9e-08dd-4d5b-8cba-52872012daf6,LIST_TRANSACTIONS,xs2aListTransactions,true 46578,9a73aa9e-08dd-4d5b-8cba-52872012daf6,AUTHORIZATION,,true 46579,9a73aa9e-08dd-4d5b-8cba-52872012daf6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46580,9a73aa9e-08dd-4d5b-8cba-52872012daf6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46581,9a73aa9e-08dd-4d5b-8cba-52872012daf6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46582,06fe8592-30cf-44c3-99e5-30b69e701d5d,LIST_ACCOUNTS,hbciListAccounts,false -46583,06fe8592-30cf-44c3-99e5-30b69e701d5d,LIST_TRANSACTIONS,hbciListTransactions,false -46584,06fe8592-30cf-44c3-99e5-30b69e701d5d,AUTHORIZATION,,false -46585,06fe8592-30cf-44c3-99e5-30b69e701d5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46586,06fe8592-30cf-44c3-99e5-30b69e701d5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46587,06fe8592-30cf-44c3-99e5-30b69e701d5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46582,772cc6db-26f9-4b6b-baa9-d6efd04db390,LIST_ACCOUNTS,hbciListAccounts,false +46583,772cc6db-26f9-4b6b-baa9-d6efd04db390,LIST_TRANSACTIONS,hbciListTransactions,false +46584,772cc6db-26f9-4b6b-baa9-d6efd04db390,AUTHORIZATION,,false +46585,772cc6db-26f9-4b6b-baa9-d6efd04db390,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46586,772cc6db-26f9-4b6b-baa9-d6efd04db390,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46587,772cc6db-26f9-4b6b-baa9-d6efd04db390,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46588,29480587-0e4b-4582-932f-93edbcedad8a,LIST_ACCOUNTS,xs2aListAccounts,true -46589,29480587-0e4b-4582-932f-93edbcedad8a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46589,29480587-0e4b-4582-932f-93edbcedad8a,LIST_TRANSACTIONS,xs2aListTransactions,true 46590,29480587-0e4b-4582-932f-93edbcedad8a,AUTHORIZATION,,true 46591,29480587-0e4b-4582-932f-93edbcedad8a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46592,29480587-0e4b-4582-932f-93edbcedad8a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46593,29480587-0e4b-4582-932f-93edbcedad8a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46594,42cbd712-91e0-4858-bb94-84edde717396,LIST_ACCOUNTS,hbciListAccounts,false -46595,42cbd712-91e0-4858-bb94-84edde717396,LIST_TRANSACTIONS,hbciListTransactions,false -46596,42cbd712-91e0-4858-bb94-84edde717396,AUTHORIZATION,,false -46597,42cbd712-91e0-4858-bb94-84edde717396,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46598,42cbd712-91e0-4858-bb94-84edde717396,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46599,42cbd712-91e0-4858-bb94-84edde717396,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46594,ed6e187d-c9fd-4692-8b00-7f4ec455b446,LIST_ACCOUNTS,hbciListAccounts,false +46595,ed6e187d-c9fd-4692-8b00-7f4ec455b446,LIST_TRANSACTIONS,hbciListTransactions,false +46596,ed6e187d-c9fd-4692-8b00-7f4ec455b446,AUTHORIZATION,,false +46597,ed6e187d-c9fd-4692-8b00-7f4ec455b446,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46598,ed6e187d-c9fd-4692-8b00-7f4ec455b446,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46599,ed6e187d-c9fd-4692-8b00-7f4ec455b446,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46600,0a328c6f-402b-42f3-961a-24e969e1147e,LIST_ACCOUNTS,xs2aListAccounts,true -46601,0a328c6f-402b-42f3-961a-24e969e1147e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46601,0a328c6f-402b-42f3-961a-24e969e1147e,LIST_TRANSACTIONS,xs2aListTransactions,true 46602,0a328c6f-402b-42f3-961a-24e969e1147e,AUTHORIZATION,,true 46603,0a328c6f-402b-42f3-961a-24e969e1147e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46604,0a328c6f-402b-42f3-961a-24e969e1147e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46605,0a328c6f-402b-42f3-961a-24e969e1147e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46606,09ec5f28-90d4-4f2b-8762-8c36262644ce,LIST_ACCOUNTS,hbciListAccounts,false -46607,09ec5f28-90d4-4f2b-8762-8c36262644ce,LIST_TRANSACTIONS,hbciListTransactions,false -46608,09ec5f28-90d4-4f2b-8762-8c36262644ce,AUTHORIZATION,,false -46609,09ec5f28-90d4-4f2b-8762-8c36262644ce,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46610,09ec5f28-90d4-4f2b-8762-8c36262644ce,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46611,09ec5f28-90d4-4f2b-8762-8c36262644ce,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46606,d4bb698a-b108-4ff7-bbf1-c0a1e7db02ef,LIST_ACCOUNTS,hbciListAccounts,false +46607,d4bb698a-b108-4ff7-bbf1-c0a1e7db02ef,LIST_TRANSACTIONS,hbciListTransactions,false +46608,d4bb698a-b108-4ff7-bbf1-c0a1e7db02ef,AUTHORIZATION,,false +46609,d4bb698a-b108-4ff7-bbf1-c0a1e7db02ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46610,d4bb698a-b108-4ff7-bbf1-c0a1e7db02ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46611,d4bb698a-b108-4ff7-bbf1-c0a1e7db02ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46612,1bd0f709-28d5-4304-b6eb-8b95fc167123,LIST_ACCOUNTS,xs2aListAccounts,true -46613,1bd0f709-28d5-4304-b6eb-8b95fc167123,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46613,1bd0f709-28d5-4304-b6eb-8b95fc167123,LIST_TRANSACTIONS,xs2aListTransactions,true 46614,1bd0f709-28d5-4304-b6eb-8b95fc167123,AUTHORIZATION,,true 46615,1bd0f709-28d5-4304-b6eb-8b95fc167123,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46616,1bd0f709-28d5-4304-b6eb-8b95fc167123,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46617,1bd0f709-28d5-4304-b6eb-8b95fc167123,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46618,e6f9f75c-c454-450e-96d9-41f7fc6ae2a5,LIST_ACCOUNTS,hbciListAccounts,false -46619,e6f9f75c-c454-450e-96d9-41f7fc6ae2a5,LIST_TRANSACTIONS,hbciListTransactions,false -46620,e6f9f75c-c454-450e-96d9-41f7fc6ae2a5,AUTHORIZATION,,false -46621,e6f9f75c-c454-450e-96d9-41f7fc6ae2a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46622,e6f9f75c-c454-450e-96d9-41f7fc6ae2a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46623,e6f9f75c-c454-450e-96d9-41f7fc6ae2a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46618,1214e540-962f-47af-ab9a-d7e0bae14d14,LIST_ACCOUNTS,hbciListAccounts,false +46619,1214e540-962f-47af-ab9a-d7e0bae14d14,LIST_TRANSACTIONS,hbciListTransactions,false +46620,1214e540-962f-47af-ab9a-d7e0bae14d14,AUTHORIZATION,,false +46621,1214e540-962f-47af-ab9a-d7e0bae14d14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46622,1214e540-962f-47af-ab9a-d7e0bae14d14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46623,1214e540-962f-47af-ab9a-d7e0bae14d14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46624,f433aaeb-1dfc-411a-abfd-c0a47eeefd4c,LIST_ACCOUNTS,xs2aListAccounts,true -46625,f433aaeb-1dfc-411a-abfd-c0a47eeefd4c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46625,f433aaeb-1dfc-411a-abfd-c0a47eeefd4c,LIST_TRANSACTIONS,xs2aListTransactions,true 46626,f433aaeb-1dfc-411a-abfd-c0a47eeefd4c,AUTHORIZATION,,true 46627,f433aaeb-1dfc-411a-abfd-c0a47eeefd4c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46628,f433aaeb-1dfc-411a-abfd-c0a47eeefd4c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46629,f433aaeb-1dfc-411a-abfd-c0a47eeefd4c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46630,e57a556b-d3cb-406b-9a2e-4c71dfac472b,LIST_ACCOUNTS,hbciListAccounts,false -46631,e57a556b-d3cb-406b-9a2e-4c71dfac472b,LIST_TRANSACTIONS,hbciListTransactions,false -46632,e57a556b-d3cb-406b-9a2e-4c71dfac472b,AUTHORIZATION,,false -46633,e57a556b-d3cb-406b-9a2e-4c71dfac472b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46634,e57a556b-d3cb-406b-9a2e-4c71dfac472b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46635,e57a556b-d3cb-406b-9a2e-4c71dfac472b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46630,697b290c-d6a6-4794-9dfd-b60633bb24ef,LIST_ACCOUNTS,hbciListAccounts,false +46631,697b290c-d6a6-4794-9dfd-b60633bb24ef,LIST_TRANSACTIONS,hbciListTransactions,false +46632,697b290c-d6a6-4794-9dfd-b60633bb24ef,AUTHORIZATION,,false +46633,697b290c-d6a6-4794-9dfd-b60633bb24ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46634,697b290c-d6a6-4794-9dfd-b60633bb24ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46635,697b290c-d6a6-4794-9dfd-b60633bb24ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46636,5bd04f6b-21ad-4b74-b50b-72fc6c053eb0,LIST_ACCOUNTS,xs2aListAccounts,true -46637,5bd04f6b-21ad-4b74-b50b-72fc6c053eb0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46637,5bd04f6b-21ad-4b74-b50b-72fc6c053eb0,LIST_TRANSACTIONS,xs2aListTransactions,true 46638,5bd04f6b-21ad-4b74-b50b-72fc6c053eb0,AUTHORIZATION,,true 46639,5bd04f6b-21ad-4b74-b50b-72fc6c053eb0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46640,5bd04f6b-21ad-4b74-b50b-72fc6c053eb0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46641,5bd04f6b-21ad-4b74-b50b-72fc6c053eb0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46642,dd413396-14aa-4fc8-8e86-4b71afa9de4f,LIST_ACCOUNTS,hbciListAccounts,false -46643,dd413396-14aa-4fc8-8e86-4b71afa9de4f,LIST_TRANSACTIONS,hbciListTransactions,false -46644,dd413396-14aa-4fc8-8e86-4b71afa9de4f,AUTHORIZATION,,false -46645,dd413396-14aa-4fc8-8e86-4b71afa9de4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46646,dd413396-14aa-4fc8-8e86-4b71afa9de4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46647,dd413396-14aa-4fc8-8e86-4b71afa9de4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46642,6b93f61f-caf6-4809-a006-07a9eeb07bc6,LIST_ACCOUNTS,hbciListAccounts,false +46643,6b93f61f-caf6-4809-a006-07a9eeb07bc6,LIST_TRANSACTIONS,hbciListTransactions,false +46644,6b93f61f-caf6-4809-a006-07a9eeb07bc6,AUTHORIZATION,,false +46645,6b93f61f-caf6-4809-a006-07a9eeb07bc6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46646,6b93f61f-caf6-4809-a006-07a9eeb07bc6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46647,6b93f61f-caf6-4809-a006-07a9eeb07bc6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46648,f48a40ad-0c39-4f48-8302-0ebe23ca3492,LIST_ACCOUNTS,xs2aListAccounts,true -46649,f48a40ad-0c39-4f48-8302-0ebe23ca3492,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46649,f48a40ad-0c39-4f48-8302-0ebe23ca3492,LIST_TRANSACTIONS,xs2aListTransactions,true 46650,f48a40ad-0c39-4f48-8302-0ebe23ca3492,AUTHORIZATION,,true 46651,f48a40ad-0c39-4f48-8302-0ebe23ca3492,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46652,f48a40ad-0c39-4f48-8302-0ebe23ca3492,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46653,f48a40ad-0c39-4f48-8302-0ebe23ca3492,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46654,d0ce84ee-8f85-469d-a4c9-220cc2d3667f,LIST_ACCOUNTS,hbciListAccounts,false -46655,d0ce84ee-8f85-469d-a4c9-220cc2d3667f,LIST_TRANSACTIONS,hbciListTransactions,false -46656,d0ce84ee-8f85-469d-a4c9-220cc2d3667f,AUTHORIZATION,,false -46657,d0ce84ee-8f85-469d-a4c9-220cc2d3667f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46658,d0ce84ee-8f85-469d-a4c9-220cc2d3667f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46659,d0ce84ee-8f85-469d-a4c9-220cc2d3667f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46654,fca237af-1665-48f0-8bb3-241a9b0528ec,LIST_ACCOUNTS,hbciListAccounts,false +46655,fca237af-1665-48f0-8bb3-241a9b0528ec,LIST_TRANSACTIONS,hbciListTransactions,false +46656,fca237af-1665-48f0-8bb3-241a9b0528ec,AUTHORIZATION,,false +46657,fca237af-1665-48f0-8bb3-241a9b0528ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46658,fca237af-1665-48f0-8bb3-241a9b0528ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46659,fca237af-1665-48f0-8bb3-241a9b0528ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46660,078788a1-d62e-46dc-a5dc-21b1c4d57cc6,LIST_ACCOUNTS,xs2aListAccounts,true -46661,078788a1-d62e-46dc-a5dc-21b1c4d57cc6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46661,078788a1-d62e-46dc-a5dc-21b1c4d57cc6,LIST_TRANSACTIONS,xs2aListTransactions,true 46662,078788a1-d62e-46dc-a5dc-21b1c4d57cc6,AUTHORIZATION,,true 46663,078788a1-d62e-46dc-a5dc-21b1c4d57cc6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46664,078788a1-d62e-46dc-a5dc-21b1c4d57cc6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46665,078788a1-d62e-46dc-a5dc-21b1c4d57cc6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46666,4a7461a4-36d4-4c9b-a5a3-9068909452eb,LIST_ACCOUNTS,hbciListAccounts,false -46667,4a7461a4-36d4-4c9b-a5a3-9068909452eb,LIST_TRANSACTIONS,hbciListTransactions,false -46668,4a7461a4-36d4-4c9b-a5a3-9068909452eb,AUTHORIZATION,,false -46669,4a7461a4-36d4-4c9b-a5a3-9068909452eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46670,4a7461a4-36d4-4c9b-a5a3-9068909452eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46671,4a7461a4-36d4-4c9b-a5a3-9068909452eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46666,10c64d45-2cd8-43c1-aed2-0a7d4a606f0c,LIST_ACCOUNTS,hbciListAccounts,false +46667,10c64d45-2cd8-43c1-aed2-0a7d4a606f0c,LIST_TRANSACTIONS,hbciListTransactions,false +46668,10c64d45-2cd8-43c1-aed2-0a7d4a606f0c,AUTHORIZATION,,false +46669,10c64d45-2cd8-43c1-aed2-0a7d4a606f0c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46670,10c64d45-2cd8-43c1-aed2-0a7d4a606f0c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46671,10c64d45-2cd8-43c1-aed2-0a7d4a606f0c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46672,5d54474a-3a9b-4236-8ef4-e743de87135c,LIST_ACCOUNTS,xs2aListAccounts,true -46673,5d54474a-3a9b-4236-8ef4-e743de87135c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46673,5d54474a-3a9b-4236-8ef4-e743de87135c,LIST_TRANSACTIONS,xs2aListTransactions,true 46674,5d54474a-3a9b-4236-8ef4-e743de87135c,AUTHORIZATION,,true 46675,5d54474a-3a9b-4236-8ef4-e743de87135c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46676,5d54474a-3a9b-4236-8ef4-e743de87135c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46677,5d54474a-3a9b-4236-8ef4-e743de87135c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46678,426ca9fc-098c-4aae-97be-bfc92b85e6a9,LIST_ACCOUNTS,hbciListAccounts,false -46679,426ca9fc-098c-4aae-97be-bfc92b85e6a9,LIST_TRANSACTIONS,hbciListTransactions,false -46680,426ca9fc-098c-4aae-97be-bfc92b85e6a9,AUTHORIZATION,,false -46681,426ca9fc-098c-4aae-97be-bfc92b85e6a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46682,426ca9fc-098c-4aae-97be-bfc92b85e6a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46683,426ca9fc-098c-4aae-97be-bfc92b85e6a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46678,db248adb-9826-434e-ba9a-3f5cc22a41f6,LIST_ACCOUNTS,hbciListAccounts,false +46679,db248adb-9826-434e-ba9a-3f5cc22a41f6,LIST_TRANSACTIONS,hbciListTransactions,false +46680,db248adb-9826-434e-ba9a-3f5cc22a41f6,AUTHORIZATION,,false +46681,db248adb-9826-434e-ba9a-3f5cc22a41f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46682,db248adb-9826-434e-ba9a-3f5cc22a41f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46683,db248adb-9826-434e-ba9a-3f5cc22a41f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46684,69c44d30-b14c-4f4a-9947-02d8f9b7f6e4,LIST_ACCOUNTS,xs2aListAccounts,true -46685,69c44d30-b14c-4f4a-9947-02d8f9b7f6e4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46685,69c44d30-b14c-4f4a-9947-02d8f9b7f6e4,LIST_TRANSACTIONS,xs2aListTransactions,true 46686,69c44d30-b14c-4f4a-9947-02d8f9b7f6e4,AUTHORIZATION,,true 46687,69c44d30-b14c-4f4a-9947-02d8f9b7f6e4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46688,69c44d30-b14c-4f4a-9947-02d8f9b7f6e4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46689,69c44d30-b14c-4f4a-9947-02d8f9b7f6e4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46690,a6fd0ab1-6fd1-4243-9fe4-4429a74859e0,LIST_ACCOUNTS,hbciListAccounts,false -46691,a6fd0ab1-6fd1-4243-9fe4-4429a74859e0,LIST_TRANSACTIONS,hbciListTransactions,false -46692,a6fd0ab1-6fd1-4243-9fe4-4429a74859e0,AUTHORIZATION,,false -46693,a6fd0ab1-6fd1-4243-9fe4-4429a74859e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46694,a6fd0ab1-6fd1-4243-9fe4-4429a74859e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46695,a6fd0ab1-6fd1-4243-9fe4-4429a74859e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46690,d61e3c85-a668-4762-bed5-bd707ee8da05,LIST_ACCOUNTS,hbciListAccounts,false +46691,d61e3c85-a668-4762-bed5-bd707ee8da05,LIST_TRANSACTIONS,hbciListTransactions,false +46692,d61e3c85-a668-4762-bed5-bd707ee8da05,AUTHORIZATION,,false +46693,d61e3c85-a668-4762-bed5-bd707ee8da05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46694,d61e3c85-a668-4762-bed5-bd707ee8da05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46695,d61e3c85-a668-4762-bed5-bd707ee8da05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46696,8ad393f8-77c5-4089-9b87-391ac72e9c47,LIST_ACCOUNTS,xs2aListAccounts,true -46697,8ad393f8-77c5-4089-9b87-391ac72e9c47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46697,8ad393f8-77c5-4089-9b87-391ac72e9c47,LIST_TRANSACTIONS,xs2aListTransactions,true 46698,8ad393f8-77c5-4089-9b87-391ac72e9c47,AUTHORIZATION,,true 46699,8ad393f8-77c5-4089-9b87-391ac72e9c47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46700,8ad393f8-77c5-4089-9b87-391ac72e9c47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46701,8ad393f8-77c5-4089-9b87-391ac72e9c47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46702,5e3f383f-8436-47a8-b984-9b58110536bb,LIST_ACCOUNTS,hbciListAccounts,false -46703,5e3f383f-8436-47a8-b984-9b58110536bb,LIST_TRANSACTIONS,hbciListTransactions,false -46704,5e3f383f-8436-47a8-b984-9b58110536bb,AUTHORIZATION,,false -46705,5e3f383f-8436-47a8-b984-9b58110536bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46706,5e3f383f-8436-47a8-b984-9b58110536bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46707,5e3f383f-8436-47a8-b984-9b58110536bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46702,b7c7b9f5-de59-4d27-ac98-5d8980c691e3,LIST_ACCOUNTS,hbciListAccounts,false +46703,b7c7b9f5-de59-4d27-ac98-5d8980c691e3,LIST_TRANSACTIONS,hbciListTransactions,false +46704,b7c7b9f5-de59-4d27-ac98-5d8980c691e3,AUTHORIZATION,,false +46705,b7c7b9f5-de59-4d27-ac98-5d8980c691e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46706,b7c7b9f5-de59-4d27-ac98-5d8980c691e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46707,b7c7b9f5-de59-4d27-ac98-5d8980c691e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46708,e0bd13d4-123b-4e68-8339-94092127c71e,LIST_ACCOUNTS,xs2aListAccounts,true -46709,e0bd13d4-123b-4e68-8339-94092127c71e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46709,e0bd13d4-123b-4e68-8339-94092127c71e,LIST_TRANSACTIONS,xs2aListTransactions,true 46710,e0bd13d4-123b-4e68-8339-94092127c71e,AUTHORIZATION,,true 46711,e0bd13d4-123b-4e68-8339-94092127c71e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46712,e0bd13d4-123b-4e68-8339-94092127c71e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46713,e0bd13d4-123b-4e68-8339-94092127c71e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46714,05a7217b-ad36-4477-a700-2853c3b9eead,LIST_ACCOUNTS,hbciListAccounts,false -46715,05a7217b-ad36-4477-a700-2853c3b9eead,LIST_TRANSACTIONS,hbciListTransactions,false -46716,05a7217b-ad36-4477-a700-2853c3b9eead,AUTHORIZATION,,false -46717,05a7217b-ad36-4477-a700-2853c3b9eead,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46718,05a7217b-ad36-4477-a700-2853c3b9eead,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46719,05a7217b-ad36-4477-a700-2853c3b9eead,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46714,f31df8d1-fc36-4658-977d-639eb671aee2,LIST_ACCOUNTS,hbciListAccounts,false +46715,f31df8d1-fc36-4658-977d-639eb671aee2,LIST_TRANSACTIONS,hbciListTransactions,false +46716,f31df8d1-fc36-4658-977d-639eb671aee2,AUTHORIZATION,,false +46717,f31df8d1-fc36-4658-977d-639eb671aee2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46718,f31df8d1-fc36-4658-977d-639eb671aee2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46719,f31df8d1-fc36-4658-977d-639eb671aee2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46720,ac6b0ba7-a4c9-4c71-a56c-577bb62ce771,LIST_ACCOUNTS,xs2aListAccounts,true -46721,ac6b0ba7-a4c9-4c71-a56c-577bb62ce771,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46721,ac6b0ba7-a4c9-4c71-a56c-577bb62ce771,LIST_TRANSACTIONS,xs2aListTransactions,true 46722,ac6b0ba7-a4c9-4c71-a56c-577bb62ce771,AUTHORIZATION,,true 46723,ac6b0ba7-a4c9-4c71-a56c-577bb62ce771,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46724,ac6b0ba7-a4c9-4c71-a56c-577bb62ce771,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46725,ac6b0ba7-a4c9-4c71-a56c-577bb62ce771,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46726,3a6251a1-37cf-4db8-a472-9a06e776fae5,LIST_ACCOUNTS,hbciListAccounts,false -46727,3a6251a1-37cf-4db8-a472-9a06e776fae5,LIST_TRANSACTIONS,hbciListTransactions,false -46728,3a6251a1-37cf-4db8-a472-9a06e776fae5,AUTHORIZATION,,false -46729,3a6251a1-37cf-4db8-a472-9a06e776fae5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46730,3a6251a1-37cf-4db8-a472-9a06e776fae5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46731,3a6251a1-37cf-4db8-a472-9a06e776fae5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46726,a3d6c0e4-6671-4592-ad76-d298c87f09be,LIST_ACCOUNTS,hbciListAccounts,false +46727,a3d6c0e4-6671-4592-ad76-d298c87f09be,LIST_TRANSACTIONS,hbciListTransactions,false +46728,a3d6c0e4-6671-4592-ad76-d298c87f09be,AUTHORIZATION,,false +46729,a3d6c0e4-6671-4592-ad76-d298c87f09be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46730,a3d6c0e4-6671-4592-ad76-d298c87f09be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46731,a3d6c0e4-6671-4592-ad76-d298c87f09be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46732,f5d2b76d-b2c3-4bc5-ad73-449332d44013,LIST_ACCOUNTS,xs2aListAccounts,true -46733,f5d2b76d-b2c3-4bc5-ad73-449332d44013,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46733,f5d2b76d-b2c3-4bc5-ad73-449332d44013,LIST_TRANSACTIONS,xs2aListTransactions,true 46734,f5d2b76d-b2c3-4bc5-ad73-449332d44013,AUTHORIZATION,,true 46735,f5d2b76d-b2c3-4bc5-ad73-449332d44013,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46736,f5d2b76d-b2c3-4bc5-ad73-449332d44013,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46737,f5d2b76d-b2c3-4bc5-ad73-449332d44013,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46738,7fd0190b-2536-428b-a313-67f2d9dde14f,LIST_ACCOUNTS,hbciListAccounts,false -46739,7fd0190b-2536-428b-a313-67f2d9dde14f,LIST_TRANSACTIONS,hbciListTransactions,false -46740,7fd0190b-2536-428b-a313-67f2d9dde14f,AUTHORIZATION,,false -46741,7fd0190b-2536-428b-a313-67f2d9dde14f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46742,7fd0190b-2536-428b-a313-67f2d9dde14f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46743,7fd0190b-2536-428b-a313-67f2d9dde14f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46738,2271d642-9376-49bc-bbe6-4b17f8d99282,LIST_ACCOUNTS,hbciListAccounts,false +46739,2271d642-9376-49bc-bbe6-4b17f8d99282,LIST_TRANSACTIONS,hbciListTransactions,false +46740,2271d642-9376-49bc-bbe6-4b17f8d99282,AUTHORIZATION,,false +46741,2271d642-9376-49bc-bbe6-4b17f8d99282,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46742,2271d642-9376-49bc-bbe6-4b17f8d99282,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46743,2271d642-9376-49bc-bbe6-4b17f8d99282,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46744,4d1c0428-36a7-4176-9b7d-a516f9131182,LIST_ACCOUNTS,xs2aListAccounts,true -46745,4d1c0428-36a7-4176-9b7d-a516f9131182,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46745,4d1c0428-36a7-4176-9b7d-a516f9131182,LIST_TRANSACTIONS,xs2aListTransactions,true 46746,4d1c0428-36a7-4176-9b7d-a516f9131182,AUTHORIZATION,,true 46747,4d1c0428-36a7-4176-9b7d-a516f9131182,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46748,4d1c0428-36a7-4176-9b7d-a516f9131182,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46749,4d1c0428-36a7-4176-9b7d-a516f9131182,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46750,220887e4-1c87-4262-b44b-cdb6fed02beb,LIST_ACCOUNTS,hbciListAccounts,false -46751,220887e4-1c87-4262-b44b-cdb6fed02beb,LIST_TRANSACTIONS,hbciListTransactions,false -46752,220887e4-1c87-4262-b44b-cdb6fed02beb,AUTHORIZATION,,false -46753,220887e4-1c87-4262-b44b-cdb6fed02beb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46754,220887e4-1c87-4262-b44b-cdb6fed02beb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46755,220887e4-1c87-4262-b44b-cdb6fed02beb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46750,86cbbdf0-d422-4ba6-8863-22599dacd6f5,LIST_ACCOUNTS,hbciListAccounts,false +46751,86cbbdf0-d422-4ba6-8863-22599dacd6f5,LIST_TRANSACTIONS,hbciListTransactions,false +46752,86cbbdf0-d422-4ba6-8863-22599dacd6f5,AUTHORIZATION,,false +46753,86cbbdf0-d422-4ba6-8863-22599dacd6f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46754,86cbbdf0-d422-4ba6-8863-22599dacd6f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46755,86cbbdf0-d422-4ba6-8863-22599dacd6f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46756,c85fbb13-384e-4716-a2bc-47007ba29fa1,LIST_ACCOUNTS,xs2aListAccounts,true -46757,c85fbb13-384e-4716-a2bc-47007ba29fa1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46757,c85fbb13-384e-4716-a2bc-47007ba29fa1,LIST_TRANSACTIONS,xs2aListTransactions,true 46758,c85fbb13-384e-4716-a2bc-47007ba29fa1,AUTHORIZATION,,true 46759,c85fbb13-384e-4716-a2bc-47007ba29fa1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46760,c85fbb13-384e-4716-a2bc-47007ba29fa1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46761,c85fbb13-384e-4716-a2bc-47007ba29fa1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46762,733da1bd-cada-4e7d-af23-056d31295797,LIST_ACCOUNTS,hbciListAccounts,false -46763,733da1bd-cada-4e7d-af23-056d31295797,LIST_TRANSACTIONS,hbciListTransactions,false -46764,733da1bd-cada-4e7d-af23-056d31295797,AUTHORIZATION,,false -46765,733da1bd-cada-4e7d-af23-056d31295797,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46766,733da1bd-cada-4e7d-af23-056d31295797,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46767,733da1bd-cada-4e7d-af23-056d31295797,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46762,1b7497eb-d699-4f1e-99b4-83f0a922569e,LIST_ACCOUNTS,hbciListAccounts,false +46763,1b7497eb-d699-4f1e-99b4-83f0a922569e,LIST_TRANSACTIONS,hbciListTransactions,false +46764,1b7497eb-d699-4f1e-99b4-83f0a922569e,AUTHORIZATION,,false +46765,1b7497eb-d699-4f1e-99b4-83f0a922569e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46766,1b7497eb-d699-4f1e-99b4-83f0a922569e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46767,1b7497eb-d699-4f1e-99b4-83f0a922569e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46768,ac73d748-4312-4e4a-b619-f2b7d9a2e1b1,LIST_ACCOUNTS,xs2aListAccounts,true -46769,ac73d748-4312-4e4a-b619-f2b7d9a2e1b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46769,ac73d748-4312-4e4a-b619-f2b7d9a2e1b1,LIST_TRANSACTIONS,xs2aListTransactions,true 46770,ac73d748-4312-4e4a-b619-f2b7d9a2e1b1,AUTHORIZATION,,true 46771,ac73d748-4312-4e4a-b619-f2b7d9a2e1b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46772,ac73d748-4312-4e4a-b619-f2b7d9a2e1b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46773,ac73d748-4312-4e4a-b619-f2b7d9a2e1b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46774,55c470d4-4e62-4de6-acdf-d21f1840dc32,LIST_ACCOUNTS,hbciListAccounts,false -46775,55c470d4-4e62-4de6-acdf-d21f1840dc32,LIST_TRANSACTIONS,hbciListTransactions,false -46776,55c470d4-4e62-4de6-acdf-d21f1840dc32,AUTHORIZATION,,false -46777,55c470d4-4e62-4de6-acdf-d21f1840dc32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46778,55c470d4-4e62-4de6-acdf-d21f1840dc32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46779,55c470d4-4e62-4de6-acdf-d21f1840dc32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46774,5a976d75-1996-40f5-8d84-07ad4f56056c,LIST_ACCOUNTS,hbciListAccounts,false +46775,5a976d75-1996-40f5-8d84-07ad4f56056c,LIST_TRANSACTIONS,hbciListTransactions,false +46776,5a976d75-1996-40f5-8d84-07ad4f56056c,AUTHORIZATION,,false +46777,5a976d75-1996-40f5-8d84-07ad4f56056c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46778,5a976d75-1996-40f5-8d84-07ad4f56056c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46779,5a976d75-1996-40f5-8d84-07ad4f56056c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46780,9deb36eb-7086-4965-8128-b72ca82fea3d,LIST_ACCOUNTS,xs2aListAccounts,true -46781,9deb36eb-7086-4965-8128-b72ca82fea3d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46781,9deb36eb-7086-4965-8128-b72ca82fea3d,LIST_TRANSACTIONS,xs2aListTransactions,true 46782,9deb36eb-7086-4965-8128-b72ca82fea3d,AUTHORIZATION,,true 46783,9deb36eb-7086-4965-8128-b72ca82fea3d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46784,9deb36eb-7086-4965-8128-b72ca82fea3d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46785,9deb36eb-7086-4965-8128-b72ca82fea3d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46786,dcf44613-a1cf-46fa-a671-b795cff28308,LIST_ACCOUNTS,hbciListAccounts,false -46787,dcf44613-a1cf-46fa-a671-b795cff28308,LIST_TRANSACTIONS,hbciListTransactions,false -46788,dcf44613-a1cf-46fa-a671-b795cff28308,AUTHORIZATION,,false -46789,dcf44613-a1cf-46fa-a671-b795cff28308,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46790,dcf44613-a1cf-46fa-a671-b795cff28308,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46791,dcf44613-a1cf-46fa-a671-b795cff28308,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46786,512101da-693c-4f98-bcd2-b7abb61f1402,LIST_ACCOUNTS,hbciListAccounts,false +46787,512101da-693c-4f98-bcd2-b7abb61f1402,LIST_TRANSACTIONS,hbciListTransactions,false +46788,512101da-693c-4f98-bcd2-b7abb61f1402,AUTHORIZATION,,false +46789,512101da-693c-4f98-bcd2-b7abb61f1402,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46790,512101da-693c-4f98-bcd2-b7abb61f1402,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46791,512101da-693c-4f98-bcd2-b7abb61f1402,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46792,8792b5a6-357b-464e-8eff-23a42c94ece9,LIST_ACCOUNTS,xs2aListAccounts,true -46793,8792b5a6-357b-464e-8eff-23a42c94ece9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46793,8792b5a6-357b-464e-8eff-23a42c94ece9,LIST_TRANSACTIONS,xs2aListTransactions,true 46794,8792b5a6-357b-464e-8eff-23a42c94ece9,AUTHORIZATION,,true 46795,8792b5a6-357b-464e-8eff-23a42c94ece9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46796,8792b5a6-357b-464e-8eff-23a42c94ece9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46797,8792b5a6-357b-464e-8eff-23a42c94ece9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46798,89885a1b-a5ca-4320-a16f-0f63350a5d11,LIST_ACCOUNTS,hbciListAccounts,false -46799,89885a1b-a5ca-4320-a16f-0f63350a5d11,LIST_TRANSACTIONS,hbciListTransactions,false -46800,89885a1b-a5ca-4320-a16f-0f63350a5d11,AUTHORIZATION,,false -46801,89885a1b-a5ca-4320-a16f-0f63350a5d11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46802,89885a1b-a5ca-4320-a16f-0f63350a5d11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46803,89885a1b-a5ca-4320-a16f-0f63350a5d11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46798,173fa2c3-d9cd-4c70-a112-d32d62c3cf67,LIST_ACCOUNTS,hbciListAccounts,false +46799,173fa2c3-d9cd-4c70-a112-d32d62c3cf67,LIST_TRANSACTIONS,hbciListTransactions,false +46800,173fa2c3-d9cd-4c70-a112-d32d62c3cf67,AUTHORIZATION,,false +46801,173fa2c3-d9cd-4c70-a112-d32d62c3cf67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46802,173fa2c3-d9cd-4c70-a112-d32d62c3cf67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46803,173fa2c3-d9cd-4c70-a112-d32d62c3cf67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46804,ab28b57f-bae8-4fff-99a6-e65886381a09,LIST_ACCOUNTS,xs2aListAccounts,true -46805,ab28b57f-bae8-4fff-99a6-e65886381a09,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46805,ab28b57f-bae8-4fff-99a6-e65886381a09,LIST_TRANSACTIONS,xs2aListTransactions,true 46806,ab28b57f-bae8-4fff-99a6-e65886381a09,AUTHORIZATION,,true 46807,ab28b57f-bae8-4fff-99a6-e65886381a09,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46808,ab28b57f-bae8-4fff-99a6-e65886381a09,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46809,ab28b57f-bae8-4fff-99a6-e65886381a09,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46810,64be638e-a96e-42f5-96eb-ab5685c5fe32,LIST_ACCOUNTS,hbciListAccounts,false -46811,64be638e-a96e-42f5-96eb-ab5685c5fe32,LIST_TRANSACTIONS,hbciListTransactions,false -46812,64be638e-a96e-42f5-96eb-ab5685c5fe32,AUTHORIZATION,,false -46813,64be638e-a96e-42f5-96eb-ab5685c5fe32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46814,64be638e-a96e-42f5-96eb-ab5685c5fe32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46815,64be638e-a96e-42f5-96eb-ab5685c5fe32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46810,cf0ef062-668c-4684-8f67-07a7eae722c5,LIST_ACCOUNTS,hbciListAccounts,false +46811,cf0ef062-668c-4684-8f67-07a7eae722c5,LIST_TRANSACTIONS,hbciListTransactions,false +46812,cf0ef062-668c-4684-8f67-07a7eae722c5,AUTHORIZATION,,false +46813,cf0ef062-668c-4684-8f67-07a7eae722c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46814,cf0ef062-668c-4684-8f67-07a7eae722c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46815,cf0ef062-668c-4684-8f67-07a7eae722c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46816,4d74c645-04e9-47ea-8691-7f3867727bf0,LIST_ACCOUNTS,xs2aListAccounts,true -46817,4d74c645-04e9-47ea-8691-7f3867727bf0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46817,4d74c645-04e9-47ea-8691-7f3867727bf0,LIST_TRANSACTIONS,xs2aListTransactions,true 46818,4d74c645-04e9-47ea-8691-7f3867727bf0,AUTHORIZATION,,true 46819,4d74c645-04e9-47ea-8691-7f3867727bf0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46820,4d74c645-04e9-47ea-8691-7f3867727bf0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46821,4d74c645-04e9-47ea-8691-7f3867727bf0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46822,49eefda0-a60a-4fc5-a913-2668123d5855,LIST_ACCOUNTS,hbciListAccounts,false -46823,49eefda0-a60a-4fc5-a913-2668123d5855,LIST_TRANSACTIONS,hbciListTransactions,false -46824,49eefda0-a60a-4fc5-a913-2668123d5855,AUTHORIZATION,,false -46825,49eefda0-a60a-4fc5-a913-2668123d5855,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46826,49eefda0-a60a-4fc5-a913-2668123d5855,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46827,49eefda0-a60a-4fc5-a913-2668123d5855,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46822,32d6132a-4614-46c7-ac4c-bd46b503c826,LIST_ACCOUNTS,hbciListAccounts,false +46823,32d6132a-4614-46c7-ac4c-bd46b503c826,LIST_TRANSACTIONS,hbciListTransactions,false +46824,32d6132a-4614-46c7-ac4c-bd46b503c826,AUTHORIZATION,,false +46825,32d6132a-4614-46c7-ac4c-bd46b503c826,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46826,32d6132a-4614-46c7-ac4c-bd46b503c826,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46827,32d6132a-4614-46c7-ac4c-bd46b503c826,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46828,436e2607-bda8-41e6-a0c2-ebe0634bb930,LIST_ACCOUNTS,xs2aListAccounts,true -46829,436e2607-bda8-41e6-a0c2-ebe0634bb930,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46829,436e2607-bda8-41e6-a0c2-ebe0634bb930,LIST_TRANSACTIONS,xs2aListTransactions,true 46830,436e2607-bda8-41e6-a0c2-ebe0634bb930,AUTHORIZATION,,true 46831,436e2607-bda8-41e6-a0c2-ebe0634bb930,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46832,436e2607-bda8-41e6-a0c2-ebe0634bb930,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46833,436e2607-bda8-41e6-a0c2-ebe0634bb930,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46834,1bf8ce37-6987-42ea-821b-b2b37be40c8f,LIST_ACCOUNTS,hbciListAccounts,false -46835,1bf8ce37-6987-42ea-821b-b2b37be40c8f,LIST_TRANSACTIONS,hbciListTransactions,false -46836,1bf8ce37-6987-42ea-821b-b2b37be40c8f,AUTHORIZATION,,false -46837,1bf8ce37-6987-42ea-821b-b2b37be40c8f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46838,1bf8ce37-6987-42ea-821b-b2b37be40c8f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46839,1bf8ce37-6987-42ea-821b-b2b37be40c8f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46834,d9f73bf4-74d6-46ba-bad2-020ace511bcb,LIST_ACCOUNTS,hbciListAccounts,false +46835,d9f73bf4-74d6-46ba-bad2-020ace511bcb,LIST_TRANSACTIONS,hbciListTransactions,false +46836,d9f73bf4-74d6-46ba-bad2-020ace511bcb,AUTHORIZATION,,false +46837,d9f73bf4-74d6-46ba-bad2-020ace511bcb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46838,d9f73bf4-74d6-46ba-bad2-020ace511bcb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46839,d9f73bf4-74d6-46ba-bad2-020ace511bcb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46840,01f71386-e976-4ba0-8637-d1042983abea,LIST_ACCOUNTS,xs2aListAccounts,true -46841,01f71386-e976-4ba0-8637-d1042983abea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46841,01f71386-e976-4ba0-8637-d1042983abea,LIST_TRANSACTIONS,xs2aListTransactions,true 46842,01f71386-e976-4ba0-8637-d1042983abea,AUTHORIZATION,,true 46843,01f71386-e976-4ba0-8637-d1042983abea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46844,01f71386-e976-4ba0-8637-d1042983abea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46845,01f71386-e976-4ba0-8637-d1042983abea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46846,a3ec48cd-f0ad-4622-b769-c3317c5dd1e0,LIST_ACCOUNTS,hbciListAccounts,false -46847,a3ec48cd-f0ad-4622-b769-c3317c5dd1e0,LIST_TRANSACTIONS,hbciListTransactions,false -46848,a3ec48cd-f0ad-4622-b769-c3317c5dd1e0,AUTHORIZATION,,false -46849,a3ec48cd-f0ad-4622-b769-c3317c5dd1e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46850,a3ec48cd-f0ad-4622-b769-c3317c5dd1e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46851,a3ec48cd-f0ad-4622-b769-c3317c5dd1e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46846,b313e340-12c8-413d-8686-068b511efb19,LIST_ACCOUNTS,hbciListAccounts,false +46847,b313e340-12c8-413d-8686-068b511efb19,LIST_TRANSACTIONS,hbciListTransactions,false +46848,b313e340-12c8-413d-8686-068b511efb19,AUTHORIZATION,,false +46849,b313e340-12c8-413d-8686-068b511efb19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46850,b313e340-12c8-413d-8686-068b511efb19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46851,b313e340-12c8-413d-8686-068b511efb19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46852,6da6ac67-9ec8-45ef-95a7-91ce39802d91,LIST_ACCOUNTS,xs2aListAccounts,true -46853,6da6ac67-9ec8-45ef-95a7-91ce39802d91,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46853,6da6ac67-9ec8-45ef-95a7-91ce39802d91,LIST_TRANSACTIONS,xs2aListTransactions,true 46854,6da6ac67-9ec8-45ef-95a7-91ce39802d91,AUTHORIZATION,,true 46855,6da6ac67-9ec8-45ef-95a7-91ce39802d91,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46856,6da6ac67-9ec8-45ef-95a7-91ce39802d91,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46857,6da6ac67-9ec8-45ef-95a7-91ce39802d91,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46858,861846be-2c26-43de-aa1b-8ac2bff8bb43,LIST_ACCOUNTS,hbciListAccounts,false -46859,861846be-2c26-43de-aa1b-8ac2bff8bb43,LIST_TRANSACTIONS,hbciListTransactions,false -46860,861846be-2c26-43de-aa1b-8ac2bff8bb43,AUTHORIZATION,,false -46861,861846be-2c26-43de-aa1b-8ac2bff8bb43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46862,861846be-2c26-43de-aa1b-8ac2bff8bb43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46863,861846be-2c26-43de-aa1b-8ac2bff8bb43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46858,3f483126-ac4e-4ae0-a1c2-bb65ae0bdbd2,LIST_ACCOUNTS,hbciListAccounts,false +46859,3f483126-ac4e-4ae0-a1c2-bb65ae0bdbd2,LIST_TRANSACTIONS,hbciListTransactions,false +46860,3f483126-ac4e-4ae0-a1c2-bb65ae0bdbd2,AUTHORIZATION,,false +46861,3f483126-ac4e-4ae0-a1c2-bb65ae0bdbd2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46862,3f483126-ac4e-4ae0-a1c2-bb65ae0bdbd2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46863,3f483126-ac4e-4ae0-a1c2-bb65ae0bdbd2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46864,f2a52a94-077f-463f-b1d4-34330f191533,LIST_ACCOUNTS,xs2aListAccounts,true -46865,f2a52a94-077f-463f-b1d4-34330f191533,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46865,f2a52a94-077f-463f-b1d4-34330f191533,LIST_TRANSACTIONS,xs2aListTransactions,true 46866,f2a52a94-077f-463f-b1d4-34330f191533,AUTHORIZATION,,true 46867,f2a52a94-077f-463f-b1d4-34330f191533,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46868,f2a52a94-077f-463f-b1d4-34330f191533,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46869,f2a52a94-077f-463f-b1d4-34330f191533,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46870,a723e33e-bc35-45f7-a7b5-e20efc74fc6d,LIST_ACCOUNTS,hbciListAccounts,false -46871,a723e33e-bc35-45f7-a7b5-e20efc74fc6d,LIST_TRANSACTIONS,hbciListTransactions,false -46872,a723e33e-bc35-45f7-a7b5-e20efc74fc6d,AUTHORIZATION,,false -46873,a723e33e-bc35-45f7-a7b5-e20efc74fc6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46874,a723e33e-bc35-45f7-a7b5-e20efc74fc6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46875,a723e33e-bc35-45f7-a7b5-e20efc74fc6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46870,665c5c0c-a3b1-4ce7-ac9e-4b4b9bd58424,LIST_ACCOUNTS,hbciListAccounts,false +46871,665c5c0c-a3b1-4ce7-ac9e-4b4b9bd58424,LIST_TRANSACTIONS,hbciListTransactions,false +46872,665c5c0c-a3b1-4ce7-ac9e-4b4b9bd58424,AUTHORIZATION,,false +46873,665c5c0c-a3b1-4ce7-ac9e-4b4b9bd58424,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46874,665c5c0c-a3b1-4ce7-ac9e-4b4b9bd58424,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46875,665c5c0c-a3b1-4ce7-ac9e-4b4b9bd58424,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46876,0fadeaed-e28a-4146-8d96-e6e8cb4afc7b,LIST_ACCOUNTS,xs2aListAccounts,true -46877,0fadeaed-e28a-4146-8d96-e6e8cb4afc7b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46877,0fadeaed-e28a-4146-8d96-e6e8cb4afc7b,LIST_TRANSACTIONS,xs2aListTransactions,true 46878,0fadeaed-e28a-4146-8d96-e6e8cb4afc7b,AUTHORIZATION,,true 46879,0fadeaed-e28a-4146-8d96-e6e8cb4afc7b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46880,0fadeaed-e28a-4146-8d96-e6e8cb4afc7b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46881,0fadeaed-e28a-4146-8d96-e6e8cb4afc7b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46882,d261e0c1-feb2-4ca8-9312-9209406a5d80,LIST_ACCOUNTS,hbciListAccounts,false -46883,d261e0c1-feb2-4ca8-9312-9209406a5d80,LIST_TRANSACTIONS,hbciListTransactions,false -46884,d261e0c1-feb2-4ca8-9312-9209406a5d80,AUTHORIZATION,,false -46885,d261e0c1-feb2-4ca8-9312-9209406a5d80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46886,d261e0c1-feb2-4ca8-9312-9209406a5d80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46887,d261e0c1-feb2-4ca8-9312-9209406a5d80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46882,9457787a-d9db-448b-b0be-acc55d7e378e,LIST_ACCOUNTS,hbciListAccounts,false +46883,9457787a-d9db-448b-b0be-acc55d7e378e,LIST_TRANSACTIONS,hbciListTransactions,false +46884,9457787a-d9db-448b-b0be-acc55d7e378e,AUTHORIZATION,,false +46885,9457787a-d9db-448b-b0be-acc55d7e378e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46886,9457787a-d9db-448b-b0be-acc55d7e378e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46887,9457787a-d9db-448b-b0be-acc55d7e378e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46888,ed28fcd2-f7d3-4c44-a4f9-ca2bac29e617,LIST_ACCOUNTS,xs2aListAccounts,true -46889,ed28fcd2-f7d3-4c44-a4f9-ca2bac29e617,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46889,ed28fcd2-f7d3-4c44-a4f9-ca2bac29e617,LIST_TRANSACTIONS,xs2aListTransactions,true 46890,ed28fcd2-f7d3-4c44-a4f9-ca2bac29e617,AUTHORIZATION,,true 46891,ed28fcd2-f7d3-4c44-a4f9-ca2bac29e617,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46892,ed28fcd2-f7d3-4c44-a4f9-ca2bac29e617,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46893,ed28fcd2-f7d3-4c44-a4f9-ca2bac29e617,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46894,c0dab2f1-dfce-44bd-ba46-80edd71448d0,LIST_ACCOUNTS,hbciListAccounts,false -46895,c0dab2f1-dfce-44bd-ba46-80edd71448d0,LIST_TRANSACTIONS,hbciListTransactions,false -46896,c0dab2f1-dfce-44bd-ba46-80edd71448d0,AUTHORIZATION,,false -46897,c0dab2f1-dfce-44bd-ba46-80edd71448d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46898,c0dab2f1-dfce-44bd-ba46-80edd71448d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46899,c0dab2f1-dfce-44bd-ba46-80edd71448d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46894,f2127845-1272-4663-abde-299154a98eda,LIST_ACCOUNTS,hbciListAccounts,false +46895,f2127845-1272-4663-abde-299154a98eda,LIST_TRANSACTIONS,hbciListTransactions,false +46896,f2127845-1272-4663-abde-299154a98eda,AUTHORIZATION,,false +46897,f2127845-1272-4663-abde-299154a98eda,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46898,f2127845-1272-4663-abde-299154a98eda,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46899,f2127845-1272-4663-abde-299154a98eda,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46900,76e41bc8-4d8b-4cb4-8155-da61b6452b90,LIST_ACCOUNTS,xs2aListAccounts,true -46901,76e41bc8-4d8b-4cb4-8155-da61b6452b90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46901,76e41bc8-4d8b-4cb4-8155-da61b6452b90,LIST_TRANSACTIONS,xs2aListTransactions,true 46902,76e41bc8-4d8b-4cb4-8155-da61b6452b90,AUTHORIZATION,,true 46903,76e41bc8-4d8b-4cb4-8155-da61b6452b90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46904,76e41bc8-4d8b-4cb4-8155-da61b6452b90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46905,76e41bc8-4d8b-4cb4-8155-da61b6452b90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46906,fe2aea8b-bb06-411f-a774-67ece7a4fe77,LIST_ACCOUNTS,hbciListAccounts,false -46907,fe2aea8b-bb06-411f-a774-67ece7a4fe77,LIST_TRANSACTIONS,hbciListTransactions,false -46908,fe2aea8b-bb06-411f-a774-67ece7a4fe77,AUTHORIZATION,,false -46909,fe2aea8b-bb06-411f-a774-67ece7a4fe77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46910,fe2aea8b-bb06-411f-a774-67ece7a4fe77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46911,fe2aea8b-bb06-411f-a774-67ece7a4fe77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46906,d3304a05-cfdd-4872-bf35-e363cd6390f7,LIST_ACCOUNTS,hbciListAccounts,false +46907,d3304a05-cfdd-4872-bf35-e363cd6390f7,LIST_TRANSACTIONS,hbciListTransactions,false +46908,d3304a05-cfdd-4872-bf35-e363cd6390f7,AUTHORIZATION,,false +46909,d3304a05-cfdd-4872-bf35-e363cd6390f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46910,d3304a05-cfdd-4872-bf35-e363cd6390f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46911,d3304a05-cfdd-4872-bf35-e363cd6390f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46912,2ad67639-7cad-460d-bff2-fd6efdcde0d1,LIST_ACCOUNTS,xs2aListAccounts,true -46913,2ad67639-7cad-460d-bff2-fd6efdcde0d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46913,2ad67639-7cad-460d-bff2-fd6efdcde0d1,LIST_TRANSACTIONS,xs2aListTransactions,true 46914,2ad67639-7cad-460d-bff2-fd6efdcde0d1,AUTHORIZATION,,true 46915,2ad67639-7cad-460d-bff2-fd6efdcde0d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46916,2ad67639-7cad-460d-bff2-fd6efdcde0d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46917,2ad67639-7cad-460d-bff2-fd6efdcde0d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46918,6ff8d99a-3a62-4ead-a138-ce99d2a9e382,LIST_ACCOUNTS,hbciListAccounts,false -46919,6ff8d99a-3a62-4ead-a138-ce99d2a9e382,LIST_TRANSACTIONS,hbciListTransactions,false -46920,6ff8d99a-3a62-4ead-a138-ce99d2a9e382,AUTHORIZATION,,false -46921,6ff8d99a-3a62-4ead-a138-ce99d2a9e382,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46922,6ff8d99a-3a62-4ead-a138-ce99d2a9e382,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46923,6ff8d99a-3a62-4ead-a138-ce99d2a9e382,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46918,4d9c9d01-8a49-44f7-8d07-e60544b71cb4,LIST_ACCOUNTS,hbciListAccounts,false +46919,4d9c9d01-8a49-44f7-8d07-e60544b71cb4,LIST_TRANSACTIONS,hbciListTransactions,false +46920,4d9c9d01-8a49-44f7-8d07-e60544b71cb4,AUTHORIZATION,,false +46921,4d9c9d01-8a49-44f7-8d07-e60544b71cb4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46922,4d9c9d01-8a49-44f7-8d07-e60544b71cb4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46923,4d9c9d01-8a49-44f7-8d07-e60544b71cb4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46924,3be8fa7e-4c18-4eec-beb6-e757606b7721,LIST_ACCOUNTS,xs2aListAccounts,true -46925,3be8fa7e-4c18-4eec-beb6-e757606b7721,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46925,3be8fa7e-4c18-4eec-beb6-e757606b7721,LIST_TRANSACTIONS,xs2aListTransactions,true 46926,3be8fa7e-4c18-4eec-beb6-e757606b7721,AUTHORIZATION,,true 46927,3be8fa7e-4c18-4eec-beb6-e757606b7721,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46928,3be8fa7e-4c18-4eec-beb6-e757606b7721,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46929,3be8fa7e-4c18-4eec-beb6-e757606b7721,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46930,6253d341-a23e-4da1-8527-01957808ce88,LIST_ACCOUNTS,hbciListAccounts,false -46931,6253d341-a23e-4da1-8527-01957808ce88,LIST_TRANSACTIONS,hbciListTransactions,false -46932,6253d341-a23e-4da1-8527-01957808ce88,AUTHORIZATION,,false -46933,6253d341-a23e-4da1-8527-01957808ce88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46934,6253d341-a23e-4da1-8527-01957808ce88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46935,6253d341-a23e-4da1-8527-01957808ce88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46930,55b4a07d-bb96-4992-af11-131c9775d766,LIST_ACCOUNTS,hbciListAccounts,false +46931,55b4a07d-bb96-4992-af11-131c9775d766,LIST_TRANSACTIONS,hbciListTransactions,false +46932,55b4a07d-bb96-4992-af11-131c9775d766,AUTHORIZATION,,false +46933,55b4a07d-bb96-4992-af11-131c9775d766,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46934,55b4a07d-bb96-4992-af11-131c9775d766,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46935,55b4a07d-bb96-4992-af11-131c9775d766,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46936,7b2946d4-cae7-4774-949b-fe0dc6875ad6,LIST_ACCOUNTS,xs2aListAccounts,true -46937,7b2946d4-cae7-4774-949b-fe0dc6875ad6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46937,7b2946d4-cae7-4774-949b-fe0dc6875ad6,LIST_TRANSACTIONS,xs2aListTransactions,true 46938,7b2946d4-cae7-4774-949b-fe0dc6875ad6,AUTHORIZATION,,true 46939,7b2946d4-cae7-4774-949b-fe0dc6875ad6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46940,7b2946d4-cae7-4774-949b-fe0dc6875ad6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46941,7b2946d4-cae7-4774-949b-fe0dc6875ad6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46942,5caa4a5e-0ef0-414b-b319-4e08bd6d2b9f,LIST_ACCOUNTS,hbciListAccounts,false -46943,5caa4a5e-0ef0-414b-b319-4e08bd6d2b9f,LIST_TRANSACTIONS,hbciListTransactions,false -46944,5caa4a5e-0ef0-414b-b319-4e08bd6d2b9f,AUTHORIZATION,,false -46945,5caa4a5e-0ef0-414b-b319-4e08bd6d2b9f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46946,5caa4a5e-0ef0-414b-b319-4e08bd6d2b9f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46947,5caa4a5e-0ef0-414b-b319-4e08bd6d2b9f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46942,a85a580a-a50e-485b-940a-7771c091bd8d,LIST_ACCOUNTS,hbciListAccounts,false +46943,a85a580a-a50e-485b-940a-7771c091bd8d,LIST_TRANSACTIONS,hbciListTransactions,false +46944,a85a580a-a50e-485b-940a-7771c091bd8d,AUTHORIZATION,,false +46945,a85a580a-a50e-485b-940a-7771c091bd8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46946,a85a580a-a50e-485b-940a-7771c091bd8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46947,a85a580a-a50e-485b-940a-7771c091bd8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46948,ea6a1edc-acdd-4697-8ed5-7ff70f8ddac5,LIST_ACCOUNTS,xs2aListAccounts,true -46949,ea6a1edc-acdd-4697-8ed5-7ff70f8ddac5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46949,ea6a1edc-acdd-4697-8ed5-7ff70f8ddac5,LIST_TRANSACTIONS,xs2aListTransactions,true 46950,ea6a1edc-acdd-4697-8ed5-7ff70f8ddac5,AUTHORIZATION,,true 46951,ea6a1edc-acdd-4697-8ed5-7ff70f8ddac5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46952,ea6a1edc-acdd-4697-8ed5-7ff70f8ddac5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46953,ea6a1edc-acdd-4697-8ed5-7ff70f8ddac5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46954,75ee637c-0cff-462f-9016-cb89a18eb6a8,LIST_ACCOUNTS,hbciListAccounts,false -46955,75ee637c-0cff-462f-9016-cb89a18eb6a8,LIST_TRANSACTIONS,hbciListTransactions,false -46956,75ee637c-0cff-462f-9016-cb89a18eb6a8,AUTHORIZATION,,false -46957,75ee637c-0cff-462f-9016-cb89a18eb6a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46958,75ee637c-0cff-462f-9016-cb89a18eb6a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46959,75ee637c-0cff-462f-9016-cb89a18eb6a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46954,46cb2784-19cd-4b48-a2e8-04d056ff6a2a,LIST_ACCOUNTS,hbciListAccounts,false +46955,46cb2784-19cd-4b48-a2e8-04d056ff6a2a,LIST_TRANSACTIONS,hbciListTransactions,false +46956,46cb2784-19cd-4b48-a2e8-04d056ff6a2a,AUTHORIZATION,,false +46957,46cb2784-19cd-4b48-a2e8-04d056ff6a2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46958,46cb2784-19cd-4b48-a2e8-04d056ff6a2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46959,46cb2784-19cd-4b48-a2e8-04d056ff6a2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46960,292582ef-b8a5-4888-9bcf-84c7e8b80c1a,LIST_ACCOUNTS,xs2aListAccounts,true -46961,292582ef-b8a5-4888-9bcf-84c7e8b80c1a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46961,292582ef-b8a5-4888-9bcf-84c7e8b80c1a,LIST_TRANSACTIONS,xs2aListTransactions,true 46962,292582ef-b8a5-4888-9bcf-84c7e8b80c1a,AUTHORIZATION,,true 46963,292582ef-b8a5-4888-9bcf-84c7e8b80c1a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46964,292582ef-b8a5-4888-9bcf-84c7e8b80c1a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46965,292582ef-b8a5-4888-9bcf-84c7e8b80c1a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46966,761842d1-dffc-4168-8511-f90baf9add9e,LIST_ACCOUNTS,hbciListAccounts,false -46967,761842d1-dffc-4168-8511-f90baf9add9e,LIST_TRANSACTIONS,hbciListTransactions,false -46968,761842d1-dffc-4168-8511-f90baf9add9e,AUTHORIZATION,,false -46969,761842d1-dffc-4168-8511-f90baf9add9e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46970,761842d1-dffc-4168-8511-f90baf9add9e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46971,761842d1-dffc-4168-8511-f90baf9add9e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46966,91c5eb86-fb18-4524-87f6-e324d97c8bf9,LIST_ACCOUNTS,hbciListAccounts,false +46967,91c5eb86-fb18-4524-87f6-e324d97c8bf9,LIST_TRANSACTIONS,hbciListTransactions,false +46968,91c5eb86-fb18-4524-87f6-e324d97c8bf9,AUTHORIZATION,,false +46969,91c5eb86-fb18-4524-87f6-e324d97c8bf9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46970,91c5eb86-fb18-4524-87f6-e324d97c8bf9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46971,91c5eb86-fb18-4524-87f6-e324d97c8bf9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46972,350bdc33-7a63-44c1-bb8a-38ba7ef5241e,LIST_ACCOUNTS,xs2aListAccounts,true -46973,350bdc33-7a63-44c1-bb8a-38ba7ef5241e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46973,350bdc33-7a63-44c1-bb8a-38ba7ef5241e,LIST_TRANSACTIONS,xs2aListTransactions,true 46974,350bdc33-7a63-44c1-bb8a-38ba7ef5241e,AUTHORIZATION,,true 46975,350bdc33-7a63-44c1-bb8a-38ba7ef5241e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46976,350bdc33-7a63-44c1-bb8a-38ba7ef5241e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46977,350bdc33-7a63-44c1-bb8a-38ba7ef5241e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46978,f6c3ca04-0f0a-422e-89ef-11af204a1620,LIST_ACCOUNTS,hbciListAccounts,false -46979,f6c3ca04-0f0a-422e-89ef-11af204a1620,LIST_TRANSACTIONS,hbciListTransactions,false -46980,f6c3ca04-0f0a-422e-89ef-11af204a1620,AUTHORIZATION,,false -46981,f6c3ca04-0f0a-422e-89ef-11af204a1620,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46982,f6c3ca04-0f0a-422e-89ef-11af204a1620,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46983,f6c3ca04-0f0a-422e-89ef-11af204a1620,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46978,42e46371-1d0c-4e8c-864a-91a556f73261,LIST_ACCOUNTS,hbciListAccounts,false +46979,42e46371-1d0c-4e8c-864a-91a556f73261,LIST_TRANSACTIONS,hbciListTransactions,false +46980,42e46371-1d0c-4e8c-864a-91a556f73261,AUTHORIZATION,,false +46981,42e46371-1d0c-4e8c-864a-91a556f73261,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46982,42e46371-1d0c-4e8c-864a-91a556f73261,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46983,42e46371-1d0c-4e8c-864a-91a556f73261,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46984,2c4e8b0b-7131-429d-a4e7-d46edb4b0a2e,LIST_ACCOUNTS,xs2aListAccounts,true -46985,2c4e8b0b-7131-429d-a4e7-d46edb4b0a2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46985,2c4e8b0b-7131-429d-a4e7-d46edb4b0a2e,LIST_TRANSACTIONS,xs2aListTransactions,true 46986,2c4e8b0b-7131-429d-a4e7-d46edb4b0a2e,AUTHORIZATION,,true 46987,2c4e8b0b-7131-429d-a4e7-d46edb4b0a2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 46988,2c4e8b0b-7131-429d-a4e7-d46edb4b0a2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 46989,2c4e8b0b-7131-429d-a4e7-d46edb4b0a2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -46990,277b2aac-4fb5-4c95-a193-55ee4a5677ad,LIST_ACCOUNTS,hbciListAccounts,false -46991,277b2aac-4fb5-4c95-a193-55ee4a5677ad,LIST_TRANSACTIONS,hbciListTransactions,false -46992,277b2aac-4fb5-4c95-a193-55ee4a5677ad,AUTHORIZATION,,false -46993,277b2aac-4fb5-4c95-a193-55ee4a5677ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -46994,277b2aac-4fb5-4c95-a193-55ee4a5677ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -46995,277b2aac-4fb5-4c95-a193-55ee4a5677ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +46990,e0841e98-73b2-41ad-bda7-c0b8dcb90c8e,LIST_ACCOUNTS,hbciListAccounts,false +46991,e0841e98-73b2-41ad-bda7-c0b8dcb90c8e,LIST_TRANSACTIONS,hbciListTransactions,false +46992,e0841e98-73b2-41ad-bda7-c0b8dcb90c8e,AUTHORIZATION,,false +46993,e0841e98-73b2-41ad-bda7-c0b8dcb90c8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +46994,e0841e98-73b2-41ad-bda7-c0b8dcb90c8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +46995,e0841e98-73b2-41ad-bda7-c0b8dcb90c8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 46996,6818e93a-6ba8-42d3-b992-3b7d3e3d34ee,LIST_ACCOUNTS,xs2aListAccounts,true -46997,6818e93a-6ba8-42d3-b992-3b7d3e3d34ee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +46997,6818e93a-6ba8-42d3-b992-3b7d3e3d34ee,LIST_TRANSACTIONS,xs2aListTransactions,true 46998,6818e93a-6ba8-42d3-b992-3b7d3e3d34ee,AUTHORIZATION,,true 46999,6818e93a-6ba8-42d3-b992-3b7d3e3d34ee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47000,6818e93a-6ba8-42d3-b992-3b7d3e3d34ee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47001,6818e93a-6ba8-42d3-b992-3b7d3e3d34ee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47002,41802d35-081f-49ec-b177-5b222c6c1f4a,LIST_ACCOUNTS,hbciListAccounts,false -47003,41802d35-081f-49ec-b177-5b222c6c1f4a,LIST_TRANSACTIONS,hbciListTransactions,false -47004,41802d35-081f-49ec-b177-5b222c6c1f4a,AUTHORIZATION,,false -47005,41802d35-081f-49ec-b177-5b222c6c1f4a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47006,41802d35-081f-49ec-b177-5b222c6c1f4a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47007,41802d35-081f-49ec-b177-5b222c6c1f4a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47002,1a432d46-4df4-4fb2-9d7c-a11ce7ca9599,LIST_ACCOUNTS,hbciListAccounts,false +47003,1a432d46-4df4-4fb2-9d7c-a11ce7ca9599,LIST_TRANSACTIONS,hbciListTransactions,false +47004,1a432d46-4df4-4fb2-9d7c-a11ce7ca9599,AUTHORIZATION,,false +47005,1a432d46-4df4-4fb2-9d7c-a11ce7ca9599,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47006,1a432d46-4df4-4fb2-9d7c-a11ce7ca9599,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47007,1a432d46-4df4-4fb2-9d7c-a11ce7ca9599,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47008,e2e07942-a304-4e7c-98bd-446286b2cc8f,LIST_ACCOUNTS,xs2aListAccounts,true -47009,e2e07942-a304-4e7c-98bd-446286b2cc8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47009,e2e07942-a304-4e7c-98bd-446286b2cc8f,LIST_TRANSACTIONS,xs2aListTransactions,true 47010,e2e07942-a304-4e7c-98bd-446286b2cc8f,AUTHORIZATION,,true 47011,e2e07942-a304-4e7c-98bd-446286b2cc8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47012,e2e07942-a304-4e7c-98bd-446286b2cc8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47013,e2e07942-a304-4e7c-98bd-446286b2cc8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47014,f6bebd24-b075-4605-b8e9-cb2061840b63,LIST_ACCOUNTS,hbciListAccounts,false -47015,f6bebd24-b075-4605-b8e9-cb2061840b63,LIST_TRANSACTIONS,hbciListTransactions,false -47016,f6bebd24-b075-4605-b8e9-cb2061840b63,AUTHORIZATION,,false -47017,f6bebd24-b075-4605-b8e9-cb2061840b63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47018,f6bebd24-b075-4605-b8e9-cb2061840b63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47019,f6bebd24-b075-4605-b8e9-cb2061840b63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47014,c57116ac-7a7b-4316-a638-0cff55ae911a,LIST_ACCOUNTS,hbciListAccounts,false +47015,c57116ac-7a7b-4316-a638-0cff55ae911a,LIST_TRANSACTIONS,hbciListTransactions,false +47016,c57116ac-7a7b-4316-a638-0cff55ae911a,AUTHORIZATION,,false +47017,c57116ac-7a7b-4316-a638-0cff55ae911a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47018,c57116ac-7a7b-4316-a638-0cff55ae911a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47019,c57116ac-7a7b-4316-a638-0cff55ae911a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47020,de48022a-a494-407a-88f3-af85bff75623,LIST_ACCOUNTS,xs2aListAccounts,true -47021,de48022a-a494-407a-88f3-af85bff75623,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47021,de48022a-a494-407a-88f3-af85bff75623,LIST_TRANSACTIONS,xs2aListTransactions,true 47022,de48022a-a494-407a-88f3-af85bff75623,AUTHORIZATION,,true 47023,de48022a-a494-407a-88f3-af85bff75623,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47024,de48022a-a494-407a-88f3-af85bff75623,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47025,de48022a-a494-407a-88f3-af85bff75623,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47026,3011722f-5aa8-43b3-904e-1023071f146f,LIST_ACCOUNTS,hbciListAccounts,false -47027,3011722f-5aa8-43b3-904e-1023071f146f,LIST_TRANSACTIONS,hbciListTransactions,false -47028,3011722f-5aa8-43b3-904e-1023071f146f,AUTHORIZATION,,false -47029,3011722f-5aa8-43b3-904e-1023071f146f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47030,3011722f-5aa8-43b3-904e-1023071f146f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47031,3011722f-5aa8-43b3-904e-1023071f146f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47026,b4e8703a-c119-432b-bc33-e487a87f9cc8,LIST_ACCOUNTS,hbciListAccounts,false +47027,b4e8703a-c119-432b-bc33-e487a87f9cc8,LIST_TRANSACTIONS,hbciListTransactions,false +47028,b4e8703a-c119-432b-bc33-e487a87f9cc8,AUTHORIZATION,,false +47029,b4e8703a-c119-432b-bc33-e487a87f9cc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47030,b4e8703a-c119-432b-bc33-e487a87f9cc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47031,b4e8703a-c119-432b-bc33-e487a87f9cc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47032,0dcf13a0-2370-4c34-aca3-dd1e78833929,LIST_ACCOUNTS,xs2aListAccounts,true -47033,0dcf13a0-2370-4c34-aca3-dd1e78833929,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47033,0dcf13a0-2370-4c34-aca3-dd1e78833929,LIST_TRANSACTIONS,xs2aListTransactions,true 47034,0dcf13a0-2370-4c34-aca3-dd1e78833929,AUTHORIZATION,,true 47035,0dcf13a0-2370-4c34-aca3-dd1e78833929,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47036,0dcf13a0-2370-4c34-aca3-dd1e78833929,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47037,0dcf13a0-2370-4c34-aca3-dd1e78833929,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47038,77cd168a-768d-4eb6-9585-f1bd56cb9dc0,LIST_ACCOUNTS,hbciListAccounts,false -47039,77cd168a-768d-4eb6-9585-f1bd56cb9dc0,LIST_TRANSACTIONS,hbciListTransactions,false -47040,77cd168a-768d-4eb6-9585-f1bd56cb9dc0,AUTHORIZATION,,false -47041,77cd168a-768d-4eb6-9585-f1bd56cb9dc0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47042,77cd168a-768d-4eb6-9585-f1bd56cb9dc0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47043,77cd168a-768d-4eb6-9585-f1bd56cb9dc0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47038,fe6a4925-a963-428e-82af-77b74922b370,LIST_ACCOUNTS,hbciListAccounts,false +47039,fe6a4925-a963-428e-82af-77b74922b370,LIST_TRANSACTIONS,hbciListTransactions,false +47040,fe6a4925-a963-428e-82af-77b74922b370,AUTHORIZATION,,false +47041,fe6a4925-a963-428e-82af-77b74922b370,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47042,fe6a4925-a963-428e-82af-77b74922b370,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47043,fe6a4925-a963-428e-82af-77b74922b370,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47044,05fe9e32-b56c-4cff-9d55-660ca3233fc5,LIST_ACCOUNTS,xs2aListAccounts,true -47045,05fe9e32-b56c-4cff-9d55-660ca3233fc5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47045,05fe9e32-b56c-4cff-9d55-660ca3233fc5,LIST_TRANSACTIONS,xs2aListTransactions,true 47046,05fe9e32-b56c-4cff-9d55-660ca3233fc5,AUTHORIZATION,,true 47047,05fe9e32-b56c-4cff-9d55-660ca3233fc5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47048,05fe9e32-b56c-4cff-9d55-660ca3233fc5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47049,05fe9e32-b56c-4cff-9d55-660ca3233fc5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47050,201dcd20-de0e-44ec-ab67-7b9e967fe30f,LIST_ACCOUNTS,hbciListAccounts,false -47051,201dcd20-de0e-44ec-ab67-7b9e967fe30f,LIST_TRANSACTIONS,hbciListTransactions,false -47052,201dcd20-de0e-44ec-ab67-7b9e967fe30f,AUTHORIZATION,,false -47053,201dcd20-de0e-44ec-ab67-7b9e967fe30f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47054,201dcd20-de0e-44ec-ab67-7b9e967fe30f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47055,201dcd20-de0e-44ec-ab67-7b9e967fe30f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47050,b3f95bc1-51e5-448c-b0b8-401c481f6094,LIST_ACCOUNTS,hbciListAccounts,false +47051,b3f95bc1-51e5-448c-b0b8-401c481f6094,LIST_TRANSACTIONS,hbciListTransactions,false +47052,b3f95bc1-51e5-448c-b0b8-401c481f6094,AUTHORIZATION,,false +47053,b3f95bc1-51e5-448c-b0b8-401c481f6094,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47054,b3f95bc1-51e5-448c-b0b8-401c481f6094,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47055,b3f95bc1-51e5-448c-b0b8-401c481f6094,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47056,071bd53e-39f1-401f-90bd-c18e779c921c,LIST_ACCOUNTS,xs2aListAccounts,true -47057,071bd53e-39f1-401f-90bd-c18e779c921c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47057,071bd53e-39f1-401f-90bd-c18e779c921c,LIST_TRANSACTIONS,xs2aListTransactions,true 47058,071bd53e-39f1-401f-90bd-c18e779c921c,AUTHORIZATION,,true 47059,071bd53e-39f1-401f-90bd-c18e779c921c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47060,071bd53e-39f1-401f-90bd-c18e779c921c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47061,071bd53e-39f1-401f-90bd-c18e779c921c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47062,f17c3c7c-2c3c-4586-801d-b579aea769b5,LIST_ACCOUNTS,hbciListAccounts,false -47063,f17c3c7c-2c3c-4586-801d-b579aea769b5,LIST_TRANSACTIONS,hbciListTransactions,false -47064,f17c3c7c-2c3c-4586-801d-b579aea769b5,AUTHORIZATION,,false -47065,f17c3c7c-2c3c-4586-801d-b579aea769b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47066,f17c3c7c-2c3c-4586-801d-b579aea769b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47067,f17c3c7c-2c3c-4586-801d-b579aea769b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47062,2fb5e4b2-0994-47a0-88ae-022bf0eed5fe,LIST_ACCOUNTS,hbciListAccounts,false +47063,2fb5e4b2-0994-47a0-88ae-022bf0eed5fe,LIST_TRANSACTIONS,hbciListTransactions,false +47064,2fb5e4b2-0994-47a0-88ae-022bf0eed5fe,AUTHORIZATION,,false +47065,2fb5e4b2-0994-47a0-88ae-022bf0eed5fe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47066,2fb5e4b2-0994-47a0-88ae-022bf0eed5fe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47067,2fb5e4b2-0994-47a0-88ae-022bf0eed5fe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47068,3247d2a0-ab6c-4653-b608-7c7f068ad1ca,LIST_ACCOUNTS,xs2aListAccounts,true -47069,3247d2a0-ab6c-4653-b608-7c7f068ad1ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47069,3247d2a0-ab6c-4653-b608-7c7f068ad1ca,LIST_TRANSACTIONS,xs2aListTransactions,true 47070,3247d2a0-ab6c-4653-b608-7c7f068ad1ca,AUTHORIZATION,,true 47071,3247d2a0-ab6c-4653-b608-7c7f068ad1ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47072,3247d2a0-ab6c-4653-b608-7c7f068ad1ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47073,3247d2a0-ab6c-4653-b608-7c7f068ad1ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47074,fcfbafb6-4ac4-490f-bdf6-d11220f5392b,LIST_ACCOUNTS,hbciListAccounts,false -47075,fcfbafb6-4ac4-490f-bdf6-d11220f5392b,LIST_TRANSACTIONS,hbciListTransactions,false -47076,fcfbafb6-4ac4-490f-bdf6-d11220f5392b,AUTHORIZATION,,false -47077,fcfbafb6-4ac4-490f-bdf6-d11220f5392b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47078,fcfbafb6-4ac4-490f-bdf6-d11220f5392b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47079,fcfbafb6-4ac4-490f-bdf6-d11220f5392b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47074,45e80037-df9a-4dd2-90e0-dfcfe0414f8e,LIST_ACCOUNTS,hbciListAccounts,false +47075,45e80037-df9a-4dd2-90e0-dfcfe0414f8e,LIST_TRANSACTIONS,hbciListTransactions,false +47076,45e80037-df9a-4dd2-90e0-dfcfe0414f8e,AUTHORIZATION,,false +47077,45e80037-df9a-4dd2-90e0-dfcfe0414f8e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47078,45e80037-df9a-4dd2-90e0-dfcfe0414f8e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47079,45e80037-df9a-4dd2-90e0-dfcfe0414f8e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47080,e32178d5-5759-4003-beb2-16fbfe52d80a,LIST_ACCOUNTS,xs2aListAccounts,true -47081,e32178d5-5759-4003-beb2-16fbfe52d80a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47081,e32178d5-5759-4003-beb2-16fbfe52d80a,LIST_TRANSACTIONS,xs2aListTransactions,true 47082,e32178d5-5759-4003-beb2-16fbfe52d80a,AUTHORIZATION,,true 47083,e32178d5-5759-4003-beb2-16fbfe52d80a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47084,e32178d5-5759-4003-beb2-16fbfe52d80a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47085,e32178d5-5759-4003-beb2-16fbfe52d80a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47086,e8c37aee-6b6b-48ee-8c76-7df7b7dfc949,LIST_ACCOUNTS,hbciListAccounts,false -47087,e8c37aee-6b6b-48ee-8c76-7df7b7dfc949,LIST_TRANSACTIONS,hbciListTransactions,false -47088,e8c37aee-6b6b-48ee-8c76-7df7b7dfc949,AUTHORIZATION,,false -47089,e8c37aee-6b6b-48ee-8c76-7df7b7dfc949,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47090,e8c37aee-6b6b-48ee-8c76-7df7b7dfc949,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47091,e8c37aee-6b6b-48ee-8c76-7df7b7dfc949,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47086,7cd7cdda-13a2-4ba4-869b-2ded3073d804,LIST_ACCOUNTS,hbciListAccounts,false +47087,7cd7cdda-13a2-4ba4-869b-2ded3073d804,LIST_TRANSACTIONS,hbciListTransactions,false +47088,7cd7cdda-13a2-4ba4-869b-2ded3073d804,AUTHORIZATION,,false +47089,7cd7cdda-13a2-4ba4-869b-2ded3073d804,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47090,7cd7cdda-13a2-4ba4-869b-2ded3073d804,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47091,7cd7cdda-13a2-4ba4-869b-2ded3073d804,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47092,52ec799c-729b-46d4-aa84-bdbf4e408cbf,LIST_ACCOUNTS,xs2aListAccounts,true -47093,52ec799c-729b-46d4-aa84-bdbf4e408cbf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47093,52ec799c-729b-46d4-aa84-bdbf4e408cbf,LIST_TRANSACTIONS,xs2aListTransactions,true 47094,52ec799c-729b-46d4-aa84-bdbf4e408cbf,AUTHORIZATION,,true 47095,52ec799c-729b-46d4-aa84-bdbf4e408cbf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47096,52ec799c-729b-46d4-aa84-bdbf4e408cbf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47097,52ec799c-729b-46d4-aa84-bdbf4e408cbf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47098,aabcdbad-f73a-417d-8fb2-8504e2c03a5a,LIST_ACCOUNTS,hbciListAccounts,false -47099,aabcdbad-f73a-417d-8fb2-8504e2c03a5a,LIST_TRANSACTIONS,hbciListTransactions,false -47100,aabcdbad-f73a-417d-8fb2-8504e2c03a5a,AUTHORIZATION,,false -47101,aabcdbad-f73a-417d-8fb2-8504e2c03a5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47102,aabcdbad-f73a-417d-8fb2-8504e2c03a5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47103,aabcdbad-f73a-417d-8fb2-8504e2c03a5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47098,696bdf5b-6bed-4cc6-a99d-c0df884a0769,LIST_ACCOUNTS,hbciListAccounts,false +47099,696bdf5b-6bed-4cc6-a99d-c0df884a0769,LIST_TRANSACTIONS,hbciListTransactions,false +47100,696bdf5b-6bed-4cc6-a99d-c0df884a0769,AUTHORIZATION,,false +47101,696bdf5b-6bed-4cc6-a99d-c0df884a0769,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47102,696bdf5b-6bed-4cc6-a99d-c0df884a0769,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47103,696bdf5b-6bed-4cc6-a99d-c0df884a0769,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47104,075e9ccd-cc42-495e-9923-7b8fe3e922da,LIST_ACCOUNTS,xs2aListAccounts,true -47105,075e9ccd-cc42-495e-9923-7b8fe3e922da,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47105,075e9ccd-cc42-495e-9923-7b8fe3e922da,LIST_TRANSACTIONS,xs2aListTransactions,true 47106,075e9ccd-cc42-495e-9923-7b8fe3e922da,AUTHORIZATION,,true 47107,075e9ccd-cc42-495e-9923-7b8fe3e922da,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47108,075e9ccd-cc42-495e-9923-7b8fe3e922da,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47109,075e9ccd-cc42-495e-9923-7b8fe3e922da,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47110,97ea79de-63d2-450a-b456-e4ff336aa5e5,LIST_ACCOUNTS,hbciListAccounts,false -47111,97ea79de-63d2-450a-b456-e4ff336aa5e5,LIST_TRANSACTIONS,hbciListTransactions,false -47112,97ea79de-63d2-450a-b456-e4ff336aa5e5,AUTHORIZATION,,false -47113,97ea79de-63d2-450a-b456-e4ff336aa5e5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47114,97ea79de-63d2-450a-b456-e4ff336aa5e5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47115,97ea79de-63d2-450a-b456-e4ff336aa5e5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47110,106af0a1-2898-4390-8376-ded8ca64b366,LIST_ACCOUNTS,hbciListAccounts,false +47111,106af0a1-2898-4390-8376-ded8ca64b366,LIST_TRANSACTIONS,hbciListTransactions,false +47112,106af0a1-2898-4390-8376-ded8ca64b366,AUTHORIZATION,,false +47113,106af0a1-2898-4390-8376-ded8ca64b366,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47114,106af0a1-2898-4390-8376-ded8ca64b366,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47115,106af0a1-2898-4390-8376-ded8ca64b366,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47116,880687f8-a766-43eb-b22d-b73a29f97a84,LIST_ACCOUNTS,xs2aListAccounts,true -47117,880687f8-a766-43eb-b22d-b73a29f97a84,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47117,880687f8-a766-43eb-b22d-b73a29f97a84,LIST_TRANSACTIONS,xs2aListTransactions,true 47118,880687f8-a766-43eb-b22d-b73a29f97a84,AUTHORIZATION,,true 47119,880687f8-a766-43eb-b22d-b73a29f97a84,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47120,880687f8-a766-43eb-b22d-b73a29f97a84,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47121,880687f8-a766-43eb-b22d-b73a29f97a84,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47122,36362fe6-1cb9-455a-a657-112b3fa6f39f,LIST_ACCOUNTS,hbciListAccounts,false -47123,36362fe6-1cb9-455a-a657-112b3fa6f39f,LIST_TRANSACTIONS,hbciListTransactions,false -47124,36362fe6-1cb9-455a-a657-112b3fa6f39f,AUTHORIZATION,,false -47125,36362fe6-1cb9-455a-a657-112b3fa6f39f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47126,36362fe6-1cb9-455a-a657-112b3fa6f39f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47127,36362fe6-1cb9-455a-a657-112b3fa6f39f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47122,a6e94266-89a0-4ae4-81a9-6bcaa5c1426e,LIST_ACCOUNTS,hbciListAccounts,false +47123,a6e94266-89a0-4ae4-81a9-6bcaa5c1426e,LIST_TRANSACTIONS,hbciListTransactions,false +47124,a6e94266-89a0-4ae4-81a9-6bcaa5c1426e,AUTHORIZATION,,false +47125,a6e94266-89a0-4ae4-81a9-6bcaa5c1426e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47126,a6e94266-89a0-4ae4-81a9-6bcaa5c1426e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47127,a6e94266-89a0-4ae4-81a9-6bcaa5c1426e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47128,eaf06238-0e68-442b-a3b4-9581ce0924e4,LIST_ACCOUNTS,xs2aListAccounts,true -47129,eaf06238-0e68-442b-a3b4-9581ce0924e4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47129,eaf06238-0e68-442b-a3b4-9581ce0924e4,LIST_TRANSACTIONS,xs2aListTransactions,true 47130,eaf06238-0e68-442b-a3b4-9581ce0924e4,AUTHORIZATION,,true 47131,eaf06238-0e68-442b-a3b4-9581ce0924e4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47132,eaf06238-0e68-442b-a3b4-9581ce0924e4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47133,eaf06238-0e68-442b-a3b4-9581ce0924e4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47134,4a1ce598-0ecd-46c1-bb1e-40a9621facc6,LIST_ACCOUNTS,hbciListAccounts,false -47135,4a1ce598-0ecd-46c1-bb1e-40a9621facc6,LIST_TRANSACTIONS,hbciListTransactions,false -47136,4a1ce598-0ecd-46c1-bb1e-40a9621facc6,AUTHORIZATION,,false -47137,4a1ce598-0ecd-46c1-bb1e-40a9621facc6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47138,4a1ce598-0ecd-46c1-bb1e-40a9621facc6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47139,4a1ce598-0ecd-46c1-bb1e-40a9621facc6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47134,e45c8f4c-50e0-438b-8e70-b6c33853d1fd,LIST_ACCOUNTS,hbciListAccounts,false +47135,e45c8f4c-50e0-438b-8e70-b6c33853d1fd,LIST_TRANSACTIONS,hbciListTransactions,false +47136,e45c8f4c-50e0-438b-8e70-b6c33853d1fd,AUTHORIZATION,,false +47137,e45c8f4c-50e0-438b-8e70-b6c33853d1fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47138,e45c8f4c-50e0-438b-8e70-b6c33853d1fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47139,e45c8f4c-50e0-438b-8e70-b6c33853d1fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47140,ff286bce-527c-4a06-a62f-0fc3583e1dbb,LIST_ACCOUNTS,xs2aListAccounts,true -47141,ff286bce-527c-4a06-a62f-0fc3583e1dbb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47141,ff286bce-527c-4a06-a62f-0fc3583e1dbb,LIST_TRANSACTIONS,xs2aListTransactions,true 47142,ff286bce-527c-4a06-a62f-0fc3583e1dbb,AUTHORIZATION,,true 47143,ff286bce-527c-4a06-a62f-0fc3583e1dbb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47144,ff286bce-527c-4a06-a62f-0fc3583e1dbb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47145,ff286bce-527c-4a06-a62f-0fc3583e1dbb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47146,00bfc6fe-75bc-4968-aab9-a1912b22c28f,LIST_ACCOUNTS,hbciListAccounts,false -47147,00bfc6fe-75bc-4968-aab9-a1912b22c28f,LIST_TRANSACTIONS,hbciListTransactions,false -47148,00bfc6fe-75bc-4968-aab9-a1912b22c28f,AUTHORIZATION,,false -47149,00bfc6fe-75bc-4968-aab9-a1912b22c28f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47150,00bfc6fe-75bc-4968-aab9-a1912b22c28f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47151,00bfc6fe-75bc-4968-aab9-a1912b22c28f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47146,ecfd40ec-907e-41a9-8bcf-acb173bc7543,LIST_ACCOUNTS,hbciListAccounts,false +47147,ecfd40ec-907e-41a9-8bcf-acb173bc7543,LIST_TRANSACTIONS,hbciListTransactions,false +47148,ecfd40ec-907e-41a9-8bcf-acb173bc7543,AUTHORIZATION,,false +47149,ecfd40ec-907e-41a9-8bcf-acb173bc7543,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47150,ecfd40ec-907e-41a9-8bcf-acb173bc7543,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47151,ecfd40ec-907e-41a9-8bcf-acb173bc7543,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47152,80b300ee-b907-4e2f-9043-b2cf45adcdf2,LIST_ACCOUNTS,xs2aListAccounts,true -47153,80b300ee-b907-4e2f-9043-b2cf45adcdf2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47153,80b300ee-b907-4e2f-9043-b2cf45adcdf2,LIST_TRANSACTIONS,xs2aListTransactions,true 47154,80b300ee-b907-4e2f-9043-b2cf45adcdf2,AUTHORIZATION,,true 47155,80b300ee-b907-4e2f-9043-b2cf45adcdf2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47156,80b300ee-b907-4e2f-9043-b2cf45adcdf2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47157,80b300ee-b907-4e2f-9043-b2cf45adcdf2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47158,dce5b10d-21c1-4a3d-9aff-bcdd705ae8a7,LIST_ACCOUNTS,hbciListAccounts,false -47159,dce5b10d-21c1-4a3d-9aff-bcdd705ae8a7,LIST_TRANSACTIONS,hbciListTransactions,false -47160,dce5b10d-21c1-4a3d-9aff-bcdd705ae8a7,AUTHORIZATION,,false -47161,dce5b10d-21c1-4a3d-9aff-bcdd705ae8a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47162,dce5b10d-21c1-4a3d-9aff-bcdd705ae8a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47163,dce5b10d-21c1-4a3d-9aff-bcdd705ae8a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47158,4f7ca2bd-82ad-49d1-9fea-c58ff95d6f09,LIST_ACCOUNTS,hbciListAccounts,false +47159,4f7ca2bd-82ad-49d1-9fea-c58ff95d6f09,LIST_TRANSACTIONS,hbciListTransactions,false +47160,4f7ca2bd-82ad-49d1-9fea-c58ff95d6f09,AUTHORIZATION,,false +47161,4f7ca2bd-82ad-49d1-9fea-c58ff95d6f09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47162,4f7ca2bd-82ad-49d1-9fea-c58ff95d6f09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47163,4f7ca2bd-82ad-49d1-9fea-c58ff95d6f09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47164,281418d1-c357-4acf-ac43-c9b5da530340,LIST_ACCOUNTS,xs2aListAccounts,true -47165,281418d1-c357-4acf-ac43-c9b5da530340,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47165,281418d1-c357-4acf-ac43-c9b5da530340,LIST_TRANSACTIONS,xs2aListTransactions,true 47166,281418d1-c357-4acf-ac43-c9b5da530340,AUTHORIZATION,,true 47167,281418d1-c357-4acf-ac43-c9b5da530340,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47168,281418d1-c357-4acf-ac43-c9b5da530340,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47169,281418d1-c357-4acf-ac43-c9b5da530340,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47170,6b731de5-395f-4aa5-afe2-0784848f93ed,LIST_ACCOUNTS,hbciListAccounts,false -47171,6b731de5-395f-4aa5-afe2-0784848f93ed,LIST_TRANSACTIONS,hbciListTransactions,false -47172,6b731de5-395f-4aa5-afe2-0784848f93ed,AUTHORIZATION,,false -47173,6b731de5-395f-4aa5-afe2-0784848f93ed,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47174,6b731de5-395f-4aa5-afe2-0784848f93ed,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47175,6b731de5-395f-4aa5-afe2-0784848f93ed,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47170,e3bb635b-6ef1-424c-92f5-ff0327c60997,LIST_ACCOUNTS,hbciListAccounts,false +47171,e3bb635b-6ef1-424c-92f5-ff0327c60997,LIST_TRANSACTIONS,hbciListTransactions,false +47172,e3bb635b-6ef1-424c-92f5-ff0327c60997,AUTHORIZATION,,false +47173,e3bb635b-6ef1-424c-92f5-ff0327c60997,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47174,e3bb635b-6ef1-424c-92f5-ff0327c60997,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47175,e3bb635b-6ef1-424c-92f5-ff0327c60997,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47176,b23e8f2a-760f-457c-9f00-bfbe93ba3729,LIST_ACCOUNTS,xs2aListAccounts,true -47177,b23e8f2a-760f-457c-9f00-bfbe93ba3729,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47177,b23e8f2a-760f-457c-9f00-bfbe93ba3729,LIST_TRANSACTIONS,xs2aListTransactions,true 47178,b23e8f2a-760f-457c-9f00-bfbe93ba3729,AUTHORIZATION,,true 47179,b23e8f2a-760f-457c-9f00-bfbe93ba3729,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47180,b23e8f2a-760f-457c-9f00-bfbe93ba3729,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47181,b23e8f2a-760f-457c-9f00-bfbe93ba3729,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47182,568d07af-22ae-4dd7-9ec2-08f171ef1df9,LIST_ACCOUNTS,hbciListAccounts,false -47183,568d07af-22ae-4dd7-9ec2-08f171ef1df9,LIST_TRANSACTIONS,hbciListTransactions,false -47184,568d07af-22ae-4dd7-9ec2-08f171ef1df9,AUTHORIZATION,,false -47185,568d07af-22ae-4dd7-9ec2-08f171ef1df9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47186,568d07af-22ae-4dd7-9ec2-08f171ef1df9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47187,568d07af-22ae-4dd7-9ec2-08f171ef1df9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47182,f5a20411-327c-4e27-a36e-b2f08a9a6304,LIST_ACCOUNTS,hbciListAccounts,false +47183,f5a20411-327c-4e27-a36e-b2f08a9a6304,LIST_TRANSACTIONS,hbciListTransactions,false +47184,f5a20411-327c-4e27-a36e-b2f08a9a6304,AUTHORIZATION,,false +47185,f5a20411-327c-4e27-a36e-b2f08a9a6304,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47186,f5a20411-327c-4e27-a36e-b2f08a9a6304,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47187,f5a20411-327c-4e27-a36e-b2f08a9a6304,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47188,811deb05-a8d6-4edb-a33a-5cce08f892f8,LIST_ACCOUNTS,xs2aListAccounts,true -47189,811deb05-a8d6-4edb-a33a-5cce08f892f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47189,811deb05-a8d6-4edb-a33a-5cce08f892f8,LIST_TRANSACTIONS,xs2aListTransactions,true 47190,811deb05-a8d6-4edb-a33a-5cce08f892f8,AUTHORIZATION,,true 47191,811deb05-a8d6-4edb-a33a-5cce08f892f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47192,811deb05-a8d6-4edb-a33a-5cce08f892f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47193,811deb05-a8d6-4edb-a33a-5cce08f892f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47194,f22722ec-2073-4c4a-8496-1c4faeb7d6ef,LIST_ACCOUNTS,hbciListAccounts,false -47195,f22722ec-2073-4c4a-8496-1c4faeb7d6ef,LIST_TRANSACTIONS,hbciListTransactions,false -47196,f22722ec-2073-4c4a-8496-1c4faeb7d6ef,AUTHORIZATION,,false -47197,f22722ec-2073-4c4a-8496-1c4faeb7d6ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47198,f22722ec-2073-4c4a-8496-1c4faeb7d6ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47199,f22722ec-2073-4c4a-8496-1c4faeb7d6ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47194,8f152f2a-3342-450e-81ad-83ce8319bfe5,LIST_ACCOUNTS,hbciListAccounts,false +47195,8f152f2a-3342-450e-81ad-83ce8319bfe5,LIST_TRANSACTIONS,hbciListTransactions,false +47196,8f152f2a-3342-450e-81ad-83ce8319bfe5,AUTHORIZATION,,false +47197,8f152f2a-3342-450e-81ad-83ce8319bfe5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47198,8f152f2a-3342-450e-81ad-83ce8319bfe5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47199,8f152f2a-3342-450e-81ad-83ce8319bfe5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47200,9a23af19-f54e-4d06-ba42-d88af0a33776,LIST_ACCOUNTS,xs2aListAccounts,true -47201,9a23af19-f54e-4d06-ba42-d88af0a33776,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47201,9a23af19-f54e-4d06-ba42-d88af0a33776,LIST_TRANSACTIONS,xs2aListTransactions,true 47202,9a23af19-f54e-4d06-ba42-d88af0a33776,AUTHORIZATION,,true 47203,9a23af19-f54e-4d06-ba42-d88af0a33776,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47204,9a23af19-f54e-4d06-ba42-d88af0a33776,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47205,9a23af19-f54e-4d06-ba42-d88af0a33776,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47206,e39dd7b1-79f2-4324-8ce3-e164ff4e2cc1,LIST_ACCOUNTS,hbciListAccounts,false -47207,e39dd7b1-79f2-4324-8ce3-e164ff4e2cc1,LIST_TRANSACTIONS,hbciListTransactions,false -47208,e39dd7b1-79f2-4324-8ce3-e164ff4e2cc1,AUTHORIZATION,,false -47209,e39dd7b1-79f2-4324-8ce3-e164ff4e2cc1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47210,e39dd7b1-79f2-4324-8ce3-e164ff4e2cc1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47211,e39dd7b1-79f2-4324-8ce3-e164ff4e2cc1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47206,d451f9cd-f944-4e32-a646-3c23e8d6a3eb,LIST_ACCOUNTS,hbciListAccounts,false +47207,d451f9cd-f944-4e32-a646-3c23e8d6a3eb,LIST_TRANSACTIONS,hbciListTransactions,false +47208,d451f9cd-f944-4e32-a646-3c23e8d6a3eb,AUTHORIZATION,,false +47209,d451f9cd-f944-4e32-a646-3c23e8d6a3eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47210,d451f9cd-f944-4e32-a646-3c23e8d6a3eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47211,d451f9cd-f944-4e32-a646-3c23e8d6a3eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47212,75f2fce4-20d0-4658-be8c-47068a5ced11,LIST_ACCOUNTS,xs2aListAccounts,true -47213,75f2fce4-20d0-4658-be8c-47068a5ced11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47213,75f2fce4-20d0-4658-be8c-47068a5ced11,LIST_TRANSACTIONS,xs2aListTransactions,true 47214,75f2fce4-20d0-4658-be8c-47068a5ced11,AUTHORIZATION,,true 47215,75f2fce4-20d0-4658-be8c-47068a5ced11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47216,75f2fce4-20d0-4658-be8c-47068a5ced11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47217,75f2fce4-20d0-4658-be8c-47068a5ced11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47218,ec563b73-2197-494f-bdb0-dd14778d20c5,LIST_ACCOUNTS,hbciListAccounts,false -47219,ec563b73-2197-494f-bdb0-dd14778d20c5,LIST_TRANSACTIONS,hbciListTransactions,false -47220,ec563b73-2197-494f-bdb0-dd14778d20c5,AUTHORIZATION,,false -47221,ec563b73-2197-494f-bdb0-dd14778d20c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47222,ec563b73-2197-494f-bdb0-dd14778d20c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47223,ec563b73-2197-494f-bdb0-dd14778d20c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47218,ae8e1596-f264-4121-a501-d90887119214,LIST_ACCOUNTS,hbciListAccounts,false +47219,ae8e1596-f264-4121-a501-d90887119214,LIST_TRANSACTIONS,hbciListTransactions,false +47220,ae8e1596-f264-4121-a501-d90887119214,AUTHORIZATION,,false +47221,ae8e1596-f264-4121-a501-d90887119214,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47222,ae8e1596-f264-4121-a501-d90887119214,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47223,ae8e1596-f264-4121-a501-d90887119214,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47224,29c313d5-cfec-474c-bef4-0f39aa499128,LIST_ACCOUNTS,xs2aListAccounts,true -47225,29c313d5-cfec-474c-bef4-0f39aa499128,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47225,29c313d5-cfec-474c-bef4-0f39aa499128,LIST_TRANSACTIONS,xs2aListTransactions,true 47226,29c313d5-cfec-474c-bef4-0f39aa499128,AUTHORIZATION,,true 47227,29c313d5-cfec-474c-bef4-0f39aa499128,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47228,29c313d5-cfec-474c-bef4-0f39aa499128,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47229,29c313d5-cfec-474c-bef4-0f39aa499128,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47230,a8c0d1d6-4e8a-4ab3-b83d-0549bef31523,LIST_ACCOUNTS,hbciListAccounts,false -47231,a8c0d1d6-4e8a-4ab3-b83d-0549bef31523,LIST_TRANSACTIONS,hbciListTransactions,false -47232,a8c0d1d6-4e8a-4ab3-b83d-0549bef31523,AUTHORIZATION,,false -47233,a8c0d1d6-4e8a-4ab3-b83d-0549bef31523,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47234,a8c0d1d6-4e8a-4ab3-b83d-0549bef31523,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47235,a8c0d1d6-4e8a-4ab3-b83d-0549bef31523,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47230,e331299e-4612-48af-98b9-96e6254003ae,LIST_ACCOUNTS,hbciListAccounts,false +47231,e331299e-4612-48af-98b9-96e6254003ae,LIST_TRANSACTIONS,hbciListTransactions,false +47232,e331299e-4612-48af-98b9-96e6254003ae,AUTHORIZATION,,false +47233,e331299e-4612-48af-98b9-96e6254003ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47234,e331299e-4612-48af-98b9-96e6254003ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47235,e331299e-4612-48af-98b9-96e6254003ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47236,4d9e583c-944c-4bb8-bafc-fc741b868b90,LIST_ACCOUNTS,xs2aListAccounts,true -47237,4d9e583c-944c-4bb8-bafc-fc741b868b90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47237,4d9e583c-944c-4bb8-bafc-fc741b868b90,LIST_TRANSACTIONS,xs2aListTransactions,true 47238,4d9e583c-944c-4bb8-bafc-fc741b868b90,AUTHORIZATION,,true 47239,4d9e583c-944c-4bb8-bafc-fc741b868b90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47240,4d9e583c-944c-4bb8-bafc-fc741b868b90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47241,4d9e583c-944c-4bb8-bafc-fc741b868b90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47242,58ca9f36-55b3-4712-8fc6-50e8300bcb05,LIST_ACCOUNTS,hbciListAccounts,false -47243,58ca9f36-55b3-4712-8fc6-50e8300bcb05,LIST_TRANSACTIONS,hbciListTransactions,false -47244,58ca9f36-55b3-4712-8fc6-50e8300bcb05,AUTHORIZATION,,false -47245,58ca9f36-55b3-4712-8fc6-50e8300bcb05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47246,58ca9f36-55b3-4712-8fc6-50e8300bcb05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47247,58ca9f36-55b3-4712-8fc6-50e8300bcb05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47242,a4898610-f4a8-45be-b196-4968ef26e755,LIST_ACCOUNTS,hbciListAccounts,false +47243,a4898610-f4a8-45be-b196-4968ef26e755,LIST_TRANSACTIONS,hbciListTransactions,false +47244,a4898610-f4a8-45be-b196-4968ef26e755,AUTHORIZATION,,false +47245,a4898610-f4a8-45be-b196-4968ef26e755,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47246,a4898610-f4a8-45be-b196-4968ef26e755,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47247,a4898610-f4a8-45be-b196-4968ef26e755,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47248,2dc119b8-6c9f-4b7f-8624-e9bad2673440,LIST_ACCOUNTS,xs2aListAccounts,true -47249,2dc119b8-6c9f-4b7f-8624-e9bad2673440,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47249,2dc119b8-6c9f-4b7f-8624-e9bad2673440,LIST_TRANSACTIONS,xs2aListTransactions,true 47250,2dc119b8-6c9f-4b7f-8624-e9bad2673440,AUTHORIZATION,,true 47251,2dc119b8-6c9f-4b7f-8624-e9bad2673440,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47252,2dc119b8-6c9f-4b7f-8624-e9bad2673440,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47253,2dc119b8-6c9f-4b7f-8624-e9bad2673440,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47254,5c186f69-74cf-4f38-bc2f-edfdb4b79cf0,LIST_ACCOUNTS,hbciListAccounts,false -47255,5c186f69-74cf-4f38-bc2f-edfdb4b79cf0,LIST_TRANSACTIONS,hbciListTransactions,false -47256,5c186f69-74cf-4f38-bc2f-edfdb4b79cf0,AUTHORIZATION,,false -47257,5c186f69-74cf-4f38-bc2f-edfdb4b79cf0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47258,5c186f69-74cf-4f38-bc2f-edfdb4b79cf0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47259,5c186f69-74cf-4f38-bc2f-edfdb4b79cf0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47254,a74e62ea-2692-4acd-8edc-a0af2965ca4f,LIST_ACCOUNTS,hbciListAccounts,false +47255,a74e62ea-2692-4acd-8edc-a0af2965ca4f,LIST_TRANSACTIONS,hbciListTransactions,false +47256,a74e62ea-2692-4acd-8edc-a0af2965ca4f,AUTHORIZATION,,false +47257,a74e62ea-2692-4acd-8edc-a0af2965ca4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47258,a74e62ea-2692-4acd-8edc-a0af2965ca4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47259,a74e62ea-2692-4acd-8edc-a0af2965ca4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47260,f7cef701-4265-4fac-bd61-6c1008923bf0,LIST_ACCOUNTS,xs2aListAccounts,true -47261,f7cef701-4265-4fac-bd61-6c1008923bf0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47261,f7cef701-4265-4fac-bd61-6c1008923bf0,LIST_TRANSACTIONS,xs2aListTransactions,true 47262,f7cef701-4265-4fac-bd61-6c1008923bf0,AUTHORIZATION,,true 47263,f7cef701-4265-4fac-bd61-6c1008923bf0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47264,f7cef701-4265-4fac-bd61-6c1008923bf0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47265,f7cef701-4265-4fac-bd61-6c1008923bf0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47266,fc92a807-81b9-448c-b112-cffbae262317,LIST_ACCOUNTS,hbciListAccounts,false -47267,fc92a807-81b9-448c-b112-cffbae262317,LIST_TRANSACTIONS,hbciListTransactions,false -47268,fc92a807-81b9-448c-b112-cffbae262317,AUTHORIZATION,,false -47269,fc92a807-81b9-448c-b112-cffbae262317,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47270,fc92a807-81b9-448c-b112-cffbae262317,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47271,fc92a807-81b9-448c-b112-cffbae262317,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47266,3f0444a2-bb3f-42e1-9723-cb9f89fd6e39,LIST_ACCOUNTS,hbciListAccounts,false +47267,3f0444a2-bb3f-42e1-9723-cb9f89fd6e39,LIST_TRANSACTIONS,hbciListTransactions,false +47268,3f0444a2-bb3f-42e1-9723-cb9f89fd6e39,AUTHORIZATION,,false +47269,3f0444a2-bb3f-42e1-9723-cb9f89fd6e39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47270,3f0444a2-bb3f-42e1-9723-cb9f89fd6e39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47271,3f0444a2-bb3f-42e1-9723-cb9f89fd6e39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47272,8b0849eb-b1f7-4b19-81cf-4a0aa2de102a,LIST_ACCOUNTS,xs2aListAccounts,true -47273,8b0849eb-b1f7-4b19-81cf-4a0aa2de102a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47273,8b0849eb-b1f7-4b19-81cf-4a0aa2de102a,LIST_TRANSACTIONS,xs2aListTransactions,true 47274,8b0849eb-b1f7-4b19-81cf-4a0aa2de102a,AUTHORIZATION,,true 47275,8b0849eb-b1f7-4b19-81cf-4a0aa2de102a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47276,8b0849eb-b1f7-4b19-81cf-4a0aa2de102a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47277,8b0849eb-b1f7-4b19-81cf-4a0aa2de102a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47278,5c213da6-05ac-45ae-b947-f6320a5173bf,LIST_ACCOUNTS,hbciListAccounts,false -47279,5c213da6-05ac-45ae-b947-f6320a5173bf,LIST_TRANSACTIONS,hbciListTransactions,false -47280,5c213da6-05ac-45ae-b947-f6320a5173bf,AUTHORIZATION,,false -47281,5c213da6-05ac-45ae-b947-f6320a5173bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47282,5c213da6-05ac-45ae-b947-f6320a5173bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47283,5c213da6-05ac-45ae-b947-f6320a5173bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47278,37c12469-bcb3-4160-8e49-b5874ae69117,LIST_ACCOUNTS,hbciListAccounts,false +47279,37c12469-bcb3-4160-8e49-b5874ae69117,LIST_TRANSACTIONS,hbciListTransactions,false +47280,37c12469-bcb3-4160-8e49-b5874ae69117,AUTHORIZATION,,false +47281,37c12469-bcb3-4160-8e49-b5874ae69117,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47282,37c12469-bcb3-4160-8e49-b5874ae69117,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47283,37c12469-bcb3-4160-8e49-b5874ae69117,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47284,da260fb7-d248-46aa-8657-df01f542232d,LIST_ACCOUNTS,xs2aListAccounts,true -47285,da260fb7-d248-46aa-8657-df01f542232d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47285,da260fb7-d248-46aa-8657-df01f542232d,LIST_TRANSACTIONS,xs2aListTransactions,true 47286,da260fb7-d248-46aa-8657-df01f542232d,AUTHORIZATION,,true 47287,da260fb7-d248-46aa-8657-df01f542232d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47288,da260fb7-d248-46aa-8657-df01f542232d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47289,da260fb7-d248-46aa-8657-df01f542232d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47290,dedec3ce-d974-447a-90b1-614c779c3c6f,LIST_ACCOUNTS,hbciListAccounts,false -47291,dedec3ce-d974-447a-90b1-614c779c3c6f,LIST_TRANSACTIONS,hbciListTransactions,false -47292,dedec3ce-d974-447a-90b1-614c779c3c6f,AUTHORIZATION,,false -47293,dedec3ce-d974-447a-90b1-614c779c3c6f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47294,dedec3ce-d974-447a-90b1-614c779c3c6f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47295,dedec3ce-d974-447a-90b1-614c779c3c6f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47290,a722153c-d149-4481-a100-fe35c4f96a2c,LIST_ACCOUNTS,hbciListAccounts,false +47291,a722153c-d149-4481-a100-fe35c4f96a2c,LIST_TRANSACTIONS,hbciListTransactions,false +47292,a722153c-d149-4481-a100-fe35c4f96a2c,AUTHORIZATION,,false +47293,a722153c-d149-4481-a100-fe35c4f96a2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47294,a722153c-d149-4481-a100-fe35c4f96a2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47295,a722153c-d149-4481-a100-fe35c4f96a2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47296,9b82a543-18f8-4341-bc66-5f58d4df323e,LIST_ACCOUNTS,xs2aListAccounts,true -47297,9b82a543-18f8-4341-bc66-5f58d4df323e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47297,9b82a543-18f8-4341-bc66-5f58d4df323e,LIST_TRANSACTIONS,xs2aListTransactions,true 47298,9b82a543-18f8-4341-bc66-5f58d4df323e,AUTHORIZATION,,true 47299,9b82a543-18f8-4341-bc66-5f58d4df323e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47300,9b82a543-18f8-4341-bc66-5f58d4df323e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47301,9b82a543-18f8-4341-bc66-5f58d4df323e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47302,3f4d9af6-61e5-4521-86c2-b03059a861d3,LIST_ACCOUNTS,hbciListAccounts,false -47303,3f4d9af6-61e5-4521-86c2-b03059a861d3,LIST_TRANSACTIONS,hbciListTransactions,false -47304,3f4d9af6-61e5-4521-86c2-b03059a861d3,AUTHORIZATION,,false -47305,3f4d9af6-61e5-4521-86c2-b03059a861d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47306,3f4d9af6-61e5-4521-86c2-b03059a861d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47307,3f4d9af6-61e5-4521-86c2-b03059a861d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47302,c04f9db4-6640-4780-adfa-b20d1171fd09,LIST_ACCOUNTS,hbciListAccounts,false +47303,c04f9db4-6640-4780-adfa-b20d1171fd09,LIST_TRANSACTIONS,hbciListTransactions,false +47304,c04f9db4-6640-4780-adfa-b20d1171fd09,AUTHORIZATION,,false +47305,c04f9db4-6640-4780-adfa-b20d1171fd09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47306,c04f9db4-6640-4780-adfa-b20d1171fd09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47307,c04f9db4-6640-4780-adfa-b20d1171fd09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47308,27728c64-f7f9-4e32-8a4b-0a0ee1969c03,LIST_ACCOUNTS,xs2aListAccounts,true -47309,27728c64-f7f9-4e32-8a4b-0a0ee1969c03,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47309,27728c64-f7f9-4e32-8a4b-0a0ee1969c03,LIST_TRANSACTIONS,xs2aListTransactions,true 47310,27728c64-f7f9-4e32-8a4b-0a0ee1969c03,AUTHORIZATION,,true 47311,27728c64-f7f9-4e32-8a4b-0a0ee1969c03,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47312,27728c64-f7f9-4e32-8a4b-0a0ee1969c03,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47313,27728c64-f7f9-4e32-8a4b-0a0ee1969c03,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47314,213e1343-2280-4770-b43f-130e79b1d3ef,LIST_ACCOUNTS,hbciListAccounts,false -47315,213e1343-2280-4770-b43f-130e79b1d3ef,LIST_TRANSACTIONS,hbciListTransactions,false -47316,213e1343-2280-4770-b43f-130e79b1d3ef,AUTHORIZATION,,false -47317,213e1343-2280-4770-b43f-130e79b1d3ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47318,213e1343-2280-4770-b43f-130e79b1d3ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47319,213e1343-2280-4770-b43f-130e79b1d3ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47314,519c1c25-7780-42d5-90bf-11ecce27e490,LIST_ACCOUNTS,hbciListAccounts,false +47315,519c1c25-7780-42d5-90bf-11ecce27e490,LIST_TRANSACTIONS,hbciListTransactions,false +47316,519c1c25-7780-42d5-90bf-11ecce27e490,AUTHORIZATION,,false +47317,519c1c25-7780-42d5-90bf-11ecce27e490,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47318,519c1c25-7780-42d5-90bf-11ecce27e490,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47319,519c1c25-7780-42d5-90bf-11ecce27e490,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47320,53d3923b-1dda-49b4-bce1-f837865e7884,LIST_ACCOUNTS,xs2aListAccounts,true -47321,53d3923b-1dda-49b4-bce1-f837865e7884,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47321,53d3923b-1dda-49b4-bce1-f837865e7884,LIST_TRANSACTIONS,xs2aListTransactions,true 47322,53d3923b-1dda-49b4-bce1-f837865e7884,AUTHORIZATION,,true 47323,53d3923b-1dda-49b4-bce1-f837865e7884,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47324,53d3923b-1dda-49b4-bce1-f837865e7884,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47325,53d3923b-1dda-49b4-bce1-f837865e7884,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47326,d8102295-7e04-48ae-9922-0a4fcb5fcd51,LIST_ACCOUNTS,hbciListAccounts,false -47327,d8102295-7e04-48ae-9922-0a4fcb5fcd51,LIST_TRANSACTIONS,hbciListTransactions,false -47328,d8102295-7e04-48ae-9922-0a4fcb5fcd51,AUTHORIZATION,,false -47329,d8102295-7e04-48ae-9922-0a4fcb5fcd51,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47330,d8102295-7e04-48ae-9922-0a4fcb5fcd51,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47331,d8102295-7e04-48ae-9922-0a4fcb5fcd51,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47326,aae40bfe-6888-4d51-b1dc-e30ae7681d98,LIST_ACCOUNTS,hbciListAccounts,false +47327,aae40bfe-6888-4d51-b1dc-e30ae7681d98,LIST_TRANSACTIONS,hbciListTransactions,false +47328,aae40bfe-6888-4d51-b1dc-e30ae7681d98,AUTHORIZATION,,false +47329,aae40bfe-6888-4d51-b1dc-e30ae7681d98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47330,aae40bfe-6888-4d51-b1dc-e30ae7681d98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47331,aae40bfe-6888-4d51-b1dc-e30ae7681d98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47332,a5d97e75-5b68-48b8-b3a5-43a6716a0845,LIST_ACCOUNTS,xs2aListAccounts,true -47333,a5d97e75-5b68-48b8-b3a5-43a6716a0845,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47333,a5d97e75-5b68-48b8-b3a5-43a6716a0845,LIST_TRANSACTIONS,xs2aListTransactions,true 47334,a5d97e75-5b68-48b8-b3a5-43a6716a0845,AUTHORIZATION,,true 47335,a5d97e75-5b68-48b8-b3a5-43a6716a0845,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47336,a5d97e75-5b68-48b8-b3a5-43a6716a0845,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47337,a5d97e75-5b68-48b8-b3a5-43a6716a0845,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47338,015a9de3-7e42-4959-839c-e4836277d6ad,LIST_ACCOUNTS,hbciListAccounts,false -47339,015a9de3-7e42-4959-839c-e4836277d6ad,LIST_TRANSACTIONS,hbciListTransactions,false -47340,015a9de3-7e42-4959-839c-e4836277d6ad,AUTHORIZATION,,false -47341,015a9de3-7e42-4959-839c-e4836277d6ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47342,015a9de3-7e42-4959-839c-e4836277d6ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47343,015a9de3-7e42-4959-839c-e4836277d6ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47338,5b1a53b1-7920-4b99-9503-b2b4db0d8e7d,LIST_ACCOUNTS,hbciListAccounts,false +47339,5b1a53b1-7920-4b99-9503-b2b4db0d8e7d,LIST_TRANSACTIONS,hbciListTransactions,false +47340,5b1a53b1-7920-4b99-9503-b2b4db0d8e7d,AUTHORIZATION,,false +47341,5b1a53b1-7920-4b99-9503-b2b4db0d8e7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47342,5b1a53b1-7920-4b99-9503-b2b4db0d8e7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47343,5b1a53b1-7920-4b99-9503-b2b4db0d8e7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47344,202ed11b-44a8-41f6-9279-afcdff8fbf9e,LIST_ACCOUNTS,xs2aListAccounts,true -47345,202ed11b-44a8-41f6-9279-afcdff8fbf9e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47345,202ed11b-44a8-41f6-9279-afcdff8fbf9e,LIST_TRANSACTIONS,xs2aListTransactions,true 47346,202ed11b-44a8-41f6-9279-afcdff8fbf9e,AUTHORIZATION,,true 47347,202ed11b-44a8-41f6-9279-afcdff8fbf9e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47348,202ed11b-44a8-41f6-9279-afcdff8fbf9e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47349,202ed11b-44a8-41f6-9279-afcdff8fbf9e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47350,069db369-a25b-4183-b524-6d41687c9078,LIST_ACCOUNTS,hbciListAccounts,false -47351,069db369-a25b-4183-b524-6d41687c9078,LIST_TRANSACTIONS,hbciListTransactions,false -47352,069db369-a25b-4183-b524-6d41687c9078,AUTHORIZATION,,false -47353,069db369-a25b-4183-b524-6d41687c9078,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47354,069db369-a25b-4183-b524-6d41687c9078,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47355,069db369-a25b-4183-b524-6d41687c9078,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47350,c98c2f58-3f50-4127-8216-394ed000c902,LIST_ACCOUNTS,hbciListAccounts,false +47351,c98c2f58-3f50-4127-8216-394ed000c902,LIST_TRANSACTIONS,hbciListTransactions,false +47352,c98c2f58-3f50-4127-8216-394ed000c902,AUTHORIZATION,,false +47353,c98c2f58-3f50-4127-8216-394ed000c902,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47354,c98c2f58-3f50-4127-8216-394ed000c902,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47355,c98c2f58-3f50-4127-8216-394ed000c902,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47356,e32c30bb-f10c-48c7-ae3a-a2658f9d2b1e,LIST_ACCOUNTS,xs2aListAccounts,true -47357,e32c30bb-f10c-48c7-ae3a-a2658f9d2b1e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47357,e32c30bb-f10c-48c7-ae3a-a2658f9d2b1e,LIST_TRANSACTIONS,xs2aListTransactions,true 47358,e32c30bb-f10c-48c7-ae3a-a2658f9d2b1e,AUTHORIZATION,,true 47359,e32c30bb-f10c-48c7-ae3a-a2658f9d2b1e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47360,e32c30bb-f10c-48c7-ae3a-a2658f9d2b1e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47361,e32c30bb-f10c-48c7-ae3a-a2658f9d2b1e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47362,59ed4a05-2f7d-4158-b753-0ce201017383,LIST_ACCOUNTS,hbciListAccounts,false -47363,59ed4a05-2f7d-4158-b753-0ce201017383,LIST_TRANSACTIONS,hbciListTransactions,false -47364,59ed4a05-2f7d-4158-b753-0ce201017383,AUTHORIZATION,,false -47365,59ed4a05-2f7d-4158-b753-0ce201017383,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47366,59ed4a05-2f7d-4158-b753-0ce201017383,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47367,59ed4a05-2f7d-4158-b753-0ce201017383,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47362,125465c1-0de5-40ef-ab47-85b6818e74bd,LIST_ACCOUNTS,hbciListAccounts,false +47363,125465c1-0de5-40ef-ab47-85b6818e74bd,LIST_TRANSACTIONS,hbciListTransactions,false +47364,125465c1-0de5-40ef-ab47-85b6818e74bd,AUTHORIZATION,,false +47365,125465c1-0de5-40ef-ab47-85b6818e74bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47366,125465c1-0de5-40ef-ab47-85b6818e74bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47367,125465c1-0de5-40ef-ab47-85b6818e74bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47368,f98e119e-5f7d-4c83-bc98-29d16932073f,LIST_ACCOUNTS,xs2aListAccounts,true -47369,f98e119e-5f7d-4c83-bc98-29d16932073f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47369,f98e119e-5f7d-4c83-bc98-29d16932073f,LIST_TRANSACTIONS,xs2aListTransactions,true 47370,f98e119e-5f7d-4c83-bc98-29d16932073f,AUTHORIZATION,,true 47371,f98e119e-5f7d-4c83-bc98-29d16932073f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47372,f98e119e-5f7d-4c83-bc98-29d16932073f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47373,f98e119e-5f7d-4c83-bc98-29d16932073f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47374,d463d664-c442-404a-b043-287253b9524b,LIST_ACCOUNTS,hbciListAccounts,false -47375,d463d664-c442-404a-b043-287253b9524b,LIST_TRANSACTIONS,hbciListTransactions,false -47376,d463d664-c442-404a-b043-287253b9524b,AUTHORIZATION,,false -47377,d463d664-c442-404a-b043-287253b9524b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47378,d463d664-c442-404a-b043-287253b9524b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47379,d463d664-c442-404a-b043-287253b9524b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47374,f6af1e42-5664-45ff-ba47-281bde152b8d,LIST_ACCOUNTS,hbciListAccounts,false +47375,f6af1e42-5664-45ff-ba47-281bde152b8d,LIST_TRANSACTIONS,hbciListTransactions,false +47376,f6af1e42-5664-45ff-ba47-281bde152b8d,AUTHORIZATION,,false +47377,f6af1e42-5664-45ff-ba47-281bde152b8d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47378,f6af1e42-5664-45ff-ba47-281bde152b8d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47379,f6af1e42-5664-45ff-ba47-281bde152b8d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47380,0b89da7a-a61b-4aa5-8f3a-9d6791774244,LIST_ACCOUNTS,xs2aListAccounts,true -47381,0b89da7a-a61b-4aa5-8f3a-9d6791774244,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47381,0b89da7a-a61b-4aa5-8f3a-9d6791774244,LIST_TRANSACTIONS,xs2aListTransactions,true 47382,0b89da7a-a61b-4aa5-8f3a-9d6791774244,AUTHORIZATION,,true 47383,0b89da7a-a61b-4aa5-8f3a-9d6791774244,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47384,0b89da7a-a61b-4aa5-8f3a-9d6791774244,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47385,0b89da7a-a61b-4aa5-8f3a-9d6791774244,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47386,93d4dc98-d772-4263-a431-4e199260b644,LIST_ACCOUNTS,hbciListAccounts,false -47387,93d4dc98-d772-4263-a431-4e199260b644,LIST_TRANSACTIONS,hbciListTransactions,false -47388,93d4dc98-d772-4263-a431-4e199260b644,AUTHORIZATION,,false -47389,93d4dc98-d772-4263-a431-4e199260b644,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47390,93d4dc98-d772-4263-a431-4e199260b644,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47391,93d4dc98-d772-4263-a431-4e199260b644,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47386,fe86da38-efc4-4999-a031-2a9454c24961,LIST_ACCOUNTS,hbciListAccounts,false +47387,fe86da38-efc4-4999-a031-2a9454c24961,LIST_TRANSACTIONS,hbciListTransactions,false +47388,fe86da38-efc4-4999-a031-2a9454c24961,AUTHORIZATION,,false +47389,fe86da38-efc4-4999-a031-2a9454c24961,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47390,fe86da38-efc4-4999-a031-2a9454c24961,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47391,fe86da38-efc4-4999-a031-2a9454c24961,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47392,60609968-5efb-461a-8fa5-7110ca9e881e,LIST_ACCOUNTS,xs2aListAccounts,true -47393,60609968-5efb-461a-8fa5-7110ca9e881e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47393,60609968-5efb-461a-8fa5-7110ca9e881e,LIST_TRANSACTIONS,xs2aListTransactions,true 47394,60609968-5efb-461a-8fa5-7110ca9e881e,AUTHORIZATION,,true 47395,60609968-5efb-461a-8fa5-7110ca9e881e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47396,60609968-5efb-461a-8fa5-7110ca9e881e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47397,60609968-5efb-461a-8fa5-7110ca9e881e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47398,389e5b30-38b9-4838-87fe-b44988a54696,LIST_ACCOUNTS,hbciListAccounts,false -47399,389e5b30-38b9-4838-87fe-b44988a54696,LIST_TRANSACTIONS,hbciListTransactions,false -47400,389e5b30-38b9-4838-87fe-b44988a54696,AUTHORIZATION,,false -47401,389e5b30-38b9-4838-87fe-b44988a54696,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47402,389e5b30-38b9-4838-87fe-b44988a54696,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47403,389e5b30-38b9-4838-87fe-b44988a54696,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47398,60c76f82-4716-43a4-9f53-8c852c4fde61,LIST_ACCOUNTS,hbciListAccounts,false +47399,60c76f82-4716-43a4-9f53-8c852c4fde61,LIST_TRANSACTIONS,hbciListTransactions,false +47400,60c76f82-4716-43a4-9f53-8c852c4fde61,AUTHORIZATION,,false +47401,60c76f82-4716-43a4-9f53-8c852c4fde61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47402,60c76f82-4716-43a4-9f53-8c852c4fde61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47403,60c76f82-4716-43a4-9f53-8c852c4fde61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47404,e65d4c7a-028e-4bd7-a022-0054a6be4fe5,LIST_ACCOUNTS,xs2aListAccounts,true -47405,e65d4c7a-028e-4bd7-a022-0054a6be4fe5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47405,e65d4c7a-028e-4bd7-a022-0054a6be4fe5,LIST_TRANSACTIONS,xs2aListTransactions,true 47406,e65d4c7a-028e-4bd7-a022-0054a6be4fe5,AUTHORIZATION,,true 47407,e65d4c7a-028e-4bd7-a022-0054a6be4fe5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47408,e65d4c7a-028e-4bd7-a022-0054a6be4fe5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47409,e65d4c7a-028e-4bd7-a022-0054a6be4fe5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47410,e1be4839-a6ab-457e-babd-6111667dc113,LIST_ACCOUNTS,hbciListAccounts,false -47411,e1be4839-a6ab-457e-babd-6111667dc113,LIST_TRANSACTIONS,hbciListTransactions,false -47412,e1be4839-a6ab-457e-babd-6111667dc113,AUTHORIZATION,,false -47413,e1be4839-a6ab-457e-babd-6111667dc113,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47414,e1be4839-a6ab-457e-babd-6111667dc113,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47415,e1be4839-a6ab-457e-babd-6111667dc113,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47410,31ddb2c0-3dac-41ec-be9e-9245755118d4,LIST_ACCOUNTS,hbciListAccounts,false +47411,31ddb2c0-3dac-41ec-be9e-9245755118d4,LIST_TRANSACTIONS,hbciListTransactions,false +47412,31ddb2c0-3dac-41ec-be9e-9245755118d4,AUTHORIZATION,,false +47413,31ddb2c0-3dac-41ec-be9e-9245755118d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47414,31ddb2c0-3dac-41ec-be9e-9245755118d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47415,31ddb2c0-3dac-41ec-be9e-9245755118d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47416,9f7d1bb7-5bf7-4ceb-9c03-e4076461aac7,LIST_ACCOUNTS,xs2aListAccounts,true -47417,9f7d1bb7-5bf7-4ceb-9c03-e4076461aac7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47417,9f7d1bb7-5bf7-4ceb-9c03-e4076461aac7,LIST_TRANSACTIONS,xs2aListTransactions,true 47418,9f7d1bb7-5bf7-4ceb-9c03-e4076461aac7,AUTHORIZATION,,true 47419,9f7d1bb7-5bf7-4ceb-9c03-e4076461aac7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47420,9f7d1bb7-5bf7-4ceb-9c03-e4076461aac7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47421,9f7d1bb7-5bf7-4ceb-9c03-e4076461aac7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47422,87207bff-cfbc-49e5-b8d5-3b4d2072e1c3,LIST_ACCOUNTS,hbciListAccounts,false -47423,87207bff-cfbc-49e5-b8d5-3b4d2072e1c3,LIST_TRANSACTIONS,hbciListTransactions,false -47424,87207bff-cfbc-49e5-b8d5-3b4d2072e1c3,AUTHORIZATION,,false -47425,87207bff-cfbc-49e5-b8d5-3b4d2072e1c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47426,87207bff-cfbc-49e5-b8d5-3b4d2072e1c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47427,87207bff-cfbc-49e5-b8d5-3b4d2072e1c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47422,6764175f-b089-4b91-8814-bc37f7eb3d19,LIST_ACCOUNTS,hbciListAccounts,false +47423,6764175f-b089-4b91-8814-bc37f7eb3d19,LIST_TRANSACTIONS,hbciListTransactions,false +47424,6764175f-b089-4b91-8814-bc37f7eb3d19,AUTHORIZATION,,false +47425,6764175f-b089-4b91-8814-bc37f7eb3d19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47426,6764175f-b089-4b91-8814-bc37f7eb3d19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47427,6764175f-b089-4b91-8814-bc37f7eb3d19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47428,13d3d7b6-9897-4642-ba0c-6f5751036d6c,LIST_ACCOUNTS,xs2aListAccounts,true -47429,13d3d7b6-9897-4642-ba0c-6f5751036d6c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47429,13d3d7b6-9897-4642-ba0c-6f5751036d6c,LIST_TRANSACTIONS,xs2aListTransactions,true 47430,13d3d7b6-9897-4642-ba0c-6f5751036d6c,AUTHORIZATION,,true 47431,13d3d7b6-9897-4642-ba0c-6f5751036d6c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47432,13d3d7b6-9897-4642-ba0c-6f5751036d6c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47433,13d3d7b6-9897-4642-ba0c-6f5751036d6c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47434,acc4bbe8-e426-4b8b-9d18-c4623a6f502f,LIST_ACCOUNTS,hbciListAccounts,false -47435,acc4bbe8-e426-4b8b-9d18-c4623a6f502f,LIST_TRANSACTIONS,hbciListTransactions,false -47436,acc4bbe8-e426-4b8b-9d18-c4623a6f502f,AUTHORIZATION,,false -47437,acc4bbe8-e426-4b8b-9d18-c4623a6f502f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47438,acc4bbe8-e426-4b8b-9d18-c4623a6f502f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47439,acc4bbe8-e426-4b8b-9d18-c4623a6f502f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47434,6df56cda-360e-48a0-8960-79f2aec6328d,LIST_ACCOUNTS,hbciListAccounts,false +47435,6df56cda-360e-48a0-8960-79f2aec6328d,LIST_TRANSACTIONS,hbciListTransactions,false +47436,6df56cda-360e-48a0-8960-79f2aec6328d,AUTHORIZATION,,false +47437,6df56cda-360e-48a0-8960-79f2aec6328d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47438,6df56cda-360e-48a0-8960-79f2aec6328d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47439,6df56cda-360e-48a0-8960-79f2aec6328d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47440,27857897-6ab2-4966-8452-3c4af81b5d0d,LIST_ACCOUNTS,xs2aListAccounts,true -47441,27857897-6ab2-4966-8452-3c4af81b5d0d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47441,27857897-6ab2-4966-8452-3c4af81b5d0d,LIST_TRANSACTIONS,xs2aListTransactions,true 47442,27857897-6ab2-4966-8452-3c4af81b5d0d,AUTHORIZATION,,true 47443,27857897-6ab2-4966-8452-3c4af81b5d0d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47444,27857897-6ab2-4966-8452-3c4af81b5d0d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47445,27857897-6ab2-4966-8452-3c4af81b5d0d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47446,57f8c06e-15c0-446f-8985-3095a000902d,LIST_ACCOUNTS,hbciListAccounts,false -47447,57f8c06e-15c0-446f-8985-3095a000902d,LIST_TRANSACTIONS,hbciListTransactions,false -47448,57f8c06e-15c0-446f-8985-3095a000902d,AUTHORIZATION,,false -47449,57f8c06e-15c0-446f-8985-3095a000902d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47450,57f8c06e-15c0-446f-8985-3095a000902d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47451,57f8c06e-15c0-446f-8985-3095a000902d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47446,4ea12edd-2dae-4801-b3ae-9d08c038f81b,LIST_ACCOUNTS,hbciListAccounts,false +47447,4ea12edd-2dae-4801-b3ae-9d08c038f81b,LIST_TRANSACTIONS,hbciListTransactions,false +47448,4ea12edd-2dae-4801-b3ae-9d08c038f81b,AUTHORIZATION,,false +47449,4ea12edd-2dae-4801-b3ae-9d08c038f81b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47450,4ea12edd-2dae-4801-b3ae-9d08c038f81b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47451,4ea12edd-2dae-4801-b3ae-9d08c038f81b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47452,60882eae-ba9b-4169-b82a-57705974c009,LIST_ACCOUNTS,xs2aListAccounts,true -47453,60882eae-ba9b-4169-b82a-57705974c009,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47453,60882eae-ba9b-4169-b82a-57705974c009,LIST_TRANSACTIONS,xs2aListTransactions,true 47454,60882eae-ba9b-4169-b82a-57705974c009,AUTHORIZATION,,true 47455,60882eae-ba9b-4169-b82a-57705974c009,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47456,60882eae-ba9b-4169-b82a-57705974c009,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47457,60882eae-ba9b-4169-b82a-57705974c009,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47458,cb4c06cc-1d92-4381-a9bc-94e3d8ea1922,LIST_ACCOUNTS,hbciListAccounts,false -47459,cb4c06cc-1d92-4381-a9bc-94e3d8ea1922,LIST_TRANSACTIONS,hbciListTransactions,false -47460,cb4c06cc-1d92-4381-a9bc-94e3d8ea1922,AUTHORIZATION,,false -47461,cb4c06cc-1d92-4381-a9bc-94e3d8ea1922,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47462,cb4c06cc-1d92-4381-a9bc-94e3d8ea1922,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47463,cb4c06cc-1d92-4381-a9bc-94e3d8ea1922,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47458,7dde6816-ba48-492a-b2d0-23121d1d1a83,LIST_ACCOUNTS,hbciListAccounts,false +47459,7dde6816-ba48-492a-b2d0-23121d1d1a83,LIST_TRANSACTIONS,hbciListTransactions,false +47460,7dde6816-ba48-492a-b2d0-23121d1d1a83,AUTHORIZATION,,false +47461,7dde6816-ba48-492a-b2d0-23121d1d1a83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47462,7dde6816-ba48-492a-b2d0-23121d1d1a83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47463,7dde6816-ba48-492a-b2d0-23121d1d1a83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47464,f16250c3-758b-4b19-a363-cab656442d24,LIST_ACCOUNTS,xs2aListAccounts,true -47465,f16250c3-758b-4b19-a363-cab656442d24,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47465,f16250c3-758b-4b19-a363-cab656442d24,LIST_TRANSACTIONS,xs2aListTransactions,true 47466,f16250c3-758b-4b19-a363-cab656442d24,AUTHORIZATION,,true 47467,f16250c3-758b-4b19-a363-cab656442d24,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47468,f16250c3-758b-4b19-a363-cab656442d24,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47469,f16250c3-758b-4b19-a363-cab656442d24,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47470,10cab866-80e7-4fcf-8a6c-00a09c21ec46,LIST_ACCOUNTS,hbciListAccounts,false -47471,10cab866-80e7-4fcf-8a6c-00a09c21ec46,LIST_TRANSACTIONS,hbciListTransactions,false -47472,10cab866-80e7-4fcf-8a6c-00a09c21ec46,AUTHORIZATION,,false -47473,10cab866-80e7-4fcf-8a6c-00a09c21ec46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47474,10cab866-80e7-4fcf-8a6c-00a09c21ec46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47475,10cab866-80e7-4fcf-8a6c-00a09c21ec46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47470,e6c00a9b-c640-4b86-81c2-da02fa29aa24,LIST_ACCOUNTS,hbciListAccounts,false +47471,e6c00a9b-c640-4b86-81c2-da02fa29aa24,LIST_TRANSACTIONS,hbciListTransactions,false +47472,e6c00a9b-c640-4b86-81c2-da02fa29aa24,AUTHORIZATION,,false +47473,e6c00a9b-c640-4b86-81c2-da02fa29aa24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47474,e6c00a9b-c640-4b86-81c2-da02fa29aa24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47475,e6c00a9b-c640-4b86-81c2-da02fa29aa24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47476,5508678a-3597-4b75-8313-3f9079893805,LIST_ACCOUNTS,xs2aListAccounts,true -47477,5508678a-3597-4b75-8313-3f9079893805,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47477,5508678a-3597-4b75-8313-3f9079893805,LIST_TRANSACTIONS,xs2aListTransactions,true 47478,5508678a-3597-4b75-8313-3f9079893805,AUTHORIZATION,,true 47479,5508678a-3597-4b75-8313-3f9079893805,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47480,5508678a-3597-4b75-8313-3f9079893805,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47481,5508678a-3597-4b75-8313-3f9079893805,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47482,3aab67c7-124d-46c3-8aa8-c28bfeff6b46,LIST_ACCOUNTS,hbciListAccounts,false -47483,3aab67c7-124d-46c3-8aa8-c28bfeff6b46,LIST_TRANSACTIONS,hbciListTransactions,false -47484,3aab67c7-124d-46c3-8aa8-c28bfeff6b46,AUTHORIZATION,,false -47485,3aab67c7-124d-46c3-8aa8-c28bfeff6b46,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47486,3aab67c7-124d-46c3-8aa8-c28bfeff6b46,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47487,3aab67c7-124d-46c3-8aa8-c28bfeff6b46,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47482,c7d6cc7f-0e30-463e-9782-b67542de12f5,LIST_ACCOUNTS,hbciListAccounts,false +47483,c7d6cc7f-0e30-463e-9782-b67542de12f5,LIST_TRANSACTIONS,hbciListTransactions,false +47484,c7d6cc7f-0e30-463e-9782-b67542de12f5,AUTHORIZATION,,false +47485,c7d6cc7f-0e30-463e-9782-b67542de12f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47486,c7d6cc7f-0e30-463e-9782-b67542de12f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47487,c7d6cc7f-0e30-463e-9782-b67542de12f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47488,4634e5e2-6021-41fe-8f40-4180d95e60b6,LIST_ACCOUNTS,xs2aListAccounts,true -47489,4634e5e2-6021-41fe-8f40-4180d95e60b6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47489,4634e5e2-6021-41fe-8f40-4180d95e60b6,LIST_TRANSACTIONS,xs2aListTransactions,true 47490,4634e5e2-6021-41fe-8f40-4180d95e60b6,AUTHORIZATION,,true 47491,4634e5e2-6021-41fe-8f40-4180d95e60b6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47492,4634e5e2-6021-41fe-8f40-4180d95e60b6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47493,4634e5e2-6021-41fe-8f40-4180d95e60b6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47494,fc7223d2-4782-496e-b34a-d2f2cc6a30a7,LIST_ACCOUNTS,hbciListAccounts,false -47495,fc7223d2-4782-496e-b34a-d2f2cc6a30a7,LIST_TRANSACTIONS,hbciListTransactions,false -47496,fc7223d2-4782-496e-b34a-d2f2cc6a30a7,AUTHORIZATION,,false -47497,fc7223d2-4782-496e-b34a-d2f2cc6a30a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47498,fc7223d2-4782-496e-b34a-d2f2cc6a30a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47499,fc7223d2-4782-496e-b34a-d2f2cc6a30a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47494,36937b45-2e8d-46fe-b5c5-a644ff6e16f7,LIST_ACCOUNTS,hbciListAccounts,false +47495,36937b45-2e8d-46fe-b5c5-a644ff6e16f7,LIST_TRANSACTIONS,hbciListTransactions,false +47496,36937b45-2e8d-46fe-b5c5-a644ff6e16f7,AUTHORIZATION,,false +47497,36937b45-2e8d-46fe-b5c5-a644ff6e16f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47498,36937b45-2e8d-46fe-b5c5-a644ff6e16f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47499,36937b45-2e8d-46fe-b5c5-a644ff6e16f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47500,33b8c53e-0b45-4b5a-bfc4-11d7fee6716e,LIST_ACCOUNTS,xs2aListAccounts,true -47501,33b8c53e-0b45-4b5a-bfc4-11d7fee6716e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47501,33b8c53e-0b45-4b5a-bfc4-11d7fee6716e,LIST_TRANSACTIONS,xs2aListTransactions,true 47502,33b8c53e-0b45-4b5a-bfc4-11d7fee6716e,AUTHORIZATION,,true 47503,33b8c53e-0b45-4b5a-bfc4-11d7fee6716e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47504,33b8c53e-0b45-4b5a-bfc4-11d7fee6716e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47505,33b8c53e-0b45-4b5a-bfc4-11d7fee6716e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47506,31f61e31-32b7-4770-832e-33a2438f8aa4,LIST_ACCOUNTS,hbciListAccounts,false -47507,31f61e31-32b7-4770-832e-33a2438f8aa4,LIST_TRANSACTIONS,hbciListTransactions,false -47508,31f61e31-32b7-4770-832e-33a2438f8aa4,AUTHORIZATION,,false -47509,31f61e31-32b7-4770-832e-33a2438f8aa4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47510,31f61e31-32b7-4770-832e-33a2438f8aa4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47511,31f61e31-32b7-4770-832e-33a2438f8aa4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47506,6325b3fd-11a8-47e1-b4e1-cdf6ffb1c7f3,LIST_ACCOUNTS,hbciListAccounts,false +47507,6325b3fd-11a8-47e1-b4e1-cdf6ffb1c7f3,LIST_TRANSACTIONS,hbciListTransactions,false +47508,6325b3fd-11a8-47e1-b4e1-cdf6ffb1c7f3,AUTHORIZATION,,false +47509,6325b3fd-11a8-47e1-b4e1-cdf6ffb1c7f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47510,6325b3fd-11a8-47e1-b4e1-cdf6ffb1c7f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47511,6325b3fd-11a8-47e1-b4e1-cdf6ffb1c7f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47512,acf711ff-0ac2-499b-a382-033f6d6093c2,LIST_ACCOUNTS,xs2aListAccounts,true -47513,acf711ff-0ac2-499b-a382-033f6d6093c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47513,acf711ff-0ac2-499b-a382-033f6d6093c2,LIST_TRANSACTIONS,xs2aListTransactions,true 47514,acf711ff-0ac2-499b-a382-033f6d6093c2,AUTHORIZATION,,true 47515,acf711ff-0ac2-499b-a382-033f6d6093c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47516,acf711ff-0ac2-499b-a382-033f6d6093c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47517,acf711ff-0ac2-499b-a382-033f6d6093c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47518,cd9d0183-4077-4021-b51f-1fb7d15eaa4c,LIST_ACCOUNTS,hbciListAccounts,false -47519,cd9d0183-4077-4021-b51f-1fb7d15eaa4c,LIST_TRANSACTIONS,hbciListTransactions,false -47520,cd9d0183-4077-4021-b51f-1fb7d15eaa4c,AUTHORIZATION,,false -47521,cd9d0183-4077-4021-b51f-1fb7d15eaa4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47522,cd9d0183-4077-4021-b51f-1fb7d15eaa4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47523,cd9d0183-4077-4021-b51f-1fb7d15eaa4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47518,a2be1cbe-61d5-462e-ab16-6a153ac8142c,LIST_ACCOUNTS,hbciListAccounts,false +47519,a2be1cbe-61d5-462e-ab16-6a153ac8142c,LIST_TRANSACTIONS,hbciListTransactions,false +47520,a2be1cbe-61d5-462e-ab16-6a153ac8142c,AUTHORIZATION,,false +47521,a2be1cbe-61d5-462e-ab16-6a153ac8142c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47522,a2be1cbe-61d5-462e-ab16-6a153ac8142c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47523,a2be1cbe-61d5-462e-ab16-6a153ac8142c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47524,26e9fc5d-04d9-4535-8fed-064b1b9335b1,LIST_ACCOUNTS,xs2aListAccounts,true -47525,26e9fc5d-04d9-4535-8fed-064b1b9335b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47525,26e9fc5d-04d9-4535-8fed-064b1b9335b1,LIST_TRANSACTIONS,xs2aListTransactions,true 47526,26e9fc5d-04d9-4535-8fed-064b1b9335b1,AUTHORIZATION,,true 47527,26e9fc5d-04d9-4535-8fed-064b1b9335b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47528,26e9fc5d-04d9-4535-8fed-064b1b9335b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47529,26e9fc5d-04d9-4535-8fed-064b1b9335b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47530,b045822b-9e35-4300-8b84-3ed898864cfb,LIST_ACCOUNTS,hbciListAccounts,false -47531,b045822b-9e35-4300-8b84-3ed898864cfb,LIST_TRANSACTIONS,hbciListTransactions,false -47532,b045822b-9e35-4300-8b84-3ed898864cfb,AUTHORIZATION,,false -47533,b045822b-9e35-4300-8b84-3ed898864cfb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47534,b045822b-9e35-4300-8b84-3ed898864cfb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47535,b045822b-9e35-4300-8b84-3ed898864cfb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47530,44bccf3f-afbf-489e-936b-5bdbdb4d67a9,LIST_ACCOUNTS,hbciListAccounts,false +47531,44bccf3f-afbf-489e-936b-5bdbdb4d67a9,LIST_TRANSACTIONS,hbciListTransactions,false +47532,44bccf3f-afbf-489e-936b-5bdbdb4d67a9,AUTHORIZATION,,false +47533,44bccf3f-afbf-489e-936b-5bdbdb4d67a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47534,44bccf3f-afbf-489e-936b-5bdbdb4d67a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47535,44bccf3f-afbf-489e-936b-5bdbdb4d67a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47536,b8269659-52d0-46da-88b1-335a1d9535ed,LIST_ACCOUNTS,xs2aListAccounts,true -47537,b8269659-52d0-46da-88b1-335a1d9535ed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47537,b8269659-52d0-46da-88b1-335a1d9535ed,LIST_TRANSACTIONS,xs2aListTransactions,true 47538,b8269659-52d0-46da-88b1-335a1d9535ed,AUTHORIZATION,,true 47539,b8269659-52d0-46da-88b1-335a1d9535ed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47540,b8269659-52d0-46da-88b1-335a1d9535ed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47541,b8269659-52d0-46da-88b1-335a1d9535ed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47542,f6963ffb-a5b1-4c3f-be5a-e274ef80309d,LIST_ACCOUNTS,hbciListAccounts,false -47543,f6963ffb-a5b1-4c3f-be5a-e274ef80309d,LIST_TRANSACTIONS,hbciListTransactions,false -47544,f6963ffb-a5b1-4c3f-be5a-e274ef80309d,AUTHORIZATION,,false -47545,f6963ffb-a5b1-4c3f-be5a-e274ef80309d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47546,f6963ffb-a5b1-4c3f-be5a-e274ef80309d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47547,f6963ffb-a5b1-4c3f-be5a-e274ef80309d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47542,14d3b522-f46a-40e4-8e9d-f74e9ddbc9c1,LIST_ACCOUNTS,hbciListAccounts,false +47543,14d3b522-f46a-40e4-8e9d-f74e9ddbc9c1,LIST_TRANSACTIONS,hbciListTransactions,false +47544,14d3b522-f46a-40e4-8e9d-f74e9ddbc9c1,AUTHORIZATION,,false +47545,14d3b522-f46a-40e4-8e9d-f74e9ddbc9c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47546,14d3b522-f46a-40e4-8e9d-f74e9ddbc9c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47547,14d3b522-f46a-40e4-8e9d-f74e9ddbc9c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47548,9507db85-3dac-4cbb-b4a6-7b3f874d0846,LIST_ACCOUNTS,xs2aListAccounts,true -47549,9507db85-3dac-4cbb-b4a6-7b3f874d0846,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47549,9507db85-3dac-4cbb-b4a6-7b3f874d0846,LIST_TRANSACTIONS,xs2aListTransactions,true 47550,9507db85-3dac-4cbb-b4a6-7b3f874d0846,AUTHORIZATION,,true 47551,9507db85-3dac-4cbb-b4a6-7b3f874d0846,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47552,9507db85-3dac-4cbb-b4a6-7b3f874d0846,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47553,9507db85-3dac-4cbb-b4a6-7b3f874d0846,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47554,8dc8ef8c-1820-4c44-b8ff-a8bc941096e3,LIST_ACCOUNTS,hbciListAccounts,false -47555,8dc8ef8c-1820-4c44-b8ff-a8bc941096e3,LIST_TRANSACTIONS,hbciListTransactions,false -47556,8dc8ef8c-1820-4c44-b8ff-a8bc941096e3,AUTHORIZATION,,false -47557,8dc8ef8c-1820-4c44-b8ff-a8bc941096e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47558,8dc8ef8c-1820-4c44-b8ff-a8bc941096e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47559,8dc8ef8c-1820-4c44-b8ff-a8bc941096e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47554,696fe6a2-d251-486f-b515-9ea1516ff4d8,LIST_ACCOUNTS,hbciListAccounts,false +47555,696fe6a2-d251-486f-b515-9ea1516ff4d8,LIST_TRANSACTIONS,hbciListTransactions,false +47556,696fe6a2-d251-486f-b515-9ea1516ff4d8,AUTHORIZATION,,false +47557,696fe6a2-d251-486f-b515-9ea1516ff4d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47558,696fe6a2-d251-486f-b515-9ea1516ff4d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47559,696fe6a2-d251-486f-b515-9ea1516ff4d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47560,0b6b0548-ed21-45c8-89a2-221474ae3e23,LIST_ACCOUNTS,xs2aListAccounts,true -47561,0b6b0548-ed21-45c8-89a2-221474ae3e23,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47561,0b6b0548-ed21-45c8-89a2-221474ae3e23,LIST_TRANSACTIONS,xs2aListTransactions,true 47562,0b6b0548-ed21-45c8-89a2-221474ae3e23,AUTHORIZATION,,true 47563,0b6b0548-ed21-45c8-89a2-221474ae3e23,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47564,0b6b0548-ed21-45c8-89a2-221474ae3e23,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47565,0b6b0548-ed21-45c8-89a2-221474ae3e23,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47566,b03a1cf2-6127-4bf6-ac23-ad055bd3cde8,LIST_ACCOUNTS,hbciListAccounts,false -47567,b03a1cf2-6127-4bf6-ac23-ad055bd3cde8,LIST_TRANSACTIONS,hbciListTransactions,false -47568,b03a1cf2-6127-4bf6-ac23-ad055bd3cde8,AUTHORIZATION,,false -47569,b03a1cf2-6127-4bf6-ac23-ad055bd3cde8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47570,b03a1cf2-6127-4bf6-ac23-ad055bd3cde8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47571,b03a1cf2-6127-4bf6-ac23-ad055bd3cde8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47566,6c64ee7c-b4ba-4f9e-8547-42b980b6ad40,LIST_ACCOUNTS,hbciListAccounts,false +47567,6c64ee7c-b4ba-4f9e-8547-42b980b6ad40,LIST_TRANSACTIONS,hbciListTransactions,false +47568,6c64ee7c-b4ba-4f9e-8547-42b980b6ad40,AUTHORIZATION,,false +47569,6c64ee7c-b4ba-4f9e-8547-42b980b6ad40,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47570,6c64ee7c-b4ba-4f9e-8547-42b980b6ad40,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47571,6c64ee7c-b4ba-4f9e-8547-42b980b6ad40,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47572,850a1521-4acc-47b8-9e3a-c1a6ad76842a,LIST_ACCOUNTS,xs2aListAccounts,true -47573,850a1521-4acc-47b8-9e3a-c1a6ad76842a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47573,850a1521-4acc-47b8-9e3a-c1a6ad76842a,LIST_TRANSACTIONS,xs2aListTransactions,true 47574,850a1521-4acc-47b8-9e3a-c1a6ad76842a,AUTHORIZATION,,true 47575,850a1521-4acc-47b8-9e3a-c1a6ad76842a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47576,850a1521-4acc-47b8-9e3a-c1a6ad76842a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47577,850a1521-4acc-47b8-9e3a-c1a6ad76842a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47578,49fb6b81-d772-4758-8b59-a5de61047e96,LIST_ACCOUNTS,hbciListAccounts,false -47579,49fb6b81-d772-4758-8b59-a5de61047e96,LIST_TRANSACTIONS,hbciListTransactions,false -47580,49fb6b81-d772-4758-8b59-a5de61047e96,AUTHORIZATION,,false -47581,49fb6b81-d772-4758-8b59-a5de61047e96,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47582,49fb6b81-d772-4758-8b59-a5de61047e96,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47583,49fb6b81-d772-4758-8b59-a5de61047e96,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47578,1c05b28a-b081-4607-80a3-a67ba15530c9,LIST_ACCOUNTS,hbciListAccounts,false +47579,1c05b28a-b081-4607-80a3-a67ba15530c9,LIST_TRANSACTIONS,hbciListTransactions,false +47580,1c05b28a-b081-4607-80a3-a67ba15530c9,AUTHORIZATION,,false +47581,1c05b28a-b081-4607-80a3-a67ba15530c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47582,1c05b28a-b081-4607-80a3-a67ba15530c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47583,1c05b28a-b081-4607-80a3-a67ba15530c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47584,6462fc71-d058-40f0-a927-0cefcd21cb3e,LIST_ACCOUNTS,xs2aListAccounts,true -47585,6462fc71-d058-40f0-a927-0cefcd21cb3e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47585,6462fc71-d058-40f0-a927-0cefcd21cb3e,LIST_TRANSACTIONS,xs2aListTransactions,true 47586,6462fc71-d058-40f0-a927-0cefcd21cb3e,AUTHORIZATION,,true 47587,6462fc71-d058-40f0-a927-0cefcd21cb3e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47588,6462fc71-d058-40f0-a927-0cefcd21cb3e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47589,6462fc71-d058-40f0-a927-0cefcd21cb3e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47590,7deffe6a-d0a0-4993-97ee-080a5f4bd517,LIST_ACCOUNTS,hbciListAccounts,false -47591,7deffe6a-d0a0-4993-97ee-080a5f4bd517,LIST_TRANSACTIONS,hbciListTransactions,false -47592,7deffe6a-d0a0-4993-97ee-080a5f4bd517,AUTHORIZATION,,false -47593,7deffe6a-d0a0-4993-97ee-080a5f4bd517,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47594,7deffe6a-d0a0-4993-97ee-080a5f4bd517,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47595,7deffe6a-d0a0-4993-97ee-080a5f4bd517,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47590,50e00bb3-9e9b-4da0-9b8e-ce0e87a6d2a9,LIST_ACCOUNTS,hbciListAccounts,false +47591,50e00bb3-9e9b-4da0-9b8e-ce0e87a6d2a9,LIST_TRANSACTIONS,hbciListTransactions,false +47592,50e00bb3-9e9b-4da0-9b8e-ce0e87a6d2a9,AUTHORIZATION,,false +47593,50e00bb3-9e9b-4da0-9b8e-ce0e87a6d2a9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47594,50e00bb3-9e9b-4da0-9b8e-ce0e87a6d2a9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47595,50e00bb3-9e9b-4da0-9b8e-ce0e87a6d2a9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47596,25b299bf-25ea-4e82-b648-cb00fc645bc9,LIST_ACCOUNTS,xs2aListAccounts,true -47597,25b299bf-25ea-4e82-b648-cb00fc645bc9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47597,25b299bf-25ea-4e82-b648-cb00fc645bc9,LIST_TRANSACTIONS,xs2aListTransactions,true 47598,25b299bf-25ea-4e82-b648-cb00fc645bc9,AUTHORIZATION,,true 47599,25b299bf-25ea-4e82-b648-cb00fc645bc9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47600,25b299bf-25ea-4e82-b648-cb00fc645bc9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47601,25b299bf-25ea-4e82-b648-cb00fc645bc9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47602,44bb5df7-1874-46cc-9030-53da712ad194,LIST_ACCOUNTS,hbciListAccounts,false -47603,44bb5df7-1874-46cc-9030-53da712ad194,LIST_TRANSACTIONS,hbciListTransactions,false -47604,44bb5df7-1874-46cc-9030-53da712ad194,AUTHORIZATION,,false -47605,44bb5df7-1874-46cc-9030-53da712ad194,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47606,44bb5df7-1874-46cc-9030-53da712ad194,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47607,44bb5df7-1874-46cc-9030-53da712ad194,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47602,878ecfe1-dc30-44fc-a565-f8d40fe8c08a,LIST_ACCOUNTS,hbciListAccounts,false +47603,878ecfe1-dc30-44fc-a565-f8d40fe8c08a,LIST_TRANSACTIONS,hbciListTransactions,false +47604,878ecfe1-dc30-44fc-a565-f8d40fe8c08a,AUTHORIZATION,,false +47605,878ecfe1-dc30-44fc-a565-f8d40fe8c08a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47606,878ecfe1-dc30-44fc-a565-f8d40fe8c08a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47607,878ecfe1-dc30-44fc-a565-f8d40fe8c08a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47608,ad80242d-9ee4-4a83-8bb2-13e94ea1fd68,LIST_ACCOUNTS,xs2aListAccounts,true -47609,ad80242d-9ee4-4a83-8bb2-13e94ea1fd68,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47609,ad80242d-9ee4-4a83-8bb2-13e94ea1fd68,LIST_TRANSACTIONS,xs2aListTransactions,true 47610,ad80242d-9ee4-4a83-8bb2-13e94ea1fd68,AUTHORIZATION,,true 47611,ad80242d-9ee4-4a83-8bb2-13e94ea1fd68,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47612,ad80242d-9ee4-4a83-8bb2-13e94ea1fd68,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47613,ad80242d-9ee4-4a83-8bb2-13e94ea1fd68,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47614,2b2485bf-456c-4f53-bb11-e9563758a904,LIST_ACCOUNTS,hbciListAccounts,false -47615,2b2485bf-456c-4f53-bb11-e9563758a904,LIST_TRANSACTIONS,hbciListTransactions,false -47616,2b2485bf-456c-4f53-bb11-e9563758a904,AUTHORIZATION,,false -47617,2b2485bf-456c-4f53-bb11-e9563758a904,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47618,2b2485bf-456c-4f53-bb11-e9563758a904,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47619,2b2485bf-456c-4f53-bb11-e9563758a904,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47614,98c59972-7202-4a06-a5f7-e1b9c4788049,LIST_ACCOUNTS,hbciListAccounts,false +47615,98c59972-7202-4a06-a5f7-e1b9c4788049,LIST_TRANSACTIONS,hbciListTransactions,false +47616,98c59972-7202-4a06-a5f7-e1b9c4788049,AUTHORIZATION,,false +47617,98c59972-7202-4a06-a5f7-e1b9c4788049,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47618,98c59972-7202-4a06-a5f7-e1b9c4788049,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47619,98c59972-7202-4a06-a5f7-e1b9c4788049,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47620,c3b5bce1-22a0-4fda-a776-5763a29a5588,LIST_ACCOUNTS,xs2aListAccounts,true -47621,c3b5bce1-22a0-4fda-a776-5763a29a5588,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47621,c3b5bce1-22a0-4fda-a776-5763a29a5588,LIST_TRANSACTIONS,xs2aListTransactions,true 47622,c3b5bce1-22a0-4fda-a776-5763a29a5588,AUTHORIZATION,,true 47623,c3b5bce1-22a0-4fda-a776-5763a29a5588,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47624,c3b5bce1-22a0-4fda-a776-5763a29a5588,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47625,c3b5bce1-22a0-4fda-a776-5763a29a5588,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47626,d1a8d61f-6098-4414-8479-993a1cae9474,LIST_ACCOUNTS,hbciListAccounts,false -47627,d1a8d61f-6098-4414-8479-993a1cae9474,LIST_TRANSACTIONS,hbciListTransactions,false -47628,d1a8d61f-6098-4414-8479-993a1cae9474,AUTHORIZATION,,false -47629,d1a8d61f-6098-4414-8479-993a1cae9474,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47630,d1a8d61f-6098-4414-8479-993a1cae9474,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47631,d1a8d61f-6098-4414-8479-993a1cae9474,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47626,89bf2e93-e5af-4af1-93e3-56fadd5ec995,LIST_ACCOUNTS,hbciListAccounts,false +47627,89bf2e93-e5af-4af1-93e3-56fadd5ec995,LIST_TRANSACTIONS,hbciListTransactions,false +47628,89bf2e93-e5af-4af1-93e3-56fadd5ec995,AUTHORIZATION,,false +47629,89bf2e93-e5af-4af1-93e3-56fadd5ec995,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47630,89bf2e93-e5af-4af1-93e3-56fadd5ec995,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47631,89bf2e93-e5af-4af1-93e3-56fadd5ec995,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47632,8f43405a-93ac-4ded-9782-3beca43231de,LIST_ACCOUNTS,xs2aListAccounts,true -47633,8f43405a-93ac-4ded-9782-3beca43231de,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47633,8f43405a-93ac-4ded-9782-3beca43231de,LIST_TRANSACTIONS,xs2aListTransactions,true 47634,8f43405a-93ac-4ded-9782-3beca43231de,AUTHORIZATION,,true 47635,8f43405a-93ac-4ded-9782-3beca43231de,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47636,8f43405a-93ac-4ded-9782-3beca43231de,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47637,8f43405a-93ac-4ded-9782-3beca43231de,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47638,b4d2e105-72d6-45b2-b2ae-7a899f3049ff,LIST_ACCOUNTS,hbciListAccounts,false -47639,b4d2e105-72d6-45b2-b2ae-7a899f3049ff,LIST_TRANSACTIONS,hbciListTransactions,false -47640,b4d2e105-72d6-45b2-b2ae-7a899f3049ff,AUTHORIZATION,,false -47641,b4d2e105-72d6-45b2-b2ae-7a899f3049ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47642,b4d2e105-72d6-45b2-b2ae-7a899f3049ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47643,b4d2e105-72d6-45b2-b2ae-7a899f3049ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47638,c14bb611-d2ba-4255-8c56-fb74f62a15e0,LIST_ACCOUNTS,hbciListAccounts,false +47639,c14bb611-d2ba-4255-8c56-fb74f62a15e0,LIST_TRANSACTIONS,hbciListTransactions,false +47640,c14bb611-d2ba-4255-8c56-fb74f62a15e0,AUTHORIZATION,,false +47641,c14bb611-d2ba-4255-8c56-fb74f62a15e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47642,c14bb611-d2ba-4255-8c56-fb74f62a15e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47643,c14bb611-d2ba-4255-8c56-fb74f62a15e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47644,3c46642c-062d-45aa-aa7e-8830554d97a5,LIST_ACCOUNTS,xs2aListAccounts,true -47645,3c46642c-062d-45aa-aa7e-8830554d97a5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47645,3c46642c-062d-45aa-aa7e-8830554d97a5,LIST_TRANSACTIONS,xs2aListTransactions,true 47646,3c46642c-062d-45aa-aa7e-8830554d97a5,AUTHORIZATION,,true 47647,3c46642c-062d-45aa-aa7e-8830554d97a5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47648,3c46642c-062d-45aa-aa7e-8830554d97a5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47649,3c46642c-062d-45aa-aa7e-8830554d97a5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47650,572a1772-8e37-4a22-89af-b993c3929b90,LIST_ACCOUNTS,hbciListAccounts,false -47651,572a1772-8e37-4a22-89af-b993c3929b90,LIST_TRANSACTIONS,hbciListTransactions,false -47652,572a1772-8e37-4a22-89af-b993c3929b90,AUTHORIZATION,,false -47653,572a1772-8e37-4a22-89af-b993c3929b90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47654,572a1772-8e37-4a22-89af-b993c3929b90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47655,572a1772-8e37-4a22-89af-b993c3929b90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47650,99070b86-09d7-4227-a8e7-c013f719576e,LIST_ACCOUNTS,hbciListAccounts,false +47651,99070b86-09d7-4227-a8e7-c013f719576e,LIST_TRANSACTIONS,hbciListTransactions,false +47652,99070b86-09d7-4227-a8e7-c013f719576e,AUTHORIZATION,,false +47653,99070b86-09d7-4227-a8e7-c013f719576e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47654,99070b86-09d7-4227-a8e7-c013f719576e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47655,99070b86-09d7-4227-a8e7-c013f719576e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47656,6689fb53-52f9-4d1d-a438-bdebb5227fa5,LIST_ACCOUNTS,xs2aListAccounts,true -47657,6689fb53-52f9-4d1d-a438-bdebb5227fa5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47657,6689fb53-52f9-4d1d-a438-bdebb5227fa5,LIST_TRANSACTIONS,xs2aListTransactions,true 47658,6689fb53-52f9-4d1d-a438-bdebb5227fa5,AUTHORIZATION,,true 47659,6689fb53-52f9-4d1d-a438-bdebb5227fa5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47660,6689fb53-52f9-4d1d-a438-bdebb5227fa5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47661,6689fb53-52f9-4d1d-a438-bdebb5227fa5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47662,04e5bf5d-e1cb-469f-b305-55fb402b3734,LIST_ACCOUNTS,hbciListAccounts,false -47663,04e5bf5d-e1cb-469f-b305-55fb402b3734,LIST_TRANSACTIONS,hbciListTransactions,false -47664,04e5bf5d-e1cb-469f-b305-55fb402b3734,AUTHORIZATION,,false -47665,04e5bf5d-e1cb-469f-b305-55fb402b3734,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47666,04e5bf5d-e1cb-469f-b305-55fb402b3734,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47667,04e5bf5d-e1cb-469f-b305-55fb402b3734,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47662,65e36815-bffc-451d-a5b0-de815027885f,LIST_ACCOUNTS,hbciListAccounts,false +47663,65e36815-bffc-451d-a5b0-de815027885f,LIST_TRANSACTIONS,hbciListTransactions,false +47664,65e36815-bffc-451d-a5b0-de815027885f,AUTHORIZATION,,false +47665,65e36815-bffc-451d-a5b0-de815027885f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47666,65e36815-bffc-451d-a5b0-de815027885f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47667,65e36815-bffc-451d-a5b0-de815027885f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47668,f6c67eb5-1635-462f-ae41-80050ac137ac,LIST_ACCOUNTS,xs2aListAccounts,true -47669,f6c67eb5-1635-462f-ae41-80050ac137ac,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47669,f6c67eb5-1635-462f-ae41-80050ac137ac,LIST_TRANSACTIONS,xs2aListTransactions,true 47670,f6c67eb5-1635-462f-ae41-80050ac137ac,AUTHORIZATION,,true 47671,f6c67eb5-1635-462f-ae41-80050ac137ac,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47672,f6c67eb5-1635-462f-ae41-80050ac137ac,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47673,f6c67eb5-1635-462f-ae41-80050ac137ac,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47674,80415a66-1723-45a5-b829-6c1f702d6fdb,LIST_ACCOUNTS,hbciListAccounts,false -47675,80415a66-1723-45a5-b829-6c1f702d6fdb,LIST_TRANSACTIONS,hbciListTransactions,false -47676,80415a66-1723-45a5-b829-6c1f702d6fdb,AUTHORIZATION,,false -47677,80415a66-1723-45a5-b829-6c1f702d6fdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47678,80415a66-1723-45a5-b829-6c1f702d6fdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47679,80415a66-1723-45a5-b829-6c1f702d6fdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47674,9fe76082-4dd0-43e0-b85a-e5c98a9edc17,LIST_ACCOUNTS,hbciListAccounts,false +47675,9fe76082-4dd0-43e0-b85a-e5c98a9edc17,LIST_TRANSACTIONS,hbciListTransactions,false +47676,9fe76082-4dd0-43e0-b85a-e5c98a9edc17,AUTHORIZATION,,false +47677,9fe76082-4dd0-43e0-b85a-e5c98a9edc17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47678,9fe76082-4dd0-43e0-b85a-e5c98a9edc17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47679,9fe76082-4dd0-43e0-b85a-e5c98a9edc17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47680,ab294ad2-5fc8-4c31-8de4-48052fe3f78b,LIST_ACCOUNTS,xs2aListAccounts,true -47681,ab294ad2-5fc8-4c31-8de4-48052fe3f78b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47681,ab294ad2-5fc8-4c31-8de4-48052fe3f78b,LIST_TRANSACTIONS,xs2aListTransactions,true 47682,ab294ad2-5fc8-4c31-8de4-48052fe3f78b,AUTHORIZATION,,true 47683,ab294ad2-5fc8-4c31-8de4-48052fe3f78b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47684,ab294ad2-5fc8-4c31-8de4-48052fe3f78b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47685,ab294ad2-5fc8-4c31-8de4-48052fe3f78b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47686,36d8fcdd-d425-4588-b68e-d8e3dc64696d,LIST_ACCOUNTS,hbciListAccounts,false -47687,36d8fcdd-d425-4588-b68e-d8e3dc64696d,LIST_TRANSACTIONS,hbciListTransactions,false -47688,36d8fcdd-d425-4588-b68e-d8e3dc64696d,AUTHORIZATION,,false -47689,36d8fcdd-d425-4588-b68e-d8e3dc64696d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47690,36d8fcdd-d425-4588-b68e-d8e3dc64696d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47691,36d8fcdd-d425-4588-b68e-d8e3dc64696d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47686,8cd7f6fc-b81a-482b-9ab4-8672ae055410,LIST_ACCOUNTS,hbciListAccounts,false +47687,8cd7f6fc-b81a-482b-9ab4-8672ae055410,LIST_TRANSACTIONS,hbciListTransactions,false +47688,8cd7f6fc-b81a-482b-9ab4-8672ae055410,AUTHORIZATION,,false +47689,8cd7f6fc-b81a-482b-9ab4-8672ae055410,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47690,8cd7f6fc-b81a-482b-9ab4-8672ae055410,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47691,8cd7f6fc-b81a-482b-9ab4-8672ae055410,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47692,faa4a80f-920a-404d-918d-ac05fe1d4361,LIST_ACCOUNTS,xs2aListAccounts,true -47693,faa4a80f-920a-404d-918d-ac05fe1d4361,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47693,faa4a80f-920a-404d-918d-ac05fe1d4361,LIST_TRANSACTIONS,xs2aListTransactions,true 47694,faa4a80f-920a-404d-918d-ac05fe1d4361,AUTHORIZATION,,true 47695,faa4a80f-920a-404d-918d-ac05fe1d4361,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47696,faa4a80f-920a-404d-918d-ac05fe1d4361,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47697,faa4a80f-920a-404d-918d-ac05fe1d4361,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47698,0a0e9618-9f57-41c5-aec8-aebdcb12335b,LIST_ACCOUNTS,hbciListAccounts,false -47699,0a0e9618-9f57-41c5-aec8-aebdcb12335b,LIST_TRANSACTIONS,hbciListTransactions,false -47700,0a0e9618-9f57-41c5-aec8-aebdcb12335b,AUTHORIZATION,,false -47701,0a0e9618-9f57-41c5-aec8-aebdcb12335b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47702,0a0e9618-9f57-41c5-aec8-aebdcb12335b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47703,0a0e9618-9f57-41c5-aec8-aebdcb12335b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47698,dad28c4d-7754-4580-bd1b-21db403db609,LIST_ACCOUNTS,hbciListAccounts,false +47699,dad28c4d-7754-4580-bd1b-21db403db609,LIST_TRANSACTIONS,hbciListTransactions,false +47700,dad28c4d-7754-4580-bd1b-21db403db609,AUTHORIZATION,,false +47701,dad28c4d-7754-4580-bd1b-21db403db609,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47702,dad28c4d-7754-4580-bd1b-21db403db609,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47703,dad28c4d-7754-4580-bd1b-21db403db609,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47704,0c66cea9-c7d2-4680-944e-e891520fe609,LIST_ACCOUNTS,xs2aListAccounts,true -47705,0c66cea9-c7d2-4680-944e-e891520fe609,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47705,0c66cea9-c7d2-4680-944e-e891520fe609,LIST_TRANSACTIONS,xs2aListTransactions,true 47706,0c66cea9-c7d2-4680-944e-e891520fe609,AUTHORIZATION,,true 47707,0c66cea9-c7d2-4680-944e-e891520fe609,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47708,0c66cea9-c7d2-4680-944e-e891520fe609,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47709,0c66cea9-c7d2-4680-944e-e891520fe609,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47710,3446fa0c-0035-46a8-ac1d-7edabe825e1a,LIST_ACCOUNTS,hbciListAccounts,false -47711,3446fa0c-0035-46a8-ac1d-7edabe825e1a,LIST_TRANSACTIONS,hbciListTransactions,false -47712,3446fa0c-0035-46a8-ac1d-7edabe825e1a,AUTHORIZATION,,false -47713,3446fa0c-0035-46a8-ac1d-7edabe825e1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47714,3446fa0c-0035-46a8-ac1d-7edabe825e1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47715,3446fa0c-0035-46a8-ac1d-7edabe825e1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47710,887300af-83e4-4e73-a77c-c76faa15650a,LIST_ACCOUNTS,hbciListAccounts,false +47711,887300af-83e4-4e73-a77c-c76faa15650a,LIST_TRANSACTIONS,hbciListTransactions,false +47712,887300af-83e4-4e73-a77c-c76faa15650a,AUTHORIZATION,,false +47713,887300af-83e4-4e73-a77c-c76faa15650a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47714,887300af-83e4-4e73-a77c-c76faa15650a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47715,887300af-83e4-4e73-a77c-c76faa15650a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47716,03dc288a-9956-4b31-a70e-d8970af5837a,LIST_ACCOUNTS,xs2aListAccounts,true -47717,03dc288a-9956-4b31-a70e-d8970af5837a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47717,03dc288a-9956-4b31-a70e-d8970af5837a,LIST_TRANSACTIONS,xs2aListTransactions,true 47718,03dc288a-9956-4b31-a70e-d8970af5837a,AUTHORIZATION,,true 47719,03dc288a-9956-4b31-a70e-d8970af5837a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47720,03dc288a-9956-4b31-a70e-d8970af5837a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47721,03dc288a-9956-4b31-a70e-d8970af5837a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47722,513cbee5-a9ae-44f0-bce2-eff9fcd93eb6,LIST_ACCOUNTS,hbciListAccounts,false -47723,513cbee5-a9ae-44f0-bce2-eff9fcd93eb6,LIST_TRANSACTIONS,hbciListTransactions,false -47724,513cbee5-a9ae-44f0-bce2-eff9fcd93eb6,AUTHORIZATION,,false -47725,513cbee5-a9ae-44f0-bce2-eff9fcd93eb6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47726,513cbee5-a9ae-44f0-bce2-eff9fcd93eb6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47727,513cbee5-a9ae-44f0-bce2-eff9fcd93eb6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47722,1a627381-1717-40c0-8a78-4afef687b29d,LIST_ACCOUNTS,hbciListAccounts,false +47723,1a627381-1717-40c0-8a78-4afef687b29d,LIST_TRANSACTIONS,hbciListTransactions,false +47724,1a627381-1717-40c0-8a78-4afef687b29d,AUTHORIZATION,,false +47725,1a627381-1717-40c0-8a78-4afef687b29d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47726,1a627381-1717-40c0-8a78-4afef687b29d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47727,1a627381-1717-40c0-8a78-4afef687b29d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47728,59698f60-7033-447a-9c4b-0c396cd0aa33,LIST_ACCOUNTS,xs2aListAccounts,true -47729,59698f60-7033-447a-9c4b-0c396cd0aa33,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47729,59698f60-7033-447a-9c4b-0c396cd0aa33,LIST_TRANSACTIONS,xs2aListTransactions,true 47730,59698f60-7033-447a-9c4b-0c396cd0aa33,AUTHORIZATION,,true 47731,59698f60-7033-447a-9c4b-0c396cd0aa33,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47732,59698f60-7033-447a-9c4b-0c396cd0aa33,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47733,59698f60-7033-447a-9c4b-0c396cd0aa33,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47734,3fceac22-ebe3-434c-ad8c-8935f0435b3f,LIST_ACCOUNTS,hbciListAccounts,false -47735,3fceac22-ebe3-434c-ad8c-8935f0435b3f,LIST_TRANSACTIONS,hbciListTransactions,false -47736,3fceac22-ebe3-434c-ad8c-8935f0435b3f,AUTHORIZATION,,false -47737,3fceac22-ebe3-434c-ad8c-8935f0435b3f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47738,3fceac22-ebe3-434c-ad8c-8935f0435b3f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47739,3fceac22-ebe3-434c-ad8c-8935f0435b3f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47734,7e2e6163-7907-4d2e-b4d1-8da8227a58f2,LIST_ACCOUNTS,hbciListAccounts,false +47735,7e2e6163-7907-4d2e-b4d1-8da8227a58f2,LIST_TRANSACTIONS,hbciListTransactions,false +47736,7e2e6163-7907-4d2e-b4d1-8da8227a58f2,AUTHORIZATION,,false +47737,7e2e6163-7907-4d2e-b4d1-8da8227a58f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47738,7e2e6163-7907-4d2e-b4d1-8da8227a58f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47739,7e2e6163-7907-4d2e-b4d1-8da8227a58f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47740,c71c54df-3cbf-4b75-ad50-fadd4320bd21,LIST_ACCOUNTS,xs2aListAccounts,true -47741,c71c54df-3cbf-4b75-ad50-fadd4320bd21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47741,c71c54df-3cbf-4b75-ad50-fadd4320bd21,LIST_TRANSACTIONS,xs2aListTransactions,true 47742,c71c54df-3cbf-4b75-ad50-fadd4320bd21,AUTHORIZATION,,true 47743,c71c54df-3cbf-4b75-ad50-fadd4320bd21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47744,c71c54df-3cbf-4b75-ad50-fadd4320bd21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47745,c71c54df-3cbf-4b75-ad50-fadd4320bd21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47746,e828c399-9ad3-443b-b06b-6dd3b2e431db,LIST_ACCOUNTS,hbciListAccounts,false -47747,e828c399-9ad3-443b-b06b-6dd3b2e431db,LIST_TRANSACTIONS,hbciListTransactions,false -47748,e828c399-9ad3-443b-b06b-6dd3b2e431db,AUTHORIZATION,,false -47749,e828c399-9ad3-443b-b06b-6dd3b2e431db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47750,e828c399-9ad3-443b-b06b-6dd3b2e431db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47751,e828c399-9ad3-443b-b06b-6dd3b2e431db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47746,3ff17a4a-7127-439e-bf54-2316dbf64195,LIST_ACCOUNTS,hbciListAccounts,false +47747,3ff17a4a-7127-439e-bf54-2316dbf64195,LIST_TRANSACTIONS,hbciListTransactions,false +47748,3ff17a4a-7127-439e-bf54-2316dbf64195,AUTHORIZATION,,false +47749,3ff17a4a-7127-439e-bf54-2316dbf64195,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47750,3ff17a4a-7127-439e-bf54-2316dbf64195,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47751,3ff17a4a-7127-439e-bf54-2316dbf64195,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47752,77eca93b-c4ae-4169-baac-042a6ef6122d,LIST_ACCOUNTS,xs2aListAccounts,true -47753,77eca93b-c4ae-4169-baac-042a6ef6122d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47753,77eca93b-c4ae-4169-baac-042a6ef6122d,LIST_TRANSACTIONS,xs2aListTransactions,true 47754,77eca93b-c4ae-4169-baac-042a6ef6122d,AUTHORIZATION,,true 47755,77eca93b-c4ae-4169-baac-042a6ef6122d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47756,77eca93b-c4ae-4169-baac-042a6ef6122d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47757,77eca93b-c4ae-4169-baac-042a6ef6122d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47758,2bf72c75-c6f0-4070-a44b-9aa63313a14e,LIST_ACCOUNTS,hbciListAccounts,false -47759,2bf72c75-c6f0-4070-a44b-9aa63313a14e,LIST_TRANSACTIONS,hbciListTransactions,false -47760,2bf72c75-c6f0-4070-a44b-9aa63313a14e,AUTHORIZATION,,false -47761,2bf72c75-c6f0-4070-a44b-9aa63313a14e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47762,2bf72c75-c6f0-4070-a44b-9aa63313a14e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47763,2bf72c75-c6f0-4070-a44b-9aa63313a14e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47758,42acce15-6a6c-46c0-8ad9-a6b541bdbb9b,LIST_ACCOUNTS,hbciListAccounts,false +47759,42acce15-6a6c-46c0-8ad9-a6b541bdbb9b,LIST_TRANSACTIONS,hbciListTransactions,false +47760,42acce15-6a6c-46c0-8ad9-a6b541bdbb9b,AUTHORIZATION,,false +47761,42acce15-6a6c-46c0-8ad9-a6b541bdbb9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47762,42acce15-6a6c-46c0-8ad9-a6b541bdbb9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47763,42acce15-6a6c-46c0-8ad9-a6b541bdbb9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47764,21d05100-d258-48c7-a677-57d64ec7aa35,LIST_ACCOUNTS,xs2aListAccounts,true -47765,21d05100-d258-48c7-a677-57d64ec7aa35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47765,21d05100-d258-48c7-a677-57d64ec7aa35,LIST_TRANSACTIONS,xs2aListTransactions,true 47766,21d05100-d258-48c7-a677-57d64ec7aa35,AUTHORIZATION,,true 47767,21d05100-d258-48c7-a677-57d64ec7aa35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47768,21d05100-d258-48c7-a677-57d64ec7aa35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47769,21d05100-d258-48c7-a677-57d64ec7aa35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47770,4602156c-7195-417b-ba29-dba9718e609d,LIST_ACCOUNTS,hbciListAccounts,false -47771,4602156c-7195-417b-ba29-dba9718e609d,LIST_TRANSACTIONS,hbciListTransactions,false -47772,4602156c-7195-417b-ba29-dba9718e609d,AUTHORIZATION,,false -47773,4602156c-7195-417b-ba29-dba9718e609d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47774,4602156c-7195-417b-ba29-dba9718e609d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47775,4602156c-7195-417b-ba29-dba9718e609d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47770,8e1ee071-86fc-4f55-a08f-89a3d73d6598,LIST_ACCOUNTS,hbciListAccounts,false +47771,8e1ee071-86fc-4f55-a08f-89a3d73d6598,LIST_TRANSACTIONS,hbciListTransactions,false +47772,8e1ee071-86fc-4f55-a08f-89a3d73d6598,AUTHORIZATION,,false +47773,8e1ee071-86fc-4f55-a08f-89a3d73d6598,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47774,8e1ee071-86fc-4f55-a08f-89a3d73d6598,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47775,8e1ee071-86fc-4f55-a08f-89a3d73d6598,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47776,d21d20fd-8ab9-46e8-8a43-6e5729546512,LIST_ACCOUNTS,xs2aListAccounts,true -47777,d21d20fd-8ab9-46e8-8a43-6e5729546512,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47777,d21d20fd-8ab9-46e8-8a43-6e5729546512,LIST_TRANSACTIONS,xs2aListTransactions,true 47778,d21d20fd-8ab9-46e8-8a43-6e5729546512,AUTHORIZATION,,true 47779,d21d20fd-8ab9-46e8-8a43-6e5729546512,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47780,d21d20fd-8ab9-46e8-8a43-6e5729546512,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47781,d21d20fd-8ab9-46e8-8a43-6e5729546512,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47782,a4fd6683-3ba8-4d80-90c7-c2eec3f97b1e,LIST_ACCOUNTS,hbciListAccounts,false -47783,a4fd6683-3ba8-4d80-90c7-c2eec3f97b1e,LIST_TRANSACTIONS,hbciListTransactions,false -47784,a4fd6683-3ba8-4d80-90c7-c2eec3f97b1e,AUTHORIZATION,,false -47785,a4fd6683-3ba8-4d80-90c7-c2eec3f97b1e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47786,a4fd6683-3ba8-4d80-90c7-c2eec3f97b1e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47787,a4fd6683-3ba8-4d80-90c7-c2eec3f97b1e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47782,53bedbeb-5329-433a-a65e-000aac93e36b,LIST_ACCOUNTS,hbciListAccounts,false +47783,53bedbeb-5329-433a-a65e-000aac93e36b,LIST_TRANSACTIONS,hbciListTransactions,false +47784,53bedbeb-5329-433a-a65e-000aac93e36b,AUTHORIZATION,,false +47785,53bedbeb-5329-433a-a65e-000aac93e36b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47786,53bedbeb-5329-433a-a65e-000aac93e36b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47787,53bedbeb-5329-433a-a65e-000aac93e36b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47788,28fa6e5d-f357-4a01-86c6-c2dc7f906fca,LIST_ACCOUNTS,xs2aListAccounts,true -47789,28fa6e5d-f357-4a01-86c6-c2dc7f906fca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47789,28fa6e5d-f357-4a01-86c6-c2dc7f906fca,LIST_TRANSACTIONS,xs2aListTransactions,true 47790,28fa6e5d-f357-4a01-86c6-c2dc7f906fca,AUTHORIZATION,,true 47791,28fa6e5d-f357-4a01-86c6-c2dc7f906fca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47792,28fa6e5d-f357-4a01-86c6-c2dc7f906fca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47793,28fa6e5d-f357-4a01-86c6-c2dc7f906fca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47794,dee6bc8f-17a0-4241-80d8-7725120fa003,LIST_ACCOUNTS,hbciListAccounts,false -47795,dee6bc8f-17a0-4241-80d8-7725120fa003,LIST_TRANSACTIONS,hbciListTransactions,false -47796,dee6bc8f-17a0-4241-80d8-7725120fa003,AUTHORIZATION,,false -47797,dee6bc8f-17a0-4241-80d8-7725120fa003,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47798,dee6bc8f-17a0-4241-80d8-7725120fa003,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47799,dee6bc8f-17a0-4241-80d8-7725120fa003,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47794,e0681106-7ece-4369-a1ed-21f54d352111,LIST_ACCOUNTS,hbciListAccounts,false +47795,e0681106-7ece-4369-a1ed-21f54d352111,LIST_TRANSACTIONS,hbciListTransactions,false +47796,e0681106-7ece-4369-a1ed-21f54d352111,AUTHORIZATION,,false +47797,e0681106-7ece-4369-a1ed-21f54d352111,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47798,e0681106-7ece-4369-a1ed-21f54d352111,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47799,e0681106-7ece-4369-a1ed-21f54d352111,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47800,2105d43d-5bf7-47df-abe9-2d973e6d9ac2,LIST_ACCOUNTS,xs2aListAccounts,true -47801,2105d43d-5bf7-47df-abe9-2d973e6d9ac2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47801,2105d43d-5bf7-47df-abe9-2d973e6d9ac2,LIST_TRANSACTIONS,xs2aListTransactions,true 47802,2105d43d-5bf7-47df-abe9-2d973e6d9ac2,AUTHORIZATION,,true 47803,2105d43d-5bf7-47df-abe9-2d973e6d9ac2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47804,2105d43d-5bf7-47df-abe9-2d973e6d9ac2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47805,2105d43d-5bf7-47df-abe9-2d973e6d9ac2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47806,cb554b34-a2c9-487f-82e6-03d8ff6e8852,LIST_ACCOUNTS,hbciListAccounts,false -47807,cb554b34-a2c9-487f-82e6-03d8ff6e8852,LIST_TRANSACTIONS,hbciListTransactions,false -47808,cb554b34-a2c9-487f-82e6-03d8ff6e8852,AUTHORIZATION,,false -47809,cb554b34-a2c9-487f-82e6-03d8ff6e8852,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47810,cb554b34-a2c9-487f-82e6-03d8ff6e8852,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47811,cb554b34-a2c9-487f-82e6-03d8ff6e8852,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47806,b88369b9-1713-474a-90e8-dd3ecb8edbb3,LIST_ACCOUNTS,hbciListAccounts,false +47807,b88369b9-1713-474a-90e8-dd3ecb8edbb3,LIST_TRANSACTIONS,hbciListTransactions,false +47808,b88369b9-1713-474a-90e8-dd3ecb8edbb3,AUTHORIZATION,,false +47809,b88369b9-1713-474a-90e8-dd3ecb8edbb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47810,b88369b9-1713-474a-90e8-dd3ecb8edbb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47811,b88369b9-1713-474a-90e8-dd3ecb8edbb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47812,3dfb4f7e-286d-4a8d-b133-e20d26ca0f35,LIST_ACCOUNTS,xs2aListAccounts,true -47813,3dfb4f7e-286d-4a8d-b133-e20d26ca0f35,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47813,3dfb4f7e-286d-4a8d-b133-e20d26ca0f35,LIST_TRANSACTIONS,xs2aListTransactions,true 47814,3dfb4f7e-286d-4a8d-b133-e20d26ca0f35,AUTHORIZATION,,true 47815,3dfb4f7e-286d-4a8d-b133-e20d26ca0f35,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47816,3dfb4f7e-286d-4a8d-b133-e20d26ca0f35,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47817,3dfb4f7e-286d-4a8d-b133-e20d26ca0f35,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47818,6fd6480f-893b-465c-b863-532f563c2d3e,LIST_ACCOUNTS,hbciListAccounts,false -47819,6fd6480f-893b-465c-b863-532f563c2d3e,LIST_TRANSACTIONS,hbciListTransactions,false -47820,6fd6480f-893b-465c-b863-532f563c2d3e,AUTHORIZATION,,false -47821,6fd6480f-893b-465c-b863-532f563c2d3e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47822,6fd6480f-893b-465c-b863-532f563c2d3e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47823,6fd6480f-893b-465c-b863-532f563c2d3e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47818,d24a5234-9316-4204-beed-c4a5bbbe5092,LIST_ACCOUNTS,hbciListAccounts,false +47819,d24a5234-9316-4204-beed-c4a5bbbe5092,LIST_TRANSACTIONS,hbciListTransactions,false +47820,d24a5234-9316-4204-beed-c4a5bbbe5092,AUTHORIZATION,,false +47821,d24a5234-9316-4204-beed-c4a5bbbe5092,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47822,d24a5234-9316-4204-beed-c4a5bbbe5092,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47823,d24a5234-9316-4204-beed-c4a5bbbe5092,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47824,c7a543e5-ab3d-41ce-8e55-6dbbf31c9bb9,LIST_ACCOUNTS,xs2aListAccounts,true -47825,c7a543e5-ab3d-41ce-8e55-6dbbf31c9bb9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47825,c7a543e5-ab3d-41ce-8e55-6dbbf31c9bb9,LIST_TRANSACTIONS,xs2aListTransactions,true 47826,c7a543e5-ab3d-41ce-8e55-6dbbf31c9bb9,AUTHORIZATION,,true 47827,c7a543e5-ab3d-41ce-8e55-6dbbf31c9bb9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47828,c7a543e5-ab3d-41ce-8e55-6dbbf31c9bb9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47829,c7a543e5-ab3d-41ce-8e55-6dbbf31c9bb9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47830,72f0bbf6-157a-4446-bb36-5eac4b3efbc3,LIST_ACCOUNTS,hbciListAccounts,false -47831,72f0bbf6-157a-4446-bb36-5eac4b3efbc3,LIST_TRANSACTIONS,hbciListTransactions,false -47832,72f0bbf6-157a-4446-bb36-5eac4b3efbc3,AUTHORIZATION,,false -47833,72f0bbf6-157a-4446-bb36-5eac4b3efbc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47834,72f0bbf6-157a-4446-bb36-5eac4b3efbc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47835,72f0bbf6-157a-4446-bb36-5eac4b3efbc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47830,7a8129ce-c2dd-448d-bacd-9de4a6620f4f,LIST_ACCOUNTS,hbciListAccounts,false +47831,7a8129ce-c2dd-448d-bacd-9de4a6620f4f,LIST_TRANSACTIONS,hbciListTransactions,false +47832,7a8129ce-c2dd-448d-bacd-9de4a6620f4f,AUTHORIZATION,,false +47833,7a8129ce-c2dd-448d-bacd-9de4a6620f4f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47834,7a8129ce-c2dd-448d-bacd-9de4a6620f4f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47835,7a8129ce-c2dd-448d-bacd-9de4a6620f4f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47836,b79dea3a-02df-4e36-8635-89125b55c0dd,LIST_ACCOUNTS,xs2aListAccounts,true -47837,b79dea3a-02df-4e36-8635-89125b55c0dd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47837,b79dea3a-02df-4e36-8635-89125b55c0dd,LIST_TRANSACTIONS,xs2aListTransactions,true 47838,b79dea3a-02df-4e36-8635-89125b55c0dd,AUTHORIZATION,,true 47839,b79dea3a-02df-4e36-8635-89125b55c0dd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47840,b79dea3a-02df-4e36-8635-89125b55c0dd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47841,b79dea3a-02df-4e36-8635-89125b55c0dd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47842,b4111cc9-956e-4dc2-b7ed-f4a148229497,LIST_ACCOUNTS,hbciListAccounts,false -47843,b4111cc9-956e-4dc2-b7ed-f4a148229497,LIST_TRANSACTIONS,hbciListTransactions,false -47844,b4111cc9-956e-4dc2-b7ed-f4a148229497,AUTHORIZATION,,false -47845,b4111cc9-956e-4dc2-b7ed-f4a148229497,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47846,b4111cc9-956e-4dc2-b7ed-f4a148229497,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47847,b4111cc9-956e-4dc2-b7ed-f4a148229497,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47842,a9df3a71-3376-4c86-b3c7-fa18836cdb54,LIST_ACCOUNTS,hbciListAccounts,false +47843,a9df3a71-3376-4c86-b3c7-fa18836cdb54,LIST_TRANSACTIONS,hbciListTransactions,false +47844,a9df3a71-3376-4c86-b3c7-fa18836cdb54,AUTHORIZATION,,false +47845,a9df3a71-3376-4c86-b3c7-fa18836cdb54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47846,a9df3a71-3376-4c86-b3c7-fa18836cdb54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47847,a9df3a71-3376-4c86-b3c7-fa18836cdb54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47848,fe5bb997-bbe2-43f5-8e4e-be7c1aeeaa19,LIST_ACCOUNTS,xs2aListAccounts,true -47849,fe5bb997-bbe2-43f5-8e4e-be7c1aeeaa19,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47849,fe5bb997-bbe2-43f5-8e4e-be7c1aeeaa19,LIST_TRANSACTIONS,xs2aListTransactions,true 47850,fe5bb997-bbe2-43f5-8e4e-be7c1aeeaa19,AUTHORIZATION,,true 47851,fe5bb997-bbe2-43f5-8e4e-be7c1aeeaa19,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47852,fe5bb997-bbe2-43f5-8e4e-be7c1aeeaa19,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47853,fe5bb997-bbe2-43f5-8e4e-be7c1aeeaa19,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47854,41af25b4-db9a-4c55-8099-9d9ee6d50dd6,LIST_ACCOUNTS,hbciListAccounts,false -47855,41af25b4-db9a-4c55-8099-9d9ee6d50dd6,LIST_TRANSACTIONS,hbciListTransactions,false -47856,41af25b4-db9a-4c55-8099-9d9ee6d50dd6,AUTHORIZATION,,false -47857,41af25b4-db9a-4c55-8099-9d9ee6d50dd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47858,41af25b4-db9a-4c55-8099-9d9ee6d50dd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47859,41af25b4-db9a-4c55-8099-9d9ee6d50dd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47854,1b172481-1854-404c-9ad9-fe43e3b62ef8,LIST_ACCOUNTS,hbciListAccounts,false +47855,1b172481-1854-404c-9ad9-fe43e3b62ef8,LIST_TRANSACTIONS,hbciListTransactions,false +47856,1b172481-1854-404c-9ad9-fe43e3b62ef8,AUTHORIZATION,,false +47857,1b172481-1854-404c-9ad9-fe43e3b62ef8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47858,1b172481-1854-404c-9ad9-fe43e3b62ef8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47859,1b172481-1854-404c-9ad9-fe43e3b62ef8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47860,03772543-e830-4b1a-bfcf-5d904feb9716,LIST_ACCOUNTS,xs2aListAccounts,true -47861,03772543-e830-4b1a-bfcf-5d904feb9716,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47861,03772543-e830-4b1a-bfcf-5d904feb9716,LIST_TRANSACTIONS,xs2aListTransactions,true 47862,03772543-e830-4b1a-bfcf-5d904feb9716,AUTHORIZATION,,true 47863,03772543-e830-4b1a-bfcf-5d904feb9716,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47864,03772543-e830-4b1a-bfcf-5d904feb9716,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47865,03772543-e830-4b1a-bfcf-5d904feb9716,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47866,8bea3e05-d35c-4715-b752-92808cad7016,LIST_ACCOUNTS,hbciListAccounts,false -47867,8bea3e05-d35c-4715-b752-92808cad7016,LIST_TRANSACTIONS,hbciListTransactions,false -47868,8bea3e05-d35c-4715-b752-92808cad7016,AUTHORIZATION,,false -47869,8bea3e05-d35c-4715-b752-92808cad7016,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47870,8bea3e05-d35c-4715-b752-92808cad7016,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47871,8bea3e05-d35c-4715-b752-92808cad7016,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47866,355c17e6-5d22-4e56-946d-8595d2aa6e5a,LIST_ACCOUNTS,hbciListAccounts,false +47867,355c17e6-5d22-4e56-946d-8595d2aa6e5a,LIST_TRANSACTIONS,hbciListTransactions,false +47868,355c17e6-5d22-4e56-946d-8595d2aa6e5a,AUTHORIZATION,,false +47869,355c17e6-5d22-4e56-946d-8595d2aa6e5a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47870,355c17e6-5d22-4e56-946d-8595d2aa6e5a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47871,355c17e6-5d22-4e56-946d-8595d2aa6e5a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47872,552778c3-91c6-4951-8a8e-c2afbe98d72e,LIST_ACCOUNTS,xs2aListAccounts,true -47873,552778c3-91c6-4951-8a8e-c2afbe98d72e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47873,552778c3-91c6-4951-8a8e-c2afbe98d72e,LIST_TRANSACTIONS,xs2aListTransactions,true 47874,552778c3-91c6-4951-8a8e-c2afbe98d72e,AUTHORIZATION,,true 47875,552778c3-91c6-4951-8a8e-c2afbe98d72e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47876,552778c3-91c6-4951-8a8e-c2afbe98d72e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47877,552778c3-91c6-4951-8a8e-c2afbe98d72e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47878,c21b5032-fae0-4617-81d4-3152ee2acdcc,LIST_ACCOUNTS,hbciListAccounts,false -47879,c21b5032-fae0-4617-81d4-3152ee2acdcc,LIST_TRANSACTIONS,hbciListTransactions,false -47880,c21b5032-fae0-4617-81d4-3152ee2acdcc,AUTHORIZATION,,false -47881,c21b5032-fae0-4617-81d4-3152ee2acdcc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47882,c21b5032-fae0-4617-81d4-3152ee2acdcc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47883,c21b5032-fae0-4617-81d4-3152ee2acdcc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47878,62b424f1-e71b-4766-969a-6b1113f3dbfd,LIST_ACCOUNTS,hbciListAccounts,false +47879,62b424f1-e71b-4766-969a-6b1113f3dbfd,LIST_TRANSACTIONS,hbciListTransactions,false +47880,62b424f1-e71b-4766-969a-6b1113f3dbfd,AUTHORIZATION,,false +47881,62b424f1-e71b-4766-969a-6b1113f3dbfd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47882,62b424f1-e71b-4766-969a-6b1113f3dbfd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47883,62b424f1-e71b-4766-969a-6b1113f3dbfd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47884,1d547a1a-c5c4-4c20-8ee5-f781da6e0434,LIST_ACCOUNTS,xs2aListAccounts,true -47885,1d547a1a-c5c4-4c20-8ee5-f781da6e0434,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47885,1d547a1a-c5c4-4c20-8ee5-f781da6e0434,LIST_TRANSACTIONS,xs2aListTransactions,true 47886,1d547a1a-c5c4-4c20-8ee5-f781da6e0434,AUTHORIZATION,,true 47887,1d547a1a-c5c4-4c20-8ee5-f781da6e0434,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47888,1d547a1a-c5c4-4c20-8ee5-f781da6e0434,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47889,1d547a1a-c5c4-4c20-8ee5-f781da6e0434,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47890,5b434653-a959-4492-8691-5c7610974a63,LIST_ACCOUNTS,hbciListAccounts,false -47891,5b434653-a959-4492-8691-5c7610974a63,LIST_TRANSACTIONS,hbciListTransactions,false -47892,5b434653-a959-4492-8691-5c7610974a63,AUTHORIZATION,,false -47893,5b434653-a959-4492-8691-5c7610974a63,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47894,5b434653-a959-4492-8691-5c7610974a63,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47895,5b434653-a959-4492-8691-5c7610974a63,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47890,940e9bd8-ff09-45d6-9cfb-e26ce9237308,LIST_ACCOUNTS,hbciListAccounts,false +47891,940e9bd8-ff09-45d6-9cfb-e26ce9237308,LIST_TRANSACTIONS,hbciListTransactions,false +47892,940e9bd8-ff09-45d6-9cfb-e26ce9237308,AUTHORIZATION,,false +47893,940e9bd8-ff09-45d6-9cfb-e26ce9237308,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47894,940e9bd8-ff09-45d6-9cfb-e26ce9237308,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47895,940e9bd8-ff09-45d6-9cfb-e26ce9237308,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47896,8910ff8d-7080-4474-aec8-d588ca3c69f7,LIST_ACCOUNTS,xs2aListAccounts,true -47897,8910ff8d-7080-4474-aec8-d588ca3c69f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47897,8910ff8d-7080-4474-aec8-d588ca3c69f7,LIST_TRANSACTIONS,xs2aListTransactions,true 47898,8910ff8d-7080-4474-aec8-d588ca3c69f7,AUTHORIZATION,,true 47899,8910ff8d-7080-4474-aec8-d588ca3c69f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47900,8910ff8d-7080-4474-aec8-d588ca3c69f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47901,8910ff8d-7080-4474-aec8-d588ca3c69f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47902,69fdac6d-4428-4cb1-b60d-ba3753561a80,LIST_ACCOUNTS,hbciListAccounts,false -47903,69fdac6d-4428-4cb1-b60d-ba3753561a80,LIST_TRANSACTIONS,hbciListTransactions,false -47904,69fdac6d-4428-4cb1-b60d-ba3753561a80,AUTHORIZATION,,false -47905,69fdac6d-4428-4cb1-b60d-ba3753561a80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47906,69fdac6d-4428-4cb1-b60d-ba3753561a80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47907,69fdac6d-4428-4cb1-b60d-ba3753561a80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47902,91c07989-c5b2-4f47-a175-8b78756d99ab,LIST_ACCOUNTS,hbciListAccounts,false +47903,91c07989-c5b2-4f47-a175-8b78756d99ab,LIST_TRANSACTIONS,hbciListTransactions,false +47904,91c07989-c5b2-4f47-a175-8b78756d99ab,AUTHORIZATION,,false +47905,91c07989-c5b2-4f47-a175-8b78756d99ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47906,91c07989-c5b2-4f47-a175-8b78756d99ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47907,91c07989-c5b2-4f47-a175-8b78756d99ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47908,8f07eee9-1538-4171-a55e-7e70dbf54f6f,LIST_ACCOUNTS,xs2aListAccounts,true -47909,8f07eee9-1538-4171-a55e-7e70dbf54f6f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47909,8f07eee9-1538-4171-a55e-7e70dbf54f6f,LIST_TRANSACTIONS,xs2aListTransactions,true 47910,8f07eee9-1538-4171-a55e-7e70dbf54f6f,AUTHORIZATION,,true 47911,8f07eee9-1538-4171-a55e-7e70dbf54f6f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47912,8f07eee9-1538-4171-a55e-7e70dbf54f6f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47913,8f07eee9-1538-4171-a55e-7e70dbf54f6f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47914,c9691d36-c837-4ffa-8989-301737fe7008,LIST_ACCOUNTS,hbciListAccounts,false -47915,c9691d36-c837-4ffa-8989-301737fe7008,LIST_TRANSACTIONS,hbciListTransactions,false -47916,c9691d36-c837-4ffa-8989-301737fe7008,AUTHORIZATION,,false -47917,c9691d36-c837-4ffa-8989-301737fe7008,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47918,c9691d36-c837-4ffa-8989-301737fe7008,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47919,c9691d36-c837-4ffa-8989-301737fe7008,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47914,b30d3e60-b2fb-4df0-85e7-e18590dbd1b6,LIST_ACCOUNTS,hbciListAccounts,false +47915,b30d3e60-b2fb-4df0-85e7-e18590dbd1b6,LIST_TRANSACTIONS,hbciListTransactions,false +47916,b30d3e60-b2fb-4df0-85e7-e18590dbd1b6,AUTHORIZATION,,false +47917,b30d3e60-b2fb-4df0-85e7-e18590dbd1b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47918,b30d3e60-b2fb-4df0-85e7-e18590dbd1b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47919,b30d3e60-b2fb-4df0-85e7-e18590dbd1b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47920,ab58e80a-32ce-4a6c-b11f-eac4428d5b40,LIST_ACCOUNTS,xs2aListAccounts,true -47921,ab58e80a-32ce-4a6c-b11f-eac4428d5b40,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47921,ab58e80a-32ce-4a6c-b11f-eac4428d5b40,LIST_TRANSACTIONS,xs2aListTransactions,true 47922,ab58e80a-32ce-4a6c-b11f-eac4428d5b40,AUTHORIZATION,,true 47923,ab58e80a-32ce-4a6c-b11f-eac4428d5b40,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47924,ab58e80a-32ce-4a6c-b11f-eac4428d5b40,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47925,ab58e80a-32ce-4a6c-b11f-eac4428d5b40,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47926,a8fa6f35-959a-44b7-beb2-a55365e30216,LIST_ACCOUNTS,hbciListAccounts,false -47927,a8fa6f35-959a-44b7-beb2-a55365e30216,LIST_TRANSACTIONS,hbciListTransactions,false -47928,a8fa6f35-959a-44b7-beb2-a55365e30216,AUTHORIZATION,,false -47929,a8fa6f35-959a-44b7-beb2-a55365e30216,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47930,a8fa6f35-959a-44b7-beb2-a55365e30216,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47931,a8fa6f35-959a-44b7-beb2-a55365e30216,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47926,342bfc18-645e-47b7-a588-5d0c9b4532b3,LIST_ACCOUNTS,hbciListAccounts,false +47927,342bfc18-645e-47b7-a588-5d0c9b4532b3,LIST_TRANSACTIONS,hbciListTransactions,false +47928,342bfc18-645e-47b7-a588-5d0c9b4532b3,AUTHORIZATION,,false +47929,342bfc18-645e-47b7-a588-5d0c9b4532b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47930,342bfc18-645e-47b7-a588-5d0c9b4532b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47931,342bfc18-645e-47b7-a588-5d0c9b4532b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47932,85a9a3b8-6d57-4d16-bd02-be7d554c11d1,LIST_ACCOUNTS,xs2aListAccounts,true -47933,85a9a3b8-6d57-4d16-bd02-be7d554c11d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47933,85a9a3b8-6d57-4d16-bd02-be7d554c11d1,LIST_TRANSACTIONS,xs2aListTransactions,true 47934,85a9a3b8-6d57-4d16-bd02-be7d554c11d1,AUTHORIZATION,,true 47935,85a9a3b8-6d57-4d16-bd02-be7d554c11d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47936,85a9a3b8-6d57-4d16-bd02-be7d554c11d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47937,85a9a3b8-6d57-4d16-bd02-be7d554c11d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47938,b6545f86-c785-477b-96c3-5a71da3a37a0,LIST_ACCOUNTS,hbciListAccounts,false -47939,b6545f86-c785-477b-96c3-5a71da3a37a0,LIST_TRANSACTIONS,hbciListTransactions,false -47940,b6545f86-c785-477b-96c3-5a71da3a37a0,AUTHORIZATION,,false -47941,b6545f86-c785-477b-96c3-5a71da3a37a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47942,b6545f86-c785-477b-96c3-5a71da3a37a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47943,b6545f86-c785-477b-96c3-5a71da3a37a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47938,38de6901-149b-4ecb-bd09-768aa2268fdc,LIST_ACCOUNTS,hbciListAccounts,false +47939,38de6901-149b-4ecb-bd09-768aa2268fdc,LIST_TRANSACTIONS,hbciListTransactions,false +47940,38de6901-149b-4ecb-bd09-768aa2268fdc,AUTHORIZATION,,false +47941,38de6901-149b-4ecb-bd09-768aa2268fdc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47942,38de6901-149b-4ecb-bd09-768aa2268fdc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47943,38de6901-149b-4ecb-bd09-768aa2268fdc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47944,b2c5f83a-f67b-4312-a5f5-a845179d57b0,LIST_ACCOUNTS,xs2aListAccounts,true -47945,b2c5f83a-f67b-4312-a5f5-a845179d57b0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47945,b2c5f83a-f67b-4312-a5f5-a845179d57b0,LIST_TRANSACTIONS,xs2aListTransactions,true 47946,b2c5f83a-f67b-4312-a5f5-a845179d57b0,AUTHORIZATION,,true 47947,b2c5f83a-f67b-4312-a5f5-a845179d57b0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47948,b2c5f83a-f67b-4312-a5f5-a845179d57b0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47949,b2c5f83a-f67b-4312-a5f5-a845179d57b0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47950,efbe4a5d-d8d6-44cf-9f15-2037887a63df,LIST_ACCOUNTS,hbciListAccounts,false -47951,efbe4a5d-d8d6-44cf-9f15-2037887a63df,LIST_TRANSACTIONS,hbciListTransactions,false -47952,efbe4a5d-d8d6-44cf-9f15-2037887a63df,AUTHORIZATION,,false -47953,efbe4a5d-d8d6-44cf-9f15-2037887a63df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47954,efbe4a5d-d8d6-44cf-9f15-2037887a63df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47955,efbe4a5d-d8d6-44cf-9f15-2037887a63df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47950,97118c19-b94b-47a8-8068-34806ab5dd95,LIST_ACCOUNTS,hbciListAccounts,false +47951,97118c19-b94b-47a8-8068-34806ab5dd95,LIST_TRANSACTIONS,hbciListTransactions,false +47952,97118c19-b94b-47a8-8068-34806ab5dd95,AUTHORIZATION,,false +47953,97118c19-b94b-47a8-8068-34806ab5dd95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47954,97118c19-b94b-47a8-8068-34806ab5dd95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47955,97118c19-b94b-47a8-8068-34806ab5dd95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47956,54576564-b8d5-4d5d-9fd6-034b945d9cf3,LIST_ACCOUNTS,xs2aListAccounts,true -47957,54576564-b8d5-4d5d-9fd6-034b945d9cf3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47957,54576564-b8d5-4d5d-9fd6-034b945d9cf3,LIST_TRANSACTIONS,xs2aListTransactions,true 47958,54576564-b8d5-4d5d-9fd6-034b945d9cf3,AUTHORIZATION,,true 47959,54576564-b8d5-4d5d-9fd6-034b945d9cf3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47960,54576564-b8d5-4d5d-9fd6-034b945d9cf3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47961,54576564-b8d5-4d5d-9fd6-034b945d9cf3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47962,94dec651-5738-4d48-81e1-5fd448b7d468,LIST_ACCOUNTS,hbciListAccounts,false -47963,94dec651-5738-4d48-81e1-5fd448b7d468,LIST_TRANSACTIONS,hbciListTransactions,false -47964,94dec651-5738-4d48-81e1-5fd448b7d468,AUTHORIZATION,,false -47965,94dec651-5738-4d48-81e1-5fd448b7d468,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47966,94dec651-5738-4d48-81e1-5fd448b7d468,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47967,94dec651-5738-4d48-81e1-5fd448b7d468,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47962,ef0c691a-7ff6-424a-b7fb-68bddb8c4a36,LIST_ACCOUNTS,hbciListAccounts,false +47963,ef0c691a-7ff6-424a-b7fb-68bddb8c4a36,LIST_TRANSACTIONS,hbciListTransactions,false +47964,ef0c691a-7ff6-424a-b7fb-68bddb8c4a36,AUTHORIZATION,,false +47965,ef0c691a-7ff6-424a-b7fb-68bddb8c4a36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47966,ef0c691a-7ff6-424a-b7fb-68bddb8c4a36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47967,ef0c691a-7ff6-424a-b7fb-68bddb8c4a36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47968,4531f59b-bdca-4d79-891d-fdce288ce82e,LIST_ACCOUNTS,xs2aListAccounts,true -47969,4531f59b-bdca-4d79-891d-fdce288ce82e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47969,4531f59b-bdca-4d79-891d-fdce288ce82e,LIST_TRANSACTIONS,xs2aListTransactions,true 47970,4531f59b-bdca-4d79-891d-fdce288ce82e,AUTHORIZATION,,true 47971,4531f59b-bdca-4d79-891d-fdce288ce82e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47972,4531f59b-bdca-4d79-891d-fdce288ce82e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47973,4531f59b-bdca-4d79-891d-fdce288ce82e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47974,006fb61c-89fd-483a-9cdd-5061dd95a2e1,LIST_ACCOUNTS,hbciListAccounts,false -47975,006fb61c-89fd-483a-9cdd-5061dd95a2e1,LIST_TRANSACTIONS,hbciListTransactions,false -47976,006fb61c-89fd-483a-9cdd-5061dd95a2e1,AUTHORIZATION,,false -47977,006fb61c-89fd-483a-9cdd-5061dd95a2e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47978,006fb61c-89fd-483a-9cdd-5061dd95a2e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47979,006fb61c-89fd-483a-9cdd-5061dd95a2e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47974,455417c1-9739-447f-be59-e1e5506783d4,LIST_ACCOUNTS,hbciListAccounts,false +47975,455417c1-9739-447f-be59-e1e5506783d4,LIST_TRANSACTIONS,hbciListTransactions,false +47976,455417c1-9739-447f-be59-e1e5506783d4,AUTHORIZATION,,false +47977,455417c1-9739-447f-be59-e1e5506783d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47978,455417c1-9739-447f-be59-e1e5506783d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47979,455417c1-9739-447f-be59-e1e5506783d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47980,8b57e7b0-7a94-4973-ab1e-399f295dbe14,LIST_ACCOUNTS,xs2aListAccounts,true -47981,8b57e7b0-7a94-4973-ab1e-399f295dbe14,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47981,8b57e7b0-7a94-4973-ab1e-399f295dbe14,LIST_TRANSACTIONS,xs2aListTransactions,true 47982,8b57e7b0-7a94-4973-ab1e-399f295dbe14,AUTHORIZATION,,true 47983,8b57e7b0-7a94-4973-ab1e-399f295dbe14,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47984,8b57e7b0-7a94-4973-ab1e-399f295dbe14,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47985,8b57e7b0-7a94-4973-ab1e-399f295dbe14,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47986,3ade8779-bb50-4f21-ba20-001cf186b731,LIST_ACCOUNTS,hbciListAccounts,false -47987,3ade8779-bb50-4f21-ba20-001cf186b731,LIST_TRANSACTIONS,hbciListTransactions,false -47988,3ade8779-bb50-4f21-ba20-001cf186b731,AUTHORIZATION,,false -47989,3ade8779-bb50-4f21-ba20-001cf186b731,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -47990,3ade8779-bb50-4f21-ba20-001cf186b731,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -47991,3ade8779-bb50-4f21-ba20-001cf186b731,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47986,7cc0077a-3bff-4869-a8b5-7ada2b068f74,LIST_ACCOUNTS,hbciListAccounts,false +47987,7cc0077a-3bff-4869-a8b5-7ada2b068f74,LIST_TRANSACTIONS,hbciListTransactions,false +47988,7cc0077a-3bff-4869-a8b5-7ada2b068f74,AUTHORIZATION,,false +47989,7cc0077a-3bff-4869-a8b5-7ada2b068f74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +47990,7cc0077a-3bff-4869-a8b5-7ada2b068f74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +47991,7cc0077a-3bff-4869-a8b5-7ada2b068f74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 47992,1e13fb7e-ec51-404d-b1d6-7abe7631cfa0,LIST_ACCOUNTS,xs2aListAccounts,true -47993,1e13fb7e-ec51-404d-b1d6-7abe7631cfa0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +47993,1e13fb7e-ec51-404d-b1d6-7abe7631cfa0,LIST_TRANSACTIONS,xs2aListTransactions,true 47994,1e13fb7e-ec51-404d-b1d6-7abe7631cfa0,AUTHORIZATION,,true 47995,1e13fb7e-ec51-404d-b1d6-7abe7631cfa0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 47996,1e13fb7e-ec51-404d-b1d6-7abe7631cfa0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 47997,1e13fb7e-ec51-404d-b1d6-7abe7631cfa0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -47998,f83338b9-83dd-4f96-b3f9-3806cbf03548,LIST_ACCOUNTS,hbciListAccounts,false -47999,f83338b9-83dd-4f96-b3f9-3806cbf03548,LIST_TRANSACTIONS,hbciListTransactions,false -48000,f83338b9-83dd-4f96-b3f9-3806cbf03548,AUTHORIZATION,,false -48001,f83338b9-83dd-4f96-b3f9-3806cbf03548,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48002,f83338b9-83dd-4f96-b3f9-3806cbf03548,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48003,f83338b9-83dd-4f96-b3f9-3806cbf03548,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +47998,e531ae19-027c-49b5-88da-b03693540505,LIST_ACCOUNTS,hbciListAccounts,false +47999,e531ae19-027c-49b5-88da-b03693540505,LIST_TRANSACTIONS,hbciListTransactions,false +48000,e531ae19-027c-49b5-88da-b03693540505,AUTHORIZATION,,false +48001,e531ae19-027c-49b5-88da-b03693540505,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48002,e531ae19-027c-49b5-88da-b03693540505,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48003,e531ae19-027c-49b5-88da-b03693540505,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48004,e21ad923-abde-473c-9a66-698e86f4e1bc,LIST_ACCOUNTS,xs2aListAccounts,true -48005,e21ad923-abde-473c-9a66-698e86f4e1bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48005,e21ad923-abde-473c-9a66-698e86f4e1bc,LIST_TRANSACTIONS,xs2aListTransactions,true 48006,e21ad923-abde-473c-9a66-698e86f4e1bc,AUTHORIZATION,,true 48007,e21ad923-abde-473c-9a66-698e86f4e1bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48008,e21ad923-abde-473c-9a66-698e86f4e1bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48009,e21ad923-abde-473c-9a66-698e86f4e1bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48010,c4ccd783-62fe-4a82-a04d-f012710633e6,LIST_ACCOUNTS,hbciListAccounts,false -48011,c4ccd783-62fe-4a82-a04d-f012710633e6,LIST_TRANSACTIONS,hbciListTransactions,false -48012,c4ccd783-62fe-4a82-a04d-f012710633e6,AUTHORIZATION,,false -48013,c4ccd783-62fe-4a82-a04d-f012710633e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48014,c4ccd783-62fe-4a82-a04d-f012710633e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48015,c4ccd783-62fe-4a82-a04d-f012710633e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48010,e515c5ac-cd9f-4bc7-ad3b-bcb943fe7f89,LIST_ACCOUNTS,hbciListAccounts,false +48011,e515c5ac-cd9f-4bc7-ad3b-bcb943fe7f89,LIST_TRANSACTIONS,hbciListTransactions,false +48012,e515c5ac-cd9f-4bc7-ad3b-bcb943fe7f89,AUTHORIZATION,,false +48013,e515c5ac-cd9f-4bc7-ad3b-bcb943fe7f89,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48014,e515c5ac-cd9f-4bc7-ad3b-bcb943fe7f89,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48015,e515c5ac-cd9f-4bc7-ad3b-bcb943fe7f89,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48016,9e04e08d-8a3d-475b-aae3-c3b057ec450c,LIST_ACCOUNTS,xs2aListAccounts,true -48017,9e04e08d-8a3d-475b-aae3-c3b057ec450c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48017,9e04e08d-8a3d-475b-aae3-c3b057ec450c,LIST_TRANSACTIONS,xs2aListTransactions,true 48018,9e04e08d-8a3d-475b-aae3-c3b057ec450c,AUTHORIZATION,,true 48019,9e04e08d-8a3d-475b-aae3-c3b057ec450c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48020,9e04e08d-8a3d-475b-aae3-c3b057ec450c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48021,9e04e08d-8a3d-475b-aae3-c3b057ec450c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48022,4b861060-8f67-4c54-9ba0-8af45bba06b1,LIST_ACCOUNTS,hbciListAccounts,false -48023,4b861060-8f67-4c54-9ba0-8af45bba06b1,LIST_TRANSACTIONS,hbciListTransactions,false -48024,4b861060-8f67-4c54-9ba0-8af45bba06b1,AUTHORIZATION,,false -48025,4b861060-8f67-4c54-9ba0-8af45bba06b1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48026,4b861060-8f67-4c54-9ba0-8af45bba06b1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48027,4b861060-8f67-4c54-9ba0-8af45bba06b1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48022,cba72027-39c2-4d6e-aa1c-a0cd291ffea2,LIST_ACCOUNTS,hbciListAccounts,false +48023,cba72027-39c2-4d6e-aa1c-a0cd291ffea2,LIST_TRANSACTIONS,hbciListTransactions,false +48024,cba72027-39c2-4d6e-aa1c-a0cd291ffea2,AUTHORIZATION,,false +48025,cba72027-39c2-4d6e-aa1c-a0cd291ffea2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48026,cba72027-39c2-4d6e-aa1c-a0cd291ffea2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48027,cba72027-39c2-4d6e-aa1c-a0cd291ffea2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48028,dc04a989-25dc-4b97-b0ac-a4d881740867,LIST_ACCOUNTS,xs2aListAccounts,true -48029,dc04a989-25dc-4b97-b0ac-a4d881740867,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48029,dc04a989-25dc-4b97-b0ac-a4d881740867,LIST_TRANSACTIONS,xs2aListTransactions,true 48030,dc04a989-25dc-4b97-b0ac-a4d881740867,AUTHORIZATION,,true 48031,dc04a989-25dc-4b97-b0ac-a4d881740867,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48032,dc04a989-25dc-4b97-b0ac-a4d881740867,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48033,dc04a989-25dc-4b97-b0ac-a4d881740867,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48034,535361bf-c78e-4699-aede-5308431b0ba5,LIST_ACCOUNTS,hbciListAccounts,false -48035,535361bf-c78e-4699-aede-5308431b0ba5,LIST_TRANSACTIONS,hbciListTransactions,false -48036,535361bf-c78e-4699-aede-5308431b0ba5,AUTHORIZATION,,false -48037,535361bf-c78e-4699-aede-5308431b0ba5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48038,535361bf-c78e-4699-aede-5308431b0ba5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48039,535361bf-c78e-4699-aede-5308431b0ba5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48034,15d7cd04-0dd9-4ac5-86d8-cf4103936f85,LIST_ACCOUNTS,hbciListAccounts,false +48035,15d7cd04-0dd9-4ac5-86d8-cf4103936f85,LIST_TRANSACTIONS,hbciListTransactions,false +48036,15d7cd04-0dd9-4ac5-86d8-cf4103936f85,AUTHORIZATION,,false +48037,15d7cd04-0dd9-4ac5-86d8-cf4103936f85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48038,15d7cd04-0dd9-4ac5-86d8-cf4103936f85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48039,15d7cd04-0dd9-4ac5-86d8-cf4103936f85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48040,bff83a3b-b801-46b8-9927-bda26ce7a8d8,LIST_ACCOUNTS,xs2aListAccounts,true -48041,bff83a3b-b801-46b8-9927-bda26ce7a8d8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48041,bff83a3b-b801-46b8-9927-bda26ce7a8d8,LIST_TRANSACTIONS,xs2aListTransactions,true 48042,bff83a3b-b801-46b8-9927-bda26ce7a8d8,AUTHORIZATION,,true 48043,bff83a3b-b801-46b8-9927-bda26ce7a8d8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48044,bff83a3b-b801-46b8-9927-bda26ce7a8d8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48045,bff83a3b-b801-46b8-9927-bda26ce7a8d8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48046,c694debc-7b6d-4373-a6fc-d4e72644c949,LIST_ACCOUNTS,hbciListAccounts,false -48047,c694debc-7b6d-4373-a6fc-d4e72644c949,LIST_TRANSACTIONS,hbciListTransactions,false -48048,c694debc-7b6d-4373-a6fc-d4e72644c949,AUTHORIZATION,,false -48049,c694debc-7b6d-4373-a6fc-d4e72644c949,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48050,c694debc-7b6d-4373-a6fc-d4e72644c949,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48051,c694debc-7b6d-4373-a6fc-d4e72644c949,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48046,03753863-b44f-4758-969a-4c3ec5af35b5,LIST_ACCOUNTS,hbciListAccounts,false +48047,03753863-b44f-4758-969a-4c3ec5af35b5,LIST_TRANSACTIONS,hbciListTransactions,false +48048,03753863-b44f-4758-969a-4c3ec5af35b5,AUTHORIZATION,,false +48049,03753863-b44f-4758-969a-4c3ec5af35b5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48050,03753863-b44f-4758-969a-4c3ec5af35b5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48051,03753863-b44f-4758-969a-4c3ec5af35b5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48052,7f0c5120-d087-4def-ad26-64b440fc8146,LIST_ACCOUNTS,xs2aListAccounts,true -48053,7f0c5120-d087-4def-ad26-64b440fc8146,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48053,7f0c5120-d087-4def-ad26-64b440fc8146,LIST_TRANSACTIONS,xs2aListTransactions,true 48054,7f0c5120-d087-4def-ad26-64b440fc8146,AUTHORIZATION,,true 48055,7f0c5120-d087-4def-ad26-64b440fc8146,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48056,7f0c5120-d087-4def-ad26-64b440fc8146,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48057,7f0c5120-d087-4def-ad26-64b440fc8146,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48058,e2342b49-d6b6-4413-ac3d-908e42a04829,LIST_ACCOUNTS,hbciListAccounts,false -48059,e2342b49-d6b6-4413-ac3d-908e42a04829,LIST_TRANSACTIONS,hbciListTransactions,false -48060,e2342b49-d6b6-4413-ac3d-908e42a04829,AUTHORIZATION,,false -48061,e2342b49-d6b6-4413-ac3d-908e42a04829,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48062,e2342b49-d6b6-4413-ac3d-908e42a04829,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48063,e2342b49-d6b6-4413-ac3d-908e42a04829,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48058,95b1c658-d3ee-4d4f-bef8-d630d5d33697,LIST_ACCOUNTS,hbciListAccounts,false +48059,95b1c658-d3ee-4d4f-bef8-d630d5d33697,LIST_TRANSACTIONS,hbciListTransactions,false +48060,95b1c658-d3ee-4d4f-bef8-d630d5d33697,AUTHORIZATION,,false +48061,95b1c658-d3ee-4d4f-bef8-d630d5d33697,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48062,95b1c658-d3ee-4d4f-bef8-d630d5d33697,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48063,95b1c658-d3ee-4d4f-bef8-d630d5d33697,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48064,9129030a-af54-4290-af35-4de66a36ddb9,LIST_ACCOUNTS,xs2aListAccounts,true -48065,9129030a-af54-4290-af35-4de66a36ddb9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48065,9129030a-af54-4290-af35-4de66a36ddb9,LIST_TRANSACTIONS,xs2aListTransactions,true 48066,9129030a-af54-4290-af35-4de66a36ddb9,AUTHORIZATION,,true 48067,9129030a-af54-4290-af35-4de66a36ddb9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48068,9129030a-af54-4290-af35-4de66a36ddb9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48069,9129030a-af54-4290-af35-4de66a36ddb9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48070,0c76513b-f934-4781-8631-493d70fae0bc,LIST_ACCOUNTS,hbciListAccounts,false -48071,0c76513b-f934-4781-8631-493d70fae0bc,LIST_TRANSACTIONS,hbciListTransactions,false -48072,0c76513b-f934-4781-8631-493d70fae0bc,AUTHORIZATION,,false -48073,0c76513b-f934-4781-8631-493d70fae0bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48074,0c76513b-f934-4781-8631-493d70fae0bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48075,0c76513b-f934-4781-8631-493d70fae0bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48070,54e7a3bd-5b33-4d83-8963-d07fbad6b24a,LIST_ACCOUNTS,hbciListAccounts,false +48071,54e7a3bd-5b33-4d83-8963-d07fbad6b24a,LIST_TRANSACTIONS,hbciListTransactions,false +48072,54e7a3bd-5b33-4d83-8963-d07fbad6b24a,AUTHORIZATION,,false +48073,54e7a3bd-5b33-4d83-8963-d07fbad6b24a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48074,54e7a3bd-5b33-4d83-8963-d07fbad6b24a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48075,54e7a3bd-5b33-4d83-8963-d07fbad6b24a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48076,32898076-9457-4b56-8503-daf5580a0493,LIST_ACCOUNTS,xs2aListAccounts,true -48077,32898076-9457-4b56-8503-daf5580a0493,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48077,32898076-9457-4b56-8503-daf5580a0493,LIST_TRANSACTIONS,xs2aListTransactions,true 48078,32898076-9457-4b56-8503-daf5580a0493,AUTHORIZATION,,true 48079,32898076-9457-4b56-8503-daf5580a0493,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48080,32898076-9457-4b56-8503-daf5580a0493,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48081,32898076-9457-4b56-8503-daf5580a0493,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48082,76895960-d768-4c6b-acdb-5dd6be1d6ddc,LIST_ACCOUNTS,hbciListAccounts,false -48083,76895960-d768-4c6b-acdb-5dd6be1d6ddc,LIST_TRANSACTIONS,hbciListTransactions,false -48084,76895960-d768-4c6b-acdb-5dd6be1d6ddc,AUTHORIZATION,,false -48085,76895960-d768-4c6b-acdb-5dd6be1d6ddc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48086,76895960-d768-4c6b-acdb-5dd6be1d6ddc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48087,76895960-d768-4c6b-acdb-5dd6be1d6ddc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48082,3f666cb8-8564-4209-b3c9-a4175b506b05,LIST_ACCOUNTS,hbciListAccounts,false +48083,3f666cb8-8564-4209-b3c9-a4175b506b05,LIST_TRANSACTIONS,hbciListTransactions,false +48084,3f666cb8-8564-4209-b3c9-a4175b506b05,AUTHORIZATION,,false +48085,3f666cb8-8564-4209-b3c9-a4175b506b05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48086,3f666cb8-8564-4209-b3c9-a4175b506b05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48087,3f666cb8-8564-4209-b3c9-a4175b506b05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48088,6b46e455-9042-44d1-958c-58dbe5ca47e6,LIST_ACCOUNTS,xs2aListAccounts,true -48089,6b46e455-9042-44d1-958c-58dbe5ca47e6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48089,6b46e455-9042-44d1-958c-58dbe5ca47e6,LIST_TRANSACTIONS,xs2aListTransactions,true 48090,6b46e455-9042-44d1-958c-58dbe5ca47e6,AUTHORIZATION,,true 48091,6b46e455-9042-44d1-958c-58dbe5ca47e6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48092,6b46e455-9042-44d1-958c-58dbe5ca47e6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48093,6b46e455-9042-44d1-958c-58dbe5ca47e6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48094,c481e7db-776b-4cc8-9f52-0ef9f0e25660,LIST_ACCOUNTS,hbciListAccounts,false -48095,c481e7db-776b-4cc8-9f52-0ef9f0e25660,LIST_TRANSACTIONS,hbciListTransactions,false -48096,c481e7db-776b-4cc8-9f52-0ef9f0e25660,AUTHORIZATION,,false -48097,c481e7db-776b-4cc8-9f52-0ef9f0e25660,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48098,c481e7db-776b-4cc8-9f52-0ef9f0e25660,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48099,c481e7db-776b-4cc8-9f52-0ef9f0e25660,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48094,e451462f-d490-4c3c-908d-f847d899f3ca,LIST_ACCOUNTS,hbciListAccounts,false +48095,e451462f-d490-4c3c-908d-f847d899f3ca,LIST_TRANSACTIONS,hbciListTransactions,false +48096,e451462f-d490-4c3c-908d-f847d899f3ca,AUTHORIZATION,,false +48097,e451462f-d490-4c3c-908d-f847d899f3ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48098,e451462f-d490-4c3c-908d-f847d899f3ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48099,e451462f-d490-4c3c-908d-f847d899f3ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48100,33d0261a-9280-4e42-a433-c26f064268d7,LIST_ACCOUNTS,xs2aListAccounts,true -48101,33d0261a-9280-4e42-a433-c26f064268d7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48101,33d0261a-9280-4e42-a433-c26f064268d7,LIST_TRANSACTIONS,xs2aListTransactions,true 48102,33d0261a-9280-4e42-a433-c26f064268d7,AUTHORIZATION,,true 48103,33d0261a-9280-4e42-a433-c26f064268d7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48104,33d0261a-9280-4e42-a433-c26f064268d7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48105,33d0261a-9280-4e42-a433-c26f064268d7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48106,7ea80c6e-74d3-443f-b609-304bfb644736,LIST_ACCOUNTS,hbciListAccounts,false -48107,7ea80c6e-74d3-443f-b609-304bfb644736,LIST_TRANSACTIONS,hbciListTransactions,false -48108,7ea80c6e-74d3-443f-b609-304bfb644736,AUTHORIZATION,,false -48109,7ea80c6e-74d3-443f-b609-304bfb644736,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48110,7ea80c6e-74d3-443f-b609-304bfb644736,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48111,7ea80c6e-74d3-443f-b609-304bfb644736,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48106,c2985c71-0e33-46e4-b765-da8b01c974fd,LIST_ACCOUNTS,hbciListAccounts,false +48107,c2985c71-0e33-46e4-b765-da8b01c974fd,LIST_TRANSACTIONS,hbciListTransactions,false +48108,c2985c71-0e33-46e4-b765-da8b01c974fd,AUTHORIZATION,,false +48109,c2985c71-0e33-46e4-b765-da8b01c974fd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48110,c2985c71-0e33-46e4-b765-da8b01c974fd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48111,c2985c71-0e33-46e4-b765-da8b01c974fd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48112,9f957143-6639-4b4d-9def-37cca89a1f2f,LIST_ACCOUNTS,xs2aListAccounts,true -48113,9f957143-6639-4b4d-9def-37cca89a1f2f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48113,9f957143-6639-4b4d-9def-37cca89a1f2f,LIST_TRANSACTIONS,xs2aListTransactions,true 48114,9f957143-6639-4b4d-9def-37cca89a1f2f,AUTHORIZATION,,true 48115,9f957143-6639-4b4d-9def-37cca89a1f2f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48116,9f957143-6639-4b4d-9def-37cca89a1f2f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48117,9f957143-6639-4b4d-9def-37cca89a1f2f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48118,e862e2da-60d1-48b9-9249-e8f147a3ffd2,LIST_ACCOUNTS,hbciListAccounts,false -48119,e862e2da-60d1-48b9-9249-e8f147a3ffd2,LIST_TRANSACTIONS,hbciListTransactions,false -48120,e862e2da-60d1-48b9-9249-e8f147a3ffd2,AUTHORIZATION,,false -48121,e862e2da-60d1-48b9-9249-e8f147a3ffd2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48122,e862e2da-60d1-48b9-9249-e8f147a3ffd2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48123,e862e2da-60d1-48b9-9249-e8f147a3ffd2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48118,5d64097c-ada3-4828-ad90-c38f45ec040b,LIST_ACCOUNTS,hbciListAccounts,false +48119,5d64097c-ada3-4828-ad90-c38f45ec040b,LIST_TRANSACTIONS,hbciListTransactions,false +48120,5d64097c-ada3-4828-ad90-c38f45ec040b,AUTHORIZATION,,false +48121,5d64097c-ada3-4828-ad90-c38f45ec040b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48122,5d64097c-ada3-4828-ad90-c38f45ec040b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48123,5d64097c-ada3-4828-ad90-c38f45ec040b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48124,a4976b57-d8c3-4535-9b6d-65b9c8a9bfba,LIST_ACCOUNTS,xs2aListAccounts,true -48125,a4976b57-d8c3-4535-9b6d-65b9c8a9bfba,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48125,a4976b57-d8c3-4535-9b6d-65b9c8a9bfba,LIST_TRANSACTIONS,xs2aListTransactions,true 48126,a4976b57-d8c3-4535-9b6d-65b9c8a9bfba,AUTHORIZATION,,true 48127,a4976b57-d8c3-4535-9b6d-65b9c8a9bfba,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48128,a4976b57-d8c3-4535-9b6d-65b9c8a9bfba,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48129,a4976b57-d8c3-4535-9b6d-65b9c8a9bfba,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48130,2b5e9045-9aa2-43c3-8f86-bdd5d8342e02,LIST_ACCOUNTS,hbciListAccounts,false -48131,2b5e9045-9aa2-43c3-8f86-bdd5d8342e02,LIST_TRANSACTIONS,hbciListTransactions,false -48132,2b5e9045-9aa2-43c3-8f86-bdd5d8342e02,AUTHORIZATION,,false -48133,2b5e9045-9aa2-43c3-8f86-bdd5d8342e02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48134,2b5e9045-9aa2-43c3-8f86-bdd5d8342e02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48135,2b5e9045-9aa2-43c3-8f86-bdd5d8342e02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48130,8916fb6a-fcb4-4a7a-838a-c6a84a5e1a77,LIST_ACCOUNTS,hbciListAccounts,false +48131,8916fb6a-fcb4-4a7a-838a-c6a84a5e1a77,LIST_TRANSACTIONS,hbciListTransactions,false +48132,8916fb6a-fcb4-4a7a-838a-c6a84a5e1a77,AUTHORIZATION,,false +48133,8916fb6a-fcb4-4a7a-838a-c6a84a5e1a77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48134,8916fb6a-fcb4-4a7a-838a-c6a84a5e1a77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48135,8916fb6a-fcb4-4a7a-838a-c6a84a5e1a77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48136,7867bbdf-19ae-4281-abf2-5c586fc54bb9,LIST_ACCOUNTS,xs2aListAccounts,true -48137,7867bbdf-19ae-4281-abf2-5c586fc54bb9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48137,7867bbdf-19ae-4281-abf2-5c586fc54bb9,LIST_TRANSACTIONS,xs2aListTransactions,true 48138,7867bbdf-19ae-4281-abf2-5c586fc54bb9,AUTHORIZATION,,true 48139,7867bbdf-19ae-4281-abf2-5c586fc54bb9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48140,7867bbdf-19ae-4281-abf2-5c586fc54bb9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48141,7867bbdf-19ae-4281-abf2-5c586fc54bb9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48142,56294c0e-4b4a-49a0-8805-132935e00ccd,LIST_ACCOUNTS,hbciListAccounts,false -48143,56294c0e-4b4a-49a0-8805-132935e00ccd,LIST_TRANSACTIONS,hbciListTransactions,false -48144,56294c0e-4b4a-49a0-8805-132935e00ccd,AUTHORIZATION,,false -48145,56294c0e-4b4a-49a0-8805-132935e00ccd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48146,56294c0e-4b4a-49a0-8805-132935e00ccd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48147,56294c0e-4b4a-49a0-8805-132935e00ccd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48142,25724745-5c69-46c4-aaf6-c004bc9768cc,LIST_ACCOUNTS,hbciListAccounts,false +48143,25724745-5c69-46c4-aaf6-c004bc9768cc,LIST_TRANSACTIONS,hbciListTransactions,false +48144,25724745-5c69-46c4-aaf6-c004bc9768cc,AUTHORIZATION,,false +48145,25724745-5c69-46c4-aaf6-c004bc9768cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48146,25724745-5c69-46c4-aaf6-c004bc9768cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48147,25724745-5c69-46c4-aaf6-c004bc9768cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48148,297ebf2f-8539-47e1-ae4f-6b42e726bf46,LIST_ACCOUNTS,xs2aListAccounts,true -48149,297ebf2f-8539-47e1-ae4f-6b42e726bf46,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48149,297ebf2f-8539-47e1-ae4f-6b42e726bf46,LIST_TRANSACTIONS,xs2aListTransactions,true 48150,297ebf2f-8539-47e1-ae4f-6b42e726bf46,AUTHORIZATION,,true 48151,297ebf2f-8539-47e1-ae4f-6b42e726bf46,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48152,297ebf2f-8539-47e1-ae4f-6b42e726bf46,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48153,297ebf2f-8539-47e1-ae4f-6b42e726bf46,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48154,a3bca2fb-da71-4d2f-a952-a74dcfece33c,LIST_ACCOUNTS,hbciListAccounts,false -48155,a3bca2fb-da71-4d2f-a952-a74dcfece33c,LIST_TRANSACTIONS,hbciListTransactions,false -48156,a3bca2fb-da71-4d2f-a952-a74dcfece33c,AUTHORIZATION,,false -48157,a3bca2fb-da71-4d2f-a952-a74dcfece33c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48158,a3bca2fb-da71-4d2f-a952-a74dcfece33c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48159,a3bca2fb-da71-4d2f-a952-a74dcfece33c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48154,413ee6cd-69a7-42c9-87e1-dc779bff3eb1,LIST_ACCOUNTS,hbciListAccounts,false +48155,413ee6cd-69a7-42c9-87e1-dc779bff3eb1,LIST_TRANSACTIONS,hbciListTransactions,false +48156,413ee6cd-69a7-42c9-87e1-dc779bff3eb1,AUTHORIZATION,,false +48157,413ee6cd-69a7-42c9-87e1-dc779bff3eb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48158,413ee6cd-69a7-42c9-87e1-dc779bff3eb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48159,413ee6cd-69a7-42c9-87e1-dc779bff3eb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48160,3acfff05-de08-4f0b-ad21-0cb301533a9c,LIST_ACCOUNTS,xs2aListAccounts,true -48161,3acfff05-de08-4f0b-ad21-0cb301533a9c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48161,3acfff05-de08-4f0b-ad21-0cb301533a9c,LIST_TRANSACTIONS,xs2aListTransactions,true 48162,3acfff05-de08-4f0b-ad21-0cb301533a9c,AUTHORIZATION,,true 48163,3acfff05-de08-4f0b-ad21-0cb301533a9c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48164,3acfff05-de08-4f0b-ad21-0cb301533a9c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48165,3acfff05-de08-4f0b-ad21-0cb301533a9c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48166,7b52604d-e3ad-4201-bded-799793e53827,LIST_ACCOUNTS,hbciListAccounts,false -48167,7b52604d-e3ad-4201-bded-799793e53827,LIST_TRANSACTIONS,hbciListTransactions,false -48168,7b52604d-e3ad-4201-bded-799793e53827,AUTHORIZATION,,false -48169,7b52604d-e3ad-4201-bded-799793e53827,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48170,7b52604d-e3ad-4201-bded-799793e53827,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48171,7b52604d-e3ad-4201-bded-799793e53827,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48166,019fd188-b168-42e1-95a9-cba6d44966e6,LIST_ACCOUNTS,hbciListAccounts,false +48167,019fd188-b168-42e1-95a9-cba6d44966e6,LIST_TRANSACTIONS,hbciListTransactions,false +48168,019fd188-b168-42e1-95a9-cba6d44966e6,AUTHORIZATION,,false +48169,019fd188-b168-42e1-95a9-cba6d44966e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48170,019fd188-b168-42e1-95a9-cba6d44966e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48171,019fd188-b168-42e1-95a9-cba6d44966e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48172,2f78ed69-4ed9-439c-8478-4bb1e3383c9e,LIST_ACCOUNTS,xs2aListAccounts,true -48173,2f78ed69-4ed9-439c-8478-4bb1e3383c9e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48173,2f78ed69-4ed9-439c-8478-4bb1e3383c9e,LIST_TRANSACTIONS,xs2aListTransactions,true 48174,2f78ed69-4ed9-439c-8478-4bb1e3383c9e,AUTHORIZATION,,true 48175,2f78ed69-4ed9-439c-8478-4bb1e3383c9e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48176,2f78ed69-4ed9-439c-8478-4bb1e3383c9e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48177,2f78ed69-4ed9-439c-8478-4bb1e3383c9e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48178,2fafb332-ef0b-444c-a70a-5414be67dbde,LIST_ACCOUNTS,hbciListAccounts,false -48179,2fafb332-ef0b-444c-a70a-5414be67dbde,LIST_TRANSACTIONS,hbciListTransactions,false -48180,2fafb332-ef0b-444c-a70a-5414be67dbde,AUTHORIZATION,,false -48181,2fafb332-ef0b-444c-a70a-5414be67dbde,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48182,2fafb332-ef0b-444c-a70a-5414be67dbde,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48183,2fafb332-ef0b-444c-a70a-5414be67dbde,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48178,3d730230-13b1-49bd-9b4e-4afb64f946d0,LIST_ACCOUNTS,hbciListAccounts,false +48179,3d730230-13b1-49bd-9b4e-4afb64f946d0,LIST_TRANSACTIONS,hbciListTransactions,false +48180,3d730230-13b1-49bd-9b4e-4afb64f946d0,AUTHORIZATION,,false +48181,3d730230-13b1-49bd-9b4e-4afb64f946d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48182,3d730230-13b1-49bd-9b4e-4afb64f946d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48183,3d730230-13b1-49bd-9b4e-4afb64f946d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48184,5b29bf00-7e80-4d4c-aa2c-c284dfd9a172,LIST_ACCOUNTS,xs2aListAccounts,true -48185,5b29bf00-7e80-4d4c-aa2c-c284dfd9a172,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48185,5b29bf00-7e80-4d4c-aa2c-c284dfd9a172,LIST_TRANSACTIONS,xs2aListTransactions,true 48186,5b29bf00-7e80-4d4c-aa2c-c284dfd9a172,AUTHORIZATION,,true 48187,5b29bf00-7e80-4d4c-aa2c-c284dfd9a172,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48188,5b29bf00-7e80-4d4c-aa2c-c284dfd9a172,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48189,5b29bf00-7e80-4d4c-aa2c-c284dfd9a172,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48190,0e0fca4b-5f57-47d8-b0fd-71b9dd3eca98,LIST_ACCOUNTS,hbciListAccounts,false -48191,0e0fca4b-5f57-47d8-b0fd-71b9dd3eca98,LIST_TRANSACTIONS,hbciListTransactions,false -48192,0e0fca4b-5f57-47d8-b0fd-71b9dd3eca98,AUTHORIZATION,,false -48193,0e0fca4b-5f57-47d8-b0fd-71b9dd3eca98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48194,0e0fca4b-5f57-47d8-b0fd-71b9dd3eca98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48195,0e0fca4b-5f57-47d8-b0fd-71b9dd3eca98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48190,2d087c1d-7f9f-4232-82a1-fbdfe74cc08b,LIST_ACCOUNTS,hbciListAccounts,false +48191,2d087c1d-7f9f-4232-82a1-fbdfe74cc08b,LIST_TRANSACTIONS,hbciListTransactions,false +48192,2d087c1d-7f9f-4232-82a1-fbdfe74cc08b,AUTHORIZATION,,false +48193,2d087c1d-7f9f-4232-82a1-fbdfe74cc08b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48194,2d087c1d-7f9f-4232-82a1-fbdfe74cc08b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48195,2d087c1d-7f9f-4232-82a1-fbdfe74cc08b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48196,c36eceff-cedc-48eb-879c-0834f284bd2e,LIST_ACCOUNTS,xs2aListAccounts,true -48197,c36eceff-cedc-48eb-879c-0834f284bd2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48197,c36eceff-cedc-48eb-879c-0834f284bd2e,LIST_TRANSACTIONS,xs2aListTransactions,true 48198,c36eceff-cedc-48eb-879c-0834f284bd2e,AUTHORIZATION,,true 48199,c36eceff-cedc-48eb-879c-0834f284bd2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48200,c36eceff-cedc-48eb-879c-0834f284bd2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48201,c36eceff-cedc-48eb-879c-0834f284bd2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48202,97ec3f7c-9975-4ff8-bf49-70d04fb3200f,LIST_ACCOUNTS,hbciListAccounts,false -48203,97ec3f7c-9975-4ff8-bf49-70d04fb3200f,LIST_TRANSACTIONS,hbciListTransactions,false -48204,97ec3f7c-9975-4ff8-bf49-70d04fb3200f,AUTHORIZATION,,false -48205,97ec3f7c-9975-4ff8-bf49-70d04fb3200f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48206,97ec3f7c-9975-4ff8-bf49-70d04fb3200f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48207,97ec3f7c-9975-4ff8-bf49-70d04fb3200f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48202,003973a7-8103-4505-9115-2f3d5d154cf8,LIST_ACCOUNTS,hbciListAccounts,false +48203,003973a7-8103-4505-9115-2f3d5d154cf8,LIST_TRANSACTIONS,hbciListTransactions,false +48204,003973a7-8103-4505-9115-2f3d5d154cf8,AUTHORIZATION,,false +48205,003973a7-8103-4505-9115-2f3d5d154cf8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48206,003973a7-8103-4505-9115-2f3d5d154cf8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48207,003973a7-8103-4505-9115-2f3d5d154cf8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48208,2f176494-b61d-4147-86ff-6513cd1dfd1c,LIST_ACCOUNTS,xs2aListAccounts,true -48209,2f176494-b61d-4147-86ff-6513cd1dfd1c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48209,2f176494-b61d-4147-86ff-6513cd1dfd1c,LIST_TRANSACTIONS,xs2aListTransactions,true 48210,2f176494-b61d-4147-86ff-6513cd1dfd1c,AUTHORIZATION,,true 48211,2f176494-b61d-4147-86ff-6513cd1dfd1c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48212,2f176494-b61d-4147-86ff-6513cd1dfd1c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48213,2f176494-b61d-4147-86ff-6513cd1dfd1c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48214,8cb32796-e1d4-497e-97b7-6e55c311f68b,LIST_ACCOUNTS,hbciListAccounts,false -48215,8cb32796-e1d4-497e-97b7-6e55c311f68b,LIST_TRANSACTIONS,hbciListTransactions,false -48216,8cb32796-e1d4-497e-97b7-6e55c311f68b,AUTHORIZATION,,false -48217,8cb32796-e1d4-497e-97b7-6e55c311f68b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48218,8cb32796-e1d4-497e-97b7-6e55c311f68b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48219,8cb32796-e1d4-497e-97b7-6e55c311f68b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48214,d01cc744-8aee-4755-961c-8d94715d6c98,LIST_ACCOUNTS,hbciListAccounts,false +48215,d01cc744-8aee-4755-961c-8d94715d6c98,LIST_TRANSACTIONS,hbciListTransactions,false +48216,d01cc744-8aee-4755-961c-8d94715d6c98,AUTHORIZATION,,false +48217,d01cc744-8aee-4755-961c-8d94715d6c98,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48218,d01cc744-8aee-4755-961c-8d94715d6c98,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48219,d01cc744-8aee-4755-961c-8d94715d6c98,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48220,44c8b386-ce87-4a73-a6c6-f26f0a95134c,LIST_ACCOUNTS,xs2aListAccounts,true -48221,44c8b386-ce87-4a73-a6c6-f26f0a95134c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48221,44c8b386-ce87-4a73-a6c6-f26f0a95134c,LIST_TRANSACTIONS,xs2aListTransactions,true 48222,44c8b386-ce87-4a73-a6c6-f26f0a95134c,AUTHORIZATION,,true 48223,44c8b386-ce87-4a73-a6c6-f26f0a95134c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48224,44c8b386-ce87-4a73-a6c6-f26f0a95134c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48225,44c8b386-ce87-4a73-a6c6-f26f0a95134c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48226,1ef9d925-0327-4ead-8b22-cbda64e9f46c,LIST_ACCOUNTS,hbciListAccounts,false -48227,1ef9d925-0327-4ead-8b22-cbda64e9f46c,LIST_TRANSACTIONS,hbciListTransactions,false -48228,1ef9d925-0327-4ead-8b22-cbda64e9f46c,AUTHORIZATION,,false -48229,1ef9d925-0327-4ead-8b22-cbda64e9f46c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48230,1ef9d925-0327-4ead-8b22-cbda64e9f46c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48231,1ef9d925-0327-4ead-8b22-cbda64e9f46c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48226,a1e1fb69-f5ee-41b8-baa2-971531d58d43,LIST_ACCOUNTS,hbciListAccounts,false +48227,a1e1fb69-f5ee-41b8-baa2-971531d58d43,LIST_TRANSACTIONS,hbciListTransactions,false +48228,a1e1fb69-f5ee-41b8-baa2-971531d58d43,AUTHORIZATION,,false +48229,a1e1fb69-f5ee-41b8-baa2-971531d58d43,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48230,a1e1fb69-f5ee-41b8-baa2-971531d58d43,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48231,a1e1fb69-f5ee-41b8-baa2-971531d58d43,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48232,e177d06f-c709-463c-a80a-a94f7ed48b60,LIST_ACCOUNTS,xs2aListAccounts,true -48233,e177d06f-c709-463c-a80a-a94f7ed48b60,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48233,e177d06f-c709-463c-a80a-a94f7ed48b60,LIST_TRANSACTIONS,xs2aListTransactions,true 48234,e177d06f-c709-463c-a80a-a94f7ed48b60,AUTHORIZATION,,true 48235,e177d06f-c709-463c-a80a-a94f7ed48b60,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48236,e177d06f-c709-463c-a80a-a94f7ed48b60,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48237,e177d06f-c709-463c-a80a-a94f7ed48b60,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48238,063051b3-8e6f-4bb5-af87-7efef4ad9e02,LIST_ACCOUNTS,hbciListAccounts,false -48239,063051b3-8e6f-4bb5-af87-7efef4ad9e02,LIST_TRANSACTIONS,hbciListTransactions,false -48240,063051b3-8e6f-4bb5-af87-7efef4ad9e02,AUTHORIZATION,,false -48241,063051b3-8e6f-4bb5-af87-7efef4ad9e02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48242,063051b3-8e6f-4bb5-af87-7efef4ad9e02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48243,063051b3-8e6f-4bb5-af87-7efef4ad9e02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48238,2078504a-2ea2-4200-8347-781a5264c115,LIST_ACCOUNTS,hbciListAccounts,false +48239,2078504a-2ea2-4200-8347-781a5264c115,LIST_TRANSACTIONS,hbciListTransactions,false +48240,2078504a-2ea2-4200-8347-781a5264c115,AUTHORIZATION,,false +48241,2078504a-2ea2-4200-8347-781a5264c115,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48242,2078504a-2ea2-4200-8347-781a5264c115,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48243,2078504a-2ea2-4200-8347-781a5264c115,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48244,18c0aba5-a2d2-4107-ba36-b46b4027301c,LIST_ACCOUNTS,xs2aListAccounts,true -48245,18c0aba5-a2d2-4107-ba36-b46b4027301c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48245,18c0aba5-a2d2-4107-ba36-b46b4027301c,LIST_TRANSACTIONS,xs2aListTransactions,true 48246,18c0aba5-a2d2-4107-ba36-b46b4027301c,AUTHORIZATION,,true 48247,18c0aba5-a2d2-4107-ba36-b46b4027301c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48248,18c0aba5-a2d2-4107-ba36-b46b4027301c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48249,18c0aba5-a2d2-4107-ba36-b46b4027301c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48250,9906322a-2c81-464f-a915-f91ec9689a38,LIST_ACCOUNTS,hbciListAccounts,false -48251,9906322a-2c81-464f-a915-f91ec9689a38,LIST_TRANSACTIONS,hbciListTransactions,false -48252,9906322a-2c81-464f-a915-f91ec9689a38,AUTHORIZATION,,false -48253,9906322a-2c81-464f-a915-f91ec9689a38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48254,9906322a-2c81-464f-a915-f91ec9689a38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48255,9906322a-2c81-464f-a915-f91ec9689a38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48250,6714da61-e717-4dd6-a2fc-fadeeb6dd292,LIST_ACCOUNTS,hbciListAccounts,false +48251,6714da61-e717-4dd6-a2fc-fadeeb6dd292,LIST_TRANSACTIONS,hbciListTransactions,false +48252,6714da61-e717-4dd6-a2fc-fadeeb6dd292,AUTHORIZATION,,false +48253,6714da61-e717-4dd6-a2fc-fadeeb6dd292,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48254,6714da61-e717-4dd6-a2fc-fadeeb6dd292,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48255,6714da61-e717-4dd6-a2fc-fadeeb6dd292,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48256,be716ff6-d274-4b46-b69f-46da1a382fa6,LIST_ACCOUNTS,xs2aListAccounts,true -48257,be716ff6-d274-4b46-b69f-46da1a382fa6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48257,be716ff6-d274-4b46-b69f-46da1a382fa6,LIST_TRANSACTIONS,xs2aListTransactions,true 48258,be716ff6-d274-4b46-b69f-46da1a382fa6,AUTHORIZATION,,true 48259,be716ff6-d274-4b46-b69f-46da1a382fa6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48260,be716ff6-d274-4b46-b69f-46da1a382fa6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48261,be716ff6-d274-4b46-b69f-46da1a382fa6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48262,878eb49a-384b-4943-98e5-066552c8d9c4,LIST_ACCOUNTS,hbciListAccounts,false -48263,878eb49a-384b-4943-98e5-066552c8d9c4,LIST_TRANSACTIONS,hbciListTransactions,false -48264,878eb49a-384b-4943-98e5-066552c8d9c4,AUTHORIZATION,,false -48265,878eb49a-384b-4943-98e5-066552c8d9c4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48266,878eb49a-384b-4943-98e5-066552c8d9c4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48267,878eb49a-384b-4943-98e5-066552c8d9c4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48262,c55aade0-c27e-4e82-b832-f5015e487e31,LIST_ACCOUNTS,hbciListAccounts,false +48263,c55aade0-c27e-4e82-b832-f5015e487e31,LIST_TRANSACTIONS,hbciListTransactions,false +48264,c55aade0-c27e-4e82-b832-f5015e487e31,AUTHORIZATION,,false +48265,c55aade0-c27e-4e82-b832-f5015e487e31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48266,c55aade0-c27e-4e82-b832-f5015e487e31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48267,c55aade0-c27e-4e82-b832-f5015e487e31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48268,e4d2a3e2-0544-4645-b2e7-2c77dedf62c2,LIST_ACCOUNTS,xs2aListAccounts,true -48269,e4d2a3e2-0544-4645-b2e7-2c77dedf62c2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48269,e4d2a3e2-0544-4645-b2e7-2c77dedf62c2,LIST_TRANSACTIONS,xs2aListTransactions,true 48270,e4d2a3e2-0544-4645-b2e7-2c77dedf62c2,AUTHORIZATION,,true 48271,e4d2a3e2-0544-4645-b2e7-2c77dedf62c2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48272,e4d2a3e2-0544-4645-b2e7-2c77dedf62c2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48273,e4d2a3e2-0544-4645-b2e7-2c77dedf62c2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48274,bf29045b-e4fc-435b-b919-f9c52048d524,LIST_ACCOUNTS,hbciListAccounts,false -48275,bf29045b-e4fc-435b-b919-f9c52048d524,LIST_TRANSACTIONS,hbciListTransactions,false -48276,bf29045b-e4fc-435b-b919-f9c52048d524,AUTHORIZATION,,false -48277,bf29045b-e4fc-435b-b919-f9c52048d524,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48278,bf29045b-e4fc-435b-b919-f9c52048d524,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48279,bf29045b-e4fc-435b-b919-f9c52048d524,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48274,3ae1c351-8a8d-40ae-94f1-17b15c9bfeab,LIST_ACCOUNTS,hbciListAccounts,false +48275,3ae1c351-8a8d-40ae-94f1-17b15c9bfeab,LIST_TRANSACTIONS,hbciListTransactions,false +48276,3ae1c351-8a8d-40ae-94f1-17b15c9bfeab,AUTHORIZATION,,false +48277,3ae1c351-8a8d-40ae-94f1-17b15c9bfeab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48278,3ae1c351-8a8d-40ae-94f1-17b15c9bfeab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48279,3ae1c351-8a8d-40ae-94f1-17b15c9bfeab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48280,8209e120-756e-4bf1-82fa-97e132d44589,LIST_ACCOUNTS,xs2aListAccounts,true -48281,8209e120-756e-4bf1-82fa-97e132d44589,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48281,8209e120-756e-4bf1-82fa-97e132d44589,LIST_TRANSACTIONS,xs2aListTransactions,true 48282,8209e120-756e-4bf1-82fa-97e132d44589,AUTHORIZATION,,true 48283,8209e120-756e-4bf1-82fa-97e132d44589,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48284,8209e120-756e-4bf1-82fa-97e132d44589,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48285,8209e120-756e-4bf1-82fa-97e132d44589,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48286,fe976958-6393-4cea-920c-1689ae20f4ae,LIST_ACCOUNTS,hbciListAccounts,false -48287,fe976958-6393-4cea-920c-1689ae20f4ae,LIST_TRANSACTIONS,hbciListTransactions,false -48288,fe976958-6393-4cea-920c-1689ae20f4ae,AUTHORIZATION,,false -48289,fe976958-6393-4cea-920c-1689ae20f4ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48290,fe976958-6393-4cea-920c-1689ae20f4ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48291,fe976958-6393-4cea-920c-1689ae20f4ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48286,4a264619-5584-4ce9-b7fa-ff94dc3726a8,LIST_ACCOUNTS,hbciListAccounts,false +48287,4a264619-5584-4ce9-b7fa-ff94dc3726a8,LIST_TRANSACTIONS,hbciListTransactions,false +48288,4a264619-5584-4ce9-b7fa-ff94dc3726a8,AUTHORIZATION,,false +48289,4a264619-5584-4ce9-b7fa-ff94dc3726a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48290,4a264619-5584-4ce9-b7fa-ff94dc3726a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48291,4a264619-5584-4ce9-b7fa-ff94dc3726a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48292,b444c68c-76f1-4a83-acae-43b3168b997e,LIST_ACCOUNTS,xs2aListAccounts,true -48293,b444c68c-76f1-4a83-acae-43b3168b997e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48293,b444c68c-76f1-4a83-acae-43b3168b997e,LIST_TRANSACTIONS,xs2aListTransactions,true 48294,b444c68c-76f1-4a83-acae-43b3168b997e,AUTHORIZATION,,true 48295,b444c68c-76f1-4a83-acae-43b3168b997e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48296,b444c68c-76f1-4a83-acae-43b3168b997e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48297,b444c68c-76f1-4a83-acae-43b3168b997e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48298,c8e75950-2249-4f96-abf3-29aecbc38c26,LIST_ACCOUNTS,hbciListAccounts,false -48299,c8e75950-2249-4f96-abf3-29aecbc38c26,LIST_TRANSACTIONS,hbciListTransactions,false -48300,c8e75950-2249-4f96-abf3-29aecbc38c26,AUTHORIZATION,,false -48301,c8e75950-2249-4f96-abf3-29aecbc38c26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48302,c8e75950-2249-4f96-abf3-29aecbc38c26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48303,c8e75950-2249-4f96-abf3-29aecbc38c26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48298,d0011e76-e098-4d11-bd17-575bb8a68c85,LIST_ACCOUNTS,hbciListAccounts,false +48299,d0011e76-e098-4d11-bd17-575bb8a68c85,LIST_TRANSACTIONS,hbciListTransactions,false +48300,d0011e76-e098-4d11-bd17-575bb8a68c85,AUTHORIZATION,,false +48301,d0011e76-e098-4d11-bd17-575bb8a68c85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48302,d0011e76-e098-4d11-bd17-575bb8a68c85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48303,d0011e76-e098-4d11-bd17-575bb8a68c85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48304,3044acb4-607b-4f72-80b7-9b6f3a0230b4,LIST_ACCOUNTS,xs2aListAccounts,true -48305,3044acb4-607b-4f72-80b7-9b6f3a0230b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48305,3044acb4-607b-4f72-80b7-9b6f3a0230b4,LIST_TRANSACTIONS,xs2aListTransactions,true 48306,3044acb4-607b-4f72-80b7-9b6f3a0230b4,AUTHORIZATION,,true 48307,3044acb4-607b-4f72-80b7-9b6f3a0230b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48308,3044acb4-607b-4f72-80b7-9b6f3a0230b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48309,3044acb4-607b-4f72-80b7-9b6f3a0230b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48310,af536cc9-1428-41c6-b72d-2b760291639d,LIST_ACCOUNTS,hbciListAccounts,false -48311,af536cc9-1428-41c6-b72d-2b760291639d,LIST_TRANSACTIONS,hbciListTransactions,false -48312,af536cc9-1428-41c6-b72d-2b760291639d,AUTHORIZATION,,false -48313,af536cc9-1428-41c6-b72d-2b760291639d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48314,af536cc9-1428-41c6-b72d-2b760291639d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48315,af536cc9-1428-41c6-b72d-2b760291639d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48310,edda84b7-ca05-47e6-9ffe-7f6ba33cd2d2,LIST_ACCOUNTS,hbciListAccounts,false +48311,edda84b7-ca05-47e6-9ffe-7f6ba33cd2d2,LIST_TRANSACTIONS,hbciListTransactions,false +48312,edda84b7-ca05-47e6-9ffe-7f6ba33cd2d2,AUTHORIZATION,,false +48313,edda84b7-ca05-47e6-9ffe-7f6ba33cd2d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48314,edda84b7-ca05-47e6-9ffe-7f6ba33cd2d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48315,edda84b7-ca05-47e6-9ffe-7f6ba33cd2d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48316,859d608d-8123-4da2-8d75-b73fe6787fca,LIST_ACCOUNTS,xs2aListAccounts,true -48317,859d608d-8123-4da2-8d75-b73fe6787fca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48317,859d608d-8123-4da2-8d75-b73fe6787fca,LIST_TRANSACTIONS,xs2aListTransactions,true 48318,859d608d-8123-4da2-8d75-b73fe6787fca,AUTHORIZATION,,true 48319,859d608d-8123-4da2-8d75-b73fe6787fca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48320,859d608d-8123-4da2-8d75-b73fe6787fca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48321,859d608d-8123-4da2-8d75-b73fe6787fca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48322,f58ceba1-9d5d-4fd3-aa17-6c3424cfa146,LIST_ACCOUNTS,hbciListAccounts,false -48323,f58ceba1-9d5d-4fd3-aa17-6c3424cfa146,LIST_TRANSACTIONS,hbciListTransactions,false -48324,f58ceba1-9d5d-4fd3-aa17-6c3424cfa146,AUTHORIZATION,,false -48325,f58ceba1-9d5d-4fd3-aa17-6c3424cfa146,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48326,f58ceba1-9d5d-4fd3-aa17-6c3424cfa146,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48327,f58ceba1-9d5d-4fd3-aa17-6c3424cfa146,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48322,0844a98a-c8bf-43d3-9883-62e56e5d89b2,LIST_ACCOUNTS,hbciListAccounts,false +48323,0844a98a-c8bf-43d3-9883-62e56e5d89b2,LIST_TRANSACTIONS,hbciListTransactions,false +48324,0844a98a-c8bf-43d3-9883-62e56e5d89b2,AUTHORIZATION,,false +48325,0844a98a-c8bf-43d3-9883-62e56e5d89b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48326,0844a98a-c8bf-43d3-9883-62e56e5d89b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48327,0844a98a-c8bf-43d3-9883-62e56e5d89b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48328,2212f260-11fb-45ca-8c56-971361e534b1,LIST_ACCOUNTS,xs2aListAccounts,true -48329,2212f260-11fb-45ca-8c56-971361e534b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48329,2212f260-11fb-45ca-8c56-971361e534b1,LIST_TRANSACTIONS,xs2aListTransactions,true 48330,2212f260-11fb-45ca-8c56-971361e534b1,AUTHORIZATION,,true 48331,2212f260-11fb-45ca-8c56-971361e534b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48332,2212f260-11fb-45ca-8c56-971361e534b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48333,2212f260-11fb-45ca-8c56-971361e534b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48334,d83ac5cb-9634-4b6d-a53e-fb7a667e6a79,LIST_ACCOUNTS,hbciListAccounts,false -48335,d83ac5cb-9634-4b6d-a53e-fb7a667e6a79,LIST_TRANSACTIONS,hbciListTransactions,false -48336,d83ac5cb-9634-4b6d-a53e-fb7a667e6a79,AUTHORIZATION,,false -48337,d83ac5cb-9634-4b6d-a53e-fb7a667e6a79,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48338,d83ac5cb-9634-4b6d-a53e-fb7a667e6a79,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48339,d83ac5cb-9634-4b6d-a53e-fb7a667e6a79,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48334,3022d019-ef76-495a-9def-fbcfbac3c226,LIST_ACCOUNTS,hbciListAccounts,false +48335,3022d019-ef76-495a-9def-fbcfbac3c226,LIST_TRANSACTIONS,hbciListTransactions,false +48336,3022d019-ef76-495a-9def-fbcfbac3c226,AUTHORIZATION,,false +48337,3022d019-ef76-495a-9def-fbcfbac3c226,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48338,3022d019-ef76-495a-9def-fbcfbac3c226,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48339,3022d019-ef76-495a-9def-fbcfbac3c226,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48340,8ca823de-b036-4ace-b038-8ba00ca9102f,LIST_ACCOUNTS,xs2aListAccounts,true -48341,8ca823de-b036-4ace-b038-8ba00ca9102f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48341,8ca823de-b036-4ace-b038-8ba00ca9102f,LIST_TRANSACTIONS,xs2aListTransactions,true 48342,8ca823de-b036-4ace-b038-8ba00ca9102f,AUTHORIZATION,,true 48343,8ca823de-b036-4ace-b038-8ba00ca9102f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48344,8ca823de-b036-4ace-b038-8ba00ca9102f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48345,8ca823de-b036-4ace-b038-8ba00ca9102f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48346,733d78cd-4259-454c-b54b-35d523727b7d,LIST_ACCOUNTS,hbciListAccounts,false -48347,733d78cd-4259-454c-b54b-35d523727b7d,LIST_TRANSACTIONS,hbciListTransactions,false -48348,733d78cd-4259-454c-b54b-35d523727b7d,AUTHORIZATION,,false -48349,733d78cd-4259-454c-b54b-35d523727b7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48350,733d78cd-4259-454c-b54b-35d523727b7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48351,733d78cd-4259-454c-b54b-35d523727b7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48346,9238d3ba-3e2b-41ef-9c42-83bef9e67ec6,LIST_ACCOUNTS,hbciListAccounts,false +48347,9238d3ba-3e2b-41ef-9c42-83bef9e67ec6,LIST_TRANSACTIONS,hbciListTransactions,false +48348,9238d3ba-3e2b-41ef-9c42-83bef9e67ec6,AUTHORIZATION,,false +48349,9238d3ba-3e2b-41ef-9c42-83bef9e67ec6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48350,9238d3ba-3e2b-41ef-9c42-83bef9e67ec6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48351,9238d3ba-3e2b-41ef-9c42-83bef9e67ec6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48352,c50b2743-4b08-41a1-949a-e3b4f4875fb1,LIST_ACCOUNTS,xs2aListAccounts,true -48353,c50b2743-4b08-41a1-949a-e3b4f4875fb1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48353,c50b2743-4b08-41a1-949a-e3b4f4875fb1,LIST_TRANSACTIONS,xs2aListTransactions,true 48354,c50b2743-4b08-41a1-949a-e3b4f4875fb1,AUTHORIZATION,,true 48355,c50b2743-4b08-41a1-949a-e3b4f4875fb1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48356,c50b2743-4b08-41a1-949a-e3b4f4875fb1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48357,c50b2743-4b08-41a1-949a-e3b4f4875fb1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48358,24289d2a-0269-4416-8798-2ea0164602a1,LIST_ACCOUNTS,hbciListAccounts,false -48359,24289d2a-0269-4416-8798-2ea0164602a1,LIST_TRANSACTIONS,hbciListTransactions,false -48360,24289d2a-0269-4416-8798-2ea0164602a1,AUTHORIZATION,,false -48361,24289d2a-0269-4416-8798-2ea0164602a1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48362,24289d2a-0269-4416-8798-2ea0164602a1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48363,24289d2a-0269-4416-8798-2ea0164602a1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48358,46d89848-5567-4fb1-afba-4dd357ae946b,LIST_ACCOUNTS,hbciListAccounts,false +48359,46d89848-5567-4fb1-afba-4dd357ae946b,LIST_TRANSACTIONS,hbciListTransactions,false +48360,46d89848-5567-4fb1-afba-4dd357ae946b,AUTHORIZATION,,false +48361,46d89848-5567-4fb1-afba-4dd357ae946b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48362,46d89848-5567-4fb1-afba-4dd357ae946b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48363,46d89848-5567-4fb1-afba-4dd357ae946b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48364,b8f381c0-754e-4b1c-9acb-c72cfa438f90,LIST_ACCOUNTS,xs2aListAccounts,true -48365,b8f381c0-754e-4b1c-9acb-c72cfa438f90,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48365,b8f381c0-754e-4b1c-9acb-c72cfa438f90,LIST_TRANSACTIONS,xs2aListTransactions,true 48366,b8f381c0-754e-4b1c-9acb-c72cfa438f90,AUTHORIZATION,,true 48367,b8f381c0-754e-4b1c-9acb-c72cfa438f90,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48368,b8f381c0-754e-4b1c-9acb-c72cfa438f90,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48369,b8f381c0-754e-4b1c-9acb-c72cfa438f90,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48370,510af30e-d056-439d-87cf-c1245f77a84d,LIST_ACCOUNTS,hbciListAccounts,false -48371,510af30e-d056-439d-87cf-c1245f77a84d,LIST_TRANSACTIONS,hbciListTransactions,false -48372,510af30e-d056-439d-87cf-c1245f77a84d,AUTHORIZATION,,false -48373,510af30e-d056-439d-87cf-c1245f77a84d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48374,510af30e-d056-439d-87cf-c1245f77a84d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48375,510af30e-d056-439d-87cf-c1245f77a84d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48370,f6987352-26da-4ea5-8472-169a60ba86f9,LIST_ACCOUNTS,hbciListAccounts,false +48371,f6987352-26da-4ea5-8472-169a60ba86f9,LIST_TRANSACTIONS,hbciListTransactions,false +48372,f6987352-26da-4ea5-8472-169a60ba86f9,AUTHORIZATION,,false +48373,f6987352-26da-4ea5-8472-169a60ba86f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48374,f6987352-26da-4ea5-8472-169a60ba86f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48375,f6987352-26da-4ea5-8472-169a60ba86f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48376,827de8bc-342c-4093-a192-deba0fd586f8,LIST_ACCOUNTS,xs2aListAccounts,true -48377,827de8bc-342c-4093-a192-deba0fd586f8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48377,827de8bc-342c-4093-a192-deba0fd586f8,LIST_TRANSACTIONS,xs2aListTransactions,true 48378,827de8bc-342c-4093-a192-deba0fd586f8,AUTHORIZATION,,true 48379,827de8bc-342c-4093-a192-deba0fd586f8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48380,827de8bc-342c-4093-a192-deba0fd586f8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48381,827de8bc-342c-4093-a192-deba0fd586f8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48382,ebc75380-17d9-42fb-9e63-db3a1025d1e3,LIST_ACCOUNTS,hbciListAccounts,false -48383,ebc75380-17d9-42fb-9e63-db3a1025d1e3,LIST_TRANSACTIONS,hbciListTransactions,false -48384,ebc75380-17d9-42fb-9e63-db3a1025d1e3,AUTHORIZATION,,false -48385,ebc75380-17d9-42fb-9e63-db3a1025d1e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48386,ebc75380-17d9-42fb-9e63-db3a1025d1e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48387,ebc75380-17d9-42fb-9e63-db3a1025d1e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48382,1dd5ea91-f4b2-4024-89b9-91b9378b48d4,LIST_ACCOUNTS,hbciListAccounts,false +48383,1dd5ea91-f4b2-4024-89b9-91b9378b48d4,LIST_TRANSACTIONS,hbciListTransactions,false +48384,1dd5ea91-f4b2-4024-89b9-91b9378b48d4,AUTHORIZATION,,false +48385,1dd5ea91-f4b2-4024-89b9-91b9378b48d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48386,1dd5ea91-f4b2-4024-89b9-91b9378b48d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48387,1dd5ea91-f4b2-4024-89b9-91b9378b48d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48388,91438f33-efb7-43ad-a223-53e0b1cc60c1,LIST_ACCOUNTS,xs2aListAccounts,true -48389,91438f33-efb7-43ad-a223-53e0b1cc60c1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48389,91438f33-efb7-43ad-a223-53e0b1cc60c1,LIST_TRANSACTIONS,xs2aListTransactions,true 48390,91438f33-efb7-43ad-a223-53e0b1cc60c1,AUTHORIZATION,,true 48391,91438f33-efb7-43ad-a223-53e0b1cc60c1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48392,91438f33-efb7-43ad-a223-53e0b1cc60c1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48393,91438f33-efb7-43ad-a223-53e0b1cc60c1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48394,8b4d88b8-22a3-497a-a443-880822410a56,LIST_ACCOUNTS,hbciListAccounts,false -48395,8b4d88b8-22a3-497a-a443-880822410a56,LIST_TRANSACTIONS,hbciListTransactions,false -48396,8b4d88b8-22a3-497a-a443-880822410a56,AUTHORIZATION,,false -48397,8b4d88b8-22a3-497a-a443-880822410a56,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48398,8b4d88b8-22a3-497a-a443-880822410a56,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48399,8b4d88b8-22a3-497a-a443-880822410a56,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48394,e1c8bf43-cb32-4b71-9b20-dc4634e21252,LIST_ACCOUNTS,hbciListAccounts,false +48395,e1c8bf43-cb32-4b71-9b20-dc4634e21252,LIST_TRANSACTIONS,hbciListTransactions,false +48396,e1c8bf43-cb32-4b71-9b20-dc4634e21252,AUTHORIZATION,,false +48397,e1c8bf43-cb32-4b71-9b20-dc4634e21252,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48398,e1c8bf43-cb32-4b71-9b20-dc4634e21252,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48399,e1c8bf43-cb32-4b71-9b20-dc4634e21252,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48400,656952dd-dede-46fd-9274-0d157b60017d,LIST_ACCOUNTS,xs2aListAccounts,true -48401,656952dd-dede-46fd-9274-0d157b60017d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48401,656952dd-dede-46fd-9274-0d157b60017d,LIST_TRANSACTIONS,xs2aListTransactions,true 48402,656952dd-dede-46fd-9274-0d157b60017d,AUTHORIZATION,,true 48403,656952dd-dede-46fd-9274-0d157b60017d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48404,656952dd-dede-46fd-9274-0d157b60017d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48405,656952dd-dede-46fd-9274-0d157b60017d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48406,2ca30540-1253-4eec-9c3b-60fb207e0569,LIST_ACCOUNTS,hbciListAccounts,false -48407,2ca30540-1253-4eec-9c3b-60fb207e0569,LIST_TRANSACTIONS,hbciListTransactions,false -48408,2ca30540-1253-4eec-9c3b-60fb207e0569,AUTHORIZATION,,false -48409,2ca30540-1253-4eec-9c3b-60fb207e0569,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48410,2ca30540-1253-4eec-9c3b-60fb207e0569,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48411,2ca30540-1253-4eec-9c3b-60fb207e0569,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48406,cead6303-3557-4d91-b7de-fd3b6dcc9a33,LIST_ACCOUNTS,hbciListAccounts,false +48407,cead6303-3557-4d91-b7de-fd3b6dcc9a33,LIST_TRANSACTIONS,hbciListTransactions,false +48408,cead6303-3557-4d91-b7de-fd3b6dcc9a33,AUTHORIZATION,,false +48409,cead6303-3557-4d91-b7de-fd3b6dcc9a33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48410,cead6303-3557-4d91-b7de-fd3b6dcc9a33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48411,cead6303-3557-4d91-b7de-fd3b6dcc9a33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48412,7ce7b0cd-db61-483c-b7a8-668cb184a416,LIST_ACCOUNTS,xs2aListAccounts,true -48413,7ce7b0cd-db61-483c-b7a8-668cb184a416,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48413,7ce7b0cd-db61-483c-b7a8-668cb184a416,LIST_TRANSACTIONS,xs2aListTransactions,true 48414,7ce7b0cd-db61-483c-b7a8-668cb184a416,AUTHORIZATION,,true 48415,7ce7b0cd-db61-483c-b7a8-668cb184a416,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48416,7ce7b0cd-db61-483c-b7a8-668cb184a416,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48417,7ce7b0cd-db61-483c-b7a8-668cb184a416,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48418,0b082031-91ff-4cb6-8e90-7dbffedccb27,LIST_ACCOUNTS,hbciListAccounts,false -48419,0b082031-91ff-4cb6-8e90-7dbffedccb27,LIST_TRANSACTIONS,hbciListTransactions,false -48420,0b082031-91ff-4cb6-8e90-7dbffedccb27,AUTHORIZATION,,false -48421,0b082031-91ff-4cb6-8e90-7dbffedccb27,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48422,0b082031-91ff-4cb6-8e90-7dbffedccb27,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48423,0b082031-91ff-4cb6-8e90-7dbffedccb27,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48418,103bae6a-bf55-4d1a-b8f6-846600ffd269,LIST_ACCOUNTS,hbciListAccounts,false +48419,103bae6a-bf55-4d1a-b8f6-846600ffd269,LIST_TRANSACTIONS,hbciListTransactions,false +48420,103bae6a-bf55-4d1a-b8f6-846600ffd269,AUTHORIZATION,,false +48421,103bae6a-bf55-4d1a-b8f6-846600ffd269,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48422,103bae6a-bf55-4d1a-b8f6-846600ffd269,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48423,103bae6a-bf55-4d1a-b8f6-846600ffd269,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48424,b53be55d-a8c8-4b4a-b91a-e5b33a215357,LIST_ACCOUNTS,xs2aListAccounts,true -48425,b53be55d-a8c8-4b4a-b91a-e5b33a215357,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48425,b53be55d-a8c8-4b4a-b91a-e5b33a215357,LIST_TRANSACTIONS,xs2aListTransactions,true 48426,b53be55d-a8c8-4b4a-b91a-e5b33a215357,AUTHORIZATION,,true 48427,b53be55d-a8c8-4b4a-b91a-e5b33a215357,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48428,b53be55d-a8c8-4b4a-b91a-e5b33a215357,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48429,b53be55d-a8c8-4b4a-b91a-e5b33a215357,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48430,7e61c6e4-c953-4b7d-b22f-7b6d0280ba01,LIST_ACCOUNTS,hbciListAccounts,false -48431,7e61c6e4-c953-4b7d-b22f-7b6d0280ba01,LIST_TRANSACTIONS,hbciListTransactions,false -48432,7e61c6e4-c953-4b7d-b22f-7b6d0280ba01,AUTHORIZATION,,false -48433,7e61c6e4-c953-4b7d-b22f-7b6d0280ba01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48434,7e61c6e4-c953-4b7d-b22f-7b6d0280ba01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48435,7e61c6e4-c953-4b7d-b22f-7b6d0280ba01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48430,9d1fe2dc-35c1-4478-8d7b-584c98fa0d2d,LIST_ACCOUNTS,hbciListAccounts,false +48431,9d1fe2dc-35c1-4478-8d7b-584c98fa0d2d,LIST_TRANSACTIONS,hbciListTransactions,false +48432,9d1fe2dc-35c1-4478-8d7b-584c98fa0d2d,AUTHORIZATION,,false +48433,9d1fe2dc-35c1-4478-8d7b-584c98fa0d2d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48434,9d1fe2dc-35c1-4478-8d7b-584c98fa0d2d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48435,9d1fe2dc-35c1-4478-8d7b-584c98fa0d2d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48436,f021de9b-6af2-4ac6-949a-fa7308dc3364,LIST_ACCOUNTS,xs2aListAccounts,true -48437,f021de9b-6af2-4ac6-949a-fa7308dc3364,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48437,f021de9b-6af2-4ac6-949a-fa7308dc3364,LIST_TRANSACTIONS,xs2aListTransactions,true 48438,f021de9b-6af2-4ac6-949a-fa7308dc3364,AUTHORIZATION,,true 48439,f021de9b-6af2-4ac6-949a-fa7308dc3364,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48440,f021de9b-6af2-4ac6-949a-fa7308dc3364,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48441,f021de9b-6af2-4ac6-949a-fa7308dc3364,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48442,86118857-cedb-4987-99d5-1c55dddba9e1,LIST_ACCOUNTS,hbciListAccounts,false -48443,86118857-cedb-4987-99d5-1c55dddba9e1,LIST_TRANSACTIONS,hbciListTransactions,false -48444,86118857-cedb-4987-99d5-1c55dddba9e1,AUTHORIZATION,,false -48445,86118857-cedb-4987-99d5-1c55dddba9e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48446,86118857-cedb-4987-99d5-1c55dddba9e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48447,86118857-cedb-4987-99d5-1c55dddba9e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48442,5a90fade-6ce7-4285-9df7-e146fb92fe61,LIST_ACCOUNTS,hbciListAccounts,false +48443,5a90fade-6ce7-4285-9df7-e146fb92fe61,LIST_TRANSACTIONS,hbciListTransactions,false +48444,5a90fade-6ce7-4285-9df7-e146fb92fe61,AUTHORIZATION,,false +48445,5a90fade-6ce7-4285-9df7-e146fb92fe61,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48446,5a90fade-6ce7-4285-9df7-e146fb92fe61,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48447,5a90fade-6ce7-4285-9df7-e146fb92fe61,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48448,df086516-8613-4986-be12-ff333724dc6b,LIST_ACCOUNTS,xs2aListAccounts,true -48449,df086516-8613-4986-be12-ff333724dc6b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48449,df086516-8613-4986-be12-ff333724dc6b,LIST_TRANSACTIONS,xs2aListTransactions,true 48450,df086516-8613-4986-be12-ff333724dc6b,AUTHORIZATION,,true 48451,df086516-8613-4986-be12-ff333724dc6b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48452,df086516-8613-4986-be12-ff333724dc6b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48453,df086516-8613-4986-be12-ff333724dc6b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48454,aaf50991-084d-4240-ade0-55da5e0df9b7,LIST_ACCOUNTS,hbciListAccounts,false -48455,aaf50991-084d-4240-ade0-55da5e0df9b7,LIST_TRANSACTIONS,hbciListTransactions,false -48456,aaf50991-084d-4240-ade0-55da5e0df9b7,AUTHORIZATION,,false -48457,aaf50991-084d-4240-ade0-55da5e0df9b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48458,aaf50991-084d-4240-ade0-55da5e0df9b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48459,aaf50991-084d-4240-ade0-55da5e0df9b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48454,8e58aa08-1230-4ffc-a890-d29caa5fd61e,LIST_ACCOUNTS,hbciListAccounts,false +48455,8e58aa08-1230-4ffc-a890-d29caa5fd61e,LIST_TRANSACTIONS,hbciListTransactions,false +48456,8e58aa08-1230-4ffc-a890-d29caa5fd61e,AUTHORIZATION,,false +48457,8e58aa08-1230-4ffc-a890-d29caa5fd61e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48458,8e58aa08-1230-4ffc-a890-d29caa5fd61e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48459,8e58aa08-1230-4ffc-a890-d29caa5fd61e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48460,dcdc72ab-6022-40d1-a372-f7d554033e52,LIST_ACCOUNTS,xs2aListAccounts,true -48461,dcdc72ab-6022-40d1-a372-f7d554033e52,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48461,dcdc72ab-6022-40d1-a372-f7d554033e52,LIST_TRANSACTIONS,xs2aListTransactions,true 48462,dcdc72ab-6022-40d1-a372-f7d554033e52,AUTHORIZATION,,true 48463,dcdc72ab-6022-40d1-a372-f7d554033e52,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48464,dcdc72ab-6022-40d1-a372-f7d554033e52,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48465,dcdc72ab-6022-40d1-a372-f7d554033e52,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48466,5ee583b2-ff8e-4b19-88f6-32c9033e50f3,LIST_ACCOUNTS,hbciListAccounts,false -48467,5ee583b2-ff8e-4b19-88f6-32c9033e50f3,LIST_TRANSACTIONS,hbciListTransactions,false -48468,5ee583b2-ff8e-4b19-88f6-32c9033e50f3,AUTHORIZATION,,false -48469,5ee583b2-ff8e-4b19-88f6-32c9033e50f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48470,5ee583b2-ff8e-4b19-88f6-32c9033e50f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48471,5ee583b2-ff8e-4b19-88f6-32c9033e50f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48466,45368a5c-46ff-4bff-b7bc-339286068ff5,LIST_ACCOUNTS,hbciListAccounts,false +48467,45368a5c-46ff-4bff-b7bc-339286068ff5,LIST_TRANSACTIONS,hbciListTransactions,false +48468,45368a5c-46ff-4bff-b7bc-339286068ff5,AUTHORIZATION,,false +48469,45368a5c-46ff-4bff-b7bc-339286068ff5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48470,45368a5c-46ff-4bff-b7bc-339286068ff5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48471,45368a5c-46ff-4bff-b7bc-339286068ff5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48472,9e747920-9e57-49c2-b9dc-464263c2459a,LIST_ACCOUNTS,xs2aListAccounts,true -48473,9e747920-9e57-49c2-b9dc-464263c2459a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48473,9e747920-9e57-49c2-b9dc-464263c2459a,LIST_TRANSACTIONS,xs2aListTransactions,true 48474,9e747920-9e57-49c2-b9dc-464263c2459a,AUTHORIZATION,,true 48475,9e747920-9e57-49c2-b9dc-464263c2459a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48476,9e747920-9e57-49c2-b9dc-464263c2459a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48477,9e747920-9e57-49c2-b9dc-464263c2459a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48478,188e7493-3978-4223-aa04-026d6c233f7b,LIST_ACCOUNTS,hbciListAccounts,false -48479,188e7493-3978-4223-aa04-026d6c233f7b,LIST_TRANSACTIONS,hbciListTransactions,false -48480,188e7493-3978-4223-aa04-026d6c233f7b,AUTHORIZATION,,false -48481,188e7493-3978-4223-aa04-026d6c233f7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48482,188e7493-3978-4223-aa04-026d6c233f7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48483,188e7493-3978-4223-aa04-026d6c233f7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48478,f99fab91-e64e-4c7d-a596-12e902b96881,LIST_ACCOUNTS,hbciListAccounts,false +48479,f99fab91-e64e-4c7d-a596-12e902b96881,LIST_TRANSACTIONS,hbciListTransactions,false +48480,f99fab91-e64e-4c7d-a596-12e902b96881,AUTHORIZATION,,false +48481,f99fab91-e64e-4c7d-a596-12e902b96881,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48482,f99fab91-e64e-4c7d-a596-12e902b96881,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48483,f99fab91-e64e-4c7d-a596-12e902b96881,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48484,42592530-48a7-4d1b-8bfe-2dc95f3d38b9,LIST_ACCOUNTS,xs2aListAccounts,true -48485,42592530-48a7-4d1b-8bfe-2dc95f3d38b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48485,42592530-48a7-4d1b-8bfe-2dc95f3d38b9,LIST_TRANSACTIONS,xs2aListTransactions,true 48486,42592530-48a7-4d1b-8bfe-2dc95f3d38b9,AUTHORIZATION,,true 48487,42592530-48a7-4d1b-8bfe-2dc95f3d38b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48488,42592530-48a7-4d1b-8bfe-2dc95f3d38b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48489,42592530-48a7-4d1b-8bfe-2dc95f3d38b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48490,d47edde2-a19e-481e-83dd-2c1f4725268f,LIST_ACCOUNTS,hbciListAccounts,false -48491,d47edde2-a19e-481e-83dd-2c1f4725268f,LIST_TRANSACTIONS,hbciListTransactions,false -48492,d47edde2-a19e-481e-83dd-2c1f4725268f,AUTHORIZATION,,false -48493,d47edde2-a19e-481e-83dd-2c1f4725268f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48494,d47edde2-a19e-481e-83dd-2c1f4725268f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48495,d47edde2-a19e-481e-83dd-2c1f4725268f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48490,061ce585-af81-4f34-b806-98a44eb4aee5,LIST_ACCOUNTS,hbciListAccounts,false +48491,061ce585-af81-4f34-b806-98a44eb4aee5,LIST_TRANSACTIONS,hbciListTransactions,false +48492,061ce585-af81-4f34-b806-98a44eb4aee5,AUTHORIZATION,,false +48493,061ce585-af81-4f34-b806-98a44eb4aee5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48494,061ce585-af81-4f34-b806-98a44eb4aee5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48495,061ce585-af81-4f34-b806-98a44eb4aee5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48496,a58413e7-7a0d-46bc-90fc-6dabf6c8a940,LIST_ACCOUNTS,xs2aListAccounts,true -48497,a58413e7-7a0d-46bc-90fc-6dabf6c8a940,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48497,a58413e7-7a0d-46bc-90fc-6dabf6c8a940,LIST_TRANSACTIONS,xs2aListTransactions,true 48498,a58413e7-7a0d-46bc-90fc-6dabf6c8a940,AUTHORIZATION,,true 48499,a58413e7-7a0d-46bc-90fc-6dabf6c8a940,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48500,a58413e7-7a0d-46bc-90fc-6dabf6c8a940,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48501,a58413e7-7a0d-46bc-90fc-6dabf6c8a940,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48502,f1ac96a0-c7d9-4403-b2dc-3d98293f04bc,LIST_ACCOUNTS,hbciListAccounts,false -48503,f1ac96a0-c7d9-4403-b2dc-3d98293f04bc,LIST_TRANSACTIONS,hbciListTransactions,false -48504,f1ac96a0-c7d9-4403-b2dc-3d98293f04bc,AUTHORIZATION,,false -48505,f1ac96a0-c7d9-4403-b2dc-3d98293f04bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48506,f1ac96a0-c7d9-4403-b2dc-3d98293f04bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48507,f1ac96a0-c7d9-4403-b2dc-3d98293f04bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48502,89106816-456f-494a-b9a9-7f0367d934ea,LIST_ACCOUNTS,hbciListAccounts,false +48503,89106816-456f-494a-b9a9-7f0367d934ea,LIST_TRANSACTIONS,hbciListTransactions,false +48504,89106816-456f-494a-b9a9-7f0367d934ea,AUTHORIZATION,,false +48505,89106816-456f-494a-b9a9-7f0367d934ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48506,89106816-456f-494a-b9a9-7f0367d934ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48507,89106816-456f-494a-b9a9-7f0367d934ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48508,17a20b15-f976-4a14-ab1c-bfa2da557e4b,LIST_ACCOUNTS,xs2aListAccounts,true -48509,17a20b15-f976-4a14-ab1c-bfa2da557e4b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48509,17a20b15-f976-4a14-ab1c-bfa2da557e4b,LIST_TRANSACTIONS,xs2aListTransactions,true 48510,17a20b15-f976-4a14-ab1c-bfa2da557e4b,AUTHORIZATION,,true 48511,17a20b15-f976-4a14-ab1c-bfa2da557e4b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48512,17a20b15-f976-4a14-ab1c-bfa2da557e4b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48513,17a20b15-f976-4a14-ab1c-bfa2da557e4b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48514,5c9141cf-2cfd-4bd7-be0f-a4c917b82cef,LIST_ACCOUNTS,hbciListAccounts,false -48515,5c9141cf-2cfd-4bd7-be0f-a4c917b82cef,LIST_TRANSACTIONS,hbciListTransactions,false -48516,5c9141cf-2cfd-4bd7-be0f-a4c917b82cef,AUTHORIZATION,,false -48517,5c9141cf-2cfd-4bd7-be0f-a4c917b82cef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48518,5c9141cf-2cfd-4bd7-be0f-a4c917b82cef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48519,5c9141cf-2cfd-4bd7-be0f-a4c917b82cef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48514,2e78a834-a56b-49f6-83a8-34bd1b9a8a02,LIST_ACCOUNTS,hbciListAccounts,false +48515,2e78a834-a56b-49f6-83a8-34bd1b9a8a02,LIST_TRANSACTIONS,hbciListTransactions,false +48516,2e78a834-a56b-49f6-83a8-34bd1b9a8a02,AUTHORIZATION,,false +48517,2e78a834-a56b-49f6-83a8-34bd1b9a8a02,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48518,2e78a834-a56b-49f6-83a8-34bd1b9a8a02,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48519,2e78a834-a56b-49f6-83a8-34bd1b9a8a02,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48520,c58fc621-1eab-4908-b4bd-d2bfe1c25e24,LIST_ACCOUNTS,xs2aListAccounts,true -48521,c58fc621-1eab-4908-b4bd-d2bfe1c25e24,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48521,c58fc621-1eab-4908-b4bd-d2bfe1c25e24,LIST_TRANSACTIONS,xs2aListTransactions,true 48522,c58fc621-1eab-4908-b4bd-d2bfe1c25e24,AUTHORIZATION,,true 48523,c58fc621-1eab-4908-b4bd-d2bfe1c25e24,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48524,c58fc621-1eab-4908-b4bd-d2bfe1c25e24,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48525,c58fc621-1eab-4908-b4bd-d2bfe1c25e24,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48526,4199ef78-ed86-45f3-91d6-4b953c8d1435,LIST_ACCOUNTS,hbciListAccounts,false -48527,4199ef78-ed86-45f3-91d6-4b953c8d1435,LIST_TRANSACTIONS,hbciListTransactions,false -48528,4199ef78-ed86-45f3-91d6-4b953c8d1435,AUTHORIZATION,,false -48529,4199ef78-ed86-45f3-91d6-4b953c8d1435,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48530,4199ef78-ed86-45f3-91d6-4b953c8d1435,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48531,4199ef78-ed86-45f3-91d6-4b953c8d1435,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48526,a902b0dd-2ca9-493f-98f5-4ebbb96f2054,LIST_ACCOUNTS,hbciListAccounts,false +48527,a902b0dd-2ca9-493f-98f5-4ebbb96f2054,LIST_TRANSACTIONS,hbciListTransactions,false +48528,a902b0dd-2ca9-493f-98f5-4ebbb96f2054,AUTHORIZATION,,false +48529,a902b0dd-2ca9-493f-98f5-4ebbb96f2054,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48530,a902b0dd-2ca9-493f-98f5-4ebbb96f2054,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48531,a902b0dd-2ca9-493f-98f5-4ebbb96f2054,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48532,bcf30dcb-46ca-45d2-922e-dc89155921ae,LIST_ACCOUNTS,xs2aListAccounts,true -48533,bcf30dcb-46ca-45d2-922e-dc89155921ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48533,bcf30dcb-46ca-45d2-922e-dc89155921ae,LIST_TRANSACTIONS,xs2aListTransactions,true 48534,bcf30dcb-46ca-45d2-922e-dc89155921ae,AUTHORIZATION,,true 48535,bcf30dcb-46ca-45d2-922e-dc89155921ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48536,bcf30dcb-46ca-45d2-922e-dc89155921ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48537,bcf30dcb-46ca-45d2-922e-dc89155921ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48538,e640ed91-0e57-4c12-9d26-dc78dca65919,LIST_ACCOUNTS,hbciListAccounts,false -48539,e640ed91-0e57-4c12-9d26-dc78dca65919,LIST_TRANSACTIONS,hbciListTransactions,false -48540,e640ed91-0e57-4c12-9d26-dc78dca65919,AUTHORIZATION,,false -48541,e640ed91-0e57-4c12-9d26-dc78dca65919,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48542,e640ed91-0e57-4c12-9d26-dc78dca65919,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48543,e640ed91-0e57-4c12-9d26-dc78dca65919,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48538,6cb866dc-352c-4058-b498-aadaef0d06f9,LIST_ACCOUNTS,hbciListAccounts,false +48539,6cb866dc-352c-4058-b498-aadaef0d06f9,LIST_TRANSACTIONS,hbciListTransactions,false +48540,6cb866dc-352c-4058-b498-aadaef0d06f9,AUTHORIZATION,,false +48541,6cb866dc-352c-4058-b498-aadaef0d06f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48542,6cb866dc-352c-4058-b498-aadaef0d06f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48543,6cb866dc-352c-4058-b498-aadaef0d06f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48544,14b42029-402d-4373-a7ef-2f4b4fad9e64,LIST_ACCOUNTS,xs2aListAccounts,true -48545,14b42029-402d-4373-a7ef-2f4b4fad9e64,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48545,14b42029-402d-4373-a7ef-2f4b4fad9e64,LIST_TRANSACTIONS,xs2aListTransactions,true 48546,14b42029-402d-4373-a7ef-2f4b4fad9e64,AUTHORIZATION,,true 48547,14b42029-402d-4373-a7ef-2f4b4fad9e64,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48548,14b42029-402d-4373-a7ef-2f4b4fad9e64,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48549,14b42029-402d-4373-a7ef-2f4b4fad9e64,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48550,1d1c3419-d3aa-45d8-bb20-d475ed18e21d,LIST_ACCOUNTS,hbciListAccounts,false -48551,1d1c3419-d3aa-45d8-bb20-d475ed18e21d,LIST_TRANSACTIONS,hbciListTransactions,false -48552,1d1c3419-d3aa-45d8-bb20-d475ed18e21d,AUTHORIZATION,,false -48553,1d1c3419-d3aa-45d8-bb20-d475ed18e21d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48554,1d1c3419-d3aa-45d8-bb20-d475ed18e21d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48555,1d1c3419-d3aa-45d8-bb20-d475ed18e21d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48550,e2af896b-153b-4482-89cc-cacdc206fb62,LIST_ACCOUNTS,hbciListAccounts,false +48551,e2af896b-153b-4482-89cc-cacdc206fb62,LIST_TRANSACTIONS,hbciListTransactions,false +48552,e2af896b-153b-4482-89cc-cacdc206fb62,AUTHORIZATION,,false +48553,e2af896b-153b-4482-89cc-cacdc206fb62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48554,e2af896b-153b-4482-89cc-cacdc206fb62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48555,e2af896b-153b-4482-89cc-cacdc206fb62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48556,bf259aa8-0489-4c4c-b510-c52e437e6600,LIST_ACCOUNTS,xs2aListAccounts,true -48557,bf259aa8-0489-4c4c-b510-c52e437e6600,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48557,bf259aa8-0489-4c4c-b510-c52e437e6600,LIST_TRANSACTIONS,xs2aListTransactions,true 48558,bf259aa8-0489-4c4c-b510-c52e437e6600,AUTHORIZATION,,true 48559,bf259aa8-0489-4c4c-b510-c52e437e6600,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48560,bf259aa8-0489-4c4c-b510-c52e437e6600,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48561,bf259aa8-0489-4c4c-b510-c52e437e6600,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48562,6fbb75d7-9029-492f-b210-ac07d61634b7,LIST_ACCOUNTS,hbciListAccounts,false -48563,6fbb75d7-9029-492f-b210-ac07d61634b7,LIST_TRANSACTIONS,hbciListTransactions,false -48564,6fbb75d7-9029-492f-b210-ac07d61634b7,AUTHORIZATION,,false -48565,6fbb75d7-9029-492f-b210-ac07d61634b7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48566,6fbb75d7-9029-492f-b210-ac07d61634b7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48567,6fbb75d7-9029-492f-b210-ac07d61634b7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48562,e840b8b5-c238-47b3-bce3-a83e487f210e,LIST_ACCOUNTS,hbciListAccounts,false +48563,e840b8b5-c238-47b3-bce3-a83e487f210e,LIST_TRANSACTIONS,hbciListTransactions,false +48564,e840b8b5-c238-47b3-bce3-a83e487f210e,AUTHORIZATION,,false +48565,e840b8b5-c238-47b3-bce3-a83e487f210e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48566,e840b8b5-c238-47b3-bce3-a83e487f210e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48567,e840b8b5-c238-47b3-bce3-a83e487f210e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48568,4fe94922-ff69-4555-a79d-9075342763a1,LIST_ACCOUNTS,xs2aListAccounts,true -48569,4fe94922-ff69-4555-a79d-9075342763a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48569,4fe94922-ff69-4555-a79d-9075342763a1,LIST_TRANSACTIONS,xs2aListTransactions,true 48570,4fe94922-ff69-4555-a79d-9075342763a1,AUTHORIZATION,,true 48571,4fe94922-ff69-4555-a79d-9075342763a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48572,4fe94922-ff69-4555-a79d-9075342763a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48573,4fe94922-ff69-4555-a79d-9075342763a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48574,3ae24376-328d-4a9e-8b4c-214f87bc1cdf,LIST_ACCOUNTS,hbciListAccounts,false -48575,3ae24376-328d-4a9e-8b4c-214f87bc1cdf,LIST_TRANSACTIONS,hbciListTransactions,false -48576,3ae24376-328d-4a9e-8b4c-214f87bc1cdf,AUTHORIZATION,,false -48577,3ae24376-328d-4a9e-8b4c-214f87bc1cdf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48578,3ae24376-328d-4a9e-8b4c-214f87bc1cdf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48579,3ae24376-328d-4a9e-8b4c-214f87bc1cdf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48574,d2ab1dc6-eb0c-4955-a3bd-de7bc660a3c6,LIST_ACCOUNTS,hbciListAccounts,false +48575,d2ab1dc6-eb0c-4955-a3bd-de7bc660a3c6,LIST_TRANSACTIONS,hbciListTransactions,false +48576,d2ab1dc6-eb0c-4955-a3bd-de7bc660a3c6,AUTHORIZATION,,false +48577,d2ab1dc6-eb0c-4955-a3bd-de7bc660a3c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48578,d2ab1dc6-eb0c-4955-a3bd-de7bc660a3c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48579,d2ab1dc6-eb0c-4955-a3bd-de7bc660a3c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48580,773d0052-14d9-4982-b8a9-1e9714b7ad11,LIST_ACCOUNTS,xs2aListAccounts,true -48581,773d0052-14d9-4982-b8a9-1e9714b7ad11,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48581,773d0052-14d9-4982-b8a9-1e9714b7ad11,LIST_TRANSACTIONS,xs2aListTransactions,true 48582,773d0052-14d9-4982-b8a9-1e9714b7ad11,AUTHORIZATION,,true 48583,773d0052-14d9-4982-b8a9-1e9714b7ad11,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48584,773d0052-14d9-4982-b8a9-1e9714b7ad11,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48585,773d0052-14d9-4982-b8a9-1e9714b7ad11,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48586,07a78b5d-905f-480a-a1f8-802e83618707,LIST_ACCOUNTS,hbciListAccounts,false -48587,07a78b5d-905f-480a-a1f8-802e83618707,LIST_TRANSACTIONS,hbciListTransactions,false -48588,07a78b5d-905f-480a-a1f8-802e83618707,AUTHORIZATION,,false -48589,07a78b5d-905f-480a-a1f8-802e83618707,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48590,07a78b5d-905f-480a-a1f8-802e83618707,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48591,07a78b5d-905f-480a-a1f8-802e83618707,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48586,c7a8f876-b495-425e-8717-9936d6aede5c,LIST_ACCOUNTS,hbciListAccounts,false +48587,c7a8f876-b495-425e-8717-9936d6aede5c,LIST_TRANSACTIONS,hbciListTransactions,false +48588,c7a8f876-b495-425e-8717-9936d6aede5c,AUTHORIZATION,,false +48589,c7a8f876-b495-425e-8717-9936d6aede5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48590,c7a8f876-b495-425e-8717-9936d6aede5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48591,c7a8f876-b495-425e-8717-9936d6aede5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48592,60fb34c3-ea3d-46b4-a5c9-ac9ffdf8a142,LIST_ACCOUNTS,xs2aListAccounts,true -48593,60fb34c3-ea3d-46b4-a5c9-ac9ffdf8a142,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48593,60fb34c3-ea3d-46b4-a5c9-ac9ffdf8a142,LIST_TRANSACTIONS,xs2aListTransactions,true 48594,60fb34c3-ea3d-46b4-a5c9-ac9ffdf8a142,AUTHORIZATION,,true 48595,60fb34c3-ea3d-46b4-a5c9-ac9ffdf8a142,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48596,60fb34c3-ea3d-46b4-a5c9-ac9ffdf8a142,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48597,60fb34c3-ea3d-46b4-a5c9-ac9ffdf8a142,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48598,ad8d5492-cc25-4d03-b04e-6d1bf1df9ebc,LIST_ACCOUNTS,hbciListAccounts,false -48599,ad8d5492-cc25-4d03-b04e-6d1bf1df9ebc,LIST_TRANSACTIONS,hbciListTransactions,false -48600,ad8d5492-cc25-4d03-b04e-6d1bf1df9ebc,AUTHORIZATION,,false -48601,ad8d5492-cc25-4d03-b04e-6d1bf1df9ebc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48602,ad8d5492-cc25-4d03-b04e-6d1bf1df9ebc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48603,ad8d5492-cc25-4d03-b04e-6d1bf1df9ebc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48598,008eaf53-60a5-4d69-8618-c9561c7be158,LIST_ACCOUNTS,hbciListAccounts,false +48599,008eaf53-60a5-4d69-8618-c9561c7be158,LIST_TRANSACTIONS,hbciListTransactions,false +48600,008eaf53-60a5-4d69-8618-c9561c7be158,AUTHORIZATION,,false +48601,008eaf53-60a5-4d69-8618-c9561c7be158,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48602,008eaf53-60a5-4d69-8618-c9561c7be158,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48603,008eaf53-60a5-4d69-8618-c9561c7be158,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48604,431a70b9-d725-4d60-9d0d-668b3335d41e,LIST_ACCOUNTS,xs2aListAccounts,true -48605,431a70b9-d725-4d60-9d0d-668b3335d41e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48605,431a70b9-d725-4d60-9d0d-668b3335d41e,LIST_TRANSACTIONS,xs2aListTransactions,true 48606,431a70b9-d725-4d60-9d0d-668b3335d41e,AUTHORIZATION,,true 48607,431a70b9-d725-4d60-9d0d-668b3335d41e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48608,431a70b9-d725-4d60-9d0d-668b3335d41e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48609,431a70b9-d725-4d60-9d0d-668b3335d41e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48610,84d6a53e-23a3-4bf5-afca-637be5d8e1d6,LIST_ACCOUNTS,hbciListAccounts,false -48611,84d6a53e-23a3-4bf5-afca-637be5d8e1d6,LIST_TRANSACTIONS,hbciListTransactions,false -48612,84d6a53e-23a3-4bf5-afca-637be5d8e1d6,AUTHORIZATION,,false -48613,84d6a53e-23a3-4bf5-afca-637be5d8e1d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48614,84d6a53e-23a3-4bf5-afca-637be5d8e1d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48615,84d6a53e-23a3-4bf5-afca-637be5d8e1d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48610,6c202b35-f3e0-4df7-8355-cfa6c2d53ece,LIST_ACCOUNTS,hbciListAccounts,false +48611,6c202b35-f3e0-4df7-8355-cfa6c2d53ece,LIST_TRANSACTIONS,hbciListTransactions,false +48612,6c202b35-f3e0-4df7-8355-cfa6c2d53ece,AUTHORIZATION,,false +48613,6c202b35-f3e0-4df7-8355-cfa6c2d53ece,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48614,6c202b35-f3e0-4df7-8355-cfa6c2d53ece,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48615,6c202b35-f3e0-4df7-8355-cfa6c2d53ece,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48616,8089e732-9f83-466e-9f4e-d3450e995646,LIST_ACCOUNTS,xs2aListAccounts,true -48617,8089e732-9f83-466e-9f4e-d3450e995646,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48617,8089e732-9f83-466e-9f4e-d3450e995646,LIST_TRANSACTIONS,xs2aListTransactions,true 48618,8089e732-9f83-466e-9f4e-d3450e995646,AUTHORIZATION,,true 48619,8089e732-9f83-466e-9f4e-d3450e995646,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48620,8089e732-9f83-466e-9f4e-d3450e995646,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48621,8089e732-9f83-466e-9f4e-d3450e995646,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48622,69f263c1-39a8-471e-9ce7-940a84525abc,LIST_ACCOUNTS,hbciListAccounts,false -48623,69f263c1-39a8-471e-9ce7-940a84525abc,LIST_TRANSACTIONS,hbciListTransactions,false -48624,69f263c1-39a8-471e-9ce7-940a84525abc,AUTHORIZATION,,false -48625,69f263c1-39a8-471e-9ce7-940a84525abc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48626,69f263c1-39a8-471e-9ce7-940a84525abc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48627,69f263c1-39a8-471e-9ce7-940a84525abc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48622,03ba69ce-e438-46e0-9189-98e3aaec664e,LIST_ACCOUNTS,hbciListAccounts,false +48623,03ba69ce-e438-46e0-9189-98e3aaec664e,LIST_TRANSACTIONS,hbciListTransactions,false +48624,03ba69ce-e438-46e0-9189-98e3aaec664e,AUTHORIZATION,,false +48625,03ba69ce-e438-46e0-9189-98e3aaec664e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48626,03ba69ce-e438-46e0-9189-98e3aaec664e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48627,03ba69ce-e438-46e0-9189-98e3aaec664e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48628,c5cc11aa-02cb-4ae3-a791-60e552fa43f3,LIST_ACCOUNTS,xs2aListAccounts,true -48629,c5cc11aa-02cb-4ae3-a791-60e552fa43f3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48629,c5cc11aa-02cb-4ae3-a791-60e552fa43f3,LIST_TRANSACTIONS,xs2aListTransactions,true 48630,c5cc11aa-02cb-4ae3-a791-60e552fa43f3,AUTHORIZATION,,true 48631,c5cc11aa-02cb-4ae3-a791-60e552fa43f3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48632,c5cc11aa-02cb-4ae3-a791-60e552fa43f3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48633,c5cc11aa-02cb-4ae3-a791-60e552fa43f3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48634,596941e2-d7dc-4989-8328-810a0c1d2f5f,LIST_ACCOUNTS,hbciListAccounts,false -48635,596941e2-d7dc-4989-8328-810a0c1d2f5f,LIST_TRANSACTIONS,hbciListTransactions,false -48636,596941e2-d7dc-4989-8328-810a0c1d2f5f,AUTHORIZATION,,false -48637,596941e2-d7dc-4989-8328-810a0c1d2f5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48638,596941e2-d7dc-4989-8328-810a0c1d2f5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48639,596941e2-d7dc-4989-8328-810a0c1d2f5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48634,84309689-3343-4d5e-a9c8-0fdd59caa4f9,LIST_ACCOUNTS,hbciListAccounts,false +48635,84309689-3343-4d5e-a9c8-0fdd59caa4f9,LIST_TRANSACTIONS,hbciListTransactions,false +48636,84309689-3343-4d5e-a9c8-0fdd59caa4f9,AUTHORIZATION,,false +48637,84309689-3343-4d5e-a9c8-0fdd59caa4f9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48638,84309689-3343-4d5e-a9c8-0fdd59caa4f9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48639,84309689-3343-4d5e-a9c8-0fdd59caa4f9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48640,c9ac00e1-ee65-4864-a647-e8653f2005f0,LIST_ACCOUNTS,xs2aListAccounts,true -48641,c9ac00e1-ee65-4864-a647-e8653f2005f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48641,c9ac00e1-ee65-4864-a647-e8653f2005f0,LIST_TRANSACTIONS,xs2aListTransactions,true 48642,c9ac00e1-ee65-4864-a647-e8653f2005f0,AUTHORIZATION,,true 48643,c9ac00e1-ee65-4864-a647-e8653f2005f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48644,c9ac00e1-ee65-4864-a647-e8653f2005f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48645,c9ac00e1-ee65-4864-a647-e8653f2005f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48646,e622e191-8723-40de-bed0-bcca374e80d5,LIST_ACCOUNTS,hbciListAccounts,false -48647,e622e191-8723-40de-bed0-bcca374e80d5,LIST_TRANSACTIONS,hbciListTransactions,false -48648,e622e191-8723-40de-bed0-bcca374e80d5,AUTHORIZATION,,false -48649,e622e191-8723-40de-bed0-bcca374e80d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48650,e622e191-8723-40de-bed0-bcca374e80d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48651,e622e191-8723-40de-bed0-bcca374e80d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48646,b1a7f3c1-0790-47d7-b4fe-c9248638d1f7,LIST_ACCOUNTS,hbciListAccounts,false +48647,b1a7f3c1-0790-47d7-b4fe-c9248638d1f7,LIST_TRANSACTIONS,hbciListTransactions,false +48648,b1a7f3c1-0790-47d7-b4fe-c9248638d1f7,AUTHORIZATION,,false +48649,b1a7f3c1-0790-47d7-b4fe-c9248638d1f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48650,b1a7f3c1-0790-47d7-b4fe-c9248638d1f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48651,b1a7f3c1-0790-47d7-b4fe-c9248638d1f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48652,fc25c6fa-6818-4e3e-bec3-49167590142e,LIST_ACCOUNTS,xs2aListAccounts,true -48653,fc25c6fa-6818-4e3e-bec3-49167590142e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48653,fc25c6fa-6818-4e3e-bec3-49167590142e,LIST_TRANSACTIONS,xs2aListTransactions,true 48654,fc25c6fa-6818-4e3e-bec3-49167590142e,AUTHORIZATION,,true 48655,fc25c6fa-6818-4e3e-bec3-49167590142e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48656,fc25c6fa-6818-4e3e-bec3-49167590142e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48657,fc25c6fa-6818-4e3e-bec3-49167590142e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48658,525abe51-3914-4c61-a6b2-6b74c54aa3f0,LIST_ACCOUNTS,hbciListAccounts,false -48659,525abe51-3914-4c61-a6b2-6b74c54aa3f0,LIST_TRANSACTIONS,hbciListTransactions,false -48660,525abe51-3914-4c61-a6b2-6b74c54aa3f0,AUTHORIZATION,,false -48661,525abe51-3914-4c61-a6b2-6b74c54aa3f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48662,525abe51-3914-4c61-a6b2-6b74c54aa3f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48663,525abe51-3914-4c61-a6b2-6b74c54aa3f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48658,21735788-6626-4f05-98d2-a34e8d9392c1,LIST_ACCOUNTS,hbciListAccounts,false +48659,21735788-6626-4f05-98d2-a34e8d9392c1,LIST_TRANSACTIONS,hbciListTransactions,false +48660,21735788-6626-4f05-98d2-a34e8d9392c1,AUTHORIZATION,,false +48661,21735788-6626-4f05-98d2-a34e8d9392c1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48662,21735788-6626-4f05-98d2-a34e8d9392c1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48663,21735788-6626-4f05-98d2-a34e8d9392c1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48664,abc2da80-0cc8-48c2-a7f2-958185822f04,LIST_ACCOUNTS,xs2aListAccounts,true -48665,abc2da80-0cc8-48c2-a7f2-958185822f04,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48665,abc2da80-0cc8-48c2-a7f2-958185822f04,LIST_TRANSACTIONS,xs2aListTransactions,true 48666,abc2da80-0cc8-48c2-a7f2-958185822f04,AUTHORIZATION,,true 48667,abc2da80-0cc8-48c2-a7f2-958185822f04,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48668,abc2da80-0cc8-48c2-a7f2-958185822f04,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48669,abc2da80-0cc8-48c2-a7f2-958185822f04,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48670,d84f6428-0983-4f45-a158-19e3639b4816,LIST_ACCOUNTS,hbciListAccounts,false -48671,d84f6428-0983-4f45-a158-19e3639b4816,LIST_TRANSACTIONS,hbciListTransactions,false -48672,d84f6428-0983-4f45-a158-19e3639b4816,AUTHORIZATION,,false -48673,d84f6428-0983-4f45-a158-19e3639b4816,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48674,d84f6428-0983-4f45-a158-19e3639b4816,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48675,d84f6428-0983-4f45-a158-19e3639b4816,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48670,92930494-01a4-4435-beeb-a3b608f89042,LIST_ACCOUNTS,hbciListAccounts,false +48671,92930494-01a4-4435-beeb-a3b608f89042,LIST_TRANSACTIONS,hbciListTransactions,false +48672,92930494-01a4-4435-beeb-a3b608f89042,AUTHORIZATION,,false +48673,92930494-01a4-4435-beeb-a3b608f89042,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48674,92930494-01a4-4435-beeb-a3b608f89042,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48675,92930494-01a4-4435-beeb-a3b608f89042,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48676,acb48ccb-9ce2-4cce-af5a-6d24fcab4332,LIST_ACCOUNTS,xs2aListAccounts,true -48677,acb48ccb-9ce2-4cce-af5a-6d24fcab4332,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48677,acb48ccb-9ce2-4cce-af5a-6d24fcab4332,LIST_TRANSACTIONS,xs2aListTransactions,true 48678,acb48ccb-9ce2-4cce-af5a-6d24fcab4332,AUTHORIZATION,,true 48679,acb48ccb-9ce2-4cce-af5a-6d24fcab4332,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48680,acb48ccb-9ce2-4cce-af5a-6d24fcab4332,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48681,acb48ccb-9ce2-4cce-af5a-6d24fcab4332,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48682,2a6d5033-664d-4a27-b0a5-bd484204633a,LIST_ACCOUNTS,hbciListAccounts,false -48683,2a6d5033-664d-4a27-b0a5-bd484204633a,LIST_TRANSACTIONS,hbciListTransactions,false -48684,2a6d5033-664d-4a27-b0a5-bd484204633a,AUTHORIZATION,,false -48685,2a6d5033-664d-4a27-b0a5-bd484204633a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48686,2a6d5033-664d-4a27-b0a5-bd484204633a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48687,2a6d5033-664d-4a27-b0a5-bd484204633a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48682,3cd34782-5e10-4162-962b-227f4ff8d70c,LIST_ACCOUNTS,hbciListAccounts,false +48683,3cd34782-5e10-4162-962b-227f4ff8d70c,LIST_TRANSACTIONS,hbciListTransactions,false +48684,3cd34782-5e10-4162-962b-227f4ff8d70c,AUTHORIZATION,,false +48685,3cd34782-5e10-4162-962b-227f4ff8d70c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48686,3cd34782-5e10-4162-962b-227f4ff8d70c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48687,3cd34782-5e10-4162-962b-227f4ff8d70c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48688,028afca3-dbb3-43ca-ae3c-8fca73b60698,LIST_ACCOUNTS,xs2aListAccounts,true -48689,028afca3-dbb3-43ca-ae3c-8fca73b60698,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48689,028afca3-dbb3-43ca-ae3c-8fca73b60698,LIST_TRANSACTIONS,xs2aListTransactions,true 48690,028afca3-dbb3-43ca-ae3c-8fca73b60698,AUTHORIZATION,,true 48691,028afca3-dbb3-43ca-ae3c-8fca73b60698,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48692,028afca3-dbb3-43ca-ae3c-8fca73b60698,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48693,028afca3-dbb3-43ca-ae3c-8fca73b60698,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48694,47bc6cce-4108-4720-93e0-a6ad85139703,LIST_ACCOUNTS,hbciListAccounts,false -48695,47bc6cce-4108-4720-93e0-a6ad85139703,LIST_TRANSACTIONS,hbciListTransactions,false -48696,47bc6cce-4108-4720-93e0-a6ad85139703,AUTHORIZATION,,false -48697,47bc6cce-4108-4720-93e0-a6ad85139703,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48698,47bc6cce-4108-4720-93e0-a6ad85139703,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48699,47bc6cce-4108-4720-93e0-a6ad85139703,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48694,b057e0fa-c631-4a59-9897-a30c17138ee4,LIST_ACCOUNTS,hbciListAccounts,false +48695,b057e0fa-c631-4a59-9897-a30c17138ee4,LIST_TRANSACTIONS,hbciListTransactions,false +48696,b057e0fa-c631-4a59-9897-a30c17138ee4,AUTHORIZATION,,false +48697,b057e0fa-c631-4a59-9897-a30c17138ee4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48698,b057e0fa-c631-4a59-9897-a30c17138ee4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48699,b057e0fa-c631-4a59-9897-a30c17138ee4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48700,b83a18f9-0cad-454f-a71b-921a512c4ad7,LIST_ACCOUNTS,xs2aListAccounts,true -48701,b83a18f9-0cad-454f-a71b-921a512c4ad7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48701,b83a18f9-0cad-454f-a71b-921a512c4ad7,LIST_TRANSACTIONS,xs2aListTransactions,true 48702,b83a18f9-0cad-454f-a71b-921a512c4ad7,AUTHORIZATION,,true 48703,b83a18f9-0cad-454f-a71b-921a512c4ad7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48704,b83a18f9-0cad-454f-a71b-921a512c4ad7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48705,b83a18f9-0cad-454f-a71b-921a512c4ad7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48706,75a9eb0a-81c7-4b53-82d7-ffc56b230388,LIST_ACCOUNTS,hbciListAccounts,false -48707,75a9eb0a-81c7-4b53-82d7-ffc56b230388,LIST_TRANSACTIONS,hbciListTransactions,false -48708,75a9eb0a-81c7-4b53-82d7-ffc56b230388,AUTHORIZATION,,false -48709,75a9eb0a-81c7-4b53-82d7-ffc56b230388,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48710,75a9eb0a-81c7-4b53-82d7-ffc56b230388,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48711,75a9eb0a-81c7-4b53-82d7-ffc56b230388,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48706,7cb155d3-c860-47e2-8143-18cc26fb871d,LIST_ACCOUNTS,hbciListAccounts,false +48707,7cb155d3-c860-47e2-8143-18cc26fb871d,LIST_TRANSACTIONS,hbciListTransactions,false +48708,7cb155d3-c860-47e2-8143-18cc26fb871d,AUTHORIZATION,,false +48709,7cb155d3-c860-47e2-8143-18cc26fb871d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48710,7cb155d3-c860-47e2-8143-18cc26fb871d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48711,7cb155d3-c860-47e2-8143-18cc26fb871d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48712,0c581947-7e80-4039-ac2a-dcbf6d62212d,LIST_ACCOUNTS,xs2aListAccounts,true -48713,0c581947-7e80-4039-ac2a-dcbf6d62212d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48713,0c581947-7e80-4039-ac2a-dcbf6d62212d,LIST_TRANSACTIONS,xs2aListTransactions,true 48714,0c581947-7e80-4039-ac2a-dcbf6d62212d,AUTHORIZATION,,true 48715,0c581947-7e80-4039-ac2a-dcbf6d62212d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48716,0c581947-7e80-4039-ac2a-dcbf6d62212d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48717,0c581947-7e80-4039-ac2a-dcbf6d62212d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48718,6063edc9-c712-4a36-845a-e624d7ac73a6,LIST_ACCOUNTS,hbciListAccounts,false -48719,6063edc9-c712-4a36-845a-e624d7ac73a6,LIST_TRANSACTIONS,hbciListTransactions,false -48720,6063edc9-c712-4a36-845a-e624d7ac73a6,AUTHORIZATION,,false -48721,6063edc9-c712-4a36-845a-e624d7ac73a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48722,6063edc9-c712-4a36-845a-e624d7ac73a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48723,6063edc9-c712-4a36-845a-e624d7ac73a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48718,f3ab5f73-0ce5-40a6-b158-5bbbd548359a,LIST_ACCOUNTS,hbciListAccounts,false +48719,f3ab5f73-0ce5-40a6-b158-5bbbd548359a,LIST_TRANSACTIONS,hbciListTransactions,false +48720,f3ab5f73-0ce5-40a6-b158-5bbbd548359a,AUTHORIZATION,,false +48721,f3ab5f73-0ce5-40a6-b158-5bbbd548359a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48722,f3ab5f73-0ce5-40a6-b158-5bbbd548359a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48723,f3ab5f73-0ce5-40a6-b158-5bbbd548359a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48724,379ffd5c-3b91-4bdb-8ac7-4f30d3a1bc4d,LIST_ACCOUNTS,xs2aListAccounts,true -48725,379ffd5c-3b91-4bdb-8ac7-4f30d3a1bc4d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48725,379ffd5c-3b91-4bdb-8ac7-4f30d3a1bc4d,LIST_TRANSACTIONS,xs2aListTransactions,true 48726,379ffd5c-3b91-4bdb-8ac7-4f30d3a1bc4d,AUTHORIZATION,,true 48727,379ffd5c-3b91-4bdb-8ac7-4f30d3a1bc4d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48728,379ffd5c-3b91-4bdb-8ac7-4f30d3a1bc4d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48729,379ffd5c-3b91-4bdb-8ac7-4f30d3a1bc4d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48730,58271036-6563-490c-8635-9d7aa2e0f784,LIST_ACCOUNTS,hbciListAccounts,false -48731,58271036-6563-490c-8635-9d7aa2e0f784,LIST_TRANSACTIONS,hbciListTransactions,false -48732,58271036-6563-490c-8635-9d7aa2e0f784,AUTHORIZATION,,false -48733,58271036-6563-490c-8635-9d7aa2e0f784,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48734,58271036-6563-490c-8635-9d7aa2e0f784,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48735,58271036-6563-490c-8635-9d7aa2e0f784,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48730,4d140fd3-da48-4486-8522-9bf4d61c1b26,LIST_ACCOUNTS,hbciListAccounts,false +48731,4d140fd3-da48-4486-8522-9bf4d61c1b26,LIST_TRANSACTIONS,hbciListTransactions,false +48732,4d140fd3-da48-4486-8522-9bf4d61c1b26,AUTHORIZATION,,false +48733,4d140fd3-da48-4486-8522-9bf4d61c1b26,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48734,4d140fd3-da48-4486-8522-9bf4d61c1b26,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48735,4d140fd3-da48-4486-8522-9bf4d61c1b26,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48736,07249f4c-d7d9-4ece-85ef-927581db668b,LIST_ACCOUNTS,xs2aListAccounts,true -48737,07249f4c-d7d9-4ece-85ef-927581db668b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48737,07249f4c-d7d9-4ece-85ef-927581db668b,LIST_TRANSACTIONS,xs2aListTransactions,true 48738,07249f4c-d7d9-4ece-85ef-927581db668b,AUTHORIZATION,,true 48739,07249f4c-d7d9-4ece-85ef-927581db668b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48740,07249f4c-d7d9-4ece-85ef-927581db668b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48741,07249f4c-d7d9-4ece-85ef-927581db668b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48742,88e53bba-ed81-425b-ae5d-8e8787c8b853,LIST_ACCOUNTS,hbciListAccounts,false -48743,88e53bba-ed81-425b-ae5d-8e8787c8b853,LIST_TRANSACTIONS,hbciListTransactions,false -48744,88e53bba-ed81-425b-ae5d-8e8787c8b853,AUTHORIZATION,,false -48745,88e53bba-ed81-425b-ae5d-8e8787c8b853,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48746,88e53bba-ed81-425b-ae5d-8e8787c8b853,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48747,88e53bba-ed81-425b-ae5d-8e8787c8b853,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48742,352e3469-bda5-4a69-91e3-065f40f2909f,LIST_ACCOUNTS,hbciListAccounts,false +48743,352e3469-bda5-4a69-91e3-065f40f2909f,LIST_TRANSACTIONS,hbciListTransactions,false +48744,352e3469-bda5-4a69-91e3-065f40f2909f,AUTHORIZATION,,false +48745,352e3469-bda5-4a69-91e3-065f40f2909f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48746,352e3469-bda5-4a69-91e3-065f40f2909f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48747,352e3469-bda5-4a69-91e3-065f40f2909f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48748,b38747bb-5e36-43f3-8de5-f6ad4c5a4072,LIST_ACCOUNTS,xs2aListAccounts,true -48749,b38747bb-5e36-43f3-8de5-f6ad4c5a4072,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48749,b38747bb-5e36-43f3-8de5-f6ad4c5a4072,LIST_TRANSACTIONS,xs2aListTransactions,true 48750,b38747bb-5e36-43f3-8de5-f6ad4c5a4072,AUTHORIZATION,,true 48751,b38747bb-5e36-43f3-8de5-f6ad4c5a4072,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48752,b38747bb-5e36-43f3-8de5-f6ad4c5a4072,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48753,b38747bb-5e36-43f3-8de5-f6ad4c5a4072,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48754,a61e4bfa-f034-4b6f-bea8-d0a3a4353e13,LIST_ACCOUNTS,hbciListAccounts,false -48755,a61e4bfa-f034-4b6f-bea8-d0a3a4353e13,LIST_TRANSACTIONS,hbciListTransactions,false -48756,a61e4bfa-f034-4b6f-bea8-d0a3a4353e13,AUTHORIZATION,,false -48757,a61e4bfa-f034-4b6f-bea8-d0a3a4353e13,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48758,a61e4bfa-f034-4b6f-bea8-d0a3a4353e13,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48759,a61e4bfa-f034-4b6f-bea8-d0a3a4353e13,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48754,0e7ff393-f89a-4af9-9350-b3dc0dba35e0,LIST_ACCOUNTS,hbciListAccounts,false +48755,0e7ff393-f89a-4af9-9350-b3dc0dba35e0,LIST_TRANSACTIONS,hbciListTransactions,false +48756,0e7ff393-f89a-4af9-9350-b3dc0dba35e0,AUTHORIZATION,,false +48757,0e7ff393-f89a-4af9-9350-b3dc0dba35e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48758,0e7ff393-f89a-4af9-9350-b3dc0dba35e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48759,0e7ff393-f89a-4af9-9350-b3dc0dba35e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48760,6c95e21d-840a-42eb-a602-8c71977d4f4a,LIST_ACCOUNTS,xs2aListAccounts,true -48761,6c95e21d-840a-42eb-a602-8c71977d4f4a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48761,6c95e21d-840a-42eb-a602-8c71977d4f4a,LIST_TRANSACTIONS,xs2aListTransactions,true 48762,6c95e21d-840a-42eb-a602-8c71977d4f4a,AUTHORIZATION,,true 48763,6c95e21d-840a-42eb-a602-8c71977d4f4a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48764,6c95e21d-840a-42eb-a602-8c71977d4f4a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48765,6c95e21d-840a-42eb-a602-8c71977d4f4a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48766,8ed6eb5e-b93b-4e0b-a77c-bd6975bc222d,LIST_ACCOUNTS,hbciListAccounts,false -48767,8ed6eb5e-b93b-4e0b-a77c-bd6975bc222d,LIST_TRANSACTIONS,hbciListTransactions,false -48768,8ed6eb5e-b93b-4e0b-a77c-bd6975bc222d,AUTHORIZATION,,false -48769,8ed6eb5e-b93b-4e0b-a77c-bd6975bc222d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48770,8ed6eb5e-b93b-4e0b-a77c-bd6975bc222d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48771,8ed6eb5e-b93b-4e0b-a77c-bd6975bc222d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48766,172d8578-911f-474e-8a84-92a8f29d03cf,LIST_ACCOUNTS,hbciListAccounts,false +48767,172d8578-911f-474e-8a84-92a8f29d03cf,LIST_TRANSACTIONS,hbciListTransactions,false +48768,172d8578-911f-474e-8a84-92a8f29d03cf,AUTHORIZATION,,false +48769,172d8578-911f-474e-8a84-92a8f29d03cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48770,172d8578-911f-474e-8a84-92a8f29d03cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48771,172d8578-911f-474e-8a84-92a8f29d03cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48772,5cffd126-3071-425a-a2ec-4a67d725a631,LIST_ACCOUNTS,xs2aListAccounts,true -48773,5cffd126-3071-425a-a2ec-4a67d725a631,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48773,5cffd126-3071-425a-a2ec-4a67d725a631,LIST_TRANSACTIONS,xs2aListTransactions,true 48774,5cffd126-3071-425a-a2ec-4a67d725a631,AUTHORIZATION,,true 48775,5cffd126-3071-425a-a2ec-4a67d725a631,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48776,5cffd126-3071-425a-a2ec-4a67d725a631,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48777,5cffd126-3071-425a-a2ec-4a67d725a631,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48778,ac43f3d8-83f9-4cdd-9864-36550f69b7aa,LIST_ACCOUNTS,hbciListAccounts,false -48779,ac43f3d8-83f9-4cdd-9864-36550f69b7aa,LIST_TRANSACTIONS,hbciListTransactions,false -48780,ac43f3d8-83f9-4cdd-9864-36550f69b7aa,AUTHORIZATION,,false -48781,ac43f3d8-83f9-4cdd-9864-36550f69b7aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48782,ac43f3d8-83f9-4cdd-9864-36550f69b7aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48783,ac43f3d8-83f9-4cdd-9864-36550f69b7aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48778,7f842013-0aae-4f64-bd09-3173e2dc2d36,LIST_ACCOUNTS,hbciListAccounts,false +48779,7f842013-0aae-4f64-bd09-3173e2dc2d36,LIST_TRANSACTIONS,hbciListTransactions,false +48780,7f842013-0aae-4f64-bd09-3173e2dc2d36,AUTHORIZATION,,false +48781,7f842013-0aae-4f64-bd09-3173e2dc2d36,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48782,7f842013-0aae-4f64-bd09-3173e2dc2d36,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48783,7f842013-0aae-4f64-bd09-3173e2dc2d36,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48784,bed656da-2488-4329-91bb-eb729bad1107,LIST_ACCOUNTS,xs2aListAccounts,true -48785,bed656da-2488-4329-91bb-eb729bad1107,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48785,bed656da-2488-4329-91bb-eb729bad1107,LIST_TRANSACTIONS,xs2aListTransactions,true 48786,bed656da-2488-4329-91bb-eb729bad1107,AUTHORIZATION,,true 48787,bed656da-2488-4329-91bb-eb729bad1107,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48788,bed656da-2488-4329-91bb-eb729bad1107,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48789,bed656da-2488-4329-91bb-eb729bad1107,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48790,b5b2528a-6138-4899-8ebc-b140ff672fdd,LIST_ACCOUNTS,hbciListAccounts,false -48791,b5b2528a-6138-4899-8ebc-b140ff672fdd,LIST_TRANSACTIONS,hbciListTransactions,false -48792,b5b2528a-6138-4899-8ebc-b140ff672fdd,AUTHORIZATION,,false -48793,b5b2528a-6138-4899-8ebc-b140ff672fdd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48794,b5b2528a-6138-4899-8ebc-b140ff672fdd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48795,b5b2528a-6138-4899-8ebc-b140ff672fdd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48790,6ef4021c-ba69-4440-b756-a8570bfab764,LIST_ACCOUNTS,hbciListAccounts,false +48791,6ef4021c-ba69-4440-b756-a8570bfab764,LIST_TRANSACTIONS,hbciListTransactions,false +48792,6ef4021c-ba69-4440-b756-a8570bfab764,AUTHORIZATION,,false +48793,6ef4021c-ba69-4440-b756-a8570bfab764,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48794,6ef4021c-ba69-4440-b756-a8570bfab764,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48795,6ef4021c-ba69-4440-b756-a8570bfab764,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48796,6d96f154-8064-4c45-b70d-52d6bf30e58c,LIST_ACCOUNTS,xs2aListAccounts,true -48797,6d96f154-8064-4c45-b70d-52d6bf30e58c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48797,6d96f154-8064-4c45-b70d-52d6bf30e58c,LIST_TRANSACTIONS,xs2aListTransactions,true 48798,6d96f154-8064-4c45-b70d-52d6bf30e58c,AUTHORIZATION,,true 48799,6d96f154-8064-4c45-b70d-52d6bf30e58c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48800,6d96f154-8064-4c45-b70d-52d6bf30e58c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48801,6d96f154-8064-4c45-b70d-52d6bf30e58c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48802,ecef0eb0-91e7-4703-881c-cf59b86b5d28,LIST_ACCOUNTS,hbciListAccounts,false -48803,ecef0eb0-91e7-4703-881c-cf59b86b5d28,LIST_TRANSACTIONS,hbciListTransactions,false -48804,ecef0eb0-91e7-4703-881c-cf59b86b5d28,AUTHORIZATION,,false -48805,ecef0eb0-91e7-4703-881c-cf59b86b5d28,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48806,ecef0eb0-91e7-4703-881c-cf59b86b5d28,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48807,ecef0eb0-91e7-4703-881c-cf59b86b5d28,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48802,9f67719c-fcea-4785-9ae9-fc5759f3eebc,LIST_ACCOUNTS,hbciListAccounts,false +48803,9f67719c-fcea-4785-9ae9-fc5759f3eebc,LIST_TRANSACTIONS,hbciListTransactions,false +48804,9f67719c-fcea-4785-9ae9-fc5759f3eebc,AUTHORIZATION,,false +48805,9f67719c-fcea-4785-9ae9-fc5759f3eebc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48806,9f67719c-fcea-4785-9ae9-fc5759f3eebc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48807,9f67719c-fcea-4785-9ae9-fc5759f3eebc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48808,d78f6619-4c87-43a0-bee0-1947a45472a2,LIST_ACCOUNTS,xs2aListAccounts,true -48809,d78f6619-4c87-43a0-bee0-1947a45472a2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48809,d78f6619-4c87-43a0-bee0-1947a45472a2,LIST_TRANSACTIONS,xs2aListTransactions,true 48810,d78f6619-4c87-43a0-bee0-1947a45472a2,AUTHORIZATION,,true 48811,d78f6619-4c87-43a0-bee0-1947a45472a2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48812,d78f6619-4c87-43a0-bee0-1947a45472a2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48813,d78f6619-4c87-43a0-bee0-1947a45472a2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48814,28dd3224-3f1b-4d7c-9058-dc88b9b997df,LIST_ACCOUNTS,hbciListAccounts,false -48815,28dd3224-3f1b-4d7c-9058-dc88b9b997df,LIST_TRANSACTIONS,hbciListTransactions,false -48816,28dd3224-3f1b-4d7c-9058-dc88b9b997df,AUTHORIZATION,,false -48817,28dd3224-3f1b-4d7c-9058-dc88b9b997df,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48818,28dd3224-3f1b-4d7c-9058-dc88b9b997df,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48819,28dd3224-3f1b-4d7c-9058-dc88b9b997df,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48814,5145b425-eb30-495c-b752-532a8ec0dadc,LIST_ACCOUNTS,hbciListAccounts,false +48815,5145b425-eb30-495c-b752-532a8ec0dadc,LIST_TRANSACTIONS,hbciListTransactions,false +48816,5145b425-eb30-495c-b752-532a8ec0dadc,AUTHORIZATION,,false +48817,5145b425-eb30-495c-b752-532a8ec0dadc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48818,5145b425-eb30-495c-b752-532a8ec0dadc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48819,5145b425-eb30-495c-b752-532a8ec0dadc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48820,f618f9ce-6325-43b8-9c9a-cb4c0142670a,LIST_ACCOUNTS,xs2aListAccounts,true -48821,f618f9ce-6325-43b8-9c9a-cb4c0142670a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48821,f618f9ce-6325-43b8-9c9a-cb4c0142670a,LIST_TRANSACTIONS,xs2aListTransactions,true 48822,f618f9ce-6325-43b8-9c9a-cb4c0142670a,AUTHORIZATION,,true 48823,f618f9ce-6325-43b8-9c9a-cb4c0142670a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48824,f618f9ce-6325-43b8-9c9a-cb4c0142670a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48825,f618f9ce-6325-43b8-9c9a-cb4c0142670a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48826,2278b469-9373-4d1e-b72d-159cef353b31,LIST_ACCOUNTS,hbciListAccounts,false -48827,2278b469-9373-4d1e-b72d-159cef353b31,LIST_TRANSACTIONS,hbciListTransactions,false -48828,2278b469-9373-4d1e-b72d-159cef353b31,AUTHORIZATION,,false -48829,2278b469-9373-4d1e-b72d-159cef353b31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48830,2278b469-9373-4d1e-b72d-159cef353b31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48831,2278b469-9373-4d1e-b72d-159cef353b31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48826,f2a65c77-cd1a-44dc-a192-15015da05bbc,LIST_ACCOUNTS,hbciListAccounts,false +48827,f2a65c77-cd1a-44dc-a192-15015da05bbc,LIST_TRANSACTIONS,hbciListTransactions,false +48828,f2a65c77-cd1a-44dc-a192-15015da05bbc,AUTHORIZATION,,false +48829,f2a65c77-cd1a-44dc-a192-15015da05bbc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48830,f2a65c77-cd1a-44dc-a192-15015da05bbc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48831,f2a65c77-cd1a-44dc-a192-15015da05bbc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48832,60370c70-760e-459e-b5f8-f84c67dcc5aa,LIST_ACCOUNTS,xs2aListAccounts,true -48833,60370c70-760e-459e-b5f8-f84c67dcc5aa,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48833,60370c70-760e-459e-b5f8-f84c67dcc5aa,LIST_TRANSACTIONS,xs2aListTransactions,true 48834,60370c70-760e-459e-b5f8-f84c67dcc5aa,AUTHORIZATION,,true 48835,60370c70-760e-459e-b5f8-f84c67dcc5aa,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48836,60370c70-760e-459e-b5f8-f84c67dcc5aa,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48837,60370c70-760e-459e-b5f8-f84c67dcc5aa,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48838,0a5708c5-7c64-40a6-90ec-79cce5026b1f,LIST_ACCOUNTS,hbciListAccounts,false -48839,0a5708c5-7c64-40a6-90ec-79cce5026b1f,LIST_TRANSACTIONS,hbciListTransactions,false -48840,0a5708c5-7c64-40a6-90ec-79cce5026b1f,AUTHORIZATION,,false -48841,0a5708c5-7c64-40a6-90ec-79cce5026b1f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48842,0a5708c5-7c64-40a6-90ec-79cce5026b1f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48843,0a5708c5-7c64-40a6-90ec-79cce5026b1f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48838,b344f122-ba5c-428e-8fbb-5a649fd07d69,LIST_ACCOUNTS,hbciListAccounts,false +48839,b344f122-ba5c-428e-8fbb-5a649fd07d69,LIST_TRANSACTIONS,hbciListTransactions,false +48840,b344f122-ba5c-428e-8fbb-5a649fd07d69,AUTHORIZATION,,false +48841,b344f122-ba5c-428e-8fbb-5a649fd07d69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48842,b344f122-ba5c-428e-8fbb-5a649fd07d69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48843,b344f122-ba5c-428e-8fbb-5a649fd07d69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48844,c5acee80-683e-4793-a0c2-5818b5a636ab,LIST_ACCOUNTS,xs2aListAccounts,true -48845,c5acee80-683e-4793-a0c2-5818b5a636ab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48845,c5acee80-683e-4793-a0c2-5818b5a636ab,LIST_TRANSACTIONS,xs2aListTransactions,true 48846,c5acee80-683e-4793-a0c2-5818b5a636ab,AUTHORIZATION,,true 48847,c5acee80-683e-4793-a0c2-5818b5a636ab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48848,c5acee80-683e-4793-a0c2-5818b5a636ab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48849,c5acee80-683e-4793-a0c2-5818b5a636ab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48850,fbba1c72-73c0-4c76-a6dd-be751c1a68d8,LIST_ACCOUNTS,hbciListAccounts,false -48851,fbba1c72-73c0-4c76-a6dd-be751c1a68d8,LIST_TRANSACTIONS,hbciListTransactions,false -48852,fbba1c72-73c0-4c76-a6dd-be751c1a68d8,AUTHORIZATION,,false -48853,fbba1c72-73c0-4c76-a6dd-be751c1a68d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48854,fbba1c72-73c0-4c76-a6dd-be751c1a68d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48855,fbba1c72-73c0-4c76-a6dd-be751c1a68d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48850,74aad338-0144-4873-8877-e1ba95f4a35a,LIST_ACCOUNTS,hbciListAccounts,false +48851,74aad338-0144-4873-8877-e1ba95f4a35a,LIST_TRANSACTIONS,hbciListTransactions,false +48852,74aad338-0144-4873-8877-e1ba95f4a35a,AUTHORIZATION,,false +48853,74aad338-0144-4873-8877-e1ba95f4a35a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48854,74aad338-0144-4873-8877-e1ba95f4a35a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48855,74aad338-0144-4873-8877-e1ba95f4a35a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48856,35b8b2b2-405c-4ebf-9760-c55a3cf7aaa7,LIST_ACCOUNTS,xs2aListAccounts,true -48857,35b8b2b2-405c-4ebf-9760-c55a3cf7aaa7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48857,35b8b2b2-405c-4ebf-9760-c55a3cf7aaa7,LIST_TRANSACTIONS,xs2aListTransactions,true 48858,35b8b2b2-405c-4ebf-9760-c55a3cf7aaa7,AUTHORIZATION,,true 48859,35b8b2b2-405c-4ebf-9760-c55a3cf7aaa7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48860,35b8b2b2-405c-4ebf-9760-c55a3cf7aaa7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48861,35b8b2b2-405c-4ebf-9760-c55a3cf7aaa7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48862,80dfe77f-55ee-4128-8a5a-04c7d32fa366,LIST_ACCOUNTS,hbciListAccounts,false -48863,80dfe77f-55ee-4128-8a5a-04c7d32fa366,LIST_TRANSACTIONS,hbciListTransactions,false -48864,80dfe77f-55ee-4128-8a5a-04c7d32fa366,AUTHORIZATION,,false -48865,80dfe77f-55ee-4128-8a5a-04c7d32fa366,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48866,80dfe77f-55ee-4128-8a5a-04c7d32fa366,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48867,80dfe77f-55ee-4128-8a5a-04c7d32fa366,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48862,dab628c8-f67c-40f2-aa9d-9fdda298e00e,LIST_ACCOUNTS,hbciListAccounts,false +48863,dab628c8-f67c-40f2-aa9d-9fdda298e00e,LIST_TRANSACTIONS,hbciListTransactions,false +48864,dab628c8-f67c-40f2-aa9d-9fdda298e00e,AUTHORIZATION,,false +48865,dab628c8-f67c-40f2-aa9d-9fdda298e00e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48866,dab628c8-f67c-40f2-aa9d-9fdda298e00e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48867,dab628c8-f67c-40f2-aa9d-9fdda298e00e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48868,240c72f4-d545-4ba9-845c-8ffadcd666a8,LIST_ACCOUNTS,xs2aListAccounts,true -48869,240c72f4-d545-4ba9-845c-8ffadcd666a8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48869,240c72f4-d545-4ba9-845c-8ffadcd666a8,LIST_TRANSACTIONS,xs2aListTransactions,true 48870,240c72f4-d545-4ba9-845c-8ffadcd666a8,AUTHORIZATION,,true 48871,240c72f4-d545-4ba9-845c-8ffadcd666a8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48872,240c72f4-d545-4ba9-845c-8ffadcd666a8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48873,240c72f4-d545-4ba9-845c-8ffadcd666a8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48874,0dd11abb-d864-4d66-989f-836393388f62,LIST_ACCOUNTS,hbciListAccounts,false -48875,0dd11abb-d864-4d66-989f-836393388f62,LIST_TRANSACTIONS,hbciListTransactions,false -48876,0dd11abb-d864-4d66-989f-836393388f62,AUTHORIZATION,,false -48877,0dd11abb-d864-4d66-989f-836393388f62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48878,0dd11abb-d864-4d66-989f-836393388f62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48879,0dd11abb-d864-4d66-989f-836393388f62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48874,a6a26028-889d-48ec-a275-d95a3d5ec88a,LIST_ACCOUNTS,hbciListAccounts,false +48875,a6a26028-889d-48ec-a275-d95a3d5ec88a,LIST_TRANSACTIONS,hbciListTransactions,false +48876,a6a26028-889d-48ec-a275-d95a3d5ec88a,AUTHORIZATION,,false +48877,a6a26028-889d-48ec-a275-d95a3d5ec88a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48878,a6a26028-889d-48ec-a275-d95a3d5ec88a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48879,a6a26028-889d-48ec-a275-d95a3d5ec88a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48880,ddc93138-513f-4c3f-b315-49e729c028f0,LIST_ACCOUNTS,xs2aListAccounts,true -48881,ddc93138-513f-4c3f-b315-49e729c028f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48881,ddc93138-513f-4c3f-b315-49e729c028f0,LIST_TRANSACTIONS,xs2aListTransactions,true 48882,ddc93138-513f-4c3f-b315-49e729c028f0,AUTHORIZATION,,true 48883,ddc93138-513f-4c3f-b315-49e729c028f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48884,ddc93138-513f-4c3f-b315-49e729c028f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48885,ddc93138-513f-4c3f-b315-49e729c028f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48886,48e80166-feb5-4cc0-a220-60bba0b90550,LIST_ACCOUNTS,hbciListAccounts,false -48887,48e80166-feb5-4cc0-a220-60bba0b90550,LIST_TRANSACTIONS,hbciListTransactions,false -48888,48e80166-feb5-4cc0-a220-60bba0b90550,AUTHORIZATION,,false -48889,48e80166-feb5-4cc0-a220-60bba0b90550,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48890,48e80166-feb5-4cc0-a220-60bba0b90550,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48891,48e80166-feb5-4cc0-a220-60bba0b90550,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48886,70a2a873-03ba-4ef2-8a27-abf44f7f7fd6,LIST_ACCOUNTS,hbciListAccounts,false +48887,70a2a873-03ba-4ef2-8a27-abf44f7f7fd6,LIST_TRANSACTIONS,hbciListTransactions,false +48888,70a2a873-03ba-4ef2-8a27-abf44f7f7fd6,AUTHORIZATION,,false +48889,70a2a873-03ba-4ef2-8a27-abf44f7f7fd6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48890,70a2a873-03ba-4ef2-8a27-abf44f7f7fd6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48891,70a2a873-03ba-4ef2-8a27-abf44f7f7fd6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48892,de380d84-a278-41b5-805f-85dd69ea7f9c,LIST_ACCOUNTS,xs2aListAccounts,true -48893,de380d84-a278-41b5-805f-85dd69ea7f9c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48893,de380d84-a278-41b5-805f-85dd69ea7f9c,LIST_TRANSACTIONS,xs2aListTransactions,true 48894,de380d84-a278-41b5-805f-85dd69ea7f9c,AUTHORIZATION,,true 48895,de380d84-a278-41b5-805f-85dd69ea7f9c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48896,de380d84-a278-41b5-805f-85dd69ea7f9c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48897,de380d84-a278-41b5-805f-85dd69ea7f9c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48898,ec2ff510-f07d-46f8-afeb-a6391f10bd55,LIST_ACCOUNTS,hbciListAccounts,false -48899,ec2ff510-f07d-46f8-afeb-a6391f10bd55,LIST_TRANSACTIONS,hbciListTransactions,false -48900,ec2ff510-f07d-46f8-afeb-a6391f10bd55,AUTHORIZATION,,false -48901,ec2ff510-f07d-46f8-afeb-a6391f10bd55,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48902,ec2ff510-f07d-46f8-afeb-a6391f10bd55,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48903,ec2ff510-f07d-46f8-afeb-a6391f10bd55,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48898,23d3541d-8e12-4106-8af2-563629890a14,LIST_ACCOUNTS,hbciListAccounts,false +48899,23d3541d-8e12-4106-8af2-563629890a14,LIST_TRANSACTIONS,hbciListTransactions,false +48900,23d3541d-8e12-4106-8af2-563629890a14,AUTHORIZATION,,false +48901,23d3541d-8e12-4106-8af2-563629890a14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48902,23d3541d-8e12-4106-8af2-563629890a14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48903,23d3541d-8e12-4106-8af2-563629890a14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48904,0e1d8152-f623-4b06-a676-52006d5cff31,LIST_ACCOUNTS,xs2aListAccounts,true -48905,0e1d8152-f623-4b06-a676-52006d5cff31,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48905,0e1d8152-f623-4b06-a676-52006d5cff31,LIST_TRANSACTIONS,xs2aListTransactions,true 48906,0e1d8152-f623-4b06-a676-52006d5cff31,AUTHORIZATION,,true 48907,0e1d8152-f623-4b06-a676-52006d5cff31,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48908,0e1d8152-f623-4b06-a676-52006d5cff31,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48909,0e1d8152-f623-4b06-a676-52006d5cff31,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48910,684f2dab-b4a4-4861-8a4d-3c35d91628f2,LIST_ACCOUNTS,hbciListAccounts,false -48911,684f2dab-b4a4-4861-8a4d-3c35d91628f2,LIST_TRANSACTIONS,hbciListTransactions,false -48912,684f2dab-b4a4-4861-8a4d-3c35d91628f2,AUTHORIZATION,,false -48913,684f2dab-b4a4-4861-8a4d-3c35d91628f2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48914,684f2dab-b4a4-4861-8a4d-3c35d91628f2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48915,684f2dab-b4a4-4861-8a4d-3c35d91628f2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48910,ab0c8355-e569-4f1f-9e15-58d989274aa3,LIST_ACCOUNTS,hbciListAccounts,false +48911,ab0c8355-e569-4f1f-9e15-58d989274aa3,LIST_TRANSACTIONS,hbciListTransactions,false +48912,ab0c8355-e569-4f1f-9e15-58d989274aa3,AUTHORIZATION,,false +48913,ab0c8355-e569-4f1f-9e15-58d989274aa3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48914,ab0c8355-e569-4f1f-9e15-58d989274aa3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48915,ab0c8355-e569-4f1f-9e15-58d989274aa3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48916,2ba7942b-d6b0-443f-afd9-83f4dbefee49,LIST_ACCOUNTS,xs2aListAccounts,true -48917,2ba7942b-d6b0-443f-afd9-83f4dbefee49,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48917,2ba7942b-d6b0-443f-afd9-83f4dbefee49,LIST_TRANSACTIONS,xs2aListTransactions,true 48918,2ba7942b-d6b0-443f-afd9-83f4dbefee49,AUTHORIZATION,,true 48919,2ba7942b-d6b0-443f-afd9-83f4dbefee49,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48920,2ba7942b-d6b0-443f-afd9-83f4dbefee49,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48921,2ba7942b-d6b0-443f-afd9-83f4dbefee49,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48922,24dfd3fc-d540-4eb3-bc03-4b98e1e63ced,LIST_ACCOUNTS,hbciListAccounts,false -48923,24dfd3fc-d540-4eb3-bc03-4b98e1e63ced,LIST_TRANSACTIONS,hbciListTransactions,false -48924,24dfd3fc-d540-4eb3-bc03-4b98e1e63ced,AUTHORIZATION,,false -48925,24dfd3fc-d540-4eb3-bc03-4b98e1e63ced,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48926,24dfd3fc-d540-4eb3-bc03-4b98e1e63ced,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48927,24dfd3fc-d540-4eb3-bc03-4b98e1e63ced,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48922,b2971d96-f347-4206-882e-7da9d506b593,LIST_ACCOUNTS,hbciListAccounts,false +48923,b2971d96-f347-4206-882e-7da9d506b593,LIST_TRANSACTIONS,hbciListTransactions,false +48924,b2971d96-f347-4206-882e-7da9d506b593,AUTHORIZATION,,false +48925,b2971d96-f347-4206-882e-7da9d506b593,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48926,b2971d96-f347-4206-882e-7da9d506b593,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48927,b2971d96-f347-4206-882e-7da9d506b593,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48928,ab7573e9-7cbd-47ea-856b-56cfec2ca51b,LIST_ACCOUNTS,xs2aListAccounts,true -48929,ab7573e9-7cbd-47ea-856b-56cfec2ca51b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48929,ab7573e9-7cbd-47ea-856b-56cfec2ca51b,LIST_TRANSACTIONS,xs2aListTransactions,true 48930,ab7573e9-7cbd-47ea-856b-56cfec2ca51b,AUTHORIZATION,,true 48931,ab7573e9-7cbd-47ea-856b-56cfec2ca51b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48932,ab7573e9-7cbd-47ea-856b-56cfec2ca51b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48933,ab7573e9-7cbd-47ea-856b-56cfec2ca51b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48934,458dd1d3-2f26-404a-a421-23eac00843ca,LIST_ACCOUNTS,hbciListAccounts,false -48935,458dd1d3-2f26-404a-a421-23eac00843ca,LIST_TRANSACTIONS,hbciListTransactions,false -48936,458dd1d3-2f26-404a-a421-23eac00843ca,AUTHORIZATION,,false -48937,458dd1d3-2f26-404a-a421-23eac00843ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48938,458dd1d3-2f26-404a-a421-23eac00843ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48939,458dd1d3-2f26-404a-a421-23eac00843ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48934,3067a9b2-c9f2-4f62-958f-ba76bfce6540,LIST_ACCOUNTS,hbciListAccounts,false +48935,3067a9b2-c9f2-4f62-958f-ba76bfce6540,LIST_TRANSACTIONS,hbciListTransactions,false +48936,3067a9b2-c9f2-4f62-958f-ba76bfce6540,AUTHORIZATION,,false +48937,3067a9b2-c9f2-4f62-958f-ba76bfce6540,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48938,3067a9b2-c9f2-4f62-958f-ba76bfce6540,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48939,3067a9b2-c9f2-4f62-958f-ba76bfce6540,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48940,1c5d79c7-71dc-4a52-967e-ab980626fd01,LIST_ACCOUNTS,xs2aListAccounts,true -48941,1c5d79c7-71dc-4a52-967e-ab980626fd01,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48941,1c5d79c7-71dc-4a52-967e-ab980626fd01,LIST_TRANSACTIONS,xs2aListTransactions,true 48942,1c5d79c7-71dc-4a52-967e-ab980626fd01,AUTHORIZATION,,true 48943,1c5d79c7-71dc-4a52-967e-ab980626fd01,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48944,1c5d79c7-71dc-4a52-967e-ab980626fd01,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48945,1c5d79c7-71dc-4a52-967e-ab980626fd01,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48946,055c0f04-788b-4c9c-bea5-acc2903eacbf,LIST_ACCOUNTS,hbciListAccounts,false -48947,055c0f04-788b-4c9c-bea5-acc2903eacbf,LIST_TRANSACTIONS,hbciListTransactions,false -48948,055c0f04-788b-4c9c-bea5-acc2903eacbf,AUTHORIZATION,,false -48949,055c0f04-788b-4c9c-bea5-acc2903eacbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48950,055c0f04-788b-4c9c-bea5-acc2903eacbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48951,055c0f04-788b-4c9c-bea5-acc2903eacbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48946,041cd9f8-74d0-41b5-98ea-956e3ab5699d,LIST_ACCOUNTS,hbciListAccounts,false +48947,041cd9f8-74d0-41b5-98ea-956e3ab5699d,LIST_TRANSACTIONS,hbciListTransactions,false +48948,041cd9f8-74d0-41b5-98ea-956e3ab5699d,AUTHORIZATION,,false +48949,041cd9f8-74d0-41b5-98ea-956e3ab5699d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48950,041cd9f8-74d0-41b5-98ea-956e3ab5699d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48951,041cd9f8-74d0-41b5-98ea-956e3ab5699d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48952,d723f0e2-4aa6-4b1c-a2c8-6487bcb6ede8,LIST_ACCOUNTS,xs2aListAccounts,true -48953,d723f0e2-4aa6-4b1c-a2c8-6487bcb6ede8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48953,d723f0e2-4aa6-4b1c-a2c8-6487bcb6ede8,LIST_TRANSACTIONS,xs2aListTransactions,true 48954,d723f0e2-4aa6-4b1c-a2c8-6487bcb6ede8,AUTHORIZATION,,true 48955,d723f0e2-4aa6-4b1c-a2c8-6487bcb6ede8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48956,d723f0e2-4aa6-4b1c-a2c8-6487bcb6ede8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48957,d723f0e2-4aa6-4b1c-a2c8-6487bcb6ede8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48958,ac3fd8b6-3ce3-47dd-bbd2-41aac98d74aa,LIST_ACCOUNTS,hbciListAccounts,false -48959,ac3fd8b6-3ce3-47dd-bbd2-41aac98d74aa,LIST_TRANSACTIONS,hbciListTransactions,false -48960,ac3fd8b6-3ce3-47dd-bbd2-41aac98d74aa,AUTHORIZATION,,false -48961,ac3fd8b6-3ce3-47dd-bbd2-41aac98d74aa,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48962,ac3fd8b6-3ce3-47dd-bbd2-41aac98d74aa,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48963,ac3fd8b6-3ce3-47dd-bbd2-41aac98d74aa,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48958,97724cd8-5caa-4ab4-bba4-15e1359d87f7,LIST_ACCOUNTS,hbciListAccounts,false +48959,97724cd8-5caa-4ab4-bba4-15e1359d87f7,LIST_TRANSACTIONS,hbciListTransactions,false +48960,97724cd8-5caa-4ab4-bba4-15e1359d87f7,AUTHORIZATION,,false +48961,97724cd8-5caa-4ab4-bba4-15e1359d87f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48962,97724cd8-5caa-4ab4-bba4-15e1359d87f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48963,97724cd8-5caa-4ab4-bba4-15e1359d87f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48964,29c4d3da-78eb-4458-8195-03873b9bb66a,LIST_ACCOUNTS,xs2aListAccounts,true -48965,29c4d3da-78eb-4458-8195-03873b9bb66a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48965,29c4d3da-78eb-4458-8195-03873b9bb66a,LIST_TRANSACTIONS,xs2aListTransactions,true 48966,29c4d3da-78eb-4458-8195-03873b9bb66a,AUTHORIZATION,,true 48967,29c4d3da-78eb-4458-8195-03873b9bb66a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48968,29c4d3da-78eb-4458-8195-03873b9bb66a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48969,29c4d3da-78eb-4458-8195-03873b9bb66a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48970,48a156ac-e761-4f58-83ea-6ee8875bcdb1,LIST_ACCOUNTS,hbciListAccounts,false -48971,48a156ac-e761-4f58-83ea-6ee8875bcdb1,LIST_TRANSACTIONS,hbciListTransactions,false -48972,48a156ac-e761-4f58-83ea-6ee8875bcdb1,AUTHORIZATION,,false -48973,48a156ac-e761-4f58-83ea-6ee8875bcdb1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48974,48a156ac-e761-4f58-83ea-6ee8875bcdb1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48975,48a156ac-e761-4f58-83ea-6ee8875bcdb1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48970,a2d693c1-6eb7-4c2e-9619-6ec974aa5870,LIST_ACCOUNTS,hbciListAccounts,false +48971,a2d693c1-6eb7-4c2e-9619-6ec974aa5870,LIST_TRANSACTIONS,hbciListTransactions,false +48972,a2d693c1-6eb7-4c2e-9619-6ec974aa5870,AUTHORIZATION,,false +48973,a2d693c1-6eb7-4c2e-9619-6ec974aa5870,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48974,a2d693c1-6eb7-4c2e-9619-6ec974aa5870,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48975,a2d693c1-6eb7-4c2e-9619-6ec974aa5870,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48976,69969bc8-3a11-4467-8eec-e32f63c92ff6,LIST_ACCOUNTS,xs2aListAccounts,true -48977,69969bc8-3a11-4467-8eec-e32f63c92ff6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48977,69969bc8-3a11-4467-8eec-e32f63c92ff6,LIST_TRANSACTIONS,xs2aListTransactions,true 48978,69969bc8-3a11-4467-8eec-e32f63c92ff6,AUTHORIZATION,,true 48979,69969bc8-3a11-4467-8eec-e32f63c92ff6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48980,69969bc8-3a11-4467-8eec-e32f63c92ff6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48981,69969bc8-3a11-4467-8eec-e32f63c92ff6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48982,c091c691-41e3-4e55-b275-77defe513292,LIST_ACCOUNTS,hbciListAccounts,false -48983,c091c691-41e3-4e55-b275-77defe513292,LIST_TRANSACTIONS,hbciListTransactions,false -48984,c091c691-41e3-4e55-b275-77defe513292,AUTHORIZATION,,false -48985,c091c691-41e3-4e55-b275-77defe513292,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48986,c091c691-41e3-4e55-b275-77defe513292,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48987,c091c691-41e3-4e55-b275-77defe513292,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48982,15c4f4b7-8617-4acd-97d4-dd0cb85fd5ae,LIST_ACCOUNTS,hbciListAccounts,false +48983,15c4f4b7-8617-4acd-97d4-dd0cb85fd5ae,LIST_TRANSACTIONS,hbciListTransactions,false +48984,15c4f4b7-8617-4acd-97d4-dd0cb85fd5ae,AUTHORIZATION,,false +48985,15c4f4b7-8617-4acd-97d4-dd0cb85fd5ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48986,15c4f4b7-8617-4acd-97d4-dd0cb85fd5ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48987,15c4f4b7-8617-4acd-97d4-dd0cb85fd5ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 48988,2d682613-81f5-416e-9844-f2bf4e6aadc9,LIST_ACCOUNTS,xs2aListAccounts,true -48989,2d682613-81f5-416e-9844-f2bf4e6aadc9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +48989,2d682613-81f5-416e-9844-f2bf4e6aadc9,LIST_TRANSACTIONS,xs2aListTransactions,true 48990,2d682613-81f5-416e-9844-f2bf4e6aadc9,AUTHORIZATION,,true 48991,2d682613-81f5-416e-9844-f2bf4e6aadc9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 48992,2d682613-81f5-416e-9844-f2bf4e6aadc9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 48993,2d682613-81f5-416e-9844-f2bf4e6aadc9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -48994,75ee1043-05c8-4c5c-baa6-6daa28a1554a,LIST_ACCOUNTS,hbciListAccounts,false -48995,75ee1043-05c8-4c5c-baa6-6daa28a1554a,LIST_TRANSACTIONS,hbciListTransactions,false -48996,75ee1043-05c8-4c5c-baa6-6daa28a1554a,AUTHORIZATION,,false -48997,75ee1043-05c8-4c5c-baa6-6daa28a1554a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -48998,75ee1043-05c8-4c5c-baa6-6daa28a1554a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -48999,75ee1043-05c8-4c5c-baa6-6daa28a1554a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +48994,e52e61e9-c355-4196-9a39-7308552e5ad6,LIST_ACCOUNTS,hbciListAccounts,false +48995,e52e61e9-c355-4196-9a39-7308552e5ad6,LIST_TRANSACTIONS,hbciListTransactions,false +48996,e52e61e9-c355-4196-9a39-7308552e5ad6,AUTHORIZATION,,false +48997,e52e61e9-c355-4196-9a39-7308552e5ad6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +48998,e52e61e9-c355-4196-9a39-7308552e5ad6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +48999,e52e61e9-c355-4196-9a39-7308552e5ad6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49000,08024f46-bae3-4428-8a19-bca01a58949d,LIST_ACCOUNTS,xs2aListAccounts,true -49001,08024f46-bae3-4428-8a19-bca01a58949d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49001,08024f46-bae3-4428-8a19-bca01a58949d,LIST_TRANSACTIONS,xs2aListTransactions,true 49002,08024f46-bae3-4428-8a19-bca01a58949d,AUTHORIZATION,,true 49003,08024f46-bae3-4428-8a19-bca01a58949d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49004,08024f46-bae3-4428-8a19-bca01a58949d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49005,08024f46-bae3-4428-8a19-bca01a58949d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49006,037008db-19ac-4609-85f2-2140a8cad427,LIST_ACCOUNTS,hbciListAccounts,false -49007,037008db-19ac-4609-85f2-2140a8cad427,LIST_TRANSACTIONS,hbciListTransactions,false -49008,037008db-19ac-4609-85f2-2140a8cad427,AUTHORIZATION,,false -49009,037008db-19ac-4609-85f2-2140a8cad427,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49010,037008db-19ac-4609-85f2-2140a8cad427,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49011,037008db-19ac-4609-85f2-2140a8cad427,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49006,ce141737-6c7a-4d1a-bf66-7dc8be76ed25,LIST_ACCOUNTS,hbciListAccounts,false +49007,ce141737-6c7a-4d1a-bf66-7dc8be76ed25,LIST_TRANSACTIONS,hbciListTransactions,false +49008,ce141737-6c7a-4d1a-bf66-7dc8be76ed25,AUTHORIZATION,,false +49009,ce141737-6c7a-4d1a-bf66-7dc8be76ed25,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49010,ce141737-6c7a-4d1a-bf66-7dc8be76ed25,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49011,ce141737-6c7a-4d1a-bf66-7dc8be76ed25,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49012,57695b0c-288e-4a29-8dd6-f55c797c5da4,LIST_ACCOUNTS,xs2aListAccounts,true -49013,57695b0c-288e-4a29-8dd6-f55c797c5da4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49013,57695b0c-288e-4a29-8dd6-f55c797c5da4,LIST_TRANSACTIONS,xs2aListTransactions,true 49014,57695b0c-288e-4a29-8dd6-f55c797c5da4,AUTHORIZATION,,true 49015,57695b0c-288e-4a29-8dd6-f55c797c5da4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49016,57695b0c-288e-4a29-8dd6-f55c797c5da4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49017,57695b0c-288e-4a29-8dd6-f55c797c5da4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49018,015e3b50-c2b8-4dcb-ba64-276d18d0c292,LIST_ACCOUNTS,hbciListAccounts,false -49019,015e3b50-c2b8-4dcb-ba64-276d18d0c292,LIST_TRANSACTIONS,hbciListTransactions,false -49020,015e3b50-c2b8-4dcb-ba64-276d18d0c292,AUTHORIZATION,,false -49021,015e3b50-c2b8-4dcb-ba64-276d18d0c292,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49022,015e3b50-c2b8-4dcb-ba64-276d18d0c292,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49023,015e3b50-c2b8-4dcb-ba64-276d18d0c292,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49018,4ddb463d-3f70-4ac6-b363-c5521692f941,LIST_ACCOUNTS,hbciListAccounts,false +49019,4ddb463d-3f70-4ac6-b363-c5521692f941,LIST_TRANSACTIONS,hbciListTransactions,false +49020,4ddb463d-3f70-4ac6-b363-c5521692f941,AUTHORIZATION,,false +49021,4ddb463d-3f70-4ac6-b363-c5521692f941,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49022,4ddb463d-3f70-4ac6-b363-c5521692f941,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49023,4ddb463d-3f70-4ac6-b363-c5521692f941,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49024,7000bfd0-7685-4781-a26f-f894b9e4cb6b,LIST_ACCOUNTS,xs2aListAccounts,true -49025,7000bfd0-7685-4781-a26f-f894b9e4cb6b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49025,7000bfd0-7685-4781-a26f-f894b9e4cb6b,LIST_TRANSACTIONS,xs2aListTransactions,true 49026,7000bfd0-7685-4781-a26f-f894b9e4cb6b,AUTHORIZATION,,true 49027,7000bfd0-7685-4781-a26f-f894b9e4cb6b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49028,7000bfd0-7685-4781-a26f-f894b9e4cb6b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49029,7000bfd0-7685-4781-a26f-f894b9e4cb6b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49030,a1cc3f15-5dcb-4b92-8169-ec4aa3f943e4,LIST_ACCOUNTS,hbciListAccounts,false -49031,a1cc3f15-5dcb-4b92-8169-ec4aa3f943e4,LIST_TRANSACTIONS,hbciListTransactions,false -49032,a1cc3f15-5dcb-4b92-8169-ec4aa3f943e4,AUTHORIZATION,,false -49033,a1cc3f15-5dcb-4b92-8169-ec4aa3f943e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49034,a1cc3f15-5dcb-4b92-8169-ec4aa3f943e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49035,a1cc3f15-5dcb-4b92-8169-ec4aa3f943e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49030,0f298c76-3a13-4292-9ba8-9b6a2a0e14d9,LIST_ACCOUNTS,hbciListAccounts,false +49031,0f298c76-3a13-4292-9ba8-9b6a2a0e14d9,LIST_TRANSACTIONS,hbciListTransactions,false +49032,0f298c76-3a13-4292-9ba8-9b6a2a0e14d9,AUTHORIZATION,,false +49033,0f298c76-3a13-4292-9ba8-9b6a2a0e14d9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49034,0f298c76-3a13-4292-9ba8-9b6a2a0e14d9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49035,0f298c76-3a13-4292-9ba8-9b6a2a0e14d9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49036,d3188b19-1da6-44c8-912b-6222a20544c9,LIST_ACCOUNTS,xs2aListAccounts,true -49037,d3188b19-1da6-44c8-912b-6222a20544c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49037,d3188b19-1da6-44c8-912b-6222a20544c9,LIST_TRANSACTIONS,xs2aListTransactions,true 49038,d3188b19-1da6-44c8-912b-6222a20544c9,AUTHORIZATION,,true 49039,d3188b19-1da6-44c8-912b-6222a20544c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49040,d3188b19-1da6-44c8-912b-6222a20544c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49041,d3188b19-1da6-44c8-912b-6222a20544c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49042,c699c467-72df-4297-aa93-5e3598552cad,LIST_ACCOUNTS,hbciListAccounts,false -49043,c699c467-72df-4297-aa93-5e3598552cad,LIST_TRANSACTIONS,hbciListTransactions,false -49044,c699c467-72df-4297-aa93-5e3598552cad,AUTHORIZATION,,false -49045,c699c467-72df-4297-aa93-5e3598552cad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49046,c699c467-72df-4297-aa93-5e3598552cad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49047,c699c467-72df-4297-aa93-5e3598552cad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49042,fd82a7ea-8742-42db-86af-b4dc366978cc,LIST_ACCOUNTS,hbciListAccounts,false +49043,fd82a7ea-8742-42db-86af-b4dc366978cc,LIST_TRANSACTIONS,hbciListTransactions,false +49044,fd82a7ea-8742-42db-86af-b4dc366978cc,AUTHORIZATION,,false +49045,fd82a7ea-8742-42db-86af-b4dc366978cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49046,fd82a7ea-8742-42db-86af-b4dc366978cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49047,fd82a7ea-8742-42db-86af-b4dc366978cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49048,8019c72d-422c-48e9-98c8-057f789c39a1,LIST_ACCOUNTS,xs2aListAccounts,true -49049,8019c72d-422c-48e9-98c8-057f789c39a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49049,8019c72d-422c-48e9-98c8-057f789c39a1,LIST_TRANSACTIONS,xs2aListTransactions,true 49050,8019c72d-422c-48e9-98c8-057f789c39a1,AUTHORIZATION,,true 49051,8019c72d-422c-48e9-98c8-057f789c39a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49052,8019c72d-422c-48e9-98c8-057f789c39a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49053,8019c72d-422c-48e9-98c8-057f789c39a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49054,95438931-44d0-49f3-9d0e-cf10073cf244,LIST_ACCOUNTS,hbciListAccounts,false -49055,95438931-44d0-49f3-9d0e-cf10073cf244,LIST_TRANSACTIONS,hbciListTransactions,false -49056,95438931-44d0-49f3-9d0e-cf10073cf244,AUTHORIZATION,,false -49057,95438931-44d0-49f3-9d0e-cf10073cf244,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49058,95438931-44d0-49f3-9d0e-cf10073cf244,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49059,95438931-44d0-49f3-9d0e-cf10073cf244,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49054,56976976-686c-4ee7-a087-0674909e5330,LIST_ACCOUNTS,hbciListAccounts,false +49055,56976976-686c-4ee7-a087-0674909e5330,LIST_TRANSACTIONS,hbciListTransactions,false +49056,56976976-686c-4ee7-a087-0674909e5330,AUTHORIZATION,,false +49057,56976976-686c-4ee7-a087-0674909e5330,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49058,56976976-686c-4ee7-a087-0674909e5330,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49059,56976976-686c-4ee7-a087-0674909e5330,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49060,949464fa-9164-4532-ba58-8822210706ca,LIST_ACCOUNTS,xs2aListAccounts,true -49061,949464fa-9164-4532-ba58-8822210706ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49061,949464fa-9164-4532-ba58-8822210706ca,LIST_TRANSACTIONS,xs2aListTransactions,true 49062,949464fa-9164-4532-ba58-8822210706ca,AUTHORIZATION,,true 49063,949464fa-9164-4532-ba58-8822210706ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49064,949464fa-9164-4532-ba58-8822210706ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49065,949464fa-9164-4532-ba58-8822210706ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49066,40a6de7d-86de-42ea-b808-e05b8c4ed898,LIST_ACCOUNTS,hbciListAccounts,false -49067,40a6de7d-86de-42ea-b808-e05b8c4ed898,LIST_TRANSACTIONS,hbciListTransactions,false -49068,40a6de7d-86de-42ea-b808-e05b8c4ed898,AUTHORIZATION,,false -49069,40a6de7d-86de-42ea-b808-e05b8c4ed898,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49070,40a6de7d-86de-42ea-b808-e05b8c4ed898,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49071,40a6de7d-86de-42ea-b808-e05b8c4ed898,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49066,06976e57-d1c0-4d83-8304-bd81faa64895,LIST_ACCOUNTS,hbciListAccounts,false +49067,06976e57-d1c0-4d83-8304-bd81faa64895,LIST_TRANSACTIONS,hbciListTransactions,false +49068,06976e57-d1c0-4d83-8304-bd81faa64895,AUTHORIZATION,,false +49069,06976e57-d1c0-4d83-8304-bd81faa64895,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49070,06976e57-d1c0-4d83-8304-bd81faa64895,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49071,06976e57-d1c0-4d83-8304-bd81faa64895,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49072,932a516b-3aae-4ebc-8e04-4ae20877c5b2,LIST_ACCOUNTS,xs2aListAccounts,true -49073,932a516b-3aae-4ebc-8e04-4ae20877c5b2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49073,932a516b-3aae-4ebc-8e04-4ae20877c5b2,LIST_TRANSACTIONS,xs2aListTransactions,true 49074,932a516b-3aae-4ebc-8e04-4ae20877c5b2,AUTHORIZATION,,true 49075,932a516b-3aae-4ebc-8e04-4ae20877c5b2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49076,932a516b-3aae-4ebc-8e04-4ae20877c5b2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49077,932a516b-3aae-4ebc-8e04-4ae20877c5b2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49078,804afad6-b5be-4948-b1d9-7d4430a5b4c5,LIST_ACCOUNTS,hbciListAccounts,false -49079,804afad6-b5be-4948-b1d9-7d4430a5b4c5,LIST_TRANSACTIONS,hbciListTransactions,false -49080,804afad6-b5be-4948-b1d9-7d4430a5b4c5,AUTHORIZATION,,false -49081,804afad6-b5be-4948-b1d9-7d4430a5b4c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49082,804afad6-b5be-4948-b1d9-7d4430a5b4c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49083,804afad6-b5be-4948-b1d9-7d4430a5b4c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49078,c6e3fde3-3772-4dcd-81ab-887417931fdb,LIST_ACCOUNTS,hbciListAccounts,false +49079,c6e3fde3-3772-4dcd-81ab-887417931fdb,LIST_TRANSACTIONS,hbciListTransactions,false +49080,c6e3fde3-3772-4dcd-81ab-887417931fdb,AUTHORIZATION,,false +49081,c6e3fde3-3772-4dcd-81ab-887417931fdb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49082,c6e3fde3-3772-4dcd-81ab-887417931fdb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49083,c6e3fde3-3772-4dcd-81ab-887417931fdb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49084,bb3ad352-e795-47fe-b005-f0fb2feb6a47,LIST_ACCOUNTS,xs2aListAccounts,true -49085,bb3ad352-e795-47fe-b005-f0fb2feb6a47,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49085,bb3ad352-e795-47fe-b005-f0fb2feb6a47,LIST_TRANSACTIONS,xs2aListTransactions,true 49086,bb3ad352-e795-47fe-b005-f0fb2feb6a47,AUTHORIZATION,,true 49087,bb3ad352-e795-47fe-b005-f0fb2feb6a47,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49088,bb3ad352-e795-47fe-b005-f0fb2feb6a47,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49089,bb3ad352-e795-47fe-b005-f0fb2feb6a47,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49090,32c2a3a0-7691-4974-ad35-871b81633ab8,LIST_ACCOUNTS,hbciListAccounts,false -49091,32c2a3a0-7691-4974-ad35-871b81633ab8,LIST_TRANSACTIONS,hbciListTransactions,false -49092,32c2a3a0-7691-4974-ad35-871b81633ab8,AUTHORIZATION,,false -49093,32c2a3a0-7691-4974-ad35-871b81633ab8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49094,32c2a3a0-7691-4974-ad35-871b81633ab8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49095,32c2a3a0-7691-4974-ad35-871b81633ab8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49090,5d21f56f-7b57-4a11-8d70-618fe68e881e,LIST_ACCOUNTS,hbciListAccounts,false +49091,5d21f56f-7b57-4a11-8d70-618fe68e881e,LIST_TRANSACTIONS,hbciListTransactions,false +49092,5d21f56f-7b57-4a11-8d70-618fe68e881e,AUTHORIZATION,,false +49093,5d21f56f-7b57-4a11-8d70-618fe68e881e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49094,5d21f56f-7b57-4a11-8d70-618fe68e881e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49095,5d21f56f-7b57-4a11-8d70-618fe68e881e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49096,24199233-627c-4b8f-859b-d9957a0a3298,LIST_ACCOUNTS,xs2aListAccounts,true -49097,24199233-627c-4b8f-859b-d9957a0a3298,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49097,24199233-627c-4b8f-859b-d9957a0a3298,LIST_TRANSACTIONS,xs2aListTransactions,true 49098,24199233-627c-4b8f-859b-d9957a0a3298,AUTHORIZATION,,true 49099,24199233-627c-4b8f-859b-d9957a0a3298,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49100,24199233-627c-4b8f-859b-d9957a0a3298,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49101,24199233-627c-4b8f-859b-d9957a0a3298,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49102,6347bab7-38b6-43b0-91d5-43ee3f9d7fef,LIST_ACCOUNTS,hbciListAccounts,false -49103,6347bab7-38b6-43b0-91d5-43ee3f9d7fef,LIST_TRANSACTIONS,hbciListTransactions,false -49104,6347bab7-38b6-43b0-91d5-43ee3f9d7fef,AUTHORIZATION,,false -49105,6347bab7-38b6-43b0-91d5-43ee3f9d7fef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49106,6347bab7-38b6-43b0-91d5-43ee3f9d7fef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49107,6347bab7-38b6-43b0-91d5-43ee3f9d7fef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49102,adbcdb83-3557-4bf7-99b4-d5cfd97e8d48,LIST_ACCOUNTS,hbciListAccounts,false +49103,adbcdb83-3557-4bf7-99b4-d5cfd97e8d48,LIST_TRANSACTIONS,hbciListTransactions,false +49104,adbcdb83-3557-4bf7-99b4-d5cfd97e8d48,AUTHORIZATION,,false +49105,adbcdb83-3557-4bf7-99b4-d5cfd97e8d48,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49106,adbcdb83-3557-4bf7-99b4-d5cfd97e8d48,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49107,adbcdb83-3557-4bf7-99b4-d5cfd97e8d48,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49108,edd48c37-03e1-4a66-b4f4-deb3ad44dca6,LIST_ACCOUNTS,xs2aListAccounts,true -49109,edd48c37-03e1-4a66-b4f4-deb3ad44dca6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49109,edd48c37-03e1-4a66-b4f4-deb3ad44dca6,LIST_TRANSACTIONS,xs2aListTransactions,true 49110,edd48c37-03e1-4a66-b4f4-deb3ad44dca6,AUTHORIZATION,,true 49111,edd48c37-03e1-4a66-b4f4-deb3ad44dca6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49112,edd48c37-03e1-4a66-b4f4-deb3ad44dca6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49113,edd48c37-03e1-4a66-b4f4-deb3ad44dca6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49114,057a4da4-bc2a-4a60-bc35-1ecc46089bf8,LIST_ACCOUNTS,hbciListAccounts,false -49115,057a4da4-bc2a-4a60-bc35-1ecc46089bf8,LIST_TRANSACTIONS,hbciListTransactions,false -49116,057a4da4-bc2a-4a60-bc35-1ecc46089bf8,AUTHORIZATION,,false -49117,057a4da4-bc2a-4a60-bc35-1ecc46089bf8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49118,057a4da4-bc2a-4a60-bc35-1ecc46089bf8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49119,057a4da4-bc2a-4a60-bc35-1ecc46089bf8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49114,16c293fa-49da-401c-b110-876e27129cba,LIST_ACCOUNTS,hbciListAccounts,false +49115,16c293fa-49da-401c-b110-876e27129cba,LIST_TRANSACTIONS,hbciListTransactions,false +49116,16c293fa-49da-401c-b110-876e27129cba,AUTHORIZATION,,false +49117,16c293fa-49da-401c-b110-876e27129cba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49118,16c293fa-49da-401c-b110-876e27129cba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49119,16c293fa-49da-401c-b110-876e27129cba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49120,9b0b300f-531e-402d-9fb9-17bf1bb06d76,LIST_ACCOUNTS,xs2aListAccounts,true -49121,9b0b300f-531e-402d-9fb9-17bf1bb06d76,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49121,9b0b300f-531e-402d-9fb9-17bf1bb06d76,LIST_TRANSACTIONS,xs2aListTransactions,true 49122,9b0b300f-531e-402d-9fb9-17bf1bb06d76,AUTHORIZATION,,true 49123,9b0b300f-531e-402d-9fb9-17bf1bb06d76,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49124,9b0b300f-531e-402d-9fb9-17bf1bb06d76,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49125,9b0b300f-531e-402d-9fb9-17bf1bb06d76,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49126,c023fbda-c5bc-4439-a16b-d94cf3f9c27b,LIST_ACCOUNTS,hbciListAccounts,false -49127,c023fbda-c5bc-4439-a16b-d94cf3f9c27b,LIST_TRANSACTIONS,hbciListTransactions,false -49128,c023fbda-c5bc-4439-a16b-d94cf3f9c27b,AUTHORIZATION,,false -49129,c023fbda-c5bc-4439-a16b-d94cf3f9c27b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49130,c023fbda-c5bc-4439-a16b-d94cf3f9c27b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49131,c023fbda-c5bc-4439-a16b-d94cf3f9c27b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49126,1415f80f-5da4-46b0-8501-87fbaf7b942a,LIST_ACCOUNTS,hbciListAccounts,false +49127,1415f80f-5da4-46b0-8501-87fbaf7b942a,LIST_TRANSACTIONS,hbciListTransactions,false +49128,1415f80f-5da4-46b0-8501-87fbaf7b942a,AUTHORIZATION,,false +49129,1415f80f-5da4-46b0-8501-87fbaf7b942a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49130,1415f80f-5da4-46b0-8501-87fbaf7b942a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49131,1415f80f-5da4-46b0-8501-87fbaf7b942a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49132,dd6b8071-d715-4789-bc4e-8a0f16de989e,LIST_ACCOUNTS,xs2aListAccounts,true -49133,dd6b8071-d715-4789-bc4e-8a0f16de989e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49133,dd6b8071-d715-4789-bc4e-8a0f16de989e,LIST_TRANSACTIONS,xs2aListTransactions,true 49134,dd6b8071-d715-4789-bc4e-8a0f16de989e,AUTHORIZATION,,true 49135,dd6b8071-d715-4789-bc4e-8a0f16de989e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49136,dd6b8071-d715-4789-bc4e-8a0f16de989e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49137,dd6b8071-d715-4789-bc4e-8a0f16de989e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49138,c5e90202-726c-4682-9c0b-cb1511beb961,LIST_ACCOUNTS,hbciListAccounts,false -49139,c5e90202-726c-4682-9c0b-cb1511beb961,LIST_TRANSACTIONS,hbciListTransactions,false -49140,c5e90202-726c-4682-9c0b-cb1511beb961,AUTHORIZATION,,false -49141,c5e90202-726c-4682-9c0b-cb1511beb961,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49142,c5e90202-726c-4682-9c0b-cb1511beb961,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49143,c5e90202-726c-4682-9c0b-cb1511beb961,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49138,a5b76832-ece7-47ef-8911-fc1a589fb6ec,LIST_ACCOUNTS,hbciListAccounts,false +49139,a5b76832-ece7-47ef-8911-fc1a589fb6ec,LIST_TRANSACTIONS,hbciListTransactions,false +49140,a5b76832-ece7-47ef-8911-fc1a589fb6ec,AUTHORIZATION,,false +49141,a5b76832-ece7-47ef-8911-fc1a589fb6ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49142,a5b76832-ece7-47ef-8911-fc1a589fb6ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49143,a5b76832-ece7-47ef-8911-fc1a589fb6ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49144,5bd0ec79-d726-41b7-b8c9-0ccbde105cf0,LIST_ACCOUNTS,xs2aListAccounts,true -49145,5bd0ec79-d726-41b7-b8c9-0ccbde105cf0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49145,5bd0ec79-d726-41b7-b8c9-0ccbde105cf0,LIST_TRANSACTIONS,xs2aListTransactions,true 49146,5bd0ec79-d726-41b7-b8c9-0ccbde105cf0,AUTHORIZATION,,true 49147,5bd0ec79-d726-41b7-b8c9-0ccbde105cf0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49148,5bd0ec79-d726-41b7-b8c9-0ccbde105cf0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49149,5bd0ec79-d726-41b7-b8c9-0ccbde105cf0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49150,1024066c-67aa-49f7-a8a1-4a063d45152f,LIST_ACCOUNTS,hbciListAccounts,false -49151,1024066c-67aa-49f7-a8a1-4a063d45152f,LIST_TRANSACTIONS,hbciListTransactions,false -49152,1024066c-67aa-49f7-a8a1-4a063d45152f,AUTHORIZATION,,false -49153,1024066c-67aa-49f7-a8a1-4a063d45152f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49154,1024066c-67aa-49f7-a8a1-4a063d45152f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49155,1024066c-67aa-49f7-a8a1-4a063d45152f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49150,6168d654-cf8d-4c01-bfda-d236df3ef78d,LIST_ACCOUNTS,hbciListAccounts,false +49151,6168d654-cf8d-4c01-bfda-d236df3ef78d,LIST_TRANSACTIONS,hbciListTransactions,false +49152,6168d654-cf8d-4c01-bfda-d236df3ef78d,AUTHORIZATION,,false +49153,6168d654-cf8d-4c01-bfda-d236df3ef78d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49154,6168d654-cf8d-4c01-bfda-d236df3ef78d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49155,6168d654-cf8d-4c01-bfda-d236df3ef78d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49156,4f0ad327-ac27-42f2-8701-d00cf6cb2ee8,LIST_ACCOUNTS,xs2aListAccounts,true -49157,4f0ad327-ac27-42f2-8701-d00cf6cb2ee8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49157,4f0ad327-ac27-42f2-8701-d00cf6cb2ee8,LIST_TRANSACTIONS,xs2aListTransactions,true 49158,4f0ad327-ac27-42f2-8701-d00cf6cb2ee8,AUTHORIZATION,,true 49159,4f0ad327-ac27-42f2-8701-d00cf6cb2ee8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49160,4f0ad327-ac27-42f2-8701-d00cf6cb2ee8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49161,4f0ad327-ac27-42f2-8701-d00cf6cb2ee8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49162,565914a7-2a15-4367-8a93-308be82052b8,LIST_ACCOUNTS,hbciListAccounts,false -49163,565914a7-2a15-4367-8a93-308be82052b8,LIST_TRANSACTIONS,hbciListTransactions,false -49164,565914a7-2a15-4367-8a93-308be82052b8,AUTHORIZATION,,false -49165,565914a7-2a15-4367-8a93-308be82052b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49166,565914a7-2a15-4367-8a93-308be82052b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49167,565914a7-2a15-4367-8a93-308be82052b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49162,5e2d2c3c-ac64-4ab8-b366-fa48ee5bd8e0,LIST_ACCOUNTS,hbciListAccounts,false +49163,5e2d2c3c-ac64-4ab8-b366-fa48ee5bd8e0,LIST_TRANSACTIONS,hbciListTransactions,false +49164,5e2d2c3c-ac64-4ab8-b366-fa48ee5bd8e0,AUTHORIZATION,,false +49165,5e2d2c3c-ac64-4ab8-b366-fa48ee5bd8e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49166,5e2d2c3c-ac64-4ab8-b366-fa48ee5bd8e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49167,5e2d2c3c-ac64-4ab8-b366-fa48ee5bd8e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49168,0c90f4de-3137-4eb9-81cb-b14fc80c269e,LIST_ACCOUNTS,xs2aListAccounts,true -49169,0c90f4de-3137-4eb9-81cb-b14fc80c269e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49169,0c90f4de-3137-4eb9-81cb-b14fc80c269e,LIST_TRANSACTIONS,xs2aListTransactions,true 49170,0c90f4de-3137-4eb9-81cb-b14fc80c269e,AUTHORIZATION,,true 49171,0c90f4de-3137-4eb9-81cb-b14fc80c269e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49172,0c90f4de-3137-4eb9-81cb-b14fc80c269e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49173,0c90f4de-3137-4eb9-81cb-b14fc80c269e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49174,1739e5ef-1aab-4edc-9675-241c87fe796d,LIST_ACCOUNTS,hbciListAccounts,false -49175,1739e5ef-1aab-4edc-9675-241c87fe796d,LIST_TRANSACTIONS,hbciListTransactions,false -49176,1739e5ef-1aab-4edc-9675-241c87fe796d,AUTHORIZATION,,false -49177,1739e5ef-1aab-4edc-9675-241c87fe796d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49178,1739e5ef-1aab-4edc-9675-241c87fe796d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49179,1739e5ef-1aab-4edc-9675-241c87fe796d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49174,d812e070-5ccb-4d15-abcc-dedb7ea77e6a,LIST_ACCOUNTS,hbciListAccounts,false +49175,d812e070-5ccb-4d15-abcc-dedb7ea77e6a,LIST_TRANSACTIONS,hbciListTransactions,false +49176,d812e070-5ccb-4d15-abcc-dedb7ea77e6a,AUTHORIZATION,,false +49177,d812e070-5ccb-4d15-abcc-dedb7ea77e6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49178,d812e070-5ccb-4d15-abcc-dedb7ea77e6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49179,d812e070-5ccb-4d15-abcc-dedb7ea77e6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49180,d454e26b-41ed-4a85-be6e-8e5a61e09aaf,LIST_ACCOUNTS,xs2aListAccounts,true -49181,d454e26b-41ed-4a85-be6e-8e5a61e09aaf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49181,d454e26b-41ed-4a85-be6e-8e5a61e09aaf,LIST_TRANSACTIONS,xs2aListTransactions,true 49182,d454e26b-41ed-4a85-be6e-8e5a61e09aaf,AUTHORIZATION,,true 49183,d454e26b-41ed-4a85-be6e-8e5a61e09aaf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49184,d454e26b-41ed-4a85-be6e-8e5a61e09aaf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49185,d454e26b-41ed-4a85-be6e-8e5a61e09aaf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49186,88063aa9-ae89-4595-900f-116247c07c03,LIST_ACCOUNTS,hbciListAccounts,false -49187,88063aa9-ae89-4595-900f-116247c07c03,LIST_TRANSACTIONS,hbciListTransactions,false -49188,88063aa9-ae89-4595-900f-116247c07c03,AUTHORIZATION,,false -49189,88063aa9-ae89-4595-900f-116247c07c03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49190,88063aa9-ae89-4595-900f-116247c07c03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49191,88063aa9-ae89-4595-900f-116247c07c03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49186,ec74a931-ae85-429a-a674-1d353b57608a,LIST_ACCOUNTS,hbciListAccounts,false +49187,ec74a931-ae85-429a-a674-1d353b57608a,LIST_TRANSACTIONS,hbciListTransactions,false +49188,ec74a931-ae85-429a-a674-1d353b57608a,AUTHORIZATION,,false +49189,ec74a931-ae85-429a-a674-1d353b57608a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49190,ec74a931-ae85-429a-a674-1d353b57608a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49191,ec74a931-ae85-429a-a674-1d353b57608a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49192,fc3220b2-01b2-4b8f-afbd-3cd1ed174801,LIST_ACCOUNTS,xs2aListAccounts,true -49193,fc3220b2-01b2-4b8f-afbd-3cd1ed174801,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49193,fc3220b2-01b2-4b8f-afbd-3cd1ed174801,LIST_TRANSACTIONS,xs2aListTransactions,true 49194,fc3220b2-01b2-4b8f-afbd-3cd1ed174801,AUTHORIZATION,,true 49195,fc3220b2-01b2-4b8f-afbd-3cd1ed174801,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49196,fc3220b2-01b2-4b8f-afbd-3cd1ed174801,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49197,fc3220b2-01b2-4b8f-afbd-3cd1ed174801,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49198,c9b6f7f0-1948-43b2-ae22-04200f1944c3,LIST_ACCOUNTS,hbciListAccounts,false -49199,c9b6f7f0-1948-43b2-ae22-04200f1944c3,LIST_TRANSACTIONS,hbciListTransactions,false -49200,c9b6f7f0-1948-43b2-ae22-04200f1944c3,AUTHORIZATION,,false -49201,c9b6f7f0-1948-43b2-ae22-04200f1944c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49202,c9b6f7f0-1948-43b2-ae22-04200f1944c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49203,c9b6f7f0-1948-43b2-ae22-04200f1944c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49198,5426a4c0-84c3-44fb-b404-ff0915061d90,LIST_ACCOUNTS,hbciListAccounts,false +49199,5426a4c0-84c3-44fb-b404-ff0915061d90,LIST_TRANSACTIONS,hbciListTransactions,false +49200,5426a4c0-84c3-44fb-b404-ff0915061d90,AUTHORIZATION,,false +49201,5426a4c0-84c3-44fb-b404-ff0915061d90,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49202,5426a4c0-84c3-44fb-b404-ff0915061d90,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49203,5426a4c0-84c3-44fb-b404-ff0915061d90,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49204,3daaf7e1-f774-47c5-b26e-9ea326e569ae,LIST_ACCOUNTS,xs2aListAccounts,true -49205,3daaf7e1-f774-47c5-b26e-9ea326e569ae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49205,3daaf7e1-f774-47c5-b26e-9ea326e569ae,LIST_TRANSACTIONS,xs2aListTransactions,true 49206,3daaf7e1-f774-47c5-b26e-9ea326e569ae,AUTHORIZATION,,true 49207,3daaf7e1-f774-47c5-b26e-9ea326e569ae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49208,3daaf7e1-f774-47c5-b26e-9ea326e569ae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49209,3daaf7e1-f774-47c5-b26e-9ea326e569ae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49210,94807ce1-f72b-4759-8107-c145bfded42e,LIST_ACCOUNTS,hbciListAccounts,false -49211,94807ce1-f72b-4759-8107-c145bfded42e,LIST_TRANSACTIONS,hbciListTransactions,false -49212,94807ce1-f72b-4759-8107-c145bfded42e,AUTHORIZATION,,false -49213,94807ce1-f72b-4759-8107-c145bfded42e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49214,94807ce1-f72b-4759-8107-c145bfded42e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49215,94807ce1-f72b-4759-8107-c145bfded42e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49210,a3874150-f374-44e2-b9c3-c40050cd8670,LIST_ACCOUNTS,hbciListAccounts,false +49211,a3874150-f374-44e2-b9c3-c40050cd8670,LIST_TRANSACTIONS,hbciListTransactions,false +49212,a3874150-f374-44e2-b9c3-c40050cd8670,AUTHORIZATION,,false +49213,a3874150-f374-44e2-b9c3-c40050cd8670,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49214,a3874150-f374-44e2-b9c3-c40050cd8670,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49215,a3874150-f374-44e2-b9c3-c40050cd8670,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49216,2f23bd43-c938-49e6-b45a-ab872ca60feb,LIST_ACCOUNTS,xs2aListAccounts,true -49217,2f23bd43-c938-49e6-b45a-ab872ca60feb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49217,2f23bd43-c938-49e6-b45a-ab872ca60feb,LIST_TRANSACTIONS,xs2aListTransactions,true 49218,2f23bd43-c938-49e6-b45a-ab872ca60feb,AUTHORIZATION,,true 49219,2f23bd43-c938-49e6-b45a-ab872ca60feb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49220,2f23bd43-c938-49e6-b45a-ab872ca60feb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49221,2f23bd43-c938-49e6-b45a-ab872ca60feb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49222,f81ee3e5-cd0e-4d42-a4b0-bb118cd51991,LIST_ACCOUNTS,hbciListAccounts,false -49223,f81ee3e5-cd0e-4d42-a4b0-bb118cd51991,LIST_TRANSACTIONS,hbciListTransactions,false -49224,f81ee3e5-cd0e-4d42-a4b0-bb118cd51991,AUTHORIZATION,,false -49225,f81ee3e5-cd0e-4d42-a4b0-bb118cd51991,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49226,f81ee3e5-cd0e-4d42-a4b0-bb118cd51991,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49227,f81ee3e5-cd0e-4d42-a4b0-bb118cd51991,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49222,34815d04-066a-4fd7-8c52-86ae2a45da7f,LIST_ACCOUNTS,hbciListAccounts,false +49223,34815d04-066a-4fd7-8c52-86ae2a45da7f,LIST_TRANSACTIONS,hbciListTransactions,false +49224,34815d04-066a-4fd7-8c52-86ae2a45da7f,AUTHORIZATION,,false +49225,34815d04-066a-4fd7-8c52-86ae2a45da7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49226,34815d04-066a-4fd7-8c52-86ae2a45da7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49227,34815d04-066a-4fd7-8c52-86ae2a45da7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49228,4b2ea979-81da-4ec5-bb22-9e6c07556b16,LIST_ACCOUNTS,xs2aListAccounts,true -49229,4b2ea979-81da-4ec5-bb22-9e6c07556b16,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49229,4b2ea979-81da-4ec5-bb22-9e6c07556b16,LIST_TRANSACTIONS,xs2aListTransactions,true 49230,4b2ea979-81da-4ec5-bb22-9e6c07556b16,AUTHORIZATION,,true 49231,4b2ea979-81da-4ec5-bb22-9e6c07556b16,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49232,4b2ea979-81da-4ec5-bb22-9e6c07556b16,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49233,4b2ea979-81da-4ec5-bb22-9e6c07556b16,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49234,04c7b844-6cf2-4ed0-810b-f8a174d9ed5c,LIST_ACCOUNTS,hbciListAccounts,false -49235,04c7b844-6cf2-4ed0-810b-f8a174d9ed5c,LIST_TRANSACTIONS,hbciListTransactions,false -49236,04c7b844-6cf2-4ed0-810b-f8a174d9ed5c,AUTHORIZATION,,false -49237,04c7b844-6cf2-4ed0-810b-f8a174d9ed5c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49238,04c7b844-6cf2-4ed0-810b-f8a174d9ed5c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49239,04c7b844-6cf2-4ed0-810b-f8a174d9ed5c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49234,b2af8fb5-9c50-4f0e-aece-31a14b2eea83,LIST_ACCOUNTS,hbciListAccounts,false +49235,b2af8fb5-9c50-4f0e-aece-31a14b2eea83,LIST_TRANSACTIONS,hbciListTransactions,false +49236,b2af8fb5-9c50-4f0e-aece-31a14b2eea83,AUTHORIZATION,,false +49237,b2af8fb5-9c50-4f0e-aece-31a14b2eea83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49238,b2af8fb5-9c50-4f0e-aece-31a14b2eea83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49239,b2af8fb5-9c50-4f0e-aece-31a14b2eea83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49240,dfa00a41-3f96-49ee-855d-8faa9774288b,LIST_ACCOUNTS,xs2aListAccounts,true -49241,dfa00a41-3f96-49ee-855d-8faa9774288b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49241,dfa00a41-3f96-49ee-855d-8faa9774288b,LIST_TRANSACTIONS,xs2aListTransactions,true 49242,dfa00a41-3f96-49ee-855d-8faa9774288b,AUTHORIZATION,,true 49243,dfa00a41-3f96-49ee-855d-8faa9774288b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49244,dfa00a41-3f96-49ee-855d-8faa9774288b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49245,dfa00a41-3f96-49ee-855d-8faa9774288b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49246,2de7dda3-ebf4-4eff-a30d-7627d4c3bca0,LIST_ACCOUNTS,hbciListAccounts,false -49247,2de7dda3-ebf4-4eff-a30d-7627d4c3bca0,LIST_TRANSACTIONS,hbciListTransactions,false -49248,2de7dda3-ebf4-4eff-a30d-7627d4c3bca0,AUTHORIZATION,,false -49249,2de7dda3-ebf4-4eff-a30d-7627d4c3bca0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49250,2de7dda3-ebf4-4eff-a30d-7627d4c3bca0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49251,2de7dda3-ebf4-4eff-a30d-7627d4c3bca0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49246,79fa6b61-34a4-4085-a770-78e834a82ce0,LIST_ACCOUNTS,hbciListAccounts,false +49247,79fa6b61-34a4-4085-a770-78e834a82ce0,LIST_TRANSACTIONS,hbciListTransactions,false +49248,79fa6b61-34a4-4085-a770-78e834a82ce0,AUTHORIZATION,,false +49249,79fa6b61-34a4-4085-a770-78e834a82ce0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49250,79fa6b61-34a4-4085-a770-78e834a82ce0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49251,79fa6b61-34a4-4085-a770-78e834a82ce0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49252,91d10225-f393-40e2-90be-92df43581068,LIST_ACCOUNTS,xs2aListAccounts,true -49253,91d10225-f393-40e2-90be-92df43581068,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49253,91d10225-f393-40e2-90be-92df43581068,LIST_TRANSACTIONS,xs2aListTransactions,true 49254,91d10225-f393-40e2-90be-92df43581068,AUTHORIZATION,,true 49255,91d10225-f393-40e2-90be-92df43581068,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49256,91d10225-f393-40e2-90be-92df43581068,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49257,91d10225-f393-40e2-90be-92df43581068,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49258,cc71b9d9-9f69-4b4d-8b36-bba975d61a41,LIST_ACCOUNTS,hbciListAccounts,false -49259,cc71b9d9-9f69-4b4d-8b36-bba975d61a41,LIST_TRANSACTIONS,hbciListTransactions,false -49260,cc71b9d9-9f69-4b4d-8b36-bba975d61a41,AUTHORIZATION,,false -49261,cc71b9d9-9f69-4b4d-8b36-bba975d61a41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49262,cc71b9d9-9f69-4b4d-8b36-bba975d61a41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49263,cc71b9d9-9f69-4b4d-8b36-bba975d61a41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49258,745dbfa8-7ca1-4e4f-b70c-196a9afb4081,LIST_ACCOUNTS,hbciListAccounts,false +49259,745dbfa8-7ca1-4e4f-b70c-196a9afb4081,LIST_TRANSACTIONS,hbciListTransactions,false +49260,745dbfa8-7ca1-4e4f-b70c-196a9afb4081,AUTHORIZATION,,false +49261,745dbfa8-7ca1-4e4f-b70c-196a9afb4081,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49262,745dbfa8-7ca1-4e4f-b70c-196a9afb4081,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49263,745dbfa8-7ca1-4e4f-b70c-196a9afb4081,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49264,c75b09b0-3511-426e-b3ec-45c86d187791,LIST_ACCOUNTS,xs2aListAccounts,true -49265,c75b09b0-3511-426e-b3ec-45c86d187791,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49265,c75b09b0-3511-426e-b3ec-45c86d187791,LIST_TRANSACTIONS,xs2aListTransactions,true 49266,c75b09b0-3511-426e-b3ec-45c86d187791,AUTHORIZATION,,true 49267,c75b09b0-3511-426e-b3ec-45c86d187791,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49268,c75b09b0-3511-426e-b3ec-45c86d187791,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49269,c75b09b0-3511-426e-b3ec-45c86d187791,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49270,de580965-a1fe-4758-9690-5b63cb6498b0,LIST_ACCOUNTS,hbciListAccounts,false -49271,de580965-a1fe-4758-9690-5b63cb6498b0,LIST_TRANSACTIONS,hbciListTransactions,false -49272,de580965-a1fe-4758-9690-5b63cb6498b0,AUTHORIZATION,,false -49273,de580965-a1fe-4758-9690-5b63cb6498b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49274,de580965-a1fe-4758-9690-5b63cb6498b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49275,de580965-a1fe-4758-9690-5b63cb6498b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49270,b5970d23-8d60-45da-85b3-a66746d3923d,LIST_ACCOUNTS,hbciListAccounts,false +49271,b5970d23-8d60-45da-85b3-a66746d3923d,LIST_TRANSACTIONS,hbciListTransactions,false +49272,b5970d23-8d60-45da-85b3-a66746d3923d,AUTHORIZATION,,false +49273,b5970d23-8d60-45da-85b3-a66746d3923d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49274,b5970d23-8d60-45da-85b3-a66746d3923d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49275,b5970d23-8d60-45da-85b3-a66746d3923d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49276,342f5163-f279-4491-9958-d7a8cb2d6bd6,LIST_ACCOUNTS,xs2aListAccounts,true -49277,342f5163-f279-4491-9958-d7a8cb2d6bd6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49277,342f5163-f279-4491-9958-d7a8cb2d6bd6,LIST_TRANSACTIONS,xs2aListTransactions,true 49278,342f5163-f279-4491-9958-d7a8cb2d6bd6,AUTHORIZATION,,true 49279,342f5163-f279-4491-9958-d7a8cb2d6bd6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49280,342f5163-f279-4491-9958-d7a8cb2d6bd6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49281,342f5163-f279-4491-9958-d7a8cb2d6bd6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49282,25e6c1b9-95d7-4d43-9432-2414d3dd3675,LIST_ACCOUNTS,hbciListAccounts,false -49283,25e6c1b9-95d7-4d43-9432-2414d3dd3675,LIST_TRANSACTIONS,hbciListTransactions,false -49284,25e6c1b9-95d7-4d43-9432-2414d3dd3675,AUTHORIZATION,,false -49285,25e6c1b9-95d7-4d43-9432-2414d3dd3675,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49286,25e6c1b9-95d7-4d43-9432-2414d3dd3675,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49287,25e6c1b9-95d7-4d43-9432-2414d3dd3675,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49282,d5c7e6ba-f34a-49d7-815f-602dbb1c337b,LIST_ACCOUNTS,hbciListAccounts,false +49283,d5c7e6ba-f34a-49d7-815f-602dbb1c337b,LIST_TRANSACTIONS,hbciListTransactions,false +49284,d5c7e6ba-f34a-49d7-815f-602dbb1c337b,AUTHORIZATION,,false +49285,d5c7e6ba-f34a-49d7-815f-602dbb1c337b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49286,d5c7e6ba-f34a-49d7-815f-602dbb1c337b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49287,d5c7e6ba-f34a-49d7-815f-602dbb1c337b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49288,83403446-5611-4337-9bca-88b0dc32a536,LIST_ACCOUNTS,xs2aListAccounts,true -49289,83403446-5611-4337-9bca-88b0dc32a536,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49289,83403446-5611-4337-9bca-88b0dc32a536,LIST_TRANSACTIONS,xs2aListTransactions,true 49290,83403446-5611-4337-9bca-88b0dc32a536,AUTHORIZATION,,true 49291,83403446-5611-4337-9bca-88b0dc32a536,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49292,83403446-5611-4337-9bca-88b0dc32a536,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49293,83403446-5611-4337-9bca-88b0dc32a536,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49294,1b08f3e8-01fd-4e31-a3b4-252d28942ebe,LIST_ACCOUNTS,hbciListAccounts,false -49295,1b08f3e8-01fd-4e31-a3b4-252d28942ebe,LIST_TRANSACTIONS,hbciListTransactions,false -49296,1b08f3e8-01fd-4e31-a3b4-252d28942ebe,AUTHORIZATION,,false -49297,1b08f3e8-01fd-4e31-a3b4-252d28942ebe,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49298,1b08f3e8-01fd-4e31-a3b4-252d28942ebe,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49299,1b08f3e8-01fd-4e31-a3b4-252d28942ebe,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49294,f9e04519-3284-4754-bd5c-8d0edca7f224,LIST_ACCOUNTS,hbciListAccounts,false +49295,f9e04519-3284-4754-bd5c-8d0edca7f224,LIST_TRANSACTIONS,hbciListTransactions,false +49296,f9e04519-3284-4754-bd5c-8d0edca7f224,AUTHORIZATION,,false +49297,f9e04519-3284-4754-bd5c-8d0edca7f224,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49298,f9e04519-3284-4754-bd5c-8d0edca7f224,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49299,f9e04519-3284-4754-bd5c-8d0edca7f224,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49300,0024373b-5eda-4ac9-95e1-284bc005a6bc,LIST_ACCOUNTS,xs2aListAccounts,true -49301,0024373b-5eda-4ac9-95e1-284bc005a6bc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49301,0024373b-5eda-4ac9-95e1-284bc005a6bc,LIST_TRANSACTIONS,xs2aListTransactions,true 49302,0024373b-5eda-4ac9-95e1-284bc005a6bc,AUTHORIZATION,,true 49303,0024373b-5eda-4ac9-95e1-284bc005a6bc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49304,0024373b-5eda-4ac9-95e1-284bc005a6bc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49305,0024373b-5eda-4ac9-95e1-284bc005a6bc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49306,32c6bc5d-863b-4189-8ad4-4e50326802d0,LIST_ACCOUNTS,hbciListAccounts,false -49307,32c6bc5d-863b-4189-8ad4-4e50326802d0,LIST_TRANSACTIONS,hbciListTransactions,false -49308,32c6bc5d-863b-4189-8ad4-4e50326802d0,AUTHORIZATION,,false -49309,32c6bc5d-863b-4189-8ad4-4e50326802d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49310,32c6bc5d-863b-4189-8ad4-4e50326802d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49311,32c6bc5d-863b-4189-8ad4-4e50326802d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49306,d6177c97-01fb-4bcc-b434-64fbf91bc0e0,LIST_ACCOUNTS,hbciListAccounts,false +49307,d6177c97-01fb-4bcc-b434-64fbf91bc0e0,LIST_TRANSACTIONS,hbciListTransactions,false +49308,d6177c97-01fb-4bcc-b434-64fbf91bc0e0,AUTHORIZATION,,false +49309,d6177c97-01fb-4bcc-b434-64fbf91bc0e0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49310,d6177c97-01fb-4bcc-b434-64fbf91bc0e0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49311,d6177c97-01fb-4bcc-b434-64fbf91bc0e0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49312,255727b0-5e23-4319-bede-675e24ca3065,LIST_ACCOUNTS,xs2aListAccounts,true -49313,255727b0-5e23-4319-bede-675e24ca3065,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49313,255727b0-5e23-4319-bede-675e24ca3065,LIST_TRANSACTIONS,xs2aListTransactions,true 49314,255727b0-5e23-4319-bede-675e24ca3065,AUTHORIZATION,,true 49315,255727b0-5e23-4319-bede-675e24ca3065,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49316,255727b0-5e23-4319-bede-675e24ca3065,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49317,255727b0-5e23-4319-bede-675e24ca3065,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49318,7229a7d3-2c37-43c9-8cd6-554d6bc9416d,LIST_ACCOUNTS,hbciListAccounts,false -49319,7229a7d3-2c37-43c9-8cd6-554d6bc9416d,LIST_TRANSACTIONS,hbciListTransactions,false -49320,7229a7d3-2c37-43c9-8cd6-554d6bc9416d,AUTHORIZATION,,false -49321,7229a7d3-2c37-43c9-8cd6-554d6bc9416d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49322,7229a7d3-2c37-43c9-8cd6-554d6bc9416d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49323,7229a7d3-2c37-43c9-8cd6-554d6bc9416d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49318,b5276d9e-613c-4a18-ba55-52d0a0024266,LIST_ACCOUNTS,hbciListAccounts,false +49319,b5276d9e-613c-4a18-ba55-52d0a0024266,LIST_TRANSACTIONS,hbciListTransactions,false +49320,b5276d9e-613c-4a18-ba55-52d0a0024266,AUTHORIZATION,,false +49321,b5276d9e-613c-4a18-ba55-52d0a0024266,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49322,b5276d9e-613c-4a18-ba55-52d0a0024266,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49323,b5276d9e-613c-4a18-ba55-52d0a0024266,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49324,8d8ac27c-d326-4939-92d9-4b1626cb8336,LIST_ACCOUNTS,xs2aListAccounts,true -49325,8d8ac27c-d326-4939-92d9-4b1626cb8336,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49325,8d8ac27c-d326-4939-92d9-4b1626cb8336,LIST_TRANSACTIONS,xs2aListTransactions,true 49326,8d8ac27c-d326-4939-92d9-4b1626cb8336,AUTHORIZATION,,true 49327,8d8ac27c-d326-4939-92d9-4b1626cb8336,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49328,8d8ac27c-d326-4939-92d9-4b1626cb8336,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49329,8d8ac27c-d326-4939-92d9-4b1626cb8336,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49330,6ed837b7-9bcf-4d23-98ff-9974615f3a88,LIST_ACCOUNTS,hbciListAccounts,false -49331,6ed837b7-9bcf-4d23-98ff-9974615f3a88,LIST_TRANSACTIONS,hbciListTransactions,false -49332,6ed837b7-9bcf-4d23-98ff-9974615f3a88,AUTHORIZATION,,false -49333,6ed837b7-9bcf-4d23-98ff-9974615f3a88,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49334,6ed837b7-9bcf-4d23-98ff-9974615f3a88,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49335,6ed837b7-9bcf-4d23-98ff-9974615f3a88,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49330,ce7fc944-44a8-45de-97ed-5860d8ef6932,LIST_ACCOUNTS,hbciListAccounts,false +49331,ce7fc944-44a8-45de-97ed-5860d8ef6932,LIST_TRANSACTIONS,hbciListTransactions,false +49332,ce7fc944-44a8-45de-97ed-5860d8ef6932,AUTHORIZATION,,false +49333,ce7fc944-44a8-45de-97ed-5860d8ef6932,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49334,ce7fc944-44a8-45de-97ed-5860d8ef6932,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49335,ce7fc944-44a8-45de-97ed-5860d8ef6932,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49336,60a3a6c3-2f72-4305-8add-15c4dda00fff,LIST_ACCOUNTS,xs2aListAccounts,true -49337,60a3a6c3-2f72-4305-8add-15c4dda00fff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49337,60a3a6c3-2f72-4305-8add-15c4dda00fff,LIST_TRANSACTIONS,xs2aListTransactions,true 49338,60a3a6c3-2f72-4305-8add-15c4dda00fff,AUTHORIZATION,,true 49339,60a3a6c3-2f72-4305-8add-15c4dda00fff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49340,60a3a6c3-2f72-4305-8add-15c4dda00fff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49341,60a3a6c3-2f72-4305-8add-15c4dda00fff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49342,a192e028-fd11-4e7f-a6c4-fc93be703716,LIST_ACCOUNTS,hbciListAccounts,false -49343,a192e028-fd11-4e7f-a6c4-fc93be703716,LIST_TRANSACTIONS,hbciListTransactions,false -49344,a192e028-fd11-4e7f-a6c4-fc93be703716,AUTHORIZATION,,false -49345,a192e028-fd11-4e7f-a6c4-fc93be703716,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49346,a192e028-fd11-4e7f-a6c4-fc93be703716,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49347,a192e028-fd11-4e7f-a6c4-fc93be703716,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49342,7e96a631-7ad6-40ea-839d-e167c7466465,LIST_ACCOUNTS,hbciListAccounts,false +49343,7e96a631-7ad6-40ea-839d-e167c7466465,LIST_TRANSACTIONS,hbciListTransactions,false +49344,7e96a631-7ad6-40ea-839d-e167c7466465,AUTHORIZATION,,false +49345,7e96a631-7ad6-40ea-839d-e167c7466465,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49346,7e96a631-7ad6-40ea-839d-e167c7466465,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49347,7e96a631-7ad6-40ea-839d-e167c7466465,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49348,e9e224c8-186c-4297-9b7c-6ab261c29cfe,LIST_ACCOUNTS,xs2aListAccounts,true -49349,e9e224c8-186c-4297-9b7c-6ab261c29cfe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49349,e9e224c8-186c-4297-9b7c-6ab261c29cfe,LIST_TRANSACTIONS,xs2aListTransactions,true 49350,e9e224c8-186c-4297-9b7c-6ab261c29cfe,AUTHORIZATION,,true 49351,e9e224c8-186c-4297-9b7c-6ab261c29cfe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49352,e9e224c8-186c-4297-9b7c-6ab261c29cfe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49353,e9e224c8-186c-4297-9b7c-6ab261c29cfe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49354,71feda45-5147-466a-9928-5d9cada01ca7,LIST_ACCOUNTS,hbciListAccounts,false -49355,71feda45-5147-466a-9928-5d9cada01ca7,LIST_TRANSACTIONS,hbciListTransactions,false -49356,71feda45-5147-466a-9928-5d9cada01ca7,AUTHORIZATION,,false -49357,71feda45-5147-466a-9928-5d9cada01ca7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49358,71feda45-5147-466a-9928-5d9cada01ca7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49359,71feda45-5147-466a-9928-5d9cada01ca7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49354,b83da4ad-78eb-4c1a-9596-374195f061ec,LIST_ACCOUNTS,hbciListAccounts,false +49355,b83da4ad-78eb-4c1a-9596-374195f061ec,LIST_TRANSACTIONS,hbciListTransactions,false +49356,b83da4ad-78eb-4c1a-9596-374195f061ec,AUTHORIZATION,,false +49357,b83da4ad-78eb-4c1a-9596-374195f061ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49358,b83da4ad-78eb-4c1a-9596-374195f061ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49359,b83da4ad-78eb-4c1a-9596-374195f061ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49360,7c2ee156-dd39-4863-b20c-6e3849aac14b,LIST_ACCOUNTS,xs2aListAccounts,true -49361,7c2ee156-dd39-4863-b20c-6e3849aac14b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49361,7c2ee156-dd39-4863-b20c-6e3849aac14b,LIST_TRANSACTIONS,xs2aListTransactions,true 49362,7c2ee156-dd39-4863-b20c-6e3849aac14b,AUTHORIZATION,,true 49363,7c2ee156-dd39-4863-b20c-6e3849aac14b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49364,7c2ee156-dd39-4863-b20c-6e3849aac14b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49365,7c2ee156-dd39-4863-b20c-6e3849aac14b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49366,158527b6-876a-4f97-8617-e6030d8e5312,LIST_ACCOUNTS,hbciListAccounts,false -49367,158527b6-876a-4f97-8617-e6030d8e5312,LIST_TRANSACTIONS,hbciListTransactions,false -49368,158527b6-876a-4f97-8617-e6030d8e5312,AUTHORIZATION,,false -49369,158527b6-876a-4f97-8617-e6030d8e5312,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49370,158527b6-876a-4f97-8617-e6030d8e5312,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49371,158527b6-876a-4f97-8617-e6030d8e5312,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49366,620c2fbb-5402-43bf-883e-bd042392c7a0,LIST_ACCOUNTS,hbciListAccounts,false +49367,620c2fbb-5402-43bf-883e-bd042392c7a0,LIST_TRANSACTIONS,hbciListTransactions,false +49368,620c2fbb-5402-43bf-883e-bd042392c7a0,AUTHORIZATION,,false +49369,620c2fbb-5402-43bf-883e-bd042392c7a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49370,620c2fbb-5402-43bf-883e-bd042392c7a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49371,620c2fbb-5402-43bf-883e-bd042392c7a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49372,25efe197-fadb-4eeb-8a07-09990cc6421c,LIST_ACCOUNTS,xs2aListAccounts,true -49373,25efe197-fadb-4eeb-8a07-09990cc6421c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49373,25efe197-fadb-4eeb-8a07-09990cc6421c,LIST_TRANSACTIONS,xs2aListTransactions,true 49374,25efe197-fadb-4eeb-8a07-09990cc6421c,AUTHORIZATION,,true 49375,25efe197-fadb-4eeb-8a07-09990cc6421c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49376,25efe197-fadb-4eeb-8a07-09990cc6421c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49377,25efe197-fadb-4eeb-8a07-09990cc6421c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49378,a624e3b8-56af-46df-be71-d1dca56a2228,LIST_ACCOUNTS,hbciListAccounts,false -49379,a624e3b8-56af-46df-be71-d1dca56a2228,LIST_TRANSACTIONS,hbciListTransactions,false -49380,a624e3b8-56af-46df-be71-d1dca56a2228,AUTHORIZATION,,false -49381,a624e3b8-56af-46df-be71-d1dca56a2228,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49382,a624e3b8-56af-46df-be71-d1dca56a2228,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49383,a624e3b8-56af-46df-be71-d1dca56a2228,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49378,e4428971-4463-48d7-abda-9e25865beabb,LIST_ACCOUNTS,hbciListAccounts,false +49379,e4428971-4463-48d7-abda-9e25865beabb,LIST_TRANSACTIONS,hbciListTransactions,false +49380,e4428971-4463-48d7-abda-9e25865beabb,AUTHORIZATION,,false +49381,e4428971-4463-48d7-abda-9e25865beabb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49382,e4428971-4463-48d7-abda-9e25865beabb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49383,e4428971-4463-48d7-abda-9e25865beabb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49384,f8ef5b5a-0e8e-4f84-a74d-fec855460318,LIST_ACCOUNTS,xs2aListAccounts,true -49385,f8ef5b5a-0e8e-4f84-a74d-fec855460318,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49385,f8ef5b5a-0e8e-4f84-a74d-fec855460318,LIST_TRANSACTIONS,xs2aListTransactions,true 49386,f8ef5b5a-0e8e-4f84-a74d-fec855460318,AUTHORIZATION,,true 49387,f8ef5b5a-0e8e-4f84-a74d-fec855460318,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49388,f8ef5b5a-0e8e-4f84-a74d-fec855460318,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49389,f8ef5b5a-0e8e-4f84-a74d-fec855460318,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49390,c2252f68-1e5a-44c5-beef-1b425fb1eb9d,LIST_ACCOUNTS,hbciListAccounts,false -49391,c2252f68-1e5a-44c5-beef-1b425fb1eb9d,LIST_TRANSACTIONS,hbciListTransactions,false -49392,c2252f68-1e5a-44c5-beef-1b425fb1eb9d,AUTHORIZATION,,false -49393,c2252f68-1e5a-44c5-beef-1b425fb1eb9d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49394,c2252f68-1e5a-44c5-beef-1b425fb1eb9d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49395,c2252f68-1e5a-44c5-beef-1b425fb1eb9d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49390,ce464405-efa0-4e4a-a023-07fa084416ea,LIST_ACCOUNTS,hbciListAccounts,false +49391,ce464405-efa0-4e4a-a023-07fa084416ea,LIST_TRANSACTIONS,hbciListTransactions,false +49392,ce464405-efa0-4e4a-a023-07fa084416ea,AUTHORIZATION,,false +49393,ce464405-efa0-4e4a-a023-07fa084416ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49394,ce464405-efa0-4e4a-a023-07fa084416ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49395,ce464405-efa0-4e4a-a023-07fa084416ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49396,31e9b880-1d2f-44fa-aad5-fcac582ade43,LIST_ACCOUNTS,xs2aListAccounts,true -49397,31e9b880-1d2f-44fa-aad5-fcac582ade43,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49397,31e9b880-1d2f-44fa-aad5-fcac582ade43,LIST_TRANSACTIONS,xs2aListTransactions,true 49398,31e9b880-1d2f-44fa-aad5-fcac582ade43,AUTHORIZATION,,true 49399,31e9b880-1d2f-44fa-aad5-fcac582ade43,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49400,31e9b880-1d2f-44fa-aad5-fcac582ade43,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49401,31e9b880-1d2f-44fa-aad5-fcac582ade43,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49402,0f90cf50-d712-4aeb-9a4f-86a4fa820364,LIST_ACCOUNTS,hbciListAccounts,false -49403,0f90cf50-d712-4aeb-9a4f-86a4fa820364,LIST_TRANSACTIONS,hbciListTransactions,false -49404,0f90cf50-d712-4aeb-9a4f-86a4fa820364,AUTHORIZATION,,false -49405,0f90cf50-d712-4aeb-9a4f-86a4fa820364,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49406,0f90cf50-d712-4aeb-9a4f-86a4fa820364,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49407,0f90cf50-d712-4aeb-9a4f-86a4fa820364,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49402,e08d12ca-66ed-42a0-9946-52205ae19617,LIST_ACCOUNTS,hbciListAccounts,false +49403,e08d12ca-66ed-42a0-9946-52205ae19617,LIST_TRANSACTIONS,hbciListTransactions,false +49404,e08d12ca-66ed-42a0-9946-52205ae19617,AUTHORIZATION,,false +49405,e08d12ca-66ed-42a0-9946-52205ae19617,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49406,e08d12ca-66ed-42a0-9946-52205ae19617,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49407,e08d12ca-66ed-42a0-9946-52205ae19617,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49408,033f827b-9cb9-42b5-b454-236318a5c806,LIST_ACCOUNTS,xs2aListAccounts,true -49409,033f827b-9cb9-42b5-b454-236318a5c806,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49409,033f827b-9cb9-42b5-b454-236318a5c806,LIST_TRANSACTIONS,xs2aListTransactions,true 49410,033f827b-9cb9-42b5-b454-236318a5c806,AUTHORIZATION,,true 49411,033f827b-9cb9-42b5-b454-236318a5c806,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49412,033f827b-9cb9-42b5-b454-236318a5c806,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49413,033f827b-9cb9-42b5-b454-236318a5c806,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49414,0f2ead3e-73a7-4629-980d-660b342efd95,LIST_ACCOUNTS,hbciListAccounts,false -49415,0f2ead3e-73a7-4629-980d-660b342efd95,LIST_TRANSACTIONS,hbciListTransactions,false -49416,0f2ead3e-73a7-4629-980d-660b342efd95,AUTHORIZATION,,false -49417,0f2ead3e-73a7-4629-980d-660b342efd95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49418,0f2ead3e-73a7-4629-980d-660b342efd95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49419,0f2ead3e-73a7-4629-980d-660b342efd95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49414,5e5f3e36-44bb-42e1-8b15-a2b3d95c0e01,LIST_ACCOUNTS,hbciListAccounts,false +49415,5e5f3e36-44bb-42e1-8b15-a2b3d95c0e01,LIST_TRANSACTIONS,hbciListTransactions,false +49416,5e5f3e36-44bb-42e1-8b15-a2b3d95c0e01,AUTHORIZATION,,false +49417,5e5f3e36-44bb-42e1-8b15-a2b3d95c0e01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49418,5e5f3e36-44bb-42e1-8b15-a2b3d95c0e01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49419,5e5f3e36-44bb-42e1-8b15-a2b3d95c0e01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49420,b4462982-a6f3-46de-aac7-6babe8f1b99d,LIST_ACCOUNTS,xs2aListAccounts,true -49421,b4462982-a6f3-46de-aac7-6babe8f1b99d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49421,b4462982-a6f3-46de-aac7-6babe8f1b99d,LIST_TRANSACTIONS,xs2aListTransactions,true 49422,b4462982-a6f3-46de-aac7-6babe8f1b99d,AUTHORIZATION,,true 49423,b4462982-a6f3-46de-aac7-6babe8f1b99d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49424,b4462982-a6f3-46de-aac7-6babe8f1b99d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49425,b4462982-a6f3-46de-aac7-6babe8f1b99d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49426,f086e737-e6bf-4cae-9382-8755ec32f135,LIST_ACCOUNTS,hbciListAccounts,false -49427,f086e737-e6bf-4cae-9382-8755ec32f135,LIST_TRANSACTIONS,hbciListTransactions,false -49428,f086e737-e6bf-4cae-9382-8755ec32f135,AUTHORIZATION,,false -49429,f086e737-e6bf-4cae-9382-8755ec32f135,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49430,f086e737-e6bf-4cae-9382-8755ec32f135,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49431,f086e737-e6bf-4cae-9382-8755ec32f135,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49426,4848ee32-a94a-42e0-8440-2b6810a27789,LIST_ACCOUNTS,hbciListAccounts,false +49427,4848ee32-a94a-42e0-8440-2b6810a27789,LIST_TRANSACTIONS,hbciListTransactions,false +49428,4848ee32-a94a-42e0-8440-2b6810a27789,AUTHORIZATION,,false +49429,4848ee32-a94a-42e0-8440-2b6810a27789,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49430,4848ee32-a94a-42e0-8440-2b6810a27789,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49431,4848ee32-a94a-42e0-8440-2b6810a27789,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49432,d09ed702-04e5-40e1-aff8-2b8acb67de8c,LIST_ACCOUNTS,xs2aListAccounts,true -49433,d09ed702-04e5-40e1-aff8-2b8acb67de8c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49433,d09ed702-04e5-40e1-aff8-2b8acb67de8c,LIST_TRANSACTIONS,xs2aListTransactions,true 49434,d09ed702-04e5-40e1-aff8-2b8acb67de8c,AUTHORIZATION,,true 49435,d09ed702-04e5-40e1-aff8-2b8acb67de8c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49436,d09ed702-04e5-40e1-aff8-2b8acb67de8c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49437,d09ed702-04e5-40e1-aff8-2b8acb67de8c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49438,4339d08a-ffd2-4dfe-a550-b6348d0e23b2,LIST_ACCOUNTS,hbciListAccounts,false -49439,4339d08a-ffd2-4dfe-a550-b6348d0e23b2,LIST_TRANSACTIONS,hbciListTransactions,false -49440,4339d08a-ffd2-4dfe-a550-b6348d0e23b2,AUTHORIZATION,,false -49441,4339d08a-ffd2-4dfe-a550-b6348d0e23b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49442,4339d08a-ffd2-4dfe-a550-b6348d0e23b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49443,4339d08a-ffd2-4dfe-a550-b6348d0e23b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49438,a1bee668-62ec-4a62-bddc-124d9f6e595d,LIST_ACCOUNTS,hbciListAccounts,false +49439,a1bee668-62ec-4a62-bddc-124d9f6e595d,LIST_TRANSACTIONS,hbciListTransactions,false +49440,a1bee668-62ec-4a62-bddc-124d9f6e595d,AUTHORIZATION,,false +49441,a1bee668-62ec-4a62-bddc-124d9f6e595d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49442,a1bee668-62ec-4a62-bddc-124d9f6e595d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49443,a1bee668-62ec-4a62-bddc-124d9f6e595d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49444,d06a84ed-449b-41bf-bba5-f6db57d51e91,LIST_ACCOUNTS,xs2aListAccounts,true -49445,d06a84ed-449b-41bf-bba5-f6db57d51e91,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49445,d06a84ed-449b-41bf-bba5-f6db57d51e91,LIST_TRANSACTIONS,xs2aListTransactions,true 49446,d06a84ed-449b-41bf-bba5-f6db57d51e91,AUTHORIZATION,,true 49447,d06a84ed-449b-41bf-bba5-f6db57d51e91,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49448,d06a84ed-449b-41bf-bba5-f6db57d51e91,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49449,d06a84ed-449b-41bf-bba5-f6db57d51e91,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49450,4764520f-2dee-40e7-8526-83225197537b,LIST_ACCOUNTS,hbciListAccounts,false -49451,4764520f-2dee-40e7-8526-83225197537b,LIST_TRANSACTIONS,hbciListTransactions,false -49452,4764520f-2dee-40e7-8526-83225197537b,AUTHORIZATION,,false -49453,4764520f-2dee-40e7-8526-83225197537b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49454,4764520f-2dee-40e7-8526-83225197537b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49455,4764520f-2dee-40e7-8526-83225197537b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49450,b5a44de1-eac1-4eac-8a5a-040821e3688d,LIST_ACCOUNTS,hbciListAccounts,false +49451,b5a44de1-eac1-4eac-8a5a-040821e3688d,LIST_TRANSACTIONS,hbciListTransactions,false +49452,b5a44de1-eac1-4eac-8a5a-040821e3688d,AUTHORIZATION,,false +49453,b5a44de1-eac1-4eac-8a5a-040821e3688d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49454,b5a44de1-eac1-4eac-8a5a-040821e3688d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49455,b5a44de1-eac1-4eac-8a5a-040821e3688d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49456,86c83e3a-6a0b-431a-93bc-c816447914bd,LIST_ACCOUNTS,xs2aListAccounts,true -49457,86c83e3a-6a0b-431a-93bc-c816447914bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49457,86c83e3a-6a0b-431a-93bc-c816447914bd,LIST_TRANSACTIONS,xs2aListTransactions,true 49458,86c83e3a-6a0b-431a-93bc-c816447914bd,AUTHORIZATION,,true 49459,86c83e3a-6a0b-431a-93bc-c816447914bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49460,86c83e3a-6a0b-431a-93bc-c816447914bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49461,86c83e3a-6a0b-431a-93bc-c816447914bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49462,89f094c8-18dc-4e5a-bb0d-8d5158d977e6,LIST_ACCOUNTS,hbciListAccounts,false -49463,89f094c8-18dc-4e5a-bb0d-8d5158d977e6,LIST_TRANSACTIONS,hbciListTransactions,false -49464,89f094c8-18dc-4e5a-bb0d-8d5158d977e6,AUTHORIZATION,,false -49465,89f094c8-18dc-4e5a-bb0d-8d5158d977e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49466,89f094c8-18dc-4e5a-bb0d-8d5158d977e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49467,89f094c8-18dc-4e5a-bb0d-8d5158d977e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49462,e7965407-92bf-4425-b5b0-af5cbbba256b,LIST_ACCOUNTS,hbciListAccounts,false +49463,e7965407-92bf-4425-b5b0-af5cbbba256b,LIST_TRANSACTIONS,hbciListTransactions,false +49464,e7965407-92bf-4425-b5b0-af5cbbba256b,AUTHORIZATION,,false +49465,e7965407-92bf-4425-b5b0-af5cbbba256b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49466,e7965407-92bf-4425-b5b0-af5cbbba256b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49467,e7965407-92bf-4425-b5b0-af5cbbba256b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49468,6c090531-91b2-4666-88c7-d778653abfb7,LIST_ACCOUNTS,xs2aListAccounts,true -49469,6c090531-91b2-4666-88c7-d778653abfb7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49469,6c090531-91b2-4666-88c7-d778653abfb7,LIST_TRANSACTIONS,xs2aListTransactions,true 49470,6c090531-91b2-4666-88c7-d778653abfb7,AUTHORIZATION,,true 49471,6c090531-91b2-4666-88c7-d778653abfb7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49472,6c090531-91b2-4666-88c7-d778653abfb7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49473,6c090531-91b2-4666-88c7-d778653abfb7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49474,b1378a71-9ed6-45c0-bbe6-b9b6f87ef2c9,LIST_ACCOUNTS,hbciListAccounts,false -49475,b1378a71-9ed6-45c0-bbe6-b9b6f87ef2c9,LIST_TRANSACTIONS,hbciListTransactions,false -49476,b1378a71-9ed6-45c0-bbe6-b9b6f87ef2c9,AUTHORIZATION,,false -49477,b1378a71-9ed6-45c0-bbe6-b9b6f87ef2c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49478,b1378a71-9ed6-45c0-bbe6-b9b6f87ef2c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49479,b1378a71-9ed6-45c0-bbe6-b9b6f87ef2c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49474,faf031ee-6cc2-43a9-94c6-ef191fd8a002,LIST_ACCOUNTS,hbciListAccounts,false +49475,faf031ee-6cc2-43a9-94c6-ef191fd8a002,LIST_TRANSACTIONS,hbciListTransactions,false +49476,faf031ee-6cc2-43a9-94c6-ef191fd8a002,AUTHORIZATION,,false +49477,faf031ee-6cc2-43a9-94c6-ef191fd8a002,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49478,faf031ee-6cc2-43a9-94c6-ef191fd8a002,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49479,faf031ee-6cc2-43a9-94c6-ef191fd8a002,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49480,d5e7663c-011f-490c-9794-7f69d1ab66a6,LIST_ACCOUNTS,xs2aListAccounts,true -49481,d5e7663c-011f-490c-9794-7f69d1ab66a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49481,d5e7663c-011f-490c-9794-7f69d1ab66a6,LIST_TRANSACTIONS,xs2aListTransactions,true 49482,d5e7663c-011f-490c-9794-7f69d1ab66a6,AUTHORIZATION,,true 49483,d5e7663c-011f-490c-9794-7f69d1ab66a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49484,d5e7663c-011f-490c-9794-7f69d1ab66a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49485,d5e7663c-011f-490c-9794-7f69d1ab66a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49486,9a7d6449-0739-490b-b35b-c873dedad0ae,LIST_ACCOUNTS,hbciListAccounts,false -49487,9a7d6449-0739-490b-b35b-c873dedad0ae,LIST_TRANSACTIONS,hbciListTransactions,false -49488,9a7d6449-0739-490b-b35b-c873dedad0ae,AUTHORIZATION,,false -49489,9a7d6449-0739-490b-b35b-c873dedad0ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49490,9a7d6449-0739-490b-b35b-c873dedad0ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49491,9a7d6449-0739-490b-b35b-c873dedad0ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49486,8b8e46c0-c89f-4c14-9d03-66a45d722db5,LIST_ACCOUNTS,hbciListAccounts,false +49487,8b8e46c0-c89f-4c14-9d03-66a45d722db5,LIST_TRANSACTIONS,hbciListTransactions,false +49488,8b8e46c0-c89f-4c14-9d03-66a45d722db5,AUTHORIZATION,,false +49489,8b8e46c0-c89f-4c14-9d03-66a45d722db5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49490,8b8e46c0-c89f-4c14-9d03-66a45d722db5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49491,8b8e46c0-c89f-4c14-9d03-66a45d722db5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49492,681865ce-ecea-48b7-ac98-a091519a8384,LIST_ACCOUNTS,xs2aListAccounts,true -49493,681865ce-ecea-48b7-ac98-a091519a8384,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49493,681865ce-ecea-48b7-ac98-a091519a8384,LIST_TRANSACTIONS,xs2aListTransactions,true 49494,681865ce-ecea-48b7-ac98-a091519a8384,AUTHORIZATION,,true 49495,681865ce-ecea-48b7-ac98-a091519a8384,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49496,681865ce-ecea-48b7-ac98-a091519a8384,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49497,681865ce-ecea-48b7-ac98-a091519a8384,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49498,28ecf3dc-fcb4-4a25-85a6-7ed276421d67,LIST_ACCOUNTS,hbciListAccounts,false -49499,28ecf3dc-fcb4-4a25-85a6-7ed276421d67,LIST_TRANSACTIONS,hbciListTransactions,false -49500,28ecf3dc-fcb4-4a25-85a6-7ed276421d67,AUTHORIZATION,,false -49501,28ecf3dc-fcb4-4a25-85a6-7ed276421d67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49502,28ecf3dc-fcb4-4a25-85a6-7ed276421d67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49503,28ecf3dc-fcb4-4a25-85a6-7ed276421d67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49498,df467d7e-8bd5-44e5-946d-7d84bfcd10ba,LIST_ACCOUNTS,hbciListAccounts,false +49499,df467d7e-8bd5-44e5-946d-7d84bfcd10ba,LIST_TRANSACTIONS,hbciListTransactions,false +49500,df467d7e-8bd5-44e5-946d-7d84bfcd10ba,AUTHORIZATION,,false +49501,df467d7e-8bd5-44e5-946d-7d84bfcd10ba,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49502,df467d7e-8bd5-44e5-946d-7d84bfcd10ba,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49503,df467d7e-8bd5-44e5-946d-7d84bfcd10ba,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49504,ef364b0f-04cf-4b8c-8bcb-ad54cadf90a1,LIST_ACCOUNTS,xs2aListAccounts,true -49505,ef364b0f-04cf-4b8c-8bcb-ad54cadf90a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49505,ef364b0f-04cf-4b8c-8bcb-ad54cadf90a1,LIST_TRANSACTIONS,xs2aListTransactions,true 49506,ef364b0f-04cf-4b8c-8bcb-ad54cadf90a1,AUTHORIZATION,,true 49507,ef364b0f-04cf-4b8c-8bcb-ad54cadf90a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49508,ef364b0f-04cf-4b8c-8bcb-ad54cadf90a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49509,ef364b0f-04cf-4b8c-8bcb-ad54cadf90a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49510,f0665028-75f0-4501-a302-98f40199d17a,LIST_ACCOUNTS,hbciListAccounts,false -49511,f0665028-75f0-4501-a302-98f40199d17a,LIST_TRANSACTIONS,hbciListTransactions,false -49512,f0665028-75f0-4501-a302-98f40199d17a,AUTHORIZATION,,false -49513,f0665028-75f0-4501-a302-98f40199d17a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49514,f0665028-75f0-4501-a302-98f40199d17a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49515,f0665028-75f0-4501-a302-98f40199d17a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49510,24a5b31e-9dce-4e32-b6f2-0d345b033bc8,LIST_ACCOUNTS,hbciListAccounts,false +49511,24a5b31e-9dce-4e32-b6f2-0d345b033bc8,LIST_TRANSACTIONS,hbciListTransactions,false +49512,24a5b31e-9dce-4e32-b6f2-0d345b033bc8,AUTHORIZATION,,false +49513,24a5b31e-9dce-4e32-b6f2-0d345b033bc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49514,24a5b31e-9dce-4e32-b6f2-0d345b033bc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49515,24a5b31e-9dce-4e32-b6f2-0d345b033bc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49516,d6330513-9ad2-4d49-9143-d9f367140ac6,LIST_ACCOUNTS,xs2aListAccounts,true -49517,d6330513-9ad2-4d49-9143-d9f367140ac6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49517,d6330513-9ad2-4d49-9143-d9f367140ac6,LIST_TRANSACTIONS,xs2aListTransactions,true 49518,d6330513-9ad2-4d49-9143-d9f367140ac6,AUTHORIZATION,,true 49519,d6330513-9ad2-4d49-9143-d9f367140ac6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49520,d6330513-9ad2-4d49-9143-d9f367140ac6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49521,d6330513-9ad2-4d49-9143-d9f367140ac6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49522,a7955b85-324c-4b32-8036-7b67676f3b4d,LIST_ACCOUNTS,hbciListAccounts,false -49523,a7955b85-324c-4b32-8036-7b67676f3b4d,LIST_TRANSACTIONS,hbciListTransactions,false -49524,a7955b85-324c-4b32-8036-7b67676f3b4d,AUTHORIZATION,,false -49525,a7955b85-324c-4b32-8036-7b67676f3b4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49526,a7955b85-324c-4b32-8036-7b67676f3b4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49527,a7955b85-324c-4b32-8036-7b67676f3b4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49522,1c79fadb-79fc-446e-9e76-b264c81e1d3d,LIST_ACCOUNTS,hbciListAccounts,false +49523,1c79fadb-79fc-446e-9e76-b264c81e1d3d,LIST_TRANSACTIONS,hbciListTransactions,false +49524,1c79fadb-79fc-446e-9e76-b264c81e1d3d,AUTHORIZATION,,false +49525,1c79fadb-79fc-446e-9e76-b264c81e1d3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49526,1c79fadb-79fc-446e-9e76-b264c81e1d3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49527,1c79fadb-79fc-446e-9e76-b264c81e1d3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49528,dbf00a34-55a2-4329-9aab-e92791cf0bae,LIST_ACCOUNTS,xs2aListAccounts,true -49529,dbf00a34-55a2-4329-9aab-e92791cf0bae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49529,dbf00a34-55a2-4329-9aab-e92791cf0bae,LIST_TRANSACTIONS,xs2aListTransactions,true 49530,dbf00a34-55a2-4329-9aab-e92791cf0bae,AUTHORIZATION,,true 49531,dbf00a34-55a2-4329-9aab-e92791cf0bae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49532,dbf00a34-55a2-4329-9aab-e92791cf0bae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49533,dbf00a34-55a2-4329-9aab-e92791cf0bae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49534,606b8a10-8777-4984-8a8f-8473f93bd918,LIST_ACCOUNTS,hbciListAccounts,false -49535,606b8a10-8777-4984-8a8f-8473f93bd918,LIST_TRANSACTIONS,hbciListTransactions,false -49536,606b8a10-8777-4984-8a8f-8473f93bd918,AUTHORIZATION,,false -49537,606b8a10-8777-4984-8a8f-8473f93bd918,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49538,606b8a10-8777-4984-8a8f-8473f93bd918,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49539,606b8a10-8777-4984-8a8f-8473f93bd918,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49534,5eb48982-9ce8-49bf-be5d-9023f497269f,LIST_ACCOUNTS,hbciListAccounts,false +49535,5eb48982-9ce8-49bf-be5d-9023f497269f,LIST_TRANSACTIONS,hbciListTransactions,false +49536,5eb48982-9ce8-49bf-be5d-9023f497269f,AUTHORIZATION,,false +49537,5eb48982-9ce8-49bf-be5d-9023f497269f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49538,5eb48982-9ce8-49bf-be5d-9023f497269f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49539,5eb48982-9ce8-49bf-be5d-9023f497269f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49540,39cb5576-41a0-4525-92f4-b68edc258682,LIST_ACCOUNTS,xs2aListAccounts,true -49541,39cb5576-41a0-4525-92f4-b68edc258682,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49541,39cb5576-41a0-4525-92f4-b68edc258682,LIST_TRANSACTIONS,xs2aListTransactions,true 49542,39cb5576-41a0-4525-92f4-b68edc258682,AUTHORIZATION,,true 49543,39cb5576-41a0-4525-92f4-b68edc258682,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49544,39cb5576-41a0-4525-92f4-b68edc258682,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49545,39cb5576-41a0-4525-92f4-b68edc258682,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49546,97932077-3b92-43ac-9a97-64e80bb53d77,LIST_ACCOUNTS,hbciListAccounts,false -49547,97932077-3b92-43ac-9a97-64e80bb53d77,LIST_TRANSACTIONS,hbciListTransactions,false -49548,97932077-3b92-43ac-9a97-64e80bb53d77,AUTHORIZATION,,false -49549,97932077-3b92-43ac-9a97-64e80bb53d77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49550,97932077-3b92-43ac-9a97-64e80bb53d77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49551,97932077-3b92-43ac-9a97-64e80bb53d77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49546,8c659572-d8b7-4243-852a-592724cf80dc,LIST_ACCOUNTS,hbciListAccounts,false +49547,8c659572-d8b7-4243-852a-592724cf80dc,LIST_TRANSACTIONS,hbciListTransactions,false +49548,8c659572-d8b7-4243-852a-592724cf80dc,AUTHORIZATION,,false +49549,8c659572-d8b7-4243-852a-592724cf80dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49550,8c659572-d8b7-4243-852a-592724cf80dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49551,8c659572-d8b7-4243-852a-592724cf80dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49552,8f2d43f8-4215-4bd4-b25c-2ac07ddb3976,LIST_ACCOUNTS,xs2aListAccounts,true -49553,8f2d43f8-4215-4bd4-b25c-2ac07ddb3976,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49553,8f2d43f8-4215-4bd4-b25c-2ac07ddb3976,LIST_TRANSACTIONS,xs2aListTransactions,true 49554,8f2d43f8-4215-4bd4-b25c-2ac07ddb3976,AUTHORIZATION,,true 49555,8f2d43f8-4215-4bd4-b25c-2ac07ddb3976,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49556,8f2d43f8-4215-4bd4-b25c-2ac07ddb3976,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49557,8f2d43f8-4215-4bd4-b25c-2ac07ddb3976,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49558,42adf91b-8fc4-4a68-a9f1-f2c722abae01,LIST_ACCOUNTS,hbciListAccounts,false -49559,42adf91b-8fc4-4a68-a9f1-f2c722abae01,LIST_TRANSACTIONS,hbciListTransactions,false -49560,42adf91b-8fc4-4a68-a9f1-f2c722abae01,AUTHORIZATION,,false -49561,42adf91b-8fc4-4a68-a9f1-f2c722abae01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49562,42adf91b-8fc4-4a68-a9f1-f2c722abae01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49563,42adf91b-8fc4-4a68-a9f1-f2c722abae01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49558,0e63f59c-7b41-475c-9a82-e77de78b98a0,LIST_ACCOUNTS,hbciListAccounts,false +49559,0e63f59c-7b41-475c-9a82-e77de78b98a0,LIST_TRANSACTIONS,hbciListTransactions,false +49560,0e63f59c-7b41-475c-9a82-e77de78b98a0,AUTHORIZATION,,false +49561,0e63f59c-7b41-475c-9a82-e77de78b98a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49562,0e63f59c-7b41-475c-9a82-e77de78b98a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49563,0e63f59c-7b41-475c-9a82-e77de78b98a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49564,6ce966b8-0d32-4af1-9add-701097c7caa6,LIST_ACCOUNTS,xs2aListAccounts,true -49565,6ce966b8-0d32-4af1-9add-701097c7caa6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49565,6ce966b8-0d32-4af1-9add-701097c7caa6,LIST_TRANSACTIONS,xs2aListTransactions,true 49566,6ce966b8-0d32-4af1-9add-701097c7caa6,AUTHORIZATION,,true 49567,6ce966b8-0d32-4af1-9add-701097c7caa6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49568,6ce966b8-0d32-4af1-9add-701097c7caa6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49569,6ce966b8-0d32-4af1-9add-701097c7caa6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49570,99dd5b5d-d6fb-4ce4-8dc6-1c6f780fc445,LIST_ACCOUNTS,hbciListAccounts,false -49571,99dd5b5d-d6fb-4ce4-8dc6-1c6f780fc445,LIST_TRANSACTIONS,hbciListTransactions,false -49572,99dd5b5d-d6fb-4ce4-8dc6-1c6f780fc445,AUTHORIZATION,,false -49573,99dd5b5d-d6fb-4ce4-8dc6-1c6f780fc445,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49574,99dd5b5d-d6fb-4ce4-8dc6-1c6f780fc445,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49575,99dd5b5d-d6fb-4ce4-8dc6-1c6f780fc445,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49570,4122805c-95f0-414f-898e-2dcb7c697d3b,LIST_ACCOUNTS,hbciListAccounts,false +49571,4122805c-95f0-414f-898e-2dcb7c697d3b,LIST_TRANSACTIONS,hbciListTransactions,false +49572,4122805c-95f0-414f-898e-2dcb7c697d3b,AUTHORIZATION,,false +49573,4122805c-95f0-414f-898e-2dcb7c697d3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49574,4122805c-95f0-414f-898e-2dcb7c697d3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49575,4122805c-95f0-414f-898e-2dcb7c697d3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49576,a6b0b80c-a8cf-4f06-8266-f0caddacb646,LIST_ACCOUNTS,xs2aListAccounts,true -49577,a6b0b80c-a8cf-4f06-8266-f0caddacb646,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49577,a6b0b80c-a8cf-4f06-8266-f0caddacb646,LIST_TRANSACTIONS,xs2aListTransactions,true 49578,a6b0b80c-a8cf-4f06-8266-f0caddacb646,AUTHORIZATION,,true 49579,a6b0b80c-a8cf-4f06-8266-f0caddacb646,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49580,a6b0b80c-a8cf-4f06-8266-f0caddacb646,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49581,a6b0b80c-a8cf-4f06-8266-f0caddacb646,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49582,22cc530d-dca1-4ef2-9bfd-751a3fc14410,LIST_ACCOUNTS,hbciListAccounts,false -49583,22cc530d-dca1-4ef2-9bfd-751a3fc14410,LIST_TRANSACTIONS,hbciListTransactions,false -49584,22cc530d-dca1-4ef2-9bfd-751a3fc14410,AUTHORIZATION,,false -49585,22cc530d-dca1-4ef2-9bfd-751a3fc14410,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49586,22cc530d-dca1-4ef2-9bfd-751a3fc14410,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49587,22cc530d-dca1-4ef2-9bfd-751a3fc14410,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49582,62d068be-9da0-4e05-bfd5-adb00b17005b,LIST_ACCOUNTS,hbciListAccounts,false +49583,62d068be-9da0-4e05-bfd5-adb00b17005b,LIST_TRANSACTIONS,hbciListTransactions,false +49584,62d068be-9da0-4e05-bfd5-adb00b17005b,AUTHORIZATION,,false +49585,62d068be-9da0-4e05-bfd5-adb00b17005b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49586,62d068be-9da0-4e05-bfd5-adb00b17005b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49587,62d068be-9da0-4e05-bfd5-adb00b17005b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49588,a40d9d83-5818-4faa-8c32-e8ab9da59f2d,LIST_ACCOUNTS,xs2aListAccounts,true -49589,a40d9d83-5818-4faa-8c32-e8ab9da59f2d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49589,a40d9d83-5818-4faa-8c32-e8ab9da59f2d,LIST_TRANSACTIONS,xs2aListTransactions,true 49590,a40d9d83-5818-4faa-8c32-e8ab9da59f2d,AUTHORIZATION,,true 49591,a40d9d83-5818-4faa-8c32-e8ab9da59f2d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49592,a40d9d83-5818-4faa-8c32-e8ab9da59f2d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49593,a40d9d83-5818-4faa-8c32-e8ab9da59f2d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49594,21df3a34-6343-40af-8901-1f677b23745f,LIST_ACCOUNTS,hbciListAccounts,false -49595,21df3a34-6343-40af-8901-1f677b23745f,LIST_TRANSACTIONS,hbciListTransactions,false -49596,21df3a34-6343-40af-8901-1f677b23745f,AUTHORIZATION,,false -49597,21df3a34-6343-40af-8901-1f677b23745f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49598,21df3a34-6343-40af-8901-1f677b23745f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49599,21df3a34-6343-40af-8901-1f677b23745f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49594,0bea2f28-f6b2-4782-b347-88166097e311,LIST_ACCOUNTS,hbciListAccounts,false +49595,0bea2f28-f6b2-4782-b347-88166097e311,LIST_TRANSACTIONS,hbciListTransactions,false +49596,0bea2f28-f6b2-4782-b347-88166097e311,AUTHORIZATION,,false +49597,0bea2f28-f6b2-4782-b347-88166097e311,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49598,0bea2f28-f6b2-4782-b347-88166097e311,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49599,0bea2f28-f6b2-4782-b347-88166097e311,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49600,a8b6b8cb-77ad-4c52-a446-5906460c6ba2,LIST_ACCOUNTS,xs2aListAccounts,true -49601,a8b6b8cb-77ad-4c52-a446-5906460c6ba2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49601,a8b6b8cb-77ad-4c52-a446-5906460c6ba2,LIST_TRANSACTIONS,xs2aListTransactions,true 49602,a8b6b8cb-77ad-4c52-a446-5906460c6ba2,AUTHORIZATION,,true 49603,a8b6b8cb-77ad-4c52-a446-5906460c6ba2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49604,a8b6b8cb-77ad-4c52-a446-5906460c6ba2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49605,a8b6b8cb-77ad-4c52-a446-5906460c6ba2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49606,4fffe5ff-0b95-444c-bc8b-ebe763ae68d0,LIST_ACCOUNTS,hbciListAccounts,false -49607,4fffe5ff-0b95-444c-bc8b-ebe763ae68d0,LIST_TRANSACTIONS,hbciListTransactions,false -49608,4fffe5ff-0b95-444c-bc8b-ebe763ae68d0,AUTHORIZATION,,false -49609,4fffe5ff-0b95-444c-bc8b-ebe763ae68d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49610,4fffe5ff-0b95-444c-bc8b-ebe763ae68d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49611,4fffe5ff-0b95-444c-bc8b-ebe763ae68d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49606,19c0d67e-fe7f-4b13-9764-0c74c2adbc3f,LIST_ACCOUNTS,hbciListAccounts,false +49607,19c0d67e-fe7f-4b13-9764-0c74c2adbc3f,LIST_TRANSACTIONS,hbciListTransactions,false +49608,19c0d67e-fe7f-4b13-9764-0c74c2adbc3f,AUTHORIZATION,,false +49609,19c0d67e-fe7f-4b13-9764-0c74c2adbc3f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49610,19c0d67e-fe7f-4b13-9764-0c74c2adbc3f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49611,19c0d67e-fe7f-4b13-9764-0c74c2adbc3f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49612,7eb7df21-4b3a-42b4-923b-63ac5ba78742,LIST_ACCOUNTS,xs2aListAccounts,true -49613,7eb7df21-4b3a-42b4-923b-63ac5ba78742,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49613,7eb7df21-4b3a-42b4-923b-63ac5ba78742,LIST_TRANSACTIONS,xs2aListTransactions,true 49614,7eb7df21-4b3a-42b4-923b-63ac5ba78742,AUTHORIZATION,,true 49615,7eb7df21-4b3a-42b4-923b-63ac5ba78742,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49616,7eb7df21-4b3a-42b4-923b-63ac5ba78742,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49617,7eb7df21-4b3a-42b4-923b-63ac5ba78742,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49618,9ddf0d21-2a41-400a-90fc-fa2e5e1d86fc,LIST_ACCOUNTS,hbciListAccounts,false -49619,9ddf0d21-2a41-400a-90fc-fa2e5e1d86fc,LIST_TRANSACTIONS,hbciListTransactions,false -49620,9ddf0d21-2a41-400a-90fc-fa2e5e1d86fc,AUTHORIZATION,,false -49621,9ddf0d21-2a41-400a-90fc-fa2e5e1d86fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49622,9ddf0d21-2a41-400a-90fc-fa2e5e1d86fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49623,9ddf0d21-2a41-400a-90fc-fa2e5e1d86fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49618,a3bcc905-2962-42e0-8886-5f597b54bbbf,LIST_ACCOUNTS,hbciListAccounts,false +49619,a3bcc905-2962-42e0-8886-5f597b54bbbf,LIST_TRANSACTIONS,hbciListTransactions,false +49620,a3bcc905-2962-42e0-8886-5f597b54bbbf,AUTHORIZATION,,false +49621,a3bcc905-2962-42e0-8886-5f597b54bbbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49622,a3bcc905-2962-42e0-8886-5f597b54bbbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49623,a3bcc905-2962-42e0-8886-5f597b54bbbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49624,f78ba9ee-2603-40fd-8e0d-ccd0dbaeeb2a,LIST_ACCOUNTS,xs2aListAccounts,true -49625,f78ba9ee-2603-40fd-8e0d-ccd0dbaeeb2a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49625,f78ba9ee-2603-40fd-8e0d-ccd0dbaeeb2a,LIST_TRANSACTIONS,xs2aListTransactions,true 49626,f78ba9ee-2603-40fd-8e0d-ccd0dbaeeb2a,AUTHORIZATION,,true 49627,f78ba9ee-2603-40fd-8e0d-ccd0dbaeeb2a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49628,f78ba9ee-2603-40fd-8e0d-ccd0dbaeeb2a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49629,f78ba9ee-2603-40fd-8e0d-ccd0dbaeeb2a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49630,9767ed5a-7acf-4e34-931b-bc6e6a4ba15b,LIST_ACCOUNTS,hbciListAccounts,false -49631,9767ed5a-7acf-4e34-931b-bc6e6a4ba15b,LIST_TRANSACTIONS,hbciListTransactions,false -49632,9767ed5a-7acf-4e34-931b-bc6e6a4ba15b,AUTHORIZATION,,false -49633,9767ed5a-7acf-4e34-931b-bc6e6a4ba15b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49634,9767ed5a-7acf-4e34-931b-bc6e6a4ba15b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49635,9767ed5a-7acf-4e34-931b-bc6e6a4ba15b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49630,4f5b13c9-f23c-478f-a22b-9745b6ffdf3a,LIST_ACCOUNTS,hbciListAccounts,false +49631,4f5b13c9-f23c-478f-a22b-9745b6ffdf3a,LIST_TRANSACTIONS,hbciListTransactions,false +49632,4f5b13c9-f23c-478f-a22b-9745b6ffdf3a,AUTHORIZATION,,false +49633,4f5b13c9-f23c-478f-a22b-9745b6ffdf3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49634,4f5b13c9-f23c-478f-a22b-9745b6ffdf3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49635,4f5b13c9-f23c-478f-a22b-9745b6ffdf3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49636,98295a08-f56a-4efa-877c-7b2ed1fd991e,LIST_ACCOUNTS,xs2aListAccounts,true -49637,98295a08-f56a-4efa-877c-7b2ed1fd991e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49637,98295a08-f56a-4efa-877c-7b2ed1fd991e,LIST_TRANSACTIONS,xs2aListTransactions,true 49638,98295a08-f56a-4efa-877c-7b2ed1fd991e,AUTHORIZATION,,true 49639,98295a08-f56a-4efa-877c-7b2ed1fd991e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49640,98295a08-f56a-4efa-877c-7b2ed1fd991e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49641,98295a08-f56a-4efa-877c-7b2ed1fd991e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49642,0a1db664-d97e-4d7f-8489-7d0024e8b30c,LIST_ACCOUNTS,hbciListAccounts,false -49643,0a1db664-d97e-4d7f-8489-7d0024e8b30c,LIST_TRANSACTIONS,hbciListTransactions,false -49644,0a1db664-d97e-4d7f-8489-7d0024e8b30c,AUTHORIZATION,,false -49645,0a1db664-d97e-4d7f-8489-7d0024e8b30c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49646,0a1db664-d97e-4d7f-8489-7d0024e8b30c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49647,0a1db664-d97e-4d7f-8489-7d0024e8b30c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49642,85b18ac7-5c10-4586-aef0-c740b74d1c47,LIST_ACCOUNTS,hbciListAccounts,false +49643,85b18ac7-5c10-4586-aef0-c740b74d1c47,LIST_TRANSACTIONS,hbciListTransactions,false +49644,85b18ac7-5c10-4586-aef0-c740b74d1c47,AUTHORIZATION,,false +49645,85b18ac7-5c10-4586-aef0-c740b74d1c47,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49646,85b18ac7-5c10-4586-aef0-c740b74d1c47,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49647,85b18ac7-5c10-4586-aef0-c740b74d1c47,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49648,5816dc64-de79-48d2-af6d-afbec6ab79d3,LIST_ACCOUNTS,xs2aListAccounts,true -49649,5816dc64-de79-48d2-af6d-afbec6ab79d3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49649,5816dc64-de79-48d2-af6d-afbec6ab79d3,LIST_TRANSACTIONS,xs2aListTransactions,true 49650,5816dc64-de79-48d2-af6d-afbec6ab79d3,AUTHORIZATION,,true 49651,5816dc64-de79-48d2-af6d-afbec6ab79d3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49652,5816dc64-de79-48d2-af6d-afbec6ab79d3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49653,5816dc64-de79-48d2-af6d-afbec6ab79d3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49654,8f716842-0211-4434-ae05-f6972585defb,LIST_ACCOUNTS,hbciListAccounts,false -49655,8f716842-0211-4434-ae05-f6972585defb,LIST_TRANSACTIONS,hbciListTransactions,false -49656,8f716842-0211-4434-ae05-f6972585defb,AUTHORIZATION,,false -49657,8f716842-0211-4434-ae05-f6972585defb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49658,8f716842-0211-4434-ae05-f6972585defb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49659,8f716842-0211-4434-ae05-f6972585defb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49654,11303522-08c4-4570-b055-cf588ad2cfd4,LIST_ACCOUNTS,hbciListAccounts,false +49655,11303522-08c4-4570-b055-cf588ad2cfd4,LIST_TRANSACTIONS,hbciListTransactions,false +49656,11303522-08c4-4570-b055-cf588ad2cfd4,AUTHORIZATION,,false +49657,11303522-08c4-4570-b055-cf588ad2cfd4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49658,11303522-08c4-4570-b055-cf588ad2cfd4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49659,11303522-08c4-4570-b055-cf588ad2cfd4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49660,b14c4474-7b4b-4142-9296-c8f045f0805b,LIST_ACCOUNTS,xs2aListAccounts,true -49661,b14c4474-7b4b-4142-9296-c8f045f0805b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49661,b14c4474-7b4b-4142-9296-c8f045f0805b,LIST_TRANSACTIONS,xs2aListTransactions,true 49662,b14c4474-7b4b-4142-9296-c8f045f0805b,AUTHORIZATION,,true 49663,b14c4474-7b4b-4142-9296-c8f045f0805b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49664,b14c4474-7b4b-4142-9296-c8f045f0805b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49665,b14c4474-7b4b-4142-9296-c8f045f0805b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49666,08ff9809-5b93-4809-accc-30bc5243d9c3,LIST_ACCOUNTS,hbciListAccounts,false -49667,08ff9809-5b93-4809-accc-30bc5243d9c3,LIST_TRANSACTIONS,hbciListTransactions,false -49668,08ff9809-5b93-4809-accc-30bc5243d9c3,AUTHORIZATION,,false -49669,08ff9809-5b93-4809-accc-30bc5243d9c3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49670,08ff9809-5b93-4809-accc-30bc5243d9c3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49671,08ff9809-5b93-4809-accc-30bc5243d9c3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49666,156b069c-e7ba-44a9-8124-e96e7158e8f0,LIST_ACCOUNTS,hbciListAccounts,false +49667,156b069c-e7ba-44a9-8124-e96e7158e8f0,LIST_TRANSACTIONS,hbciListTransactions,false +49668,156b069c-e7ba-44a9-8124-e96e7158e8f0,AUTHORIZATION,,false +49669,156b069c-e7ba-44a9-8124-e96e7158e8f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49670,156b069c-e7ba-44a9-8124-e96e7158e8f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49671,156b069c-e7ba-44a9-8124-e96e7158e8f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49672,322677c8-be6d-4ba3-afc3-0b26ea1a28ff,LIST_ACCOUNTS,xs2aListAccounts,true -49673,322677c8-be6d-4ba3-afc3-0b26ea1a28ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49673,322677c8-be6d-4ba3-afc3-0b26ea1a28ff,LIST_TRANSACTIONS,xs2aListTransactions,true 49674,322677c8-be6d-4ba3-afc3-0b26ea1a28ff,AUTHORIZATION,,true 49675,322677c8-be6d-4ba3-afc3-0b26ea1a28ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49676,322677c8-be6d-4ba3-afc3-0b26ea1a28ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49677,322677c8-be6d-4ba3-afc3-0b26ea1a28ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49678,f3916c36-b5cc-425c-86e0-4c4dca1d371f,LIST_ACCOUNTS,hbciListAccounts,false -49679,f3916c36-b5cc-425c-86e0-4c4dca1d371f,LIST_TRANSACTIONS,hbciListTransactions,false -49680,f3916c36-b5cc-425c-86e0-4c4dca1d371f,AUTHORIZATION,,false -49681,f3916c36-b5cc-425c-86e0-4c4dca1d371f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49682,f3916c36-b5cc-425c-86e0-4c4dca1d371f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49683,f3916c36-b5cc-425c-86e0-4c4dca1d371f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49678,ea4b1259-fdd7-4756-ac98-4335b50587b4,LIST_ACCOUNTS,hbciListAccounts,false +49679,ea4b1259-fdd7-4756-ac98-4335b50587b4,LIST_TRANSACTIONS,hbciListTransactions,false +49680,ea4b1259-fdd7-4756-ac98-4335b50587b4,AUTHORIZATION,,false +49681,ea4b1259-fdd7-4756-ac98-4335b50587b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49682,ea4b1259-fdd7-4756-ac98-4335b50587b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49683,ea4b1259-fdd7-4756-ac98-4335b50587b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49684,fbcefe55-e78d-461e-87ca-927a889ea378,LIST_ACCOUNTS,xs2aListAccounts,true -49685,fbcefe55-e78d-461e-87ca-927a889ea378,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49685,fbcefe55-e78d-461e-87ca-927a889ea378,LIST_TRANSACTIONS,xs2aListTransactions,true 49686,fbcefe55-e78d-461e-87ca-927a889ea378,AUTHORIZATION,,true 49687,fbcefe55-e78d-461e-87ca-927a889ea378,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49688,fbcefe55-e78d-461e-87ca-927a889ea378,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49689,fbcefe55-e78d-461e-87ca-927a889ea378,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49690,c73c98b0-4c21-4c92-be7b-ba4c813908c2,LIST_ACCOUNTS,hbciListAccounts,false -49691,c73c98b0-4c21-4c92-be7b-ba4c813908c2,LIST_TRANSACTIONS,hbciListTransactions,false -49692,c73c98b0-4c21-4c92-be7b-ba4c813908c2,AUTHORIZATION,,false -49693,c73c98b0-4c21-4c92-be7b-ba4c813908c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49694,c73c98b0-4c21-4c92-be7b-ba4c813908c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49695,c73c98b0-4c21-4c92-be7b-ba4c813908c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49690,dea8394a-ce49-4529-916c-a0b06d52443d,LIST_ACCOUNTS,hbciListAccounts,false +49691,dea8394a-ce49-4529-916c-a0b06d52443d,LIST_TRANSACTIONS,hbciListTransactions,false +49692,dea8394a-ce49-4529-916c-a0b06d52443d,AUTHORIZATION,,false +49693,dea8394a-ce49-4529-916c-a0b06d52443d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49694,dea8394a-ce49-4529-916c-a0b06d52443d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49695,dea8394a-ce49-4529-916c-a0b06d52443d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49696,894b48da-1a63-4e87-b6b5-9944a20659fb,LIST_ACCOUNTS,xs2aListAccounts,true -49697,894b48da-1a63-4e87-b6b5-9944a20659fb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49697,894b48da-1a63-4e87-b6b5-9944a20659fb,LIST_TRANSACTIONS,xs2aListTransactions,true 49698,894b48da-1a63-4e87-b6b5-9944a20659fb,AUTHORIZATION,,true 49699,894b48da-1a63-4e87-b6b5-9944a20659fb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49700,894b48da-1a63-4e87-b6b5-9944a20659fb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49701,894b48da-1a63-4e87-b6b5-9944a20659fb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49702,12cc6f58-ee98-480b-ad3b-4befe4e3b36f,LIST_ACCOUNTS,hbciListAccounts,false -49703,12cc6f58-ee98-480b-ad3b-4befe4e3b36f,LIST_TRANSACTIONS,hbciListTransactions,false -49704,12cc6f58-ee98-480b-ad3b-4befe4e3b36f,AUTHORIZATION,,false -49705,12cc6f58-ee98-480b-ad3b-4befe4e3b36f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49706,12cc6f58-ee98-480b-ad3b-4befe4e3b36f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49707,12cc6f58-ee98-480b-ad3b-4befe4e3b36f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49702,a70e8c09-57e9-4af2-90a3-a20480ebe247,LIST_ACCOUNTS,hbciListAccounts,false +49703,a70e8c09-57e9-4af2-90a3-a20480ebe247,LIST_TRANSACTIONS,hbciListTransactions,false +49704,a70e8c09-57e9-4af2-90a3-a20480ebe247,AUTHORIZATION,,false +49705,a70e8c09-57e9-4af2-90a3-a20480ebe247,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49706,a70e8c09-57e9-4af2-90a3-a20480ebe247,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49707,a70e8c09-57e9-4af2-90a3-a20480ebe247,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49708,971db497-7986-4e5b-8f04-75c20a624fcd,LIST_ACCOUNTS,xs2aListAccounts,true -49709,971db497-7986-4e5b-8f04-75c20a624fcd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49709,971db497-7986-4e5b-8f04-75c20a624fcd,LIST_TRANSACTIONS,xs2aListTransactions,true 49710,971db497-7986-4e5b-8f04-75c20a624fcd,AUTHORIZATION,,true 49711,971db497-7986-4e5b-8f04-75c20a624fcd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49712,971db497-7986-4e5b-8f04-75c20a624fcd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49713,971db497-7986-4e5b-8f04-75c20a624fcd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49714,d5bcb187-e1a1-45db-a5cf-cb1f07538026,LIST_ACCOUNTS,hbciListAccounts,false -49715,d5bcb187-e1a1-45db-a5cf-cb1f07538026,LIST_TRANSACTIONS,hbciListTransactions,false -49716,d5bcb187-e1a1-45db-a5cf-cb1f07538026,AUTHORIZATION,,false -49717,d5bcb187-e1a1-45db-a5cf-cb1f07538026,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49718,d5bcb187-e1a1-45db-a5cf-cb1f07538026,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49719,d5bcb187-e1a1-45db-a5cf-cb1f07538026,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49714,d90a9a14-7bd9-4227-947c-27f5989d7d9b,LIST_ACCOUNTS,hbciListAccounts,false +49715,d90a9a14-7bd9-4227-947c-27f5989d7d9b,LIST_TRANSACTIONS,hbciListTransactions,false +49716,d90a9a14-7bd9-4227-947c-27f5989d7d9b,AUTHORIZATION,,false +49717,d90a9a14-7bd9-4227-947c-27f5989d7d9b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49718,d90a9a14-7bd9-4227-947c-27f5989d7d9b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49719,d90a9a14-7bd9-4227-947c-27f5989d7d9b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49720,d485d42a-db55-45fe-aa25-ef6b926243ff,LIST_ACCOUNTS,xs2aListAccounts,true -49721,d485d42a-db55-45fe-aa25-ef6b926243ff,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49721,d485d42a-db55-45fe-aa25-ef6b926243ff,LIST_TRANSACTIONS,xs2aListTransactions,true 49722,d485d42a-db55-45fe-aa25-ef6b926243ff,AUTHORIZATION,,true 49723,d485d42a-db55-45fe-aa25-ef6b926243ff,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49724,d485d42a-db55-45fe-aa25-ef6b926243ff,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49725,d485d42a-db55-45fe-aa25-ef6b926243ff,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49726,433358e9-9365-42c5-a4fb-d009c270a4a7,LIST_ACCOUNTS,hbciListAccounts,false -49727,433358e9-9365-42c5-a4fb-d009c270a4a7,LIST_TRANSACTIONS,hbciListTransactions,false -49728,433358e9-9365-42c5-a4fb-d009c270a4a7,AUTHORIZATION,,false -49729,433358e9-9365-42c5-a4fb-d009c270a4a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49730,433358e9-9365-42c5-a4fb-d009c270a4a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49731,433358e9-9365-42c5-a4fb-d009c270a4a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49726,f48c35b6-0b70-4462-880e-9d2a77d62d50,LIST_ACCOUNTS,hbciListAccounts,false +49727,f48c35b6-0b70-4462-880e-9d2a77d62d50,LIST_TRANSACTIONS,hbciListTransactions,false +49728,f48c35b6-0b70-4462-880e-9d2a77d62d50,AUTHORIZATION,,false +49729,f48c35b6-0b70-4462-880e-9d2a77d62d50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49730,f48c35b6-0b70-4462-880e-9d2a77d62d50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49731,f48c35b6-0b70-4462-880e-9d2a77d62d50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49732,34fb8849-57ee-4059-83ed-ec74963ed2cb,LIST_ACCOUNTS,xs2aListAccounts,true -49733,34fb8849-57ee-4059-83ed-ec74963ed2cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49733,34fb8849-57ee-4059-83ed-ec74963ed2cb,LIST_TRANSACTIONS,xs2aListTransactions,true 49734,34fb8849-57ee-4059-83ed-ec74963ed2cb,AUTHORIZATION,,true 49735,34fb8849-57ee-4059-83ed-ec74963ed2cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49736,34fb8849-57ee-4059-83ed-ec74963ed2cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49737,34fb8849-57ee-4059-83ed-ec74963ed2cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49738,ab1de1a9-a629-4eb2-83a2-a9ae74d1fe16,LIST_ACCOUNTS,hbciListAccounts,false -49739,ab1de1a9-a629-4eb2-83a2-a9ae74d1fe16,LIST_TRANSACTIONS,hbciListTransactions,false -49740,ab1de1a9-a629-4eb2-83a2-a9ae74d1fe16,AUTHORIZATION,,false -49741,ab1de1a9-a629-4eb2-83a2-a9ae74d1fe16,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49742,ab1de1a9-a629-4eb2-83a2-a9ae74d1fe16,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49743,ab1de1a9-a629-4eb2-83a2-a9ae74d1fe16,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49738,a9108ac1-eaa9-46ed-8bb2-b4a42b512b62,LIST_ACCOUNTS,hbciListAccounts,false +49739,a9108ac1-eaa9-46ed-8bb2-b4a42b512b62,LIST_TRANSACTIONS,hbciListTransactions,false +49740,a9108ac1-eaa9-46ed-8bb2-b4a42b512b62,AUTHORIZATION,,false +49741,a9108ac1-eaa9-46ed-8bb2-b4a42b512b62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49742,a9108ac1-eaa9-46ed-8bb2-b4a42b512b62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49743,a9108ac1-eaa9-46ed-8bb2-b4a42b512b62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49744,cb742447-0df0-44f4-8ec4-ed81ee75176f,LIST_ACCOUNTS,xs2aListAccounts,true -49745,cb742447-0df0-44f4-8ec4-ed81ee75176f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49745,cb742447-0df0-44f4-8ec4-ed81ee75176f,LIST_TRANSACTIONS,xs2aListTransactions,true 49746,cb742447-0df0-44f4-8ec4-ed81ee75176f,AUTHORIZATION,,true 49747,cb742447-0df0-44f4-8ec4-ed81ee75176f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49748,cb742447-0df0-44f4-8ec4-ed81ee75176f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49749,cb742447-0df0-44f4-8ec4-ed81ee75176f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49750,7fad78e2-bf90-41e2-a7a0-fcca173b90f4,LIST_ACCOUNTS,hbciListAccounts,false -49751,7fad78e2-bf90-41e2-a7a0-fcca173b90f4,LIST_TRANSACTIONS,hbciListTransactions,false -49752,7fad78e2-bf90-41e2-a7a0-fcca173b90f4,AUTHORIZATION,,false -49753,7fad78e2-bf90-41e2-a7a0-fcca173b90f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49754,7fad78e2-bf90-41e2-a7a0-fcca173b90f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49755,7fad78e2-bf90-41e2-a7a0-fcca173b90f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49750,abb52ca8-3356-4354-9742-f3c77d984597,LIST_ACCOUNTS,hbciListAccounts,false +49751,abb52ca8-3356-4354-9742-f3c77d984597,LIST_TRANSACTIONS,hbciListTransactions,false +49752,abb52ca8-3356-4354-9742-f3c77d984597,AUTHORIZATION,,false +49753,abb52ca8-3356-4354-9742-f3c77d984597,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49754,abb52ca8-3356-4354-9742-f3c77d984597,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49755,abb52ca8-3356-4354-9742-f3c77d984597,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49756,71c341f9-edb8-4787-9440-4de038593650,LIST_ACCOUNTS,xs2aListAccounts,true -49757,71c341f9-edb8-4787-9440-4de038593650,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49757,71c341f9-edb8-4787-9440-4de038593650,LIST_TRANSACTIONS,xs2aListTransactions,true 49758,71c341f9-edb8-4787-9440-4de038593650,AUTHORIZATION,,true 49759,71c341f9-edb8-4787-9440-4de038593650,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49760,71c341f9-edb8-4787-9440-4de038593650,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49761,71c341f9-edb8-4787-9440-4de038593650,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49762,2a66c4b4-5ac4-4711-b901-73ff5924ca97,LIST_ACCOUNTS,hbciListAccounts,false -49763,2a66c4b4-5ac4-4711-b901-73ff5924ca97,LIST_TRANSACTIONS,hbciListTransactions,false -49764,2a66c4b4-5ac4-4711-b901-73ff5924ca97,AUTHORIZATION,,false -49765,2a66c4b4-5ac4-4711-b901-73ff5924ca97,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49766,2a66c4b4-5ac4-4711-b901-73ff5924ca97,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49767,2a66c4b4-5ac4-4711-b901-73ff5924ca97,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49762,7f32d24b-10af-4f3b-b829-d51ec8a71b05,LIST_ACCOUNTS,hbciListAccounts,false +49763,7f32d24b-10af-4f3b-b829-d51ec8a71b05,LIST_TRANSACTIONS,hbciListTransactions,false +49764,7f32d24b-10af-4f3b-b829-d51ec8a71b05,AUTHORIZATION,,false +49765,7f32d24b-10af-4f3b-b829-d51ec8a71b05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49766,7f32d24b-10af-4f3b-b829-d51ec8a71b05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49767,7f32d24b-10af-4f3b-b829-d51ec8a71b05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49768,dcc22158-cbfb-4d58-9aca-b0e970e5672f,LIST_ACCOUNTS,xs2aListAccounts,true -49769,dcc22158-cbfb-4d58-9aca-b0e970e5672f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49769,dcc22158-cbfb-4d58-9aca-b0e970e5672f,LIST_TRANSACTIONS,xs2aListTransactions,true 49770,dcc22158-cbfb-4d58-9aca-b0e970e5672f,AUTHORIZATION,,true 49771,dcc22158-cbfb-4d58-9aca-b0e970e5672f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49772,dcc22158-cbfb-4d58-9aca-b0e970e5672f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49773,dcc22158-cbfb-4d58-9aca-b0e970e5672f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49774,2ca1bf27-a41d-4812-b5d0-8aed660cd289,LIST_ACCOUNTS,hbciListAccounts,false -49775,2ca1bf27-a41d-4812-b5d0-8aed660cd289,LIST_TRANSACTIONS,hbciListTransactions,false -49776,2ca1bf27-a41d-4812-b5d0-8aed660cd289,AUTHORIZATION,,false -49777,2ca1bf27-a41d-4812-b5d0-8aed660cd289,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49778,2ca1bf27-a41d-4812-b5d0-8aed660cd289,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49779,2ca1bf27-a41d-4812-b5d0-8aed660cd289,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49774,b089a698-9e9f-46c3-8b59-9dc0d1fa4820,LIST_ACCOUNTS,hbciListAccounts,false +49775,b089a698-9e9f-46c3-8b59-9dc0d1fa4820,LIST_TRANSACTIONS,hbciListTransactions,false +49776,b089a698-9e9f-46c3-8b59-9dc0d1fa4820,AUTHORIZATION,,false +49777,b089a698-9e9f-46c3-8b59-9dc0d1fa4820,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49778,b089a698-9e9f-46c3-8b59-9dc0d1fa4820,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49779,b089a698-9e9f-46c3-8b59-9dc0d1fa4820,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49780,d12eec80-91e1-4780-a79a-a06ff595e967,LIST_ACCOUNTS,xs2aListAccounts,true -49781,d12eec80-91e1-4780-a79a-a06ff595e967,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49781,d12eec80-91e1-4780-a79a-a06ff595e967,LIST_TRANSACTIONS,xs2aListTransactions,true 49782,d12eec80-91e1-4780-a79a-a06ff595e967,AUTHORIZATION,,true 49783,d12eec80-91e1-4780-a79a-a06ff595e967,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49784,d12eec80-91e1-4780-a79a-a06ff595e967,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49785,d12eec80-91e1-4780-a79a-a06ff595e967,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49786,8ffd4f46-88f0-48d8-b4e6-f7566fd96719,LIST_ACCOUNTS,hbciListAccounts,false -49787,8ffd4f46-88f0-48d8-b4e6-f7566fd96719,LIST_TRANSACTIONS,hbciListTransactions,false -49788,8ffd4f46-88f0-48d8-b4e6-f7566fd96719,AUTHORIZATION,,false -49789,8ffd4f46-88f0-48d8-b4e6-f7566fd96719,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49790,8ffd4f46-88f0-48d8-b4e6-f7566fd96719,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49791,8ffd4f46-88f0-48d8-b4e6-f7566fd96719,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49786,164da7b6-46c5-414e-8e6b-76b808a45631,LIST_ACCOUNTS,hbciListAccounts,false +49787,164da7b6-46c5-414e-8e6b-76b808a45631,LIST_TRANSACTIONS,hbciListTransactions,false +49788,164da7b6-46c5-414e-8e6b-76b808a45631,AUTHORIZATION,,false +49789,164da7b6-46c5-414e-8e6b-76b808a45631,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49790,164da7b6-46c5-414e-8e6b-76b808a45631,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49791,164da7b6-46c5-414e-8e6b-76b808a45631,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49792,b4b1026d-ab91-428e-a70f-c22c03dd3e96,LIST_ACCOUNTS,xs2aListAccounts,true -49793,b4b1026d-ab91-428e-a70f-c22c03dd3e96,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49793,b4b1026d-ab91-428e-a70f-c22c03dd3e96,LIST_TRANSACTIONS,xs2aListTransactions,true 49794,b4b1026d-ab91-428e-a70f-c22c03dd3e96,AUTHORIZATION,,true 49795,b4b1026d-ab91-428e-a70f-c22c03dd3e96,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49796,b4b1026d-ab91-428e-a70f-c22c03dd3e96,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49797,b4b1026d-ab91-428e-a70f-c22c03dd3e96,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49798,57e869e5-3b19-4e78-88d9-15e1265d5b7f,LIST_ACCOUNTS,hbciListAccounts,false -49799,57e869e5-3b19-4e78-88d9-15e1265d5b7f,LIST_TRANSACTIONS,hbciListTransactions,false -49800,57e869e5-3b19-4e78-88d9-15e1265d5b7f,AUTHORIZATION,,false -49801,57e869e5-3b19-4e78-88d9-15e1265d5b7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49802,57e869e5-3b19-4e78-88d9-15e1265d5b7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49803,57e869e5-3b19-4e78-88d9-15e1265d5b7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49798,6a23f6de-87be-4f09-9555-dec5cd55ddae,LIST_ACCOUNTS,hbciListAccounts,false +49799,6a23f6de-87be-4f09-9555-dec5cd55ddae,LIST_TRANSACTIONS,hbciListTransactions,false +49800,6a23f6de-87be-4f09-9555-dec5cd55ddae,AUTHORIZATION,,false +49801,6a23f6de-87be-4f09-9555-dec5cd55ddae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49802,6a23f6de-87be-4f09-9555-dec5cd55ddae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49803,6a23f6de-87be-4f09-9555-dec5cd55ddae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49804,4e56b8bb-0bdd-4a2f-a10a-d678822cd555,LIST_ACCOUNTS,xs2aListAccounts,true -49805,4e56b8bb-0bdd-4a2f-a10a-d678822cd555,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49805,4e56b8bb-0bdd-4a2f-a10a-d678822cd555,LIST_TRANSACTIONS,xs2aListTransactions,true 49806,4e56b8bb-0bdd-4a2f-a10a-d678822cd555,AUTHORIZATION,,true 49807,4e56b8bb-0bdd-4a2f-a10a-d678822cd555,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49808,4e56b8bb-0bdd-4a2f-a10a-d678822cd555,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49809,4e56b8bb-0bdd-4a2f-a10a-d678822cd555,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49810,6776669f-7bdb-4755-aa35-a61198131f64,LIST_ACCOUNTS,hbciListAccounts,false -49811,6776669f-7bdb-4755-aa35-a61198131f64,LIST_TRANSACTIONS,hbciListTransactions,false -49812,6776669f-7bdb-4755-aa35-a61198131f64,AUTHORIZATION,,false -49813,6776669f-7bdb-4755-aa35-a61198131f64,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49814,6776669f-7bdb-4755-aa35-a61198131f64,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49815,6776669f-7bdb-4755-aa35-a61198131f64,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49810,81eb956f-ca1c-4c4d-a57a-7bc9bbed05ae,LIST_ACCOUNTS,hbciListAccounts,false +49811,81eb956f-ca1c-4c4d-a57a-7bc9bbed05ae,LIST_TRANSACTIONS,hbciListTransactions,false +49812,81eb956f-ca1c-4c4d-a57a-7bc9bbed05ae,AUTHORIZATION,,false +49813,81eb956f-ca1c-4c4d-a57a-7bc9bbed05ae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49814,81eb956f-ca1c-4c4d-a57a-7bc9bbed05ae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49815,81eb956f-ca1c-4c4d-a57a-7bc9bbed05ae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49816,64ecb460-63e8-46c7-8291-f17bf8780bab,LIST_ACCOUNTS,xs2aListAccounts,true -49817,64ecb460-63e8-46c7-8291-f17bf8780bab,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49817,64ecb460-63e8-46c7-8291-f17bf8780bab,LIST_TRANSACTIONS,xs2aListTransactions,true 49818,64ecb460-63e8-46c7-8291-f17bf8780bab,AUTHORIZATION,,true 49819,64ecb460-63e8-46c7-8291-f17bf8780bab,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49820,64ecb460-63e8-46c7-8291-f17bf8780bab,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49821,64ecb460-63e8-46c7-8291-f17bf8780bab,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49822,210ecd9e-b0ea-44cb-8039-78f8eda07b05,LIST_ACCOUNTS,hbciListAccounts,false -49823,210ecd9e-b0ea-44cb-8039-78f8eda07b05,LIST_TRANSACTIONS,hbciListTransactions,false -49824,210ecd9e-b0ea-44cb-8039-78f8eda07b05,AUTHORIZATION,,false -49825,210ecd9e-b0ea-44cb-8039-78f8eda07b05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49826,210ecd9e-b0ea-44cb-8039-78f8eda07b05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49827,210ecd9e-b0ea-44cb-8039-78f8eda07b05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49822,2d360bed-6347-481e-b29c-cefc7e7ce6c8,LIST_ACCOUNTS,hbciListAccounts,false +49823,2d360bed-6347-481e-b29c-cefc7e7ce6c8,LIST_TRANSACTIONS,hbciListTransactions,false +49824,2d360bed-6347-481e-b29c-cefc7e7ce6c8,AUTHORIZATION,,false +49825,2d360bed-6347-481e-b29c-cefc7e7ce6c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49826,2d360bed-6347-481e-b29c-cefc7e7ce6c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49827,2d360bed-6347-481e-b29c-cefc7e7ce6c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49828,e4126170-58c8-4306-99fc-eb296cfe0c42,LIST_ACCOUNTS,xs2aListAccounts,true -49829,e4126170-58c8-4306-99fc-eb296cfe0c42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49829,e4126170-58c8-4306-99fc-eb296cfe0c42,LIST_TRANSACTIONS,xs2aListTransactions,true 49830,e4126170-58c8-4306-99fc-eb296cfe0c42,AUTHORIZATION,,true 49831,e4126170-58c8-4306-99fc-eb296cfe0c42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49832,e4126170-58c8-4306-99fc-eb296cfe0c42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49833,e4126170-58c8-4306-99fc-eb296cfe0c42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49834,26297b9a-686b-4d1e-86a1-d3150693646f,LIST_ACCOUNTS,hbciListAccounts,false -49835,26297b9a-686b-4d1e-86a1-d3150693646f,LIST_TRANSACTIONS,hbciListTransactions,false -49836,26297b9a-686b-4d1e-86a1-d3150693646f,AUTHORIZATION,,false -49837,26297b9a-686b-4d1e-86a1-d3150693646f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49838,26297b9a-686b-4d1e-86a1-d3150693646f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49839,26297b9a-686b-4d1e-86a1-d3150693646f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49834,7e03b7f0-17bd-46d4-999a-443e31d8352f,LIST_ACCOUNTS,hbciListAccounts,false +49835,7e03b7f0-17bd-46d4-999a-443e31d8352f,LIST_TRANSACTIONS,hbciListTransactions,false +49836,7e03b7f0-17bd-46d4-999a-443e31d8352f,AUTHORIZATION,,false +49837,7e03b7f0-17bd-46d4-999a-443e31d8352f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49838,7e03b7f0-17bd-46d4-999a-443e31d8352f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49839,7e03b7f0-17bd-46d4-999a-443e31d8352f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49840,12f00fe5-13a6-4f8d-8c0a-d69eab691705,LIST_ACCOUNTS,xs2aListAccounts,true -49841,12f00fe5-13a6-4f8d-8c0a-d69eab691705,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49841,12f00fe5-13a6-4f8d-8c0a-d69eab691705,LIST_TRANSACTIONS,xs2aListTransactions,true 49842,12f00fe5-13a6-4f8d-8c0a-d69eab691705,AUTHORIZATION,,true 49843,12f00fe5-13a6-4f8d-8c0a-d69eab691705,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49844,12f00fe5-13a6-4f8d-8c0a-d69eab691705,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49845,12f00fe5-13a6-4f8d-8c0a-d69eab691705,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49846,d7359fc0-55e7-475c-87cf-f02e24984a1a,LIST_ACCOUNTS,hbciListAccounts,false -49847,d7359fc0-55e7-475c-87cf-f02e24984a1a,LIST_TRANSACTIONS,hbciListTransactions,false -49848,d7359fc0-55e7-475c-87cf-f02e24984a1a,AUTHORIZATION,,false -49849,d7359fc0-55e7-475c-87cf-f02e24984a1a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49850,d7359fc0-55e7-475c-87cf-f02e24984a1a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49851,d7359fc0-55e7-475c-87cf-f02e24984a1a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49846,de82cbf9-1ec8-48b4-ac9c-d281029ffa69,LIST_ACCOUNTS,hbciListAccounts,false +49847,de82cbf9-1ec8-48b4-ac9c-d281029ffa69,LIST_TRANSACTIONS,hbciListTransactions,false +49848,de82cbf9-1ec8-48b4-ac9c-d281029ffa69,AUTHORIZATION,,false +49849,de82cbf9-1ec8-48b4-ac9c-d281029ffa69,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49850,de82cbf9-1ec8-48b4-ac9c-d281029ffa69,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49851,de82cbf9-1ec8-48b4-ac9c-d281029ffa69,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49852,2fbf036e-4a26-494f-a105-a5bc054bac89,LIST_ACCOUNTS,xs2aListAccounts,true -49853,2fbf036e-4a26-494f-a105-a5bc054bac89,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49853,2fbf036e-4a26-494f-a105-a5bc054bac89,LIST_TRANSACTIONS,xs2aListTransactions,true 49854,2fbf036e-4a26-494f-a105-a5bc054bac89,AUTHORIZATION,,true 49855,2fbf036e-4a26-494f-a105-a5bc054bac89,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49856,2fbf036e-4a26-494f-a105-a5bc054bac89,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49857,2fbf036e-4a26-494f-a105-a5bc054bac89,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49858,0b570aa3-b797-4cc3-b5fe-3ff39cef1f10,LIST_ACCOUNTS,hbciListAccounts,false -49859,0b570aa3-b797-4cc3-b5fe-3ff39cef1f10,LIST_TRANSACTIONS,hbciListTransactions,false -49860,0b570aa3-b797-4cc3-b5fe-3ff39cef1f10,AUTHORIZATION,,false -49861,0b570aa3-b797-4cc3-b5fe-3ff39cef1f10,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49862,0b570aa3-b797-4cc3-b5fe-3ff39cef1f10,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49863,0b570aa3-b797-4cc3-b5fe-3ff39cef1f10,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49858,8f4cfab3-ebee-4f6b-8e83-909d70c1c7cd,LIST_ACCOUNTS,hbciListAccounts,false +49859,8f4cfab3-ebee-4f6b-8e83-909d70c1c7cd,LIST_TRANSACTIONS,hbciListTransactions,false +49860,8f4cfab3-ebee-4f6b-8e83-909d70c1c7cd,AUTHORIZATION,,false +49861,8f4cfab3-ebee-4f6b-8e83-909d70c1c7cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49862,8f4cfab3-ebee-4f6b-8e83-909d70c1c7cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49863,8f4cfab3-ebee-4f6b-8e83-909d70c1c7cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49864,bf700a4c-fee2-4e3e-9822-fb0ec80648b4,LIST_ACCOUNTS,xs2aListAccounts,true -49865,bf700a4c-fee2-4e3e-9822-fb0ec80648b4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49865,bf700a4c-fee2-4e3e-9822-fb0ec80648b4,LIST_TRANSACTIONS,xs2aListTransactions,true 49866,bf700a4c-fee2-4e3e-9822-fb0ec80648b4,AUTHORIZATION,,true 49867,bf700a4c-fee2-4e3e-9822-fb0ec80648b4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49868,bf700a4c-fee2-4e3e-9822-fb0ec80648b4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49869,bf700a4c-fee2-4e3e-9822-fb0ec80648b4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49870,14050895-134b-4606-adea-b3e1f943716f,LIST_ACCOUNTS,hbciListAccounts,false -49871,14050895-134b-4606-adea-b3e1f943716f,LIST_TRANSACTIONS,hbciListTransactions,false -49872,14050895-134b-4606-adea-b3e1f943716f,AUTHORIZATION,,false -49873,14050895-134b-4606-adea-b3e1f943716f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49874,14050895-134b-4606-adea-b3e1f943716f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49875,14050895-134b-4606-adea-b3e1f943716f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49870,0cff1a92-33c3-4453-b1d0-4e96e8a3d85e,LIST_ACCOUNTS,hbciListAccounts,false +49871,0cff1a92-33c3-4453-b1d0-4e96e8a3d85e,LIST_TRANSACTIONS,hbciListTransactions,false +49872,0cff1a92-33c3-4453-b1d0-4e96e8a3d85e,AUTHORIZATION,,false +49873,0cff1a92-33c3-4453-b1d0-4e96e8a3d85e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49874,0cff1a92-33c3-4453-b1d0-4e96e8a3d85e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49875,0cff1a92-33c3-4453-b1d0-4e96e8a3d85e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49876,aaaa0e33-7c97-42dc-bf2d-e0faea95a116,LIST_ACCOUNTS,xs2aListAccounts,true -49877,aaaa0e33-7c97-42dc-bf2d-e0faea95a116,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49877,aaaa0e33-7c97-42dc-bf2d-e0faea95a116,LIST_TRANSACTIONS,xs2aListTransactions,true 49878,aaaa0e33-7c97-42dc-bf2d-e0faea95a116,AUTHORIZATION,,true 49879,aaaa0e33-7c97-42dc-bf2d-e0faea95a116,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49880,aaaa0e33-7c97-42dc-bf2d-e0faea95a116,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49881,aaaa0e33-7c97-42dc-bf2d-e0faea95a116,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49882,019cf778-39be-4b4b-a21b-4082a7044be8,LIST_ACCOUNTS,hbciListAccounts,false -49883,019cf778-39be-4b4b-a21b-4082a7044be8,LIST_TRANSACTIONS,hbciListTransactions,false -49884,019cf778-39be-4b4b-a21b-4082a7044be8,AUTHORIZATION,,false -49885,019cf778-39be-4b4b-a21b-4082a7044be8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49886,019cf778-39be-4b4b-a21b-4082a7044be8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49887,019cf778-39be-4b4b-a21b-4082a7044be8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49882,ec6cfcbe-e842-47ce-9919-6c4664c91ebf,LIST_ACCOUNTS,hbciListAccounts,false +49883,ec6cfcbe-e842-47ce-9919-6c4664c91ebf,LIST_TRANSACTIONS,hbciListTransactions,false +49884,ec6cfcbe-e842-47ce-9919-6c4664c91ebf,AUTHORIZATION,,false +49885,ec6cfcbe-e842-47ce-9919-6c4664c91ebf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49886,ec6cfcbe-e842-47ce-9919-6c4664c91ebf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49887,ec6cfcbe-e842-47ce-9919-6c4664c91ebf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49888,d6d572cb-6b7b-4532-80da-3d0edb6a3b6e,LIST_ACCOUNTS,xs2aListAccounts,true -49889,d6d572cb-6b7b-4532-80da-3d0edb6a3b6e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49889,d6d572cb-6b7b-4532-80da-3d0edb6a3b6e,LIST_TRANSACTIONS,xs2aListTransactions,true 49890,d6d572cb-6b7b-4532-80da-3d0edb6a3b6e,AUTHORIZATION,,true 49891,d6d572cb-6b7b-4532-80da-3d0edb6a3b6e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49892,d6d572cb-6b7b-4532-80da-3d0edb6a3b6e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49893,d6d572cb-6b7b-4532-80da-3d0edb6a3b6e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49894,8354425a-387c-4836-834e-02fbc0248e54,LIST_ACCOUNTS,hbciListAccounts,false -49895,8354425a-387c-4836-834e-02fbc0248e54,LIST_TRANSACTIONS,hbciListTransactions,false -49896,8354425a-387c-4836-834e-02fbc0248e54,AUTHORIZATION,,false -49897,8354425a-387c-4836-834e-02fbc0248e54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49898,8354425a-387c-4836-834e-02fbc0248e54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49899,8354425a-387c-4836-834e-02fbc0248e54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49894,df5cedb3-9582-45ec-8b77-78e0f53208bc,LIST_ACCOUNTS,hbciListAccounts,false +49895,df5cedb3-9582-45ec-8b77-78e0f53208bc,LIST_TRANSACTIONS,hbciListTransactions,false +49896,df5cedb3-9582-45ec-8b77-78e0f53208bc,AUTHORIZATION,,false +49897,df5cedb3-9582-45ec-8b77-78e0f53208bc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49898,df5cedb3-9582-45ec-8b77-78e0f53208bc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49899,df5cedb3-9582-45ec-8b77-78e0f53208bc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49900,84698fbe-be7d-44ca-af23-5f79e4a58ee9,LIST_ACCOUNTS,xs2aListAccounts,true -49901,84698fbe-be7d-44ca-af23-5f79e4a58ee9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49901,84698fbe-be7d-44ca-af23-5f79e4a58ee9,LIST_TRANSACTIONS,xs2aListTransactions,true 49902,84698fbe-be7d-44ca-af23-5f79e4a58ee9,AUTHORIZATION,,true 49903,84698fbe-be7d-44ca-af23-5f79e4a58ee9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49904,84698fbe-be7d-44ca-af23-5f79e4a58ee9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49905,84698fbe-be7d-44ca-af23-5f79e4a58ee9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49906,a0299455-cfb2-4a04-8991-d748e8faf9bf,LIST_ACCOUNTS,hbciListAccounts,false -49907,a0299455-cfb2-4a04-8991-d748e8faf9bf,LIST_TRANSACTIONS,hbciListTransactions,false -49908,a0299455-cfb2-4a04-8991-d748e8faf9bf,AUTHORIZATION,,false -49909,a0299455-cfb2-4a04-8991-d748e8faf9bf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49910,a0299455-cfb2-4a04-8991-d748e8faf9bf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49911,a0299455-cfb2-4a04-8991-d748e8faf9bf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49906,4837e048-1d25-4f55-bcf0-26ed720181d7,LIST_ACCOUNTS,hbciListAccounts,false +49907,4837e048-1d25-4f55-bcf0-26ed720181d7,LIST_TRANSACTIONS,hbciListTransactions,false +49908,4837e048-1d25-4f55-bcf0-26ed720181d7,AUTHORIZATION,,false +49909,4837e048-1d25-4f55-bcf0-26ed720181d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49910,4837e048-1d25-4f55-bcf0-26ed720181d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49911,4837e048-1d25-4f55-bcf0-26ed720181d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49912,70ce8f65-f15d-4855-bf74-f01c91cb19da,LIST_ACCOUNTS,xs2aListAccounts,true -49913,70ce8f65-f15d-4855-bf74-f01c91cb19da,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49913,70ce8f65-f15d-4855-bf74-f01c91cb19da,LIST_TRANSACTIONS,xs2aListTransactions,true 49914,70ce8f65-f15d-4855-bf74-f01c91cb19da,AUTHORIZATION,,true 49915,70ce8f65-f15d-4855-bf74-f01c91cb19da,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49916,70ce8f65-f15d-4855-bf74-f01c91cb19da,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49917,70ce8f65-f15d-4855-bf74-f01c91cb19da,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49918,10c48923-5111-4ef4-a7e6-2da661357ad6,LIST_ACCOUNTS,hbciListAccounts,false -49919,10c48923-5111-4ef4-a7e6-2da661357ad6,LIST_TRANSACTIONS,hbciListTransactions,false -49920,10c48923-5111-4ef4-a7e6-2da661357ad6,AUTHORIZATION,,false -49921,10c48923-5111-4ef4-a7e6-2da661357ad6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49922,10c48923-5111-4ef4-a7e6-2da661357ad6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49923,10c48923-5111-4ef4-a7e6-2da661357ad6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49918,34e1edfe-8391-426c-ab8e-321f307b6b2c,LIST_ACCOUNTS,hbciListAccounts,false +49919,34e1edfe-8391-426c-ab8e-321f307b6b2c,LIST_TRANSACTIONS,hbciListTransactions,false +49920,34e1edfe-8391-426c-ab8e-321f307b6b2c,AUTHORIZATION,,false +49921,34e1edfe-8391-426c-ab8e-321f307b6b2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49922,34e1edfe-8391-426c-ab8e-321f307b6b2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49923,34e1edfe-8391-426c-ab8e-321f307b6b2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49924,6c22c46a-2b15-4c21-bb33-be91c2bdf30b,LIST_ACCOUNTS,xs2aListAccounts,true -49925,6c22c46a-2b15-4c21-bb33-be91c2bdf30b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49925,6c22c46a-2b15-4c21-bb33-be91c2bdf30b,LIST_TRANSACTIONS,xs2aListTransactions,true 49926,6c22c46a-2b15-4c21-bb33-be91c2bdf30b,AUTHORIZATION,,true 49927,6c22c46a-2b15-4c21-bb33-be91c2bdf30b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49928,6c22c46a-2b15-4c21-bb33-be91c2bdf30b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49929,6c22c46a-2b15-4c21-bb33-be91c2bdf30b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49930,de308665-e8b7-480c-a37f-73894e3b5aeb,LIST_ACCOUNTS,hbciListAccounts,false -49931,de308665-e8b7-480c-a37f-73894e3b5aeb,LIST_TRANSACTIONS,hbciListTransactions,false -49932,de308665-e8b7-480c-a37f-73894e3b5aeb,AUTHORIZATION,,false -49933,de308665-e8b7-480c-a37f-73894e3b5aeb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49934,de308665-e8b7-480c-a37f-73894e3b5aeb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49935,de308665-e8b7-480c-a37f-73894e3b5aeb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49930,96092dd0-c2a2-4105-a997-16d723eea800,LIST_ACCOUNTS,hbciListAccounts,false +49931,96092dd0-c2a2-4105-a997-16d723eea800,LIST_TRANSACTIONS,hbciListTransactions,false +49932,96092dd0-c2a2-4105-a997-16d723eea800,AUTHORIZATION,,false +49933,96092dd0-c2a2-4105-a997-16d723eea800,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49934,96092dd0-c2a2-4105-a997-16d723eea800,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49935,96092dd0-c2a2-4105-a997-16d723eea800,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49936,84257fbb-ff0f-44f9-9ca7-8d082054b140,LIST_ACCOUNTS,xs2aListAccounts,true -49937,84257fbb-ff0f-44f9-9ca7-8d082054b140,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49937,84257fbb-ff0f-44f9-9ca7-8d082054b140,LIST_TRANSACTIONS,xs2aListTransactions,true 49938,84257fbb-ff0f-44f9-9ca7-8d082054b140,AUTHORIZATION,,true 49939,84257fbb-ff0f-44f9-9ca7-8d082054b140,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49940,84257fbb-ff0f-44f9-9ca7-8d082054b140,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49941,84257fbb-ff0f-44f9-9ca7-8d082054b140,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49942,25856696-ac38-42f7-b4a7-cf7640a6e7ec,LIST_ACCOUNTS,hbciListAccounts,false -49943,25856696-ac38-42f7-b4a7-cf7640a6e7ec,LIST_TRANSACTIONS,hbciListTransactions,false -49944,25856696-ac38-42f7-b4a7-cf7640a6e7ec,AUTHORIZATION,,false -49945,25856696-ac38-42f7-b4a7-cf7640a6e7ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49946,25856696-ac38-42f7-b4a7-cf7640a6e7ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49947,25856696-ac38-42f7-b4a7-cf7640a6e7ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49942,b5bbe05b-16f2-40e7-8bc4-eb275244fe4c,LIST_ACCOUNTS,hbciListAccounts,false +49943,b5bbe05b-16f2-40e7-8bc4-eb275244fe4c,LIST_TRANSACTIONS,hbciListTransactions,false +49944,b5bbe05b-16f2-40e7-8bc4-eb275244fe4c,AUTHORIZATION,,false +49945,b5bbe05b-16f2-40e7-8bc4-eb275244fe4c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49946,b5bbe05b-16f2-40e7-8bc4-eb275244fe4c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49947,b5bbe05b-16f2-40e7-8bc4-eb275244fe4c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49948,c507f6ae-abb3-46d1-ab49-a3d3f7fb7581,LIST_ACCOUNTS,xs2aListAccounts,true -49949,c507f6ae-abb3-46d1-ab49-a3d3f7fb7581,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49949,c507f6ae-abb3-46d1-ab49-a3d3f7fb7581,LIST_TRANSACTIONS,xs2aListTransactions,true 49950,c507f6ae-abb3-46d1-ab49-a3d3f7fb7581,AUTHORIZATION,,true 49951,c507f6ae-abb3-46d1-ab49-a3d3f7fb7581,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49952,c507f6ae-abb3-46d1-ab49-a3d3f7fb7581,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49953,c507f6ae-abb3-46d1-ab49-a3d3f7fb7581,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49954,4f76b500-f0a1-41b6-8036-1d74c0b3de7b,LIST_ACCOUNTS,hbciListAccounts,false -49955,4f76b500-f0a1-41b6-8036-1d74c0b3de7b,LIST_TRANSACTIONS,hbciListTransactions,false -49956,4f76b500-f0a1-41b6-8036-1d74c0b3de7b,AUTHORIZATION,,false -49957,4f76b500-f0a1-41b6-8036-1d74c0b3de7b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49958,4f76b500-f0a1-41b6-8036-1d74c0b3de7b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49959,4f76b500-f0a1-41b6-8036-1d74c0b3de7b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49954,2e934fc1-97a7-4566-9c65-48f9957b2631,LIST_ACCOUNTS,hbciListAccounts,false +49955,2e934fc1-97a7-4566-9c65-48f9957b2631,LIST_TRANSACTIONS,hbciListTransactions,false +49956,2e934fc1-97a7-4566-9c65-48f9957b2631,AUTHORIZATION,,false +49957,2e934fc1-97a7-4566-9c65-48f9957b2631,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49958,2e934fc1-97a7-4566-9c65-48f9957b2631,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49959,2e934fc1-97a7-4566-9c65-48f9957b2631,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49960,1a4b3fb4-a5fe-46c4-99bf-fad1fbfe68d9,LIST_ACCOUNTS,xs2aListAccounts,true -49961,1a4b3fb4-a5fe-46c4-99bf-fad1fbfe68d9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49961,1a4b3fb4-a5fe-46c4-99bf-fad1fbfe68d9,LIST_TRANSACTIONS,xs2aListTransactions,true 49962,1a4b3fb4-a5fe-46c4-99bf-fad1fbfe68d9,AUTHORIZATION,,true 49963,1a4b3fb4-a5fe-46c4-99bf-fad1fbfe68d9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49964,1a4b3fb4-a5fe-46c4-99bf-fad1fbfe68d9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49965,1a4b3fb4-a5fe-46c4-99bf-fad1fbfe68d9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49966,df801d23-de65-4e48-9470-b7f22fc11d50,LIST_ACCOUNTS,hbciListAccounts,false -49967,df801d23-de65-4e48-9470-b7f22fc11d50,LIST_TRANSACTIONS,hbciListTransactions,false -49968,df801d23-de65-4e48-9470-b7f22fc11d50,AUTHORIZATION,,false -49969,df801d23-de65-4e48-9470-b7f22fc11d50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49970,df801d23-de65-4e48-9470-b7f22fc11d50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49971,df801d23-de65-4e48-9470-b7f22fc11d50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49966,8b96b9db-1456-4476-9c29-592e1becc025,LIST_ACCOUNTS,hbciListAccounts,false +49967,8b96b9db-1456-4476-9c29-592e1becc025,LIST_TRANSACTIONS,hbciListTransactions,false +49968,8b96b9db-1456-4476-9c29-592e1becc025,AUTHORIZATION,,false +49969,8b96b9db-1456-4476-9c29-592e1becc025,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49970,8b96b9db-1456-4476-9c29-592e1becc025,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49971,8b96b9db-1456-4476-9c29-592e1becc025,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49972,d2e24554-d526-45d7-bcd7-a68a0bf0707b,LIST_ACCOUNTS,xs2aListAccounts,true -49973,d2e24554-d526-45d7-bcd7-a68a0bf0707b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49973,d2e24554-d526-45d7-bcd7-a68a0bf0707b,LIST_TRANSACTIONS,xs2aListTransactions,true 49974,d2e24554-d526-45d7-bcd7-a68a0bf0707b,AUTHORIZATION,,true 49975,d2e24554-d526-45d7-bcd7-a68a0bf0707b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49976,d2e24554-d526-45d7-bcd7-a68a0bf0707b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49977,d2e24554-d526-45d7-bcd7-a68a0bf0707b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49978,532747b5-0e54-4ca7-9f9f-4d7c085e6a12,LIST_ACCOUNTS,hbciListAccounts,false -49979,532747b5-0e54-4ca7-9f9f-4d7c085e6a12,LIST_TRANSACTIONS,hbciListTransactions,false -49980,532747b5-0e54-4ca7-9f9f-4d7c085e6a12,AUTHORIZATION,,false -49981,532747b5-0e54-4ca7-9f9f-4d7c085e6a12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49982,532747b5-0e54-4ca7-9f9f-4d7c085e6a12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49983,532747b5-0e54-4ca7-9f9f-4d7c085e6a12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49978,31195365-0002-4dfb-8f02-8e92f3134a3d,LIST_ACCOUNTS,hbciListAccounts,false +49979,31195365-0002-4dfb-8f02-8e92f3134a3d,LIST_TRANSACTIONS,hbciListTransactions,false +49980,31195365-0002-4dfb-8f02-8e92f3134a3d,AUTHORIZATION,,false +49981,31195365-0002-4dfb-8f02-8e92f3134a3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49982,31195365-0002-4dfb-8f02-8e92f3134a3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49983,31195365-0002-4dfb-8f02-8e92f3134a3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49984,eb869359-464d-4713-8155-2ea2b64781d4,LIST_ACCOUNTS,xs2aListAccounts,true -49985,eb869359-464d-4713-8155-2ea2b64781d4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49985,eb869359-464d-4713-8155-2ea2b64781d4,LIST_TRANSACTIONS,xs2aListTransactions,true 49986,eb869359-464d-4713-8155-2ea2b64781d4,AUTHORIZATION,,true 49987,eb869359-464d-4713-8155-2ea2b64781d4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 49988,eb869359-464d-4713-8155-2ea2b64781d4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 49989,eb869359-464d-4713-8155-2ea2b64781d4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -49990,27d2e3d3-5db8-4d72-9612-8dd25cbf73af,LIST_ACCOUNTS,hbciListAccounts,false -49991,27d2e3d3-5db8-4d72-9612-8dd25cbf73af,LIST_TRANSACTIONS,hbciListTransactions,false -49992,27d2e3d3-5db8-4d72-9612-8dd25cbf73af,AUTHORIZATION,,false -49993,27d2e3d3-5db8-4d72-9612-8dd25cbf73af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -49994,27d2e3d3-5db8-4d72-9612-8dd25cbf73af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -49995,27d2e3d3-5db8-4d72-9612-8dd25cbf73af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +49990,511c21b2-035b-497b-9b75-e53ab0a504ab,LIST_ACCOUNTS,hbciListAccounts,false +49991,511c21b2-035b-497b-9b75-e53ab0a504ab,LIST_TRANSACTIONS,hbciListTransactions,false +49992,511c21b2-035b-497b-9b75-e53ab0a504ab,AUTHORIZATION,,false +49993,511c21b2-035b-497b-9b75-e53ab0a504ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +49994,511c21b2-035b-497b-9b75-e53ab0a504ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +49995,511c21b2-035b-497b-9b75-e53ab0a504ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 49996,9073306a-5484-4017-968a-ff8451b4c436,LIST_ACCOUNTS,xs2aListAccounts,true -49997,9073306a-5484-4017-968a-ff8451b4c436,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +49997,9073306a-5484-4017-968a-ff8451b4c436,LIST_TRANSACTIONS,xs2aListTransactions,true 49998,9073306a-5484-4017-968a-ff8451b4c436,AUTHORIZATION,,true 49999,9073306a-5484-4017-968a-ff8451b4c436,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50000,9073306a-5484-4017-968a-ff8451b4c436,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50001,9073306a-5484-4017-968a-ff8451b4c436,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50002,d876fd10-9994-46dc-b2d0-9d753b67b8d4,LIST_ACCOUNTS,hbciListAccounts,false -50003,d876fd10-9994-46dc-b2d0-9d753b67b8d4,LIST_TRANSACTIONS,hbciListTransactions,false -50004,d876fd10-9994-46dc-b2d0-9d753b67b8d4,AUTHORIZATION,,false -50005,d876fd10-9994-46dc-b2d0-9d753b67b8d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50006,d876fd10-9994-46dc-b2d0-9d753b67b8d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50007,d876fd10-9994-46dc-b2d0-9d753b67b8d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50002,a0eec7c8-1ed5-453d-ac73-1b293ad48dc8,LIST_ACCOUNTS,hbciListAccounts,false +50003,a0eec7c8-1ed5-453d-ac73-1b293ad48dc8,LIST_TRANSACTIONS,hbciListTransactions,false +50004,a0eec7c8-1ed5-453d-ac73-1b293ad48dc8,AUTHORIZATION,,false +50005,a0eec7c8-1ed5-453d-ac73-1b293ad48dc8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50006,a0eec7c8-1ed5-453d-ac73-1b293ad48dc8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50007,a0eec7c8-1ed5-453d-ac73-1b293ad48dc8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50008,ae45d39a-cd94-45bf-9971-e98d75ffe462,LIST_ACCOUNTS,xs2aListAccounts,true -50009,ae45d39a-cd94-45bf-9971-e98d75ffe462,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50009,ae45d39a-cd94-45bf-9971-e98d75ffe462,LIST_TRANSACTIONS,xs2aListTransactions,true 50010,ae45d39a-cd94-45bf-9971-e98d75ffe462,AUTHORIZATION,,true 50011,ae45d39a-cd94-45bf-9971-e98d75ffe462,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50012,ae45d39a-cd94-45bf-9971-e98d75ffe462,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50013,ae45d39a-cd94-45bf-9971-e98d75ffe462,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50014,c27e2efa-dd00-49c2-9b94-0019b92f7360,LIST_ACCOUNTS,hbciListAccounts,false -50015,c27e2efa-dd00-49c2-9b94-0019b92f7360,LIST_TRANSACTIONS,hbciListTransactions,false -50016,c27e2efa-dd00-49c2-9b94-0019b92f7360,AUTHORIZATION,,false -50017,c27e2efa-dd00-49c2-9b94-0019b92f7360,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50018,c27e2efa-dd00-49c2-9b94-0019b92f7360,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50019,c27e2efa-dd00-49c2-9b94-0019b92f7360,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50014,8b81c6cd-d72a-4ce9-bea1-0def9f23d6cc,LIST_ACCOUNTS,hbciListAccounts,false +50015,8b81c6cd-d72a-4ce9-bea1-0def9f23d6cc,LIST_TRANSACTIONS,hbciListTransactions,false +50016,8b81c6cd-d72a-4ce9-bea1-0def9f23d6cc,AUTHORIZATION,,false +50017,8b81c6cd-d72a-4ce9-bea1-0def9f23d6cc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50018,8b81c6cd-d72a-4ce9-bea1-0def9f23d6cc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50019,8b81c6cd-d72a-4ce9-bea1-0def9f23d6cc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50020,109587cf-1978-4d7e-bf6e-fd78786a0239,LIST_ACCOUNTS,xs2aListAccounts,true -50021,109587cf-1978-4d7e-bf6e-fd78786a0239,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50021,109587cf-1978-4d7e-bf6e-fd78786a0239,LIST_TRANSACTIONS,xs2aListTransactions,true 50022,109587cf-1978-4d7e-bf6e-fd78786a0239,AUTHORIZATION,,true 50023,109587cf-1978-4d7e-bf6e-fd78786a0239,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50024,109587cf-1978-4d7e-bf6e-fd78786a0239,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50025,109587cf-1978-4d7e-bf6e-fd78786a0239,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50026,e9a79faf-6db1-48f9-9775-b271255e5ebd,LIST_ACCOUNTS,hbciListAccounts,false -50027,e9a79faf-6db1-48f9-9775-b271255e5ebd,LIST_TRANSACTIONS,hbciListTransactions,false -50028,e9a79faf-6db1-48f9-9775-b271255e5ebd,AUTHORIZATION,,false -50029,e9a79faf-6db1-48f9-9775-b271255e5ebd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50030,e9a79faf-6db1-48f9-9775-b271255e5ebd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50031,e9a79faf-6db1-48f9-9775-b271255e5ebd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50026,527095c3-8b41-41cd-b6e2-3433b4dad467,LIST_ACCOUNTS,hbciListAccounts,false +50027,527095c3-8b41-41cd-b6e2-3433b4dad467,LIST_TRANSACTIONS,hbciListTransactions,false +50028,527095c3-8b41-41cd-b6e2-3433b4dad467,AUTHORIZATION,,false +50029,527095c3-8b41-41cd-b6e2-3433b4dad467,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50030,527095c3-8b41-41cd-b6e2-3433b4dad467,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50031,527095c3-8b41-41cd-b6e2-3433b4dad467,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50032,df68efe6-2aee-452e-a0fa-e41236623af1,LIST_ACCOUNTS,xs2aListAccounts,true -50033,df68efe6-2aee-452e-a0fa-e41236623af1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50033,df68efe6-2aee-452e-a0fa-e41236623af1,LIST_TRANSACTIONS,xs2aListTransactions,true 50034,df68efe6-2aee-452e-a0fa-e41236623af1,AUTHORIZATION,,true 50035,df68efe6-2aee-452e-a0fa-e41236623af1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50036,df68efe6-2aee-452e-a0fa-e41236623af1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50037,df68efe6-2aee-452e-a0fa-e41236623af1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50038,c9b93d81-04e9-49e6-b416-c61cf6431052,LIST_ACCOUNTS,hbciListAccounts,false -50039,c9b93d81-04e9-49e6-b416-c61cf6431052,LIST_TRANSACTIONS,hbciListTransactions,false -50040,c9b93d81-04e9-49e6-b416-c61cf6431052,AUTHORIZATION,,false -50041,c9b93d81-04e9-49e6-b416-c61cf6431052,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50042,c9b93d81-04e9-49e6-b416-c61cf6431052,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50043,c9b93d81-04e9-49e6-b416-c61cf6431052,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50038,6107251c-07f9-4133-9739-4f228596d1ef,LIST_ACCOUNTS,hbciListAccounts,false +50039,6107251c-07f9-4133-9739-4f228596d1ef,LIST_TRANSACTIONS,hbciListTransactions,false +50040,6107251c-07f9-4133-9739-4f228596d1ef,AUTHORIZATION,,false +50041,6107251c-07f9-4133-9739-4f228596d1ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50042,6107251c-07f9-4133-9739-4f228596d1ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50043,6107251c-07f9-4133-9739-4f228596d1ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50044,2fa80923-3aa6-4bdd-b3a8-379efbac1246,LIST_ACCOUNTS,xs2aListAccounts,true -50045,2fa80923-3aa6-4bdd-b3a8-379efbac1246,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50045,2fa80923-3aa6-4bdd-b3a8-379efbac1246,LIST_TRANSACTIONS,xs2aListTransactions,true 50046,2fa80923-3aa6-4bdd-b3a8-379efbac1246,AUTHORIZATION,,true 50047,2fa80923-3aa6-4bdd-b3a8-379efbac1246,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50048,2fa80923-3aa6-4bdd-b3a8-379efbac1246,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50049,2fa80923-3aa6-4bdd-b3a8-379efbac1246,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50050,0cede116-aae2-4912-86ba-52cd656ebeac,LIST_ACCOUNTS,hbciListAccounts,false -50051,0cede116-aae2-4912-86ba-52cd656ebeac,LIST_TRANSACTIONS,hbciListTransactions,false -50052,0cede116-aae2-4912-86ba-52cd656ebeac,AUTHORIZATION,,false -50053,0cede116-aae2-4912-86ba-52cd656ebeac,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50054,0cede116-aae2-4912-86ba-52cd656ebeac,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50055,0cede116-aae2-4912-86ba-52cd656ebeac,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50050,42332c96-2341-4281-aec1-e0e7efffff6a,LIST_ACCOUNTS,hbciListAccounts,false +50051,42332c96-2341-4281-aec1-e0e7efffff6a,LIST_TRANSACTIONS,hbciListTransactions,false +50052,42332c96-2341-4281-aec1-e0e7efffff6a,AUTHORIZATION,,false +50053,42332c96-2341-4281-aec1-e0e7efffff6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50054,42332c96-2341-4281-aec1-e0e7efffff6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50055,42332c96-2341-4281-aec1-e0e7efffff6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50056,0e770285-2f67-416a-b170-6aad0c3f82e0,LIST_ACCOUNTS,xs2aListAccounts,true -50057,0e770285-2f67-416a-b170-6aad0c3f82e0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50057,0e770285-2f67-416a-b170-6aad0c3f82e0,LIST_TRANSACTIONS,xs2aListTransactions,true 50058,0e770285-2f67-416a-b170-6aad0c3f82e0,AUTHORIZATION,,true 50059,0e770285-2f67-416a-b170-6aad0c3f82e0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50060,0e770285-2f67-416a-b170-6aad0c3f82e0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50061,0e770285-2f67-416a-b170-6aad0c3f82e0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50062,4969c4ec-13ad-4142-ba49-d46564c8d561,LIST_ACCOUNTS,hbciListAccounts,false -50063,4969c4ec-13ad-4142-ba49-d46564c8d561,LIST_TRANSACTIONS,hbciListTransactions,false -50064,4969c4ec-13ad-4142-ba49-d46564c8d561,AUTHORIZATION,,false -50065,4969c4ec-13ad-4142-ba49-d46564c8d561,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50066,4969c4ec-13ad-4142-ba49-d46564c8d561,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50067,4969c4ec-13ad-4142-ba49-d46564c8d561,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50062,f27f9626-3c54-4725-b8e4-b1621dc87b8a,LIST_ACCOUNTS,hbciListAccounts,false +50063,f27f9626-3c54-4725-b8e4-b1621dc87b8a,LIST_TRANSACTIONS,hbciListTransactions,false +50064,f27f9626-3c54-4725-b8e4-b1621dc87b8a,AUTHORIZATION,,false +50065,f27f9626-3c54-4725-b8e4-b1621dc87b8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50066,f27f9626-3c54-4725-b8e4-b1621dc87b8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50067,f27f9626-3c54-4725-b8e4-b1621dc87b8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50068,32e9f74a-4b1e-4454-92fd-4b30e6cf8410,LIST_ACCOUNTS,xs2aListAccounts,true -50069,32e9f74a-4b1e-4454-92fd-4b30e6cf8410,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50069,32e9f74a-4b1e-4454-92fd-4b30e6cf8410,LIST_TRANSACTIONS,xs2aListTransactions,true 50070,32e9f74a-4b1e-4454-92fd-4b30e6cf8410,AUTHORIZATION,,true 50071,32e9f74a-4b1e-4454-92fd-4b30e6cf8410,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50072,32e9f74a-4b1e-4454-92fd-4b30e6cf8410,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50073,32e9f74a-4b1e-4454-92fd-4b30e6cf8410,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50074,6600a194-a148-4a32-b682-2b31b4600f1c,LIST_ACCOUNTS,hbciListAccounts,false -50075,6600a194-a148-4a32-b682-2b31b4600f1c,LIST_TRANSACTIONS,hbciListTransactions,false -50076,6600a194-a148-4a32-b682-2b31b4600f1c,AUTHORIZATION,,false -50077,6600a194-a148-4a32-b682-2b31b4600f1c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50078,6600a194-a148-4a32-b682-2b31b4600f1c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50079,6600a194-a148-4a32-b682-2b31b4600f1c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50074,b7045a75-244f-4e25-a07d-09535fe38762,LIST_ACCOUNTS,hbciListAccounts,false +50075,b7045a75-244f-4e25-a07d-09535fe38762,LIST_TRANSACTIONS,hbciListTransactions,false +50076,b7045a75-244f-4e25-a07d-09535fe38762,AUTHORIZATION,,false +50077,b7045a75-244f-4e25-a07d-09535fe38762,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50078,b7045a75-244f-4e25-a07d-09535fe38762,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50079,b7045a75-244f-4e25-a07d-09535fe38762,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50080,317592d6-2d63-4e5c-b6fa-96f2ba44e8a7,LIST_ACCOUNTS,xs2aListAccounts,true -50081,317592d6-2d63-4e5c-b6fa-96f2ba44e8a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50081,317592d6-2d63-4e5c-b6fa-96f2ba44e8a7,LIST_TRANSACTIONS,xs2aListTransactions,true 50082,317592d6-2d63-4e5c-b6fa-96f2ba44e8a7,AUTHORIZATION,,true 50083,317592d6-2d63-4e5c-b6fa-96f2ba44e8a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50084,317592d6-2d63-4e5c-b6fa-96f2ba44e8a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50085,317592d6-2d63-4e5c-b6fa-96f2ba44e8a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50086,873729f7-37f1-40c2-901a-5fe2bc1d98f3,LIST_ACCOUNTS,hbciListAccounts,false -50087,873729f7-37f1-40c2-901a-5fe2bc1d98f3,LIST_TRANSACTIONS,hbciListTransactions,false -50088,873729f7-37f1-40c2-901a-5fe2bc1d98f3,AUTHORIZATION,,false -50089,873729f7-37f1-40c2-901a-5fe2bc1d98f3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50090,873729f7-37f1-40c2-901a-5fe2bc1d98f3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50091,873729f7-37f1-40c2-901a-5fe2bc1d98f3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50086,c66aeed4-66c5-4d1f-92fe-dfc9ccde0256,LIST_ACCOUNTS,hbciListAccounts,false +50087,c66aeed4-66c5-4d1f-92fe-dfc9ccde0256,LIST_TRANSACTIONS,hbciListTransactions,false +50088,c66aeed4-66c5-4d1f-92fe-dfc9ccde0256,AUTHORIZATION,,false +50089,c66aeed4-66c5-4d1f-92fe-dfc9ccde0256,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50090,c66aeed4-66c5-4d1f-92fe-dfc9ccde0256,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50091,c66aeed4-66c5-4d1f-92fe-dfc9ccde0256,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50092,cc260db1-277c-4c16-8246-47c09610def0,LIST_ACCOUNTS,xs2aListAccounts,true -50093,cc260db1-277c-4c16-8246-47c09610def0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50093,cc260db1-277c-4c16-8246-47c09610def0,LIST_TRANSACTIONS,xs2aListTransactions,true 50094,cc260db1-277c-4c16-8246-47c09610def0,AUTHORIZATION,,true 50095,cc260db1-277c-4c16-8246-47c09610def0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50096,cc260db1-277c-4c16-8246-47c09610def0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50097,cc260db1-277c-4c16-8246-47c09610def0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50098,15882e70-8a23-45f3-9c60-ec023a35594f,LIST_ACCOUNTS,hbciListAccounts,false -50099,15882e70-8a23-45f3-9c60-ec023a35594f,LIST_TRANSACTIONS,hbciListTransactions,false -50100,15882e70-8a23-45f3-9c60-ec023a35594f,AUTHORIZATION,,false -50101,15882e70-8a23-45f3-9c60-ec023a35594f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50102,15882e70-8a23-45f3-9c60-ec023a35594f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50103,15882e70-8a23-45f3-9c60-ec023a35594f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50098,5b6958c6-2d94-40bc-bcfb-d1e3cefa5de1,LIST_ACCOUNTS,hbciListAccounts,false +50099,5b6958c6-2d94-40bc-bcfb-d1e3cefa5de1,LIST_TRANSACTIONS,hbciListTransactions,false +50100,5b6958c6-2d94-40bc-bcfb-d1e3cefa5de1,AUTHORIZATION,,false +50101,5b6958c6-2d94-40bc-bcfb-d1e3cefa5de1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50102,5b6958c6-2d94-40bc-bcfb-d1e3cefa5de1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50103,5b6958c6-2d94-40bc-bcfb-d1e3cefa5de1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50104,3acafcd1-a18d-447f-9385-7eb7db60aeb6,LIST_ACCOUNTS,xs2aListAccounts,true -50105,3acafcd1-a18d-447f-9385-7eb7db60aeb6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50105,3acafcd1-a18d-447f-9385-7eb7db60aeb6,LIST_TRANSACTIONS,xs2aListTransactions,true 50106,3acafcd1-a18d-447f-9385-7eb7db60aeb6,AUTHORIZATION,,true 50107,3acafcd1-a18d-447f-9385-7eb7db60aeb6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50108,3acafcd1-a18d-447f-9385-7eb7db60aeb6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50109,3acafcd1-a18d-447f-9385-7eb7db60aeb6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50110,c4f63e86-3a44-401b-aada-3e22f4489ce3,LIST_ACCOUNTS,hbciListAccounts,false -50111,c4f63e86-3a44-401b-aada-3e22f4489ce3,LIST_TRANSACTIONS,hbciListTransactions,false -50112,c4f63e86-3a44-401b-aada-3e22f4489ce3,AUTHORIZATION,,false -50113,c4f63e86-3a44-401b-aada-3e22f4489ce3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50114,c4f63e86-3a44-401b-aada-3e22f4489ce3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50115,c4f63e86-3a44-401b-aada-3e22f4489ce3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50110,d06b3fc7-b1fb-4c76-9327-a454dfdc9d32,LIST_ACCOUNTS,hbciListAccounts,false +50111,d06b3fc7-b1fb-4c76-9327-a454dfdc9d32,LIST_TRANSACTIONS,hbciListTransactions,false +50112,d06b3fc7-b1fb-4c76-9327-a454dfdc9d32,AUTHORIZATION,,false +50113,d06b3fc7-b1fb-4c76-9327-a454dfdc9d32,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50114,d06b3fc7-b1fb-4c76-9327-a454dfdc9d32,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50115,d06b3fc7-b1fb-4c76-9327-a454dfdc9d32,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50116,4127dc09-b302-4be4-a5a0-87bb9ee20606,LIST_ACCOUNTS,xs2aListAccounts,true -50117,4127dc09-b302-4be4-a5a0-87bb9ee20606,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50117,4127dc09-b302-4be4-a5a0-87bb9ee20606,LIST_TRANSACTIONS,xs2aListTransactions,true 50118,4127dc09-b302-4be4-a5a0-87bb9ee20606,AUTHORIZATION,,true 50119,4127dc09-b302-4be4-a5a0-87bb9ee20606,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50120,4127dc09-b302-4be4-a5a0-87bb9ee20606,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50121,4127dc09-b302-4be4-a5a0-87bb9ee20606,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50122,80db2773-d331-4c86-944c-1d948a8dd576,LIST_ACCOUNTS,hbciListAccounts,false -50123,80db2773-d331-4c86-944c-1d948a8dd576,LIST_TRANSACTIONS,hbciListTransactions,false -50124,80db2773-d331-4c86-944c-1d948a8dd576,AUTHORIZATION,,false -50125,80db2773-d331-4c86-944c-1d948a8dd576,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50126,80db2773-d331-4c86-944c-1d948a8dd576,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50127,80db2773-d331-4c86-944c-1d948a8dd576,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50122,8093fb7d-ec5b-4da8-b61e-79e4859be25b,LIST_ACCOUNTS,hbciListAccounts,false +50123,8093fb7d-ec5b-4da8-b61e-79e4859be25b,LIST_TRANSACTIONS,hbciListTransactions,false +50124,8093fb7d-ec5b-4da8-b61e-79e4859be25b,AUTHORIZATION,,false +50125,8093fb7d-ec5b-4da8-b61e-79e4859be25b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50126,8093fb7d-ec5b-4da8-b61e-79e4859be25b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50127,8093fb7d-ec5b-4da8-b61e-79e4859be25b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50128,e9697f6c-4051-4ea7-89f3-6954f20b33ea,LIST_ACCOUNTS,xs2aListAccounts,true -50129,e9697f6c-4051-4ea7-89f3-6954f20b33ea,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50129,e9697f6c-4051-4ea7-89f3-6954f20b33ea,LIST_TRANSACTIONS,xs2aListTransactions,true 50130,e9697f6c-4051-4ea7-89f3-6954f20b33ea,AUTHORIZATION,,true 50131,e9697f6c-4051-4ea7-89f3-6954f20b33ea,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50132,e9697f6c-4051-4ea7-89f3-6954f20b33ea,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50133,e9697f6c-4051-4ea7-89f3-6954f20b33ea,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50134,1e09c840-8a5d-4191-9a1d-b8544f2a34d5,LIST_ACCOUNTS,hbciListAccounts,false -50135,1e09c840-8a5d-4191-9a1d-b8544f2a34d5,LIST_TRANSACTIONS,hbciListTransactions,false -50136,1e09c840-8a5d-4191-9a1d-b8544f2a34d5,AUTHORIZATION,,false -50137,1e09c840-8a5d-4191-9a1d-b8544f2a34d5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50138,1e09c840-8a5d-4191-9a1d-b8544f2a34d5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50139,1e09c840-8a5d-4191-9a1d-b8544f2a34d5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50134,05476643-901f-441a-acf6-72882ea9ddef,LIST_ACCOUNTS,hbciListAccounts,false +50135,05476643-901f-441a-acf6-72882ea9ddef,LIST_TRANSACTIONS,hbciListTransactions,false +50136,05476643-901f-441a-acf6-72882ea9ddef,AUTHORIZATION,,false +50137,05476643-901f-441a-acf6-72882ea9ddef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50138,05476643-901f-441a-acf6-72882ea9ddef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50139,05476643-901f-441a-acf6-72882ea9ddef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50140,148ea384-775a-405f-a031-780e574469f0,LIST_ACCOUNTS,xs2aListAccounts,true -50141,148ea384-775a-405f-a031-780e574469f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50141,148ea384-775a-405f-a031-780e574469f0,LIST_TRANSACTIONS,xs2aListTransactions,true 50142,148ea384-775a-405f-a031-780e574469f0,AUTHORIZATION,,true 50143,148ea384-775a-405f-a031-780e574469f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50144,148ea384-775a-405f-a031-780e574469f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50145,148ea384-775a-405f-a031-780e574469f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50146,927719ee-3466-4aee-a77a-db40f8f2d953,LIST_ACCOUNTS,hbciListAccounts,false -50147,927719ee-3466-4aee-a77a-db40f8f2d953,LIST_TRANSACTIONS,hbciListTransactions,false -50148,927719ee-3466-4aee-a77a-db40f8f2d953,AUTHORIZATION,,false -50149,927719ee-3466-4aee-a77a-db40f8f2d953,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50150,927719ee-3466-4aee-a77a-db40f8f2d953,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50151,927719ee-3466-4aee-a77a-db40f8f2d953,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50146,2d905ff5-b724-4793-8f5e-b61612549853,LIST_ACCOUNTS,hbciListAccounts,false +50147,2d905ff5-b724-4793-8f5e-b61612549853,LIST_TRANSACTIONS,hbciListTransactions,false +50148,2d905ff5-b724-4793-8f5e-b61612549853,AUTHORIZATION,,false +50149,2d905ff5-b724-4793-8f5e-b61612549853,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50150,2d905ff5-b724-4793-8f5e-b61612549853,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50151,2d905ff5-b724-4793-8f5e-b61612549853,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50152,7725554e-c089-4042-8793-ea1b35f773c9,LIST_ACCOUNTS,xs2aListAccounts,true -50153,7725554e-c089-4042-8793-ea1b35f773c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50153,7725554e-c089-4042-8793-ea1b35f773c9,LIST_TRANSACTIONS,xs2aListTransactions,true 50154,7725554e-c089-4042-8793-ea1b35f773c9,AUTHORIZATION,,true 50155,7725554e-c089-4042-8793-ea1b35f773c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50156,7725554e-c089-4042-8793-ea1b35f773c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50157,7725554e-c089-4042-8793-ea1b35f773c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50158,4b808f3f-042c-4d0b-bf61-91ba73381b5d,LIST_ACCOUNTS,hbciListAccounts,false -50159,4b808f3f-042c-4d0b-bf61-91ba73381b5d,LIST_TRANSACTIONS,hbciListTransactions,false -50160,4b808f3f-042c-4d0b-bf61-91ba73381b5d,AUTHORIZATION,,false -50161,4b808f3f-042c-4d0b-bf61-91ba73381b5d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50162,4b808f3f-042c-4d0b-bf61-91ba73381b5d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50163,4b808f3f-042c-4d0b-bf61-91ba73381b5d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50158,89f20fc2-b45d-4f17-bf89-c45f78ab6a7f,LIST_ACCOUNTS,hbciListAccounts,false +50159,89f20fc2-b45d-4f17-bf89-c45f78ab6a7f,LIST_TRANSACTIONS,hbciListTransactions,false +50160,89f20fc2-b45d-4f17-bf89-c45f78ab6a7f,AUTHORIZATION,,false +50161,89f20fc2-b45d-4f17-bf89-c45f78ab6a7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50162,89f20fc2-b45d-4f17-bf89-c45f78ab6a7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50163,89f20fc2-b45d-4f17-bf89-c45f78ab6a7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50164,25a0abd5-48ea-4ec0-9226-5b4b466f3aa0,LIST_ACCOUNTS,xs2aListAccounts,true -50165,25a0abd5-48ea-4ec0-9226-5b4b466f3aa0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50165,25a0abd5-48ea-4ec0-9226-5b4b466f3aa0,LIST_TRANSACTIONS,xs2aListTransactions,true 50166,25a0abd5-48ea-4ec0-9226-5b4b466f3aa0,AUTHORIZATION,,true 50167,25a0abd5-48ea-4ec0-9226-5b4b466f3aa0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50168,25a0abd5-48ea-4ec0-9226-5b4b466f3aa0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50169,25a0abd5-48ea-4ec0-9226-5b4b466f3aa0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50170,cec23901-17d0-4201-82d7-0526d539bfd3,LIST_ACCOUNTS,hbciListAccounts,false -50171,cec23901-17d0-4201-82d7-0526d539bfd3,LIST_TRANSACTIONS,hbciListTransactions,false -50172,cec23901-17d0-4201-82d7-0526d539bfd3,AUTHORIZATION,,false -50173,cec23901-17d0-4201-82d7-0526d539bfd3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50174,cec23901-17d0-4201-82d7-0526d539bfd3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50175,cec23901-17d0-4201-82d7-0526d539bfd3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50170,5995bff3-068c-4d98-9f7d-03ecd60c6775,LIST_ACCOUNTS,hbciListAccounts,false +50171,5995bff3-068c-4d98-9f7d-03ecd60c6775,LIST_TRANSACTIONS,hbciListTransactions,false +50172,5995bff3-068c-4d98-9f7d-03ecd60c6775,AUTHORIZATION,,false +50173,5995bff3-068c-4d98-9f7d-03ecd60c6775,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50174,5995bff3-068c-4d98-9f7d-03ecd60c6775,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50175,5995bff3-068c-4d98-9f7d-03ecd60c6775,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50176,50b5cef2-309a-4a14-8bf2-e134cb09eb0d,LIST_ACCOUNTS,xs2aListAccounts,true -50177,50b5cef2-309a-4a14-8bf2-e134cb09eb0d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50177,50b5cef2-309a-4a14-8bf2-e134cb09eb0d,LIST_TRANSACTIONS,xs2aListTransactions,true 50178,50b5cef2-309a-4a14-8bf2-e134cb09eb0d,AUTHORIZATION,,true 50179,50b5cef2-309a-4a14-8bf2-e134cb09eb0d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50180,50b5cef2-309a-4a14-8bf2-e134cb09eb0d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50181,50b5cef2-309a-4a14-8bf2-e134cb09eb0d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50182,c2a9e272-3101-464c-abb3-3563c9ace544,LIST_ACCOUNTS,hbciListAccounts,false -50183,c2a9e272-3101-464c-abb3-3563c9ace544,LIST_TRANSACTIONS,hbciListTransactions,false -50184,c2a9e272-3101-464c-abb3-3563c9ace544,AUTHORIZATION,,false -50185,c2a9e272-3101-464c-abb3-3563c9ace544,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50186,c2a9e272-3101-464c-abb3-3563c9ace544,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50187,c2a9e272-3101-464c-abb3-3563c9ace544,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50182,7808d440-9084-4cec-bd87-227bf85a5f7f,LIST_ACCOUNTS,hbciListAccounts,false +50183,7808d440-9084-4cec-bd87-227bf85a5f7f,LIST_TRANSACTIONS,hbciListTransactions,false +50184,7808d440-9084-4cec-bd87-227bf85a5f7f,AUTHORIZATION,,false +50185,7808d440-9084-4cec-bd87-227bf85a5f7f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50186,7808d440-9084-4cec-bd87-227bf85a5f7f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50187,7808d440-9084-4cec-bd87-227bf85a5f7f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50188,a5912959-18df-4bb8-8040-e58fe6dd760f,LIST_ACCOUNTS,xs2aListAccounts,true -50189,a5912959-18df-4bb8-8040-e58fe6dd760f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50189,a5912959-18df-4bb8-8040-e58fe6dd760f,LIST_TRANSACTIONS,xs2aListTransactions,true 50190,a5912959-18df-4bb8-8040-e58fe6dd760f,AUTHORIZATION,,true 50191,a5912959-18df-4bb8-8040-e58fe6dd760f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50192,a5912959-18df-4bb8-8040-e58fe6dd760f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50193,a5912959-18df-4bb8-8040-e58fe6dd760f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50194,cb193d1d-e050-48e8-89d3-8678cd6b8127,LIST_ACCOUNTS,hbciListAccounts,false -50195,cb193d1d-e050-48e8-89d3-8678cd6b8127,LIST_TRANSACTIONS,hbciListTransactions,false -50196,cb193d1d-e050-48e8-89d3-8678cd6b8127,AUTHORIZATION,,false -50197,cb193d1d-e050-48e8-89d3-8678cd6b8127,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50198,cb193d1d-e050-48e8-89d3-8678cd6b8127,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50199,cb193d1d-e050-48e8-89d3-8678cd6b8127,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50194,c27f5fa5-bf93-486c-ba40-b7fd9c1cca21,LIST_ACCOUNTS,hbciListAccounts,false +50195,c27f5fa5-bf93-486c-ba40-b7fd9c1cca21,LIST_TRANSACTIONS,hbciListTransactions,false +50196,c27f5fa5-bf93-486c-ba40-b7fd9c1cca21,AUTHORIZATION,,false +50197,c27f5fa5-bf93-486c-ba40-b7fd9c1cca21,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50198,c27f5fa5-bf93-486c-ba40-b7fd9c1cca21,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50199,c27f5fa5-bf93-486c-ba40-b7fd9c1cca21,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50200,97d8dd07-db98-419f-9bb1-b358a0e7cdfc,LIST_ACCOUNTS,xs2aListAccounts,true -50201,97d8dd07-db98-419f-9bb1-b358a0e7cdfc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50201,97d8dd07-db98-419f-9bb1-b358a0e7cdfc,LIST_TRANSACTIONS,xs2aListTransactions,true 50202,97d8dd07-db98-419f-9bb1-b358a0e7cdfc,AUTHORIZATION,,true 50203,97d8dd07-db98-419f-9bb1-b358a0e7cdfc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50204,97d8dd07-db98-419f-9bb1-b358a0e7cdfc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50205,97d8dd07-db98-419f-9bb1-b358a0e7cdfc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50206,ffa69c97-7206-41e9-987f-2d7946c51ce3,LIST_ACCOUNTS,hbciListAccounts,false -50207,ffa69c97-7206-41e9-987f-2d7946c51ce3,LIST_TRANSACTIONS,hbciListTransactions,false -50208,ffa69c97-7206-41e9-987f-2d7946c51ce3,AUTHORIZATION,,false -50209,ffa69c97-7206-41e9-987f-2d7946c51ce3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50210,ffa69c97-7206-41e9-987f-2d7946c51ce3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50211,ffa69c97-7206-41e9-987f-2d7946c51ce3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50206,c72814c9-f31d-4d0d-adcd-dd5f53bace62,LIST_ACCOUNTS,hbciListAccounts,false +50207,c72814c9-f31d-4d0d-adcd-dd5f53bace62,LIST_TRANSACTIONS,hbciListTransactions,false +50208,c72814c9-f31d-4d0d-adcd-dd5f53bace62,AUTHORIZATION,,false +50209,c72814c9-f31d-4d0d-adcd-dd5f53bace62,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50210,c72814c9-f31d-4d0d-adcd-dd5f53bace62,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50211,c72814c9-f31d-4d0d-adcd-dd5f53bace62,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50212,88a6b09e-aa1a-4128-acb2-9a4d7dd88356,LIST_ACCOUNTS,xs2aListAccounts,true -50213,88a6b09e-aa1a-4128-acb2-9a4d7dd88356,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50213,88a6b09e-aa1a-4128-acb2-9a4d7dd88356,LIST_TRANSACTIONS,xs2aListTransactions,true 50214,88a6b09e-aa1a-4128-acb2-9a4d7dd88356,AUTHORIZATION,,true 50215,88a6b09e-aa1a-4128-acb2-9a4d7dd88356,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50216,88a6b09e-aa1a-4128-acb2-9a4d7dd88356,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50217,88a6b09e-aa1a-4128-acb2-9a4d7dd88356,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50218,e7e8caa5-a4d8-4a40-8d45-7b5f55eb18ca,LIST_ACCOUNTS,hbciListAccounts,false -50219,e7e8caa5-a4d8-4a40-8d45-7b5f55eb18ca,LIST_TRANSACTIONS,hbciListTransactions,false -50220,e7e8caa5-a4d8-4a40-8d45-7b5f55eb18ca,AUTHORIZATION,,false -50221,e7e8caa5-a4d8-4a40-8d45-7b5f55eb18ca,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50222,e7e8caa5-a4d8-4a40-8d45-7b5f55eb18ca,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50223,e7e8caa5-a4d8-4a40-8d45-7b5f55eb18ca,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50218,242040ca-236f-489a-8e45-6ab443d2bf09,LIST_ACCOUNTS,hbciListAccounts,false +50219,242040ca-236f-489a-8e45-6ab443d2bf09,LIST_TRANSACTIONS,hbciListTransactions,false +50220,242040ca-236f-489a-8e45-6ab443d2bf09,AUTHORIZATION,,false +50221,242040ca-236f-489a-8e45-6ab443d2bf09,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50222,242040ca-236f-489a-8e45-6ab443d2bf09,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50223,242040ca-236f-489a-8e45-6ab443d2bf09,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50224,27217ee9-08d2-4519-b34a-8007a4098570,LIST_ACCOUNTS,xs2aListAccounts,true -50225,27217ee9-08d2-4519-b34a-8007a4098570,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50225,27217ee9-08d2-4519-b34a-8007a4098570,LIST_TRANSACTIONS,xs2aListTransactions,true 50226,27217ee9-08d2-4519-b34a-8007a4098570,AUTHORIZATION,,true 50227,27217ee9-08d2-4519-b34a-8007a4098570,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50228,27217ee9-08d2-4519-b34a-8007a4098570,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50229,27217ee9-08d2-4519-b34a-8007a4098570,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50230,fd844e94-3515-4269-b582-c89ad23e7756,LIST_ACCOUNTS,hbciListAccounts,false -50231,fd844e94-3515-4269-b582-c89ad23e7756,LIST_TRANSACTIONS,hbciListTransactions,false -50232,fd844e94-3515-4269-b582-c89ad23e7756,AUTHORIZATION,,false -50233,fd844e94-3515-4269-b582-c89ad23e7756,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50234,fd844e94-3515-4269-b582-c89ad23e7756,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50235,fd844e94-3515-4269-b582-c89ad23e7756,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50230,fb7cac96-dded-4b6b-a236-21c1d73e98d0,LIST_ACCOUNTS,hbciListAccounts,false +50231,fb7cac96-dded-4b6b-a236-21c1d73e98d0,LIST_TRANSACTIONS,hbciListTransactions,false +50232,fb7cac96-dded-4b6b-a236-21c1d73e98d0,AUTHORIZATION,,false +50233,fb7cac96-dded-4b6b-a236-21c1d73e98d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50234,fb7cac96-dded-4b6b-a236-21c1d73e98d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50235,fb7cac96-dded-4b6b-a236-21c1d73e98d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50236,3efb44d7-e531-4c66-afc5-276e671441c4,LIST_ACCOUNTS,xs2aListAccounts,true -50237,3efb44d7-e531-4c66-afc5-276e671441c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50237,3efb44d7-e531-4c66-afc5-276e671441c4,LIST_TRANSACTIONS,xs2aListTransactions,true 50238,3efb44d7-e531-4c66-afc5-276e671441c4,AUTHORIZATION,,true 50239,3efb44d7-e531-4c66-afc5-276e671441c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50240,3efb44d7-e531-4c66-afc5-276e671441c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50241,3efb44d7-e531-4c66-afc5-276e671441c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50242,5ed50480-7126-448b-9635-73b896c3b82d,LIST_ACCOUNTS,hbciListAccounts,false -50243,5ed50480-7126-448b-9635-73b896c3b82d,LIST_TRANSACTIONS,hbciListTransactions,false -50244,5ed50480-7126-448b-9635-73b896c3b82d,AUTHORIZATION,,false -50245,5ed50480-7126-448b-9635-73b896c3b82d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50246,5ed50480-7126-448b-9635-73b896c3b82d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50247,5ed50480-7126-448b-9635-73b896c3b82d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50242,761e7cbd-6a3e-460e-8cba-6143e8cf785a,LIST_ACCOUNTS,hbciListAccounts,false +50243,761e7cbd-6a3e-460e-8cba-6143e8cf785a,LIST_TRANSACTIONS,hbciListTransactions,false +50244,761e7cbd-6a3e-460e-8cba-6143e8cf785a,AUTHORIZATION,,false +50245,761e7cbd-6a3e-460e-8cba-6143e8cf785a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50246,761e7cbd-6a3e-460e-8cba-6143e8cf785a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50247,761e7cbd-6a3e-460e-8cba-6143e8cf785a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50248,8b6f19dc-d38c-4b91-abe4-4cf81751c6f6,LIST_ACCOUNTS,xs2aListAccounts,true -50249,8b6f19dc-d38c-4b91-abe4-4cf81751c6f6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50249,8b6f19dc-d38c-4b91-abe4-4cf81751c6f6,LIST_TRANSACTIONS,xs2aListTransactions,true 50250,8b6f19dc-d38c-4b91-abe4-4cf81751c6f6,AUTHORIZATION,,true 50251,8b6f19dc-d38c-4b91-abe4-4cf81751c6f6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50252,8b6f19dc-d38c-4b91-abe4-4cf81751c6f6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50253,8b6f19dc-d38c-4b91-abe4-4cf81751c6f6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50254,92023f7f-0196-4ead-aba8-3e217afdbb6a,LIST_ACCOUNTS,hbciListAccounts,false -50255,92023f7f-0196-4ead-aba8-3e217afdbb6a,LIST_TRANSACTIONS,hbciListTransactions,false -50256,92023f7f-0196-4ead-aba8-3e217afdbb6a,AUTHORIZATION,,false -50257,92023f7f-0196-4ead-aba8-3e217afdbb6a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50258,92023f7f-0196-4ead-aba8-3e217afdbb6a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50259,92023f7f-0196-4ead-aba8-3e217afdbb6a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50254,916ef425-11ef-4975-b096-629ffd732066,LIST_ACCOUNTS,hbciListAccounts,false +50255,916ef425-11ef-4975-b096-629ffd732066,LIST_TRANSACTIONS,hbciListTransactions,false +50256,916ef425-11ef-4975-b096-629ffd732066,AUTHORIZATION,,false +50257,916ef425-11ef-4975-b096-629ffd732066,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50258,916ef425-11ef-4975-b096-629ffd732066,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50259,916ef425-11ef-4975-b096-629ffd732066,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50260,7d1faac5-4378-4d6c-9996-07422ef8e992,LIST_ACCOUNTS,xs2aListAccounts,true -50261,7d1faac5-4378-4d6c-9996-07422ef8e992,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50261,7d1faac5-4378-4d6c-9996-07422ef8e992,LIST_TRANSACTIONS,xs2aListTransactions,true 50262,7d1faac5-4378-4d6c-9996-07422ef8e992,AUTHORIZATION,,true 50263,7d1faac5-4378-4d6c-9996-07422ef8e992,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50264,7d1faac5-4378-4d6c-9996-07422ef8e992,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50265,7d1faac5-4378-4d6c-9996-07422ef8e992,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50266,648f0fe2-8c0a-4901-9224-0a043d521911,LIST_ACCOUNTS,hbciListAccounts,false -50267,648f0fe2-8c0a-4901-9224-0a043d521911,LIST_TRANSACTIONS,hbciListTransactions,false -50268,648f0fe2-8c0a-4901-9224-0a043d521911,AUTHORIZATION,,false -50269,648f0fe2-8c0a-4901-9224-0a043d521911,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50270,648f0fe2-8c0a-4901-9224-0a043d521911,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50271,648f0fe2-8c0a-4901-9224-0a043d521911,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50266,cd806b32-e09b-4bff-8df6-326345766a8a,LIST_ACCOUNTS,hbciListAccounts,false +50267,cd806b32-e09b-4bff-8df6-326345766a8a,LIST_TRANSACTIONS,hbciListTransactions,false +50268,cd806b32-e09b-4bff-8df6-326345766a8a,AUTHORIZATION,,false +50269,cd806b32-e09b-4bff-8df6-326345766a8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50270,cd806b32-e09b-4bff-8df6-326345766a8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50271,cd806b32-e09b-4bff-8df6-326345766a8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50272,17304a4c-80e5-4714-b653-865f220a7f8f,LIST_ACCOUNTS,xs2aListAccounts,true -50273,17304a4c-80e5-4714-b653-865f220a7f8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50273,17304a4c-80e5-4714-b653-865f220a7f8f,LIST_TRANSACTIONS,xs2aListTransactions,true 50274,17304a4c-80e5-4714-b653-865f220a7f8f,AUTHORIZATION,,true 50275,17304a4c-80e5-4714-b653-865f220a7f8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50276,17304a4c-80e5-4714-b653-865f220a7f8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50277,17304a4c-80e5-4714-b653-865f220a7f8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50278,968dd2e9-402d-4a29-b9cd-567b45286857,LIST_ACCOUNTS,hbciListAccounts,false -50279,968dd2e9-402d-4a29-b9cd-567b45286857,LIST_TRANSACTIONS,hbciListTransactions,false -50280,968dd2e9-402d-4a29-b9cd-567b45286857,AUTHORIZATION,,false -50281,968dd2e9-402d-4a29-b9cd-567b45286857,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50282,968dd2e9-402d-4a29-b9cd-567b45286857,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50283,968dd2e9-402d-4a29-b9cd-567b45286857,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50278,dab2d048-dbea-4d03-bfdf-8b9dc696638f,LIST_ACCOUNTS,hbciListAccounts,false +50279,dab2d048-dbea-4d03-bfdf-8b9dc696638f,LIST_TRANSACTIONS,hbciListTransactions,false +50280,dab2d048-dbea-4d03-bfdf-8b9dc696638f,AUTHORIZATION,,false +50281,dab2d048-dbea-4d03-bfdf-8b9dc696638f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50282,dab2d048-dbea-4d03-bfdf-8b9dc696638f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50283,dab2d048-dbea-4d03-bfdf-8b9dc696638f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50284,3ac08077-2abc-4300-a16a-7191e5644433,LIST_ACCOUNTS,xs2aListAccounts,true -50285,3ac08077-2abc-4300-a16a-7191e5644433,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50285,3ac08077-2abc-4300-a16a-7191e5644433,LIST_TRANSACTIONS,xs2aListTransactions,true 50286,3ac08077-2abc-4300-a16a-7191e5644433,AUTHORIZATION,,true 50287,3ac08077-2abc-4300-a16a-7191e5644433,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50288,3ac08077-2abc-4300-a16a-7191e5644433,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50289,3ac08077-2abc-4300-a16a-7191e5644433,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50290,5efa617b-8d99-4577-bb1c-0b7d338bfff4,LIST_ACCOUNTS,hbciListAccounts,false -50291,5efa617b-8d99-4577-bb1c-0b7d338bfff4,LIST_TRANSACTIONS,hbciListTransactions,false -50292,5efa617b-8d99-4577-bb1c-0b7d338bfff4,AUTHORIZATION,,false -50293,5efa617b-8d99-4577-bb1c-0b7d338bfff4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50294,5efa617b-8d99-4577-bb1c-0b7d338bfff4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50295,5efa617b-8d99-4577-bb1c-0b7d338bfff4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50290,197c174a-bfc1-400d-af71-4043150edac2,LIST_ACCOUNTS,hbciListAccounts,false +50291,197c174a-bfc1-400d-af71-4043150edac2,LIST_TRANSACTIONS,hbciListTransactions,false +50292,197c174a-bfc1-400d-af71-4043150edac2,AUTHORIZATION,,false +50293,197c174a-bfc1-400d-af71-4043150edac2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50294,197c174a-bfc1-400d-af71-4043150edac2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50295,197c174a-bfc1-400d-af71-4043150edac2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50296,27b5104c-b76a-426f-b0ec-125a964d6fe1,LIST_ACCOUNTS,xs2aListAccounts,true -50297,27b5104c-b76a-426f-b0ec-125a964d6fe1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50297,27b5104c-b76a-426f-b0ec-125a964d6fe1,LIST_TRANSACTIONS,xs2aListTransactions,true 50298,27b5104c-b76a-426f-b0ec-125a964d6fe1,AUTHORIZATION,,true 50299,27b5104c-b76a-426f-b0ec-125a964d6fe1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50300,27b5104c-b76a-426f-b0ec-125a964d6fe1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50301,27b5104c-b76a-426f-b0ec-125a964d6fe1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50302,d66d554b-a89e-457b-82d9-e4c6eb3799e6,LIST_ACCOUNTS,hbciListAccounts,false -50303,d66d554b-a89e-457b-82d9-e4c6eb3799e6,LIST_TRANSACTIONS,hbciListTransactions,false -50304,d66d554b-a89e-457b-82d9-e4c6eb3799e6,AUTHORIZATION,,false -50305,d66d554b-a89e-457b-82d9-e4c6eb3799e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50306,d66d554b-a89e-457b-82d9-e4c6eb3799e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50307,d66d554b-a89e-457b-82d9-e4c6eb3799e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50302,531af8d8-faba-4fa8-a2b0-e7a72fc905a2,LIST_ACCOUNTS,hbciListAccounts,false +50303,531af8d8-faba-4fa8-a2b0-e7a72fc905a2,LIST_TRANSACTIONS,hbciListTransactions,false +50304,531af8d8-faba-4fa8-a2b0-e7a72fc905a2,AUTHORIZATION,,false +50305,531af8d8-faba-4fa8-a2b0-e7a72fc905a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50306,531af8d8-faba-4fa8-a2b0-e7a72fc905a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50307,531af8d8-faba-4fa8-a2b0-e7a72fc905a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50308,c1bd921c-bdb8-4f25-aab5-8792799e3fb6,LIST_ACCOUNTS,xs2aListAccounts,true -50309,c1bd921c-bdb8-4f25-aab5-8792799e3fb6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50309,c1bd921c-bdb8-4f25-aab5-8792799e3fb6,LIST_TRANSACTIONS,xs2aListTransactions,true 50310,c1bd921c-bdb8-4f25-aab5-8792799e3fb6,AUTHORIZATION,,true 50311,c1bd921c-bdb8-4f25-aab5-8792799e3fb6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50312,c1bd921c-bdb8-4f25-aab5-8792799e3fb6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50313,c1bd921c-bdb8-4f25-aab5-8792799e3fb6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50314,8f055817-784e-443b-afc3-7f7a0294f969,LIST_ACCOUNTS,hbciListAccounts,false -50315,8f055817-784e-443b-afc3-7f7a0294f969,LIST_TRANSACTIONS,hbciListTransactions,false -50316,8f055817-784e-443b-afc3-7f7a0294f969,AUTHORIZATION,,false -50317,8f055817-784e-443b-afc3-7f7a0294f969,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50318,8f055817-784e-443b-afc3-7f7a0294f969,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50319,8f055817-784e-443b-afc3-7f7a0294f969,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50314,0f2b3847-644d-4cb5-9498-9292d0ea7fd9,LIST_ACCOUNTS,hbciListAccounts,false +50315,0f2b3847-644d-4cb5-9498-9292d0ea7fd9,LIST_TRANSACTIONS,hbciListTransactions,false +50316,0f2b3847-644d-4cb5-9498-9292d0ea7fd9,AUTHORIZATION,,false +50317,0f2b3847-644d-4cb5-9498-9292d0ea7fd9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50318,0f2b3847-644d-4cb5-9498-9292d0ea7fd9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50319,0f2b3847-644d-4cb5-9498-9292d0ea7fd9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50320,c32eb82c-8f89-467e-a125-d8c0831dd6bb,LIST_ACCOUNTS,xs2aListAccounts,true -50321,c32eb82c-8f89-467e-a125-d8c0831dd6bb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50321,c32eb82c-8f89-467e-a125-d8c0831dd6bb,LIST_TRANSACTIONS,xs2aListTransactions,true 50322,c32eb82c-8f89-467e-a125-d8c0831dd6bb,AUTHORIZATION,,true 50323,c32eb82c-8f89-467e-a125-d8c0831dd6bb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50324,c32eb82c-8f89-467e-a125-d8c0831dd6bb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50325,c32eb82c-8f89-467e-a125-d8c0831dd6bb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50326,d6bfe75a-e51f-4927-a156-5fc98c664d3d,LIST_ACCOUNTS,hbciListAccounts,false -50327,d6bfe75a-e51f-4927-a156-5fc98c664d3d,LIST_TRANSACTIONS,hbciListTransactions,false -50328,d6bfe75a-e51f-4927-a156-5fc98c664d3d,AUTHORIZATION,,false -50329,d6bfe75a-e51f-4927-a156-5fc98c664d3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50330,d6bfe75a-e51f-4927-a156-5fc98c664d3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50331,d6bfe75a-e51f-4927-a156-5fc98c664d3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50326,551854e8-9f4d-41fa-b1bc-4116108b208a,LIST_ACCOUNTS,hbciListAccounts,false +50327,551854e8-9f4d-41fa-b1bc-4116108b208a,LIST_TRANSACTIONS,hbciListTransactions,false +50328,551854e8-9f4d-41fa-b1bc-4116108b208a,AUTHORIZATION,,false +50329,551854e8-9f4d-41fa-b1bc-4116108b208a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50330,551854e8-9f4d-41fa-b1bc-4116108b208a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50331,551854e8-9f4d-41fa-b1bc-4116108b208a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50332,3ef54963-0d18-4814-a358-fc5dd27f83ec,LIST_ACCOUNTS,xs2aListAccounts,true -50333,3ef54963-0d18-4814-a358-fc5dd27f83ec,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50333,3ef54963-0d18-4814-a358-fc5dd27f83ec,LIST_TRANSACTIONS,xs2aListTransactions,true 50334,3ef54963-0d18-4814-a358-fc5dd27f83ec,AUTHORIZATION,,true 50335,3ef54963-0d18-4814-a358-fc5dd27f83ec,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50336,3ef54963-0d18-4814-a358-fc5dd27f83ec,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50337,3ef54963-0d18-4814-a358-fc5dd27f83ec,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50338,6d1b6a0d-5817-4ac5-ad0e-9040033279d8,LIST_ACCOUNTS,hbciListAccounts,false -50339,6d1b6a0d-5817-4ac5-ad0e-9040033279d8,LIST_TRANSACTIONS,hbciListTransactions,false -50340,6d1b6a0d-5817-4ac5-ad0e-9040033279d8,AUTHORIZATION,,false -50341,6d1b6a0d-5817-4ac5-ad0e-9040033279d8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50342,6d1b6a0d-5817-4ac5-ad0e-9040033279d8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50343,6d1b6a0d-5817-4ac5-ad0e-9040033279d8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50338,eb4157eb-190b-484e-9874-e492c1f3958e,LIST_ACCOUNTS,hbciListAccounts,false +50339,eb4157eb-190b-484e-9874-e492c1f3958e,LIST_TRANSACTIONS,hbciListTransactions,false +50340,eb4157eb-190b-484e-9874-e492c1f3958e,AUTHORIZATION,,false +50341,eb4157eb-190b-484e-9874-e492c1f3958e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50342,eb4157eb-190b-484e-9874-e492c1f3958e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50343,eb4157eb-190b-484e-9874-e492c1f3958e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50344,03d9ccf0-3e4c-4d77-8edf-e12a54978622,LIST_ACCOUNTS,xs2aListAccounts,true -50345,03d9ccf0-3e4c-4d77-8edf-e12a54978622,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50345,03d9ccf0-3e4c-4d77-8edf-e12a54978622,LIST_TRANSACTIONS,xs2aListTransactions,true 50346,03d9ccf0-3e4c-4d77-8edf-e12a54978622,AUTHORIZATION,,true 50347,03d9ccf0-3e4c-4d77-8edf-e12a54978622,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50348,03d9ccf0-3e4c-4d77-8edf-e12a54978622,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50349,03d9ccf0-3e4c-4d77-8edf-e12a54978622,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50350,3267a1c6-501f-4983-9bc2-b7411748591b,LIST_ACCOUNTS,hbciListAccounts,false -50351,3267a1c6-501f-4983-9bc2-b7411748591b,LIST_TRANSACTIONS,hbciListTransactions,false -50352,3267a1c6-501f-4983-9bc2-b7411748591b,AUTHORIZATION,,false -50353,3267a1c6-501f-4983-9bc2-b7411748591b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50354,3267a1c6-501f-4983-9bc2-b7411748591b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50355,3267a1c6-501f-4983-9bc2-b7411748591b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50350,a73d3fcf-69f3-4d2b-83ea-c6373b2ff258,LIST_ACCOUNTS,hbciListAccounts,false +50351,a73d3fcf-69f3-4d2b-83ea-c6373b2ff258,LIST_TRANSACTIONS,hbciListTransactions,false +50352,a73d3fcf-69f3-4d2b-83ea-c6373b2ff258,AUTHORIZATION,,false +50353,a73d3fcf-69f3-4d2b-83ea-c6373b2ff258,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50354,a73d3fcf-69f3-4d2b-83ea-c6373b2ff258,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50355,a73d3fcf-69f3-4d2b-83ea-c6373b2ff258,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50356,1d7c73de-b30d-4c03-b3ef-f357722ba8f6,LIST_ACCOUNTS,xs2aListAccounts,true -50357,1d7c73de-b30d-4c03-b3ef-f357722ba8f6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50357,1d7c73de-b30d-4c03-b3ef-f357722ba8f6,LIST_TRANSACTIONS,xs2aListTransactions,true 50358,1d7c73de-b30d-4c03-b3ef-f357722ba8f6,AUTHORIZATION,,true 50359,1d7c73de-b30d-4c03-b3ef-f357722ba8f6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50360,1d7c73de-b30d-4c03-b3ef-f357722ba8f6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50361,1d7c73de-b30d-4c03-b3ef-f357722ba8f6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50362,6af70776-52c3-486c-953a-8dd2329b7577,LIST_ACCOUNTS,hbciListAccounts,false -50363,6af70776-52c3-486c-953a-8dd2329b7577,LIST_TRANSACTIONS,hbciListTransactions,false -50364,6af70776-52c3-486c-953a-8dd2329b7577,AUTHORIZATION,,false -50365,6af70776-52c3-486c-953a-8dd2329b7577,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50366,6af70776-52c3-486c-953a-8dd2329b7577,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50367,6af70776-52c3-486c-953a-8dd2329b7577,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50362,3e07393c-981e-4952-b106-91308016ba74,LIST_ACCOUNTS,hbciListAccounts,false +50363,3e07393c-981e-4952-b106-91308016ba74,LIST_TRANSACTIONS,hbciListTransactions,false +50364,3e07393c-981e-4952-b106-91308016ba74,AUTHORIZATION,,false +50365,3e07393c-981e-4952-b106-91308016ba74,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50366,3e07393c-981e-4952-b106-91308016ba74,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50367,3e07393c-981e-4952-b106-91308016ba74,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50368,4b01deec-e8ca-4cca-a9cb-48f3e507d747,LIST_ACCOUNTS,xs2aListAccounts,true -50369,4b01deec-e8ca-4cca-a9cb-48f3e507d747,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50369,4b01deec-e8ca-4cca-a9cb-48f3e507d747,LIST_TRANSACTIONS,xs2aListTransactions,true 50370,4b01deec-e8ca-4cca-a9cb-48f3e507d747,AUTHORIZATION,,true 50371,4b01deec-e8ca-4cca-a9cb-48f3e507d747,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50372,4b01deec-e8ca-4cca-a9cb-48f3e507d747,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50373,4b01deec-e8ca-4cca-a9cb-48f3e507d747,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50374,99f6517f-81b2-4c71-8a75-172168320352,LIST_ACCOUNTS,hbciListAccounts,false -50375,99f6517f-81b2-4c71-8a75-172168320352,LIST_TRANSACTIONS,hbciListTransactions,false -50376,99f6517f-81b2-4c71-8a75-172168320352,AUTHORIZATION,,false -50377,99f6517f-81b2-4c71-8a75-172168320352,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50378,99f6517f-81b2-4c71-8a75-172168320352,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50379,99f6517f-81b2-4c71-8a75-172168320352,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50374,d380b10d-da1b-4156-a44f-f4a30056ab50,LIST_ACCOUNTS,hbciListAccounts,false +50375,d380b10d-da1b-4156-a44f-f4a30056ab50,LIST_TRANSACTIONS,hbciListTransactions,false +50376,d380b10d-da1b-4156-a44f-f4a30056ab50,AUTHORIZATION,,false +50377,d380b10d-da1b-4156-a44f-f4a30056ab50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50378,d380b10d-da1b-4156-a44f-f4a30056ab50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50379,d380b10d-da1b-4156-a44f-f4a30056ab50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50380,6f99ab82-c0b6-43b0-be87-fc42d75e4356,LIST_ACCOUNTS,xs2aListAccounts,true -50381,6f99ab82-c0b6-43b0-be87-fc42d75e4356,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50381,6f99ab82-c0b6-43b0-be87-fc42d75e4356,LIST_TRANSACTIONS,xs2aListTransactions,true 50382,6f99ab82-c0b6-43b0-be87-fc42d75e4356,AUTHORIZATION,,true 50383,6f99ab82-c0b6-43b0-be87-fc42d75e4356,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50384,6f99ab82-c0b6-43b0-be87-fc42d75e4356,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50385,6f99ab82-c0b6-43b0-be87-fc42d75e4356,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50386,814e2657-1757-4a0a-868e-e0baddac6d99,LIST_ACCOUNTS,hbciListAccounts,false -50387,814e2657-1757-4a0a-868e-e0baddac6d99,LIST_TRANSACTIONS,hbciListTransactions,false -50388,814e2657-1757-4a0a-868e-e0baddac6d99,AUTHORIZATION,,false -50389,814e2657-1757-4a0a-868e-e0baddac6d99,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50390,814e2657-1757-4a0a-868e-e0baddac6d99,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50391,814e2657-1757-4a0a-868e-e0baddac6d99,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50386,9d6a887d-412c-4a99-878f-481c362a3a1b,LIST_ACCOUNTS,hbciListAccounts,false +50387,9d6a887d-412c-4a99-878f-481c362a3a1b,LIST_TRANSACTIONS,hbciListTransactions,false +50388,9d6a887d-412c-4a99-878f-481c362a3a1b,AUTHORIZATION,,false +50389,9d6a887d-412c-4a99-878f-481c362a3a1b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50390,9d6a887d-412c-4a99-878f-481c362a3a1b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50391,9d6a887d-412c-4a99-878f-481c362a3a1b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50392,f677a4f2-84dd-4c3a-9e47-6f7ac9c15e42,LIST_ACCOUNTS,xs2aListAccounts,true -50393,f677a4f2-84dd-4c3a-9e47-6f7ac9c15e42,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50393,f677a4f2-84dd-4c3a-9e47-6f7ac9c15e42,LIST_TRANSACTIONS,xs2aListTransactions,true 50394,f677a4f2-84dd-4c3a-9e47-6f7ac9c15e42,AUTHORIZATION,,true 50395,f677a4f2-84dd-4c3a-9e47-6f7ac9c15e42,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50396,f677a4f2-84dd-4c3a-9e47-6f7ac9c15e42,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50397,f677a4f2-84dd-4c3a-9e47-6f7ac9c15e42,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50398,779d1f1d-9d2e-4282-a4be-91e1732e4a44,LIST_ACCOUNTS,hbciListAccounts,false -50399,779d1f1d-9d2e-4282-a4be-91e1732e4a44,LIST_TRANSACTIONS,hbciListTransactions,false -50400,779d1f1d-9d2e-4282-a4be-91e1732e4a44,AUTHORIZATION,,false -50401,779d1f1d-9d2e-4282-a4be-91e1732e4a44,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50402,779d1f1d-9d2e-4282-a4be-91e1732e4a44,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50403,779d1f1d-9d2e-4282-a4be-91e1732e4a44,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50398,5a41f046-2110-4d02-9f33-5f5f775b3330,LIST_ACCOUNTS,hbciListAccounts,false +50399,5a41f046-2110-4d02-9f33-5f5f775b3330,LIST_TRANSACTIONS,hbciListTransactions,false +50400,5a41f046-2110-4d02-9f33-5f5f775b3330,AUTHORIZATION,,false +50401,5a41f046-2110-4d02-9f33-5f5f775b3330,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50402,5a41f046-2110-4d02-9f33-5f5f775b3330,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50403,5a41f046-2110-4d02-9f33-5f5f775b3330,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50404,aef9f1c5-2457-4775-ace8-5f85254de914,LIST_ACCOUNTS,xs2aListAccounts,true -50405,aef9f1c5-2457-4775-ace8-5f85254de914,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50405,aef9f1c5-2457-4775-ace8-5f85254de914,LIST_TRANSACTIONS,xs2aListTransactions,true 50406,aef9f1c5-2457-4775-ace8-5f85254de914,AUTHORIZATION,,true 50407,aef9f1c5-2457-4775-ace8-5f85254de914,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50408,aef9f1c5-2457-4775-ace8-5f85254de914,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50409,aef9f1c5-2457-4775-ace8-5f85254de914,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50410,cfeb38bd-4392-48ee-8c98-fc03c15b2230,LIST_ACCOUNTS,hbciListAccounts,false -50411,cfeb38bd-4392-48ee-8c98-fc03c15b2230,LIST_TRANSACTIONS,hbciListTransactions,false -50412,cfeb38bd-4392-48ee-8c98-fc03c15b2230,AUTHORIZATION,,false -50413,cfeb38bd-4392-48ee-8c98-fc03c15b2230,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50414,cfeb38bd-4392-48ee-8c98-fc03c15b2230,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50415,cfeb38bd-4392-48ee-8c98-fc03c15b2230,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50410,9f937923-78b6-48e6-9418-12e68ba1b46c,LIST_ACCOUNTS,hbciListAccounts,false +50411,9f937923-78b6-48e6-9418-12e68ba1b46c,LIST_TRANSACTIONS,hbciListTransactions,false +50412,9f937923-78b6-48e6-9418-12e68ba1b46c,AUTHORIZATION,,false +50413,9f937923-78b6-48e6-9418-12e68ba1b46c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50414,9f937923-78b6-48e6-9418-12e68ba1b46c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50415,9f937923-78b6-48e6-9418-12e68ba1b46c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50416,6cd576c4-c155-40d0-8b85-e1ac789b4f25,LIST_ACCOUNTS,xs2aListAccounts,true -50417,6cd576c4-c155-40d0-8b85-e1ac789b4f25,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50417,6cd576c4-c155-40d0-8b85-e1ac789b4f25,LIST_TRANSACTIONS,xs2aListTransactions,true 50418,6cd576c4-c155-40d0-8b85-e1ac789b4f25,AUTHORIZATION,,true 50419,6cd576c4-c155-40d0-8b85-e1ac789b4f25,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50420,6cd576c4-c155-40d0-8b85-e1ac789b4f25,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50421,6cd576c4-c155-40d0-8b85-e1ac789b4f25,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50422,94640899-5f25-44a1-b723-c5644a567908,LIST_ACCOUNTS,hbciListAccounts,false -50423,94640899-5f25-44a1-b723-c5644a567908,LIST_TRANSACTIONS,hbciListTransactions,false -50424,94640899-5f25-44a1-b723-c5644a567908,AUTHORIZATION,,false -50425,94640899-5f25-44a1-b723-c5644a567908,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50426,94640899-5f25-44a1-b723-c5644a567908,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50427,94640899-5f25-44a1-b723-c5644a567908,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50422,9cfb3798-fb15-4a9d-8eec-4edd220af5c6,LIST_ACCOUNTS,hbciListAccounts,false +50423,9cfb3798-fb15-4a9d-8eec-4edd220af5c6,LIST_TRANSACTIONS,hbciListTransactions,false +50424,9cfb3798-fb15-4a9d-8eec-4edd220af5c6,AUTHORIZATION,,false +50425,9cfb3798-fb15-4a9d-8eec-4edd220af5c6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50426,9cfb3798-fb15-4a9d-8eec-4edd220af5c6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50427,9cfb3798-fb15-4a9d-8eec-4edd220af5c6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50428,0b73a126-6a34-49ca-855f-403b15f96470,LIST_ACCOUNTS,xs2aListAccounts,true -50429,0b73a126-6a34-49ca-855f-403b15f96470,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50429,0b73a126-6a34-49ca-855f-403b15f96470,LIST_TRANSACTIONS,xs2aListTransactions,true 50430,0b73a126-6a34-49ca-855f-403b15f96470,AUTHORIZATION,,true 50431,0b73a126-6a34-49ca-855f-403b15f96470,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50432,0b73a126-6a34-49ca-855f-403b15f96470,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50433,0b73a126-6a34-49ca-855f-403b15f96470,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50434,a36d172d-e683-445e-8c7e-f1dd93845ecc,LIST_ACCOUNTS,hbciListAccounts,false -50435,a36d172d-e683-445e-8c7e-f1dd93845ecc,LIST_TRANSACTIONS,hbciListTransactions,false -50436,a36d172d-e683-445e-8c7e-f1dd93845ecc,AUTHORIZATION,,false -50437,a36d172d-e683-445e-8c7e-f1dd93845ecc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50438,a36d172d-e683-445e-8c7e-f1dd93845ecc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50439,a36d172d-e683-445e-8c7e-f1dd93845ecc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50434,ce37a2d5-2e04-4d88-8401-f6fc3e0e240d,LIST_ACCOUNTS,hbciListAccounts,false +50435,ce37a2d5-2e04-4d88-8401-f6fc3e0e240d,LIST_TRANSACTIONS,hbciListTransactions,false +50436,ce37a2d5-2e04-4d88-8401-f6fc3e0e240d,AUTHORIZATION,,false +50437,ce37a2d5-2e04-4d88-8401-f6fc3e0e240d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50438,ce37a2d5-2e04-4d88-8401-f6fc3e0e240d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50439,ce37a2d5-2e04-4d88-8401-f6fc3e0e240d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50440,3300634c-1062-4553-9fdc-c4f0bf397ff7,LIST_ACCOUNTS,xs2aListAccounts,true -50441,3300634c-1062-4553-9fdc-c4f0bf397ff7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50441,3300634c-1062-4553-9fdc-c4f0bf397ff7,LIST_TRANSACTIONS,xs2aListTransactions,true 50442,3300634c-1062-4553-9fdc-c4f0bf397ff7,AUTHORIZATION,,true 50443,3300634c-1062-4553-9fdc-c4f0bf397ff7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50444,3300634c-1062-4553-9fdc-c4f0bf397ff7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50445,3300634c-1062-4553-9fdc-c4f0bf397ff7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50446,52516127-cda3-41d3-8425-d862b604a8c9,LIST_ACCOUNTS,hbciListAccounts,false -50447,52516127-cda3-41d3-8425-d862b604a8c9,LIST_TRANSACTIONS,hbciListTransactions,false -50448,52516127-cda3-41d3-8425-d862b604a8c9,AUTHORIZATION,,false -50449,52516127-cda3-41d3-8425-d862b604a8c9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50450,52516127-cda3-41d3-8425-d862b604a8c9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50451,52516127-cda3-41d3-8425-d862b604a8c9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50446,4e106dc6-670f-404e-b7db-880a22a29d67,LIST_ACCOUNTS,hbciListAccounts,false +50447,4e106dc6-670f-404e-b7db-880a22a29d67,LIST_TRANSACTIONS,hbciListTransactions,false +50448,4e106dc6-670f-404e-b7db-880a22a29d67,AUTHORIZATION,,false +50449,4e106dc6-670f-404e-b7db-880a22a29d67,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50450,4e106dc6-670f-404e-b7db-880a22a29d67,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50451,4e106dc6-670f-404e-b7db-880a22a29d67,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50452,3984d4b1-bf28-4f35-ba01-fc25b225a101,LIST_ACCOUNTS,xs2aListAccounts,true -50453,3984d4b1-bf28-4f35-ba01-fc25b225a101,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50453,3984d4b1-bf28-4f35-ba01-fc25b225a101,LIST_TRANSACTIONS,xs2aListTransactions,true 50454,3984d4b1-bf28-4f35-ba01-fc25b225a101,AUTHORIZATION,,true 50455,3984d4b1-bf28-4f35-ba01-fc25b225a101,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50456,3984d4b1-bf28-4f35-ba01-fc25b225a101,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50457,3984d4b1-bf28-4f35-ba01-fc25b225a101,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50458,298eecab-9d4a-41f2-993a-443c5a4e3867,LIST_ACCOUNTS,hbciListAccounts,false -50459,298eecab-9d4a-41f2-993a-443c5a4e3867,LIST_TRANSACTIONS,hbciListTransactions,false -50460,298eecab-9d4a-41f2-993a-443c5a4e3867,AUTHORIZATION,,false -50461,298eecab-9d4a-41f2-993a-443c5a4e3867,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50462,298eecab-9d4a-41f2-993a-443c5a4e3867,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50463,298eecab-9d4a-41f2-993a-443c5a4e3867,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50458,cc637642-3112-4df5-a236-36f7fd244bad,LIST_ACCOUNTS,hbciListAccounts,false +50459,cc637642-3112-4df5-a236-36f7fd244bad,LIST_TRANSACTIONS,hbciListTransactions,false +50460,cc637642-3112-4df5-a236-36f7fd244bad,AUTHORIZATION,,false +50461,cc637642-3112-4df5-a236-36f7fd244bad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50462,cc637642-3112-4df5-a236-36f7fd244bad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50463,cc637642-3112-4df5-a236-36f7fd244bad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50464,dd34f7b4-584c-4472-926e-9b9de22ac5f7,LIST_ACCOUNTS,xs2aListAccounts,true -50465,dd34f7b4-584c-4472-926e-9b9de22ac5f7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50465,dd34f7b4-584c-4472-926e-9b9de22ac5f7,LIST_TRANSACTIONS,xs2aListTransactions,true 50466,dd34f7b4-584c-4472-926e-9b9de22ac5f7,AUTHORIZATION,,true 50467,dd34f7b4-584c-4472-926e-9b9de22ac5f7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50468,dd34f7b4-584c-4472-926e-9b9de22ac5f7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50469,dd34f7b4-584c-4472-926e-9b9de22ac5f7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50470,74f212d0-145f-43e1-851b-18d2012f4d77,LIST_ACCOUNTS,hbciListAccounts,false -50471,74f212d0-145f-43e1-851b-18d2012f4d77,LIST_TRANSACTIONS,hbciListTransactions,false -50472,74f212d0-145f-43e1-851b-18d2012f4d77,AUTHORIZATION,,false -50473,74f212d0-145f-43e1-851b-18d2012f4d77,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50474,74f212d0-145f-43e1-851b-18d2012f4d77,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50475,74f212d0-145f-43e1-851b-18d2012f4d77,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50470,4cbec8bd-5ba1-454c-9de9-12098ef5c220,LIST_ACCOUNTS,hbciListAccounts,false +50471,4cbec8bd-5ba1-454c-9de9-12098ef5c220,LIST_TRANSACTIONS,hbciListTransactions,false +50472,4cbec8bd-5ba1-454c-9de9-12098ef5c220,AUTHORIZATION,,false +50473,4cbec8bd-5ba1-454c-9de9-12098ef5c220,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50474,4cbec8bd-5ba1-454c-9de9-12098ef5c220,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50475,4cbec8bd-5ba1-454c-9de9-12098ef5c220,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50476,77814d21-9dd9-4522-a6fc-6edd7c986046,LIST_ACCOUNTS,xs2aListAccounts,true -50477,77814d21-9dd9-4522-a6fc-6edd7c986046,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50477,77814d21-9dd9-4522-a6fc-6edd7c986046,LIST_TRANSACTIONS,xs2aListTransactions,true 50478,77814d21-9dd9-4522-a6fc-6edd7c986046,AUTHORIZATION,,true 50479,77814d21-9dd9-4522-a6fc-6edd7c986046,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50480,77814d21-9dd9-4522-a6fc-6edd7c986046,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50481,77814d21-9dd9-4522-a6fc-6edd7c986046,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50482,87852bf2-ae74-4ee0-a7fa-dd558d6ff6f7,LIST_ACCOUNTS,hbciListAccounts,false -50483,87852bf2-ae74-4ee0-a7fa-dd558d6ff6f7,LIST_TRANSACTIONS,hbciListTransactions,false -50484,87852bf2-ae74-4ee0-a7fa-dd558d6ff6f7,AUTHORIZATION,,false -50485,87852bf2-ae74-4ee0-a7fa-dd558d6ff6f7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50486,87852bf2-ae74-4ee0-a7fa-dd558d6ff6f7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50487,87852bf2-ae74-4ee0-a7fa-dd558d6ff6f7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50482,a3cec0a1-ab07-41b2-9e6a-3cc44acaaa84,LIST_ACCOUNTS,hbciListAccounts,false +50483,a3cec0a1-ab07-41b2-9e6a-3cc44acaaa84,LIST_TRANSACTIONS,hbciListTransactions,false +50484,a3cec0a1-ab07-41b2-9e6a-3cc44acaaa84,AUTHORIZATION,,false +50485,a3cec0a1-ab07-41b2-9e6a-3cc44acaaa84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50486,a3cec0a1-ab07-41b2-9e6a-3cc44acaaa84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50487,a3cec0a1-ab07-41b2-9e6a-3cc44acaaa84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50488,407b709a-0d14-4378-8ebb-e9d8bcb837c4,LIST_ACCOUNTS,xs2aListAccounts,true -50489,407b709a-0d14-4378-8ebb-e9d8bcb837c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50489,407b709a-0d14-4378-8ebb-e9d8bcb837c4,LIST_TRANSACTIONS,xs2aListTransactions,true 50490,407b709a-0d14-4378-8ebb-e9d8bcb837c4,AUTHORIZATION,,true 50491,407b709a-0d14-4378-8ebb-e9d8bcb837c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50492,407b709a-0d14-4378-8ebb-e9d8bcb837c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50493,407b709a-0d14-4378-8ebb-e9d8bcb837c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50494,d7db7d96-566c-4771-bf21-fa8fa6b2558d,LIST_ACCOUNTS,hbciListAccounts,false -50495,d7db7d96-566c-4771-bf21-fa8fa6b2558d,LIST_TRANSACTIONS,hbciListTransactions,false -50496,d7db7d96-566c-4771-bf21-fa8fa6b2558d,AUTHORIZATION,,false -50497,d7db7d96-566c-4771-bf21-fa8fa6b2558d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50498,d7db7d96-566c-4771-bf21-fa8fa6b2558d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50499,d7db7d96-566c-4771-bf21-fa8fa6b2558d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50494,a237e876-f0a1-4161-b5d0-dd251fe23ebb,LIST_ACCOUNTS,hbciListAccounts,false +50495,a237e876-f0a1-4161-b5d0-dd251fe23ebb,LIST_TRANSACTIONS,hbciListTransactions,false +50496,a237e876-f0a1-4161-b5d0-dd251fe23ebb,AUTHORIZATION,,false +50497,a237e876-f0a1-4161-b5d0-dd251fe23ebb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50498,a237e876-f0a1-4161-b5d0-dd251fe23ebb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50499,a237e876-f0a1-4161-b5d0-dd251fe23ebb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50500,e258c70d-e9b5-40f2-8cef-ba8b51340f65,LIST_ACCOUNTS,xs2aListAccounts,true -50501,e258c70d-e9b5-40f2-8cef-ba8b51340f65,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50501,e258c70d-e9b5-40f2-8cef-ba8b51340f65,LIST_TRANSACTIONS,xs2aListTransactions,true 50502,e258c70d-e9b5-40f2-8cef-ba8b51340f65,AUTHORIZATION,,true 50503,e258c70d-e9b5-40f2-8cef-ba8b51340f65,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50504,e258c70d-e9b5-40f2-8cef-ba8b51340f65,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50505,e258c70d-e9b5-40f2-8cef-ba8b51340f65,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50506,33068f6f-460d-486c-a0a9-5b7dfaf2e08b,LIST_ACCOUNTS,hbciListAccounts,false -50507,33068f6f-460d-486c-a0a9-5b7dfaf2e08b,LIST_TRANSACTIONS,hbciListTransactions,false -50508,33068f6f-460d-486c-a0a9-5b7dfaf2e08b,AUTHORIZATION,,false -50509,33068f6f-460d-486c-a0a9-5b7dfaf2e08b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50510,33068f6f-460d-486c-a0a9-5b7dfaf2e08b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50511,33068f6f-460d-486c-a0a9-5b7dfaf2e08b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50506,c40c853f-3b10-4c27-8be0-a12f1bf3bbc3,LIST_ACCOUNTS,hbciListAccounts,false +50507,c40c853f-3b10-4c27-8be0-a12f1bf3bbc3,LIST_TRANSACTIONS,hbciListTransactions,false +50508,c40c853f-3b10-4c27-8be0-a12f1bf3bbc3,AUTHORIZATION,,false +50509,c40c853f-3b10-4c27-8be0-a12f1bf3bbc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50510,c40c853f-3b10-4c27-8be0-a12f1bf3bbc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50511,c40c853f-3b10-4c27-8be0-a12f1bf3bbc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50512,d3a4f8c8-1dc0-4350-bac1-7316932f5bbe,LIST_ACCOUNTS,xs2aListAccounts,true -50513,d3a4f8c8-1dc0-4350-bac1-7316932f5bbe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50513,d3a4f8c8-1dc0-4350-bac1-7316932f5bbe,LIST_TRANSACTIONS,xs2aListTransactions,true 50514,d3a4f8c8-1dc0-4350-bac1-7316932f5bbe,AUTHORIZATION,,true 50515,d3a4f8c8-1dc0-4350-bac1-7316932f5bbe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50516,d3a4f8c8-1dc0-4350-bac1-7316932f5bbe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50517,d3a4f8c8-1dc0-4350-bac1-7316932f5bbe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50518,1ae7d4fb-5b65-428a-b3c3-98f9dfa20bc5,LIST_ACCOUNTS,hbciListAccounts,false -50519,1ae7d4fb-5b65-428a-b3c3-98f9dfa20bc5,LIST_TRANSACTIONS,hbciListTransactions,false -50520,1ae7d4fb-5b65-428a-b3c3-98f9dfa20bc5,AUTHORIZATION,,false -50521,1ae7d4fb-5b65-428a-b3c3-98f9dfa20bc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50522,1ae7d4fb-5b65-428a-b3c3-98f9dfa20bc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50523,1ae7d4fb-5b65-428a-b3c3-98f9dfa20bc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50518,c7202368-a4b6-4a4a-8ee1-1bb6f22e58c7,LIST_ACCOUNTS,hbciListAccounts,false +50519,c7202368-a4b6-4a4a-8ee1-1bb6f22e58c7,LIST_TRANSACTIONS,hbciListTransactions,false +50520,c7202368-a4b6-4a4a-8ee1-1bb6f22e58c7,AUTHORIZATION,,false +50521,c7202368-a4b6-4a4a-8ee1-1bb6f22e58c7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50522,c7202368-a4b6-4a4a-8ee1-1bb6f22e58c7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50523,c7202368-a4b6-4a4a-8ee1-1bb6f22e58c7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50524,6a6395d8-ac22-46aa-8b1a-88dee79beefe,LIST_ACCOUNTS,xs2aListAccounts,true -50525,6a6395d8-ac22-46aa-8b1a-88dee79beefe,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50525,6a6395d8-ac22-46aa-8b1a-88dee79beefe,LIST_TRANSACTIONS,xs2aListTransactions,true 50526,6a6395d8-ac22-46aa-8b1a-88dee79beefe,AUTHORIZATION,,true 50527,6a6395d8-ac22-46aa-8b1a-88dee79beefe,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50528,6a6395d8-ac22-46aa-8b1a-88dee79beefe,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50529,6a6395d8-ac22-46aa-8b1a-88dee79beefe,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50530,3332faee-7f1b-4c93-a6db-77258ab6d799,LIST_ACCOUNTS,hbciListAccounts,false -50531,3332faee-7f1b-4c93-a6db-77258ab6d799,LIST_TRANSACTIONS,hbciListTransactions,false -50532,3332faee-7f1b-4c93-a6db-77258ab6d799,AUTHORIZATION,,false -50533,3332faee-7f1b-4c93-a6db-77258ab6d799,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50534,3332faee-7f1b-4c93-a6db-77258ab6d799,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50535,3332faee-7f1b-4c93-a6db-77258ab6d799,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50530,6bbce491-7279-4f17-b3ae-488e5ba5575e,LIST_ACCOUNTS,hbciListAccounts,false +50531,6bbce491-7279-4f17-b3ae-488e5ba5575e,LIST_TRANSACTIONS,hbciListTransactions,false +50532,6bbce491-7279-4f17-b3ae-488e5ba5575e,AUTHORIZATION,,false +50533,6bbce491-7279-4f17-b3ae-488e5ba5575e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50534,6bbce491-7279-4f17-b3ae-488e5ba5575e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50535,6bbce491-7279-4f17-b3ae-488e5ba5575e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50536,c42f9f75-34b2-43a8-a665-be7ddac87e68,LIST_ACCOUNTS,xs2aListAccounts,true -50537,c42f9f75-34b2-43a8-a665-be7ddac87e68,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50537,c42f9f75-34b2-43a8-a665-be7ddac87e68,LIST_TRANSACTIONS,xs2aListTransactions,true 50538,c42f9f75-34b2-43a8-a665-be7ddac87e68,AUTHORIZATION,,true 50539,c42f9f75-34b2-43a8-a665-be7ddac87e68,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50540,c42f9f75-34b2-43a8-a665-be7ddac87e68,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50541,c42f9f75-34b2-43a8-a665-be7ddac87e68,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50542,a88ae64c-e07e-49b4-a1bc-813149b3d14d,LIST_ACCOUNTS,hbciListAccounts,false -50543,a88ae64c-e07e-49b4-a1bc-813149b3d14d,LIST_TRANSACTIONS,hbciListTransactions,false -50544,a88ae64c-e07e-49b4-a1bc-813149b3d14d,AUTHORIZATION,,false -50545,a88ae64c-e07e-49b4-a1bc-813149b3d14d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50546,a88ae64c-e07e-49b4-a1bc-813149b3d14d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50547,a88ae64c-e07e-49b4-a1bc-813149b3d14d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50542,bcba6042-f143-41af-ac1b-e3a12e92b85d,LIST_ACCOUNTS,hbciListAccounts,false +50543,bcba6042-f143-41af-ac1b-e3a12e92b85d,LIST_TRANSACTIONS,hbciListTransactions,false +50544,bcba6042-f143-41af-ac1b-e3a12e92b85d,AUTHORIZATION,,false +50545,bcba6042-f143-41af-ac1b-e3a12e92b85d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50546,bcba6042-f143-41af-ac1b-e3a12e92b85d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50547,bcba6042-f143-41af-ac1b-e3a12e92b85d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50548,905878eb-96e4-481f-8296-e0d52a3ee219,LIST_ACCOUNTS,xs2aListAccounts,true -50549,905878eb-96e4-481f-8296-e0d52a3ee219,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50549,905878eb-96e4-481f-8296-e0d52a3ee219,LIST_TRANSACTIONS,xs2aListTransactions,true 50550,905878eb-96e4-481f-8296-e0d52a3ee219,AUTHORIZATION,,true 50551,905878eb-96e4-481f-8296-e0d52a3ee219,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50552,905878eb-96e4-481f-8296-e0d52a3ee219,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50553,905878eb-96e4-481f-8296-e0d52a3ee219,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50554,f51c8954-262d-4eab-a12f-fa6c78775a19,LIST_ACCOUNTS,hbciListAccounts,false -50555,f51c8954-262d-4eab-a12f-fa6c78775a19,LIST_TRANSACTIONS,hbciListTransactions,false -50556,f51c8954-262d-4eab-a12f-fa6c78775a19,AUTHORIZATION,,false -50557,f51c8954-262d-4eab-a12f-fa6c78775a19,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50558,f51c8954-262d-4eab-a12f-fa6c78775a19,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50559,f51c8954-262d-4eab-a12f-fa6c78775a19,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50554,2e6f1899-f323-4518-8817-be27af5137c2,LIST_ACCOUNTS,hbciListAccounts,false +50555,2e6f1899-f323-4518-8817-be27af5137c2,LIST_TRANSACTIONS,hbciListTransactions,false +50556,2e6f1899-f323-4518-8817-be27af5137c2,AUTHORIZATION,,false +50557,2e6f1899-f323-4518-8817-be27af5137c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50558,2e6f1899-f323-4518-8817-be27af5137c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50559,2e6f1899-f323-4518-8817-be27af5137c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50560,36c2a630-bbc3-4a8b-9895-9cf168ecbd7d,LIST_ACCOUNTS,xs2aListAccounts,true -50561,36c2a630-bbc3-4a8b-9895-9cf168ecbd7d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50561,36c2a630-bbc3-4a8b-9895-9cf168ecbd7d,LIST_TRANSACTIONS,xs2aListTransactions,true 50562,36c2a630-bbc3-4a8b-9895-9cf168ecbd7d,AUTHORIZATION,,true 50563,36c2a630-bbc3-4a8b-9895-9cf168ecbd7d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50564,36c2a630-bbc3-4a8b-9895-9cf168ecbd7d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50565,36c2a630-bbc3-4a8b-9895-9cf168ecbd7d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50566,79cd2f24-1b7f-425b-9862-daf548135314,LIST_ACCOUNTS,hbciListAccounts,false -50567,79cd2f24-1b7f-425b-9862-daf548135314,LIST_TRANSACTIONS,hbciListTransactions,false -50568,79cd2f24-1b7f-425b-9862-daf548135314,AUTHORIZATION,,false -50569,79cd2f24-1b7f-425b-9862-daf548135314,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50570,79cd2f24-1b7f-425b-9862-daf548135314,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50571,79cd2f24-1b7f-425b-9862-daf548135314,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50566,670d74bb-5092-482a-a509-2a7439842c5f,LIST_ACCOUNTS,hbciListAccounts,false +50567,670d74bb-5092-482a-a509-2a7439842c5f,LIST_TRANSACTIONS,hbciListTransactions,false +50568,670d74bb-5092-482a-a509-2a7439842c5f,AUTHORIZATION,,false +50569,670d74bb-5092-482a-a509-2a7439842c5f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50570,670d74bb-5092-482a-a509-2a7439842c5f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50571,670d74bb-5092-482a-a509-2a7439842c5f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50572,d5d30b55-8488-4bf4-b4f2-fb3ce2a8473a,LIST_ACCOUNTS,xs2aListAccounts,true -50573,d5d30b55-8488-4bf4-b4f2-fb3ce2a8473a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50573,d5d30b55-8488-4bf4-b4f2-fb3ce2a8473a,LIST_TRANSACTIONS,xs2aListTransactions,true 50574,d5d30b55-8488-4bf4-b4f2-fb3ce2a8473a,AUTHORIZATION,,true 50575,d5d30b55-8488-4bf4-b4f2-fb3ce2a8473a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50576,d5d30b55-8488-4bf4-b4f2-fb3ce2a8473a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50577,d5d30b55-8488-4bf4-b4f2-fb3ce2a8473a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50578,2e7e9f0e-b375-4d77-bc65-f79a57b71278,LIST_ACCOUNTS,hbciListAccounts,false -50579,2e7e9f0e-b375-4d77-bc65-f79a57b71278,LIST_TRANSACTIONS,hbciListTransactions,false -50580,2e7e9f0e-b375-4d77-bc65-f79a57b71278,AUTHORIZATION,,false -50581,2e7e9f0e-b375-4d77-bc65-f79a57b71278,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50582,2e7e9f0e-b375-4d77-bc65-f79a57b71278,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50583,2e7e9f0e-b375-4d77-bc65-f79a57b71278,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50578,09e44d3c-b017-402e-95d6-5b7695d92840,LIST_ACCOUNTS,hbciListAccounts,false +50579,09e44d3c-b017-402e-95d6-5b7695d92840,LIST_TRANSACTIONS,hbciListTransactions,false +50580,09e44d3c-b017-402e-95d6-5b7695d92840,AUTHORIZATION,,false +50581,09e44d3c-b017-402e-95d6-5b7695d92840,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50582,09e44d3c-b017-402e-95d6-5b7695d92840,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50583,09e44d3c-b017-402e-95d6-5b7695d92840,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50584,97be4654-b4d9-4d85-b49c-fe1f33229ebb,LIST_ACCOUNTS,xs2aListAccounts,true -50585,97be4654-b4d9-4d85-b49c-fe1f33229ebb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50585,97be4654-b4d9-4d85-b49c-fe1f33229ebb,LIST_TRANSACTIONS,xs2aListTransactions,true 50586,97be4654-b4d9-4d85-b49c-fe1f33229ebb,AUTHORIZATION,,true 50587,97be4654-b4d9-4d85-b49c-fe1f33229ebb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50588,97be4654-b4d9-4d85-b49c-fe1f33229ebb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50589,97be4654-b4d9-4d85-b49c-fe1f33229ebb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50590,dec4eebb-1eb3-43ad-9476-e40e3a6cf939,LIST_ACCOUNTS,hbciListAccounts,false -50591,dec4eebb-1eb3-43ad-9476-e40e3a6cf939,LIST_TRANSACTIONS,hbciListTransactions,false -50592,dec4eebb-1eb3-43ad-9476-e40e3a6cf939,AUTHORIZATION,,false -50593,dec4eebb-1eb3-43ad-9476-e40e3a6cf939,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50594,dec4eebb-1eb3-43ad-9476-e40e3a6cf939,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50595,dec4eebb-1eb3-43ad-9476-e40e3a6cf939,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50590,ec0e3850-6a2b-4123-976a-e66396c4fa82,LIST_ACCOUNTS,hbciListAccounts,false +50591,ec0e3850-6a2b-4123-976a-e66396c4fa82,LIST_TRANSACTIONS,hbciListTransactions,false +50592,ec0e3850-6a2b-4123-976a-e66396c4fa82,AUTHORIZATION,,false +50593,ec0e3850-6a2b-4123-976a-e66396c4fa82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50594,ec0e3850-6a2b-4123-976a-e66396c4fa82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50595,ec0e3850-6a2b-4123-976a-e66396c4fa82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50596,95fa94eb-eaf4-4de2-972a-0982f7b25efd,LIST_ACCOUNTS,xs2aListAccounts,true -50597,95fa94eb-eaf4-4de2-972a-0982f7b25efd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50597,95fa94eb-eaf4-4de2-972a-0982f7b25efd,LIST_TRANSACTIONS,xs2aListTransactions,true 50598,95fa94eb-eaf4-4de2-972a-0982f7b25efd,AUTHORIZATION,,true 50599,95fa94eb-eaf4-4de2-972a-0982f7b25efd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50600,95fa94eb-eaf4-4de2-972a-0982f7b25efd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50601,95fa94eb-eaf4-4de2-972a-0982f7b25efd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50602,10a146e8-1547-4bc5-8155-9188409331db,LIST_ACCOUNTS,hbciListAccounts,false -50603,10a146e8-1547-4bc5-8155-9188409331db,LIST_TRANSACTIONS,hbciListTransactions,false -50604,10a146e8-1547-4bc5-8155-9188409331db,AUTHORIZATION,,false -50605,10a146e8-1547-4bc5-8155-9188409331db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50606,10a146e8-1547-4bc5-8155-9188409331db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50607,10a146e8-1547-4bc5-8155-9188409331db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50602,10383779-ca41-4ad3-bc90-dfe961abbd6b,LIST_ACCOUNTS,hbciListAccounts,false +50603,10383779-ca41-4ad3-bc90-dfe961abbd6b,LIST_TRANSACTIONS,hbciListTransactions,false +50604,10383779-ca41-4ad3-bc90-dfe961abbd6b,AUTHORIZATION,,false +50605,10383779-ca41-4ad3-bc90-dfe961abbd6b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50606,10383779-ca41-4ad3-bc90-dfe961abbd6b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50607,10383779-ca41-4ad3-bc90-dfe961abbd6b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50608,fd9f2cce-a50d-4cfa-9154-392405835a10,LIST_ACCOUNTS,xs2aListAccounts,true -50609,fd9f2cce-a50d-4cfa-9154-392405835a10,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50609,fd9f2cce-a50d-4cfa-9154-392405835a10,LIST_TRANSACTIONS,xs2aListTransactions,true 50610,fd9f2cce-a50d-4cfa-9154-392405835a10,AUTHORIZATION,,true 50611,fd9f2cce-a50d-4cfa-9154-392405835a10,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50612,fd9f2cce-a50d-4cfa-9154-392405835a10,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50613,fd9f2cce-a50d-4cfa-9154-392405835a10,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50614,77a3cb83-7b3d-458c-9738-521ce240007a,LIST_ACCOUNTS,hbciListAccounts,false -50615,77a3cb83-7b3d-458c-9738-521ce240007a,LIST_TRANSACTIONS,hbciListTransactions,false -50616,77a3cb83-7b3d-458c-9738-521ce240007a,AUTHORIZATION,,false -50617,77a3cb83-7b3d-458c-9738-521ce240007a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50618,77a3cb83-7b3d-458c-9738-521ce240007a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50619,77a3cb83-7b3d-458c-9738-521ce240007a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50614,4706d948-24f7-4402-ab18-653cb05b45f4,LIST_ACCOUNTS,hbciListAccounts,false +50615,4706d948-24f7-4402-ab18-653cb05b45f4,LIST_TRANSACTIONS,hbciListTransactions,false +50616,4706d948-24f7-4402-ab18-653cb05b45f4,AUTHORIZATION,,false +50617,4706d948-24f7-4402-ab18-653cb05b45f4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50618,4706d948-24f7-4402-ab18-653cb05b45f4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50619,4706d948-24f7-4402-ab18-653cb05b45f4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50620,9871b674-9077-48f2-9b52-f6a7a332d026,LIST_ACCOUNTS,xs2aListAccounts,true -50621,9871b674-9077-48f2-9b52-f6a7a332d026,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50621,9871b674-9077-48f2-9b52-f6a7a332d026,LIST_TRANSACTIONS,xs2aListTransactions,true 50622,9871b674-9077-48f2-9b52-f6a7a332d026,AUTHORIZATION,,true 50623,9871b674-9077-48f2-9b52-f6a7a332d026,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50624,9871b674-9077-48f2-9b52-f6a7a332d026,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50625,9871b674-9077-48f2-9b52-f6a7a332d026,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50626,05d45e71-dac8-42aa-9065-ae964cf1138d,LIST_ACCOUNTS,hbciListAccounts,false -50627,05d45e71-dac8-42aa-9065-ae964cf1138d,LIST_TRANSACTIONS,hbciListTransactions,false -50628,05d45e71-dac8-42aa-9065-ae964cf1138d,AUTHORIZATION,,false -50629,05d45e71-dac8-42aa-9065-ae964cf1138d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50630,05d45e71-dac8-42aa-9065-ae964cf1138d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50631,05d45e71-dac8-42aa-9065-ae964cf1138d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50626,8e1e2332-b5e4-4884-8d2d-047b3e43160f,LIST_ACCOUNTS,hbciListAccounts,false +50627,8e1e2332-b5e4-4884-8d2d-047b3e43160f,LIST_TRANSACTIONS,hbciListTransactions,false +50628,8e1e2332-b5e4-4884-8d2d-047b3e43160f,AUTHORIZATION,,false +50629,8e1e2332-b5e4-4884-8d2d-047b3e43160f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50630,8e1e2332-b5e4-4884-8d2d-047b3e43160f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50631,8e1e2332-b5e4-4884-8d2d-047b3e43160f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50632,5526c3a8-e088-46ad-9061-1b3eee250e36,LIST_ACCOUNTS,xs2aListAccounts,true -50633,5526c3a8-e088-46ad-9061-1b3eee250e36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50633,5526c3a8-e088-46ad-9061-1b3eee250e36,LIST_TRANSACTIONS,xs2aListTransactions,true 50634,5526c3a8-e088-46ad-9061-1b3eee250e36,AUTHORIZATION,,true 50635,5526c3a8-e088-46ad-9061-1b3eee250e36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50636,5526c3a8-e088-46ad-9061-1b3eee250e36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50637,5526c3a8-e088-46ad-9061-1b3eee250e36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50638,3f6238e9-c2cb-47b3-87d6-c451bda16626,LIST_ACCOUNTS,hbciListAccounts,false -50639,3f6238e9-c2cb-47b3-87d6-c451bda16626,LIST_TRANSACTIONS,hbciListTransactions,false -50640,3f6238e9-c2cb-47b3-87d6-c451bda16626,AUTHORIZATION,,false -50641,3f6238e9-c2cb-47b3-87d6-c451bda16626,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50642,3f6238e9-c2cb-47b3-87d6-c451bda16626,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50643,3f6238e9-c2cb-47b3-87d6-c451bda16626,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50638,85bddb88-acc3-40ef-8b85-6a3b8159ba8c,LIST_ACCOUNTS,hbciListAccounts,false +50639,85bddb88-acc3-40ef-8b85-6a3b8159ba8c,LIST_TRANSACTIONS,hbciListTransactions,false +50640,85bddb88-acc3-40ef-8b85-6a3b8159ba8c,AUTHORIZATION,,false +50641,85bddb88-acc3-40ef-8b85-6a3b8159ba8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50642,85bddb88-acc3-40ef-8b85-6a3b8159ba8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50643,85bddb88-acc3-40ef-8b85-6a3b8159ba8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50644,c757f35c-75f4-404e-9ce7-6877aef4f884,LIST_ACCOUNTS,xs2aListAccounts,true -50645,c757f35c-75f4-404e-9ce7-6877aef4f884,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50645,c757f35c-75f4-404e-9ce7-6877aef4f884,LIST_TRANSACTIONS,xs2aListTransactions,true 50646,c757f35c-75f4-404e-9ce7-6877aef4f884,AUTHORIZATION,,true 50647,c757f35c-75f4-404e-9ce7-6877aef4f884,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50648,c757f35c-75f4-404e-9ce7-6877aef4f884,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50649,c757f35c-75f4-404e-9ce7-6877aef4f884,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50650,4256e879-4309-450f-a1ed-8e933d32b51e,LIST_ACCOUNTS,hbciListAccounts,false -50651,4256e879-4309-450f-a1ed-8e933d32b51e,LIST_TRANSACTIONS,hbciListTransactions,false -50652,4256e879-4309-450f-a1ed-8e933d32b51e,AUTHORIZATION,,false -50653,4256e879-4309-450f-a1ed-8e933d32b51e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50654,4256e879-4309-450f-a1ed-8e933d32b51e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50655,4256e879-4309-450f-a1ed-8e933d32b51e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50650,49811537-6d6c-43e3-b735-39d83bf09c82,LIST_ACCOUNTS,hbciListAccounts,false +50651,49811537-6d6c-43e3-b735-39d83bf09c82,LIST_TRANSACTIONS,hbciListTransactions,false +50652,49811537-6d6c-43e3-b735-39d83bf09c82,AUTHORIZATION,,false +50653,49811537-6d6c-43e3-b735-39d83bf09c82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50654,49811537-6d6c-43e3-b735-39d83bf09c82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50655,49811537-6d6c-43e3-b735-39d83bf09c82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50656,1c18951f-67b8-4b04-8daf-e3b07a627d13,LIST_ACCOUNTS,xs2aListAccounts,true -50657,1c18951f-67b8-4b04-8daf-e3b07a627d13,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50657,1c18951f-67b8-4b04-8daf-e3b07a627d13,LIST_TRANSACTIONS,xs2aListTransactions,true 50658,1c18951f-67b8-4b04-8daf-e3b07a627d13,AUTHORIZATION,,true 50659,1c18951f-67b8-4b04-8daf-e3b07a627d13,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50660,1c18951f-67b8-4b04-8daf-e3b07a627d13,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50661,1c18951f-67b8-4b04-8daf-e3b07a627d13,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50662,05963036-478b-45b3-b282-a97254f5d533,LIST_ACCOUNTS,hbciListAccounts,false -50663,05963036-478b-45b3-b282-a97254f5d533,LIST_TRANSACTIONS,hbciListTransactions,false -50664,05963036-478b-45b3-b282-a97254f5d533,AUTHORIZATION,,false -50665,05963036-478b-45b3-b282-a97254f5d533,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50666,05963036-478b-45b3-b282-a97254f5d533,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50667,05963036-478b-45b3-b282-a97254f5d533,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50662,6db91119-4fb0-4f15-854b-497a0a1fa8a4,LIST_ACCOUNTS,hbciListAccounts,false +50663,6db91119-4fb0-4f15-854b-497a0a1fa8a4,LIST_TRANSACTIONS,hbciListTransactions,false +50664,6db91119-4fb0-4f15-854b-497a0a1fa8a4,AUTHORIZATION,,false +50665,6db91119-4fb0-4f15-854b-497a0a1fa8a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50666,6db91119-4fb0-4f15-854b-497a0a1fa8a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50667,6db91119-4fb0-4f15-854b-497a0a1fa8a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50668,59ac4326-d44a-40e1-8871-255996121d79,LIST_ACCOUNTS,xs2aListAccounts,true -50669,59ac4326-d44a-40e1-8871-255996121d79,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50669,59ac4326-d44a-40e1-8871-255996121d79,LIST_TRANSACTIONS,xs2aListTransactions,true 50670,59ac4326-d44a-40e1-8871-255996121d79,AUTHORIZATION,,true 50671,59ac4326-d44a-40e1-8871-255996121d79,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50672,59ac4326-d44a-40e1-8871-255996121d79,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50673,59ac4326-d44a-40e1-8871-255996121d79,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50674,1bb53c4a-1086-4603-9d90-ead9bb70f188,LIST_ACCOUNTS,hbciListAccounts,false -50675,1bb53c4a-1086-4603-9d90-ead9bb70f188,LIST_TRANSACTIONS,hbciListTransactions,false -50676,1bb53c4a-1086-4603-9d90-ead9bb70f188,AUTHORIZATION,,false -50677,1bb53c4a-1086-4603-9d90-ead9bb70f188,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50678,1bb53c4a-1086-4603-9d90-ead9bb70f188,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50679,1bb53c4a-1086-4603-9d90-ead9bb70f188,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50674,2939d175-41b6-4b5d-95c9-9cb54b9473cf,LIST_ACCOUNTS,hbciListAccounts,false +50675,2939d175-41b6-4b5d-95c9-9cb54b9473cf,LIST_TRANSACTIONS,hbciListTransactions,false +50676,2939d175-41b6-4b5d-95c9-9cb54b9473cf,AUTHORIZATION,,false +50677,2939d175-41b6-4b5d-95c9-9cb54b9473cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50678,2939d175-41b6-4b5d-95c9-9cb54b9473cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50679,2939d175-41b6-4b5d-95c9-9cb54b9473cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50680,4cbafd9b-b75a-40e8-850f-7ee9bde687e8,LIST_ACCOUNTS,xs2aListAccounts,true -50681,4cbafd9b-b75a-40e8-850f-7ee9bde687e8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50681,4cbafd9b-b75a-40e8-850f-7ee9bde687e8,LIST_TRANSACTIONS,xs2aListTransactions,true 50682,4cbafd9b-b75a-40e8-850f-7ee9bde687e8,AUTHORIZATION,,true 50683,4cbafd9b-b75a-40e8-850f-7ee9bde687e8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50684,4cbafd9b-b75a-40e8-850f-7ee9bde687e8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50685,4cbafd9b-b75a-40e8-850f-7ee9bde687e8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50686,dca03173-9180-4bd8-9d2d-bbe5c4afbf3a,LIST_ACCOUNTS,hbciListAccounts,false -50687,dca03173-9180-4bd8-9d2d-bbe5c4afbf3a,LIST_TRANSACTIONS,hbciListTransactions,false -50688,dca03173-9180-4bd8-9d2d-bbe5c4afbf3a,AUTHORIZATION,,false -50689,dca03173-9180-4bd8-9d2d-bbe5c4afbf3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50690,dca03173-9180-4bd8-9d2d-bbe5c4afbf3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50691,dca03173-9180-4bd8-9d2d-bbe5c4afbf3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50686,32473e55-ccab-41a1-a855-eb43e770eebb,LIST_ACCOUNTS,hbciListAccounts,false +50687,32473e55-ccab-41a1-a855-eb43e770eebb,LIST_TRANSACTIONS,hbciListTransactions,false +50688,32473e55-ccab-41a1-a855-eb43e770eebb,AUTHORIZATION,,false +50689,32473e55-ccab-41a1-a855-eb43e770eebb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50690,32473e55-ccab-41a1-a855-eb43e770eebb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50691,32473e55-ccab-41a1-a855-eb43e770eebb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50692,4f962430-6a6f-4d6e-b605-e2af3224061b,LIST_ACCOUNTS,xs2aListAccounts,true -50693,4f962430-6a6f-4d6e-b605-e2af3224061b,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50693,4f962430-6a6f-4d6e-b605-e2af3224061b,LIST_TRANSACTIONS,xs2aListTransactions,true 50694,4f962430-6a6f-4d6e-b605-e2af3224061b,AUTHORIZATION,,true 50695,4f962430-6a6f-4d6e-b605-e2af3224061b,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50696,4f962430-6a6f-4d6e-b605-e2af3224061b,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50697,4f962430-6a6f-4d6e-b605-e2af3224061b,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50698,9e594ff6-374c-4543-8459-f9f7f8fbd832,LIST_ACCOUNTS,hbciListAccounts,false -50699,9e594ff6-374c-4543-8459-f9f7f8fbd832,LIST_TRANSACTIONS,hbciListTransactions,false -50700,9e594ff6-374c-4543-8459-f9f7f8fbd832,AUTHORIZATION,,false -50701,9e594ff6-374c-4543-8459-f9f7f8fbd832,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50702,9e594ff6-374c-4543-8459-f9f7f8fbd832,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50703,9e594ff6-374c-4543-8459-f9f7f8fbd832,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50698,9c2e20ee-2f52-49b5-b318-b4f42e0b4cee,LIST_ACCOUNTS,hbciListAccounts,false +50699,9c2e20ee-2f52-49b5-b318-b4f42e0b4cee,LIST_TRANSACTIONS,hbciListTransactions,false +50700,9c2e20ee-2f52-49b5-b318-b4f42e0b4cee,AUTHORIZATION,,false +50701,9c2e20ee-2f52-49b5-b318-b4f42e0b4cee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50702,9c2e20ee-2f52-49b5-b318-b4f42e0b4cee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50703,9c2e20ee-2f52-49b5-b318-b4f42e0b4cee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50704,da49a7c9-16ff-4e1f-b2c6-bd9349835de8,LIST_ACCOUNTS,xs2aListAccounts,true -50705,da49a7c9-16ff-4e1f-b2c6-bd9349835de8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50705,da49a7c9-16ff-4e1f-b2c6-bd9349835de8,LIST_TRANSACTIONS,xs2aListTransactions,true 50706,da49a7c9-16ff-4e1f-b2c6-bd9349835de8,AUTHORIZATION,,true 50707,da49a7c9-16ff-4e1f-b2c6-bd9349835de8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50708,da49a7c9-16ff-4e1f-b2c6-bd9349835de8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50709,da49a7c9-16ff-4e1f-b2c6-bd9349835de8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50710,451042f3-7222-4e88-918e-aa285df35f1d,LIST_ACCOUNTS,hbciListAccounts,false -50711,451042f3-7222-4e88-918e-aa285df35f1d,LIST_TRANSACTIONS,hbciListTransactions,false -50712,451042f3-7222-4e88-918e-aa285df35f1d,AUTHORIZATION,,false -50713,451042f3-7222-4e88-918e-aa285df35f1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50714,451042f3-7222-4e88-918e-aa285df35f1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50715,451042f3-7222-4e88-918e-aa285df35f1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50710,c4ac5f23-d26f-45b9-9efc-2a917d6cb232,LIST_ACCOUNTS,hbciListAccounts,false +50711,c4ac5f23-d26f-45b9-9efc-2a917d6cb232,LIST_TRANSACTIONS,hbciListTransactions,false +50712,c4ac5f23-d26f-45b9-9efc-2a917d6cb232,AUTHORIZATION,,false +50713,c4ac5f23-d26f-45b9-9efc-2a917d6cb232,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50714,c4ac5f23-d26f-45b9-9efc-2a917d6cb232,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50715,c4ac5f23-d26f-45b9-9efc-2a917d6cb232,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50716,412a14f3-bd97-402a-b572-17eff518d19e,LIST_ACCOUNTS,xs2aListAccounts,true -50717,412a14f3-bd97-402a-b572-17eff518d19e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50717,412a14f3-bd97-402a-b572-17eff518d19e,LIST_TRANSACTIONS,xs2aListTransactions,true 50718,412a14f3-bd97-402a-b572-17eff518d19e,AUTHORIZATION,,true 50719,412a14f3-bd97-402a-b572-17eff518d19e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50720,412a14f3-bd97-402a-b572-17eff518d19e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50721,412a14f3-bd97-402a-b572-17eff518d19e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50722,bc1e0ed3-d201-46ea-af00-a20e8ce4189e,LIST_ACCOUNTS,hbciListAccounts,false -50723,bc1e0ed3-d201-46ea-af00-a20e8ce4189e,LIST_TRANSACTIONS,hbciListTransactions,false -50724,bc1e0ed3-d201-46ea-af00-a20e8ce4189e,AUTHORIZATION,,false -50725,bc1e0ed3-d201-46ea-af00-a20e8ce4189e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50726,bc1e0ed3-d201-46ea-af00-a20e8ce4189e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50727,bc1e0ed3-d201-46ea-af00-a20e8ce4189e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50722,4303e1a4-a593-4023-879a-e5b8cfb6786d,LIST_ACCOUNTS,hbciListAccounts,false +50723,4303e1a4-a593-4023-879a-e5b8cfb6786d,LIST_TRANSACTIONS,hbciListTransactions,false +50724,4303e1a4-a593-4023-879a-e5b8cfb6786d,AUTHORIZATION,,false +50725,4303e1a4-a593-4023-879a-e5b8cfb6786d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50726,4303e1a4-a593-4023-879a-e5b8cfb6786d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50727,4303e1a4-a593-4023-879a-e5b8cfb6786d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50728,942c05e2-42e2-47be-b4c2-25ded8e28d08,LIST_ACCOUNTS,xs2aListAccounts,true -50729,942c05e2-42e2-47be-b4c2-25ded8e28d08,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50729,942c05e2-42e2-47be-b4c2-25ded8e28d08,LIST_TRANSACTIONS,xs2aListTransactions,true 50730,942c05e2-42e2-47be-b4c2-25ded8e28d08,AUTHORIZATION,,true 50731,942c05e2-42e2-47be-b4c2-25ded8e28d08,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50732,942c05e2-42e2-47be-b4c2-25ded8e28d08,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50733,942c05e2-42e2-47be-b4c2-25ded8e28d08,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50734,eed78254-cedd-423d-8b63-0f897e93efad,LIST_ACCOUNTS,hbciListAccounts,false -50735,eed78254-cedd-423d-8b63-0f897e93efad,LIST_TRANSACTIONS,hbciListTransactions,false -50736,eed78254-cedd-423d-8b63-0f897e93efad,AUTHORIZATION,,false -50737,eed78254-cedd-423d-8b63-0f897e93efad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50738,eed78254-cedd-423d-8b63-0f897e93efad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50739,eed78254-cedd-423d-8b63-0f897e93efad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50734,cf42a70f-13a1-414d-91ed-970ad29ef645,LIST_ACCOUNTS,hbciListAccounts,false +50735,cf42a70f-13a1-414d-91ed-970ad29ef645,LIST_TRANSACTIONS,hbciListTransactions,false +50736,cf42a70f-13a1-414d-91ed-970ad29ef645,AUTHORIZATION,,false +50737,cf42a70f-13a1-414d-91ed-970ad29ef645,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50738,cf42a70f-13a1-414d-91ed-970ad29ef645,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50739,cf42a70f-13a1-414d-91ed-970ad29ef645,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50740,2ac04194-76c8-4e21-86de-239741a62523,LIST_ACCOUNTS,xs2aListAccounts,true -50741,2ac04194-76c8-4e21-86de-239741a62523,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50741,2ac04194-76c8-4e21-86de-239741a62523,LIST_TRANSACTIONS,xs2aListTransactions,true 50742,2ac04194-76c8-4e21-86de-239741a62523,AUTHORIZATION,,true 50743,2ac04194-76c8-4e21-86de-239741a62523,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50744,2ac04194-76c8-4e21-86de-239741a62523,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50745,2ac04194-76c8-4e21-86de-239741a62523,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50746,e4824dd6-e756-44a5-90a5-31824e93080e,LIST_ACCOUNTS,hbciListAccounts,false -50747,e4824dd6-e756-44a5-90a5-31824e93080e,LIST_TRANSACTIONS,hbciListTransactions,false -50748,e4824dd6-e756-44a5-90a5-31824e93080e,AUTHORIZATION,,false -50749,e4824dd6-e756-44a5-90a5-31824e93080e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50750,e4824dd6-e756-44a5-90a5-31824e93080e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50751,e4824dd6-e756-44a5-90a5-31824e93080e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50746,ac2f1e6d-1a37-48f2-a671-e824db540e7a,LIST_ACCOUNTS,hbciListAccounts,false +50747,ac2f1e6d-1a37-48f2-a671-e824db540e7a,LIST_TRANSACTIONS,hbciListTransactions,false +50748,ac2f1e6d-1a37-48f2-a671-e824db540e7a,AUTHORIZATION,,false +50749,ac2f1e6d-1a37-48f2-a671-e824db540e7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50750,ac2f1e6d-1a37-48f2-a671-e824db540e7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50751,ac2f1e6d-1a37-48f2-a671-e824db540e7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50752,054dd821-2394-426e-9b1e-169be0ae324c,LIST_ACCOUNTS,xs2aListAccounts,true -50753,054dd821-2394-426e-9b1e-169be0ae324c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50753,054dd821-2394-426e-9b1e-169be0ae324c,LIST_TRANSACTIONS,xs2aListTransactions,true 50754,054dd821-2394-426e-9b1e-169be0ae324c,AUTHORIZATION,,true 50755,054dd821-2394-426e-9b1e-169be0ae324c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50756,054dd821-2394-426e-9b1e-169be0ae324c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50757,054dd821-2394-426e-9b1e-169be0ae324c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50758,910f4de9-bab4-4cfb-bfe5-758ef367bb76,LIST_ACCOUNTS,hbciListAccounts,false -50759,910f4de9-bab4-4cfb-bfe5-758ef367bb76,LIST_TRANSACTIONS,hbciListTransactions,false -50760,910f4de9-bab4-4cfb-bfe5-758ef367bb76,AUTHORIZATION,,false -50761,910f4de9-bab4-4cfb-bfe5-758ef367bb76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50762,910f4de9-bab4-4cfb-bfe5-758ef367bb76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50763,910f4de9-bab4-4cfb-bfe5-758ef367bb76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50758,f6713a68-33b7-4a09-8f4a-a85d173c4a58,LIST_ACCOUNTS,hbciListAccounts,false +50759,f6713a68-33b7-4a09-8f4a-a85d173c4a58,LIST_TRANSACTIONS,hbciListTransactions,false +50760,f6713a68-33b7-4a09-8f4a-a85d173c4a58,AUTHORIZATION,,false +50761,f6713a68-33b7-4a09-8f4a-a85d173c4a58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50762,f6713a68-33b7-4a09-8f4a-a85d173c4a58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50763,f6713a68-33b7-4a09-8f4a-a85d173c4a58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50764,f88c2237-98c0-4a86-80f0-7faba4d8aedb,LIST_ACCOUNTS,xs2aListAccounts,true -50765,f88c2237-98c0-4a86-80f0-7faba4d8aedb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50765,f88c2237-98c0-4a86-80f0-7faba4d8aedb,LIST_TRANSACTIONS,xs2aListTransactions,true 50766,f88c2237-98c0-4a86-80f0-7faba4d8aedb,AUTHORIZATION,,true 50767,f88c2237-98c0-4a86-80f0-7faba4d8aedb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50768,f88c2237-98c0-4a86-80f0-7faba4d8aedb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50769,f88c2237-98c0-4a86-80f0-7faba4d8aedb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50770,9a75a9b6-5033-4859-a26b-e083f668093b,LIST_ACCOUNTS,hbciListAccounts,false -50771,9a75a9b6-5033-4859-a26b-e083f668093b,LIST_TRANSACTIONS,hbciListTransactions,false -50772,9a75a9b6-5033-4859-a26b-e083f668093b,AUTHORIZATION,,false -50773,9a75a9b6-5033-4859-a26b-e083f668093b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50774,9a75a9b6-5033-4859-a26b-e083f668093b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50775,9a75a9b6-5033-4859-a26b-e083f668093b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50770,d7eee4bd-fa60-4d68-b786-a956c831d6af,LIST_ACCOUNTS,hbciListAccounts,false +50771,d7eee4bd-fa60-4d68-b786-a956c831d6af,LIST_TRANSACTIONS,hbciListTransactions,false +50772,d7eee4bd-fa60-4d68-b786-a956c831d6af,AUTHORIZATION,,false +50773,d7eee4bd-fa60-4d68-b786-a956c831d6af,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50774,d7eee4bd-fa60-4d68-b786-a956c831d6af,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50775,d7eee4bd-fa60-4d68-b786-a956c831d6af,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50776,2c01c779-f227-406e-8b87-7162696de301,LIST_ACCOUNTS,xs2aListAccounts,true -50777,2c01c779-f227-406e-8b87-7162696de301,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50777,2c01c779-f227-406e-8b87-7162696de301,LIST_TRANSACTIONS,xs2aListTransactions,true 50778,2c01c779-f227-406e-8b87-7162696de301,AUTHORIZATION,,true 50779,2c01c779-f227-406e-8b87-7162696de301,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50780,2c01c779-f227-406e-8b87-7162696de301,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50781,2c01c779-f227-406e-8b87-7162696de301,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50782,a5902ea8-9817-4daa-9015-672c4e4a66d6,LIST_ACCOUNTS,hbciListAccounts,false -50783,a5902ea8-9817-4daa-9015-672c4e4a66d6,LIST_TRANSACTIONS,hbciListTransactions,false -50784,a5902ea8-9817-4daa-9015-672c4e4a66d6,AUTHORIZATION,,false -50785,a5902ea8-9817-4daa-9015-672c4e4a66d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50786,a5902ea8-9817-4daa-9015-672c4e4a66d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50787,a5902ea8-9817-4daa-9015-672c4e4a66d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50782,d29f1b54-fddc-4f37-8cc8-29e23f1f71a8,LIST_ACCOUNTS,hbciListAccounts,false +50783,d29f1b54-fddc-4f37-8cc8-29e23f1f71a8,LIST_TRANSACTIONS,hbciListTransactions,false +50784,d29f1b54-fddc-4f37-8cc8-29e23f1f71a8,AUTHORIZATION,,false +50785,d29f1b54-fddc-4f37-8cc8-29e23f1f71a8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50786,d29f1b54-fddc-4f37-8cc8-29e23f1f71a8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50787,d29f1b54-fddc-4f37-8cc8-29e23f1f71a8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50788,4da97e42-348c-4274-8fb5-f8d5a2ac5b28,LIST_ACCOUNTS,xs2aListAccounts,true -50789,4da97e42-348c-4274-8fb5-f8d5a2ac5b28,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50789,4da97e42-348c-4274-8fb5-f8d5a2ac5b28,LIST_TRANSACTIONS,xs2aListTransactions,true 50790,4da97e42-348c-4274-8fb5-f8d5a2ac5b28,AUTHORIZATION,,true 50791,4da97e42-348c-4274-8fb5-f8d5a2ac5b28,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50792,4da97e42-348c-4274-8fb5-f8d5a2ac5b28,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50793,4da97e42-348c-4274-8fb5-f8d5a2ac5b28,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50794,9a99bd80-42f6-4cff-beba-bbbde84e09cb,LIST_ACCOUNTS,hbciListAccounts,false -50795,9a99bd80-42f6-4cff-beba-bbbde84e09cb,LIST_TRANSACTIONS,hbciListTransactions,false -50796,9a99bd80-42f6-4cff-beba-bbbde84e09cb,AUTHORIZATION,,false -50797,9a99bd80-42f6-4cff-beba-bbbde84e09cb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50798,9a99bd80-42f6-4cff-beba-bbbde84e09cb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50799,9a99bd80-42f6-4cff-beba-bbbde84e09cb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50794,2543dcd0-b3ef-4f98-b55e-27c7fe75f673,LIST_ACCOUNTS,hbciListAccounts,false +50795,2543dcd0-b3ef-4f98-b55e-27c7fe75f673,LIST_TRANSACTIONS,hbciListTransactions,false +50796,2543dcd0-b3ef-4f98-b55e-27c7fe75f673,AUTHORIZATION,,false +50797,2543dcd0-b3ef-4f98-b55e-27c7fe75f673,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50798,2543dcd0-b3ef-4f98-b55e-27c7fe75f673,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50799,2543dcd0-b3ef-4f98-b55e-27c7fe75f673,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50800,16144230-d7de-47f0-ac24-513a66e17829,LIST_ACCOUNTS,xs2aListAccounts,true -50801,16144230-d7de-47f0-ac24-513a66e17829,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50801,16144230-d7de-47f0-ac24-513a66e17829,LIST_TRANSACTIONS,xs2aListTransactions,true 50802,16144230-d7de-47f0-ac24-513a66e17829,AUTHORIZATION,,true 50803,16144230-d7de-47f0-ac24-513a66e17829,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50804,16144230-d7de-47f0-ac24-513a66e17829,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50805,16144230-d7de-47f0-ac24-513a66e17829,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50806,46e44d49-1213-4e73-afd1-1180072fc838,LIST_ACCOUNTS,hbciListAccounts,false -50807,46e44d49-1213-4e73-afd1-1180072fc838,LIST_TRANSACTIONS,hbciListTransactions,false -50808,46e44d49-1213-4e73-afd1-1180072fc838,AUTHORIZATION,,false -50809,46e44d49-1213-4e73-afd1-1180072fc838,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50810,46e44d49-1213-4e73-afd1-1180072fc838,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50811,46e44d49-1213-4e73-afd1-1180072fc838,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50806,a26900f5-fa8a-40cb-a272-cd31e8556504,LIST_ACCOUNTS,hbciListAccounts,false +50807,a26900f5-fa8a-40cb-a272-cd31e8556504,LIST_TRANSACTIONS,hbciListTransactions,false +50808,a26900f5-fa8a-40cb-a272-cd31e8556504,AUTHORIZATION,,false +50809,a26900f5-fa8a-40cb-a272-cd31e8556504,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50810,a26900f5-fa8a-40cb-a272-cd31e8556504,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50811,a26900f5-fa8a-40cb-a272-cd31e8556504,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50812,185a1ec0-cd0a-4561-be9c-9f998d658402,LIST_ACCOUNTS,xs2aListAccounts,true -50813,185a1ec0-cd0a-4561-be9c-9f998d658402,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50813,185a1ec0-cd0a-4561-be9c-9f998d658402,LIST_TRANSACTIONS,xs2aListTransactions,true 50814,185a1ec0-cd0a-4561-be9c-9f998d658402,AUTHORIZATION,,true 50815,185a1ec0-cd0a-4561-be9c-9f998d658402,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50816,185a1ec0-cd0a-4561-be9c-9f998d658402,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50817,185a1ec0-cd0a-4561-be9c-9f998d658402,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50818,37735678-7c37-486d-a630-30f12caf5473,LIST_ACCOUNTS,hbciListAccounts,false -50819,37735678-7c37-486d-a630-30f12caf5473,LIST_TRANSACTIONS,hbciListTransactions,false -50820,37735678-7c37-486d-a630-30f12caf5473,AUTHORIZATION,,false -50821,37735678-7c37-486d-a630-30f12caf5473,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50822,37735678-7c37-486d-a630-30f12caf5473,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50823,37735678-7c37-486d-a630-30f12caf5473,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50818,1ad97aeb-1d84-4139-a9f0-a9f182a90fd8,LIST_ACCOUNTS,hbciListAccounts,false +50819,1ad97aeb-1d84-4139-a9f0-a9f182a90fd8,LIST_TRANSACTIONS,hbciListTransactions,false +50820,1ad97aeb-1d84-4139-a9f0-a9f182a90fd8,AUTHORIZATION,,false +50821,1ad97aeb-1d84-4139-a9f0-a9f182a90fd8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50822,1ad97aeb-1d84-4139-a9f0-a9f182a90fd8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50823,1ad97aeb-1d84-4139-a9f0-a9f182a90fd8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50824,f44d3436-587d-4587-a3ce-7e2185e10f62,LIST_ACCOUNTS,xs2aListAccounts,true -50825,f44d3436-587d-4587-a3ce-7e2185e10f62,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50825,f44d3436-587d-4587-a3ce-7e2185e10f62,LIST_TRANSACTIONS,xs2aListTransactions,true 50826,f44d3436-587d-4587-a3ce-7e2185e10f62,AUTHORIZATION,,true 50827,f44d3436-587d-4587-a3ce-7e2185e10f62,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50828,f44d3436-587d-4587-a3ce-7e2185e10f62,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50829,f44d3436-587d-4587-a3ce-7e2185e10f62,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50830,62a19dca-e553-4b69-aedd-6a1075bce6b6,LIST_ACCOUNTS,hbciListAccounts,false -50831,62a19dca-e553-4b69-aedd-6a1075bce6b6,LIST_TRANSACTIONS,hbciListTransactions,false -50832,62a19dca-e553-4b69-aedd-6a1075bce6b6,AUTHORIZATION,,false -50833,62a19dca-e553-4b69-aedd-6a1075bce6b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50834,62a19dca-e553-4b69-aedd-6a1075bce6b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50835,62a19dca-e553-4b69-aedd-6a1075bce6b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50830,7614a58e-df2b-4e5d-bc7b-c6295a2ee8e2,LIST_ACCOUNTS,hbciListAccounts,false +50831,7614a58e-df2b-4e5d-bc7b-c6295a2ee8e2,LIST_TRANSACTIONS,hbciListTransactions,false +50832,7614a58e-df2b-4e5d-bc7b-c6295a2ee8e2,AUTHORIZATION,,false +50833,7614a58e-df2b-4e5d-bc7b-c6295a2ee8e2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50834,7614a58e-df2b-4e5d-bc7b-c6295a2ee8e2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50835,7614a58e-df2b-4e5d-bc7b-c6295a2ee8e2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50836,fe1c926b-6ac8-450b-9c93-ea47c527fcc3,LIST_ACCOUNTS,xs2aListAccounts,true -50837,fe1c926b-6ac8-450b-9c93-ea47c527fcc3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50837,fe1c926b-6ac8-450b-9c93-ea47c527fcc3,LIST_TRANSACTIONS,xs2aListTransactions,true 50838,fe1c926b-6ac8-450b-9c93-ea47c527fcc3,AUTHORIZATION,,true 50839,fe1c926b-6ac8-450b-9c93-ea47c527fcc3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50840,fe1c926b-6ac8-450b-9c93-ea47c527fcc3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50841,fe1c926b-6ac8-450b-9c93-ea47c527fcc3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50842,e75fa1d9-e3cb-44ff-81fe-96ad83d6a48c,LIST_ACCOUNTS,hbciListAccounts,false -50843,e75fa1d9-e3cb-44ff-81fe-96ad83d6a48c,LIST_TRANSACTIONS,hbciListTransactions,false -50844,e75fa1d9-e3cb-44ff-81fe-96ad83d6a48c,AUTHORIZATION,,false -50845,e75fa1d9-e3cb-44ff-81fe-96ad83d6a48c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50846,e75fa1d9-e3cb-44ff-81fe-96ad83d6a48c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50847,e75fa1d9-e3cb-44ff-81fe-96ad83d6a48c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50842,b9b4f2c0-9304-42a7-a759-5b50ce69aa0e,LIST_ACCOUNTS,hbciListAccounts,false +50843,b9b4f2c0-9304-42a7-a759-5b50ce69aa0e,LIST_TRANSACTIONS,hbciListTransactions,false +50844,b9b4f2c0-9304-42a7-a759-5b50ce69aa0e,AUTHORIZATION,,false +50845,b9b4f2c0-9304-42a7-a759-5b50ce69aa0e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50846,b9b4f2c0-9304-42a7-a759-5b50ce69aa0e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50847,b9b4f2c0-9304-42a7-a759-5b50ce69aa0e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50848,a6d2428e-c36a-486c-881e-79604f94c129,LIST_ACCOUNTS,xs2aListAccounts,true -50849,a6d2428e-c36a-486c-881e-79604f94c129,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50849,a6d2428e-c36a-486c-881e-79604f94c129,LIST_TRANSACTIONS,xs2aListTransactions,true 50850,a6d2428e-c36a-486c-881e-79604f94c129,AUTHORIZATION,,true 50851,a6d2428e-c36a-486c-881e-79604f94c129,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50852,a6d2428e-c36a-486c-881e-79604f94c129,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50853,a6d2428e-c36a-486c-881e-79604f94c129,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50854,a9571ec3-bbed-4ac8-8a2c-e16575b34821,LIST_ACCOUNTS,hbciListAccounts,false -50855,a9571ec3-bbed-4ac8-8a2c-e16575b34821,LIST_TRANSACTIONS,hbciListTransactions,false -50856,a9571ec3-bbed-4ac8-8a2c-e16575b34821,AUTHORIZATION,,false -50857,a9571ec3-bbed-4ac8-8a2c-e16575b34821,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50858,a9571ec3-bbed-4ac8-8a2c-e16575b34821,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50859,a9571ec3-bbed-4ac8-8a2c-e16575b34821,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50854,5d42f434-c709-479d-bbf8-9f2c7df0ee65,LIST_ACCOUNTS,hbciListAccounts,false +50855,5d42f434-c709-479d-bbf8-9f2c7df0ee65,LIST_TRANSACTIONS,hbciListTransactions,false +50856,5d42f434-c709-479d-bbf8-9f2c7df0ee65,AUTHORIZATION,,false +50857,5d42f434-c709-479d-bbf8-9f2c7df0ee65,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50858,5d42f434-c709-479d-bbf8-9f2c7df0ee65,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50859,5d42f434-c709-479d-bbf8-9f2c7df0ee65,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50860,e9e7a837-b458-4c5f-bd4f-143f608ecb45,LIST_ACCOUNTS,xs2aListAccounts,true -50861,e9e7a837-b458-4c5f-bd4f-143f608ecb45,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50861,e9e7a837-b458-4c5f-bd4f-143f608ecb45,LIST_TRANSACTIONS,xs2aListTransactions,true 50862,e9e7a837-b458-4c5f-bd4f-143f608ecb45,AUTHORIZATION,,true 50863,e9e7a837-b458-4c5f-bd4f-143f608ecb45,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50864,e9e7a837-b458-4c5f-bd4f-143f608ecb45,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50865,e9e7a837-b458-4c5f-bd4f-143f608ecb45,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50866,c331f6a0-ca8d-41ff-bc52-4d0b7694bd6d,LIST_ACCOUNTS,hbciListAccounts,false -50867,c331f6a0-ca8d-41ff-bc52-4d0b7694bd6d,LIST_TRANSACTIONS,hbciListTransactions,false -50868,c331f6a0-ca8d-41ff-bc52-4d0b7694bd6d,AUTHORIZATION,,false -50869,c331f6a0-ca8d-41ff-bc52-4d0b7694bd6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50870,c331f6a0-ca8d-41ff-bc52-4d0b7694bd6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50871,c331f6a0-ca8d-41ff-bc52-4d0b7694bd6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50866,5cbaaec6-fde0-44e2-ba00-1e63ebba61e3,LIST_ACCOUNTS,hbciListAccounts,false +50867,5cbaaec6-fde0-44e2-ba00-1e63ebba61e3,LIST_TRANSACTIONS,hbciListTransactions,false +50868,5cbaaec6-fde0-44e2-ba00-1e63ebba61e3,AUTHORIZATION,,false +50869,5cbaaec6-fde0-44e2-ba00-1e63ebba61e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50870,5cbaaec6-fde0-44e2-ba00-1e63ebba61e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50871,5cbaaec6-fde0-44e2-ba00-1e63ebba61e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50872,257e99d0-b01f-4062-81b1-c032d069c041,LIST_ACCOUNTS,xs2aListAccounts,true -50873,257e99d0-b01f-4062-81b1-c032d069c041,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50873,257e99d0-b01f-4062-81b1-c032d069c041,LIST_TRANSACTIONS,xs2aListTransactions,true 50874,257e99d0-b01f-4062-81b1-c032d069c041,AUTHORIZATION,,true 50875,257e99d0-b01f-4062-81b1-c032d069c041,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50876,257e99d0-b01f-4062-81b1-c032d069c041,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50877,257e99d0-b01f-4062-81b1-c032d069c041,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50878,d326fbb5-5dc6-4b99-9b84-aa04b0fcabc5,LIST_ACCOUNTS,hbciListAccounts,false -50879,d326fbb5-5dc6-4b99-9b84-aa04b0fcabc5,LIST_TRANSACTIONS,hbciListTransactions,false -50880,d326fbb5-5dc6-4b99-9b84-aa04b0fcabc5,AUTHORIZATION,,false -50881,d326fbb5-5dc6-4b99-9b84-aa04b0fcabc5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50882,d326fbb5-5dc6-4b99-9b84-aa04b0fcabc5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50883,d326fbb5-5dc6-4b99-9b84-aa04b0fcabc5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50878,11be6eef-1deb-487d-ae8b-46b6d676470e,LIST_ACCOUNTS,hbciListAccounts,false +50879,11be6eef-1deb-487d-ae8b-46b6d676470e,LIST_TRANSACTIONS,hbciListTransactions,false +50880,11be6eef-1deb-487d-ae8b-46b6d676470e,AUTHORIZATION,,false +50881,11be6eef-1deb-487d-ae8b-46b6d676470e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50882,11be6eef-1deb-487d-ae8b-46b6d676470e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50883,11be6eef-1deb-487d-ae8b-46b6d676470e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50884,8ea12c39-e4c5-4f87-b162-aa1ea5cf1a4e,LIST_ACCOUNTS,xs2aListAccounts,true -50885,8ea12c39-e4c5-4f87-b162-aa1ea5cf1a4e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50885,8ea12c39-e4c5-4f87-b162-aa1ea5cf1a4e,LIST_TRANSACTIONS,xs2aListTransactions,true 50886,8ea12c39-e4c5-4f87-b162-aa1ea5cf1a4e,AUTHORIZATION,,true 50887,8ea12c39-e4c5-4f87-b162-aa1ea5cf1a4e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50888,8ea12c39-e4c5-4f87-b162-aa1ea5cf1a4e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50889,8ea12c39-e4c5-4f87-b162-aa1ea5cf1a4e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50890,1885723b-d658-4e29-89bd-f202089b30a2,LIST_ACCOUNTS,hbciListAccounts,false -50891,1885723b-d658-4e29-89bd-f202089b30a2,LIST_TRANSACTIONS,hbciListTransactions,false -50892,1885723b-d658-4e29-89bd-f202089b30a2,AUTHORIZATION,,false -50893,1885723b-d658-4e29-89bd-f202089b30a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50894,1885723b-d658-4e29-89bd-f202089b30a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50895,1885723b-d658-4e29-89bd-f202089b30a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50890,fdeaf888-f77c-4070-9000-d3b3752f42e7,LIST_ACCOUNTS,hbciListAccounts,false +50891,fdeaf888-f77c-4070-9000-d3b3752f42e7,LIST_TRANSACTIONS,hbciListTransactions,false +50892,fdeaf888-f77c-4070-9000-d3b3752f42e7,AUTHORIZATION,,false +50893,fdeaf888-f77c-4070-9000-d3b3752f42e7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50894,fdeaf888-f77c-4070-9000-d3b3752f42e7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50895,fdeaf888-f77c-4070-9000-d3b3752f42e7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50896,bb302564-d806-4fdc-9f64-0f4a235b63ed,LIST_ACCOUNTS,xs2aListAccounts,true -50897,bb302564-d806-4fdc-9f64-0f4a235b63ed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50897,bb302564-d806-4fdc-9f64-0f4a235b63ed,LIST_TRANSACTIONS,xs2aListTransactions,true 50898,bb302564-d806-4fdc-9f64-0f4a235b63ed,AUTHORIZATION,,true 50899,bb302564-d806-4fdc-9f64-0f4a235b63ed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50900,bb302564-d806-4fdc-9f64-0f4a235b63ed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50901,bb302564-d806-4fdc-9f64-0f4a235b63ed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50902,f8758eca-569e-42fe-b413-2949bf4ccadf,LIST_ACCOUNTS,hbciListAccounts,false -50903,f8758eca-569e-42fe-b413-2949bf4ccadf,LIST_TRANSACTIONS,hbciListTransactions,false -50904,f8758eca-569e-42fe-b413-2949bf4ccadf,AUTHORIZATION,,false -50905,f8758eca-569e-42fe-b413-2949bf4ccadf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50906,f8758eca-569e-42fe-b413-2949bf4ccadf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50907,f8758eca-569e-42fe-b413-2949bf4ccadf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50902,9cb9140c-c536-4a11-b776-e01a5ab79d01,LIST_ACCOUNTS,hbciListAccounts,false +50903,9cb9140c-c536-4a11-b776-e01a5ab79d01,LIST_TRANSACTIONS,hbciListTransactions,false +50904,9cb9140c-c536-4a11-b776-e01a5ab79d01,AUTHORIZATION,,false +50905,9cb9140c-c536-4a11-b776-e01a5ab79d01,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50906,9cb9140c-c536-4a11-b776-e01a5ab79d01,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50907,9cb9140c-c536-4a11-b776-e01a5ab79d01,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50908,9fe52257-ef7d-477b-8c64-0f60d974346c,LIST_ACCOUNTS,xs2aListAccounts,true -50909,9fe52257-ef7d-477b-8c64-0f60d974346c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50909,9fe52257-ef7d-477b-8c64-0f60d974346c,LIST_TRANSACTIONS,xs2aListTransactions,true 50910,9fe52257-ef7d-477b-8c64-0f60d974346c,AUTHORIZATION,,true 50911,9fe52257-ef7d-477b-8c64-0f60d974346c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50912,9fe52257-ef7d-477b-8c64-0f60d974346c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50913,9fe52257-ef7d-477b-8c64-0f60d974346c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50914,d5e6a6aa-557b-4eb5-845f-70bafc9b3ae1,LIST_ACCOUNTS,hbciListAccounts,false -50915,d5e6a6aa-557b-4eb5-845f-70bafc9b3ae1,LIST_TRANSACTIONS,hbciListTransactions,false -50916,d5e6a6aa-557b-4eb5-845f-70bafc9b3ae1,AUTHORIZATION,,false -50917,d5e6a6aa-557b-4eb5-845f-70bafc9b3ae1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50918,d5e6a6aa-557b-4eb5-845f-70bafc9b3ae1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50919,d5e6a6aa-557b-4eb5-845f-70bafc9b3ae1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50914,f389c2cd-bad0-40b5-b9b1-befe6a901339,LIST_ACCOUNTS,hbciListAccounts,false +50915,f389c2cd-bad0-40b5-b9b1-befe6a901339,LIST_TRANSACTIONS,hbciListTransactions,false +50916,f389c2cd-bad0-40b5-b9b1-befe6a901339,AUTHORIZATION,,false +50917,f389c2cd-bad0-40b5-b9b1-befe6a901339,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50918,f389c2cd-bad0-40b5-b9b1-befe6a901339,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50919,f389c2cd-bad0-40b5-b9b1-befe6a901339,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50920,d22dc485-46b2-48f4-9011-e990b756cc17,LIST_ACCOUNTS,xs2aListAccounts,true -50921,d22dc485-46b2-48f4-9011-e990b756cc17,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50921,d22dc485-46b2-48f4-9011-e990b756cc17,LIST_TRANSACTIONS,xs2aListTransactions,true 50922,d22dc485-46b2-48f4-9011-e990b756cc17,AUTHORIZATION,,true 50923,d22dc485-46b2-48f4-9011-e990b756cc17,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50924,d22dc485-46b2-48f4-9011-e990b756cc17,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50925,d22dc485-46b2-48f4-9011-e990b756cc17,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50926,7157691a-73e6-4979-8acc-faf10e3dc6f0,LIST_ACCOUNTS,hbciListAccounts,false -50927,7157691a-73e6-4979-8acc-faf10e3dc6f0,LIST_TRANSACTIONS,hbciListTransactions,false -50928,7157691a-73e6-4979-8acc-faf10e3dc6f0,AUTHORIZATION,,false -50929,7157691a-73e6-4979-8acc-faf10e3dc6f0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50930,7157691a-73e6-4979-8acc-faf10e3dc6f0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50931,7157691a-73e6-4979-8acc-faf10e3dc6f0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50926,5278279e-2805-4fc2-a647-b60d6848cc3b,LIST_ACCOUNTS,hbciListAccounts,false +50927,5278279e-2805-4fc2-a647-b60d6848cc3b,LIST_TRANSACTIONS,hbciListTransactions,false +50928,5278279e-2805-4fc2-a647-b60d6848cc3b,AUTHORIZATION,,false +50929,5278279e-2805-4fc2-a647-b60d6848cc3b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50930,5278279e-2805-4fc2-a647-b60d6848cc3b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50931,5278279e-2805-4fc2-a647-b60d6848cc3b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50932,1e41c4e3-1ec2-477e-ba80-51df7abb90c1,LIST_ACCOUNTS,xs2aListAccounts,true -50933,1e41c4e3-1ec2-477e-ba80-51df7abb90c1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50933,1e41c4e3-1ec2-477e-ba80-51df7abb90c1,LIST_TRANSACTIONS,xs2aListTransactions,true 50934,1e41c4e3-1ec2-477e-ba80-51df7abb90c1,AUTHORIZATION,,true 50935,1e41c4e3-1ec2-477e-ba80-51df7abb90c1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50936,1e41c4e3-1ec2-477e-ba80-51df7abb90c1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50937,1e41c4e3-1ec2-477e-ba80-51df7abb90c1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50938,9c189095-f805-4742-ae58-a141ee8fb4b0,LIST_ACCOUNTS,hbciListAccounts,false -50939,9c189095-f805-4742-ae58-a141ee8fb4b0,LIST_TRANSACTIONS,hbciListTransactions,false -50940,9c189095-f805-4742-ae58-a141ee8fb4b0,AUTHORIZATION,,false -50941,9c189095-f805-4742-ae58-a141ee8fb4b0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50942,9c189095-f805-4742-ae58-a141ee8fb4b0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50943,9c189095-f805-4742-ae58-a141ee8fb4b0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50938,5315530d-e9bb-4331-9017-dd06cc0d2585,LIST_ACCOUNTS,hbciListAccounts,false +50939,5315530d-e9bb-4331-9017-dd06cc0d2585,LIST_TRANSACTIONS,hbciListTransactions,false +50940,5315530d-e9bb-4331-9017-dd06cc0d2585,AUTHORIZATION,,false +50941,5315530d-e9bb-4331-9017-dd06cc0d2585,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50942,5315530d-e9bb-4331-9017-dd06cc0d2585,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50943,5315530d-e9bb-4331-9017-dd06cc0d2585,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50944,a5efb3d6-5681-4676-8409-8fab063aacca,LIST_ACCOUNTS,xs2aListAccounts,true -50945,a5efb3d6-5681-4676-8409-8fab063aacca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50945,a5efb3d6-5681-4676-8409-8fab063aacca,LIST_TRANSACTIONS,xs2aListTransactions,true 50946,a5efb3d6-5681-4676-8409-8fab063aacca,AUTHORIZATION,,true 50947,a5efb3d6-5681-4676-8409-8fab063aacca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50948,a5efb3d6-5681-4676-8409-8fab063aacca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50949,a5efb3d6-5681-4676-8409-8fab063aacca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50950,f45c9864-e388-4006-ab17-3f5b050f252a,LIST_ACCOUNTS,hbciListAccounts,false -50951,f45c9864-e388-4006-ab17-3f5b050f252a,LIST_TRANSACTIONS,hbciListTransactions,false -50952,f45c9864-e388-4006-ab17-3f5b050f252a,AUTHORIZATION,,false -50953,f45c9864-e388-4006-ab17-3f5b050f252a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50954,f45c9864-e388-4006-ab17-3f5b050f252a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50955,f45c9864-e388-4006-ab17-3f5b050f252a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50950,d107a09a-2c51-4b34-9ca5-695338cd5636,LIST_ACCOUNTS,hbciListAccounts,false +50951,d107a09a-2c51-4b34-9ca5-695338cd5636,LIST_TRANSACTIONS,hbciListTransactions,false +50952,d107a09a-2c51-4b34-9ca5-695338cd5636,AUTHORIZATION,,false +50953,d107a09a-2c51-4b34-9ca5-695338cd5636,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50954,d107a09a-2c51-4b34-9ca5-695338cd5636,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50955,d107a09a-2c51-4b34-9ca5-695338cd5636,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50956,522d29a9-71f2-4ade-bc97-e05fc9a980cc,LIST_ACCOUNTS,xs2aListAccounts,true -50957,522d29a9-71f2-4ade-bc97-e05fc9a980cc,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50957,522d29a9-71f2-4ade-bc97-e05fc9a980cc,LIST_TRANSACTIONS,xs2aListTransactions,true 50958,522d29a9-71f2-4ade-bc97-e05fc9a980cc,AUTHORIZATION,,true 50959,522d29a9-71f2-4ade-bc97-e05fc9a980cc,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50960,522d29a9-71f2-4ade-bc97-e05fc9a980cc,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50961,522d29a9-71f2-4ade-bc97-e05fc9a980cc,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50962,9a8dfedf-f5d5-461a-ac73-c58f6bf39c76,LIST_ACCOUNTS,hbciListAccounts,false -50963,9a8dfedf-f5d5-461a-ac73-c58f6bf39c76,LIST_TRANSACTIONS,hbciListTransactions,false -50964,9a8dfedf-f5d5-461a-ac73-c58f6bf39c76,AUTHORIZATION,,false -50965,9a8dfedf-f5d5-461a-ac73-c58f6bf39c76,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50966,9a8dfedf-f5d5-461a-ac73-c58f6bf39c76,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50967,9a8dfedf-f5d5-461a-ac73-c58f6bf39c76,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50962,654a9192-9318-4088-80de-4f4905bf17b6,LIST_ACCOUNTS,hbciListAccounts,false +50963,654a9192-9318-4088-80de-4f4905bf17b6,LIST_TRANSACTIONS,hbciListTransactions,false +50964,654a9192-9318-4088-80de-4f4905bf17b6,AUTHORIZATION,,false +50965,654a9192-9318-4088-80de-4f4905bf17b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50966,654a9192-9318-4088-80de-4f4905bf17b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50967,654a9192-9318-4088-80de-4f4905bf17b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50968,c20219ad-8d97-4cc3-97be-a521c7dd211f,LIST_ACCOUNTS,xs2aListAccounts,true -50969,c20219ad-8d97-4cc3-97be-a521c7dd211f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50969,c20219ad-8d97-4cc3-97be-a521c7dd211f,LIST_TRANSACTIONS,xs2aListTransactions,true 50970,c20219ad-8d97-4cc3-97be-a521c7dd211f,AUTHORIZATION,,true 50971,c20219ad-8d97-4cc3-97be-a521c7dd211f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50972,c20219ad-8d97-4cc3-97be-a521c7dd211f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50973,c20219ad-8d97-4cc3-97be-a521c7dd211f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50974,d0111aaf-7531-44d5-a872-f37496ac79d6,LIST_ACCOUNTS,hbciListAccounts,false -50975,d0111aaf-7531-44d5-a872-f37496ac79d6,LIST_TRANSACTIONS,hbciListTransactions,false -50976,d0111aaf-7531-44d5-a872-f37496ac79d6,AUTHORIZATION,,false -50977,d0111aaf-7531-44d5-a872-f37496ac79d6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50978,d0111aaf-7531-44d5-a872-f37496ac79d6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50979,d0111aaf-7531-44d5-a872-f37496ac79d6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50974,d3bc6bd4-5a67-4238-8063-836aafabfbb0,LIST_ACCOUNTS,hbciListAccounts,false +50975,d3bc6bd4-5a67-4238-8063-836aafabfbb0,LIST_TRANSACTIONS,hbciListTransactions,false +50976,d3bc6bd4-5a67-4238-8063-836aafabfbb0,AUTHORIZATION,,false +50977,d3bc6bd4-5a67-4238-8063-836aafabfbb0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50978,d3bc6bd4-5a67-4238-8063-836aafabfbb0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50979,d3bc6bd4-5a67-4238-8063-836aafabfbb0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50980,ccfb1234-839c-4e05-a88a-c203ae1c4eae,LIST_ACCOUNTS,xs2aListAccounts,true -50981,ccfb1234-839c-4e05-a88a-c203ae1c4eae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50981,ccfb1234-839c-4e05-a88a-c203ae1c4eae,LIST_TRANSACTIONS,xs2aListTransactions,true 50982,ccfb1234-839c-4e05-a88a-c203ae1c4eae,AUTHORIZATION,,true 50983,ccfb1234-839c-4e05-a88a-c203ae1c4eae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50984,ccfb1234-839c-4e05-a88a-c203ae1c4eae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50985,ccfb1234-839c-4e05-a88a-c203ae1c4eae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50986,ef00e7c3-a7c8-4af5-9775-0cf839086629,LIST_ACCOUNTS,hbciListAccounts,false -50987,ef00e7c3-a7c8-4af5-9775-0cf839086629,LIST_TRANSACTIONS,hbciListTransactions,false -50988,ef00e7c3-a7c8-4af5-9775-0cf839086629,AUTHORIZATION,,false -50989,ef00e7c3-a7c8-4af5-9775-0cf839086629,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -50990,ef00e7c3-a7c8-4af5-9775-0cf839086629,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -50991,ef00e7c3-a7c8-4af5-9775-0cf839086629,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50986,8ff58656-fff0-4123-a259-0bdd92d045b6,LIST_ACCOUNTS,hbciListAccounts,false +50987,8ff58656-fff0-4123-a259-0bdd92d045b6,LIST_TRANSACTIONS,hbciListTransactions,false +50988,8ff58656-fff0-4123-a259-0bdd92d045b6,AUTHORIZATION,,false +50989,8ff58656-fff0-4123-a259-0bdd92d045b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +50990,8ff58656-fff0-4123-a259-0bdd92d045b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +50991,8ff58656-fff0-4123-a259-0bdd92d045b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 50992,1fca6313-be07-4385-8f25-142346c75a6a,LIST_ACCOUNTS,xs2aListAccounts,true -50993,1fca6313-be07-4385-8f25-142346c75a6a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +50993,1fca6313-be07-4385-8f25-142346c75a6a,LIST_TRANSACTIONS,xs2aListTransactions,true 50994,1fca6313-be07-4385-8f25-142346c75a6a,AUTHORIZATION,,true 50995,1fca6313-be07-4385-8f25-142346c75a6a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 50996,1fca6313-be07-4385-8f25-142346c75a6a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 50997,1fca6313-be07-4385-8f25-142346c75a6a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -50998,7ab54da3-5529-4927-810d-d89b6d7741db,LIST_ACCOUNTS,hbciListAccounts,false -50999,7ab54da3-5529-4927-810d-d89b6d7741db,LIST_TRANSACTIONS,hbciListTransactions,false -51000,7ab54da3-5529-4927-810d-d89b6d7741db,AUTHORIZATION,,false -51001,7ab54da3-5529-4927-810d-d89b6d7741db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51002,7ab54da3-5529-4927-810d-d89b6d7741db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51003,7ab54da3-5529-4927-810d-d89b6d7741db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +50998,06c2de47-c936-4550-ba52-292ec069eb05,LIST_ACCOUNTS,hbciListAccounts,false +50999,06c2de47-c936-4550-ba52-292ec069eb05,LIST_TRANSACTIONS,hbciListTransactions,false +51000,06c2de47-c936-4550-ba52-292ec069eb05,AUTHORIZATION,,false +51001,06c2de47-c936-4550-ba52-292ec069eb05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51002,06c2de47-c936-4550-ba52-292ec069eb05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51003,06c2de47-c936-4550-ba52-292ec069eb05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51004,92809b98-8a9d-4e6d-a37f-42f84f5bff9d,LIST_ACCOUNTS,xs2aListAccounts,true -51005,92809b98-8a9d-4e6d-a37f-42f84f5bff9d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51005,92809b98-8a9d-4e6d-a37f-42f84f5bff9d,LIST_TRANSACTIONS,xs2aListTransactions,true 51006,92809b98-8a9d-4e6d-a37f-42f84f5bff9d,AUTHORIZATION,,true 51007,92809b98-8a9d-4e6d-a37f-42f84f5bff9d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51008,92809b98-8a9d-4e6d-a37f-42f84f5bff9d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51009,92809b98-8a9d-4e6d-a37f-42f84f5bff9d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51010,21ecbe8f-596d-4871-a1a6-dfb93ed6d7b3,LIST_ACCOUNTS,hbciListAccounts,false -51011,21ecbe8f-596d-4871-a1a6-dfb93ed6d7b3,LIST_TRANSACTIONS,hbciListTransactions,false -51012,21ecbe8f-596d-4871-a1a6-dfb93ed6d7b3,AUTHORIZATION,,false -51013,21ecbe8f-596d-4871-a1a6-dfb93ed6d7b3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51014,21ecbe8f-596d-4871-a1a6-dfb93ed6d7b3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51015,21ecbe8f-596d-4871-a1a6-dfb93ed6d7b3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51010,f34c2c3d-2f03-4126-9b64-caa00407b25d,LIST_ACCOUNTS,hbciListAccounts,false +51011,f34c2c3d-2f03-4126-9b64-caa00407b25d,LIST_TRANSACTIONS,hbciListTransactions,false +51012,f34c2c3d-2f03-4126-9b64-caa00407b25d,AUTHORIZATION,,false +51013,f34c2c3d-2f03-4126-9b64-caa00407b25d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51014,f34c2c3d-2f03-4126-9b64-caa00407b25d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51015,f34c2c3d-2f03-4126-9b64-caa00407b25d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51016,9c641c7d-fbd0-46cc-926c-f47a93dda81e,LIST_ACCOUNTS,xs2aListAccounts,true -51017,9c641c7d-fbd0-46cc-926c-f47a93dda81e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51017,9c641c7d-fbd0-46cc-926c-f47a93dda81e,LIST_TRANSACTIONS,xs2aListTransactions,true 51018,9c641c7d-fbd0-46cc-926c-f47a93dda81e,AUTHORIZATION,,true 51019,9c641c7d-fbd0-46cc-926c-f47a93dda81e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51020,9c641c7d-fbd0-46cc-926c-f47a93dda81e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51021,9c641c7d-fbd0-46cc-926c-f47a93dda81e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51022,6e690a45-8b95-451e-a32e-6483f0a46128,LIST_ACCOUNTS,hbciListAccounts,false -51023,6e690a45-8b95-451e-a32e-6483f0a46128,LIST_TRANSACTIONS,hbciListTransactions,false -51024,6e690a45-8b95-451e-a32e-6483f0a46128,AUTHORIZATION,,false -51025,6e690a45-8b95-451e-a32e-6483f0a46128,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51026,6e690a45-8b95-451e-a32e-6483f0a46128,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51027,6e690a45-8b95-451e-a32e-6483f0a46128,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51022,b6da1a8f-49c6-4e83-a325-575293956b92,LIST_ACCOUNTS,hbciListAccounts,false +51023,b6da1a8f-49c6-4e83-a325-575293956b92,LIST_TRANSACTIONS,hbciListTransactions,false +51024,b6da1a8f-49c6-4e83-a325-575293956b92,AUTHORIZATION,,false +51025,b6da1a8f-49c6-4e83-a325-575293956b92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51026,b6da1a8f-49c6-4e83-a325-575293956b92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51027,b6da1a8f-49c6-4e83-a325-575293956b92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51028,62f53eea-1ef9-4127-9054-afe10ae8b99c,LIST_ACCOUNTS,xs2aListAccounts,true -51029,62f53eea-1ef9-4127-9054-afe10ae8b99c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51029,62f53eea-1ef9-4127-9054-afe10ae8b99c,LIST_TRANSACTIONS,xs2aListTransactions,true 51030,62f53eea-1ef9-4127-9054-afe10ae8b99c,AUTHORIZATION,,true 51031,62f53eea-1ef9-4127-9054-afe10ae8b99c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51032,62f53eea-1ef9-4127-9054-afe10ae8b99c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51033,62f53eea-1ef9-4127-9054-afe10ae8b99c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51034,86acfd36-0cb7-4385-b78a-16c3064d6eda,LIST_ACCOUNTS,hbciListAccounts,false -51035,86acfd36-0cb7-4385-b78a-16c3064d6eda,LIST_TRANSACTIONS,hbciListTransactions,false -51036,86acfd36-0cb7-4385-b78a-16c3064d6eda,AUTHORIZATION,,false -51037,86acfd36-0cb7-4385-b78a-16c3064d6eda,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51038,86acfd36-0cb7-4385-b78a-16c3064d6eda,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51039,86acfd36-0cb7-4385-b78a-16c3064d6eda,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51034,97a14085-0592-46ac-bea9-8f1fe52decda,LIST_ACCOUNTS,hbciListAccounts,false +51035,97a14085-0592-46ac-bea9-8f1fe52decda,LIST_TRANSACTIONS,hbciListTransactions,false +51036,97a14085-0592-46ac-bea9-8f1fe52decda,AUTHORIZATION,,false +51037,97a14085-0592-46ac-bea9-8f1fe52decda,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51038,97a14085-0592-46ac-bea9-8f1fe52decda,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51039,97a14085-0592-46ac-bea9-8f1fe52decda,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51040,c72cafad-d0ae-4789-a469-d7adf755951a,LIST_ACCOUNTS,xs2aListAccounts,true -51041,c72cafad-d0ae-4789-a469-d7adf755951a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51041,c72cafad-d0ae-4789-a469-d7adf755951a,LIST_TRANSACTIONS,xs2aListTransactions,true 51042,c72cafad-d0ae-4789-a469-d7adf755951a,AUTHORIZATION,,true 51043,c72cafad-d0ae-4789-a469-d7adf755951a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51044,c72cafad-d0ae-4789-a469-d7adf755951a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51045,c72cafad-d0ae-4789-a469-d7adf755951a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51046,f2ce1552-93b9-477c-9822-48078338d02c,LIST_ACCOUNTS,hbciListAccounts,false -51047,f2ce1552-93b9-477c-9822-48078338d02c,LIST_TRANSACTIONS,hbciListTransactions,false -51048,f2ce1552-93b9-477c-9822-48078338d02c,AUTHORIZATION,,false -51049,f2ce1552-93b9-477c-9822-48078338d02c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51050,f2ce1552-93b9-477c-9822-48078338d02c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51051,f2ce1552-93b9-477c-9822-48078338d02c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51046,bed9d3d4-da01-4780-9c2a-b67b7c47d5dc,LIST_ACCOUNTS,hbciListAccounts,false +51047,bed9d3d4-da01-4780-9c2a-b67b7c47d5dc,LIST_TRANSACTIONS,hbciListTransactions,false +51048,bed9d3d4-da01-4780-9c2a-b67b7c47d5dc,AUTHORIZATION,,false +51049,bed9d3d4-da01-4780-9c2a-b67b7c47d5dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51050,bed9d3d4-da01-4780-9c2a-b67b7c47d5dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51051,bed9d3d4-da01-4780-9c2a-b67b7c47d5dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51052,eaa404ae-fc26-43e2-b55d-513312e6c045,LIST_ACCOUNTS,xs2aListAccounts,true -51053,eaa404ae-fc26-43e2-b55d-513312e6c045,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51053,eaa404ae-fc26-43e2-b55d-513312e6c045,LIST_TRANSACTIONS,xs2aListTransactions,true 51054,eaa404ae-fc26-43e2-b55d-513312e6c045,AUTHORIZATION,,true 51055,eaa404ae-fc26-43e2-b55d-513312e6c045,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51056,eaa404ae-fc26-43e2-b55d-513312e6c045,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51057,eaa404ae-fc26-43e2-b55d-513312e6c045,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51058,08277946-4472-46c1-afc7-e119a8d0c86d,LIST_ACCOUNTS,hbciListAccounts,false -51059,08277946-4472-46c1-afc7-e119a8d0c86d,LIST_TRANSACTIONS,hbciListTransactions,false -51060,08277946-4472-46c1-afc7-e119a8d0c86d,AUTHORIZATION,,false -51061,08277946-4472-46c1-afc7-e119a8d0c86d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51062,08277946-4472-46c1-afc7-e119a8d0c86d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51063,08277946-4472-46c1-afc7-e119a8d0c86d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51058,27efc14a-9296-48c8-8dfa-2a90e91dd4b2,LIST_ACCOUNTS,hbciListAccounts,false +51059,27efc14a-9296-48c8-8dfa-2a90e91dd4b2,LIST_TRANSACTIONS,hbciListTransactions,false +51060,27efc14a-9296-48c8-8dfa-2a90e91dd4b2,AUTHORIZATION,,false +51061,27efc14a-9296-48c8-8dfa-2a90e91dd4b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51062,27efc14a-9296-48c8-8dfa-2a90e91dd4b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51063,27efc14a-9296-48c8-8dfa-2a90e91dd4b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51064,ec30d341-8b38-43bd-af6e-e345c8ec3ec3,LIST_ACCOUNTS,xs2aListAccounts,true -51065,ec30d341-8b38-43bd-af6e-e345c8ec3ec3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51065,ec30d341-8b38-43bd-af6e-e345c8ec3ec3,LIST_TRANSACTIONS,xs2aListTransactions,true 51066,ec30d341-8b38-43bd-af6e-e345c8ec3ec3,AUTHORIZATION,,true 51067,ec30d341-8b38-43bd-af6e-e345c8ec3ec3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51068,ec30d341-8b38-43bd-af6e-e345c8ec3ec3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51069,ec30d341-8b38-43bd-af6e-e345c8ec3ec3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51070,5ca11865-c99e-4651-b759-cfb7d9482491,LIST_ACCOUNTS,hbciListAccounts,false -51071,5ca11865-c99e-4651-b759-cfb7d9482491,LIST_TRANSACTIONS,hbciListTransactions,false -51072,5ca11865-c99e-4651-b759-cfb7d9482491,AUTHORIZATION,,false -51073,5ca11865-c99e-4651-b759-cfb7d9482491,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51074,5ca11865-c99e-4651-b759-cfb7d9482491,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51075,5ca11865-c99e-4651-b759-cfb7d9482491,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51070,fca20462-9b6d-4a5f-8585-34e55d1a30cf,LIST_ACCOUNTS,hbciListAccounts,false +51071,fca20462-9b6d-4a5f-8585-34e55d1a30cf,LIST_TRANSACTIONS,hbciListTransactions,false +51072,fca20462-9b6d-4a5f-8585-34e55d1a30cf,AUTHORIZATION,,false +51073,fca20462-9b6d-4a5f-8585-34e55d1a30cf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51074,fca20462-9b6d-4a5f-8585-34e55d1a30cf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51075,fca20462-9b6d-4a5f-8585-34e55d1a30cf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51076,f006a5ff-acf6-4636-8f24-4bc8b0ec14a6,LIST_ACCOUNTS,xs2aListAccounts,true -51077,f006a5ff-acf6-4636-8f24-4bc8b0ec14a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51077,f006a5ff-acf6-4636-8f24-4bc8b0ec14a6,LIST_TRANSACTIONS,xs2aListTransactions,true 51078,f006a5ff-acf6-4636-8f24-4bc8b0ec14a6,AUTHORIZATION,,true 51079,f006a5ff-acf6-4636-8f24-4bc8b0ec14a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51080,f006a5ff-acf6-4636-8f24-4bc8b0ec14a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51081,f006a5ff-acf6-4636-8f24-4bc8b0ec14a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51082,655b062c-9f19-4aa4-9625-b40e7e880bb3,LIST_ACCOUNTS,hbciListAccounts,false -51083,655b062c-9f19-4aa4-9625-b40e7e880bb3,LIST_TRANSACTIONS,hbciListTransactions,false -51084,655b062c-9f19-4aa4-9625-b40e7e880bb3,AUTHORIZATION,,false -51085,655b062c-9f19-4aa4-9625-b40e7e880bb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51086,655b062c-9f19-4aa4-9625-b40e7e880bb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51087,655b062c-9f19-4aa4-9625-b40e7e880bb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51082,df7e6b80-cd03-4360-b682-7e86d03c27e4,LIST_ACCOUNTS,hbciListAccounts,false +51083,df7e6b80-cd03-4360-b682-7e86d03c27e4,LIST_TRANSACTIONS,hbciListTransactions,false +51084,df7e6b80-cd03-4360-b682-7e86d03c27e4,AUTHORIZATION,,false +51085,df7e6b80-cd03-4360-b682-7e86d03c27e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51086,df7e6b80-cd03-4360-b682-7e86d03c27e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51087,df7e6b80-cd03-4360-b682-7e86d03c27e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51088,92a646bd-78ea-49a1-aac4-0eeb10ddd946,LIST_ACCOUNTS,xs2aListAccounts,true -51089,92a646bd-78ea-49a1-aac4-0eeb10ddd946,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51089,92a646bd-78ea-49a1-aac4-0eeb10ddd946,LIST_TRANSACTIONS,xs2aListTransactions,true 51090,92a646bd-78ea-49a1-aac4-0eeb10ddd946,AUTHORIZATION,,true 51091,92a646bd-78ea-49a1-aac4-0eeb10ddd946,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51092,92a646bd-78ea-49a1-aac4-0eeb10ddd946,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51093,92a646bd-78ea-49a1-aac4-0eeb10ddd946,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51094,7f13512a-483a-4e62-8032-0026cff2fc81,LIST_ACCOUNTS,hbciListAccounts,false -51095,7f13512a-483a-4e62-8032-0026cff2fc81,LIST_TRANSACTIONS,hbciListTransactions,false -51096,7f13512a-483a-4e62-8032-0026cff2fc81,AUTHORIZATION,,false -51097,7f13512a-483a-4e62-8032-0026cff2fc81,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51098,7f13512a-483a-4e62-8032-0026cff2fc81,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51099,7f13512a-483a-4e62-8032-0026cff2fc81,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51094,11d4b565-d647-4ce7-befc-5129f033fe41,LIST_ACCOUNTS,hbciListAccounts,false +51095,11d4b565-d647-4ce7-befc-5129f033fe41,LIST_TRANSACTIONS,hbciListTransactions,false +51096,11d4b565-d647-4ce7-befc-5129f033fe41,AUTHORIZATION,,false +51097,11d4b565-d647-4ce7-befc-5129f033fe41,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51098,11d4b565-d647-4ce7-befc-5129f033fe41,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51099,11d4b565-d647-4ce7-befc-5129f033fe41,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51100,806551d7-dba0-4d34-be1e-999930c7324f,LIST_ACCOUNTS,xs2aListAccounts,true -51101,806551d7-dba0-4d34-be1e-999930c7324f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51101,806551d7-dba0-4d34-be1e-999930c7324f,LIST_TRANSACTIONS,xs2aListTransactions,true 51102,806551d7-dba0-4d34-be1e-999930c7324f,AUTHORIZATION,,true 51103,806551d7-dba0-4d34-be1e-999930c7324f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51104,806551d7-dba0-4d34-be1e-999930c7324f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51105,806551d7-dba0-4d34-be1e-999930c7324f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51106,312ed38a-d437-4430-9179-ade13db9d8a4,LIST_ACCOUNTS,hbciListAccounts,false -51107,312ed38a-d437-4430-9179-ade13db9d8a4,LIST_TRANSACTIONS,hbciListTransactions,false -51108,312ed38a-d437-4430-9179-ade13db9d8a4,AUTHORIZATION,,false -51109,312ed38a-d437-4430-9179-ade13db9d8a4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51110,312ed38a-d437-4430-9179-ade13db9d8a4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51111,312ed38a-d437-4430-9179-ade13db9d8a4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51106,c9d985e3-3e13-46a3-9564-0a3ada864a7a,LIST_ACCOUNTS,hbciListAccounts,false +51107,c9d985e3-3e13-46a3-9564-0a3ada864a7a,LIST_TRANSACTIONS,hbciListTransactions,false +51108,c9d985e3-3e13-46a3-9564-0a3ada864a7a,AUTHORIZATION,,false +51109,c9d985e3-3e13-46a3-9564-0a3ada864a7a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51110,c9d985e3-3e13-46a3-9564-0a3ada864a7a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51111,c9d985e3-3e13-46a3-9564-0a3ada864a7a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51112,f58ead3d-c193-47e1-918d-4545174c4f8f,LIST_ACCOUNTS,xs2aListAccounts,true -51113,f58ead3d-c193-47e1-918d-4545174c4f8f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51113,f58ead3d-c193-47e1-918d-4545174c4f8f,LIST_TRANSACTIONS,xs2aListTransactions,true 51114,f58ead3d-c193-47e1-918d-4545174c4f8f,AUTHORIZATION,,true 51115,f58ead3d-c193-47e1-918d-4545174c4f8f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51116,f58ead3d-c193-47e1-918d-4545174c4f8f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51117,f58ead3d-c193-47e1-918d-4545174c4f8f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51118,afb37dcd-a5ac-4085-a487-ad91078e826d,LIST_ACCOUNTS,hbciListAccounts,false -51119,afb37dcd-a5ac-4085-a487-ad91078e826d,LIST_TRANSACTIONS,hbciListTransactions,false -51120,afb37dcd-a5ac-4085-a487-ad91078e826d,AUTHORIZATION,,false -51121,afb37dcd-a5ac-4085-a487-ad91078e826d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51122,afb37dcd-a5ac-4085-a487-ad91078e826d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51123,afb37dcd-a5ac-4085-a487-ad91078e826d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51118,dc83b859-ac25-4371-be39-ba1c779335ad,LIST_ACCOUNTS,hbciListAccounts,false +51119,dc83b859-ac25-4371-be39-ba1c779335ad,LIST_TRANSACTIONS,hbciListTransactions,false +51120,dc83b859-ac25-4371-be39-ba1c779335ad,AUTHORIZATION,,false +51121,dc83b859-ac25-4371-be39-ba1c779335ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51122,dc83b859-ac25-4371-be39-ba1c779335ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51123,dc83b859-ac25-4371-be39-ba1c779335ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51124,2d999567-4163-42d5-ab67-016e83043579,LIST_ACCOUNTS,xs2aListAccounts,true -51125,2d999567-4163-42d5-ab67-016e83043579,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51125,2d999567-4163-42d5-ab67-016e83043579,LIST_TRANSACTIONS,xs2aListTransactions,true 51126,2d999567-4163-42d5-ab67-016e83043579,AUTHORIZATION,,true 51127,2d999567-4163-42d5-ab67-016e83043579,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51128,2d999567-4163-42d5-ab67-016e83043579,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51129,2d999567-4163-42d5-ab67-016e83043579,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51130,fe59d4b9-c930-4941-8bce-d5e3e71cc2c5,LIST_ACCOUNTS,hbciListAccounts,false -51131,fe59d4b9-c930-4941-8bce-d5e3e71cc2c5,LIST_TRANSACTIONS,hbciListTransactions,false -51132,fe59d4b9-c930-4941-8bce-d5e3e71cc2c5,AUTHORIZATION,,false -51133,fe59d4b9-c930-4941-8bce-d5e3e71cc2c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51134,fe59d4b9-c930-4941-8bce-d5e3e71cc2c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51135,fe59d4b9-c930-4941-8bce-d5e3e71cc2c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51130,e1476aef-a53e-474a-92ee-3cd379a79e3a,LIST_ACCOUNTS,hbciListAccounts,false +51131,e1476aef-a53e-474a-92ee-3cd379a79e3a,LIST_TRANSACTIONS,hbciListTransactions,false +51132,e1476aef-a53e-474a-92ee-3cd379a79e3a,AUTHORIZATION,,false +51133,e1476aef-a53e-474a-92ee-3cd379a79e3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51134,e1476aef-a53e-474a-92ee-3cd379a79e3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51135,e1476aef-a53e-474a-92ee-3cd379a79e3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51136,a92c4b3e-7b49-453f-a8a2-ff85b907c92e,LIST_ACCOUNTS,xs2aListAccounts,true -51137,a92c4b3e-7b49-453f-a8a2-ff85b907c92e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51137,a92c4b3e-7b49-453f-a8a2-ff85b907c92e,LIST_TRANSACTIONS,xs2aListTransactions,true 51138,a92c4b3e-7b49-453f-a8a2-ff85b907c92e,AUTHORIZATION,,true 51139,a92c4b3e-7b49-453f-a8a2-ff85b907c92e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51140,a92c4b3e-7b49-453f-a8a2-ff85b907c92e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51141,a92c4b3e-7b49-453f-a8a2-ff85b907c92e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51142,5e6b628e-afe0-48a2-acc8-e88e6a04c05e,LIST_ACCOUNTS,hbciListAccounts,false -51143,5e6b628e-afe0-48a2-acc8-e88e6a04c05e,LIST_TRANSACTIONS,hbciListTransactions,false -51144,5e6b628e-afe0-48a2-acc8-e88e6a04c05e,AUTHORIZATION,,false -51145,5e6b628e-afe0-48a2-acc8-e88e6a04c05e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51146,5e6b628e-afe0-48a2-acc8-e88e6a04c05e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51147,5e6b628e-afe0-48a2-acc8-e88e6a04c05e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51142,4795940b-a730-4dfc-a193-88bdd81ec96c,LIST_ACCOUNTS,hbciListAccounts,false +51143,4795940b-a730-4dfc-a193-88bdd81ec96c,LIST_TRANSACTIONS,hbciListTransactions,false +51144,4795940b-a730-4dfc-a193-88bdd81ec96c,AUTHORIZATION,,false +51145,4795940b-a730-4dfc-a193-88bdd81ec96c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51146,4795940b-a730-4dfc-a193-88bdd81ec96c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51147,4795940b-a730-4dfc-a193-88bdd81ec96c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51148,946ad2f4-533c-479a-885b-6b46b21cccc5,LIST_ACCOUNTS,xs2aListAccounts,true -51149,946ad2f4-533c-479a-885b-6b46b21cccc5,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51149,946ad2f4-533c-479a-885b-6b46b21cccc5,LIST_TRANSACTIONS,xs2aListTransactions,true 51150,946ad2f4-533c-479a-885b-6b46b21cccc5,AUTHORIZATION,,true 51151,946ad2f4-533c-479a-885b-6b46b21cccc5,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51152,946ad2f4-533c-479a-885b-6b46b21cccc5,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51153,946ad2f4-533c-479a-885b-6b46b21cccc5,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51154,458d5231-0bdb-4f86-8c07-2c4365f2fdbf,LIST_ACCOUNTS,hbciListAccounts,false -51155,458d5231-0bdb-4f86-8c07-2c4365f2fdbf,LIST_TRANSACTIONS,hbciListTransactions,false -51156,458d5231-0bdb-4f86-8c07-2c4365f2fdbf,AUTHORIZATION,,false -51157,458d5231-0bdb-4f86-8c07-2c4365f2fdbf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51158,458d5231-0bdb-4f86-8c07-2c4365f2fdbf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51159,458d5231-0bdb-4f86-8c07-2c4365f2fdbf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51154,adcc0dd0-af9c-444e-b261-0bc501fc6599,LIST_ACCOUNTS,hbciListAccounts,false +51155,adcc0dd0-af9c-444e-b261-0bc501fc6599,LIST_TRANSACTIONS,hbciListTransactions,false +51156,adcc0dd0-af9c-444e-b261-0bc501fc6599,AUTHORIZATION,,false +51157,adcc0dd0-af9c-444e-b261-0bc501fc6599,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51158,adcc0dd0-af9c-444e-b261-0bc501fc6599,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51159,adcc0dd0-af9c-444e-b261-0bc501fc6599,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51160,74014fab-2f6e-4683-9226-a98f37c361a7,LIST_ACCOUNTS,xs2aListAccounts,true -51161,74014fab-2f6e-4683-9226-a98f37c361a7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51161,74014fab-2f6e-4683-9226-a98f37c361a7,LIST_TRANSACTIONS,xs2aListTransactions,true 51162,74014fab-2f6e-4683-9226-a98f37c361a7,AUTHORIZATION,,true 51163,74014fab-2f6e-4683-9226-a98f37c361a7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51164,74014fab-2f6e-4683-9226-a98f37c361a7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51165,74014fab-2f6e-4683-9226-a98f37c361a7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51166,4a000eda-adc1-4df8-b3ac-a2c2e1c05213,LIST_ACCOUNTS,hbciListAccounts,false -51167,4a000eda-adc1-4df8-b3ac-a2c2e1c05213,LIST_TRANSACTIONS,hbciListTransactions,false -51168,4a000eda-adc1-4df8-b3ac-a2c2e1c05213,AUTHORIZATION,,false -51169,4a000eda-adc1-4df8-b3ac-a2c2e1c05213,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51170,4a000eda-adc1-4df8-b3ac-a2c2e1c05213,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51171,4a000eda-adc1-4df8-b3ac-a2c2e1c05213,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51166,8eb8e601-b0d9-46db-a8b4-a4e924bb7df6,LIST_ACCOUNTS,hbciListAccounts,false +51167,8eb8e601-b0d9-46db-a8b4-a4e924bb7df6,LIST_TRANSACTIONS,hbciListTransactions,false +51168,8eb8e601-b0d9-46db-a8b4-a4e924bb7df6,AUTHORIZATION,,false +51169,8eb8e601-b0d9-46db-a8b4-a4e924bb7df6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51170,8eb8e601-b0d9-46db-a8b4-a4e924bb7df6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51171,8eb8e601-b0d9-46db-a8b4-a4e924bb7df6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51172,e3d1215b-2f55-40f6-817c-725dd993eb49,LIST_ACCOUNTS,xs2aListAccounts,true -51173,e3d1215b-2f55-40f6-817c-725dd993eb49,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51173,e3d1215b-2f55-40f6-817c-725dd993eb49,LIST_TRANSACTIONS,xs2aListTransactions,true 51174,e3d1215b-2f55-40f6-817c-725dd993eb49,AUTHORIZATION,,true 51175,e3d1215b-2f55-40f6-817c-725dd993eb49,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51176,e3d1215b-2f55-40f6-817c-725dd993eb49,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51177,e3d1215b-2f55-40f6-817c-725dd993eb49,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51178,4e2a99f5-31a4-4de4-8e43-d4d26e575bdf,LIST_ACCOUNTS,hbciListAccounts,false -51179,4e2a99f5-31a4-4de4-8e43-d4d26e575bdf,LIST_TRANSACTIONS,hbciListTransactions,false -51180,4e2a99f5-31a4-4de4-8e43-d4d26e575bdf,AUTHORIZATION,,false -51181,4e2a99f5-31a4-4de4-8e43-d4d26e575bdf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51182,4e2a99f5-31a4-4de4-8e43-d4d26e575bdf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51183,4e2a99f5-31a4-4de4-8e43-d4d26e575bdf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51178,0ca83734-985e-454d-b716-95a69c368b11,LIST_ACCOUNTS,hbciListAccounts,false +51179,0ca83734-985e-454d-b716-95a69c368b11,LIST_TRANSACTIONS,hbciListTransactions,false +51180,0ca83734-985e-454d-b716-95a69c368b11,AUTHORIZATION,,false +51181,0ca83734-985e-454d-b716-95a69c368b11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51182,0ca83734-985e-454d-b716-95a69c368b11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51183,0ca83734-985e-454d-b716-95a69c368b11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51184,d8fdacf3-34ad-4cc6-ab7d-0d34cdc13add,LIST_ACCOUNTS,xs2aListAccounts,true -51185,d8fdacf3-34ad-4cc6-ab7d-0d34cdc13add,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51185,d8fdacf3-34ad-4cc6-ab7d-0d34cdc13add,LIST_TRANSACTIONS,xs2aListTransactions,true 51186,d8fdacf3-34ad-4cc6-ab7d-0d34cdc13add,AUTHORIZATION,,true 51187,d8fdacf3-34ad-4cc6-ab7d-0d34cdc13add,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51188,d8fdacf3-34ad-4cc6-ab7d-0d34cdc13add,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51189,d8fdacf3-34ad-4cc6-ab7d-0d34cdc13add,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51190,22d156f5-47fa-49b9-96db-0f269d71aee2,LIST_ACCOUNTS,hbciListAccounts,false -51191,22d156f5-47fa-49b9-96db-0f269d71aee2,LIST_TRANSACTIONS,hbciListTransactions,false -51192,22d156f5-47fa-49b9-96db-0f269d71aee2,AUTHORIZATION,,false -51193,22d156f5-47fa-49b9-96db-0f269d71aee2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51194,22d156f5-47fa-49b9-96db-0f269d71aee2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51195,22d156f5-47fa-49b9-96db-0f269d71aee2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51190,6a84b238-f110-4b94-8b93-22b0e634eb33,LIST_ACCOUNTS,hbciListAccounts,false +51191,6a84b238-f110-4b94-8b93-22b0e634eb33,LIST_TRANSACTIONS,hbciListTransactions,false +51192,6a84b238-f110-4b94-8b93-22b0e634eb33,AUTHORIZATION,,false +51193,6a84b238-f110-4b94-8b93-22b0e634eb33,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51194,6a84b238-f110-4b94-8b93-22b0e634eb33,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51195,6a84b238-f110-4b94-8b93-22b0e634eb33,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51196,c952959c-6ded-45df-88a1-3a1049d8b332,LIST_ACCOUNTS,xs2aListAccounts,true -51197,c952959c-6ded-45df-88a1-3a1049d8b332,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51197,c952959c-6ded-45df-88a1-3a1049d8b332,LIST_TRANSACTIONS,xs2aListTransactions,true 51198,c952959c-6ded-45df-88a1-3a1049d8b332,AUTHORIZATION,,true 51199,c952959c-6ded-45df-88a1-3a1049d8b332,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51200,c952959c-6ded-45df-88a1-3a1049d8b332,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51201,c952959c-6ded-45df-88a1-3a1049d8b332,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51202,e9b201a7-7a78-44bf-afb5-712d82f87402,LIST_ACCOUNTS,hbciListAccounts,false -51203,e9b201a7-7a78-44bf-afb5-712d82f87402,LIST_TRANSACTIONS,hbciListTransactions,false -51204,e9b201a7-7a78-44bf-afb5-712d82f87402,AUTHORIZATION,,false -51205,e9b201a7-7a78-44bf-afb5-712d82f87402,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51206,e9b201a7-7a78-44bf-afb5-712d82f87402,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51207,e9b201a7-7a78-44bf-afb5-712d82f87402,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51202,89c75216-09da-4a6e-b0cb-8c1fc06cbe06,LIST_ACCOUNTS,hbciListAccounts,false +51203,89c75216-09da-4a6e-b0cb-8c1fc06cbe06,LIST_TRANSACTIONS,hbciListTransactions,false +51204,89c75216-09da-4a6e-b0cb-8c1fc06cbe06,AUTHORIZATION,,false +51205,89c75216-09da-4a6e-b0cb-8c1fc06cbe06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51206,89c75216-09da-4a6e-b0cb-8c1fc06cbe06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51207,89c75216-09da-4a6e-b0cb-8c1fc06cbe06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51208,a2d62245-faad-48fd-b9fe-1db710b5bff7,LIST_ACCOUNTS,xs2aListAccounts,true -51209,a2d62245-faad-48fd-b9fe-1db710b5bff7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51209,a2d62245-faad-48fd-b9fe-1db710b5bff7,LIST_TRANSACTIONS,xs2aListTransactions,true 51210,a2d62245-faad-48fd-b9fe-1db710b5bff7,AUTHORIZATION,,true 51211,a2d62245-faad-48fd-b9fe-1db710b5bff7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51212,a2d62245-faad-48fd-b9fe-1db710b5bff7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51213,a2d62245-faad-48fd-b9fe-1db710b5bff7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51214,b6b428e7-3438-4b43-8c96-bb4dbddf0a17,LIST_ACCOUNTS,hbciListAccounts,false -51215,b6b428e7-3438-4b43-8c96-bb4dbddf0a17,LIST_TRANSACTIONS,hbciListTransactions,false -51216,b6b428e7-3438-4b43-8c96-bb4dbddf0a17,AUTHORIZATION,,false -51217,b6b428e7-3438-4b43-8c96-bb4dbddf0a17,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51218,b6b428e7-3438-4b43-8c96-bb4dbddf0a17,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51219,b6b428e7-3438-4b43-8c96-bb4dbddf0a17,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51214,5acfa66d-f6db-4ce5-a010-e574e24467a6,LIST_ACCOUNTS,hbciListAccounts,false +51215,5acfa66d-f6db-4ce5-a010-e574e24467a6,LIST_TRANSACTIONS,hbciListTransactions,false +51216,5acfa66d-f6db-4ce5-a010-e574e24467a6,AUTHORIZATION,,false +51217,5acfa66d-f6db-4ce5-a010-e574e24467a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51218,5acfa66d-f6db-4ce5-a010-e574e24467a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51219,5acfa66d-f6db-4ce5-a010-e574e24467a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51220,9c71d5bd-5a8c-47cc-9f2a-10e14a0730ca,LIST_ACCOUNTS,xs2aListAccounts,true -51221,9c71d5bd-5a8c-47cc-9f2a-10e14a0730ca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51221,9c71d5bd-5a8c-47cc-9f2a-10e14a0730ca,LIST_TRANSACTIONS,xs2aListTransactions,true 51222,9c71d5bd-5a8c-47cc-9f2a-10e14a0730ca,AUTHORIZATION,,true 51223,9c71d5bd-5a8c-47cc-9f2a-10e14a0730ca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51224,9c71d5bd-5a8c-47cc-9f2a-10e14a0730ca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51225,9c71d5bd-5a8c-47cc-9f2a-10e14a0730ca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51226,ec7b3195-d796-4fc4-a293-8e1113764b24,LIST_ACCOUNTS,hbciListAccounts,false -51227,ec7b3195-d796-4fc4-a293-8e1113764b24,LIST_TRANSACTIONS,hbciListTransactions,false -51228,ec7b3195-d796-4fc4-a293-8e1113764b24,AUTHORIZATION,,false -51229,ec7b3195-d796-4fc4-a293-8e1113764b24,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51230,ec7b3195-d796-4fc4-a293-8e1113764b24,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51231,ec7b3195-d796-4fc4-a293-8e1113764b24,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51226,82defbbf-0a11-4c13-9f98-b0d95980163a,LIST_ACCOUNTS,hbciListAccounts,false +51227,82defbbf-0a11-4c13-9f98-b0d95980163a,LIST_TRANSACTIONS,hbciListTransactions,false +51228,82defbbf-0a11-4c13-9f98-b0d95980163a,AUTHORIZATION,,false +51229,82defbbf-0a11-4c13-9f98-b0d95980163a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51230,82defbbf-0a11-4c13-9f98-b0d95980163a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51231,82defbbf-0a11-4c13-9f98-b0d95980163a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51232,bc79b4a6-e59b-4e82-ac41-9ef92602c71a,LIST_ACCOUNTS,xs2aListAccounts,true -51233,bc79b4a6-e59b-4e82-ac41-9ef92602c71a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51233,bc79b4a6-e59b-4e82-ac41-9ef92602c71a,LIST_TRANSACTIONS,xs2aListTransactions,true 51234,bc79b4a6-e59b-4e82-ac41-9ef92602c71a,AUTHORIZATION,,true 51235,bc79b4a6-e59b-4e82-ac41-9ef92602c71a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51236,bc79b4a6-e59b-4e82-ac41-9ef92602c71a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51237,bc79b4a6-e59b-4e82-ac41-9ef92602c71a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51238,edc4fe28-863a-4389-82cd-d8d8945fd944,LIST_ACCOUNTS,hbciListAccounts,false -51239,edc4fe28-863a-4389-82cd-d8d8945fd944,LIST_TRANSACTIONS,hbciListTransactions,false -51240,edc4fe28-863a-4389-82cd-d8d8945fd944,AUTHORIZATION,,false -51241,edc4fe28-863a-4389-82cd-d8d8945fd944,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51242,edc4fe28-863a-4389-82cd-d8d8945fd944,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51243,edc4fe28-863a-4389-82cd-d8d8945fd944,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51238,1b4a3dc9-46f3-4228-92ec-708bfe155e9a,LIST_ACCOUNTS,hbciListAccounts,false +51239,1b4a3dc9-46f3-4228-92ec-708bfe155e9a,LIST_TRANSACTIONS,hbciListTransactions,false +51240,1b4a3dc9-46f3-4228-92ec-708bfe155e9a,AUTHORIZATION,,false +51241,1b4a3dc9-46f3-4228-92ec-708bfe155e9a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51242,1b4a3dc9-46f3-4228-92ec-708bfe155e9a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51243,1b4a3dc9-46f3-4228-92ec-708bfe155e9a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51244,da59b62a-0d0d-4fce-ad79-23f70e71267d,LIST_ACCOUNTS,xs2aListAccounts,true -51245,da59b62a-0d0d-4fce-ad79-23f70e71267d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51245,da59b62a-0d0d-4fce-ad79-23f70e71267d,LIST_TRANSACTIONS,xs2aListTransactions,true 51246,da59b62a-0d0d-4fce-ad79-23f70e71267d,AUTHORIZATION,,true 51247,da59b62a-0d0d-4fce-ad79-23f70e71267d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51248,da59b62a-0d0d-4fce-ad79-23f70e71267d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51249,da59b62a-0d0d-4fce-ad79-23f70e71267d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51250,23f66c9a-f159-4605-8119-cd99c658cf58,LIST_ACCOUNTS,hbciListAccounts,false -51251,23f66c9a-f159-4605-8119-cd99c658cf58,LIST_TRANSACTIONS,hbciListTransactions,false -51252,23f66c9a-f159-4605-8119-cd99c658cf58,AUTHORIZATION,,false -51253,23f66c9a-f159-4605-8119-cd99c658cf58,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51254,23f66c9a-f159-4605-8119-cd99c658cf58,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51255,23f66c9a-f159-4605-8119-cd99c658cf58,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51250,a78b7f93-929e-4141-90b0-e1da68f40806,LIST_ACCOUNTS,hbciListAccounts,false +51251,a78b7f93-929e-4141-90b0-e1da68f40806,LIST_TRANSACTIONS,hbciListTransactions,false +51252,a78b7f93-929e-4141-90b0-e1da68f40806,AUTHORIZATION,,false +51253,a78b7f93-929e-4141-90b0-e1da68f40806,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51254,a78b7f93-929e-4141-90b0-e1da68f40806,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51255,a78b7f93-929e-4141-90b0-e1da68f40806,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51256,ef5141ea-3288-43a3-ad18-6afc75764828,LIST_ACCOUNTS,xs2aListAccounts,true -51257,ef5141ea-3288-43a3-ad18-6afc75764828,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51257,ef5141ea-3288-43a3-ad18-6afc75764828,LIST_TRANSACTIONS,xs2aListTransactions,true 51258,ef5141ea-3288-43a3-ad18-6afc75764828,AUTHORIZATION,,true 51259,ef5141ea-3288-43a3-ad18-6afc75764828,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51260,ef5141ea-3288-43a3-ad18-6afc75764828,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51261,ef5141ea-3288-43a3-ad18-6afc75764828,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51262,da6311e2-ada6-4546-b3d4-ebfdbc2e5f3a,LIST_ACCOUNTS,hbciListAccounts,false -51263,da6311e2-ada6-4546-b3d4-ebfdbc2e5f3a,LIST_TRANSACTIONS,hbciListTransactions,false -51264,da6311e2-ada6-4546-b3d4-ebfdbc2e5f3a,AUTHORIZATION,,false -51265,da6311e2-ada6-4546-b3d4-ebfdbc2e5f3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51266,da6311e2-ada6-4546-b3d4-ebfdbc2e5f3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51267,da6311e2-ada6-4546-b3d4-ebfdbc2e5f3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51262,f47baa27-094f-47f1-86a3-fabb837d9ad9,LIST_ACCOUNTS,hbciListAccounts,false +51263,f47baa27-094f-47f1-86a3-fabb837d9ad9,LIST_TRANSACTIONS,hbciListTransactions,false +51264,f47baa27-094f-47f1-86a3-fabb837d9ad9,AUTHORIZATION,,false +51265,f47baa27-094f-47f1-86a3-fabb837d9ad9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51266,f47baa27-094f-47f1-86a3-fabb837d9ad9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51267,f47baa27-094f-47f1-86a3-fabb837d9ad9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51268,1a3e4bcd-4288-4716-837f-911b6d472b9a,LIST_ACCOUNTS,xs2aListAccounts,true -51269,1a3e4bcd-4288-4716-837f-911b6d472b9a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51269,1a3e4bcd-4288-4716-837f-911b6d472b9a,LIST_TRANSACTIONS,xs2aListTransactions,true 51270,1a3e4bcd-4288-4716-837f-911b6d472b9a,AUTHORIZATION,,true 51271,1a3e4bcd-4288-4716-837f-911b6d472b9a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51272,1a3e4bcd-4288-4716-837f-911b6d472b9a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51273,1a3e4bcd-4288-4716-837f-911b6d472b9a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51274,c245da3b-a735-4d71-a12d-8cc0cae8429a,LIST_ACCOUNTS,hbciListAccounts,false -51275,c245da3b-a735-4d71-a12d-8cc0cae8429a,LIST_TRANSACTIONS,hbciListTransactions,false -51276,c245da3b-a735-4d71-a12d-8cc0cae8429a,AUTHORIZATION,,false -51277,c245da3b-a735-4d71-a12d-8cc0cae8429a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51278,c245da3b-a735-4d71-a12d-8cc0cae8429a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51279,c245da3b-a735-4d71-a12d-8cc0cae8429a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51274,d5086500-11e2-4703-ab6d-a42eabda1703,LIST_ACCOUNTS,hbciListAccounts,false +51275,d5086500-11e2-4703-ab6d-a42eabda1703,LIST_TRANSACTIONS,hbciListTransactions,false +51276,d5086500-11e2-4703-ab6d-a42eabda1703,AUTHORIZATION,,false +51277,d5086500-11e2-4703-ab6d-a42eabda1703,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51278,d5086500-11e2-4703-ab6d-a42eabda1703,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51279,d5086500-11e2-4703-ab6d-a42eabda1703,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51280,129e4575-8a19-483f-bffe-68701721eba9,LIST_ACCOUNTS,xs2aListAccounts,true -51281,129e4575-8a19-483f-bffe-68701721eba9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51281,129e4575-8a19-483f-bffe-68701721eba9,LIST_TRANSACTIONS,xs2aListTransactions,true 51282,129e4575-8a19-483f-bffe-68701721eba9,AUTHORIZATION,,true 51283,129e4575-8a19-483f-bffe-68701721eba9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51284,129e4575-8a19-483f-bffe-68701721eba9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51285,129e4575-8a19-483f-bffe-68701721eba9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51286,816d270c-9228-4a32-8486-ddb8c739a7d7,LIST_ACCOUNTS,hbciListAccounts,false -51287,816d270c-9228-4a32-8486-ddb8c739a7d7,LIST_TRANSACTIONS,hbciListTransactions,false -51288,816d270c-9228-4a32-8486-ddb8c739a7d7,AUTHORIZATION,,false -51289,816d270c-9228-4a32-8486-ddb8c739a7d7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51290,816d270c-9228-4a32-8486-ddb8c739a7d7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51291,816d270c-9228-4a32-8486-ddb8c739a7d7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51286,9e1b9e2c-ef7e-436a-8f49-27366b189064,LIST_ACCOUNTS,hbciListAccounts,false +51287,9e1b9e2c-ef7e-436a-8f49-27366b189064,LIST_TRANSACTIONS,hbciListTransactions,false +51288,9e1b9e2c-ef7e-436a-8f49-27366b189064,AUTHORIZATION,,false +51289,9e1b9e2c-ef7e-436a-8f49-27366b189064,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51290,9e1b9e2c-ef7e-436a-8f49-27366b189064,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51291,9e1b9e2c-ef7e-436a-8f49-27366b189064,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51292,d22c3972-268c-472f-addc-9c72141b0bf7,LIST_ACCOUNTS,xs2aListAccounts,true -51293,d22c3972-268c-472f-addc-9c72141b0bf7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51293,d22c3972-268c-472f-addc-9c72141b0bf7,LIST_TRANSACTIONS,xs2aListTransactions,true 51294,d22c3972-268c-472f-addc-9c72141b0bf7,AUTHORIZATION,,true 51295,d22c3972-268c-472f-addc-9c72141b0bf7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51296,d22c3972-268c-472f-addc-9c72141b0bf7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51297,d22c3972-268c-472f-addc-9c72141b0bf7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51298,4ae1216c-b70f-4820-bb1c-e5c03ff7d455,LIST_ACCOUNTS,hbciListAccounts,false -51299,4ae1216c-b70f-4820-bb1c-e5c03ff7d455,LIST_TRANSACTIONS,hbciListTransactions,false -51300,4ae1216c-b70f-4820-bb1c-e5c03ff7d455,AUTHORIZATION,,false -51301,4ae1216c-b70f-4820-bb1c-e5c03ff7d455,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51302,4ae1216c-b70f-4820-bb1c-e5c03ff7d455,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51303,4ae1216c-b70f-4820-bb1c-e5c03ff7d455,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51298,9b891379-dbe9-4561-a4a6-f74837077269,LIST_ACCOUNTS,hbciListAccounts,false +51299,9b891379-dbe9-4561-a4a6-f74837077269,LIST_TRANSACTIONS,hbciListTransactions,false +51300,9b891379-dbe9-4561-a4a6-f74837077269,AUTHORIZATION,,false +51301,9b891379-dbe9-4561-a4a6-f74837077269,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51302,9b891379-dbe9-4561-a4a6-f74837077269,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51303,9b891379-dbe9-4561-a4a6-f74837077269,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51304,a62ef5f2-c22d-4f99-8cfc-ee44fc4d16c4,LIST_ACCOUNTS,xs2aListAccounts,true -51305,a62ef5f2-c22d-4f99-8cfc-ee44fc4d16c4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51305,a62ef5f2-c22d-4f99-8cfc-ee44fc4d16c4,LIST_TRANSACTIONS,xs2aListTransactions,true 51306,a62ef5f2-c22d-4f99-8cfc-ee44fc4d16c4,AUTHORIZATION,,true 51307,a62ef5f2-c22d-4f99-8cfc-ee44fc4d16c4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51308,a62ef5f2-c22d-4f99-8cfc-ee44fc4d16c4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51309,a62ef5f2-c22d-4f99-8cfc-ee44fc4d16c4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51310,bbec6889-18cd-472f-bfdc-cd4190f60cb3,LIST_ACCOUNTS,hbciListAccounts,false -51311,bbec6889-18cd-472f-bfdc-cd4190f60cb3,LIST_TRANSACTIONS,hbciListTransactions,false -51312,bbec6889-18cd-472f-bfdc-cd4190f60cb3,AUTHORIZATION,,false -51313,bbec6889-18cd-472f-bfdc-cd4190f60cb3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51314,bbec6889-18cd-472f-bfdc-cd4190f60cb3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51315,bbec6889-18cd-472f-bfdc-cd4190f60cb3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51310,4e4ed4c7-aaa4-40bd-a770-b95108e94784,LIST_ACCOUNTS,hbciListAccounts,false +51311,4e4ed4c7-aaa4-40bd-a770-b95108e94784,LIST_TRANSACTIONS,hbciListTransactions,false +51312,4e4ed4c7-aaa4-40bd-a770-b95108e94784,AUTHORIZATION,,false +51313,4e4ed4c7-aaa4-40bd-a770-b95108e94784,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51314,4e4ed4c7-aaa4-40bd-a770-b95108e94784,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51315,4e4ed4c7-aaa4-40bd-a770-b95108e94784,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51316,627767d7-9109-4929-9014-f649eb33c664,LIST_ACCOUNTS,xs2aListAccounts,true -51317,627767d7-9109-4929-9014-f649eb33c664,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51317,627767d7-9109-4929-9014-f649eb33c664,LIST_TRANSACTIONS,xs2aListTransactions,true 51318,627767d7-9109-4929-9014-f649eb33c664,AUTHORIZATION,,true 51319,627767d7-9109-4929-9014-f649eb33c664,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51320,627767d7-9109-4929-9014-f649eb33c664,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51321,627767d7-9109-4929-9014-f649eb33c664,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51322,9e98b5cf-6cf6-4d8b-af35-cec8620da66c,LIST_ACCOUNTS,hbciListAccounts,false -51323,9e98b5cf-6cf6-4d8b-af35-cec8620da66c,LIST_TRANSACTIONS,hbciListTransactions,false -51324,9e98b5cf-6cf6-4d8b-af35-cec8620da66c,AUTHORIZATION,,false -51325,9e98b5cf-6cf6-4d8b-af35-cec8620da66c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51326,9e98b5cf-6cf6-4d8b-af35-cec8620da66c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51327,9e98b5cf-6cf6-4d8b-af35-cec8620da66c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51322,5df02906-9616-4951-8ea6-b977a7dca4fc,LIST_ACCOUNTS,hbciListAccounts,false +51323,5df02906-9616-4951-8ea6-b977a7dca4fc,LIST_TRANSACTIONS,hbciListTransactions,false +51324,5df02906-9616-4951-8ea6-b977a7dca4fc,AUTHORIZATION,,false +51325,5df02906-9616-4951-8ea6-b977a7dca4fc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51326,5df02906-9616-4951-8ea6-b977a7dca4fc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51327,5df02906-9616-4951-8ea6-b977a7dca4fc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51328,536b4aa3-13b4-4eba-b6e1-4a2240168902,LIST_ACCOUNTS,xs2aListAccounts,true -51329,536b4aa3-13b4-4eba-b6e1-4a2240168902,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51329,536b4aa3-13b4-4eba-b6e1-4a2240168902,LIST_TRANSACTIONS,xs2aListTransactions,true 51330,536b4aa3-13b4-4eba-b6e1-4a2240168902,AUTHORIZATION,,true 51331,536b4aa3-13b4-4eba-b6e1-4a2240168902,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51332,536b4aa3-13b4-4eba-b6e1-4a2240168902,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51333,536b4aa3-13b4-4eba-b6e1-4a2240168902,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51334,c7a28002-603b-4569-a72d-6490a3b7b81c,LIST_ACCOUNTS,hbciListAccounts,false -51335,c7a28002-603b-4569-a72d-6490a3b7b81c,LIST_TRANSACTIONS,hbciListTransactions,false -51336,c7a28002-603b-4569-a72d-6490a3b7b81c,AUTHORIZATION,,false -51337,c7a28002-603b-4569-a72d-6490a3b7b81c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51338,c7a28002-603b-4569-a72d-6490a3b7b81c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51339,c7a28002-603b-4569-a72d-6490a3b7b81c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51334,113a0d4e-da95-4d3a-99a7-3cf3f35aeea4,LIST_ACCOUNTS,hbciListAccounts,false +51335,113a0d4e-da95-4d3a-99a7-3cf3f35aeea4,LIST_TRANSACTIONS,hbciListTransactions,false +51336,113a0d4e-da95-4d3a-99a7-3cf3f35aeea4,AUTHORIZATION,,false +51337,113a0d4e-da95-4d3a-99a7-3cf3f35aeea4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51338,113a0d4e-da95-4d3a-99a7-3cf3f35aeea4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51339,113a0d4e-da95-4d3a-99a7-3cf3f35aeea4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51340,da7d83af-9ebc-4bf8-9900-069131f348c3,LIST_ACCOUNTS,xs2aListAccounts,true -51341,da7d83af-9ebc-4bf8-9900-069131f348c3,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51341,da7d83af-9ebc-4bf8-9900-069131f348c3,LIST_TRANSACTIONS,xs2aListTransactions,true 51342,da7d83af-9ebc-4bf8-9900-069131f348c3,AUTHORIZATION,,true 51343,da7d83af-9ebc-4bf8-9900-069131f348c3,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51344,da7d83af-9ebc-4bf8-9900-069131f348c3,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51345,da7d83af-9ebc-4bf8-9900-069131f348c3,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51346,6c6cdd7f-71fd-4f67-9d46-59a53801562a,LIST_ACCOUNTS,hbciListAccounts,false -51347,6c6cdd7f-71fd-4f67-9d46-59a53801562a,LIST_TRANSACTIONS,hbciListTransactions,false -51348,6c6cdd7f-71fd-4f67-9d46-59a53801562a,AUTHORIZATION,,false -51349,6c6cdd7f-71fd-4f67-9d46-59a53801562a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51350,6c6cdd7f-71fd-4f67-9d46-59a53801562a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51351,6c6cdd7f-71fd-4f67-9d46-59a53801562a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51346,dea75ef2-5699-45f5-8674-35886a617c2c,LIST_ACCOUNTS,hbciListAccounts,false +51347,dea75ef2-5699-45f5-8674-35886a617c2c,LIST_TRANSACTIONS,hbciListTransactions,false +51348,dea75ef2-5699-45f5-8674-35886a617c2c,AUTHORIZATION,,false +51349,dea75ef2-5699-45f5-8674-35886a617c2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51350,dea75ef2-5699-45f5-8674-35886a617c2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51351,dea75ef2-5699-45f5-8674-35886a617c2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51352,bf696d8d-68a0-4951-a894-cda96d7e6c27,LIST_ACCOUNTS,xs2aListAccounts,true -51353,bf696d8d-68a0-4951-a894-cda96d7e6c27,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51353,bf696d8d-68a0-4951-a894-cda96d7e6c27,LIST_TRANSACTIONS,xs2aListTransactions,true 51354,bf696d8d-68a0-4951-a894-cda96d7e6c27,AUTHORIZATION,,true 51355,bf696d8d-68a0-4951-a894-cda96d7e6c27,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51356,bf696d8d-68a0-4951-a894-cda96d7e6c27,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51357,bf696d8d-68a0-4951-a894-cda96d7e6c27,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51358,4dcfe64b-2f02-42e9-9390-eaabeb32cdf4,LIST_ACCOUNTS,hbciListAccounts,false -51359,4dcfe64b-2f02-42e9-9390-eaabeb32cdf4,LIST_TRANSACTIONS,hbciListTransactions,false -51360,4dcfe64b-2f02-42e9-9390-eaabeb32cdf4,AUTHORIZATION,,false -51361,4dcfe64b-2f02-42e9-9390-eaabeb32cdf4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51362,4dcfe64b-2f02-42e9-9390-eaabeb32cdf4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51363,4dcfe64b-2f02-42e9-9390-eaabeb32cdf4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51358,c40c369d-0578-4bcc-aa01-93a0f5981b1d,LIST_ACCOUNTS,hbciListAccounts,false +51359,c40c369d-0578-4bcc-aa01-93a0f5981b1d,LIST_TRANSACTIONS,hbciListTransactions,false +51360,c40c369d-0578-4bcc-aa01-93a0f5981b1d,AUTHORIZATION,,false +51361,c40c369d-0578-4bcc-aa01-93a0f5981b1d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51362,c40c369d-0578-4bcc-aa01-93a0f5981b1d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51363,c40c369d-0578-4bcc-aa01-93a0f5981b1d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51364,e3c7c6b0-ac98-4540-8ee5-3cff856a1205,LIST_ACCOUNTS,xs2aListAccounts,true -51365,e3c7c6b0-ac98-4540-8ee5-3cff856a1205,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51365,e3c7c6b0-ac98-4540-8ee5-3cff856a1205,LIST_TRANSACTIONS,xs2aListTransactions,true 51366,e3c7c6b0-ac98-4540-8ee5-3cff856a1205,AUTHORIZATION,,true 51367,e3c7c6b0-ac98-4540-8ee5-3cff856a1205,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51368,e3c7c6b0-ac98-4540-8ee5-3cff856a1205,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51369,e3c7c6b0-ac98-4540-8ee5-3cff856a1205,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51370,ef266797-3869-4014-a033-879478642e8c,LIST_ACCOUNTS,hbciListAccounts,false -51371,ef266797-3869-4014-a033-879478642e8c,LIST_TRANSACTIONS,hbciListTransactions,false -51372,ef266797-3869-4014-a033-879478642e8c,AUTHORIZATION,,false -51373,ef266797-3869-4014-a033-879478642e8c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51374,ef266797-3869-4014-a033-879478642e8c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51375,ef266797-3869-4014-a033-879478642e8c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51370,4dc2af76-ca5b-4daa-9128-c1a81cc3153d,LIST_ACCOUNTS,hbciListAccounts,false +51371,4dc2af76-ca5b-4daa-9128-c1a81cc3153d,LIST_TRANSACTIONS,hbciListTransactions,false +51372,4dc2af76-ca5b-4daa-9128-c1a81cc3153d,AUTHORIZATION,,false +51373,4dc2af76-ca5b-4daa-9128-c1a81cc3153d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51374,4dc2af76-ca5b-4daa-9128-c1a81cc3153d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51375,4dc2af76-ca5b-4daa-9128-c1a81cc3153d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51376,b9bdbfc6-2dd7-441e-9562-20a4ee343ff2,LIST_ACCOUNTS,xs2aListAccounts,true -51377,b9bdbfc6-2dd7-441e-9562-20a4ee343ff2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51377,b9bdbfc6-2dd7-441e-9562-20a4ee343ff2,LIST_TRANSACTIONS,xs2aListTransactions,true 51378,b9bdbfc6-2dd7-441e-9562-20a4ee343ff2,AUTHORIZATION,,true 51379,b9bdbfc6-2dd7-441e-9562-20a4ee343ff2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51380,b9bdbfc6-2dd7-441e-9562-20a4ee343ff2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51381,b9bdbfc6-2dd7-441e-9562-20a4ee343ff2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51382,c6814679-62a8-48dc-8557-268e3c45f23a,LIST_ACCOUNTS,hbciListAccounts,false -51383,c6814679-62a8-48dc-8557-268e3c45f23a,LIST_TRANSACTIONS,hbciListTransactions,false -51384,c6814679-62a8-48dc-8557-268e3c45f23a,AUTHORIZATION,,false -51385,c6814679-62a8-48dc-8557-268e3c45f23a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51386,c6814679-62a8-48dc-8557-268e3c45f23a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51387,c6814679-62a8-48dc-8557-268e3c45f23a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51382,86003725-dabf-43de-b6b5-2f71425ab57c,LIST_ACCOUNTS,hbciListAccounts,false +51383,86003725-dabf-43de-b6b5-2f71425ab57c,LIST_TRANSACTIONS,hbciListTransactions,false +51384,86003725-dabf-43de-b6b5-2f71425ab57c,AUTHORIZATION,,false +51385,86003725-dabf-43de-b6b5-2f71425ab57c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51386,86003725-dabf-43de-b6b5-2f71425ab57c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51387,86003725-dabf-43de-b6b5-2f71425ab57c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51388,26b09256-03e3-4a55-b23e-1d0ee88ade3d,LIST_ACCOUNTS,xs2aListAccounts,true -51389,26b09256-03e3-4a55-b23e-1d0ee88ade3d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51389,26b09256-03e3-4a55-b23e-1d0ee88ade3d,LIST_TRANSACTIONS,xs2aListTransactions,true 51390,26b09256-03e3-4a55-b23e-1d0ee88ade3d,AUTHORIZATION,,true 51391,26b09256-03e3-4a55-b23e-1d0ee88ade3d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51392,26b09256-03e3-4a55-b23e-1d0ee88ade3d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51393,26b09256-03e3-4a55-b23e-1d0ee88ade3d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51394,0c37566f-d44c-4b1d-b041-6193dcf2fac9,LIST_ACCOUNTS,hbciListAccounts,false -51395,0c37566f-d44c-4b1d-b041-6193dcf2fac9,LIST_TRANSACTIONS,hbciListTransactions,false -51396,0c37566f-d44c-4b1d-b041-6193dcf2fac9,AUTHORIZATION,,false -51397,0c37566f-d44c-4b1d-b041-6193dcf2fac9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51398,0c37566f-d44c-4b1d-b041-6193dcf2fac9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51399,0c37566f-d44c-4b1d-b041-6193dcf2fac9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51394,6545db50-2fce-42b8-8624-da40b55596ab,LIST_ACCOUNTS,hbciListAccounts,false +51395,6545db50-2fce-42b8-8624-da40b55596ab,LIST_TRANSACTIONS,hbciListTransactions,false +51396,6545db50-2fce-42b8-8624-da40b55596ab,AUTHORIZATION,,false +51397,6545db50-2fce-42b8-8624-da40b55596ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51398,6545db50-2fce-42b8-8624-da40b55596ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51399,6545db50-2fce-42b8-8624-da40b55596ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51400,e488e990-d974-494a-9b23-43d1432c974c,LIST_ACCOUNTS,xs2aListAccounts,true -51401,e488e990-d974-494a-9b23-43d1432c974c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51401,e488e990-d974-494a-9b23-43d1432c974c,LIST_TRANSACTIONS,xs2aListTransactions,true 51402,e488e990-d974-494a-9b23-43d1432c974c,AUTHORIZATION,,true 51403,e488e990-d974-494a-9b23-43d1432c974c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51404,e488e990-d974-494a-9b23-43d1432c974c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51405,e488e990-d974-494a-9b23-43d1432c974c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51406,227d618c-c759-4a56-b00e-c7baf78dde11,LIST_ACCOUNTS,hbciListAccounts,false -51407,227d618c-c759-4a56-b00e-c7baf78dde11,LIST_TRANSACTIONS,hbciListTransactions,false -51408,227d618c-c759-4a56-b00e-c7baf78dde11,AUTHORIZATION,,false -51409,227d618c-c759-4a56-b00e-c7baf78dde11,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51410,227d618c-c759-4a56-b00e-c7baf78dde11,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51411,227d618c-c759-4a56-b00e-c7baf78dde11,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51406,8d2a6903-8bb4-4118-b73b-f6ac581a1962,LIST_ACCOUNTS,hbciListAccounts,false +51407,8d2a6903-8bb4-4118-b73b-f6ac581a1962,LIST_TRANSACTIONS,hbciListTransactions,false +51408,8d2a6903-8bb4-4118-b73b-f6ac581a1962,AUTHORIZATION,,false +51409,8d2a6903-8bb4-4118-b73b-f6ac581a1962,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51410,8d2a6903-8bb4-4118-b73b-f6ac581a1962,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51411,8d2a6903-8bb4-4118-b73b-f6ac581a1962,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51412,40ca4774-9f54-440e-976e-dcce9f3c809d,LIST_ACCOUNTS,xs2aListAccounts,true -51413,40ca4774-9f54-440e-976e-dcce9f3c809d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51413,40ca4774-9f54-440e-976e-dcce9f3c809d,LIST_TRANSACTIONS,xs2aListTransactions,true 51414,40ca4774-9f54-440e-976e-dcce9f3c809d,AUTHORIZATION,,true 51415,40ca4774-9f54-440e-976e-dcce9f3c809d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51416,40ca4774-9f54-440e-976e-dcce9f3c809d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51417,40ca4774-9f54-440e-976e-dcce9f3c809d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51418,978975d7-61c3-498c-8bc0-b1b61195cc0b,LIST_ACCOUNTS,hbciListAccounts,false -51419,978975d7-61c3-498c-8bc0-b1b61195cc0b,LIST_TRANSACTIONS,hbciListTransactions,false -51420,978975d7-61c3-498c-8bc0-b1b61195cc0b,AUTHORIZATION,,false -51421,978975d7-61c3-498c-8bc0-b1b61195cc0b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51422,978975d7-61c3-498c-8bc0-b1b61195cc0b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51423,978975d7-61c3-498c-8bc0-b1b61195cc0b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51418,d720406d-6b53-4680-88b2-45f24522de35,LIST_ACCOUNTS,hbciListAccounts,false +51419,d720406d-6b53-4680-88b2-45f24522de35,LIST_TRANSACTIONS,hbciListTransactions,false +51420,d720406d-6b53-4680-88b2-45f24522de35,AUTHORIZATION,,false +51421,d720406d-6b53-4680-88b2-45f24522de35,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51422,d720406d-6b53-4680-88b2-45f24522de35,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51423,d720406d-6b53-4680-88b2-45f24522de35,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51424,ad86af89-05f9-450d-8bca-d1b576eeb0cd,LIST_ACCOUNTS,xs2aListAccounts,true -51425,ad86af89-05f9-450d-8bca-d1b576eeb0cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51425,ad86af89-05f9-450d-8bca-d1b576eeb0cd,LIST_TRANSACTIONS,xs2aListTransactions,true 51426,ad86af89-05f9-450d-8bca-d1b576eeb0cd,AUTHORIZATION,,true 51427,ad86af89-05f9-450d-8bca-d1b576eeb0cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51428,ad86af89-05f9-450d-8bca-d1b576eeb0cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51429,ad86af89-05f9-450d-8bca-d1b576eeb0cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51430,7f473677-75bb-4d8e-91b2-6a170f319f3d,LIST_ACCOUNTS,hbciListAccounts,false -51431,7f473677-75bb-4d8e-91b2-6a170f319f3d,LIST_TRANSACTIONS,hbciListTransactions,false -51432,7f473677-75bb-4d8e-91b2-6a170f319f3d,AUTHORIZATION,,false -51433,7f473677-75bb-4d8e-91b2-6a170f319f3d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51434,7f473677-75bb-4d8e-91b2-6a170f319f3d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51435,7f473677-75bb-4d8e-91b2-6a170f319f3d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51430,781848f9-895e-46b1-9fb3-bffc9b1c8f71,LIST_ACCOUNTS,hbciListAccounts,false +51431,781848f9-895e-46b1-9fb3-bffc9b1c8f71,LIST_TRANSACTIONS,hbciListTransactions,false +51432,781848f9-895e-46b1-9fb3-bffc9b1c8f71,AUTHORIZATION,,false +51433,781848f9-895e-46b1-9fb3-bffc9b1c8f71,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51434,781848f9-895e-46b1-9fb3-bffc9b1c8f71,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51435,781848f9-895e-46b1-9fb3-bffc9b1c8f71,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51436,23832d31-689a-46bf-ac09-5c0793b50962,LIST_ACCOUNTS,xs2aListAccounts,true -51437,23832d31-689a-46bf-ac09-5c0793b50962,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51437,23832d31-689a-46bf-ac09-5c0793b50962,LIST_TRANSACTIONS,xs2aListTransactions,true 51438,23832d31-689a-46bf-ac09-5c0793b50962,AUTHORIZATION,,true 51439,23832d31-689a-46bf-ac09-5c0793b50962,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51440,23832d31-689a-46bf-ac09-5c0793b50962,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51441,23832d31-689a-46bf-ac09-5c0793b50962,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51442,bb45f517-06ce-431c-9583-c3cde9e3d1be,LIST_ACCOUNTS,hbciListAccounts,false -51443,bb45f517-06ce-431c-9583-c3cde9e3d1be,LIST_TRANSACTIONS,hbciListTransactions,false -51444,bb45f517-06ce-431c-9583-c3cde9e3d1be,AUTHORIZATION,,false -51445,bb45f517-06ce-431c-9583-c3cde9e3d1be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51446,bb45f517-06ce-431c-9583-c3cde9e3d1be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51447,bb45f517-06ce-431c-9583-c3cde9e3d1be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51442,a8a3c4e2-cbf6-4298-9a42-f9c608d29ba6,LIST_ACCOUNTS,hbciListAccounts,false +51443,a8a3c4e2-cbf6-4298-9a42-f9c608d29ba6,LIST_TRANSACTIONS,hbciListTransactions,false +51444,a8a3c4e2-cbf6-4298-9a42-f9c608d29ba6,AUTHORIZATION,,false +51445,a8a3c4e2-cbf6-4298-9a42-f9c608d29ba6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51446,a8a3c4e2-cbf6-4298-9a42-f9c608d29ba6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51447,a8a3c4e2-cbf6-4298-9a42-f9c608d29ba6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51448,d585c4b6-f789-4d4d-9328-9d3c71f08bef,LIST_ACCOUNTS,xs2aListAccounts,true -51449,d585c4b6-f789-4d4d-9328-9d3c71f08bef,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51449,d585c4b6-f789-4d4d-9328-9d3c71f08bef,LIST_TRANSACTIONS,xs2aListTransactions,true 51450,d585c4b6-f789-4d4d-9328-9d3c71f08bef,AUTHORIZATION,,true 51451,d585c4b6-f789-4d4d-9328-9d3c71f08bef,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51452,d585c4b6-f789-4d4d-9328-9d3c71f08bef,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51453,d585c4b6-f789-4d4d-9328-9d3c71f08bef,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51454,5087adf3-f58b-4f0e-b87c-a20f6776d744,LIST_ACCOUNTS,hbciListAccounts,false -51455,5087adf3-f58b-4f0e-b87c-a20f6776d744,LIST_TRANSACTIONS,hbciListTransactions,false -51456,5087adf3-f58b-4f0e-b87c-a20f6776d744,AUTHORIZATION,,false -51457,5087adf3-f58b-4f0e-b87c-a20f6776d744,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51458,5087adf3-f58b-4f0e-b87c-a20f6776d744,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51459,5087adf3-f58b-4f0e-b87c-a20f6776d744,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51454,b69d0bff-1244-42eb-a1cf-8c4e4467e1e6,LIST_ACCOUNTS,hbciListAccounts,false +51455,b69d0bff-1244-42eb-a1cf-8c4e4467e1e6,LIST_TRANSACTIONS,hbciListTransactions,false +51456,b69d0bff-1244-42eb-a1cf-8c4e4467e1e6,AUTHORIZATION,,false +51457,b69d0bff-1244-42eb-a1cf-8c4e4467e1e6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51458,b69d0bff-1244-42eb-a1cf-8c4e4467e1e6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51459,b69d0bff-1244-42eb-a1cf-8c4e4467e1e6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51460,fcfe98fe-5514-4992-8f36-8239f3a74571,LIST_ACCOUNTS,xs2aListAccounts,true -51461,fcfe98fe-5514-4992-8f36-8239f3a74571,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51461,fcfe98fe-5514-4992-8f36-8239f3a74571,LIST_TRANSACTIONS,xs2aListTransactions,true 51462,fcfe98fe-5514-4992-8f36-8239f3a74571,AUTHORIZATION,,true 51463,fcfe98fe-5514-4992-8f36-8239f3a74571,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51464,fcfe98fe-5514-4992-8f36-8239f3a74571,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51465,fcfe98fe-5514-4992-8f36-8239f3a74571,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51466,73fc8841-62f7-44e7-a5af-a49f74739662,LIST_ACCOUNTS,hbciListAccounts,false -51467,73fc8841-62f7-44e7-a5af-a49f74739662,LIST_TRANSACTIONS,hbciListTransactions,false -51468,73fc8841-62f7-44e7-a5af-a49f74739662,AUTHORIZATION,,false -51469,73fc8841-62f7-44e7-a5af-a49f74739662,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51470,73fc8841-62f7-44e7-a5af-a49f74739662,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51471,73fc8841-62f7-44e7-a5af-a49f74739662,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51466,8b9257c5-17f2-41b1-8caa-1c200af407a6,LIST_ACCOUNTS,hbciListAccounts,false +51467,8b9257c5-17f2-41b1-8caa-1c200af407a6,LIST_TRANSACTIONS,hbciListTransactions,false +51468,8b9257c5-17f2-41b1-8caa-1c200af407a6,AUTHORIZATION,,false +51469,8b9257c5-17f2-41b1-8caa-1c200af407a6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51470,8b9257c5-17f2-41b1-8caa-1c200af407a6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51471,8b9257c5-17f2-41b1-8caa-1c200af407a6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51472,e285dce3-7c02-4866-bee3-da6184013189,LIST_ACCOUNTS,xs2aListAccounts,true -51473,e285dce3-7c02-4866-bee3-da6184013189,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51473,e285dce3-7c02-4866-bee3-da6184013189,LIST_TRANSACTIONS,xs2aListTransactions,true 51474,e285dce3-7c02-4866-bee3-da6184013189,AUTHORIZATION,,true 51475,e285dce3-7c02-4866-bee3-da6184013189,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51476,e285dce3-7c02-4866-bee3-da6184013189,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51477,e285dce3-7c02-4866-bee3-da6184013189,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51478,9e920a50-4f8e-46b0-9377-4fcba5a0d1d0,LIST_ACCOUNTS,hbciListAccounts,false -51479,9e920a50-4f8e-46b0-9377-4fcba5a0d1d0,LIST_TRANSACTIONS,hbciListTransactions,false -51480,9e920a50-4f8e-46b0-9377-4fcba5a0d1d0,AUTHORIZATION,,false -51481,9e920a50-4f8e-46b0-9377-4fcba5a0d1d0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51482,9e920a50-4f8e-46b0-9377-4fcba5a0d1d0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51483,9e920a50-4f8e-46b0-9377-4fcba5a0d1d0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51478,8b6954d1-14b0-4947-8dfd-b222036d477e,LIST_ACCOUNTS,hbciListAccounts,false +51479,8b6954d1-14b0-4947-8dfd-b222036d477e,LIST_TRANSACTIONS,hbciListTransactions,false +51480,8b6954d1-14b0-4947-8dfd-b222036d477e,AUTHORIZATION,,false +51481,8b6954d1-14b0-4947-8dfd-b222036d477e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51482,8b6954d1-14b0-4947-8dfd-b222036d477e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51483,8b6954d1-14b0-4947-8dfd-b222036d477e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51484,a4f62119-6071-4c90-8fa1-59b7bc88cc61,LIST_ACCOUNTS,xs2aListAccounts,true -51485,a4f62119-6071-4c90-8fa1-59b7bc88cc61,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51485,a4f62119-6071-4c90-8fa1-59b7bc88cc61,LIST_TRANSACTIONS,xs2aListTransactions,true 51486,a4f62119-6071-4c90-8fa1-59b7bc88cc61,AUTHORIZATION,,true 51487,a4f62119-6071-4c90-8fa1-59b7bc88cc61,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51488,a4f62119-6071-4c90-8fa1-59b7bc88cc61,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51489,a4f62119-6071-4c90-8fa1-59b7bc88cc61,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51490,d00be78c-24d7-4b46-a956-42c093a50b54,LIST_ACCOUNTS,hbciListAccounts,false -51491,d00be78c-24d7-4b46-a956-42c093a50b54,LIST_TRANSACTIONS,hbciListTransactions,false -51492,d00be78c-24d7-4b46-a956-42c093a50b54,AUTHORIZATION,,false -51493,d00be78c-24d7-4b46-a956-42c093a50b54,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51494,d00be78c-24d7-4b46-a956-42c093a50b54,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51495,d00be78c-24d7-4b46-a956-42c093a50b54,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51490,905fbfe2-0464-4cc7-92b3-55c9a9425f2e,LIST_ACCOUNTS,hbciListAccounts,false +51491,905fbfe2-0464-4cc7-92b3-55c9a9425f2e,LIST_TRANSACTIONS,hbciListTransactions,false +51492,905fbfe2-0464-4cc7-92b3-55c9a9425f2e,AUTHORIZATION,,false +51493,905fbfe2-0464-4cc7-92b3-55c9a9425f2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51494,905fbfe2-0464-4cc7-92b3-55c9a9425f2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51495,905fbfe2-0464-4cc7-92b3-55c9a9425f2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51496,e05e196a-dd97-4d94-9862-937a301a9769,LIST_ACCOUNTS,xs2aListAccounts,true -51497,e05e196a-dd97-4d94-9862-937a301a9769,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51497,e05e196a-dd97-4d94-9862-937a301a9769,LIST_TRANSACTIONS,xs2aListTransactions,true 51498,e05e196a-dd97-4d94-9862-937a301a9769,AUTHORIZATION,,true 51499,e05e196a-dd97-4d94-9862-937a301a9769,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51500,e05e196a-dd97-4d94-9862-937a301a9769,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51501,e05e196a-dd97-4d94-9862-937a301a9769,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51502,9380e4f4-ba8f-4947-a444-751f2fa9019f,LIST_ACCOUNTS,hbciListAccounts,false -51503,9380e4f4-ba8f-4947-a444-751f2fa9019f,LIST_TRANSACTIONS,hbciListTransactions,false -51504,9380e4f4-ba8f-4947-a444-751f2fa9019f,AUTHORIZATION,,false -51505,9380e4f4-ba8f-4947-a444-751f2fa9019f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51506,9380e4f4-ba8f-4947-a444-751f2fa9019f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51507,9380e4f4-ba8f-4947-a444-751f2fa9019f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51502,787bf5df-0e79-4c95-99d4-701f903302b4,LIST_ACCOUNTS,hbciListAccounts,false +51503,787bf5df-0e79-4c95-99d4-701f903302b4,LIST_TRANSACTIONS,hbciListTransactions,false +51504,787bf5df-0e79-4c95-99d4-701f903302b4,AUTHORIZATION,,false +51505,787bf5df-0e79-4c95-99d4-701f903302b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51506,787bf5df-0e79-4c95-99d4-701f903302b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51507,787bf5df-0e79-4c95-99d4-701f903302b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51508,864df74f-4d8e-4429-be0a-383c5230404c,LIST_ACCOUNTS,xs2aListAccounts,true -51509,864df74f-4d8e-4429-be0a-383c5230404c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51509,864df74f-4d8e-4429-be0a-383c5230404c,LIST_TRANSACTIONS,xs2aListTransactions,true 51510,864df74f-4d8e-4429-be0a-383c5230404c,AUTHORIZATION,,true 51511,864df74f-4d8e-4429-be0a-383c5230404c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51512,864df74f-4d8e-4429-be0a-383c5230404c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51513,864df74f-4d8e-4429-be0a-383c5230404c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51514,aec13a37-6c13-4bc6-9742-194c202a5261,LIST_ACCOUNTS,hbciListAccounts,false -51515,aec13a37-6c13-4bc6-9742-194c202a5261,LIST_TRANSACTIONS,hbciListTransactions,false -51516,aec13a37-6c13-4bc6-9742-194c202a5261,AUTHORIZATION,,false -51517,aec13a37-6c13-4bc6-9742-194c202a5261,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51518,aec13a37-6c13-4bc6-9742-194c202a5261,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51519,aec13a37-6c13-4bc6-9742-194c202a5261,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51514,ad664822-4c3f-41a7-8903-5cb1dc6862ef,LIST_ACCOUNTS,hbciListAccounts,false +51515,ad664822-4c3f-41a7-8903-5cb1dc6862ef,LIST_TRANSACTIONS,hbciListTransactions,false +51516,ad664822-4c3f-41a7-8903-5cb1dc6862ef,AUTHORIZATION,,false +51517,ad664822-4c3f-41a7-8903-5cb1dc6862ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51518,ad664822-4c3f-41a7-8903-5cb1dc6862ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51519,ad664822-4c3f-41a7-8903-5cb1dc6862ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51520,77390706-2a5f-4020-be22-164f1fc87dae,LIST_ACCOUNTS,xs2aListAccounts,true -51521,77390706-2a5f-4020-be22-164f1fc87dae,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51521,77390706-2a5f-4020-be22-164f1fc87dae,LIST_TRANSACTIONS,xs2aListTransactions,true 51522,77390706-2a5f-4020-be22-164f1fc87dae,AUTHORIZATION,,true 51523,77390706-2a5f-4020-be22-164f1fc87dae,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51524,77390706-2a5f-4020-be22-164f1fc87dae,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51525,77390706-2a5f-4020-be22-164f1fc87dae,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51526,201afab1-c65b-4558-ac51-8b7ce4dac492,LIST_ACCOUNTS,hbciListAccounts,false -51527,201afab1-c65b-4558-ac51-8b7ce4dac492,LIST_TRANSACTIONS,hbciListTransactions,false -51528,201afab1-c65b-4558-ac51-8b7ce4dac492,AUTHORIZATION,,false -51529,201afab1-c65b-4558-ac51-8b7ce4dac492,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51530,201afab1-c65b-4558-ac51-8b7ce4dac492,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51531,201afab1-c65b-4558-ac51-8b7ce4dac492,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51526,35656617-82a3-493f-b8cc-6d20e46c2c07,LIST_ACCOUNTS,hbciListAccounts,false +51527,35656617-82a3-493f-b8cc-6d20e46c2c07,LIST_TRANSACTIONS,hbciListTransactions,false +51528,35656617-82a3-493f-b8cc-6d20e46c2c07,AUTHORIZATION,,false +51529,35656617-82a3-493f-b8cc-6d20e46c2c07,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51530,35656617-82a3-493f-b8cc-6d20e46c2c07,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51531,35656617-82a3-493f-b8cc-6d20e46c2c07,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51532,a1c9161d-de40-42fb-99b5-bec702614e7c,LIST_ACCOUNTS,xs2aListAccounts,true -51533,a1c9161d-de40-42fb-99b5-bec702614e7c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51533,a1c9161d-de40-42fb-99b5-bec702614e7c,LIST_TRANSACTIONS,xs2aListTransactions,true 51534,a1c9161d-de40-42fb-99b5-bec702614e7c,AUTHORIZATION,,true 51535,a1c9161d-de40-42fb-99b5-bec702614e7c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51536,a1c9161d-de40-42fb-99b5-bec702614e7c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51537,a1c9161d-de40-42fb-99b5-bec702614e7c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51538,4e4c7bb5-88e6-4f7a-b7be-81050ba056be,LIST_ACCOUNTS,hbciListAccounts,false -51539,4e4c7bb5-88e6-4f7a-b7be-81050ba056be,LIST_TRANSACTIONS,hbciListTransactions,false -51540,4e4c7bb5-88e6-4f7a-b7be-81050ba056be,AUTHORIZATION,,false -51541,4e4c7bb5-88e6-4f7a-b7be-81050ba056be,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51542,4e4c7bb5-88e6-4f7a-b7be-81050ba056be,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51543,4e4c7bb5-88e6-4f7a-b7be-81050ba056be,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51538,d87b3433-91be-41e9-b83f-736a998046bb,LIST_ACCOUNTS,hbciListAccounts,false +51539,d87b3433-91be-41e9-b83f-736a998046bb,LIST_TRANSACTIONS,hbciListTransactions,false +51540,d87b3433-91be-41e9-b83f-736a998046bb,AUTHORIZATION,,false +51541,d87b3433-91be-41e9-b83f-736a998046bb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51542,d87b3433-91be-41e9-b83f-736a998046bb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51543,d87b3433-91be-41e9-b83f-736a998046bb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51544,06601770-4aa0-4ea3-b2dc-c095107cb0e2,LIST_ACCOUNTS,xs2aListAccounts,true -51545,06601770-4aa0-4ea3-b2dc-c095107cb0e2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51545,06601770-4aa0-4ea3-b2dc-c095107cb0e2,LIST_TRANSACTIONS,xs2aListTransactions,true 51546,06601770-4aa0-4ea3-b2dc-c095107cb0e2,AUTHORIZATION,,true 51547,06601770-4aa0-4ea3-b2dc-c095107cb0e2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51548,06601770-4aa0-4ea3-b2dc-c095107cb0e2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51549,06601770-4aa0-4ea3-b2dc-c095107cb0e2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51550,09ed1c43-19d9-4642-a9a1-7e3feadfe1fb,LIST_ACCOUNTS,hbciListAccounts,false -51551,09ed1c43-19d9-4642-a9a1-7e3feadfe1fb,LIST_TRANSACTIONS,hbciListTransactions,false -51552,09ed1c43-19d9-4642-a9a1-7e3feadfe1fb,AUTHORIZATION,,false -51553,09ed1c43-19d9-4642-a9a1-7e3feadfe1fb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51554,09ed1c43-19d9-4642-a9a1-7e3feadfe1fb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51555,09ed1c43-19d9-4642-a9a1-7e3feadfe1fb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51550,f1e4970d-0e5d-46c7-952c-7317915b4acf,LIST_ACCOUNTS,hbciListAccounts,false +51551,f1e4970d-0e5d-46c7-952c-7317915b4acf,LIST_TRANSACTIONS,hbciListTransactions,false +51552,f1e4970d-0e5d-46c7-952c-7317915b4acf,AUTHORIZATION,,false +51553,f1e4970d-0e5d-46c7-952c-7317915b4acf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51554,f1e4970d-0e5d-46c7-952c-7317915b4acf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51555,f1e4970d-0e5d-46c7-952c-7317915b4acf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51556,2527f5fe-f6e0-45eb-a7f6-8d2c7450c4c0,LIST_ACCOUNTS,xs2aListAccounts,true -51557,2527f5fe-f6e0-45eb-a7f6-8d2c7450c4c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51557,2527f5fe-f6e0-45eb-a7f6-8d2c7450c4c0,LIST_TRANSACTIONS,xs2aListTransactions,true 51558,2527f5fe-f6e0-45eb-a7f6-8d2c7450c4c0,AUTHORIZATION,,true 51559,2527f5fe-f6e0-45eb-a7f6-8d2c7450c4c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51560,2527f5fe-f6e0-45eb-a7f6-8d2c7450c4c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51561,2527f5fe-f6e0-45eb-a7f6-8d2c7450c4c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51562,abcb149c-0db7-4983-8454-ec298f8ee6ea,LIST_ACCOUNTS,hbciListAccounts,false -51563,abcb149c-0db7-4983-8454-ec298f8ee6ea,LIST_TRANSACTIONS,hbciListTransactions,false -51564,abcb149c-0db7-4983-8454-ec298f8ee6ea,AUTHORIZATION,,false -51565,abcb149c-0db7-4983-8454-ec298f8ee6ea,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51566,abcb149c-0db7-4983-8454-ec298f8ee6ea,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51567,abcb149c-0db7-4983-8454-ec298f8ee6ea,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51562,5ef5f05c-99bf-4cea-bcf0-93c7ae6122c8,LIST_ACCOUNTS,hbciListAccounts,false +51563,5ef5f05c-99bf-4cea-bcf0-93c7ae6122c8,LIST_TRANSACTIONS,hbciListTransactions,false +51564,5ef5f05c-99bf-4cea-bcf0-93c7ae6122c8,AUTHORIZATION,,false +51565,5ef5f05c-99bf-4cea-bcf0-93c7ae6122c8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51566,5ef5f05c-99bf-4cea-bcf0-93c7ae6122c8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51567,5ef5f05c-99bf-4cea-bcf0-93c7ae6122c8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51568,7272cc5f-bfa7-41ed-8f71-ae4d3580efda,LIST_ACCOUNTS,xs2aListAccounts,true -51569,7272cc5f-bfa7-41ed-8f71-ae4d3580efda,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51569,7272cc5f-bfa7-41ed-8f71-ae4d3580efda,LIST_TRANSACTIONS,xs2aListTransactions,true 51570,7272cc5f-bfa7-41ed-8f71-ae4d3580efda,AUTHORIZATION,,true 51571,7272cc5f-bfa7-41ed-8f71-ae4d3580efda,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51572,7272cc5f-bfa7-41ed-8f71-ae4d3580efda,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51573,7272cc5f-bfa7-41ed-8f71-ae4d3580efda,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51574,c83b7c46-47e1-471a-bbb9-4bf01c9d3b95,LIST_ACCOUNTS,hbciListAccounts,false -51575,c83b7c46-47e1-471a-bbb9-4bf01c9d3b95,LIST_TRANSACTIONS,hbciListTransactions,false -51576,c83b7c46-47e1-471a-bbb9-4bf01c9d3b95,AUTHORIZATION,,false -51577,c83b7c46-47e1-471a-bbb9-4bf01c9d3b95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51578,c83b7c46-47e1-471a-bbb9-4bf01c9d3b95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51579,c83b7c46-47e1-471a-bbb9-4bf01c9d3b95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51574,a830b309-6df7-448f-a283-0453fe050bd0,LIST_ACCOUNTS,hbciListAccounts,false +51575,a830b309-6df7-448f-a283-0453fe050bd0,LIST_TRANSACTIONS,hbciListTransactions,false +51576,a830b309-6df7-448f-a283-0453fe050bd0,AUTHORIZATION,,false +51577,a830b309-6df7-448f-a283-0453fe050bd0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51578,a830b309-6df7-448f-a283-0453fe050bd0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51579,a830b309-6df7-448f-a283-0453fe050bd0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51580,5f5db2fd-a862-43de-8fbb-893198f92aa4,LIST_ACCOUNTS,xs2aListAccounts,true -51581,5f5db2fd-a862-43de-8fbb-893198f92aa4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51581,5f5db2fd-a862-43de-8fbb-893198f92aa4,LIST_TRANSACTIONS,xs2aListTransactions,true 51582,5f5db2fd-a862-43de-8fbb-893198f92aa4,AUTHORIZATION,,true 51583,5f5db2fd-a862-43de-8fbb-893198f92aa4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51584,5f5db2fd-a862-43de-8fbb-893198f92aa4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51585,5f5db2fd-a862-43de-8fbb-893198f92aa4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51586,2edf02d3-ebe8-47ef-93bd-7f20a8b4c54f,LIST_ACCOUNTS,hbciListAccounts,false -51587,2edf02d3-ebe8-47ef-93bd-7f20a8b4c54f,LIST_TRANSACTIONS,hbciListTransactions,false -51588,2edf02d3-ebe8-47ef-93bd-7f20a8b4c54f,AUTHORIZATION,,false -51589,2edf02d3-ebe8-47ef-93bd-7f20a8b4c54f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51590,2edf02d3-ebe8-47ef-93bd-7f20a8b4c54f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51591,2edf02d3-ebe8-47ef-93bd-7f20a8b4c54f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51586,610b7df7-e790-4d07-aeab-0f6ab8d1f069,LIST_ACCOUNTS,hbciListAccounts,false +51587,610b7df7-e790-4d07-aeab-0f6ab8d1f069,LIST_TRANSACTIONS,hbciListTransactions,false +51588,610b7df7-e790-4d07-aeab-0f6ab8d1f069,AUTHORIZATION,,false +51589,610b7df7-e790-4d07-aeab-0f6ab8d1f069,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51590,610b7df7-e790-4d07-aeab-0f6ab8d1f069,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51591,610b7df7-e790-4d07-aeab-0f6ab8d1f069,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51592,02f44fd8-24a9-41eb-ba95-f8c423d245d2,LIST_ACCOUNTS,xs2aListAccounts,true -51593,02f44fd8-24a9-41eb-ba95-f8c423d245d2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51593,02f44fd8-24a9-41eb-ba95-f8c423d245d2,LIST_TRANSACTIONS,xs2aListTransactions,true 51594,02f44fd8-24a9-41eb-ba95-f8c423d245d2,AUTHORIZATION,,true 51595,02f44fd8-24a9-41eb-ba95-f8c423d245d2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51596,02f44fd8-24a9-41eb-ba95-f8c423d245d2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51597,02f44fd8-24a9-41eb-ba95-f8c423d245d2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51598,54a0fcdf-c3a5-4991-94d8-55af173f1f72,LIST_ACCOUNTS,hbciListAccounts,false -51599,54a0fcdf-c3a5-4991-94d8-55af173f1f72,LIST_TRANSACTIONS,hbciListTransactions,false -51600,54a0fcdf-c3a5-4991-94d8-55af173f1f72,AUTHORIZATION,,false -51601,54a0fcdf-c3a5-4991-94d8-55af173f1f72,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51602,54a0fcdf-c3a5-4991-94d8-55af173f1f72,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51603,54a0fcdf-c3a5-4991-94d8-55af173f1f72,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51598,2152ca38-0030-47be-bb4e-48ff7c10931b,LIST_ACCOUNTS,hbciListAccounts,false +51599,2152ca38-0030-47be-bb4e-48ff7c10931b,LIST_TRANSACTIONS,hbciListTransactions,false +51600,2152ca38-0030-47be-bb4e-48ff7c10931b,AUTHORIZATION,,false +51601,2152ca38-0030-47be-bb4e-48ff7c10931b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51602,2152ca38-0030-47be-bb4e-48ff7c10931b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51603,2152ca38-0030-47be-bb4e-48ff7c10931b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51604,05df83c5-f2bf-4350-b82c-b96437d835d9,LIST_ACCOUNTS,xs2aListAccounts,true -51605,05df83c5-f2bf-4350-b82c-b96437d835d9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51605,05df83c5-f2bf-4350-b82c-b96437d835d9,LIST_TRANSACTIONS,xs2aListTransactions,true 51606,05df83c5-f2bf-4350-b82c-b96437d835d9,AUTHORIZATION,,true 51607,05df83c5-f2bf-4350-b82c-b96437d835d9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51608,05df83c5-f2bf-4350-b82c-b96437d835d9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51609,05df83c5-f2bf-4350-b82c-b96437d835d9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51610,6a773c0f-2ead-4ff5-9278-4d7ca1d94da0,LIST_ACCOUNTS,hbciListAccounts,false -51611,6a773c0f-2ead-4ff5-9278-4d7ca1d94da0,LIST_TRANSACTIONS,hbciListTransactions,false -51612,6a773c0f-2ead-4ff5-9278-4d7ca1d94da0,AUTHORIZATION,,false -51613,6a773c0f-2ead-4ff5-9278-4d7ca1d94da0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51614,6a773c0f-2ead-4ff5-9278-4d7ca1d94da0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51615,6a773c0f-2ead-4ff5-9278-4d7ca1d94da0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51610,86c9df36-af9a-47c0-b75c-4b0639b560ee,LIST_ACCOUNTS,hbciListAccounts,false +51611,86c9df36-af9a-47c0-b75c-4b0639b560ee,LIST_TRANSACTIONS,hbciListTransactions,false +51612,86c9df36-af9a-47c0-b75c-4b0639b560ee,AUTHORIZATION,,false +51613,86c9df36-af9a-47c0-b75c-4b0639b560ee,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51614,86c9df36-af9a-47c0-b75c-4b0639b560ee,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51615,86c9df36-af9a-47c0-b75c-4b0639b560ee,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51616,5440ae90-ab60-4af5-a66d-754c82ce2c32,LIST_ACCOUNTS,xs2aListAccounts,true -51617,5440ae90-ab60-4af5-a66d-754c82ce2c32,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51617,5440ae90-ab60-4af5-a66d-754c82ce2c32,LIST_TRANSACTIONS,xs2aListTransactions,true 51618,5440ae90-ab60-4af5-a66d-754c82ce2c32,AUTHORIZATION,,true 51619,5440ae90-ab60-4af5-a66d-754c82ce2c32,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51620,5440ae90-ab60-4af5-a66d-754c82ce2c32,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51621,5440ae90-ab60-4af5-a66d-754c82ce2c32,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51622,58b962b3-cf08-4989-866c-599adc0f5477,LIST_ACCOUNTS,hbciListAccounts,false -51623,58b962b3-cf08-4989-866c-599adc0f5477,LIST_TRANSACTIONS,hbciListTransactions,false -51624,58b962b3-cf08-4989-866c-599adc0f5477,AUTHORIZATION,,false -51625,58b962b3-cf08-4989-866c-599adc0f5477,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51626,58b962b3-cf08-4989-866c-599adc0f5477,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51627,58b962b3-cf08-4989-866c-599adc0f5477,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51622,86d33449-f95a-41b3-9110-66d40f23f9d3,LIST_ACCOUNTS,hbciListAccounts,false +51623,86d33449-f95a-41b3-9110-66d40f23f9d3,LIST_TRANSACTIONS,hbciListTransactions,false +51624,86d33449-f95a-41b3-9110-66d40f23f9d3,AUTHORIZATION,,false +51625,86d33449-f95a-41b3-9110-66d40f23f9d3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51626,86d33449-f95a-41b3-9110-66d40f23f9d3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51627,86d33449-f95a-41b3-9110-66d40f23f9d3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51628,12124ecf-5355-495d-87bf-cb9d39fa267c,LIST_ACCOUNTS,xs2aListAccounts,true -51629,12124ecf-5355-495d-87bf-cb9d39fa267c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51629,12124ecf-5355-495d-87bf-cb9d39fa267c,LIST_TRANSACTIONS,xs2aListTransactions,true 51630,12124ecf-5355-495d-87bf-cb9d39fa267c,AUTHORIZATION,,true 51631,12124ecf-5355-495d-87bf-cb9d39fa267c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51632,12124ecf-5355-495d-87bf-cb9d39fa267c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51633,12124ecf-5355-495d-87bf-cb9d39fa267c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51634,a50b9498-111c-44cc-9413-17cee4023161,LIST_ACCOUNTS,hbciListAccounts,false -51635,a50b9498-111c-44cc-9413-17cee4023161,LIST_TRANSACTIONS,hbciListTransactions,false -51636,a50b9498-111c-44cc-9413-17cee4023161,AUTHORIZATION,,false -51637,a50b9498-111c-44cc-9413-17cee4023161,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51638,a50b9498-111c-44cc-9413-17cee4023161,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51639,a50b9498-111c-44cc-9413-17cee4023161,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51634,6eab9faf-98f4-4b45-a7e8-1d14e46a2a7e,LIST_ACCOUNTS,hbciListAccounts,false +51635,6eab9faf-98f4-4b45-a7e8-1d14e46a2a7e,LIST_TRANSACTIONS,hbciListTransactions,false +51636,6eab9faf-98f4-4b45-a7e8-1d14e46a2a7e,AUTHORIZATION,,false +51637,6eab9faf-98f4-4b45-a7e8-1d14e46a2a7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51638,6eab9faf-98f4-4b45-a7e8-1d14e46a2a7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51639,6eab9faf-98f4-4b45-a7e8-1d14e46a2a7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51640,8f8108e9-7895-4452-8053-37e99274d7d6,LIST_ACCOUNTS,xs2aListAccounts,true -51641,8f8108e9-7895-4452-8053-37e99274d7d6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51641,8f8108e9-7895-4452-8053-37e99274d7d6,LIST_TRANSACTIONS,xs2aListTransactions,true 51642,8f8108e9-7895-4452-8053-37e99274d7d6,AUTHORIZATION,,true 51643,8f8108e9-7895-4452-8053-37e99274d7d6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51644,8f8108e9-7895-4452-8053-37e99274d7d6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51645,8f8108e9-7895-4452-8053-37e99274d7d6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51646,b695752d-1eca-4f1f-aab4-9bab0500198f,LIST_ACCOUNTS,hbciListAccounts,false -51647,b695752d-1eca-4f1f-aab4-9bab0500198f,LIST_TRANSACTIONS,hbciListTransactions,false -51648,b695752d-1eca-4f1f-aab4-9bab0500198f,AUTHORIZATION,,false -51649,b695752d-1eca-4f1f-aab4-9bab0500198f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51650,b695752d-1eca-4f1f-aab4-9bab0500198f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51651,b695752d-1eca-4f1f-aab4-9bab0500198f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51646,dff921a7-6ea6-40ec-bf1a-6130b8b79964,LIST_ACCOUNTS,hbciListAccounts,false +51647,dff921a7-6ea6-40ec-bf1a-6130b8b79964,LIST_TRANSACTIONS,hbciListTransactions,false +51648,dff921a7-6ea6-40ec-bf1a-6130b8b79964,AUTHORIZATION,,false +51649,dff921a7-6ea6-40ec-bf1a-6130b8b79964,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51650,dff921a7-6ea6-40ec-bf1a-6130b8b79964,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51651,dff921a7-6ea6-40ec-bf1a-6130b8b79964,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51652,f84e8445-0526-41a7-9e88-11b7918b615a,LIST_ACCOUNTS,xs2aListAccounts,true -51653,f84e8445-0526-41a7-9e88-11b7918b615a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51653,f84e8445-0526-41a7-9e88-11b7918b615a,LIST_TRANSACTIONS,xs2aListTransactions,true 51654,f84e8445-0526-41a7-9e88-11b7918b615a,AUTHORIZATION,,true 51655,f84e8445-0526-41a7-9e88-11b7918b615a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51656,f84e8445-0526-41a7-9e88-11b7918b615a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51657,f84e8445-0526-41a7-9e88-11b7918b615a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51658,1db80575-1ef3-47b0-8289-7374d960e6d1,LIST_ACCOUNTS,hbciListAccounts,false -51659,1db80575-1ef3-47b0-8289-7374d960e6d1,LIST_TRANSACTIONS,hbciListTransactions,false -51660,1db80575-1ef3-47b0-8289-7374d960e6d1,AUTHORIZATION,,false -51661,1db80575-1ef3-47b0-8289-7374d960e6d1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51662,1db80575-1ef3-47b0-8289-7374d960e6d1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51663,1db80575-1ef3-47b0-8289-7374d960e6d1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51658,b32319a0-d6a7-443c-ba0d-1b4faa9c0676,LIST_ACCOUNTS,hbciListAccounts,false +51659,b32319a0-d6a7-443c-ba0d-1b4faa9c0676,LIST_TRANSACTIONS,hbciListTransactions,false +51660,b32319a0-d6a7-443c-ba0d-1b4faa9c0676,AUTHORIZATION,,false +51661,b32319a0-d6a7-443c-ba0d-1b4faa9c0676,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51662,b32319a0-d6a7-443c-ba0d-1b4faa9c0676,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51663,b32319a0-d6a7-443c-ba0d-1b4faa9c0676,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51664,ffa989ee-f172-4077-bd79-0e1acc98e3cd,LIST_ACCOUNTS,xs2aListAccounts,true -51665,ffa989ee-f172-4077-bd79-0e1acc98e3cd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51665,ffa989ee-f172-4077-bd79-0e1acc98e3cd,LIST_TRANSACTIONS,xs2aListTransactions,true 51666,ffa989ee-f172-4077-bd79-0e1acc98e3cd,AUTHORIZATION,,true 51667,ffa989ee-f172-4077-bd79-0e1acc98e3cd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51668,ffa989ee-f172-4077-bd79-0e1acc98e3cd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51669,ffa989ee-f172-4077-bd79-0e1acc98e3cd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51670,834e5fdb-3fc8-4d9a-8359-699c545eb586,LIST_ACCOUNTS,hbciListAccounts,false -51671,834e5fdb-3fc8-4d9a-8359-699c545eb586,LIST_TRANSACTIONS,hbciListTransactions,false -51672,834e5fdb-3fc8-4d9a-8359-699c545eb586,AUTHORIZATION,,false -51673,834e5fdb-3fc8-4d9a-8359-699c545eb586,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51674,834e5fdb-3fc8-4d9a-8359-699c545eb586,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51675,834e5fdb-3fc8-4d9a-8359-699c545eb586,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51670,ed7cde0c-4598-43ce-a2e9-772b55ac960d,LIST_ACCOUNTS,hbciListAccounts,false +51671,ed7cde0c-4598-43ce-a2e9-772b55ac960d,LIST_TRANSACTIONS,hbciListTransactions,false +51672,ed7cde0c-4598-43ce-a2e9-772b55ac960d,AUTHORIZATION,,false +51673,ed7cde0c-4598-43ce-a2e9-772b55ac960d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51674,ed7cde0c-4598-43ce-a2e9-772b55ac960d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51675,ed7cde0c-4598-43ce-a2e9-772b55ac960d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51676,d1ad6131-4ad6-4e70-8560-7119bd25bb24,LIST_ACCOUNTS,xs2aListAccounts,true -51677,d1ad6131-4ad6-4e70-8560-7119bd25bb24,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51677,d1ad6131-4ad6-4e70-8560-7119bd25bb24,LIST_TRANSACTIONS,xs2aListTransactions,true 51678,d1ad6131-4ad6-4e70-8560-7119bd25bb24,AUTHORIZATION,,true 51679,d1ad6131-4ad6-4e70-8560-7119bd25bb24,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51680,d1ad6131-4ad6-4e70-8560-7119bd25bb24,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51681,d1ad6131-4ad6-4e70-8560-7119bd25bb24,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51682,a42e1eb1-b5a2-44b8-92b3-34c835ce420c,LIST_ACCOUNTS,hbciListAccounts,false -51683,a42e1eb1-b5a2-44b8-92b3-34c835ce420c,LIST_TRANSACTIONS,hbciListTransactions,false -51684,a42e1eb1-b5a2-44b8-92b3-34c835ce420c,AUTHORIZATION,,false -51685,a42e1eb1-b5a2-44b8-92b3-34c835ce420c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51686,a42e1eb1-b5a2-44b8-92b3-34c835ce420c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51687,a42e1eb1-b5a2-44b8-92b3-34c835ce420c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51682,3f64221c-9d19-419d-a680-013d0d4c51eb,LIST_ACCOUNTS,hbciListAccounts,false +51683,3f64221c-9d19-419d-a680-013d0d4c51eb,LIST_TRANSACTIONS,hbciListTransactions,false +51684,3f64221c-9d19-419d-a680-013d0d4c51eb,AUTHORIZATION,,false +51685,3f64221c-9d19-419d-a680-013d0d4c51eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51686,3f64221c-9d19-419d-a680-013d0d4c51eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51687,3f64221c-9d19-419d-a680-013d0d4c51eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51688,ea4ca6d3-f2b0-4ece-9849-0299f5cc83b1,LIST_ACCOUNTS,xs2aListAccounts,true -51689,ea4ca6d3-f2b0-4ece-9849-0299f5cc83b1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51689,ea4ca6d3-f2b0-4ece-9849-0299f5cc83b1,LIST_TRANSACTIONS,xs2aListTransactions,true 51690,ea4ca6d3-f2b0-4ece-9849-0299f5cc83b1,AUTHORIZATION,,true 51691,ea4ca6d3-f2b0-4ece-9849-0299f5cc83b1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51692,ea4ca6d3-f2b0-4ece-9849-0299f5cc83b1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51693,ea4ca6d3-f2b0-4ece-9849-0299f5cc83b1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51694,32921d80-f873-4015-b4e0-bf5504c6899d,LIST_ACCOUNTS,hbciListAccounts,false -51695,32921d80-f873-4015-b4e0-bf5504c6899d,LIST_TRANSACTIONS,hbciListTransactions,false -51696,32921d80-f873-4015-b4e0-bf5504c6899d,AUTHORIZATION,,false -51697,32921d80-f873-4015-b4e0-bf5504c6899d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51698,32921d80-f873-4015-b4e0-bf5504c6899d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51699,32921d80-f873-4015-b4e0-bf5504c6899d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51694,eb05ba87-99ee-4939-afab-d0205332ee49,LIST_ACCOUNTS,hbciListAccounts,false +51695,eb05ba87-99ee-4939-afab-d0205332ee49,LIST_TRANSACTIONS,hbciListTransactions,false +51696,eb05ba87-99ee-4939-afab-d0205332ee49,AUTHORIZATION,,false +51697,eb05ba87-99ee-4939-afab-d0205332ee49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51698,eb05ba87-99ee-4939-afab-d0205332ee49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51699,eb05ba87-99ee-4939-afab-d0205332ee49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51700,67c93b3d-68b8-469a-95ff-adc5586c2e06,LIST_ACCOUNTS,xs2aListAccounts,true -51701,67c93b3d-68b8-469a-95ff-adc5586c2e06,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51701,67c93b3d-68b8-469a-95ff-adc5586c2e06,LIST_TRANSACTIONS,xs2aListTransactions,true 51702,67c93b3d-68b8-469a-95ff-adc5586c2e06,AUTHORIZATION,,true 51703,67c93b3d-68b8-469a-95ff-adc5586c2e06,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51704,67c93b3d-68b8-469a-95ff-adc5586c2e06,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51705,67c93b3d-68b8-469a-95ff-adc5586c2e06,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51706,ebcc507c-c4c6-483f-82e5-d6167d20fc39,LIST_ACCOUNTS,hbciListAccounts,false -51707,ebcc507c-c4c6-483f-82e5-d6167d20fc39,LIST_TRANSACTIONS,hbciListTransactions,false -51708,ebcc507c-c4c6-483f-82e5-d6167d20fc39,AUTHORIZATION,,false -51709,ebcc507c-c4c6-483f-82e5-d6167d20fc39,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51710,ebcc507c-c4c6-483f-82e5-d6167d20fc39,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51711,ebcc507c-c4c6-483f-82e5-d6167d20fc39,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51706,495f584e-d0c6-4fe6-a06f-f3e3a20f5bae,LIST_ACCOUNTS,hbciListAccounts,false +51707,495f584e-d0c6-4fe6-a06f-f3e3a20f5bae,LIST_TRANSACTIONS,hbciListTransactions,false +51708,495f584e-d0c6-4fe6-a06f-f3e3a20f5bae,AUTHORIZATION,,false +51709,495f584e-d0c6-4fe6-a06f-f3e3a20f5bae,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51710,495f584e-d0c6-4fe6-a06f-f3e3a20f5bae,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51711,495f584e-d0c6-4fe6-a06f-f3e3a20f5bae,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51712,7a8032b0-59bf-4cbe-82a9-48bcac5b152d,LIST_ACCOUNTS,xs2aListAccounts,true -51713,7a8032b0-59bf-4cbe-82a9-48bcac5b152d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51713,7a8032b0-59bf-4cbe-82a9-48bcac5b152d,LIST_TRANSACTIONS,xs2aListTransactions,true 51714,7a8032b0-59bf-4cbe-82a9-48bcac5b152d,AUTHORIZATION,,true 51715,7a8032b0-59bf-4cbe-82a9-48bcac5b152d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51716,7a8032b0-59bf-4cbe-82a9-48bcac5b152d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51717,7a8032b0-59bf-4cbe-82a9-48bcac5b152d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51718,244a7839-28a0-4f5f-8d5f-6d8b5b66a1f6,LIST_ACCOUNTS,hbciListAccounts,false -51719,244a7839-28a0-4f5f-8d5f-6d8b5b66a1f6,LIST_TRANSACTIONS,hbciListTransactions,false -51720,244a7839-28a0-4f5f-8d5f-6d8b5b66a1f6,AUTHORIZATION,,false -51721,244a7839-28a0-4f5f-8d5f-6d8b5b66a1f6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51722,244a7839-28a0-4f5f-8d5f-6d8b5b66a1f6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51723,244a7839-28a0-4f5f-8d5f-6d8b5b66a1f6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51718,ade1e5cf-5aea-44df-8c2e-6316db9372f8,LIST_ACCOUNTS,hbciListAccounts,false +51719,ade1e5cf-5aea-44df-8c2e-6316db9372f8,LIST_TRANSACTIONS,hbciListTransactions,false +51720,ade1e5cf-5aea-44df-8c2e-6316db9372f8,AUTHORIZATION,,false +51721,ade1e5cf-5aea-44df-8c2e-6316db9372f8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51722,ade1e5cf-5aea-44df-8c2e-6316db9372f8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51723,ade1e5cf-5aea-44df-8c2e-6316db9372f8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51724,2d72047a-d65d-4be6-994a-4b85f3ca043f,LIST_ACCOUNTS,xs2aListAccounts,true -51725,2d72047a-d65d-4be6-994a-4b85f3ca043f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51725,2d72047a-d65d-4be6-994a-4b85f3ca043f,LIST_TRANSACTIONS,xs2aListTransactions,true 51726,2d72047a-d65d-4be6-994a-4b85f3ca043f,AUTHORIZATION,,true 51727,2d72047a-d65d-4be6-994a-4b85f3ca043f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51728,2d72047a-d65d-4be6-994a-4b85f3ca043f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51729,2d72047a-d65d-4be6-994a-4b85f3ca043f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51730,e0b2844a-7f34-4539-8e94-da9528b8cd2a,LIST_ACCOUNTS,hbciListAccounts,false -51731,e0b2844a-7f34-4539-8e94-da9528b8cd2a,LIST_TRANSACTIONS,hbciListTransactions,false -51732,e0b2844a-7f34-4539-8e94-da9528b8cd2a,AUTHORIZATION,,false -51733,e0b2844a-7f34-4539-8e94-da9528b8cd2a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51734,e0b2844a-7f34-4539-8e94-da9528b8cd2a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51735,e0b2844a-7f34-4539-8e94-da9528b8cd2a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51730,72e6e9eb-43ad-460d-b061-1304e44a4e29,LIST_ACCOUNTS,hbciListAccounts,false +51731,72e6e9eb-43ad-460d-b061-1304e44a4e29,LIST_TRANSACTIONS,hbciListTransactions,false +51732,72e6e9eb-43ad-460d-b061-1304e44a4e29,AUTHORIZATION,,false +51733,72e6e9eb-43ad-460d-b061-1304e44a4e29,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51734,72e6e9eb-43ad-460d-b061-1304e44a4e29,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51735,72e6e9eb-43ad-460d-b061-1304e44a4e29,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51736,a0bd232e-f1c7-460f-9058-2562732b3a5c,LIST_ACCOUNTS,xs2aListAccounts,true -51737,a0bd232e-f1c7-460f-9058-2562732b3a5c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51737,a0bd232e-f1c7-460f-9058-2562732b3a5c,LIST_TRANSACTIONS,xs2aListTransactions,true 51738,a0bd232e-f1c7-460f-9058-2562732b3a5c,AUTHORIZATION,,true 51739,a0bd232e-f1c7-460f-9058-2562732b3a5c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51740,a0bd232e-f1c7-460f-9058-2562732b3a5c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51741,a0bd232e-f1c7-460f-9058-2562732b3a5c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51742,2414966a-d70c-4935-8456-ae3decd7b510,LIST_ACCOUNTS,hbciListAccounts,false -51743,2414966a-d70c-4935-8456-ae3decd7b510,LIST_TRANSACTIONS,hbciListTransactions,false -51744,2414966a-d70c-4935-8456-ae3decd7b510,AUTHORIZATION,,false -51745,2414966a-d70c-4935-8456-ae3decd7b510,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51746,2414966a-d70c-4935-8456-ae3decd7b510,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51747,2414966a-d70c-4935-8456-ae3decd7b510,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51742,7fc7774f-fc85-4a0b-b8bc-8faa7db7b201,LIST_ACCOUNTS,hbciListAccounts,false +51743,7fc7774f-fc85-4a0b-b8bc-8faa7db7b201,LIST_TRANSACTIONS,hbciListTransactions,false +51744,7fc7774f-fc85-4a0b-b8bc-8faa7db7b201,AUTHORIZATION,,false +51745,7fc7774f-fc85-4a0b-b8bc-8faa7db7b201,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51746,7fc7774f-fc85-4a0b-b8bc-8faa7db7b201,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51747,7fc7774f-fc85-4a0b-b8bc-8faa7db7b201,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51748,28438830-4b05-4592-97b3-a64387eb9967,LIST_ACCOUNTS,xs2aListAccounts,true -51749,28438830-4b05-4592-97b3-a64387eb9967,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51749,28438830-4b05-4592-97b3-a64387eb9967,LIST_TRANSACTIONS,xs2aListTransactions,true 51750,28438830-4b05-4592-97b3-a64387eb9967,AUTHORIZATION,,true 51751,28438830-4b05-4592-97b3-a64387eb9967,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51752,28438830-4b05-4592-97b3-a64387eb9967,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51753,28438830-4b05-4592-97b3-a64387eb9967,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51754,a6ba366f-4eec-468a-baf5-0170064239e4,LIST_ACCOUNTS,hbciListAccounts,false -51755,a6ba366f-4eec-468a-baf5-0170064239e4,LIST_TRANSACTIONS,hbciListTransactions,false -51756,a6ba366f-4eec-468a-baf5-0170064239e4,AUTHORIZATION,,false -51757,a6ba366f-4eec-468a-baf5-0170064239e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51758,a6ba366f-4eec-468a-baf5-0170064239e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51759,a6ba366f-4eec-468a-baf5-0170064239e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51754,78d3a7c4-467e-499d-aada-f5d138fa3df6,LIST_ACCOUNTS,hbciListAccounts,false +51755,78d3a7c4-467e-499d-aada-f5d138fa3df6,LIST_TRANSACTIONS,hbciListTransactions,false +51756,78d3a7c4-467e-499d-aada-f5d138fa3df6,AUTHORIZATION,,false +51757,78d3a7c4-467e-499d-aada-f5d138fa3df6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51758,78d3a7c4-467e-499d-aada-f5d138fa3df6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51759,78d3a7c4-467e-499d-aada-f5d138fa3df6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51760,e13b5c84-ca39-474e-ac1e-171e027d3084,LIST_ACCOUNTS,xs2aListAccounts,true -51761,e13b5c84-ca39-474e-ac1e-171e027d3084,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51761,e13b5c84-ca39-474e-ac1e-171e027d3084,LIST_TRANSACTIONS,xs2aListTransactions,true 51762,e13b5c84-ca39-474e-ac1e-171e027d3084,AUTHORIZATION,,true 51763,e13b5c84-ca39-474e-ac1e-171e027d3084,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51764,e13b5c84-ca39-474e-ac1e-171e027d3084,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51765,e13b5c84-ca39-474e-ac1e-171e027d3084,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51766,0568aeec-0dfb-4c19-b6df-ca4500ec4e92,LIST_ACCOUNTS,hbciListAccounts,false -51767,0568aeec-0dfb-4c19-b6df-ca4500ec4e92,LIST_TRANSACTIONS,hbciListTransactions,false -51768,0568aeec-0dfb-4c19-b6df-ca4500ec4e92,AUTHORIZATION,,false -51769,0568aeec-0dfb-4c19-b6df-ca4500ec4e92,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51770,0568aeec-0dfb-4c19-b6df-ca4500ec4e92,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51771,0568aeec-0dfb-4c19-b6df-ca4500ec4e92,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51766,84bec934-0b58-4cbc-80a1-402cf3af11f1,LIST_ACCOUNTS,hbciListAccounts,false +51767,84bec934-0b58-4cbc-80a1-402cf3af11f1,LIST_TRANSACTIONS,hbciListTransactions,false +51768,84bec934-0b58-4cbc-80a1-402cf3af11f1,AUTHORIZATION,,false +51769,84bec934-0b58-4cbc-80a1-402cf3af11f1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51770,84bec934-0b58-4cbc-80a1-402cf3af11f1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51771,84bec934-0b58-4cbc-80a1-402cf3af11f1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51772,9004b34c-fcbc-4007-b301-877d359c48af,LIST_ACCOUNTS,xs2aListAccounts,true -51773,9004b34c-fcbc-4007-b301-877d359c48af,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51773,9004b34c-fcbc-4007-b301-877d359c48af,LIST_TRANSACTIONS,xs2aListTransactions,true 51774,9004b34c-fcbc-4007-b301-877d359c48af,AUTHORIZATION,,true 51775,9004b34c-fcbc-4007-b301-877d359c48af,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51776,9004b34c-fcbc-4007-b301-877d359c48af,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51777,9004b34c-fcbc-4007-b301-877d359c48af,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51778,8ce43d3d-0bb2-422d-8cf2-b68393252106,LIST_ACCOUNTS,hbciListAccounts,false -51779,8ce43d3d-0bb2-422d-8cf2-b68393252106,LIST_TRANSACTIONS,hbciListTransactions,false -51780,8ce43d3d-0bb2-422d-8cf2-b68393252106,AUTHORIZATION,,false -51781,8ce43d3d-0bb2-422d-8cf2-b68393252106,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51782,8ce43d3d-0bb2-422d-8cf2-b68393252106,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51783,8ce43d3d-0bb2-422d-8cf2-b68393252106,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51778,aaac390d-c681-4a9b-ab5f-fb8e51d23fc3,LIST_ACCOUNTS,hbciListAccounts,false +51779,aaac390d-c681-4a9b-ab5f-fb8e51d23fc3,LIST_TRANSACTIONS,hbciListTransactions,false +51780,aaac390d-c681-4a9b-ab5f-fb8e51d23fc3,AUTHORIZATION,,false +51781,aaac390d-c681-4a9b-ab5f-fb8e51d23fc3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51782,aaac390d-c681-4a9b-ab5f-fb8e51d23fc3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51783,aaac390d-c681-4a9b-ab5f-fb8e51d23fc3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51784,cd57f1af-f558-484c-83c0-1bf44bf4710c,LIST_ACCOUNTS,xs2aListAccounts,true -51785,cd57f1af-f558-484c-83c0-1bf44bf4710c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51785,cd57f1af-f558-484c-83c0-1bf44bf4710c,LIST_TRANSACTIONS,xs2aListTransactions,true 51786,cd57f1af-f558-484c-83c0-1bf44bf4710c,AUTHORIZATION,,true 51787,cd57f1af-f558-484c-83c0-1bf44bf4710c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51788,cd57f1af-f558-484c-83c0-1bf44bf4710c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51789,cd57f1af-f558-484c-83c0-1bf44bf4710c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51790,005900d6-7339-4373-a0b7-9985a344ecde,LIST_ACCOUNTS,hbciListAccounts,false -51791,005900d6-7339-4373-a0b7-9985a344ecde,LIST_TRANSACTIONS,hbciListTransactions,false -51792,005900d6-7339-4373-a0b7-9985a344ecde,AUTHORIZATION,,false -51793,005900d6-7339-4373-a0b7-9985a344ecde,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51794,005900d6-7339-4373-a0b7-9985a344ecde,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51795,005900d6-7339-4373-a0b7-9985a344ecde,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51790,573486eb-e879-414c-a09d-12370995a7c5,LIST_ACCOUNTS,hbciListAccounts,false +51791,573486eb-e879-414c-a09d-12370995a7c5,LIST_TRANSACTIONS,hbciListTransactions,false +51792,573486eb-e879-414c-a09d-12370995a7c5,AUTHORIZATION,,false +51793,573486eb-e879-414c-a09d-12370995a7c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51794,573486eb-e879-414c-a09d-12370995a7c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51795,573486eb-e879-414c-a09d-12370995a7c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51796,5ef02130-0641-4f46-9313-cb55d9afafca,LIST_ACCOUNTS,xs2aListAccounts,true -51797,5ef02130-0641-4f46-9313-cb55d9afafca,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51797,5ef02130-0641-4f46-9313-cb55d9afafca,LIST_TRANSACTIONS,xs2aListTransactions,true 51798,5ef02130-0641-4f46-9313-cb55d9afafca,AUTHORIZATION,,true 51799,5ef02130-0641-4f46-9313-cb55d9afafca,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51800,5ef02130-0641-4f46-9313-cb55d9afafca,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51801,5ef02130-0641-4f46-9313-cb55d9afafca,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51802,6a4dd91e-1037-420b-9981-cd49480aaa6d,LIST_ACCOUNTS,hbciListAccounts,false -51803,6a4dd91e-1037-420b-9981-cd49480aaa6d,LIST_TRANSACTIONS,hbciListTransactions,false -51804,6a4dd91e-1037-420b-9981-cd49480aaa6d,AUTHORIZATION,,false -51805,6a4dd91e-1037-420b-9981-cd49480aaa6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51806,6a4dd91e-1037-420b-9981-cd49480aaa6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51807,6a4dd91e-1037-420b-9981-cd49480aaa6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51802,57a9ecac-de64-46ea-ae68-eed53536f342,LIST_ACCOUNTS,hbciListAccounts,false +51803,57a9ecac-de64-46ea-ae68-eed53536f342,LIST_TRANSACTIONS,hbciListTransactions,false +51804,57a9ecac-de64-46ea-ae68-eed53536f342,AUTHORIZATION,,false +51805,57a9ecac-de64-46ea-ae68-eed53536f342,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51806,57a9ecac-de64-46ea-ae68-eed53536f342,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51807,57a9ecac-de64-46ea-ae68-eed53536f342,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51808,6df5fbf1-a323-458e-9ab6-20e4713974ee,LIST_ACCOUNTS,xs2aListAccounts,true -51809,6df5fbf1-a323-458e-9ab6-20e4713974ee,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51809,6df5fbf1-a323-458e-9ab6-20e4713974ee,LIST_TRANSACTIONS,xs2aListTransactions,true 51810,6df5fbf1-a323-458e-9ab6-20e4713974ee,AUTHORIZATION,,true 51811,6df5fbf1-a323-458e-9ab6-20e4713974ee,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51812,6df5fbf1-a323-458e-9ab6-20e4713974ee,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51813,6df5fbf1-a323-458e-9ab6-20e4713974ee,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51814,bf4efbfb-68a4-4f16-890d-5f700e54b936,LIST_ACCOUNTS,hbciListAccounts,false -51815,bf4efbfb-68a4-4f16-890d-5f700e54b936,LIST_TRANSACTIONS,hbciListTransactions,false -51816,bf4efbfb-68a4-4f16-890d-5f700e54b936,AUTHORIZATION,,false -51817,bf4efbfb-68a4-4f16-890d-5f700e54b936,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51818,bf4efbfb-68a4-4f16-890d-5f700e54b936,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51819,bf4efbfb-68a4-4f16-890d-5f700e54b936,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51814,01834512-2694-42d9-9bb6-971e57abf20e,LIST_ACCOUNTS,hbciListAccounts,false +51815,01834512-2694-42d9-9bb6-971e57abf20e,LIST_TRANSACTIONS,hbciListTransactions,false +51816,01834512-2694-42d9-9bb6-971e57abf20e,AUTHORIZATION,,false +51817,01834512-2694-42d9-9bb6-971e57abf20e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51818,01834512-2694-42d9-9bb6-971e57abf20e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51819,01834512-2694-42d9-9bb6-971e57abf20e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51820,c1dc5886-34eb-4939-87ff-d3c045c13d3c,LIST_ACCOUNTS,xs2aListAccounts,true -51821,c1dc5886-34eb-4939-87ff-d3c045c13d3c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51821,c1dc5886-34eb-4939-87ff-d3c045c13d3c,LIST_TRANSACTIONS,xs2aListTransactions,true 51822,c1dc5886-34eb-4939-87ff-d3c045c13d3c,AUTHORIZATION,,true 51823,c1dc5886-34eb-4939-87ff-d3c045c13d3c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51824,c1dc5886-34eb-4939-87ff-d3c045c13d3c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51825,c1dc5886-34eb-4939-87ff-d3c045c13d3c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51826,da2e28f1-8f7a-4021-9361-7367dad53fad,LIST_ACCOUNTS,hbciListAccounts,false -51827,da2e28f1-8f7a-4021-9361-7367dad53fad,LIST_TRANSACTIONS,hbciListTransactions,false -51828,da2e28f1-8f7a-4021-9361-7367dad53fad,AUTHORIZATION,,false -51829,da2e28f1-8f7a-4021-9361-7367dad53fad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51830,da2e28f1-8f7a-4021-9361-7367dad53fad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51831,da2e28f1-8f7a-4021-9361-7367dad53fad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51826,7bea16fa-f9c9-49e0-9fff-ef684b85780b,LIST_ACCOUNTS,hbciListAccounts,false +51827,7bea16fa-f9c9-49e0-9fff-ef684b85780b,LIST_TRANSACTIONS,hbciListTransactions,false +51828,7bea16fa-f9c9-49e0-9fff-ef684b85780b,AUTHORIZATION,,false +51829,7bea16fa-f9c9-49e0-9fff-ef684b85780b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51830,7bea16fa-f9c9-49e0-9fff-ef684b85780b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51831,7bea16fa-f9c9-49e0-9fff-ef684b85780b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51832,0f5f8e3a-155c-4d5b-b4f2-580d29c8ea3e,LIST_ACCOUNTS,xs2aListAccounts,true -51833,0f5f8e3a-155c-4d5b-b4f2-580d29c8ea3e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51833,0f5f8e3a-155c-4d5b-b4f2-580d29c8ea3e,LIST_TRANSACTIONS,xs2aListTransactions,true 51834,0f5f8e3a-155c-4d5b-b4f2-580d29c8ea3e,AUTHORIZATION,,true 51835,0f5f8e3a-155c-4d5b-b4f2-580d29c8ea3e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51836,0f5f8e3a-155c-4d5b-b4f2-580d29c8ea3e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51837,0f5f8e3a-155c-4d5b-b4f2-580d29c8ea3e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51838,ac52d582-0f7c-48c4-9a6c-66c0de664413,LIST_ACCOUNTS,hbciListAccounts,false -51839,ac52d582-0f7c-48c4-9a6c-66c0de664413,LIST_TRANSACTIONS,hbciListTransactions,false -51840,ac52d582-0f7c-48c4-9a6c-66c0de664413,AUTHORIZATION,,false -51841,ac52d582-0f7c-48c4-9a6c-66c0de664413,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51842,ac52d582-0f7c-48c4-9a6c-66c0de664413,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51843,ac52d582-0f7c-48c4-9a6c-66c0de664413,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51838,7d8a93e9-7e44-4f79-98d4-26639e1af2a0,LIST_ACCOUNTS,hbciListAccounts,false +51839,7d8a93e9-7e44-4f79-98d4-26639e1af2a0,LIST_TRANSACTIONS,hbciListTransactions,false +51840,7d8a93e9-7e44-4f79-98d4-26639e1af2a0,AUTHORIZATION,,false +51841,7d8a93e9-7e44-4f79-98d4-26639e1af2a0,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51842,7d8a93e9-7e44-4f79-98d4-26639e1af2a0,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51843,7d8a93e9-7e44-4f79-98d4-26639e1af2a0,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51844,551f0173-bb9b-48a3-9fe2-df2569eea7a6,LIST_ACCOUNTS,xs2aListAccounts,true -51845,551f0173-bb9b-48a3-9fe2-df2569eea7a6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51845,551f0173-bb9b-48a3-9fe2-df2569eea7a6,LIST_TRANSACTIONS,xs2aListTransactions,true 51846,551f0173-bb9b-48a3-9fe2-df2569eea7a6,AUTHORIZATION,,true 51847,551f0173-bb9b-48a3-9fe2-df2569eea7a6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51848,551f0173-bb9b-48a3-9fe2-df2569eea7a6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51849,551f0173-bb9b-48a3-9fe2-df2569eea7a6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51850,42c61da1-ebc9-4272-8215-a315a2b0fb49,LIST_ACCOUNTS,hbciListAccounts,false -51851,42c61da1-ebc9-4272-8215-a315a2b0fb49,LIST_TRANSACTIONS,hbciListTransactions,false -51852,42c61da1-ebc9-4272-8215-a315a2b0fb49,AUTHORIZATION,,false -51853,42c61da1-ebc9-4272-8215-a315a2b0fb49,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51854,42c61da1-ebc9-4272-8215-a315a2b0fb49,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51855,42c61da1-ebc9-4272-8215-a315a2b0fb49,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51850,7a4fb09a-b617-4406-a117-df43a803f3dd,LIST_ACCOUNTS,hbciListAccounts,false +51851,7a4fb09a-b617-4406-a117-df43a803f3dd,LIST_TRANSACTIONS,hbciListTransactions,false +51852,7a4fb09a-b617-4406-a117-df43a803f3dd,AUTHORIZATION,,false +51853,7a4fb09a-b617-4406-a117-df43a803f3dd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51854,7a4fb09a-b617-4406-a117-df43a803f3dd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51855,7a4fb09a-b617-4406-a117-df43a803f3dd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51856,79795618-277f-4230-92b5-8a116da805a1,LIST_ACCOUNTS,xs2aListAccounts,true -51857,79795618-277f-4230-92b5-8a116da805a1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51857,79795618-277f-4230-92b5-8a116da805a1,LIST_TRANSACTIONS,xs2aListTransactions,true 51858,79795618-277f-4230-92b5-8a116da805a1,AUTHORIZATION,,true 51859,79795618-277f-4230-92b5-8a116da805a1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51860,79795618-277f-4230-92b5-8a116da805a1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51861,79795618-277f-4230-92b5-8a116da805a1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51862,1582e4d1-74db-4fa2-a415-a72a019dca12,LIST_ACCOUNTS,hbciListAccounts,false -51863,1582e4d1-74db-4fa2-a415-a72a019dca12,LIST_TRANSACTIONS,hbciListTransactions,false -51864,1582e4d1-74db-4fa2-a415-a72a019dca12,AUTHORIZATION,,false -51865,1582e4d1-74db-4fa2-a415-a72a019dca12,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51866,1582e4d1-74db-4fa2-a415-a72a019dca12,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51867,1582e4d1-74db-4fa2-a415-a72a019dca12,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51862,0f7a054b-22fa-4b21-9eb7-b23f15c94627,LIST_ACCOUNTS,hbciListAccounts,false +51863,0f7a054b-22fa-4b21-9eb7-b23f15c94627,LIST_TRANSACTIONS,hbciListTransactions,false +51864,0f7a054b-22fa-4b21-9eb7-b23f15c94627,AUTHORIZATION,,false +51865,0f7a054b-22fa-4b21-9eb7-b23f15c94627,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51866,0f7a054b-22fa-4b21-9eb7-b23f15c94627,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51867,0f7a054b-22fa-4b21-9eb7-b23f15c94627,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51868,7ed51f41-63aa-470e-b13e-f4dcbae16b71,LIST_ACCOUNTS,xs2aListAccounts,true -51869,7ed51f41-63aa-470e-b13e-f4dcbae16b71,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51869,7ed51f41-63aa-470e-b13e-f4dcbae16b71,LIST_TRANSACTIONS,xs2aListTransactions,true 51870,7ed51f41-63aa-470e-b13e-f4dcbae16b71,AUTHORIZATION,,true 51871,7ed51f41-63aa-470e-b13e-f4dcbae16b71,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51872,7ed51f41-63aa-470e-b13e-f4dcbae16b71,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51873,7ed51f41-63aa-470e-b13e-f4dcbae16b71,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51874,da7100db-a010-42fe-9c22-43c82961809a,LIST_ACCOUNTS,hbciListAccounts,false -51875,da7100db-a010-42fe-9c22-43c82961809a,LIST_TRANSACTIONS,hbciListTransactions,false -51876,da7100db-a010-42fe-9c22-43c82961809a,AUTHORIZATION,,false -51877,da7100db-a010-42fe-9c22-43c82961809a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51878,da7100db-a010-42fe-9c22-43c82961809a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51879,da7100db-a010-42fe-9c22-43c82961809a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51874,ed6a7a57-d3a0-4e6e-8989-01fc2e5d7930,LIST_ACCOUNTS,hbciListAccounts,false +51875,ed6a7a57-d3a0-4e6e-8989-01fc2e5d7930,LIST_TRANSACTIONS,hbciListTransactions,false +51876,ed6a7a57-d3a0-4e6e-8989-01fc2e5d7930,AUTHORIZATION,,false +51877,ed6a7a57-d3a0-4e6e-8989-01fc2e5d7930,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51878,ed6a7a57-d3a0-4e6e-8989-01fc2e5d7930,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51879,ed6a7a57-d3a0-4e6e-8989-01fc2e5d7930,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51880,69d6c9de-8e71-4520-8f03-a7524c36907e,LIST_ACCOUNTS,xs2aListAccounts,true -51881,69d6c9de-8e71-4520-8f03-a7524c36907e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51881,69d6c9de-8e71-4520-8f03-a7524c36907e,LIST_TRANSACTIONS,xs2aListTransactions,true 51882,69d6c9de-8e71-4520-8f03-a7524c36907e,AUTHORIZATION,,true 51883,69d6c9de-8e71-4520-8f03-a7524c36907e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51884,69d6c9de-8e71-4520-8f03-a7524c36907e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51885,69d6c9de-8e71-4520-8f03-a7524c36907e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51886,e3d30cbe-c744-48c9-a8f1-b8ffe8b1c4ef,LIST_ACCOUNTS,hbciListAccounts,false -51887,e3d30cbe-c744-48c9-a8f1-b8ffe8b1c4ef,LIST_TRANSACTIONS,hbciListTransactions,false -51888,e3d30cbe-c744-48c9-a8f1-b8ffe8b1c4ef,AUTHORIZATION,,false -51889,e3d30cbe-c744-48c9-a8f1-b8ffe8b1c4ef,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51890,e3d30cbe-c744-48c9-a8f1-b8ffe8b1c4ef,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51891,e3d30cbe-c744-48c9-a8f1-b8ffe8b1c4ef,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51886,9ca0cb03-9fc9-4962-83ce-8640216be57e,LIST_ACCOUNTS,hbciListAccounts,false +51887,9ca0cb03-9fc9-4962-83ce-8640216be57e,LIST_TRANSACTIONS,hbciListTransactions,false +51888,9ca0cb03-9fc9-4962-83ce-8640216be57e,AUTHORIZATION,,false +51889,9ca0cb03-9fc9-4962-83ce-8640216be57e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51890,9ca0cb03-9fc9-4962-83ce-8640216be57e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51891,9ca0cb03-9fc9-4962-83ce-8640216be57e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51892,7252281d-8e66-4c03-8db7-fd4b541f6c0e,LIST_ACCOUNTS,xs2aListAccounts,true -51893,7252281d-8e66-4c03-8db7-fd4b541f6c0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51893,7252281d-8e66-4c03-8db7-fd4b541f6c0e,LIST_TRANSACTIONS,xs2aListTransactions,true 51894,7252281d-8e66-4c03-8db7-fd4b541f6c0e,AUTHORIZATION,,true 51895,7252281d-8e66-4c03-8db7-fd4b541f6c0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51896,7252281d-8e66-4c03-8db7-fd4b541f6c0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51897,7252281d-8e66-4c03-8db7-fd4b541f6c0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51898,4c60ab28-a06a-42e4-b934-a4577844a8cd,LIST_ACCOUNTS,hbciListAccounts,false -51899,4c60ab28-a06a-42e4-b934-a4577844a8cd,LIST_TRANSACTIONS,hbciListTransactions,false -51900,4c60ab28-a06a-42e4-b934-a4577844a8cd,AUTHORIZATION,,false -51901,4c60ab28-a06a-42e4-b934-a4577844a8cd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51902,4c60ab28-a06a-42e4-b934-a4577844a8cd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51903,4c60ab28-a06a-42e4-b934-a4577844a8cd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51898,3b525481-1278-43fa-81d8-cc45534054ad,LIST_ACCOUNTS,hbciListAccounts,false +51899,3b525481-1278-43fa-81d8-cc45534054ad,LIST_TRANSACTIONS,hbciListTransactions,false +51900,3b525481-1278-43fa-81d8-cc45534054ad,AUTHORIZATION,,false +51901,3b525481-1278-43fa-81d8-cc45534054ad,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51902,3b525481-1278-43fa-81d8-cc45534054ad,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51903,3b525481-1278-43fa-81d8-cc45534054ad,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51904,bac1684a-b7b9-4f3a-b4f9-f12808ebe11a,LIST_ACCOUNTS,xs2aListAccounts,true -51905,bac1684a-b7b9-4f3a-b4f9-f12808ebe11a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51905,bac1684a-b7b9-4f3a-b4f9-f12808ebe11a,LIST_TRANSACTIONS,xs2aListTransactions,true 51906,bac1684a-b7b9-4f3a-b4f9-f12808ebe11a,AUTHORIZATION,,true 51907,bac1684a-b7b9-4f3a-b4f9-f12808ebe11a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51908,bac1684a-b7b9-4f3a-b4f9-f12808ebe11a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51909,bac1684a-b7b9-4f3a-b4f9-f12808ebe11a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51910,733db193-8299-4044-b7dd-b2f6976ae790,LIST_ACCOUNTS,hbciListAccounts,false -51911,733db193-8299-4044-b7dd-b2f6976ae790,LIST_TRANSACTIONS,hbciListTransactions,false -51912,733db193-8299-4044-b7dd-b2f6976ae790,AUTHORIZATION,,false -51913,733db193-8299-4044-b7dd-b2f6976ae790,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51914,733db193-8299-4044-b7dd-b2f6976ae790,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51915,733db193-8299-4044-b7dd-b2f6976ae790,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51910,1a6a99c2-178b-4773-a5a4-2efbc361f267,LIST_ACCOUNTS,hbciListAccounts,false +51911,1a6a99c2-178b-4773-a5a4-2efbc361f267,LIST_TRANSACTIONS,hbciListTransactions,false +51912,1a6a99c2-178b-4773-a5a4-2efbc361f267,AUTHORIZATION,,false +51913,1a6a99c2-178b-4773-a5a4-2efbc361f267,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51914,1a6a99c2-178b-4773-a5a4-2efbc361f267,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51915,1a6a99c2-178b-4773-a5a4-2efbc361f267,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51916,bf3ab0aa-fd97-403c-b43c-7d93dd819cf6,LIST_ACCOUNTS,xs2aListAccounts,true -51917,bf3ab0aa-fd97-403c-b43c-7d93dd819cf6,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51917,bf3ab0aa-fd97-403c-b43c-7d93dd819cf6,LIST_TRANSACTIONS,xs2aListTransactions,true 51918,bf3ab0aa-fd97-403c-b43c-7d93dd819cf6,AUTHORIZATION,,true 51919,bf3ab0aa-fd97-403c-b43c-7d93dd819cf6,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51920,bf3ab0aa-fd97-403c-b43c-7d93dd819cf6,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51921,bf3ab0aa-fd97-403c-b43c-7d93dd819cf6,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51922,153c370e-fc8f-4c94-9eea-046ff254c540,LIST_ACCOUNTS,hbciListAccounts,false -51923,153c370e-fc8f-4c94-9eea-046ff254c540,LIST_TRANSACTIONS,hbciListTransactions,false -51924,153c370e-fc8f-4c94-9eea-046ff254c540,AUTHORIZATION,,false -51925,153c370e-fc8f-4c94-9eea-046ff254c540,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51926,153c370e-fc8f-4c94-9eea-046ff254c540,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51927,153c370e-fc8f-4c94-9eea-046ff254c540,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51922,3c665bdf-dbf1-4b9b-9c44-cfaa8218557b,LIST_ACCOUNTS,hbciListAccounts,false +51923,3c665bdf-dbf1-4b9b-9c44-cfaa8218557b,LIST_TRANSACTIONS,hbciListTransactions,false +51924,3c665bdf-dbf1-4b9b-9c44-cfaa8218557b,AUTHORIZATION,,false +51925,3c665bdf-dbf1-4b9b-9c44-cfaa8218557b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51926,3c665bdf-dbf1-4b9b-9c44-cfaa8218557b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51927,3c665bdf-dbf1-4b9b-9c44-cfaa8218557b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51928,3d949fee-81ec-4329-ba2f-971705e9ac2e,LIST_ACCOUNTS,xs2aListAccounts,true -51929,3d949fee-81ec-4329-ba2f-971705e9ac2e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51929,3d949fee-81ec-4329-ba2f-971705e9ac2e,LIST_TRANSACTIONS,xs2aListTransactions,true 51930,3d949fee-81ec-4329-ba2f-971705e9ac2e,AUTHORIZATION,,true 51931,3d949fee-81ec-4329-ba2f-971705e9ac2e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51932,3d949fee-81ec-4329-ba2f-971705e9ac2e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51933,3d949fee-81ec-4329-ba2f-971705e9ac2e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51934,1b35e6e2-2250-4f5a-af55-73e517dd1b2e,LIST_ACCOUNTS,hbciListAccounts,false -51935,1b35e6e2-2250-4f5a-af55-73e517dd1b2e,LIST_TRANSACTIONS,hbciListTransactions,false -51936,1b35e6e2-2250-4f5a-af55-73e517dd1b2e,AUTHORIZATION,,false -51937,1b35e6e2-2250-4f5a-af55-73e517dd1b2e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51938,1b35e6e2-2250-4f5a-af55-73e517dd1b2e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51939,1b35e6e2-2250-4f5a-af55-73e517dd1b2e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51934,47589264-6490-4a3f-81d3-29d6bdfcbe84,LIST_ACCOUNTS,hbciListAccounts,false +51935,47589264-6490-4a3f-81d3-29d6bdfcbe84,LIST_TRANSACTIONS,hbciListTransactions,false +51936,47589264-6490-4a3f-81d3-29d6bdfcbe84,AUTHORIZATION,,false +51937,47589264-6490-4a3f-81d3-29d6bdfcbe84,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51938,47589264-6490-4a3f-81d3-29d6bdfcbe84,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51939,47589264-6490-4a3f-81d3-29d6bdfcbe84,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51940,3e9a241f-7694-45d2-8d5c-2f4bc51ae7f0,LIST_ACCOUNTS,xs2aListAccounts,true -51941,3e9a241f-7694-45d2-8d5c-2f4bc51ae7f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51941,3e9a241f-7694-45d2-8d5c-2f4bc51ae7f0,LIST_TRANSACTIONS,xs2aListTransactions,true 51942,3e9a241f-7694-45d2-8d5c-2f4bc51ae7f0,AUTHORIZATION,,true 51943,3e9a241f-7694-45d2-8d5c-2f4bc51ae7f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51944,3e9a241f-7694-45d2-8d5c-2f4bc51ae7f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51945,3e9a241f-7694-45d2-8d5c-2f4bc51ae7f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51946,9ff5749d-3823-402c-a4e3-50c5006f2540,LIST_ACCOUNTS,hbciListAccounts,false -51947,9ff5749d-3823-402c-a4e3-50c5006f2540,LIST_TRANSACTIONS,hbciListTransactions,false -51948,9ff5749d-3823-402c-a4e3-50c5006f2540,AUTHORIZATION,,false -51949,9ff5749d-3823-402c-a4e3-50c5006f2540,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51950,9ff5749d-3823-402c-a4e3-50c5006f2540,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51951,9ff5749d-3823-402c-a4e3-50c5006f2540,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51946,1340ed2d-81b3-4f4b-a7c9-d2bf3888541a,LIST_ACCOUNTS,hbciListAccounts,false +51947,1340ed2d-81b3-4f4b-a7c9-d2bf3888541a,LIST_TRANSACTIONS,hbciListTransactions,false +51948,1340ed2d-81b3-4f4b-a7c9-d2bf3888541a,AUTHORIZATION,,false +51949,1340ed2d-81b3-4f4b-a7c9-d2bf3888541a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51950,1340ed2d-81b3-4f4b-a7c9-d2bf3888541a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51951,1340ed2d-81b3-4f4b-a7c9-d2bf3888541a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51952,4ff72e8b-3af5-4ab5-bab1-3f15d6eaae50,LIST_ACCOUNTS,xs2aListAccounts,true -51953,4ff72e8b-3af5-4ab5-bab1-3f15d6eaae50,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51953,4ff72e8b-3af5-4ab5-bab1-3f15d6eaae50,LIST_TRANSACTIONS,xs2aListTransactions,true 51954,4ff72e8b-3af5-4ab5-bab1-3f15d6eaae50,AUTHORIZATION,,true 51955,4ff72e8b-3af5-4ab5-bab1-3f15d6eaae50,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51956,4ff72e8b-3af5-4ab5-bab1-3f15d6eaae50,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51957,4ff72e8b-3af5-4ab5-bab1-3f15d6eaae50,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51958,290b87ae-396a-4ba7-a3e1-d094a0ad1055,LIST_ACCOUNTS,hbciListAccounts,false -51959,290b87ae-396a-4ba7-a3e1-d094a0ad1055,LIST_TRANSACTIONS,hbciListTransactions,false -51960,290b87ae-396a-4ba7-a3e1-d094a0ad1055,AUTHORIZATION,,false -51961,290b87ae-396a-4ba7-a3e1-d094a0ad1055,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51962,290b87ae-396a-4ba7-a3e1-d094a0ad1055,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51963,290b87ae-396a-4ba7-a3e1-d094a0ad1055,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51958,3ffbbcbe-81ac-4cbe-b2ed-1e844f09005f,LIST_ACCOUNTS,hbciListAccounts,false +51959,3ffbbcbe-81ac-4cbe-b2ed-1e844f09005f,LIST_TRANSACTIONS,hbciListTransactions,false +51960,3ffbbcbe-81ac-4cbe-b2ed-1e844f09005f,AUTHORIZATION,,false +51961,3ffbbcbe-81ac-4cbe-b2ed-1e844f09005f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51962,3ffbbcbe-81ac-4cbe-b2ed-1e844f09005f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51963,3ffbbcbe-81ac-4cbe-b2ed-1e844f09005f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51964,28b91ab4-7b54-463c-9177-280e3ce461d1,LIST_ACCOUNTS,xs2aListAccounts,true -51965,28b91ab4-7b54-463c-9177-280e3ce461d1,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51965,28b91ab4-7b54-463c-9177-280e3ce461d1,LIST_TRANSACTIONS,xs2aListTransactions,true 51966,28b91ab4-7b54-463c-9177-280e3ce461d1,AUTHORIZATION,,true 51967,28b91ab4-7b54-463c-9177-280e3ce461d1,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51968,28b91ab4-7b54-463c-9177-280e3ce461d1,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51969,28b91ab4-7b54-463c-9177-280e3ce461d1,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51970,2b2e5d9a-3294-4a94-a6d6-d3be6ddd8c6d,LIST_ACCOUNTS,hbciListAccounts,false -51971,2b2e5d9a-3294-4a94-a6d6-d3be6ddd8c6d,LIST_TRANSACTIONS,hbciListTransactions,false -51972,2b2e5d9a-3294-4a94-a6d6-d3be6ddd8c6d,AUTHORIZATION,,false -51973,2b2e5d9a-3294-4a94-a6d6-d3be6ddd8c6d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51974,2b2e5d9a-3294-4a94-a6d6-d3be6ddd8c6d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51975,2b2e5d9a-3294-4a94-a6d6-d3be6ddd8c6d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51970,c39d7c85-2629-465e-b14e-abd999f9834f,LIST_ACCOUNTS,hbciListAccounts,false +51971,c39d7c85-2629-465e-b14e-abd999f9834f,LIST_TRANSACTIONS,hbciListTransactions,false +51972,c39d7c85-2629-465e-b14e-abd999f9834f,AUTHORIZATION,,false +51973,c39d7c85-2629-465e-b14e-abd999f9834f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51974,c39d7c85-2629-465e-b14e-abd999f9834f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51975,c39d7c85-2629-465e-b14e-abd999f9834f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51976,fd2644c0-8508-4a71-a190-6dcf801bb1c0,LIST_ACCOUNTS,xs2aListAccounts,true -51977,fd2644c0-8508-4a71-a190-6dcf801bb1c0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51977,fd2644c0-8508-4a71-a190-6dcf801bb1c0,LIST_TRANSACTIONS,xs2aListTransactions,true 51978,fd2644c0-8508-4a71-a190-6dcf801bb1c0,AUTHORIZATION,,true 51979,fd2644c0-8508-4a71-a190-6dcf801bb1c0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51980,fd2644c0-8508-4a71-a190-6dcf801bb1c0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51981,fd2644c0-8508-4a71-a190-6dcf801bb1c0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51982,cd483c4b-6d72-40ec-a6b7-7e4df8958c4d,LIST_ACCOUNTS,hbciListAccounts,false -51983,cd483c4b-6d72-40ec-a6b7-7e4df8958c4d,LIST_TRANSACTIONS,hbciListTransactions,false -51984,cd483c4b-6d72-40ec-a6b7-7e4df8958c4d,AUTHORIZATION,,false -51985,cd483c4b-6d72-40ec-a6b7-7e4df8958c4d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51986,cd483c4b-6d72-40ec-a6b7-7e4df8958c4d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51987,cd483c4b-6d72-40ec-a6b7-7e4df8958c4d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51982,463b042c-fe96-4345-bc84-4fabc1f13aff,LIST_ACCOUNTS,hbciListAccounts,false +51983,463b042c-fe96-4345-bc84-4fabc1f13aff,LIST_TRANSACTIONS,hbciListTransactions,false +51984,463b042c-fe96-4345-bc84-4fabc1f13aff,AUTHORIZATION,,false +51985,463b042c-fe96-4345-bc84-4fabc1f13aff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51986,463b042c-fe96-4345-bc84-4fabc1f13aff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51987,463b042c-fe96-4345-bc84-4fabc1f13aff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 51988,c14d1440-c6b5-49c3-a263-4d065ec45342,LIST_ACCOUNTS,xs2aListAccounts,true -51989,c14d1440-c6b5-49c3-a263-4d065ec45342,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +51989,c14d1440-c6b5-49c3-a263-4d065ec45342,LIST_TRANSACTIONS,xs2aListTransactions,true 51990,c14d1440-c6b5-49c3-a263-4d065ec45342,AUTHORIZATION,,true 51991,c14d1440-c6b5-49c3-a263-4d065ec45342,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 51992,c14d1440-c6b5-49c3-a263-4d065ec45342,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 51993,c14d1440-c6b5-49c3-a263-4d065ec45342,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -51994,b39cefd5-b415-47f0-b0c4-3c5df7884e3a,LIST_ACCOUNTS,hbciListAccounts,false -51995,b39cefd5-b415-47f0-b0c4-3c5df7884e3a,LIST_TRANSACTIONS,hbciListTransactions,false -51996,b39cefd5-b415-47f0-b0c4-3c5df7884e3a,AUTHORIZATION,,false -51997,b39cefd5-b415-47f0-b0c4-3c5df7884e3a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -51998,b39cefd5-b415-47f0-b0c4-3c5df7884e3a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -51999,b39cefd5-b415-47f0-b0c4-3c5df7884e3a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +51994,c60be4c0-f411-4dfb-b882-f6883e240a60,LIST_ACCOUNTS,hbciListAccounts,false +51995,c60be4c0-f411-4dfb-b882-f6883e240a60,LIST_TRANSACTIONS,hbciListTransactions,false +51996,c60be4c0-f411-4dfb-b882-f6883e240a60,AUTHORIZATION,,false +51997,c60be4c0-f411-4dfb-b882-f6883e240a60,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +51998,c60be4c0-f411-4dfb-b882-f6883e240a60,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +51999,c60be4c0-f411-4dfb-b882-f6883e240a60,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52000,0f34d4c0-feba-478f-b38a-9fd7044bbe1e,LIST_ACCOUNTS,xs2aListAccounts,true -52001,0f34d4c0-feba-478f-b38a-9fd7044bbe1e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52001,0f34d4c0-feba-478f-b38a-9fd7044bbe1e,LIST_TRANSACTIONS,xs2aListTransactions,true 52002,0f34d4c0-feba-478f-b38a-9fd7044bbe1e,AUTHORIZATION,,true 52003,0f34d4c0-feba-478f-b38a-9fd7044bbe1e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52004,0f34d4c0-feba-478f-b38a-9fd7044bbe1e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52005,0f34d4c0-feba-478f-b38a-9fd7044bbe1e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52006,c093e203-ad87-4b94-9343-984a30dbca23,LIST_ACCOUNTS,hbciListAccounts,false -52007,c093e203-ad87-4b94-9343-984a30dbca23,LIST_TRANSACTIONS,hbciListTransactions,false -52008,c093e203-ad87-4b94-9343-984a30dbca23,AUTHORIZATION,,false -52009,c093e203-ad87-4b94-9343-984a30dbca23,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52010,c093e203-ad87-4b94-9343-984a30dbca23,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52011,c093e203-ad87-4b94-9343-984a30dbca23,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52006,8a984526-8e7a-4427-bcbd-b2e13f3378e4,LIST_ACCOUNTS,hbciListAccounts,false +52007,8a984526-8e7a-4427-bcbd-b2e13f3378e4,LIST_TRANSACTIONS,hbciListTransactions,false +52008,8a984526-8e7a-4427-bcbd-b2e13f3378e4,AUTHORIZATION,,false +52009,8a984526-8e7a-4427-bcbd-b2e13f3378e4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52010,8a984526-8e7a-4427-bcbd-b2e13f3378e4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52011,8a984526-8e7a-4427-bcbd-b2e13f3378e4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52012,19244956-3bc5-472f-a0c9-5ccb2db2bc53,LIST_ACCOUNTS,xs2aListAccounts,true -52013,19244956-3bc5-472f-a0c9-5ccb2db2bc53,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52013,19244956-3bc5-472f-a0c9-5ccb2db2bc53,LIST_TRANSACTIONS,xs2aListTransactions,true 52014,19244956-3bc5-472f-a0c9-5ccb2db2bc53,AUTHORIZATION,,true 52015,19244956-3bc5-472f-a0c9-5ccb2db2bc53,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52016,19244956-3bc5-472f-a0c9-5ccb2db2bc53,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52017,19244956-3bc5-472f-a0c9-5ccb2db2bc53,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52018,bcb1b4a9-292c-443b-9210-a9299a7c3c95,LIST_ACCOUNTS,hbciListAccounts,false -52019,bcb1b4a9-292c-443b-9210-a9299a7c3c95,LIST_TRANSACTIONS,hbciListTransactions,false -52020,bcb1b4a9-292c-443b-9210-a9299a7c3c95,AUTHORIZATION,,false -52021,bcb1b4a9-292c-443b-9210-a9299a7c3c95,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52022,bcb1b4a9-292c-443b-9210-a9299a7c3c95,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52023,bcb1b4a9-292c-443b-9210-a9299a7c3c95,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52018,9b06d340-48c3-4b6b-b3d0-59de23e61328,LIST_ACCOUNTS,hbciListAccounts,false +52019,9b06d340-48c3-4b6b-b3d0-59de23e61328,LIST_TRANSACTIONS,hbciListTransactions,false +52020,9b06d340-48c3-4b6b-b3d0-59de23e61328,AUTHORIZATION,,false +52021,9b06d340-48c3-4b6b-b3d0-59de23e61328,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52022,9b06d340-48c3-4b6b-b3d0-59de23e61328,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52023,9b06d340-48c3-4b6b-b3d0-59de23e61328,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52024,ab01ae0b-6dba-4567-8e55-96f9481ff049,LIST_ACCOUNTS,xs2aListAccounts,true -52025,ab01ae0b-6dba-4567-8e55-96f9481ff049,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52025,ab01ae0b-6dba-4567-8e55-96f9481ff049,LIST_TRANSACTIONS,xs2aListTransactions,true 52026,ab01ae0b-6dba-4567-8e55-96f9481ff049,AUTHORIZATION,,true 52027,ab01ae0b-6dba-4567-8e55-96f9481ff049,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52028,ab01ae0b-6dba-4567-8e55-96f9481ff049,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52029,ab01ae0b-6dba-4567-8e55-96f9481ff049,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52030,0bab3847-1cf9-41d5-955e-d3be5d6f4061,LIST_ACCOUNTS,hbciListAccounts,false -52031,0bab3847-1cf9-41d5-955e-d3be5d6f4061,LIST_TRANSACTIONS,hbciListTransactions,false -52032,0bab3847-1cf9-41d5-955e-d3be5d6f4061,AUTHORIZATION,,false -52033,0bab3847-1cf9-41d5-955e-d3be5d6f4061,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52034,0bab3847-1cf9-41d5-955e-d3be5d6f4061,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52035,0bab3847-1cf9-41d5-955e-d3be5d6f4061,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52030,aa7db233-10b7-404a-b66a-b2e4b1ac9de8,LIST_ACCOUNTS,hbciListAccounts,false +52031,aa7db233-10b7-404a-b66a-b2e4b1ac9de8,LIST_TRANSACTIONS,hbciListTransactions,false +52032,aa7db233-10b7-404a-b66a-b2e4b1ac9de8,AUTHORIZATION,,false +52033,aa7db233-10b7-404a-b66a-b2e4b1ac9de8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52034,aa7db233-10b7-404a-b66a-b2e4b1ac9de8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52035,aa7db233-10b7-404a-b66a-b2e4b1ac9de8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52036,b72a8cbf-02dc-4467-aaff-6e0a01383e95,LIST_ACCOUNTS,xs2aListAccounts,true -52037,b72a8cbf-02dc-4467-aaff-6e0a01383e95,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52037,b72a8cbf-02dc-4467-aaff-6e0a01383e95,LIST_TRANSACTIONS,xs2aListTransactions,true 52038,b72a8cbf-02dc-4467-aaff-6e0a01383e95,AUTHORIZATION,,true 52039,b72a8cbf-02dc-4467-aaff-6e0a01383e95,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52040,b72a8cbf-02dc-4467-aaff-6e0a01383e95,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52041,b72a8cbf-02dc-4467-aaff-6e0a01383e95,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52042,146d86a7-2c44-4c04-baa3-38b209ec144e,LIST_ACCOUNTS,hbciListAccounts,false -52043,146d86a7-2c44-4c04-baa3-38b209ec144e,LIST_TRANSACTIONS,hbciListTransactions,false -52044,146d86a7-2c44-4c04-baa3-38b209ec144e,AUTHORIZATION,,false -52045,146d86a7-2c44-4c04-baa3-38b209ec144e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52046,146d86a7-2c44-4c04-baa3-38b209ec144e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52047,146d86a7-2c44-4c04-baa3-38b209ec144e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52042,9f84d7a2-3ade-48c2-aa57-f710209c23ab,LIST_ACCOUNTS,hbciListAccounts,false +52043,9f84d7a2-3ade-48c2-aa57-f710209c23ab,LIST_TRANSACTIONS,hbciListTransactions,false +52044,9f84d7a2-3ade-48c2-aa57-f710209c23ab,AUTHORIZATION,,false +52045,9f84d7a2-3ade-48c2-aa57-f710209c23ab,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52046,9f84d7a2-3ade-48c2-aa57-f710209c23ab,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52047,9f84d7a2-3ade-48c2-aa57-f710209c23ab,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52048,c600a973-2cd1-4958-9a53-5c4afd53adf2,LIST_ACCOUNTS,xs2aListAccounts,true -52049,c600a973-2cd1-4958-9a53-5c4afd53adf2,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52049,c600a973-2cd1-4958-9a53-5c4afd53adf2,LIST_TRANSACTIONS,xs2aListTransactions,true 52050,c600a973-2cd1-4958-9a53-5c4afd53adf2,AUTHORIZATION,,true 52051,c600a973-2cd1-4958-9a53-5c4afd53adf2,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52052,c600a973-2cd1-4958-9a53-5c4afd53adf2,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52053,c600a973-2cd1-4958-9a53-5c4afd53adf2,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52054,a0411e94-095b-4b75-862b-6c86aa25f98b,LIST_ACCOUNTS,hbciListAccounts,false -52055,a0411e94-095b-4b75-862b-6c86aa25f98b,LIST_TRANSACTIONS,hbciListTransactions,false -52056,a0411e94-095b-4b75-862b-6c86aa25f98b,AUTHORIZATION,,false -52057,a0411e94-095b-4b75-862b-6c86aa25f98b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52058,a0411e94-095b-4b75-862b-6c86aa25f98b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52059,a0411e94-095b-4b75-862b-6c86aa25f98b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52054,90e35f2b-9765-416b-b997-4dd5b5b3a71c,LIST_ACCOUNTS,hbciListAccounts,false +52055,90e35f2b-9765-416b-b997-4dd5b5b3a71c,LIST_TRANSACTIONS,hbciListTransactions,false +52056,90e35f2b-9765-416b-b997-4dd5b5b3a71c,AUTHORIZATION,,false +52057,90e35f2b-9765-416b-b997-4dd5b5b3a71c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52058,90e35f2b-9765-416b-b997-4dd5b5b3a71c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52059,90e35f2b-9765-416b-b997-4dd5b5b3a71c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52060,1a1b2f06-e1bf-4e29-9909-fac50bec47bf,LIST_ACCOUNTS,xs2aListAccounts,true -52061,1a1b2f06-e1bf-4e29-9909-fac50bec47bf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52061,1a1b2f06-e1bf-4e29-9909-fac50bec47bf,LIST_TRANSACTIONS,xs2aListTransactions,true 52062,1a1b2f06-e1bf-4e29-9909-fac50bec47bf,AUTHORIZATION,,true 52063,1a1b2f06-e1bf-4e29-9909-fac50bec47bf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52064,1a1b2f06-e1bf-4e29-9909-fac50bec47bf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52065,1a1b2f06-e1bf-4e29-9909-fac50bec47bf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52066,4fd708a8-dde4-4662-a9bc-569928feed31,LIST_ACCOUNTS,hbciListAccounts,false -52067,4fd708a8-dde4-4662-a9bc-569928feed31,LIST_TRANSACTIONS,hbciListTransactions,false -52068,4fd708a8-dde4-4662-a9bc-569928feed31,AUTHORIZATION,,false -52069,4fd708a8-dde4-4662-a9bc-569928feed31,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52070,4fd708a8-dde4-4662-a9bc-569928feed31,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52071,4fd708a8-dde4-4662-a9bc-569928feed31,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52066,1fa5df6e-5024-4756-b500-82b276fb3a38,LIST_ACCOUNTS,hbciListAccounts,false +52067,1fa5df6e-5024-4756-b500-82b276fb3a38,LIST_TRANSACTIONS,hbciListTransactions,false +52068,1fa5df6e-5024-4756-b500-82b276fb3a38,AUTHORIZATION,,false +52069,1fa5df6e-5024-4756-b500-82b276fb3a38,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52070,1fa5df6e-5024-4756-b500-82b276fb3a38,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52071,1fa5df6e-5024-4756-b500-82b276fb3a38,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52072,8d64bd4b-8969-4df0-b25e-20b568f2476d,LIST_ACCOUNTS,xs2aListAccounts,true -52073,8d64bd4b-8969-4df0-b25e-20b568f2476d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52073,8d64bd4b-8969-4df0-b25e-20b568f2476d,LIST_TRANSACTIONS,xs2aListTransactions,true 52074,8d64bd4b-8969-4df0-b25e-20b568f2476d,AUTHORIZATION,,true 52075,8d64bd4b-8969-4df0-b25e-20b568f2476d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52076,8d64bd4b-8969-4df0-b25e-20b568f2476d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52077,8d64bd4b-8969-4df0-b25e-20b568f2476d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52078,3a42d6eb-858b-4082-96f9-846775974987,LIST_ACCOUNTS,hbciListAccounts,false -52079,3a42d6eb-858b-4082-96f9-846775974987,LIST_TRANSACTIONS,hbciListTransactions,false -52080,3a42d6eb-858b-4082-96f9-846775974987,AUTHORIZATION,,false -52081,3a42d6eb-858b-4082-96f9-846775974987,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52082,3a42d6eb-858b-4082-96f9-846775974987,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52083,3a42d6eb-858b-4082-96f9-846775974987,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52078,d88d2d3f-d0ef-431f-8476-d086b6495bd1,LIST_ACCOUNTS,hbciListAccounts,false +52079,d88d2d3f-d0ef-431f-8476-d086b6495bd1,LIST_TRANSACTIONS,hbciListTransactions,false +52080,d88d2d3f-d0ef-431f-8476-d086b6495bd1,AUTHORIZATION,,false +52081,d88d2d3f-d0ef-431f-8476-d086b6495bd1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52082,d88d2d3f-d0ef-431f-8476-d086b6495bd1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52083,d88d2d3f-d0ef-431f-8476-d086b6495bd1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52084,5af2388c-ba1e-423a-a314-ba2ed456319e,LIST_ACCOUNTS,xs2aListAccounts,true -52085,5af2388c-ba1e-423a-a314-ba2ed456319e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52085,5af2388c-ba1e-423a-a314-ba2ed456319e,LIST_TRANSACTIONS,xs2aListTransactions,true 52086,5af2388c-ba1e-423a-a314-ba2ed456319e,AUTHORIZATION,,true 52087,5af2388c-ba1e-423a-a314-ba2ed456319e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52088,5af2388c-ba1e-423a-a314-ba2ed456319e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52089,5af2388c-ba1e-423a-a314-ba2ed456319e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52090,bb1051f2-9cbf-4557-9f60-ecf356e98ac5,LIST_ACCOUNTS,hbciListAccounts,false -52091,bb1051f2-9cbf-4557-9f60-ecf356e98ac5,LIST_TRANSACTIONS,hbciListTransactions,false -52092,bb1051f2-9cbf-4557-9f60-ecf356e98ac5,AUTHORIZATION,,false -52093,bb1051f2-9cbf-4557-9f60-ecf356e98ac5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52094,bb1051f2-9cbf-4557-9f60-ecf356e98ac5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52095,bb1051f2-9cbf-4557-9f60-ecf356e98ac5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52090,1be49f8f-9c00-47e4-9d77-ed5087650286,LIST_ACCOUNTS,hbciListAccounts,false +52091,1be49f8f-9c00-47e4-9d77-ed5087650286,LIST_TRANSACTIONS,hbciListTransactions,false +52092,1be49f8f-9c00-47e4-9d77-ed5087650286,AUTHORIZATION,,false +52093,1be49f8f-9c00-47e4-9d77-ed5087650286,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52094,1be49f8f-9c00-47e4-9d77-ed5087650286,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52095,1be49f8f-9c00-47e4-9d77-ed5087650286,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52096,b9ad0983-28fd-4151-8f3e-13788af90ed4,LIST_ACCOUNTS,xs2aListAccounts,true -52097,b9ad0983-28fd-4151-8f3e-13788af90ed4,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52097,b9ad0983-28fd-4151-8f3e-13788af90ed4,LIST_TRANSACTIONS,xs2aListTransactions,true 52098,b9ad0983-28fd-4151-8f3e-13788af90ed4,AUTHORIZATION,,true 52099,b9ad0983-28fd-4151-8f3e-13788af90ed4,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52100,b9ad0983-28fd-4151-8f3e-13788af90ed4,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52101,b9ad0983-28fd-4151-8f3e-13788af90ed4,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52102,51d77733-b82e-46f8-8605-aab3db2df723,LIST_ACCOUNTS,hbciListAccounts,false -52103,51d77733-b82e-46f8-8605-aab3db2df723,LIST_TRANSACTIONS,hbciListTransactions,false -52104,51d77733-b82e-46f8-8605-aab3db2df723,AUTHORIZATION,,false -52105,51d77733-b82e-46f8-8605-aab3db2df723,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52106,51d77733-b82e-46f8-8605-aab3db2df723,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52107,51d77733-b82e-46f8-8605-aab3db2df723,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52102,ceb7a1f9-2e6e-459a-b108-8ef56d53c3b6,LIST_ACCOUNTS,hbciListAccounts,false +52103,ceb7a1f9-2e6e-459a-b108-8ef56d53c3b6,LIST_TRANSACTIONS,hbciListTransactions,false +52104,ceb7a1f9-2e6e-459a-b108-8ef56d53c3b6,AUTHORIZATION,,false +52105,ceb7a1f9-2e6e-459a-b108-8ef56d53c3b6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52106,ceb7a1f9-2e6e-459a-b108-8ef56d53c3b6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52107,ceb7a1f9-2e6e-459a-b108-8ef56d53c3b6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52108,2b2a12f7-cd1a-49c6-a591-704cddeb7f08,LIST_ACCOUNTS,xs2aListAccounts,true -52109,2b2a12f7-cd1a-49c6-a591-704cddeb7f08,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52109,2b2a12f7-cd1a-49c6-a591-704cddeb7f08,LIST_TRANSACTIONS,xs2aListTransactions,true 52110,2b2a12f7-cd1a-49c6-a591-704cddeb7f08,AUTHORIZATION,,true 52111,2b2a12f7-cd1a-49c6-a591-704cddeb7f08,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52112,2b2a12f7-cd1a-49c6-a591-704cddeb7f08,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52113,2b2a12f7-cd1a-49c6-a591-704cddeb7f08,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52114,5d50b639-0d46-47a5-861a-2fe9d088eeaf,LIST_ACCOUNTS,hbciListAccounts,false -52115,5d50b639-0d46-47a5-861a-2fe9d088eeaf,LIST_TRANSACTIONS,hbciListTransactions,false -52116,5d50b639-0d46-47a5-861a-2fe9d088eeaf,AUTHORIZATION,,false -52117,5d50b639-0d46-47a5-861a-2fe9d088eeaf,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52118,5d50b639-0d46-47a5-861a-2fe9d088eeaf,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52119,5d50b639-0d46-47a5-861a-2fe9d088eeaf,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52114,a60e52db-0471-4121-9df1-66ea35221f50,LIST_ACCOUNTS,hbciListAccounts,false +52115,a60e52db-0471-4121-9df1-66ea35221f50,LIST_TRANSACTIONS,hbciListTransactions,false +52116,a60e52db-0471-4121-9df1-66ea35221f50,AUTHORIZATION,,false +52117,a60e52db-0471-4121-9df1-66ea35221f50,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52118,a60e52db-0471-4121-9df1-66ea35221f50,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52119,a60e52db-0471-4121-9df1-66ea35221f50,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52120,ed7fc17a-6132-4709-bceb-1bbbe52133c8,LIST_ACCOUNTS,xs2aListAccounts,true -52121,ed7fc17a-6132-4709-bceb-1bbbe52133c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52121,ed7fc17a-6132-4709-bceb-1bbbe52133c8,LIST_TRANSACTIONS,xs2aListTransactions,true 52122,ed7fc17a-6132-4709-bceb-1bbbe52133c8,AUTHORIZATION,,true 52123,ed7fc17a-6132-4709-bceb-1bbbe52133c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52124,ed7fc17a-6132-4709-bceb-1bbbe52133c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52125,ed7fc17a-6132-4709-bceb-1bbbe52133c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52126,42e1ae1d-aa10-4243-b98e-8b8e8face554,LIST_ACCOUNTS,hbciListAccounts,false -52127,42e1ae1d-aa10-4243-b98e-8b8e8face554,LIST_TRANSACTIONS,hbciListTransactions,false -52128,42e1ae1d-aa10-4243-b98e-8b8e8face554,AUTHORIZATION,,false -52129,42e1ae1d-aa10-4243-b98e-8b8e8face554,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52130,42e1ae1d-aa10-4243-b98e-8b8e8face554,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52131,42e1ae1d-aa10-4243-b98e-8b8e8face554,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52126,b56ce6b7-9cfc-418e-b091-6c4d81cf18eb,LIST_ACCOUNTS,hbciListAccounts,false +52127,b56ce6b7-9cfc-418e-b091-6c4d81cf18eb,LIST_TRANSACTIONS,hbciListTransactions,false +52128,b56ce6b7-9cfc-418e-b091-6c4d81cf18eb,AUTHORIZATION,,false +52129,b56ce6b7-9cfc-418e-b091-6c4d81cf18eb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52130,b56ce6b7-9cfc-418e-b091-6c4d81cf18eb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52131,b56ce6b7-9cfc-418e-b091-6c4d81cf18eb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52132,de80e71d-dd20-479f-b93e-26519dd1cd33,LIST_ACCOUNTS,xs2aListAccounts,true -52133,de80e71d-dd20-479f-b93e-26519dd1cd33,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52133,de80e71d-dd20-479f-b93e-26519dd1cd33,LIST_TRANSACTIONS,xs2aListTransactions,true 52134,de80e71d-dd20-479f-b93e-26519dd1cd33,AUTHORIZATION,,true 52135,de80e71d-dd20-479f-b93e-26519dd1cd33,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52136,de80e71d-dd20-479f-b93e-26519dd1cd33,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52137,de80e71d-dd20-479f-b93e-26519dd1cd33,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52138,b989d846-0c23-4850-be9a-6297fad1b663,LIST_ACCOUNTS,hbciListAccounts,false -52139,b989d846-0c23-4850-be9a-6297fad1b663,LIST_TRANSACTIONS,hbciListTransactions,false -52140,b989d846-0c23-4850-be9a-6297fad1b663,AUTHORIZATION,,false -52141,b989d846-0c23-4850-be9a-6297fad1b663,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52142,b989d846-0c23-4850-be9a-6297fad1b663,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52143,b989d846-0c23-4850-be9a-6297fad1b663,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52138,46e97c5e-c1c5-4a71-98db-b6d30ce10937,LIST_ACCOUNTS,hbciListAccounts,false +52139,46e97c5e-c1c5-4a71-98db-b6d30ce10937,LIST_TRANSACTIONS,hbciListTransactions,false +52140,46e97c5e-c1c5-4a71-98db-b6d30ce10937,AUTHORIZATION,,false +52141,46e97c5e-c1c5-4a71-98db-b6d30ce10937,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52142,46e97c5e-c1c5-4a71-98db-b6d30ce10937,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52143,46e97c5e-c1c5-4a71-98db-b6d30ce10937,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52144,0b876747-a443-40f3-b7a1-4eda85b04a0d,LIST_ACCOUNTS,xs2aListAccounts,true -52145,0b876747-a443-40f3-b7a1-4eda85b04a0d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52145,0b876747-a443-40f3-b7a1-4eda85b04a0d,LIST_TRANSACTIONS,xs2aListTransactions,true 52146,0b876747-a443-40f3-b7a1-4eda85b04a0d,AUTHORIZATION,,true 52147,0b876747-a443-40f3-b7a1-4eda85b04a0d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52148,0b876747-a443-40f3-b7a1-4eda85b04a0d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52149,0b876747-a443-40f3-b7a1-4eda85b04a0d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52150,2e641633-1308-4f6c-9207-7b2057fc64ec,LIST_ACCOUNTS,hbciListAccounts,false -52151,2e641633-1308-4f6c-9207-7b2057fc64ec,LIST_TRANSACTIONS,hbciListTransactions,false -52152,2e641633-1308-4f6c-9207-7b2057fc64ec,AUTHORIZATION,,false -52153,2e641633-1308-4f6c-9207-7b2057fc64ec,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52154,2e641633-1308-4f6c-9207-7b2057fc64ec,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52155,2e641633-1308-4f6c-9207-7b2057fc64ec,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52150,cc02f5ee-2a72-47d1-9fe1-3b9f0f8362db,LIST_ACCOUNTS,hbciListAccounts,false +52151,cc02f5ee-2a72-47d1-9fe1-3b9f0f8362db,LIST_TRANSACTIONS,hbciListTransactions,false +52152,cc02f5ee-2a72-47d1-9fe1-3b9f0f8362db,AUTHORIZATION,,false +52153,cc02f5ee-2a72-47d1-9fe1-3b9f0f8362db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52154,cc02f5ee-2a72-47d1-9fe1-3b9f0f8362db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52155,cc02f5ee-2a72-47d1-9fe1-3b9f0f8362db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52156,a16ca3e6-375e-4d4b-bbb9-f754451ec2cf,LIST_ACCOUNTS,xs2aListAccounts,true -52157,a16ca3e6-375e-4d4b-bbb9-f754451ec2cf,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52157,a16ca3e6-375e-4d4b-bbb9-f754451ec2cf,LIST_TRANSACTIONS,xs2aListTransactions,true 52158,a16ca3e6-375e-4d4b-bbb9-f754451ec2cf,AUTHORIZATION,,true 52159,a16ca3e6-375e-4d4b-bbb9-f754451ec2cf,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52160,a16ca3e6-375e-4d4b-bbb9-f754451ec2cf,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52161,a16ca3e6-375e-4d4b-bbb9-f754451ec2cf,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52162,bda028d2-1f24-4549-8507-c99bcbf0e38a,LIST_ACCOUNTS,hbciListAccounts,false -52163,bda028d2-1f24-4549-8507-c99bcbf0e38a,LIST_TRANSACTIONS,hbciListTransactions,false -52164,bda028d2-1f24-4549-8507-c99bcbf0e38a,AUTHORIZATION,,false -52165,bda028d2-1f24-4549-8507-c99bcbf0e38a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52166,bda028d2-1f24-4549-8507-c99bcbf0e38a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52167,bda028d2-1f24-4549-8507-c99bcbf0e38a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52162,b6b14386-88f7-4593-a370-7f83d5db0be3,LIST_ACCOUNTS,hbciListAccounts,false +52163,b6b14386-88f7-4593-a370-7f83d5db0be3,LIST_TRANSACTIONS,hbciListTransactions,false +52164,b6b14386-88f7-4593-a370-7f83d5db0be3,AUTHORIZATION,,false +52165,b6b14386-88f7-4593-a370-7f83d5db0be3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52166,b6b14386-88f7-4593-a370-7f83d5db0be3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52167,b6b14386-88f7-4593-a370-7f83d5db0be3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52168,b047e19f-c1b5-487a-9fcb-c1b18cc1212c,LIST_ACCOUNTS,xs2aListAccounts,true -52169,b047e19f-c1b5-487a-9fcb-c1b18cc1212c,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52169,b047e19f-c1b5-487a-9fcb-c1b18cc1212c,LIST_TRANSACTIONS,xs2aListTransactions,true 52170,b047e19f-c1b5-487a-9fcb-c1b18cc1212c,AUTHORIZATION,,true 52171,b047e19f-c1b5-487a-9fcb-c1b18cc1212c,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52172,b047e19f-c1b5-487a-9fcb-c1b18cc1212c,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52173,b047e19f-c1b5-487a-9fcb-c1b18cc1212c,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52174,bd483428-56c5-4acb-ae32-117e2357879c,LIST_ACCOUNTS,hbciListAccounts,false -52175,bd483428-56c5-4acb-ae32-117e2357879c,LIST_TRANSACTIONS,hbciListTransactions,false -52176,bd483428-56c5-4acb-ae32-117e2357879c,AUTHORIZATION,,false -52177,bd483428-56c5-4acb-ae32-117e2357879c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52178,bd483428-56c5-4acb-ae32-117e2357879c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52179,bd483428-56c5-4acb-ae32-117e2357879c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52174,b1b42adc-04f3-4c78-9e10-485769b53828,LIST_ACCOUNTS,hbciListAccounts,false +52175,b1b42adc-04f3-4c78-9e10-485769b53828,LIST_TRANSACTIONS,hbciListTransactions,false +52176,b1b42adc-04f3-4c78-9e10-485769b53828,AUTHORIZATION,,false +52177,b1b42adc-04f3-4c78-9e10-485769b53828,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52178,b1b42adc-04f3-4c78-9e10-485769b53828,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52179,b1b42adc-04f3-4c78-9e10-485769b53828,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52180,ba43c44c-3c8d-47cc-b7fd-dac9790a5549,LIST_ACCOUNTS,xs2aListAccounts,true -52181,ba43c44c-3c8d-47cc-b7fd-dac9790a5549,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52181,ba43c44c-3c8d-47cc-b7fd-dac9790a5549,LIST_TRANSACTIONS,xs2aListTransactions,true 52182,ba43c44c-3c8d-47cc-b7fd-dac9790a5549,AUTHORIZATION,,true 52183,ba43c44c-3c8d-47cc-b7fd-dac9790a5549,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52184,ba43c44c-3c8d-47cc-b7fd-dac9790a5549,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52185,ba43c44c-3c8d-47cc-b7fd-dac9790a5549,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52186,6f3314be-e977-421c-a02c-1d2f928048c2,LIST_ACCOUNTS,hbciListAccounts,false -52187,6f3314be-e977-421c-a02c-1d2f928048c2,LIST_TRANSACTIONS,hbciListTransactions,false -52188,6f3314be-e977-421c-a02c-1d2f928048c2,AUTHORIZATION,,false -52189,6f3314be-e977-421c-a02c-1d2f928048c2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52190,6f3314be-e977-421c-a02c-1d2f928048c2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52191,6f3314be-e977-421c-a02c-1d2f928048c2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52186,8e7f2040-10b1-42c6-9786-eedce8d621f5,LIST_ACCOUNTS,hbciListAccounts,false +52187,8e7f2040-10b1-42c6-9786-eedce8d621f5,LIST_TRANSACTIONS,hbciListTransactions,false +52188,8e7f2040-10b1-42c6-9786-eedce8d621f5,AUTHORIZATION,,false +52189,8e7f2040-10b1-42c6-9786-eedce8d621f5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52190,8e7f2040-10b1-42c6-9786-eedce8d621f5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52191,8e7f2040-10b1-42c6-9786-eedce8d621f5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52192,de417cb4-b7eb-456a-812f-54fcf6fb5d86,LIST_ACCOUNTS,xs2aListAccounts,true -52193,de417cb4-b7eb-456a-812f-54fcf6fb5d86,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52193,de417cb4-b7eb-456a-812f-54fcf6fb5d86,LIST_TRANSACTIONS,xs2aListTransactions,true 52194,de417cb4-b7eb-456a-812f-54fcf6fb5d86,AUTHORIZATION,,true 52195,de417cb4-b7eb-456a-812f-54fcf6fb5d86,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52196,de417cb4-b7eb-456a-812f-54fcf6fb5d86,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52197,de417cb4-b7eb-456a-812f-54fcf6fb5d86,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52198,41f9a427-978c-4175-a88b-46654774fb14,LIST_ACCOUNTS,hbciListAccounts,false -52199,41f9a427-978c-4175-a88b-46654774fb14,LIST_TRANSACTIONS,hbciListTransactions,false -52200,41f9a427-978c-4175-a88b-46654774fb14,AUTHORIZATION,,false -52201,41f9a427-978c-4175-a88b-46654774fb14,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52202,41f9a427-978c-4175-a88b-46654774fb14,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52203,41f9a427-978c-4175-a88b-46654774fb14,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52198,401e218d-451f-417f-824f-9254133378a3,LIST_ACCOUNTS,hbciListAccounts,false +52199,401e218d-451f-417f-824f-9254133378a3,LIST_TRANSACTIONS,hbciListTransactions,false +52200,401e218d-451f-417f-824f-9254133378a3,AUTHORIZATION,,false +52201,401e218d-451f-417f-824f-9254133378a3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52202,401e218d-451f-417f-824f-9254133378a3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52203,401e218d-451f-417f-824f-9254133378a3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52204,8e01dde1-ef21-456e-9086-320ea8a49fcd,LIST_ACCOUNTS,xs2aListAccounts,true -52205,8e01dde1-ef21-456e-9086-320ea8a49fcd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52205,8e01dde1-ef21-456e-9086-320ea8a49fcd,LIST_TRANSACTIONS,xs2aListTransactions,true 52206,8e01dde1-ef21-456e-9086-320ea8a49fcd,AUTHORIZATION,,true 52207,8e01dde1-ef21-456e-9086-320ea8a49fcd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52208,8e01dde1-ef21-456e-9086-320ea8a49fcd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52209,8e01dde1-ef21-456e-9086-320ea8a49fcd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52210,d2552fb3-9b2e-4e22-993e-ee53980c770f,LIST_ACCOUNTS,hbciListAccounts,false -52211,d2552fb3-9b2e-4e22-993e-ee53980c770f,LIST_TRANSACTIONS,hbciListTransactions,false -52212,d2552fb3-9b2e-4e22-993e-ee53980c770f,AUTHORIZATION,,false -52213,d2552fb3-9b2e-4e22-993e-ee53980c770f,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52214,d2552fb3-9b2e-4e22-993e-ee53980c770f,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52215,d2552fb3-9b2e-4e22-993e-ee53980c770f,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52210,d9f903a2-d2a1-48ef-9ef3-2bb1cdbefc85,LIST_ACCOUNTS,hbciListAccounts,false +52211,d9f903a2-d2a1-48ef-9ef3-2bb1cdbefc85,LIST_TRANSACTIONS,hbciListTransactions,false +52212,d9f903a2-d2a1-48ef-9ef3-2bb1cdbefc85,AUTHORIZATION,,false +52213,d9f903a2-d2a1-48ef-9ef3-2bb1cdbefc85,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52214,d9f903a2-d2a1-48ef-9ef3-2bb1cdbefc85,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52215,d9f903a2-d2a1-48ef-9ef3-2bb1cdbefc85,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52216,de8ccdc0-5423-4472-83b4-bb78e4318603,LIST_ACCOUNTS,xs2aListAccounts,true -52217,de8ccdc0-5423-4472-83b4-bb78e4318603,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52217,de8ccdc0-5423-4472-83b4-bb78e4318603,LIST_TRANSACTIONS,xs2aListTransactions,true 52218,de8ccdc0-5423-4472-83b4-bb78e4318603,AUTHORIZATION,,true 52219,de8ccdc0-5423-4472-83b4-bb78e4318603,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52220,de8ccdc0-5423-4472-83b4-bb78e4318603,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52221,de8ccdc0-5423-4472-83b4-bb78e4318603,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52222,571214a6-0d36-4bcd-8be7-c3534b0d271b,LIST_ACCOUNTS,hbciListAccounts,false -52223,571214a6-0d36-4bcd-8be7-c3534b0d271b,LIST_TRANSACTIONS,hbciListTransactions,false -52224,571214a6-0d36-4bcd-8be7-c3534b0d271b,AUTHORIZATION,,false -52225,571214a6-0d36-4bcd-8be7-c3534b0d271b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52226,571214a6-0d36-4bcd-8be7-c3534b0d271b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52227,571214a6-0d36-4bcd-8be7-c3534b0d271b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52222,09510d0c-2438-44ed-acd0-f274deb2ee52,LIST_ACCOUNTS,hbciListAccounts,false +52223,09510d0c-2438-44ed-acd0-f274deb2ee52,LIST_TRANSACTIONS,hbciListTransactions,false +52224,09510d0c-2438-44ed-acd0-f274deb2ee52,AUTHORIZATION,,false +52225,09510d0c-2438-44ed-acd0-f274deb2ee52,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52226,09510d0c-2438-44ed-acd0-f274deb2ee52,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52227,09510d0c-2438-44ed-acd0-f274deb2ee52,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52228,6f9a6391-eb57-41b0-961c-486ad44f0601,LIST_ACCOUNTS,xs2aListAccounts,true -52229,6f9a6391-eb57-41b0-961c-486ad44f0601,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52229,6f9a6391-eb57-41b0-961c-486ad44f0601,LIST_TRANSACTIONS,xs2aListTransactions,true 52230,6f9a6391-eb57-41b0-961c-486ad44f0601,AUTHORIZATION,,true 52231,6f9a6391-eb57-41b0-961c-486ad44f0601,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52232,6f9a6391-eb57-41b0-961c-486ad44f0601,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52233,6f9a6391-eb57-41b0-961c-486ad44f0601,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52234,f83a32cc-a236-40b3-9b61-b9b489f45968,LIST_ACCOUNTS,hbciListAccounts,false -52235,f83a32cc-a236-40b3-9b61-b9b489f45968,LIST_TRANSACTIONS,hbciListTransactions,false -52236,f83a32cc-a236-40b3-9b61-b9b489f45968,AUTHORIZATION,,false -52237,f83a32cc-a236-40b3-9b61-b9b489f45968,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52238,f83a32cc-a236-40b3-9b61-b9b489f45968,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52239,f83a32cc-a236-40b3-9b61-b9b489f45968,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52234,97062083-99d2-45c8-b124-dda6363240ff,LIST_ACCOUNTS,hbciListAccounts,false +52235,97062083-99d2-45c8-b124-dda6363240ff,LIST_TRANSACTIONS,hbciListTransactions,false +52236,97062083-99d2-45c8-b124-dda6363240ff,AUTHORIZATION,,false +52237,97062083-99d2-45c8-b124-dda6363240ff,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52238,97062083-99d2-45c8-b124-dda6363240ff,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52239,97062083-99d2-45c8-b124-dda6363240ff,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52240,944e2590-65eb-4725-abc5-3026b1b40859,LIST_ACCOUNTS,xs2aListAccounts,true -52241,944e2590-65eb-4725-abc5-3026b1b40859,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52241,944e2590-65eb-4725-abc5-3026b1b40859,LIST_TRANSACTIONS,xs2aListTransactions,true 52242,944e2590-65eb-4725-abc5-3026b1b40859,AUTHORIZATION,,true 52243,944e2590-65eb-4725-abc5-3026b1b40859,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52244,944e2590-65eb-4725-abc5-3026b1b40859,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52245,944e2590-65eb-4725-abc5-3026b1b40859,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52246,f1131c03-44ca-43b1-a73e-74229b24b11b,LIST_ACCOUNTS,hbciListAccounts,false -52247,f1131c03-44ca-43b1-a73e-74229b24b11b,LIST_TRANSACTIONS,hbciListTransactions,false -52248,f1131c03-44ca-43b1-a73e-74229b24b11b,AUTHORIZATION,,false -52249,f1131c03-44ca-43b1-a73e-74229b24b11b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52250,f1131c03-44ca-43b1-a73e-74229b24b11b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52251,f1131c03-44ca-43b1-a73e-74229b24b11b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52246,6b15f4c2-b94c-4b6f-a7b3-f736d0093da5,LIST_ACCOUNTS,hbciListAccounts,false +52247,6b15f4c2-b94c-4b6f-a7b3-f736d0093da5,LIST_TRANSACTIONS,hbciListTransactions,false +52248,6b15f4c2-b94c-4b6f-a7b3-f736d0093da5,AUTHORIZATION,,false +52249,6b15f4c2-b94c-4b6f-a7b3-f736d0093da5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52250,6b15f4c2-b94c-4b6f-a7b3-f736d0093da5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52251,6b15f4c2-b94c-4b6f-a7b3-f736d0093da5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52252,8a171b29-d50a-40dc-9e76-7b3e74d9a27a,LIST_ACCOUNTS,xs2aListAccounts,true -52253,8a171b29-d50a-40dc-9e76-7b3e74d9a27a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52253,8a171b29-d50a-40dc-9e76-7b3e74d9a27a,LIST_TRANSACTIONS,xs2aListTransactions,true 52254,8a171b29-d50a-40dc-9e76-7b3e74d9a27a,AUTHORIZATION,,true 52255,8a171b29-d50a-40dc-9e76-7b3e74d9a27a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52256,8a171b29-d50a-40dc-9e76-7b3e74d9a27a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52257,8a171b29-d50a-40dc-9e76-7b3e74d9a27a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52258,4f5b882c-bc87-451d-8dcf-f35620d120b8,LIST_ACCOUNTS,hbciListAccounts,false -52259,4f5b882c-bc87-451d-8dcf-f35620d120b8,LIST_TRANSACTIONS,hbciListTransactions,false -52260,4f5b882c-bc87-451d-8dcf-f35620d120b8,AUTHORIZATION,,false -52261,4f5b882c-bc87-451d-8dcf-f35620d120b8,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52262,4f5b882c-bc87-451d-8dcf-f35620d120b8,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52263,4f5b882c-bc87-451d-8dcf-f35620d120b8,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52258,c9ba708a-b202-44a7-b6fa-860d6354d552,LIST_ACCOUNTS,hbciListAccounts,false +52259,c9ba708a-b202-44a7-b6fa-860d6354d552,LIST_TRANSACTIONS,hbciListTransactions,false +52260,c9ba708a-b202-44a7-b6fa-860d6354d552,AUTHORIZATION,,false +52261,c9ba708a-b202-44a7-b6fa-860d6354d552,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52262,c9ba708a-b202-44a7-b6fa-860d6354d552,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52263,c9ba708a-b202-44a7-b6fa-860d6354d552,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52264,a88b6213-5466-4d66-85bc-6fa71f6fd911,LIST_ACCOUNTS,xs2aListAccounts,true -52265,a88b6213-5466-4d66-85bc-6fa71f6fd911,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52265,a88b6213-5466-4d66-85bc-6fa71f6fd911,LIST_TRANSACTIONS,xs2aListTransactions,true 52266,a88b6213-5466-4d66-85bc-6fa71f6fd911,AUTHORIZATION,,true 52267,a88b6213-5466-4d66-85bc-6fa71f6fd911,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52268,a88b6213-5466-4d66-85bc-6fa71f6fd911,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52269,a88b6213-5466-4d66-85bc-6fa71f6fd911,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52270,8ecec273-c02e-45d8-92a4-9d659aed1d83,LIST_ACCOUNTS,hbciListAccounts,false -52271,8ecec273-c02e-45d8-92a4-9d659aed1d83,LIST_TRANSACTIONS,hbciListTransactions,false -52272,8ecec273-c02e-45d8-92a4-9d659aed1d83,AUTHORIZATION,,false -52273,8ecec273-c02e-45d8-92a4-9d659aed1d83,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52274,8ecec273-c02e-45d8-92a4-9d659aed1d83,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52275,8ecec273-c02e-45d8-92a4-9d659aed1d83,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52270,b3b505de-6de2-480d-b152-0bf8ccdf9408,LIST_ACCOUNTS,hbciListAccounts,false +52271,b3b505de-6de2-480d-b152-0bf8ccdf9408,LIST_TRANSACTIONS,hbciListTransactions,false +52272,b3b505de-6de2-480d-b152-0bf8ccdf9408,AUTHORIZATION,,false +52273,b3b505de-6de2-480d-b152-0bf8ccdf9408,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52274,b3b505de-6de2-480d-b152-0bf8ccdf9408,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52275,b3b505de-6de2-480d-b152-0bf8ccdf9408,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52276,21925dd8-1b36-40b6-9bd7-1e5692a52158,LIST_ACCOUNTS,xs2aListAccounts,true -52277,21925dd8-1b36-40b6-9bd7-1e5692a52158,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52277,21925dd8-1b36-40b6-9bd7-1e5692a52158,LIST_TRANSACTIONS,xs2aListTransactions,true 52278,21925dd8-1b36-40b6-9bd7-1e5692a52158,AUTHORIZATION,,true 52279,21925dd8-1b36-40b6-9bd7-1e5692a52158,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52280,21925dd8-1b36-40b6-9bd7-1e5692a52158,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52281,21925dd8-1b36-40b6-9bd7-1e5692a52158,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52282,6c3aad67-04ec-469a-8982-1da7d58a6234,LIST_ACCOUNTS,hbciListAccounts,false -52283,6c3aad67-04ec-469a-8982-1da7d58a6234,LIST_TRANSACTIONS,hbciListTransactions,false -52284,6c3aad67-04ec-469a-8982-1da7d58a6234,AUTHORIZATION,,false -52285,6c3aad67-04ec-469a-8982-1da7d58a6234,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52286,6c3aad67-04ec-469a-8982-1da7d58a6234,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52287,6c3aad67-04ec-469a-8982-1da7d58a6234,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52282,ea707291-9d56-4a3d-8444-21a6f47572d2,LIST_ACCOUNTS,hbciListAccounts,false +52283,ea707291-9d56-4a3d-8444-21a6f47572d2,LIST_TRANSACTIONS,hbciListTransactions,false +52284,ea707291-9d56-4a3d-8444-21a6f47572d2,AUTHORIZATION,,false +52285,ea707291-9d56-4a3d-8444-21a6f47572d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52286,ea707291-9d56-4a3d-8444-21a6f47572d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52287,ea707291-9d56-4a3d-8444-21a6f47572d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52288,4a522043-b3fa-46b5-8f2c-acc447e0406a,LIST_ACCOUNTS,xs2aListAccounts,true -52289,4a522043-b3fa-46b5-8f2c-acc447e0406a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52289,4a522043-b3fa-46b5-8f2c-acc447e0406a,LIST_TRANSACTIONS,xs2aListTransactions,true 52290,4a522043-b3fa-46b5-8f2c-acc447e0406a,AUTHORIZATION,,true 52291,4a522043-b3fa-46b5-8f2c-acc447e0406a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52292,4a522043-b3fa-46b5-8f2c-acc447e0406a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52293,4a522043-b3fa-46b5-8f2c-acc447e0406a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52294,f2466f8e-9c3c-41b2-92dd-bf09e909f49d,LIST_ACCOUNTS,hbciListAccounts,false -52295,f2466f8e-9c3c-41b2-92dd-bf09e909f49d,LIST_TRANSACTIONS,hbciListTransactions,false -52296,f2466f8e-9c3c-41b2-92dd-bf09e909f49d,AUTHORIZATION,,false -52297,f2466f8e-9c3c-41b2-92dd-bf09e909f49d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52298,f2466f8e-9c3c-41b2-92dd-bf09e909f49d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52299,f2466f8e-9c3c-41b2-92dd-bf09e909f49d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52294,5411824b-eb06-4781-bfc3-6c55975ab340,LIST_ACCOUNTS,hbciListAccounts,false +52295,5411824b-eb06-4781-bfc3-6c55975ab340,LIST_TRANSACTIONS,hbciListTransactions,false +52296,5411824b-eb06-4781-bfc3-6c55975ab340,AUTHORIZATION,,false +52297,5411824b-eb06-4781-bfc3-6c55975ab340,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52298,5411824b-eb06-4781-bfc3-6c55975ab340,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52299,5411824b-eb06-4781-bfc3-6c55975ab340,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52300,dbfe85f9-8117-40be-995b-1d119880e157,LIST_ACCOUNTS,xs2aListAccounts,true -52301,dbfe85f9-8117-40be-995b-1d119880e157,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52301,dbfe85f9-8117-40be-995b-1d119880e157,LIST_TRANSACTIONS,xs2aListTransactions,true 52302,dbfe85f9-8117-40be-995b-1d119880e157,AUTHORIZATION,,true 52303,dbfe85f9-8117-40be-995b-1d119880e157,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52304,dbfe85f9-8117-40be-995b-1d119880e157,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52305,dbfe85f9-8117-40be-995b-1d119880e157,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52306,121e14b6-2907-4fd6-9258-8c3a805e3f70,LIST_ACCOUNTS,hbciListAccounts,false -52307,121e14b6-2907-4fd6-9258-8c3a805e3f70,LIST_TRANSACTIONS,hbciListTransactions,false -52308,121e14b6-2907-4fd6-9258-8c3a805e3f70,AUTHORIZATION,,false -52309,121e14b6-2907-4fd6-9258-8c3a805e3f70,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52310,121e14b6-2907-4fd6-9258-8c3a805e3f70,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52311,121e14b6-2907-4fd6-9258-8c3a805e3f70,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52306,ff113c74-d439-447b-b4dc-a2092b184be2,LIST_ACCOUNTS,hbciListAccounts,false +52307,ff113c74-d439-447b-b4dc-a2092b184be2,LIST_TRANSACTIONS,hbciListTransactions,false +52308,ff113c74-d439-447b-b4dc-a2092b184be2,AUTHORIZATION,,false +52309,ff113c74-d439-447b-b4dc-a2092b184be2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52310,ff113c74-d439-447b-b4dc-a2092b184be2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52311,ff113c74-d439-447b-b4dc-a2092b184be2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52312,b59272a7-4204-4c16-b9b1-19700b6bee36,LIST_ACCOUNTS,xs2aListAccounts,true -52313,b59272a7-4204-4c16-b9b1-19700b6bee36,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52313,b59272a7-4204-4c16-b9b1-19700b6bee36,LIST_TRANSACTIONS,xs2aListTransactions,true 52314,b59272a7-4204-4c16-b9b1-19700b6bee36,AUTHORIZATION,,true 52315,b59272a7-4204-4c16-b9b1-19700b6bee36,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52316,b59272a7-4204-4c16-b9b1-19700b6bee36,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52317,b59272a7-4204-4c16-b9b1-19700b6bee36,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52318,72407f02-3aa0-4ad0-949b-4ebb53816271,LIST_ACCOUNTS,hbciListAccounts,false -52319,72407f02-3aa0-4ad0-949b-4ebb53816271,LIST_TRANSACTIONS,hbciListTransactions,false -52320,72407f02-3aa0-4ad0-949b-4ebb53816271,AUTHORIZATION,,false -52321,72407f02-3aa0-4ad0-949b-4ebb53816271,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52322,72407f02-3aa0-4ad0-949b-4ebb53816271,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52323,72407f02-3aa0-4ad0-949b-4ebb53816271,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52318,8de8dc90-d3b7-44c9-aaaa-8480d9123252,LIST_ACCOUNTS,hbciListAccounts,false +52319,8de8dc90-d3b7-44c9-aaaa-8480d9123252,LIST_TRANSACTIONS,hbciListTransactions,false +52320,8de8dc90-d3b7-44c9-aaaa-8480d9123252,AUTHORIZATION,,false +52321,8de8dc90-d3b7-44c9-aaaa-8480d9123252,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52322,8de8dc90-d3b7-44c9-aaaa-8480d9123252,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52323,8de8dc90-d3b7-44c9-aaaa-8480d9123252,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52324,88edb626-c806-44a0-a39c-8d37c4ff2584,LIST_ACCOUNTS,xs2aListAccounts,true -52325,88edb626-c806-44a0-a39c-8d37c4ff2584,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52325,88edb626-c806-44a0-a39c-8d37c4ff2584,LIST_TRANSACTIONS,xs2aListTransactions,true 52326,88edb626-c806-44a0-a39c-8d37c4ff2584,AUTHORIZATION,,true 52327,88edb626-c806-44a0-a39c-8d37c4ff2584,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52328,88edb626-c806-44a0-a39c-8d37c4ff2584,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52329,88edb626-c806-44a0-a39c-8d37c4ff2584,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52330,b3aa4bcb-6a6a-43a1-9341-cec60b15ca82,LIST_ACCOUNTS,hbciListAccounts,false -52331,b3aa4bcb-6a6a-43a1-9341-cec60b15ca82,LIST_TRANSACTIONS,hbciListTransactions,false -52332,b3aa4bcb-6a6a-43a1-9341-cec60b15ca82,AUTHORIZATION,,false -52333,b3aa4bcb-6a6a-43a1-9341-cec60b15ca82,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52334,b3aa4bcb-6a6a-43a1-9341-cec60b15ca82,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52335,b3aa4bcb-6a6a-43a1-9341-cec60b15ca82,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52330,0378ab10-923b-4a9e-95e7-3f2072af7012,LIST_ACCOUNTS,hbciListAccounts,false +52331,0378ab10-923b-4a9e-95e7-3f2072af7012,LIST_TRANSACTIONS,hbciListTransactions,false +52332,0378ab10-923b-4a9e-95e7-3f2072af7012,AUTHORIZATION,,false +52333,0378ab10-923b-4a9e-95e7-3f2072af7012,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52334,0378ab10-923b-4a9e-95e7-3f2072af7012,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52335,0378ab10-923b-4a9e-95e7-3f2072af7012,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52336,2d15ad70-2afc-4cad-8f00-69c79a784839,LIST_ACCOUNTS,xs2aListAccounts,true -52337,2d15ad70-2afc-4cad-8f00-69c79a784839,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52337,2d15ad70-2afc-4cad-8f00-69c79a784839,LIST_TRANSACTIONS,xs2aListTransactions,true 52338,2d15ad70-2afc-4cad-8f00-69c79a784839,AUTHORIZATION,,true 52339,2d15ad70-2afc-4cad-8f00-69c79a784839,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52340,2d15ad70-2afc-4cad-8f00-69c79a784839,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52341,2d15ad70-2afc-4cad-8f00-69c79a784839,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52342,0dd8d01e-4768-426b-8c59-dfd7872d0e4b,LIST_ACCOUNTS,hbciListAccounts,false -52343,0dd8d01e-4768-426b-8c59-dfd7872d0e4b,LIST_TRANSACTIONS,hbciListTransactions,false -52344,0dd8d01e-4768-426b-8c59-dfd7872d0e4b,AUTHORIZATION,,false -52345,0dd8d01e-4768-426b-8c59-dfd7872d0e4b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52346,0dd8d01e-4768-426b-8c59-dfd7872d0e4b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52347,0dd8d01e-4768-426b-8c59-dfd7872d0e4b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52342,6d458e43-6d74-418e-95ab-642290524d73,LIST_ACCOUNTS,hbciListAccounts,false +52343,6d458e43-6d74-418e-95ab-642290524d73,LIST_TRANSACTIONS,hbciListTransactions,false +52344,6d458e43-6d74-418e-95ab-642290524d73,AUTHORIZATION,,false +52345,6d458e43-6d74-418e-95ab-642290524d73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52346,6d458e43-6d74-418e-95ab-642290524d73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52347,6d458e43-6d74-418e-95ab-642290524d73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52348,fe31aa26-f81c-46a2-9b4c-68dfef4941c9,LIST_ACCOUNTS,xs2aListAccounts,true -52349,fe31aa26-f81c-46a2-9b4c-68dfef4941c9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52349,fe31aa26-f81c-46a2-9b4c-68dfef4941c9,LIST_TRANSACTIONS,xs2aListTransactions,true 52350,fe31aa26-f81c-46a2-9b4c-68dfef4941c9,AUTHORIZATION,,true 52351,fe31aa26-f81c-46a2-9b4c-68dfef4941c9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52352,fe31aa26-f81c-46a2-9b4c-68dfef4941c9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52353,fe31aa26-f81c-46a2-9b4c-68dfef4941c9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52354,bacea114-250b-44f6-96b4-47f9caf1cc06,LIST_ACCOUNTS,hbciListAccounts,false -52355,bacea114-250b-44f6-96b4-47f9caf1cc06,LIST_TRANSACTIONS,hbciListTransactions,false -52356,bacea114-250b-44f6-96b4-47f9caf1cc06,AUTHORIZATION,,false -52357,bacea114-250b-44f6-96b4-47f9caf1cc06,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52358,bacea114-250b-44f6-96b4-47f9caf1cc06,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52359,bacea114-250b-44f6-96b4-47f9caf1cc06,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52354,465d0e7d-020b-442a-b626-473101b10ef6,LIST_ACCOUNTS,hbciListAccounts,false +52355,465d0e7d-020b-442a-b626-473101b10ef6,LIST_TRANSACTIONS,hbciListTransactions,false +52356,465d0e7d-020b-442a-b626-473101b10ef6,AUTHORIZATION,,false +52357,465d0e7d-020b-442a-b626-473101b10ef6,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52358,465d0e7d-020b-442a-b626-473101b10ef6,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52359,465d0e7d-020b-442a-b626-473101b10ef6,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52360,975ce883-4018-4a9d-b57e-af45768de5e7,LIST_ACCOUNTS,xs2aListAccounts,true -52361,975ce883-4018-4a9d-b57e-af45768de5e7,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52361,975ce883-4018-4a9d-b57e-af45768de5e7,LIST_TRANSACTIONS,xs2aListTransactions,true 52362,975ce883-4018-4a9d-b57e-af45768de5e7,AUTHORIZATION,,true 52363,975ce883-4018-4a9d-b57e-af45768de5e7,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52364,975ce883-4018-4a9d-b57e-af45768de5e7,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52365,975ce883-4018-4a9d-b57e-af45768de5e7,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52366,2de51922-dd5f-42fc-a628-f3ddf76dcbc7,LIST_ACCOUNTS,hbciListAccounts,false -52367,2de51922-dd5f-42fc-a628-f3ddf76dcbc7,LIST_TRANSACTIONS,hbciListTransactions,false -52368,2de51922-dd5f-42fc-a628-f3ddf76dcbc7,AUTHORIZATION,,false -52369,2de51922-dd5f-42fc-a628-f3ddf76dcbc7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52370,2de51922-dd5f-42fc-a628-f3ddf76dcbc7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52371,2de51922-dd5f-42fc-a628-f3ddf76dcbc7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52366,e1859f34-f1a4-4d77-a17f-2de6ea3b1c03,LIST_ACCOUNTS,hbciListAccounts,false +52367,e1859f34-f1a4-4d77-a17f-2de6ea3b1c03,LIST_TRANSACTIONS,hbciListTransactions,false +52368,e1859f34-f1a4-4d77-a17f-2de6ea3b1c03,AUTHORIZATION,,false +52369,e1859f34-f1a4-4d77-a17f-2de6ea3b1c03,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52370,e1859f34-f1a4-4d77-a17f-2de6ea3b1c03,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52371,e1859f34-f1a4-4d77-a17f-2de6ea3b1c03,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52372,f2f7a0ed-919d-4916-9353-4678f616ee06,LIST_ACCOUNTS,xs2aListAccounts,true -52373,f2f7a0ed-919d-4916-9353-4678f616ee06,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52373,f2f7a0ed-919d-4916-9353-4678f616ee06,LIST_TRANSACTIONS,xs2aListTransactions,true 52374,f2f7a0ed-919d-4916-9353-4678f616ee06,AUTHORIZATION,,true 52375,f2f7a0ed-919d-4916-9353-4678f616ee06,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52376,f2f7a0ed-919d-4916-9353-4678f616ee06,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52377,f2f7a0ed-919d-4916-9353-4678f616ee06,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52378,dd47f1ce-0a5b-48b7-9d36-0c62aecefa80,LIST_ACCOUNTS,hbciListAccounts,false -52379,dd47f1ce-0a5b-48b7-9d36-0c62aecefa80,LIST_TRANSACTIONS,hbciListTransactions,false -52380,dd47f1ce-0a5b-48b7-9d36-0c62aecefa80,AUTHORIZATION,,false -52381,dd47f1ce-0a5b-48b7-9d36-0c62aecefa80,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52382,dd47f1ce-0a5b-48b7-9d36-0c62aecefa80,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52383,dd47f1ce-0a5b-48b7-9d36-0c62aecefa80,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52378,8e6be279-7893-4140-ae9b-918c3ca562a5,LIST_ACCOUNTS,hbciListAccounts,false +52379,8e6be279-7893-4140-ae9b-918c3ca562a5,LIST_TRANSACTIONS,hbciListTransactions,false +52380,8e6be279-7893-4140-ae9b-918c3ca562a5,AUTHORIZATION,,false +52381,8e6be279-7893-4140-ae9b-918c3ca562a5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52382,8e6be279-7893-4140-ae9b-918c3ca562a5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52383,8e6be279-7893-4140-ae9b-918c3ca562a5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52384,798711f5-7056-4ca7-b153-74d84d10d7b9,LIST_ACCOUNTS,xs2aListAccounts,true -52385,798711f5-7056-4ca7-b153-74d84d10d7b9,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52385,798711f5-7056-4ca7-b153-74d84d10d7b9,LIST_TRANSACTIONS,xs2aListTransactions,true 52386,798711f5-7056-4ca7-b153-74d84d10d7b9,AUTHORIZATION,,true 52387,798711f5-7056-4ca7-b153-74d84d10d7b9,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52388,798711f5-7056-4ca7-b153-74d84d10d7b9,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52389,798711f5-7056-4ca7-b153-74d84d10d7b9,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52390,e764fecc-4009-499e-9629-d1f38ab9c887,LIST_ACCOUNTS,hbciListAccounts,false -52391,e764fecc-4009-499e-9629-d1f38ab9c887,LIST_TRANSACTIONS,hbciListTransactions,false -52392,e764fecc-4009-499e-9629-d1f38ab9c887,AUTHORIZATION,,false -52393,e764fecc-4009-499e-9629-d1f38ab9c887,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52394,e764fecc-4009-499e-9629-d1f38ab9c887,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52395,e764fecc-4009-499e-9629-d1f38ab9c887,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52390,c1a1a827-e36b-495b-a61a-6a3f1a815f8a,LIST_ACCOUNTS,hbciListAccounts,false +52391,c1a1a827-e36b-495b-a61a-6a3f1a815f8a,LIST_TRANSACTIONS,hbciListTransactions,false +52392,c1a1a827-e36b-495b-a61a-6a3f1a815f8a,AUTHORIZATION,,false +52393,c1a1a827-e36b-495b-a61a-6a3f1a815f8a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52394,c1a1a827-e36b-495b-a61a-6a3f1a815f8a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52395,c1a1a827-e36b-495b-a61a-6a3f1a815f8a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52396,a541a38c-263b-4dd1-8ecd-2fcb6f33a8c8,LIST_ACCOUNTS,xs2aListAccounts,true -52397,a541a38c-263b-4dd1-8ecd-2fcb6f33a8c8,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52397,a541a38c-263b-4dd1-8ecd-2fcb6f33a8c8,LIST_TRANSACTIONS,xs2aListTransactions,true 52398,a541a38c-263b-4dd1-8ecd-2fcb6f33a8c8,AUTHORIZATION,,true 52399,a541a38c-263b-4dd1-8ecd-2fcb6f33a8c8,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52400,a541a38c-263b-4dd1-8ecd-2fcb6f33a8c8,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52401,a541a38c-263b-4dd1-8ecd-2fcb6f33a8c8,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52402,adc1919a-613c-482e-bdae-c45ce506cebb,LIST_ACCOUNTS,hbciListAccounts,false -52403,adc1919a-613c-482e-bdae-c45ce506cebb,LIST_TRANSACTIONS,hbciListTransactions,false -52404,adc1919a-613c-482e-bdae-c45ce506cebb,AUTHORIZATION,,false -52405,adc1919a-613c-482e-bdae-c45ce506cebb,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52406,adc1919a-613c-482e-bdae-c45ce506cebb,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52407,adc1919a-613c-482e-bdae-c45ce506cebb,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52402,5efd5f0f-eeef-481d-8c85-363b03890f78,LIST_ACCOUNTS,hbciListAccounts,false +52403,5efd5f0f-eeef-481d-8c85-363b03890f78,LIST_TRANSACTIONS,hbciListTransactions,false +52404,5efd5f0f-eeef-481d-8c85-363b03890f78,AUTHORIZATION,,false +52405,5efd5f0f-eeef-481d-8c85-363b03890f78,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52406,5efd5f0f-eeef-481d-8c85-363b03890f78,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52407,5efd5f0f-eeef-481d-8c85-363b03890f78,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52408,3cf1b6a3-9252-48ba-ad6a-7cb0ff667c84,LIST_ACCOUNTS,xs2aListAccounts,true -52409,3cf1b6a3-9252-48ba-ad6a-7cb0ff667c84,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52409,3cf1b6a3-9252-48ba-ad6a-7cb0ff667c84,LIST_TRANSACTIONS,xs2aListTransactions,true 52410,3cf1b6a3-9252-48ba-ad6a-7cb0ff667c84,AUTHORIZATION,,true 52411,3cf1b6a3-9252-48ba-ad6a-7cb0ff667c84,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52412,3cf1b6a3-9252-48ba-ad6a-7cb0ff667c84,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52413,3cf1b6a3-9252-48ba-ad6a-7cb0ff667c84,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52414,d34472ac-f92e-4a51-a558-db1fa49e89b2,LIST_ACCOUNTS,hbciListAccounts,false -52415,d34472ac-f92e-4a51-a558-db1fa49e89b2,LIST_TRANSACTIONS,hbciListTransactions,false -52416,d34472ac-f92e-4a51-a558-db1fa49e89b2,AUTHORIZATION,,false -52417,d34472ac-f92e-4a51-a558-db1fa49e89b2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52418,d34472ac-f92e-4a51-a558-db1fa49e89b2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52419,d34472ac-f92e-4a51-a558-db1fa49e89b2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52414,89d06f2f-62cd-4866-adc6-9e995db4c795,LIST_ACCOUNTS,hbciListAccounts,false +52415,89d06f2f-62cd-4866-adc6-9e995db4c795,LIST_TRANSACTIONS,hbciListTransactions,false +52416,89d06f2f-62cd-4866-adc6-9e995db4c795,AUTHORIZATION,,false +52417,89d06f2f-62cd-4866-adc6-9e995db4c795,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52418,89d06f2f-62cd-4866-adc6-9e995db4c795,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52419,89d06f2f-62cd-4866-adc6-9e995db4c795,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52420,045c2f0d-4abc-4bc9-824e-72a3a279d7bd,LIST_ACCOUNTS,xs2aListAccounts,true -52421,045c2f0d-4abc-4bc9-824e-72a3a279d7bd,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52421,045c2f0d-4abc-4bc9-824e-72a3a279d7bd,LIST_TRANSACTIONS,xs2aListTransactions,true 52422,045c2f0d-4abc-4bc9-824e-72a3a279d7bd,AUTHORIZATION,,true 52423,045c2f0d-4abc-4bc9-824e-72a3a279d7bd,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52424,045c2f0d-4abc-4bc9-824e-72a3a279d7bd,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52425,045c2f0d-4abc-4bc9-824e-72a3a279d7bd,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52426,85a26aba-f891-4255-ba57-8c102309b93d,LIST_ACCOUNTS,hbciListAccounts,false -52427,85a26aba-f891-4255-ba57-8c102309b93d,LIST_TRANSACTIONS,hbciListTransactions,false -52428,85a26aba-f891-4255-ba57-8c102309b93d,AUTHORIZATION,,false -52429,85a26aba-f891-4255-ba57-8c102309b93d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52430,85a26aba-f891-4255-ba57-8c102309b93d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52431,85a26aba-f891-4255-ba57-8c102309b93d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52426,6128c1ee-630f-4561-8f60-5fffbc27ec05,LIST_ACCOUNTS,hbciListAccounts,false +52427,6128c1ee-630f-4561-8f60-5fffbc27ec05,LIST_TRANSACTIONS,hbciListTransactions,false +52428,6128c1ee-630f-4561-8f60-5fffbc27ec05,AUTHORIZATION,,false +52429,6128c1ee-630f-4561-8f60-5fffbc27ec05,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52430,6128c1ee-630f-4561-8f60-5fffbc27ec05,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52431,6128c1ee-630f-4561-8f60-5fffbc27ec05,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52432,81dac93b-7299-4b22-a4fc-0592cc5cfc21,LIST_ACCOUNTS,xs2aListAccounts,true -52433,81dac93b-7299-4b22-a4fc-0592cc5cfc21,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52433,81dac93b-7299-4b22-a4fc-0592cc5cfc21,LIST_TRANSACTIONS,xs2aListTransactions,true 52434,81dac93b-7299-4b22-a4fc-0592cc5cfc21,AUTHORIZATION,,true 52435,81dac93b-7299-4b22-a4fc-0592cc5cfc21,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52436,81dac93b-7299-4b22-a4fc-0592cc5cfc21,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52437,81dac93b-7299-4b22-a4fc-0592cc5cfc21,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52438,d7c1bdaf-9392-4538-b732-d733966d8bc9,LIST_ACCOUNTS,hbciListAccounts,false -52439,d7c1bdaf-9392-4538-b732-d733966d8bc9,LIST_TRANSACTIONS,hbciListTransactions,false -52440,d7c1bdaf-9392-4538-b732-d733966d8bc9,AUTHORIZATION,,false -52441,d7c1bdaf-9392-4538-b732-d733966d8bc9,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52442,d7c1bdaf-9392-4538-b732-d733966d8bc9,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52443,d7c1bdaf-9392-4538-b732-d733966d8bc9,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52438,e4bc3b70-ad54-4319-ab4a-012969a77a42,LIST_ACCOUNTS,hbciListAccounts,false +52439,e4bc3b70-ad54-4319-ab4a-012969a77a42,LIST_TRANSACTIONS,hbciListTransactions,false +52440,e4bc3b70-ad54-4319-ab4a-012969a77a42,AUTHORIZATION,,false +52441,e4bc3b70-ad54-4319-ab4a-012969a77a42,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52442,e4bc3b70-ad54-4319-ab4a-012969a77a42,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52443,e4bc3b70-ad54-4319-ab4a-012969a77a42,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52444,3e7047c1-583b-4c28-9757-9f23df70449f,LIST_ACCOUNTS,xs2aListAccounts,true -52445,3e7047c1-583b-4c28-9757-9f23df70449f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52445,3e7047c1-583b-4c28-9757-9f23df70449f,LIST_TRANSACTIONS,xs2aListTransactions,true 52446,3e7047c1-583b-4c28-9757-9f23df70449f,AUTHORIZATION,,true 52447,3e7047c1-583b-4c28-9757-9f23df70449f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52448,3e7047c1-583b-4c28-9757-9f23df70449f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52449,3e7047c1-583b-4c28-9757-9f23df70449f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52450,b37cef7c-e419-492f-9059-2381068dab73,LIST_ACCOUNTS,hbciListAccounts,false -52451,b37cef7c-e419-492f-9059-2381068dab73,LIST_TRANSACTIONS,hbciListTransactions,false -52452,b37cef7c-e419-492f-9059-2381068dab73,AUTHORIZATION,,false -52453,b37cef7c-e419-492f-9059-2381068dab73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52454,b37cef7c-e419-492f-9059-2381068dab73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52455,b37cef7c-e419-492f-9059-2381068dab73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52450,f9cf3193-8a78-4145-a42f-d719feb819c5,LIST_ACCOUNTS,hbciListAccounts,false +52451,f9cf3193-8a78-4145-a42f-d719feb819c5,LIST_TRANSACTIONS,hbciListTransactions,false +52452,f9cf3193-8a78-4145-a42f-d719feb819c5,AUTHORIZATION,,false +52453,f9cf3193-8a78-4145-a42f-d719feb819c5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52454,f9cf3193-8a78-4145-a42f-d719feb819c5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52455,f9cf3193-8a78-4145-a42f-d719feb819c5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52456,5f163e75-15b8-4dd6-859b-cec5ae04a7ed,LIST_ACCOUNTS,xs2aListAccounts,true -52457,5f163e75-15b8-4dd6-859b-cec5ae04a7ed,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52457,5f163e75-15b8-4dd6-859b-cec5ae04a7ed,LIST_TRANSACTIONS,xs2aListTransactions,true 52458,5f163e75-15b8-4dd6-859b-cec5ae04a7ed,AUTHORIZATION,,true 52459,5f163e75-15b8-4dd6-859b-cec5ae04a7ed,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52460,5f163e75-15b8-4dd6-859b-cec5ae04a7ed,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52461,5f163e75-15b8-4dd6-859b-cec5ae04a7ed,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52462,63fdd36d-c6f7-41be-95ef-21a9f3c50814,LIST_ACCOUNTS,hbciListAccounts,false -52463,63fdd36d-c6f7-41be-95ef-21a9f3c50814,LIST_TRANSACTIONS,hbciListTransactions,false -52464,63fdd36d-c6f7-41be-95ef-21a9f3c50814,AUTHORIZATION,,false -52465,63fdd36d-c6f7-41be-95ef-21a9f3c50814,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52466,63fdd36d-c6f7-41be-95ef-21a9f3c50814,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52467,63fdd36d-c6f7-41be-95ef-21a9f3c50814,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52462,af72b239-84fb-43a3-89a1-2b315926fb22,LIST_ACCOUNTS,hbciListAccounts,false +52463,af72b239-84fb-43a3-89a1-2b315926fb22,LIST_TRANSACTIONS,hbciListTransactions,false +52464,af72b239-84fb-43a3-89a1-2b315926fb22,AUTHORIZATION,,false +52465,af72b239-84fb-43a3-89a1-2b315926fb22,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52466,af72b239-84fb-43a3-89a1-2b315926fb22,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52467,af72b239-84fb-43a3-89a1-2b315926fb22,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52468,00b79b90-7280-4e15-874a-bec7772a62cb,LIST_ACCOUNTS,xs2aListAccounts,true -52469,00b79b90-7280-4e15-874a-bec7772a62cb,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52469,00b79b90-7280-4e15-874a-bec7772a62cb,LIST_TRANSACTIONS,xs2aListTransactions,true 52470,00b79b90-7280-4e15-874a-bec7772a62cb,AUTHORIZATION,,true 52471,00b79b90-7280-4e15-874a-bec7772a62cb,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52472,00b79b90-7280-4e15-874a-bec7772a62cb,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52473,00b79b90-7280-4e15-874a-bec7772a62cb,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52474,dc490698-3014-4744-8537-ec924e49efb4,LIST_ACCOUNTS,hbciListAccounts,false -52475,dc490698-3014-4744-8537-ec924e49efb4,LIST_TRANSACTIONS,hbciListTransactions,false -52476,dc490698-3014-4744-8537-ec924e49efb4,AUTHORIZATION,,false -52477,dc490698-3014-4744-8537-ec924e49efb4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52478,dc490698-3014-4744-8537-ec924e49efb4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52479,dc490698-3014-4744-8537-ec924e49efb4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52474,5f6452e6-f5f6-4eb1-a3db-340c2c9063a7,LIST_ACCOUNTS,hbciListAccounts,false +52475,5f6452e6-f5f6-4eb1-a3db-340c2c9063a7,LIST_TRANSACTIONS,hbciListTransactions,false +52476,5f6452e6-f5f6-4eb1-a3db-340c2c9063a7,AUTHORIZATION,,false +52477,5f6452e6-f5f6-4eb1-a3db-340c2c9063a7,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52478,5f6452e6-f5f6-4eb1-a3db-340c2c9063a7,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52479,5f6452e6-f5f6-4eb1-a3db-340c2c9063a7,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52480,cca68e2b-4985-4c30-bf83-19ee3a8d6305,LIST_ACCOUNTS,xs2aListAccounts,true -52481,cca68e2b-4985-4c30-bf83-19ee3a8d6305,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52481,cca68e2b-4985-4c30-bf83-19ee3a8d6305,LIST_TRANSACTIONS,xs2aListTransactions,true 52482,cca68e2b-4985-4c30-bf83-19ee3a8d6305,AUTHORIZATION,,true 52483,cca68e2b-4985-4c30-bf83-19ee3a8d6305,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52484,cca68e2b-4985-4c30-bf83-19ee3a8d6305,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52485,cca68e2b-4985-4c30-bf83-19ee3a8d6305,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52486,7d8b415f-9913-4c1b-9914-747c5136caa4,LIST_ACCOUNTS,hbciListAccounts,false -52487,7d8b415f-9913-4c1b-9914-747c5136caa4,LIST_TRANSACTIONS,hbciListTransactions,false -52488,7d8b415f-9913-4c1b-9914-747c5136caa4,AUTHORIZATION,,false -52489,7d8b415f-9913-4c1b-9914-747c5136caa4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52490,7d8b415f-9913-4c1b-9914-747c5136caa4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52491,7d8b415f-9913-4c1b-9914-747c5136caa4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52486,9fde60c6-973b-4cd7-b520-4a077db72437,LIST_ACCOUNTS,hbciListAccounts,false +52487,9fde60c6-973b-4cd7-b520-4a077db72437,LIST_TRANSACTIONS,hbciListTransactions,false +52488,9fde60c6-973b-4cd7-b520-4a077db72437,AUTHORIZATION,,false +52489,9fde60c6-973b-4cd7-b520-4a077db72437,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52490,9fde60c6-973b-4cd7-b520-4a077db72437,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52491,9fde60c6-973b-4cd7-b520-4a077db72437,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52492,c6599d5f-65c6-4608-a871-fcccd681c153,LIST_ACCOUNTS,xs2aListAccounts,true -52493,c6599d5f-65c6-4608-a871-fcccd681c153,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52493,c6599d5f-65c6-4608-a871-fcccd681c153,LIST_TRANSACTIONS,xs2aListTransactions,true 52494,c6599d5f-65c6-4608-a871-fcccd681c153,AUTHORIZATION,,true 52495,c6599d5f-65c6-4608-a871-fcccd681c153,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52496,c6599d5f-65c6-4608-a871-fcccd681c153,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52497,c6599d5f-65c6-4608-a871-fcccd681c153,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52498,f8847d15-7e82-49d5-9674-e5ff7c4dd91b,LIST_ACCOUNTS,hbciListAccounts,false -52499,f8847d15-7e82-49d5-9674-e5ff7c4dd91b,LIST_TRANSACTIONS,hbciListTransactions,false -52500,f8847d15-7e82-49d5-9674-e5ff7c4dd91b,AUTHORIZATION,,false -52501,f8847d15-7e82-49d5-9674-e5ff7c4dd91b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52502,f8847d15-7e82-49d5-9674-e5ff7c4dd91b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52503,f8847d15-7e82-49d5-9674-e5ff7c4dd91b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52498,3215bcd5-0530-464c-9b18-e8b5ae47e784,LIST_ACCOUNTS,hbciListAccounts,false +52499,3215bcd5-0530-464c-9b18-e8b5ae47e784,LIST_TRANSACTIONS,hbciListTransactions,false +52500,3215bcd5-0530-464c-9b18-e8b5ae47e784,AUTHORIZATION,,false +52501,3215bcd5-0530-464c-9b18-e8b5ae47e784,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52502,3215bcd5-0530-464c-9b18-e8b5ae47e784,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52503,3215bcd5-0530-464c-9b18-e8b5ae47e784,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52504,3d03c8ab-a524-49d3-855f-94b3a991f66a,LIST_ACCOUNTS,xs2aListAccounts,true -52505,3d03c8ab-a524-49d3-855f-94b3a991f66a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52505,3d03c8ab-a524-49d3-855f-94b3a991f66a,LIST_TRANSACTIONS,xs2aListTransactions,true 52506,3d03c8ab-a524-49d3-855f-94b3a991f66a,AUTHORIZATION,,true 52507,3d03c8ab-a524-49d3-855f-94b3a991f66a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52508,3d03c8ab-a524-49d3-855f-94b3a991f66a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52509,3d03c8ab-a524-49d3-855f-94b3a991f66a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52510,1dbf381f-79e2-4a7b-aefb-e792ed94a6e1,LIST_ACCOUNTS,hbciListAccounts,false -52511,1dbf381f-79e2-4a7b-aefb-e792ed94a6e1,LIST_TRANSACTIONS,hbciListTransactions,false -52512,1dbf381f-79e2-4a7b-aefb-e792ed94a6e1,AUTHORIZATION,,false -52513,1dbf381f-79e2-4a7b-aefb-e792ed94a6e1,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52514,1dbf381f-79e2-4a7b-aefb-e792ed94a6e1,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52515,1dbf381f-79e2-4a7b-aefb-e792ed94a6e1,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52510,230fc3e9-9a09-48d3-81ee-b71e31b8d4e3,LIST_ACCOUNTS,hbciListAccounts,false +52511,230fc3e9-9a09-48d3-81ee-b71e31b8d4e3,LIST_TRANSACTIONS,hbciListTransactions,false +52512,230fc3e9-9a09-48d3-81ee-b71e31b8d4e3,AUTHORIZATION,,false +52513,230fc3e9-9a09-48d3-81ee-b71e31b8d4e3,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52514,230fc3e9-9a09-48d3-81ee-b71e31b8d4e3,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52515,230fc3e9-9a09-48d3-81ee-b71e31b8d4e3,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52516,b683894b-a149-49c4-b1cb-cf93f0c6f5f0,LIST_ACCOUNTS,xs2aListAccounts,true -52517,b683894b-a149-49c4-b1cb-cf93f0c6f5f0,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52517,b683894b-a149-49c4-b1cb-cf93f0c6f5f0,LIST_TRANSACTIONS,xs2aListTransactions,true 52518,b683894b-a149-49c4-b1cb-cf93f0c6f5f0,AUTHORIZATION,,true 52519,b683894b-a149-49c4-b1cb-cf93f0c6f5f0,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52520,b683894b-a149-49c4-b1cb-cf93f0c6f5f0,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52521,b683894b-a149-49c4-b1cb-cf93f0c6f5f0,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52522,3eb334a5-9641-4aa6-84cf-49fa9b3184db,LIST_ACCOUNTS,hbciListAccounts,false -52523,3eb334a5-9641-4aa6-84cf-49fa9b3184db,LIST_TRANSACTIONS,hbciListTransactions,false -52524,3eb334a5-9641-4aa6-84cf-49fa9b3184db,AUTHORIZATION,,false -52525,3eb334a5-9641-4aa6-84cf-49fa9b3184db,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52526,3eb334a5-9641-4aa6-84cf-49fa9b3184db,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52527,3eb334a5-9641-4aa6-84cf-49fa9b3184db,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52522,42592586-450e-40a4-8f31-b1766f299d2c,LIST_ACCOUNTS,hbciListAccounts,false +52523,42592586-450e-40a4-8f31-b1766f299d2c,LIST_TRANSACTIONS,hbciListTransactions,false +52524,42592586-450e-40a4-8f31-b1766f299d2c,AUTHORIZATION,,false +52525,42592586-450e-40a4-8f31-b1766f299d2c,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52526,42592586-450e-40a4-8f31-b1766f299d2c,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52527,42592586-450e-40a4-8f31-b1766f299d2c,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52528,ec11fb48-7c1c-4e8b-9c4d-2c203bbfc060,LIST_ACCOUNTS,xs2aListAccounts,true -52529,ec11fb48-7c1c-4e8b-9c4d-2c203bbfc060,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52529,ec11fb48-7c1c-4e8b-9c4d-2c203bbfc060,LIST_TRANSACTIONS,xs2aListTransactions,true 52530,ec11fb48-7c1c-4e8b-9c4d-2c203bbfc060,AUTHORIZATION,,true 52531,ec11fb48-7c1c-4e8b-9c4d-2c203bbfc060,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52532,ec11fb48-7c1c-4e8b-9c4d-2c203bbfc060,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52533,ec11fb48-7c1c-4e8b-9c4d-2c203bbfc060,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52534,dd7cdb1d-d7e7-464f-b31e-27854746391a,LIST_ACCOUNTS,hbciListAccounts,false -52535,dd7cdb1d-d7e7-464f-b31e-27854746391a,LIST_TRANSACTIONS,hbciListTransactions,false -52536,dd7cdb1d-d7e7-464f-b31e-27854746391a,AUTHORIZATION,,false -52537,dd7cdb1d-d7e7-464f-b31e-27854746391a,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52538,dd7cdb1d-d7e7-464f-b31e-27854746391a,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52539,dd7cdb1d-d7e7-464f-b31e-27854746391a,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52534,468b9a32-81f7-4f48-8f89-5eec6a42bc73,LIST_ACCOUNTS,hbciListAccounts,false +52535,468b9a32-81f7-4f48-8f89-5eec6a42bc73,LIST_TRANSACTIONS,hbciListTransactions,false +52536,468b9a32-81f7-4f48-8f89-5eec6a42bc73,AUTHORIZATION,,false +52537,468b9a32-81f7-4f48-8f89-5eec6a42bc73,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52538,468b9a32-81f7-4f48-8f89-5eec6a42bc73,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52539,468b9a32-81f7-4f48-8f89-5eec6a42bc73,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52540,82216a46-ff03-49fb-bd92-5a5ef0dc598a,LIST_ACCOUNTS,xs2aListAccounts,true -52541,82216a46-ff03-49fb-bd92-5a5ef0dc598a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52541,82216a46-ff03-49fb-bd92-5a5ef0dc598a,LIST_TRANSACTIONS,xs2aListTransactions,true 52542,82216a46-ff03-49fb-bd92-5a5ef0dc598a,AUTHORIZATION,,true 52543,82216a46-ff03-49fb-bd92-5a5ef0dc598a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52544,82216a46-ff03-49fb-bd92-5a5ef0dc598a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52545,82216a46-ff03-49fb-bd92-5a5ef0dc598a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52546,cf71c654-6ecb-41bf-a506-d829d43adc7d,LIST_ACCOUNTS,hbciListAccounts,false -52547,cf71c654-6ecb-41bf-a506-d829d43adc7d,LIST_TRANSACTIONS,hbciListTransactions,false -52548,cf71c654-6ecb-41bf-a506-d829d43adc7d,AUTHORIZATION,,false -52549,cf71c654-6ecb-41bf-a506-d829d43adc7d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52550,cf71c654-6ecb-41bf-a506-d829d43adc7d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52551,cf71c654-6ecb-41bf-a506-d829d43adc7d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52546,02416265-e8bb-4443-b602-ebc784cd5819,LIST_ACCOUNTS,hbciListAccounts,false +52547,02416265-e8bb-4443-b602-ebc784cd5819,LIST_TRANSACTIONS,hbciListTransactions,false +52548,02416265-e8bb-4443-b602-ebc784cd5819,AUTHORIZATION,,false +52549,02416265-e8bb-4443-b602-ebc784cd5819,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52550,02416265-e8bb-4443-b602-ebc784cd5819,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52551,02416265-e8bb-4443-b602-ebc784cd5819,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52552,3c872dbd-2d38-4c09-aead-5e7612251b71,LIST_ACCOUNTS,xs2aListAccounts,true -52553,3c872dbd-2d38-4c09-aead-5e7612251b71,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52553,3c872dbd-2d38-4c09-aead-5e7612251b71,LIST_TRANSACTIONS,xs2aListTransactions,true 52554,3c872dbd-2d38-4c09-aead-5e7612251b71,AUTHORIZATION,,true 52555,3c872dbd-2d38-4c09-aead-5e7612251b71,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52556,3c872dbd-2d38-4c09-aead-5e7612251b71,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52557,3c872dbd-2d38-4c09-aead-5e7612251b71,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52558,a8f08c3e-a64b-43dd-8674-cf1c54b0f0d2,LIST_ACCOUNTS,hbciListAccounts,false -52559,a8f08c3e-a64b-43dd-8674-cf1c54b0f0d2,LIST_TRANSACTIONS,hbciListTransactions,false -52560,a8f08c3e-a64b-43dd-8674-cf1c54b0f0d2,AUTHORIZATION,,false -52561,a8f08c3e-a64b-43dd-8674-cf1c54b0f0d2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52562,a8f08c3e-a64b-43dd-8674-cf1c54b0f0d2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52563,a8f08c3e-a64b-43dd-8674-cf1c54b0f0d2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52558,bf43a655-0426-4633-a46c-b598c7b6a90b,LIST_ACCOUNTS,hbciListAccounts,false +52559,bf43a655-0426-4633-a46c-b598c7b6a90b,LIST_TRANSACTIONS,hbciListTransactions,false +52560,bf43a655-0426-4633-a46c-b598c7b6a90b,AUTHORIZATION,,false +52561,bf43a655-0426-4633-a46c-b598c7b6a90b,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52562,bf43a655-0426-4633-a46c-b598c7b6a90b,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52563,bf43a655-0426-4633-a46c-b598c7b6a90b,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52564,fb4066a6-5c01-4bc5-a908-7f2836509c0e,LIST_ACCOUNTS,xs2aListAccounts,true -52565,fb4066a6-5c01-4bc5-a908-7f2836509c0e,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52565,fb4066a6-5c01-4bc5-a908-7f2836509c0e,LIST_TRANSACTIONS,xs2aListTransactions,true 52566,fb4066a6-5c01-4bc5-a908-7f2836509c0e,AUTHORIZATION,,true 52567,fb4066a6-5c01-4bc5-a908-7f2836509c0e,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52568,fb4066a6-5c01-4bc5-a908-7f2836509c0e,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52569,fb4066a6-5c01-4bc5-a908-7f2836509c0e,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52570,acbd2cdf-d0fd-4c6a-b7e7-2f1bd2cb1339,LIST_ACCOUNTS,hbciListAccounts,false -52571,acbd2cdf-d0fd-4c6a-b7e7-2f1bd2cb1339,LIST_TRANSACTIONS,hbciListTransactions,false -52572,acbd2cdf-d0fd-4c6a-b7e7-2f1bd2cb1339,AUTHORIZATION,,false -52573,acbd2cdf-d0fd-4c6a-b7e7-2f1bd2cb1339,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52574,acbd2cdf-d0fd-4c6a-b7e7-2f1bd2cb1339,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52575,acbd2cdf-d0fd-4c6a-b7e7-2f1bd2cb1339,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52570,69eeb62a-2061-4ac4-9109-497be7f001bd,LIST_ACCOUNTS,hbciListAccounts,false +52571,69eeb62a-2061-4ac4-9109-497be7f001bd,LIST_TRANSACTIONS,hbciListTransactions,false +52572,69eeb62a-2061-4ac4-9109-497be7f001bd,AUTHORIZATION,,false +52573,69eeb62a-2061-4ac4-9109-497be7f001bd,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52574,69eeb62a-2061-4ac4-9109-497be7f001bd,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52575,69eeb62a-2061-4ac4-9109-497be7f001bd,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52576,149ac3bb-e508-41e8-bf32-20b1ff085243,LIST_ACCOUNTS,xs2aListAccounts,true -52577,149ac3bb-e508-41e8-bf32-20b1ff085243,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52577,149ac3bb-e508-41e8-bf32-20b1ff085243,LIST_TRANSACTIONS,xs2aListTransactions,true 52578,149ac3bb-e508-41e8-bf32-20b1ff085243,AUTHORIZATION,,true 52579,149ac3bb-e508-41e8-bf32-20b1ff085243,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52580,149ac3bb-e508-41e8-bf32-20b1ff085243,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52581,149ac3bb-e508-41e8-bf32-20b1ff085243,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52582,7cdba5a6-fead-4b9f-8c4a-ed2010528ad5,LIST_ACCOUNTS,hbciListAccounts,false -52583,7cdba5a6-fead-4b9f-8c4a-ed2010528ad5,LIST_TRANSACTIONS,hbciListTransactions,false -52584,7cdba5a6-fead-4b9f-8c4a-ed2010528ad5,AUTHORIZATION,,false -52585,7cdba5a6-fead-4b9f-8c4a-ed2010528ad5,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52586,7cdba5a6-fead-4b9f-8c4a-ed2010528ad5,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52587,7cdba5a6-fead-4b9f-8c4a-ed2010528ad5,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52582,331680b0-ed46-4376-b52a-92bb06027c7e,LIST_ACCOUNTS,hbciListAccounts,false +52583,331680b0-ed46-4376-b52a-92bb06027c7e,LIST_TRANSACTIONS,hbciListTransactions,false +52584,331680b0-ed46-4376-b52a-92bb06027c7e,AUTHORIZATION,,false +52585,331680b0-ed46-4376-b52a-92bb06027c7e,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52586,331680b0-ed46-4376-b52a-92bb06027c7e,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52587,331680b0-ed46-4376-b52a-92bb06027c7e,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52588,e1b1f554-53b3-4405-9189-c4194ae5896a,LIST_ACCOUNTS,xs2aListAccounts,true -52589,e1b1f554-53b3-4405-9189-c4194ae5896a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52589,e1b1f554-53b3-4405-9189-c4194ae5896a,LIST_TRANSACTIONS,xs2aListTransactions,true 52590,e1b1f554-53b3-4405-9189-c4194ae5896a,AUTHORIZATION,,true 52591,e1b1f554-53b3-4405-9189-c4194ae5896a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52592,e1b1f554-53b3-4405-9189-c4194ae5896a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52593,e1b1f554-53b3-4405-9189-c4194ae5896a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52594,a234d0eb-4b22-49a9-99b0-51048126b6dc,LIST_ACCOUNTS,hbciListAccounts,false -52595,a234d0eb-4b22-49a9-99b0-51048126b6dc,LIST_TRANSACTIONS,hbciListTransactions,false -52596,a234d0eb-4b22-49a9-99b0-51048126b6dc,AUTHORIZATION,,false -52597,a234d0eb-4b22-49a9-99b0-51048126b6dc,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52598,a234d0eb-4b22-49a9-99b0-51048126b6dc,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52599,a234d0eb-4b22-49a9-99b0-51048126b6dc,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52594,f68ee3f3-1187-4fbe-a898-b567e02d251d,LIST_ACCOUNTS,hbciListAccounts,false +52595,f68ee3f3-1187-4fbe-a898-b567e02d251d,LIST_TRANSACTIONS,hbciListTransactions,false +52596,f68ee3f3-1187-4fbe-a898-b567e02d251d,AUTHORIZATION,,false +52597,f68ee3f3-1187-4fbe-a898-b567e02d251d,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52598,f68ee3f3-1187-4fbe-a898-b567e02d251d,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52599,f68ee3f3-1187-4fbe-a898-b567e02d251d,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52600,7f1db362-b766-4e4d-922f-44d6db95755f,LIST_ACCOUNTS,xs2aListAccounts,true -52601,7f1db362-b766-4e4d-922f-44d6db95755f,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52601,7f1db362-b766-4e4d-922f-44d6db95755f,LIST_TRANSACTIONS,xs2aListTransactions,true 52602,7f1db362-b766-4e4d-922f-44d6db95755f,AUTHORIZATION,,true 52603,7f1db362-b766-4e4d-922f-44d6db95755f,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52604,7f1db362-b766-4e4d-922f-44d6db95755f,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52605,7f1db362-b766-4e4d-922f-44d6db95755f,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52606,8ea71ae0-7605-4bc3-8e14-2938b67332a2,LIST_ACCOUNTS,hbciListAccounts,false -52607,8ea71ae0-7605-4bc3-8e14-2938b67332a2,LIST_TRANSACTIONS,hbciListTransactions,false -52608,8ea71ae0-7605-4bc3-8e14-2938b67332a2,AUTHORIZATION,,false -52609,8ea71ae0-7605-4bc3-8e14-2938b67332a2,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52610,8ea71ae0-7605-4bc3-8e14-2938b67332a2,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52611,8ea71ae0-7605-4bc3-8e14-2938b67332a2,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52606,3c0b5b3d-b3cb-4ab5-b54b-c51a7027c3b4,LIST_ACCOUNTS,hbciListAccounts,false +52607,3c0b5b3d-b3cb-4ab5-b54b-c51a7027c3b4,LIST_TRANSACTIONS,hbciListTransactions,false +52608,3c0b5b3d-b3cb-4ab5-b54b-c51a7027c3b4,AUTHORIZATION,,false +52609,3c0b5b3d-b3cb-4ab5-b54b-c51a7027c3b4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52610,3c0b5b3d-b3cb-4ab5-b54b-c51a7027c3b4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52611,3c0b5b3d-b3cb-4ab5-b54b-c51a7027c3b4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52612,89b6361f-eb7b-4948-9015-621c1803755d,LIST_ACCOUNTS,xs2aListAccounts,true -52613,89b6361f-eb7b-4948-9015-621c1803755d,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52613,89b6361f-eb7b-4948-9015-621c1803755d,LIST_TRANSACTIONS,xs2aListTransactions,true 52614,89b6361f-eb7b-4948-9015-621c1803755d,AUTHORIZATION,,true 52615,89b6361f-eb7b-4948-9015-621c1803755d,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52616,89b6361f-eb7b-4948-9015-621c1803755d,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52617,89b6361f-eb7b-4948-9015-621c1803755d,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52618,87817506-b84b-43c4-942f-9930a4304310,LIST_ACCOUNTS,hbciListAccounts,false -52619,87817506-b84b-43c4-942f-9930a4304310,LIST_TRANSACTIONS,hbciListTransactions,false -52620,87817506-b84b-43c4-942f-9930a4304310,AUTHORIZATION,,false -52621,87817506-b84b-43c4-942f-9930a4304310,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52622,87817506-b84b-43c4-942f-9930a4304310,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52623,87817506-b84b-43c4-942f-9930a4304310,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52618,06fe2758-09df-407d-9636-22083a7c7581,LIST_ACCOUNTS,hbciListAccounts,false +52619,06fe2758-09df-407d-9636-22083a7c7581,LIST_TRANSACTIONS,hbciListTransactions,false +52620,06fe2758-09df-407d-9636-22083a7c7581,AUTHORIZATION,,false +52621,06fe2758-09df-407d-9636-22083a7c7581,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52622,06fe2758-09df-407d-9636-22083a7c7581,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52623,06fe2758-09df-407d-9636-22083a7c7581,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false 52624,9aadfe5c-bd01-4afc-96e7-7bceced5415a,LIST_ACCOUNTS,xs2aListAccounts,true -52625,9aadfe5c-bd01-4afc-96e7-7bceced5415a,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true +52625,9aadfe5c-bd01-4afc-96e7-7bceced5415a,LIST_TRANSACTIONS,xs2aListTransactions,true 52626,9aadfe5c-bd01-4afc-96e7-7bceced5415a,AUTHORIZATION,,true 52627,9aadfe5c-bd01-4afc-96e7-7bceced5415a,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true 52628,9aadfe5c-bd01-4afc-96e7-7bceced5415a,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true 52629,9aadfe5c-bd01-4afc-96e7-7bceced5415a,GET_PAYMENT_STATUS,xs2aGetPaymentStatusState,true -52630,fe5043cf-c1a4-4921-a659-1627ff1dd706,LIST_ACCOUNTS,hbciListAccounts,false -52631,fe5043cf-c1a4-4921-a659-1627ff1dd706,LIST_TRANSACTIONS,hbciListTransactions,false -52632,fe5043cf-c1a4-4921-a659-1627ff1dd706,AUTHORIZATION,,false -52633,fe5043cf-c1a4-4921-a659-1627ff1dd706,SINGLE_PAYMENT,hbciInitiateSinglePayment,false -52634,fe5043cf-c1a4-4921-a659-1627ff1dd706,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false -52635,fe5043cf-c1a4-4921-a659-1627ff1dd706,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false +52630,d7ef4509-d0bb-4f55-bf9e-fb9c423c57d4,LIST_ACCOUNTS,hbciListAccounts,false +52631,d7ef4509-d0bb-4f55-bf9e-fb9c423c57d4,LIST_TRANSACTIONS,hbciListTransactions,false +52632,d7ef4509-d0bb-4f55-bf9e-fb9c423c57d4,AUTHORIZATION,,false +52633,d7ef4509-d0bb-4f55-bf9e-fb9c423c57d4,SINGLE_PAYMENT,hbciInitiateSinglePayment,false +52634,d7ef4509-d0bb-4f55-bf9e-fb9c423c57d4,GET_PAYMENT_INFORMATION,hbciGetPaymentInfoState,false +52635,d7ef4509-d0bb-4f55-bf9e-fb9c423c57d4,GET_PAYMENT_STATUS,hbciGetPaymentStatusState,false diff --git a/opba-db/src/main/resources/migration/migrations/bank_profile_data.csv b/opba-db/src/main/resources/migration/migrations/bank_profile_data.csv index 2bcdcf897f..1f50733890 100644 --- a/opba-db/src/main/resources/migration/migrations/bank_profile_data.csv +++ b/opba-db/src/main/resources/migration/migrations/bank_profile_data.csv @@ -1,3554 +1,3554 @@ uuid,name,bic,url,adapter_id,bank_code,idp_url,aspsp_sca_approaches -3d9c7670-9e0d-47cd-b44c-e1cf4bdcd248,HBCI Bundesbank,MARKDEF1100,,hbci-verlag-adapter,10000000,, -62002935-7149-4a55-950d-5f6449324509,HBCI Isbank Berlin,ISBKDEFXXXX,,hbci-verlag-adapter,10130600,, -441d8b65-e5a9-4336-ab40-9e79d31cf9a5,HBCI Isbank Hamburg,ISBKDEFXXXX,,hbci-verlag-adapter,20230600,, -125cfe30-e4e2-4d28-af25-5edb2a5c34d6,HBCI Bundesbank,MARKDEF1130,,hbci-verlag-adapter,13000000,, -55afeaac-b0e8-431d-a986-2cd2ccca0bd7,HBCI Bundesbank,MARKDEF1150,,hbci-verlag-adapter,15000000,, -7b6aaf43-cdbc-46f1-8340-9284ef204cff,HBCI Bundesbank,MARKDEF1200,,hbci-verlag-adapter,20000000,, -3a88f923-0107-44fc-92a1-24b4fbb8e86e,HBCI Bundesbank eh Kiel,MARKDEF1210,,hbci-verlag-adapter,21000000,, -c55ba97e-c1e1-4168-938f-42bddc0a7158,HBCI Bundesbank eh Luebeck,MARKDEF1230,,hbci-verlag-adapter,23000000,, -73c2eac1-0544-412a-aba3-5184d45070de,HBCI Bundesbank,MARKDEF1250,,hbci-verlag-adapter,25000000,, -b6e3e88d-8c86-46f6-a4a9-118115ce0157,HBCI Bundesbank,MARKDEF1260,,hbci-verlag-adapter,26000000,, -c029102c-b704-4df3-9869-42bfdc853f02,HBCI Bundesbank,MARKDEF1265,,hbci-verlag-adapter,26500000,, -271c7d93-b97b-4489-ba1d-08e6edd85dfb,HBCI Bundesbank,MARKDEF1280,,hbci-verlag-adapter,28000000,, -6176c865-9de8-41fc-88f6-ceb31adfae77,HBCI Bundesbank eh Bremen,MARKDEF1290,,hbci-verlag-adapter,29000000,, -d1562cc6-eaaf-48e1-8556-4735e00e4ba8,HBCI Bundesbank,MARKDEF1300,,hbci-verlag-adapter,30000000,, -170f52de-e818-4228-b98f-bee689a1aec4,HBCI Bundesbank,MARKDEF1360,,hbci-verlag-adapter,36000000,, -4f7f854e-57a6-4e03-a2f2-23f84399da64,HBCI Bundesbank,MARKDEF1370,,hbci-verlag-adapter,37000000,, -5f4cd33d-862a-4bc1-b61e-151a24bd9502,HBCI Bundesbank,MARKDEF1430,,hbci-verlag-adapter,43000000,, -6f0c6e87-403a-4537-a4c8-1a456ee66031,HBCI Bundesbank,MARKDEF1440,,hbci-verlag-adapter,44000000,, -984e6ac2-ca6c-4fd2-85de-4cce0f0e5004,HBCI Bundesbank,MARKDEF1450,,hbci-verlag-adapter,45000000,, -e9d818be-ffd0-4a62-b55a-c625df44ef75,HBCI Deutsche Bundesbank Filiale Dortmund (Bargeldzentrum),MARKDEF1470,,hbci-verlag-adapter,47000000,, -2277db63-ed62-43b8-856e-7f58e53904b6,HBCI Bundesbank,MARKDEF1480,,hbci-verlag-adapter,48000000,, -6361905f-bc2e-43b6-8e19-69252d6e384e,HBCI Bundesbank,MARKDEF1500,,hbci-verlag-adapter,50000000,, -d997683b-3458-4faa-81e1-57f830cc4b1c,HBCI Bundesbank Zentrale,MARKDEFFXXX,,hbci-verlag-adapter,50400000,, -442ed5a7-983e-4874-aaf0-633704ce63ea,HBCI Bundesbank eh Giessen,MARKDEF1513,,hbci-verlag-adapter,51300000,, -ef95f840-1652-41e5-9d41-d84a831495f2,HBCI Bundesbank,MARKDEF1545,,hbci-verlag-adapter,54500000,, -01b34677-d245-4748-b4b6-9bf427b1627b,HBCI Bundesbank,MARKDEF1550,,hbci-verlag-adapter,55000000,, -ae639ccb-8c1a-4c47-bdbb-b267d49b95f2,HBCI Bundesbank,MARKDEF1570,,hbci-verlag-adapter,57000000,, -679b4ea3-fc09-407c-87a4-9d79fea17ba3,HBCI Bundesbank,MARKDEF1590,,hbci-verlag-adapter,59000000,, -d8fce8a7-f39f-4db6-8dbc-f6e35b0f7de3,HBCI Bundesbank,MARKDEF1600,,hbci-verlag-adapter,60000000,, -f608ac2c-7d95-4cca-b2d6-42d2a2966c53,HBCI Bundesbank,MARKDEF1630,,hbci-verlag-adapter,63000000,, -ecc6b809-0c33-403d-94b9-da80342989ff,HBCI Bundesbank,MARKDEF1640,,hbci-verlag-adapter,64000000,, -350221d4-ae48-4ac0-8b15-a3112a3c9435,HBCI Bundesbank,MARKDEF1660,,hbci-verlag-adapter,66000000,, -95941ebd-6eb3-4a51-80b9-a1e9dc7476ab,HBCI Bundesbank,MARKDEF1680,,hbci-verlag-adapter,68000000,, -7ec14f6a-fc5f-45d4-a361-b6e223301d36,HBCI Bundesbank,MARKDEF1694,,hbci-verlag-adapter,69400000,, -5becb90a-0cfa-4d1f-a54d-39cec48ff2a5,HBCI Bundesbank,MARKDEF1700,,hbci-verlag-adapter,70000000,, -cb8ace8f-3130-49a0-a31b-f9805270a118,HBCI Bundesbank,MARKDEF1720,,hbci-verlag-adapter,72000000,, -e2b1bf7a-2a6c-41f0-b4b4-4f8dc5c86ac8,HBCI Bundesbank,MARKDEF1750,,hbci-verlag-adapter,75000000,, -676ac5d4-c5c4-4ab9-a710-69b36df49b8b,HBCI Bundesbank,MARKDEF1760,,hbci-verlag-adapter,76000000,, -e1bd2e93-3b72-4f79-a750-2f990b535f13,HBCI Bundesbank eh Bayreuth,MARKDEF1773,,hbci-verlag-adapter,77300000,, -7645a4f3-4d3b-4aeb-b0be-8294324d4edb,HBCI Bundesbank,MARKDEF1790,,hbci-verlag-adapter,79000000,, -d7d3285f-32cc-4f8a-86ff-8cab5dd1aee6,HBCI Bundesbank,MARKDEF1810,,hbci-verlag-adapter,81000000,, -52d0f5e0-8a56-4f8a-8de1-e1cf4b8105a0,HBCI Bundesbank,MARKDEF1820,,hbci-verlag-adapter,82000000,, -19493bb0-e8d3-4170-9bc3-141ec554bcd1,HBCI Bundesbank eh Dresden,MARKDEF1850,,hbci-verlag-adapter,85000000,, -ffe54ee7-c3e2-480b-8719-c0987cc371e4,HBCI Bundesbank,MARKDEF1860,,hbci-verlag-adapter,86000000,, -8e6977b9-15af-4eb8-84f3-5d2a42792fd0,HBCI Bundesbank,MARKDEF1870,,hbci-verlag-adapter,87000000,, -a9f79334-e837-4b16-a39c-fa5f50d563f0,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,35640064,, -dd555e8e-6cbf-4959-a70d-78dd7748e7e4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,36040039,, -ac6a9be7-1d38-40a2-aff9-cf73a2f94b14,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,36040060,, -1dacb021-80d5-459b-9c5e-99f3985e06f6,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,36040061,, -814bc878-c63b-4105-b6d0-ad6302909f90,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,36040085,, -ee249d57-48bd-49d4-a2cb-8220913543d6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF360,,hbci-commerzbank-adapter,36080080,, -03ed09dd-273a-483d-82ad-a6457208e047,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI66,,hbci-commerzbank-adapter,36080085,, -ca9bfb0d-9084-49c0-b26f-4c6446013d80,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI17,,hbci-commerzbank-adapter,36089321,, -feca85a4-f356-4347-89ad-7b1903551938,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,36240045,, -362d4aea-0090-4182-910f-6d8546b2ce2b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF362,,hbci-commerzbank-adapter,36280071,, -15b41717-bd45-4c43-be5d-cfe15be8d3d9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,36540046,, -40f4d3f2-5a17-4a41-b1f0-9e766320e815,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF365,,hbci-commerzbank-adapter,36580072,, -c8ce8705-2155-4a29-b5b6-39b087de6332,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,37040037,, -1a94fd3e-c0a6-47f3-b03a-f8740ff63a28,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,37040044,, -5ba01041-8305-44a0-b0c8-89282c78ad7c,HBCI Commerzbank GF-K48,COBADEFFXXX,,hbci-commerzbank-adapter,37040048,, -6eb61c1a-32d5-4e06-ba06-223f05e3f409,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,37040060,, -3a2d4856-e539-44b4-b647-9eaaf00a94b3,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,37040061,, -31c72f9e-19f8-4ade-93f8-ff3e126c7bed,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF370,,hbci-commerzbank-adapter,37080040,, -436b273c-2fa4-4b89-85f0-70cc8c6df4b6,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 1,DRESDEFFI51,,hbci-commerzbank-adapter,37080085,, -aa9674cd-b08f-4edd-b843-9d77362be0fc,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI67,,hbci-commerzbank-adapter,37080086,, -7fbf7d11-ef87-4065-8de4-d8170d570b90,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI96,,hbci-commerzbank-adapter,37080087,, -bc8dc3cc-efc8-4c4a-9b73-8b1a91b55ea8,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI97,,hbci-commerzbank-adapter,37080088,, -ef58cf6b-311f-486d-9bc2-c2439609d1f9,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFI98,,hbci-commerzbank-adapter,37080089,, -aefd5d59-5da5-4866-9805-1b4e68ef0e23,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 8,DRESDEFFJ01,,hbci-commerzbank-adapter,37080090,, -a865da97-8a58-4297-873c-fc9359a98d5c,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 9,DRESDEFFJ02,,hbci-commerzbank-adapter,37080091,, -1e24f8c7-d6bd-4978-af09-a5b9678dd27d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 10,DRESDEFFJ03,,hbci-commerzbank-adapter,37080092,, -d8e74757-21b6-475a-a889-54964898bdb3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 11,DRESDEFFJ04,,hbci-commerzbank-adapter,37080093,, -744f620b-bf66-4f66-aefd-006ba5baf2a3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 12,DRESDEFFJ05,,hbci-commerzbank-adapter,37080094,, -07776746-5563-45ef-95d9-6afa33368555,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 13,DRESDEFFJ06,,hbci-commerzbank-adapter,37080095,, -2a7a6ad9-3f2b-4a91-b98b-17e68f5b7415,HBCI Commerzbank vormals Dresdner Bank Zw 96,DRESDEFFXXX,,hbci-commerzbank-adapter,37080096,, -f274708e-26d2-467c-ba35-e26084a9b9c2,HBCI Commerzbank vormals Dresdner Bank Zw 97,DRESDEFFXXX,,hbci-commerzbank-adapter,37080097,, -9812f101-41c7-4595-bca1-c271c4565149,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 14,DRESDEFFJ07,,hbci-commerzbank-adapter,37080098,, -c022ce5c-cfe6-4848-b044-f1c34ca7257c,HBCI Commerzbank vormals Dresdner Bank Zw 99,DRESDEFFI36,,hbci-commerzbank-adapter,37080099,, -b46efb62-264d-4cd8-900d-5a2b219cd35a,HBCI Commerzbank vormals Dresdner Bank ITGK I,DRESDEFFI04,,hbci-commerzbank-adapter,37089340,, -e6dfc446-2b79-4f2e-8c6b-e1cb8a037a2d,HBCI Commerzbank vormals Dresdner Bank ITGK II,DRESDEFFI05,,hbci-commerzbank-adapter,37089342,, -c27bc29d-fad7-43cd-85ab-4478275da8f6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,37540050,, -424e507d-00f8-438f-92db-ff807e1fb34d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,38040007,, -fa14d5b8-aa97-4e17-800d-146371a55ff4,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF380,,hbci-commerzbank-adapter,38080055,, -6e632999-32f3-4b66-a165-9131a78e7453,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,38440016,, -eec8632b-0e40-4ca7-b987-26c1f147671d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,39040013,, -9ade1207-ed69-4f6f-aacd-399ac35f3b31,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF390,,hbci-commerzbank-adapter,39080005,, -ee427df9-e277-440c-b5df-ab43d9a8fb75,HBCI Commerzbank vormals Dresdner Bank Zw 98,DRESDEFFI37,,hbci-commerzbank-adapter,39080098,, -fbb96620-d46d-4a4c-8c9f-f1f4ebae03e9,HBCI Commerzbank vormals Dresdner Bank Zw 99,DRESDEFFI38,,hbci-commerzbank-adapter,39080099,, -cf9d3252-f6a3-4448-8e1d-41c29b1ccb02,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,39540052,, -3ab3ad68-716f-4cd3-89c5-61c2969682bf,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF395,,hbci-commerzbank-adapter,39580041,, -b346981e-6cab-4970-ba84-66edf308681f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,40040028,, -27505cd4-b10d-4668-b31f-209790626d39,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF400,,hbci-commerzbank-adapter,40080040,, -b4bc1f1d-91fe-4586-a0da-9113659db932,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI68,,hbci-commerzbank-adapter,40080085,, -f0f0debd-e1ce-4b39-9b99-bec429ee84b4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,40340030,, -7788c5aa-ff61-47f7-a75a-ce340e362304,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41040018,, -2b3fda8c-4e05-4368-98be-37a52ba02ae7,HBCI ZTB der Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41041000,, -61579d30-6ea5-4603-8c6f-923688fd9fe4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41240048,, -1b5beb95-4b6f-4276-b61a-34e89c0c02d9,HBCI Santander Consumer Bank,AKBCDE31XXX,,hbci-santander-adapter,37020600,, -96933da8-b1a0-46c8-8f92-1c55ea60cdd9,HBCI Santander Consumer Bank,BSCHDEFFXXX,,hbci-santander-adapter,50320500,, -2f9f7a99-2ed7-438e-8f5d-cd65081b49b1,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,10033300,, -d0c378f4-8fc1-4502-82cf-d89d08baef52,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,20133300,, -48993438-6922-420a-b75b-d7174b278400,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,25020600,, -d006794a-c3a7-455b-95b5-7b7bcf342c84,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,31010833,, -8097cab4-37bd-40b9-9a5f-d2c0011240f8,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,36033300,, -3fca93f7-b71d-4f49-832c-893925a93097,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,50033300,, -f73787bb-00fc-4343-adb7-38a57ebc5382,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,55033300,, -3a3c963d-073d-4cd9-8ecc-04ee2418cdcc,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,60133300,, -b499194f-b12b-4971-98c9-8e6e4f672c5c,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,70133300,, -9d4651de-56b2-4df8-aec4-5caa2d7355c1,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,86033300,, -2dbf5567-303b-4d1d-96e5-fd55bc1b19a6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBBER,,hbci-deutsche-bank-adapter,10070024,, -83e3fe5d-4464-49cc-a3ed-5afff15bd05e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM488,,hbci-unicredit-adapter,10020890,, -94304e1f-fed3-44a4-892c-ac01710137fe,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM470,,hbci-unicredit-adapter,16020086,, -a9b834d7-5caa-4238-91e4-ccb26ee39800,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM471,,hbci-unicredit-adapter,17020086,, -1fb8b0c3-b066-43e2-81a0-3123675907e7,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM472,,hbci-unicredit-adapter,18020086,, -9975bf38-b1f0-4b44-8e7e-7a5023a4c6ae,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM300,,hbci-unicredit-adapter,20030000,, -d97ad8a0-c385-4b4d-b96f-c6d89e173db4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM414,,hbci-unicredit-adapter,30220190,, -8433bc1b-2e86-4a0a-8ae5-da44f3a7d686,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM809,,hbci-unicredit-adapter,33020190,, -7175e641-da6e-4477-91f3-fdda39e51ff2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM360,,hbci-unicredit-adapter,36020186,, -ec7dad0a-4f53-4d08-9ab3-4017017913db,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM429,,hbci-unicredit-adapter,37020090,, -a963b1fa-37e8-4c55-970b-0a9e285a61d4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM402,,hbci-unicredit-adapter,38020090,, -dc2cf0fa-cf72-4b3a-a0da-2c460e8a5a6e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM808,,hbci-unicredit-adapter,44020090,, -c5558ffd-9e17-42db-adce-752a46fba6e4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM344,,hbci-unicredit-adapter,48020086,, -31071ada-ba83-4480-8148-6711b539a8f9,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM430,,hbci-unicredit-adapter,50320191,, -203d7ea6-c144-4008-b415-81bffbed4a83,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM467,,hbci-unicredit-adapter,50520190,, -6a5e1656-4032-46b0-9381-ac7373a68169,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM487,,hbci-unicredit-adapter,50820292,, -ffbf143f-c6ca-4e27-9fdd-22e046c12d35,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM478,,hbci-unicredit-adapter,51020186,, -040c3c05-5434-4d4c-a706-b6fad7a221c8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM482,,hbci-unicredit-adapter,54020090,, -1a40942f-937f-4758-9d59-a0b2777764bc,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM485,,hbci-unicredit-adapter,54220091,, -cb72d59e-a0a6-4f1a-aff9-d07006f3e11d,HBCI BNP Paribas Germany Consorsbank,CSDBDE71XXX,,hbci-consors-bank-adapter,76030080,, -4bd4bce1-4941-40ef-8fce-de1c925c0388,HBCI Sydbank A/S Filiale Flensburg,SYBKDE22XXX,,hbci-verlag-adapter,21510600,, -d909f30d-50ba-44fe-aeb8-ee381a39f79d,HBCI HSBC Trinkaus & Burkhardt AG,TUBDDEDDXXX,,hbci-verlag-adapter,30030880,, -8a635568-3ea6-40da-a576-6009a2babd91,HBCI HSBC Trinkaus & Burkhardt AG,TUBDDEDDXXX,,hbci-verlag-adapter,30030889,, -812eee6a-7d69-43e8-a219-39fb1d47e4f6,HBCI Isbank Duesseldorf,ISBKDEFXDUS,,hbci-verlag-adapter,30130600,, -effe5bda-de7f-4a40-99a2-2670de463276,HBCI Degussa Bank AG,DEGUDEFFXXX,,hbci-verlag-adapter,50010700,, -2de4884e-beb1-4e00-8a3f-da5493417e02,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,25621327,, -9da21b84-ec22-472b-847f-f14f7949cb38,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26520017,, -408b9d74-f5a1-4c45-a89c-d5f7f8993e75,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26521703,, -e98c27a8-9da4-41b0-8886-db5e154a28b8,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26522319,, -8ff4d8cc-cedd-4fd7-b3d2-736067a0c483,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26620010,, -ac06ba1c-1ae3-432f-be3e-8c1029e3511f,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26621413,, -c536ca9c-1411-4d20-9e8e-52391ae35a8f,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26720028,, -c18e80b0-ab7d-474a-a250-aa6db66f2c62,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28020050,, -29589b8b-d805-42fc-b0f5-2ac9a3cd0620,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021002,, -9ecabb59-894d-48e5-a86e-e6ab45d9d4b3,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021301,, -3017c4d2-0aab-4e95-80a7-866ce707d902,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021504,, -3f23f6ec-9c38-4c6c-86ac-d776eb77a0b9,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021623,, -84722965-dd0c-49f2-a96a-ac5b8394395b,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021705,, -f9d44fe5-583b-4399-9c58-797d592db3d0,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021906,, -063119f9-2baf-4c22-88cb-e082113389e1,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022015,, -0025d1ef-f980-47c3-a1be-65456c22d031,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022412,, -bc72098e-fcaa-431f-98b2-50818b8738b3,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022511,, -f1702083-7457-4dc5-976a-029e8c62939c,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022620,, -984713bf-54ed-415c-a71f-4bdd4572392b,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022822,, -e10ecf4e-3034-4981-b8ce-89cb6fff1ef4,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28023224,, -c66d5f14-62df-4d73-b60f-77a686955a50,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28023325,, -25014186-6118-4f72-a4a9-4fb6bbda4d46,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28220026,, -7554e417-3832-42c9-bb45-6f7436b1b52d,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28222208,, -aaeb718b-9b56-49ce-bb60-0dcd71accfda,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28222621,, -ecb6b0e3-3ee1-4ad3-8972-79da6ad8335d,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28320014,, -1c419998-2493-4c0b-b174-fc20051ca38d,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28321816,, -d763b078-8c24-4bcf-b397-3e7cdaa269e2,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28420007,, -9efc0946-f0b3-459c-b2f4-4a1e2ed70e0e,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28421030,, -5ab15074-a3fe-4ac3-b1cd-6d9fa1900590,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28520009,, -f4194af8-1199-4ce5-b73d-2d3184333fe1,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28521518,, -dbaec203-b8c1-452c-9975-a9cea85bc4ee,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,29121731,, -6cb36b07-ab07-4193-a48c-394a9fd365d7,HBCI ZIRAAT BANK INTERNATIONAL AG Hauptverwaltung,TCZBDEFFXXX,,hbci-verlag-adapter,51220700,, -9f3c90b6-ab65-422e-a104-db9314c10789,HBCI DAB,DABBDEMMXXX,,hbci-dab-bank-adapter,70120400,, -c014d8e6-9c85-45d4-be01-0c6039a68de2,HBCI Net Bank,GENODEF1S15,,hbci-finapi-adapter,,, -f89d1c2b-f76e-488a-9a6d-2c27ff657af3,HBCI AAB Bank,AUGBDE77XXX,,hbci-finapi-adapter,,, -e8e19e5a-e526-4d84-9adf-a3917ca272bf,HBCI Isbank Koeln,ISBKDEFXKOL,,hbci-verlag-adapter,37030800,, -bdfaa257-106b-41d3-b6ef-1f9c49925531,HBCI Isbank Gelsenkirchen,ISBKDEFXGEL,,hbci-verlag-adapter,42030600,, -631be2ab-dc16-429c-8863-b8b1667fb023,HBCI Isbank,ISBKDEFXXXX,,hbci-verlag-adapter,50230600,, -b8f252cb-4563-46f0-9cfe-cca612841f82,HBCI Isbank Stuttgart,ISBKDEFXSTU,,hbci-verlag-adapter,60030900,, -1632dfec-181d-4bc8-b637-24240ac879cb,HBCI Isbank Mannheim,ISBKDEFXXXX,,hbci-verlag-adapter,66030600,, -3212459f-a6fe-49bd-bd83-a9741c3653e6,HBCI Isbank Muenchen,ISBKDEFXMUN,,hbci-verlag-adapter,70230600,, -58c608e2-0c55-42c6-bcbf-e0e05d040207,HBCI Isbank Nuernberg,ISBKDEFXNUR,,hbci-verlag-adapter,76030600,, -9c249148-30ff-4333-bc51-60dfa5b7f875,HBCI Europäisch-Iranische Handelsbank AG,EIHBDEHHXXX,,hbci-verlag-adapter,20310300,, -1429e580-f0a6-4bae-b6a1-af1b62747cee,HBCI BNP Paribas Personal Finance SA Niederlassung Österreich,GEBAATWWXXX,,hbci-verlag-adapter,,, -1d91783e-713b-4731-801f-e0cf3cfc367d,HBCI Ing Bank N.V.,INGDDEFFXXX,,hbci-ing-adapter,50010517,, -e3235b5b-1a23-49ee-9a9e-7d4c69fdba66,HBCI Deutsche Bank AG,DEUTDE,,hbci-deutsche-bank-adapter,,, -dcefb2be-5da4-4c90-8cb0-72c9b7aac4d0,HBCI Norisbank,NORSDE51XXX,,hbci-deutsche-bank-adapter,10077777,, -23c09031-5747-4273-8c98-856d4753fd95,HBCI Norisbank,NORSDE71XXX,,hbci-deutsche-bank-adapter,76026000,, -59cd2786-7b3a-404b-afb9-9ab010767a71,HBCI Deutsche Bank Fil Berlin,DEUTDEBBXXX,,hbci-deutsche-bank-adapter,10070000,, -d4d030c5-d7fa-474e-b786-550a8a0edc16,HBCI Deutsche Bank Fil Berlin II,DEUTDEBB101,,hbci-deutsche-bank-adapter,10070100,, -3de8db3e-0781-4d48-a359-7a40f02f74bd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB101,,hbci-deutsche-bank-adapter,10070124,, -7bac5ca5-eb22-4525-b1e9-200ed50f53b3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB110,,hbci-deutsche-bank-adapter,10070848,, -1cdaefd1-a0a4-4724-97f1-902a1f4d8daf,HBCI Deutsche Bank Ld Brandenbg,DEUTDEBB160,,hbci-deutsche-bank-adapter,12070000,, -4d59fc89-5523-4209-a744-f8e2a48a8e17,HBCI Deutsche Bank Bad Freienwde,DEUTDEBB172,,hbci-deutsche-bank-adapter,12070000,, -4496617e-eb07-475f-95eb-f8d42c0843fa,HBCI Deutsche Bank Bernau,DEUTDEBB122,,hbci-deutsche-bank-adapter,12070000,, -e9ecd271-0b03-40ea-8c67-492b11768133,HBCI Deutsche Bank Brandenburg,DEUTDEBB161,,hbci-deutsche-bank-adapter,12070000,, -a21658e7-dabf-4a6f-a992-90266affbd90,HBCI Deutsche Bank Cottbus,DEUTDEBB180,,hbci-deutsche-bank-adapter,12070000,, -bbd8db6e-0b7e-4799-ae06-623b7d4435f2,HBCI Deutsche Bank Eberswalde,DEUTDEBB173,,hbci-deutsche-bank-adapter,12070000,, -ea39c4cf-a3f5-436f-a408-18085e799a09,HBCI Deutsche Bank Eisenhüttenst,DEUTDEBB174,,hbci-deutsche-bank-adapter,12070000,, -92eac8f1-ab2b-4a8a-b079-fa97d307c044,HBCI Deutsche Bank Finsterwalde,DEUTDEBB182,,hbci-deutsche-bank-adapter,12070000,, -38f0313a-449d-4331-8ec7-e8c0eda849b0,HBCI Deutsche Bank Frankfurt Od,DEUTDEBB170,,hbci-deutsche-bank-adapter,12070000,, -b3b6e431-4549-41f2-aa63-5fab8bd8625e,HBCI Deutsche Bank Fürstenwalde,DEUTDEBB175,,hbci-deutsche-bank-adapter,12070000,, -79e05da0-2e38-4663-8a5b-0951d58230c0,HBCI Deutsche Bank Jüterbog,DEUTDEBB187,,hbci-deutsche-bank-adapter,12070000,, -fd121a00-daf9-4c57-a838-5ff4f5f44682,HBCI Deutsche Bank Königs Wuster,DEUTDEBB121,,hbci-deutsche-bank-adapter,12070000,, -ab83426a-e782-4b32-9945-3e1d9db09482,HBCI Deutsche Bank Kyritz,DEUTDEBB163,,hbci-deutsche-bank-adapter,12070000,, -e5f0830e-e8bb-477e-be5a-07caef32fad3,HBCI Deutsche Bank Neuruppin,DEUTDEBB123,,hbci-deutsche-bank-adapter,12070000,, -3a5fe562-561a-4692-86b0-135d54e7e79b,HBCI Deutsche Bank Oranienburg,DEUTDEBB120,,hbci-deutsche-bank-adapter,12070000,, -291c8c97-cfac-45ef-87bb-ec49401794a0,HBCI Deutsche Bank Pritzwalk,DEUTDEBB166,,hbci-deutsche-bank-adapter,12070000,, -a9e0cfa8-3d87-49ae-9dbc-bea996b75f30,HBCI Deutsche Bank Rathenow,DEUTDEBB167,,hbci-deutsche-bank-adapter,12070000,, -e674ee9a-34d1-4bf6-bc01-f564b4c75318,HBCI Deutsche Bank Schwedt,DEUTDEBB176,,hbci-deutsche-bank-adapter,12070000,, -d01f69ef-c6f3-4b97-8c38-2d7c335351d2,HBCI Deutsche Bank Seelow,DEUTDEBB177,,hbci-deutsche-bank-adapter,12070000,, -ef429e56-5141-400d-abe1-1aea93882ed8,HBCI Deutsche Bank Senftenberg,DEUTDEBB185,,hbci-deutsche-bank-adapter,12070000,, -73bda308-be1c-42cc-8f7f-85e608bd3c4b,HBCI Deutsche Bank Spremberg,DEUTDEBB186,,hbci-deutsche-bank-adapter,12070000,, -3f2fe446-b491-4a5a-b07f-dda1fa09b4ec,HBCI Deutsche Bank Weißwasser,DEUTDEBB189,,hbci-deutsche-bank-adapter,12070000,, -2f29ef20-3fa1-4885-be41-efba54395df6,HBCI Deutsche Bank Guben,DEUTDEBB183,,hbci-deutsche-bank-adapter,12070000,, -c720904f-c28a-4892-8da6-7772d50ba589,HBCI Deutsche Bank Wittstock,DEUTDEBB169,,hbci-deutsche-bank-adapter,12070000,, -4113c68d-4347-4dd3-bec7-9d2c01b5d49e,HBCI Deutsche Bank Zossen,DEUTDEBB124,,hbci-deutsche-bank-adapter,12070000,, -44f7f97d-2abe-4e89-8ab4-6e31bf5b8fe0,HBCI Deutsche Bank Angermünde,DEUTDEBB171,,hbci-deutsche-bank-adapter,12070000,, -c690d504-988a-45cb-9c20-da14a302bf98,HBCI Deutsche Bank Falkensee,DEUTDEBB162,,hbci-deutsche-bank-adapter,12070000,, -901a77b7-0087-48af-89ed-9c18ed8d5cd6,HBCI Deutsche Bank Forst,DEUTDEBB181,,hbci-deutsche-bank-adapter,12070000,, -0c75978d-b593-4dea-ad6f-b3d92e0fb2d5,HBCI Deutsche Bank Hennigsdorf,DEUTDEBB125,,hbci-deutsche-bank-adapter,12070000,, -9371d424-f1a5-494e-9577-3123a04e5dde,HBCI Deutsche Bank Luckenwalde,DEUTDEBB188,,hbci-deutsche-bank-adapter,12070000,, -79a413d3-c972-452f-b2c4-f581ee1062dc,HBCI Deutsche Bank Ludwigsfelde,DEUTDEBB164,,hbci-deutsche-bank-adapter,12070000,, -e983af6d-9919-449a-afb6-cdd27e1222e6,HBCI Deutsche Bank Lübben,DEUTDEBB184,,hbci-deutsche-bank-adapter,12070000,, -3bfb6c21-f3a3-4cc8-9ee1-62dd48d194aa,HBCI Deutsche Bank Schwarzheide,DEUTDEBB126,,hbci-deutsche-bank-adapter,12070000,, -b410c612-5b28-410c-aa03-5b1660eb0e53,HBCI Deutsche Bank Strausberg,DEUTDEBB178,,hbci-deutsche-bank-adapter,12070000,, -abeff93a-373e-469a-9932-36d7c9b06f10,HBCI Deutsche Bank Teltow,DEUTDEBB127,,hbci-deutsche-bank-adapter,12070000,, -3567af74-cbc4-42e3-8751-da0c372c49db,HBCI Deutsche Bank Werder Havel,DEUTDEBB168,,hbci-deutsche-bank-adapter,12070000,, -e61d9123-24e8-42f3-a902-2e345b2ac656,HBCI Deutsche Bank Nauen,DEUTDEBB165,,hbci-deutsche-bank-adapter,12070000,, -2ae74e8a-e3d9-487b-84f9-e449b5e6f758,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB160,,hbci-deutsche-bank-adapter,12070024,, -d3a308f0-27ab-49f9-8aaa-9bc390c92d8c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB171,,hbci-deutsche-bank-adapter,12070024,, -5e35f16f-0ecc-4972-8d2b-f2bb354aec57,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB172,,hbci-deutsche-bank-adapter,12070024,, -15b026b3-f6a8-4809-9e7e-20bb92795a30,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB122,,hbci-deutsche-bank-adapter,12070024,, -7b469ff1-1fc9-45a1-aa3e-6813bce7cc10,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB180,,hbci-deutsche-bank-adapter,12070024,, -3e501091-4fef-44d6-a4b1-2db850046d67,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB173,,hbci-deutsche-bank-adapter,12070024,, -fc0a4588-6b02-4095-918e-b7b873669dbf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB174,,hbci-deutsche-bank-adapter,12070024,, -4396a3a2-d20c-43f4-802f-6c18e0ed1a3c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB162,,hbci-deutsche-bank-adapter,12070024,, -a4c16abf-4e7b-4971-bb4d-2481d5bef20b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB182,,hbci-deutsche-bank-adapter,12070024,, -e5b302fc-364a-4297-8f96-c379b468fafb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB181,,hbci-deutsche-bank-adapter,12070024,, -6e64680e-355f-46b7-a992-b40ab657f056,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB170,,hbci-deutsche-bank-adapter,12070024,, -2d333f9f-6be8-4cf3-ad63-5ab7a42691bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB175,,hbci-deutsche-bank-adapter,12070024,, -c8d5a2ca-e6c6-484b-b7ef-ae28908d0502,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB183,,hbci-deutsche-bank-adapter,12070024,, -d3abe37b-2566-4798-8c13-9dcb170e1faa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB125,,hbci-deutsche-bank-adapter,12070024,, -04cf92d7-6b43-4265-aa52-e3dfbcc9b1de,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB187,,hbci-deutsche-bank-adapter,12070024,, -4e35a43a-a86e-4b87-9847-62a61a6ba2cc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB121,,hbci-deutsche-bank-adapter,12070024,, -b381c6e6-0d0d-4d7b-b8ad-0a05d24e503e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB163,,hbci-deutsche-bank-adapter,12070024,, -dbe7ad42-f88c-4d92-b9ab-3fe4eb4749bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB188,,hbci-deutsche-bank-adapter,12070024,, -7f45b475-98cf-4838-971f-29fa24ead321,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB164,,hbci-deutsche-bank-adapter,12070024,, -68869465-fb3c-4512-abc0-280c870837e0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB184,,hbci-deutsche-bank-adapter,12070024,, -e5b91ed6-4630-46e0-a42e-0dbdd075a751,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB165,,hbci-deutsche-bank-adapter,12070024,, -4e161a02-cc8b-4df5-b4f7-1559201d822e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB123,,hbci-deutsche-bank-adapter,12070024,, -919fa2a8-8119-4fa2-9619-5773d2bc82c4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB120,,hbci-deutsche-bank-adapter,12070024,, -9816808d-46b7-4578-8824-c245a8588bdb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB166,,hbci-deutsche-bank-adapter,12070024,, -c223fed1-757d-46be-8e3b-8778440d9fb8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB167,,hbci-deutsche-bank-adapter,12070024,, -7202cf3e-46c9-42a0-babe-bd4b827e81c6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB126,,hbci-deutsche-bank-adapter,12070024,, -de4fabe1-04e5-464a-9c34-5db35d48de1a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB176,,hbci-deutsche-bank-adapter,12070024,, -27126d9f-221f-42e7-9816-edf673a4049f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB177,,hbci-deutsche-bank-adapter,12070024,, -01c0c315-a537-4adb-8133-271bb9fdef69,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB185,,hbci-deutsche-bank-adapter,12070024,, -0933482f-9ebd-4fec-92de-2c63346d562f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB186,,hbci-deutsche-bank-adapter,12070024,, -6979a2dc-ef8b-4bad-af35-9b903904eee0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB178,,hbci-deutsche-bank-adapter,12070024,, -7b99d2e6-cf1a-46e4-8fe1-de9fe2333250,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB127,,hbci-deutsche-bank-adapter,12070024,, -56181a91-46c0-4972-95f1-d4caedbf93a6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB189,,hbci-deutsche-bank-adapter,12070024,, -090d4adf-3aef-4a36-b350-efa9e67dadd6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB168,,hbci-deutsche-bank-adapter,12070024,, -9fb22e4e-ace1-48cb-9427-2772c9f9ffa5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB169,,hbci-deutsche-bank-adapter,12070024,, -368e1bbe-4e53-4899-ba44-8574a96f2d64,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB124,,hbci-deutsche-bank-adapter,12070024,, -735987e3-9b56-451b-960d-e5bb43053fbe,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB161,,hbci-deutsche-bank-adapter,12070024,, -d9339c2c-82d8-4477-acb4-89b6418b54a4,HBCI Deutsche Bank (Gf intern),DEUTDEFFVAC,,hbci-deutsche-bank-adapter,12070070,, -59b9409b-9977-440d-b61e-b91f7d035072,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBPAL,,hbci-deutsche-bank-adapter,12070088,, -770e5052-a5f5-4588-acd6-a0d9ee806ea9,HBCI Deutsche Bank Rostock,DEUTDEBRXXX,,hbci-deutsche-bank-adapter,13070000,, -e63ef986-e1cd-4c73-9757-49fde54fa488,HBCI Deutsche Bank Anklam,DEUTDEBB151,,hbci-deutsche-bank-adapter,13070000,, -c7a408d5-b9ee-4f60-b2e7-ac7079dfab39,HBCI Deutsche Bank Bad Doberan,DEUTDEBR131,,hbci-deutsche-bank-adapter,13070000,, -582e755c-f898-409c-8c45-e1699a00e827,HBCI Deutsche Bank Bergen Rügen,DEUTDEBR133,,hbci-deutsche-bank-adapter,13070000,, -44e878d7-4b5f-42ef-a449-94da2517d831,HBCI Deutsche Bank Bützow,DEUTDEBB130,,hbci-deutsche-bank-adapter,13070000,, -bc7117c6-f4db-49ec-bf72-7d8a0cf3ee79,HBCI Deutsche Bank Demmin,DEUTDEBB131,,hbci-deutsche-bank-adapter,13070000,, -c24a28dd-aeaa-4714-a0ca-cc05e04708bf,HBCI Deutsche Bank Greifswald,DEUTDEBR134,,hbci-deutsche-bank-adapter,13070000,, -cd8a1244-7db4-436a-93dd-feb141dd0927,HBCI Deutsche Bank Grimmen,DEUTDEBR135,,hbci-deutsche-bank-adapter,13070000,, -a60f0d40-77a5-4b36-b9c2-4647064e4a37,HBCI Deutsche Bank Güstrow,DEUTDEBB141,,hbci-deutsche-bank-adapter,13070000,, -8dd70ae6-50b8-42f3-82cc-dd751a69f33f,HBCI Deutsche Bank Hagenow,DEUTDEBB142,,hbci-deutsche-bank-adapter,13070000,, -52836b9f-77e7-4f7b-9d47-1b9a2daf55b3,HBCI Deutsche Bank Ludwigslust,DEUTDEBB143,,hbci-deutsche-bank-adapter,13070000,, -97073672-f193-4256-953a-17840bc18090,HBCI Deutsche Bank Lübz,DEUTDEBB144,,hbci-deutsche-bank-adapter,13070000,, -468de228-9440-4213-b205-31ca3c74affd,HBCI Deutsche Bank Malchin,DEUTDEBB152,,hbci-deutsche-bank-adapter,13070000,, -ddeae72d-3dd4-44c5-ada0-2f5347a4a0d2,HBCI Deutsche Bank Neubrandenbg,DEUTDEBB150,,hbci-deutsche-bank-adapter,13070000,, -cdeeb13a-050a-4c73-a719-e8a131ef50fa,HBCI Deutsche Bank Neustrelitz,DEUTDEBB153,,hbci-deutsche-bank-adapter,13070000,, -1d3c34cc-de60-4ebb-9db5-651e0bd5e056,HBCI Deutsche Bank Prenzlau,DEUTDEBB154,,hbci-deutsche-bank-adapter,13070000,, -f5e6943d-9ee3-4e1b-af2d-341badd087de,HBCI Deutsche Bank Ribnitz-Damgt,DEUTDEBR136,,hbci-deutsche-bank-adapter,13070000,, -75638be8-fa97-4361-aa21-3a7348c7ddd6,HBCI Deutsche Bank Schwerin,DEUTDEBB140,,hbci-deutsche-bank-adapter,13070000,, -6c478524-597f-4901-9d9d-03a3e79c3046,HBCI Deutsche Bank Stralsund,DEUTDEBR138,,hbci-deutsche-bank-adapter,13070000,, -e90c0cd0-1f32-4ef7-9dd5-4bb7b2c3bb48,HBCI Deutsche Bank Templin,DEUTDEBB155,,hbci-deutsche-bank-adapter,13070000,, -8c478449-b04f-4ccf-bf14-b7b2d344fad1,HBCI Deutsche Bank Teterow,DEUTDEBB156,,hbci-deutsche-bank-adapter,13070000,, -15d7bffa-5f25-4bde-a851-c3ed82fdf252,HBCI Deutsche Bank Torgelow,DEUTDEBB179,,hbci-deutsche-bank-adapter,13070000,, -7219ffc8-fe43-42b1-aafa-99ee04b0fc84,HBCI Deutsche Bank Wismar,DEUTDEBB148,,hbci-deutsche-bank-adapter,13070000,, -cd1a0d01-b182-4719-9d19-bfd7f858f03c,HBCI Deutsche Bank Wittenberge,DEUTDEBB149,,hbci-deutsche-bank-adapter,13070000,, -ee79855f-7743-4295-9fca-abfaabf4226b,HBCI Deutsche Bank Wolgast,DEUTDEBB159,,hbci-deutsche-bank-adapter,13070000,, -579d27cf-9bd7-4128-943d-f6e0d3c2667a,HBCI Deutsche Bank Gadebusch,DEUTDEBB132,,hbci-deutsche-bank-adapter,13070000,, -2b19e069-f6ea-470e-9567-9a03cf740597,HBCI Deutsche Bank Parchim,DEUTDEBB145,,hbci-deutsche-bank-adapter,13070000,, -e7892d92-9a8e-46bf-82be-a35b74bb19ee,HBCI Deutsche Bank Perleberg,DEUTDEBB146,,hbci-deutsche-bank-adapter,13070000,, -3d9e4e7e-ff2b-40b1-b21c-0ed8f5e2b5eb,HBCI Deutsche Bank Plau,DEUTDEBB147,,hbci-deutsche-bank-adapter,13070000,, -d2fc6c6c-6054-4bcb-9394-250f20fd6381,HBCI Deutsche Bank Sassnitz,DEUTDEBR137,,hbci-deutsche-bank-adapter,13070000,, -7358319b-e4cb-4284-8a26-7bc1950178ce,HBCI Deutsche Bank Waren,DEUTDEBB158,,hbci-deutsche-bank-adapter,13070000,, -14861bd1-f636-45d8-8e2e-2fc0a1daa3fd,HBCI Deutsche Bank Ueckermünde,DEUTDEBB157,,hbci-deutsche-bank-adapter,13070000,, -30164664-f469-40e2-8d9f-1c7aee2460c4,HBCI Deutsche Bank Barth,DEUTDEBR132,,hbci-deutsche-bank-adapter,13070000,, -a1a0287b-0b52-46d2-813e-8e7644ff921a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBROS,,hbci-deutsche-bank-adapter,13070024,, -fcd161bb-bff5-464b-bfe5-90e67ed5a2f2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB151,,hbci-deutsche-bank-adapter,13070024,, -1e13b180-1a7b-461d-b0ea-5a515bca6ba1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB131,,hbci-deutsche-bank-adapter,13070024,, -514ad716-2bfc-4ddc-ace2-82524a9f1e2b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB133,,hbci-deutsche-bank-adapter,13070024,, -4424ada8-12ef-4338-a39a-2cad235b58f3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB130,,hbci-deutsche-bank-adapter,13070024,, -d04f1cad-29a5-4cfe-928d-c7e276f08efd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB128,,hbci-deutsche-bank-adapter,13070024,, -906488cb-7248-4389-b691-db393937f257,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB132,,hbci-deutsche-bank-adapter,13070024,, -61b5bccb-6130-4afd-94f0-5840e7e43d7e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB134,,hbci-deutsche-bank-adapter,13070024,, -d04d59ef-f475-43c0-b3a5-bd9d3c1413cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB135,,hbci-deutsche-bank-adapter,13070024,, -79069cc7-0dd5-4cd0-bef7-503999b8308c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB141,,hbci-deutsche-bank-adapter,13070024,, -a76f2f4d-14ee-492e-be69-7b478213fca2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB142,,hbci-deutsche-bank-adapter,13070024,, -a7462cae-9bd5-4401-ad06-7f4471529405,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB143,,hbci-deutsche-bank-adapter,13070024,, -4e58176d-24b8-4b20-8c84-34b22a9dbaac,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB144,,hbci-deutsche-bank-adapter,13070024,, -8874169d-bbf6-4475-ae63-312d35d824f6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB152,,hbci-deutsche-bank-adapter,13070024,, -1941e9ce-41c3-487b-8e09-ae94c1b90e92,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB150,,hbci-deutsche-bank-adapter,13070024,, -39f1df3e-6e1e-47d7-957c-177878a4f086,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB153,,hbci-deutsche-bank-adapter,13070024,, -18ae748a-030e-44f9-827a-c32d72db0d54,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB145,,hbci-deutsche-bank-adapter,13070024,, -d6c32872-735b-4285-b330-a652d4ba294c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB146,,hbci-deutsche-bank-adapter,13070024,, -cee89584-c19d-4624-b754-6432d02c910e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB147,,hbci-deutsche-bank-adapter,13070024,, -e9118e16-7a15-4fce-acf7-c15d8209a973,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB154,,hbci-deutsche-bank-adapter,13070024,, -905aa038-d007-44ed-bafd-b9acc2d6ff81,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB136,,hbci-deutsche-bank-adapter,13070024,, -23e68192-814b-4e67-b51b-f8274a6c7310,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB137,,hbci-deutsche-bank-adapter,13070024,, -81b353ca-4009-4277-b760-fc4c8dd7a89e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB140,,hbci-deutsche-bank-adapter,13070024,, -02e8547f-7d73-48a7-8681-2bdbba26205b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB138,,hbci-deutsche-bank-adapter,13070024,, -c43c8690-3852-4aef-bce9-b68475f3f12a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB155,,hbci-deutsche-bank-adapter,13070024,, -c7271007-e52c-4470-a491-df60d0cc2d33,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB156,,hbci-deutsche-bank-adapter,13070024,, -9d8668a7-9505-41aa-b193-035285b6044c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB179,,hbci-deutsche-bank-adapter,13070024,, -179626a4-df90-49ff-97a2-40749d9bac18,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB157,,hbci-deutsche-bank-adapter,13070024,, -bec745b3-584d-4139-8c50-7c155f95d26d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB158,,hbci-deutsche-bank-adapter,13070024,, -373df924-424b-4644-a44d-451bb4edb1d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB148,,hbci-deutsche-bank-adapter,13070024,, -dca75e81-6f74-4012-b81f-abad46f7670d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB149,,hbci-deutsche-bank-adapter,13070024,, -dd041773-4a7c-433d-9d09-4b3ce79eb9ed,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB159,,hbci-deutsche-bank-adapter,13070024,, -4c0c3871-3951-41af-be66-51e5c2878f25,HBCI Deutsche Bank Hamburg,DEUTDEHHXXX,,hbci-deutsche-bank-adapter,20070000,, -552ecd5a-e1e0-4909-b96d-065372d2f2aa,HBCI Deutsche Bank Geesthacht,DEUTDEHH205,,hbci-deutsche-bank-adapter,20070000,, -8387cd7a-1ecc-44cd-83ec-a3c887e1e47e,HBCI Deutsche Bank Norderstedt,DEUTDEHH202,,hbci-deutsche-bank-adapter,20070000,, -f205e7d4-30e6-4449-8ee3-60b271da032e,HBCI Deutsche Bank Buchholz,DEUTDEHH207,,hbci-deutsche-bank-adapter,20070000,, -af810542-d30f-4bc4-9097-1b0b4098b4dc,HBCI Deutsche Bank Brunsbüttel,DEUTDEHH219,,hbci-deutsche-bank-adapter,20070000,, -9c58df0b-9821-449c-823d-87c148cc6447,HBCI Deutsche Bank Elmshorn,DEUTDEHH221,,hbci-deutsche-bank-adapter,20070000,, -baaf7886-f485-4b7d-85c2-d96e56c7a290,HBCI Deutsche Bank Cuxhaven,DEUTDEHH241,,hbci-deutsche-bank-adapter,20070000,, -9ea0c425-6e37-4d68-9c18-b2929939d532,HBCI Deutsche Bank Ahrensburg,DEUTDEHH201,,hbci-deutsche-bank-adapter,20070000,, -59c0a995-c0a2-4bb6-b840-9533152f61a3,HBCI Deutsche Bank Itzehoe,DEUTDEHH200,,hbci-deutsche-bank-adapter,20070000,, -1819dbb6-395e-404f-9e8c-08d9e4c61636,HBCI Deutsche Bank Lauenburg,DEUTDEHH203,,hbci-deutsche-bank-adapter,20070000,, -2b2090bc-76c0-4157-8afd-055c7bac7008,HBCI Deutsche Bank Stade,DEUTDEHH209,,hbci-deutsche-bank-adapter,20070000,, -e1f882f5-6e0c-45b0-b241-1cb699bf90ee,HBCI Deutsche Bank Pinneberg,DEUTDEHH206,,hbci-deutsche-bank-adapter,20070000,, -b4935771-4423-4d35-88c3-212c812b7d41,HBCI Deutsche Bank Wedel Holst,DEUTDEHH204,,hbci-deutsche-bank-adapter,20070000,, -59c98b62-8e16-4d00-b1e6-b32e8c10d522,HBCI Deutsche Bank Buxtehude,DEUTDEHH211,,hbci-deutsche-bank-adapter,20070000,, -fb1d5941-fcf1-49d8-a954-e97aa1ea5940,HBCI Deutsche Bank Reinbek,DEUTDEHH213,,hbci-deutsche-bank-adapter,20070000,, -56fc70b8-18e7-4a77-ba63-58c5898cc760,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBHAM,,hbci-deutsche-bank-adapter,20070024,, -6c1aeee9-4a3f-469f-bdbb-927e8452a01f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB201,,hbci-deutsche-bank-adapter,20070024,, -cd696c6e-9ec1-48b7-8c48-3138958dbefd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB219,,hbci-deutsche-bank-adapter,20070024,, -9a8085c3-4250-489e-a2e6-986b80e32d64,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB207,,hbci-deutsche-bank-adapter,20070024,, -c1bf166f-8e42-406e-a5e9-b1e3d4c27aad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB211,,hbci-deutsche-bank-adapter,20070024,, -69d65bde-6197-49ef-ae9c-d62a339e07bc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB241,,hbci-deutsche-bank-adapter,20070024,, -2c191943-d960-4b74-a043-e1f7a4c77b0f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB221,,hbci-deutsche-bank-adapter,20070024,, -fd652ac9-4097-40bc-ba9a-46e57c72d732,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB205,,hbci-deutsche-bank-adapter,20070024,, -4e5be5c1-e082-4f1d-ae0f-2a6290093c95,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB200,,hbci-deutsche-bank-adapter,20070024,, -08410f9c-7cc1-42c0-bb3c-d693b6bacc32,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB203,,hbci-deutsche-bank-adapter,20070024,, -6ca6f42a-3c04-4ee6-a5af-e286e35d112c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB202,,hbci-deutsche-bank-adapter,20070024,, -e0d79222-f750-4a2d-9c89-e3c07b05a906,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB206,,hbci-deutsche-bank-adapter,20070024,, -4772e43c-031d-46ab-b012-f4984916581a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB213,,hbci-deutsche-bank-adapter,20070024,, -f60df1f9-6601-4af7-8322-e2f9904a86c0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB209,,hbci-deutsche-bank-adapter,20070024,, -5c2c68e8-b331-440b-afcb-e4d552c80d78,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB204,,hbci-deutsche-bank-adapter,20070024,, -4e04cf70-1443-4728-8e04-f36d262093a0,HBCI Deutsche Bank Kiel,DEUTDEHH210,,hbci-deutsche-bank-adapter,21070020,, -6aaa5b56-dc8b-4ceb-aacd-24ffe697393d,HBCI Deutsche Bank Rendsburg,DEUTDEHH214,,hbci-deutsche-bank-adapter,21070020,, -13dc8c23-015b-4367-a210-9906936bb2a7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB210,,hbci-deutsche-bank-adapter,21070024,, -cb9b26e3-826f-4e6d-9ecf-2d83068e4ad0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB214,,hbci-deutsche-bank-adapter,21070024,, -26d91ce8-592a-4d2d-ba27-53b96d283ab7,HBCI Deutsche Bank Neumünster,DEUTDEHH212,,hbci-deutsche-bank-adapter,21270020,, -b5a38e8e-3dce-4f01-8934-883830bfa559,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB212,,hbci-deutsche-bank-adapter,21270024,, -99d7003a-b519-4ca6-bdb1-48f4fdebcaab,HBCI Deutsche Bank Flensburg,DEUTDEHH215,,hbci-deutsche-bank-adapter,21570011,, -3e7dfb46-bba3-4728-afca-340d897a1691,HBCI Deutsche Bank Westerland,DEUTDEHH216,,hbci-deutsche-bank-adapter,21570011,, -e5a8a9de-c222-48bc-8a0d-8fe2e5948e2c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB215,,hbci-deutsche-bank-adapter,21570024,, -18173730-e3cb-4e85-8b23-3161e97d70a1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB216,,hbci-deutsche-bank-adapter,21570024,, -63a0ed84-d4fd-4383-adca-27f6b76da882,HBCI Deutsche Bank Husum Nordsee,DEUTDEHH217,,hbci-deutsche-bank-adapter,21770011,, -283d0a05-970d-4096-9ce6-9d66614b88ae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB217,,hbci-deutsche-bank-adapter,21770024,, -48ea91f7-63f2-4bef-9ba3-c3d174dffd5e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB237,,hbci-deutsche-bank-adapter,23070700,, -37dd5cda-41c7-4198-88ec-369b02ee1b29,HBCI Deutsche Bank,DEUTDEHH222,,hbci-deutsche-bank-adapter,23070710,, -98b3ead4-6a6a-4474-a0b8-3ad24d83346a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB240,,hbci-deutsche-bank-adapter,24070024,, -6bebaf4a-1112-436e-b165-4e06ec79e844,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB242,,hbci-deutsche-bank-adapter,24070024,, -a9d287e7-b90f-46c2-84ad-a03084bd27bf,HBCI Deutsche Bank Lüneburg,DEUTDE2H240,,hbci-deutsche-bank-adapter,24070075,, -e95c6bc1-d1d6-431b-8216-b7824aa7ea2c,HBCI Deutsche Bank Uelzen,DEUTDE2H241,,hbci-deutsche-bank-adapter,24070075,, -60c5fd80-d07a-45a0-b8aa-a19095f9c896,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBHAN,,hbci-deutsche-bank-adapter,25070024,, -640f31ae-80b5-4435-bd9f-b3d8ba33923d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB243,,hbci-deutsche-bank-adapter,25070024,, -dfcd3805-db8a-4343-a388-63ddf4a4aca0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB250,,hbci-deutsche-bank-adapter,25070024,, -8101f660-f9cd-451b-a3f3-bef74f5b3031,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB252,,hbci-deutsche-bank-adapter,25070024,, -09ce52e5-2175-4bd8-bfe4-f0cc6f16b79b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB931,,hbci-deutsche-bank-adapter,25070024,, -3e25f654-ee91-486f-9ab9-9f32a3aca7cb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB932,,hbci-deutsche-bank-adapter,25070024,, -19d0eed4-9d5b-4f1f-a117-4f4722c4fd9b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB256,,hbci-deutsche-bank-adapter,25070024,, -25122b5e-1ba8-4a54-bfaa-d69e9fdfe783,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB251,,hbci-deutsche-bank-adapter,25070024,, -bacf5429-252b-4719-85bf-e8a6f79fd3b7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB933,,hbci-deutsche-bank-adapter,25070024,, -17e0055e-e3c3-4178-85dc-b016b10a05a1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB258,,hbci-deutsche-bank-adapter,25070024,, -9ce41f96-1a90-4936-a462-6705560ac7b8,HBCI Deutsche Bank Stadthagen,DEUTDE2H265,,hbci-deutsche-bank-adapter,25070066,, -ed69018f-c2cd-4eb1-8960-8b1adfbba5ea,HBCI Deutsche Bank Hannover,DEUTDE2HXXX,,hbci-deutsche-bank-adapter,25070070,, -a33d5eb8-208a-4abf-b5d6-662a26764aca,HBCI Deutsche Bank Barsinghausen,DEUTDE2H250,,hbci-deutsche-bank-adapter,25070070,, -d4bc7da1-2326-4b89-85ca-91b54eec7f42,HBCI Deutsche Bank Langenhagen,DEUTDE2H283,,hbci-deutsche-bank-adapter,25070070,, -1c28b53f-0779-4b6b-9960-be8d40b86497,HBCI Deutsche Bank Laatzen,DEUTDE2H282,,hbci-deutsche-bank-adapter,25070070,, -edc56c90-1db3-46aa-8a88-162a036eda5a,HBCI Deutsche Bank Burgdorf Hann,DEUTDE2H252,,hbci-deutsche-bank-adapter,25070070,, -f4f4f935-7d90-4751-98a7-0ffc64328ec7,HBCI Deutsche Bank Nienburg,DEUTDE2H256,,hbci-deutsche-bank-adapter,25070077,, -f4654eca-53e5-488b-ad37-63a6cc49384f,HBCI Deutsche Bank Soltau,DEUTDE2H258,,hbci-deutsche-bank-adapter,25070084,, -e8f1e7d6-876d-48db-ac27-2a42efb1522d,HBCI Deutsche Bank Munster,DEUTDE2H284,,hbci-deutsche-bank-adapter,25070084,, -c1da1edf-9fc0-48f7-b8dd-8251c6026189,HBCI Deutsche Bank Holzminden,DEUTDE2H251,,hbci-deutsche-bank-adapter,25070086,, -3187d952-1d43-4099-954a-0e578b6c050e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB254,,hbci-deutsche-bank-adapter,25470024,, -ce7f2440-0b9e-4593-9944-03c6bf2a9d4b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB255,,hbci-deutsche-bank-adapter,25470024,, -7489e4a2-3c1a-4e09-ad0c-cfdbd47b9360,HBCI Deutsche Bank Hameln,DEUTDE2H254,,hbci-deutsche-bank-adapter,25470073,, -b2a0d6c1-d265-48b8-a402-850b322048f1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB264,,hbci-deutsche-bank-adapter,25471024,, -0181ba28-f6f8-47fa-a224-4a956918ddbf,HBCI Deutsche Bank Rinteln,DEUTDE2H264,,hbci-deutsche-bank-adapter,25471073,, -864ce8cf-c917-4c22-8aa3-925c3659b96e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB257,,hbci-deutsche-bank-adapter,25770024,, -6ed95273-d86d-4128-9c95-aa480319118f,HBCI Deutsche Bank Celle,DEUTDE2H257,,hbci-deutsche-bank-adapter,25770069,, -6a8eebf5-f306-4d41-972f-d4bd182f1d4d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB259,,hbci-deutsche-bank-adapter,25970024,, -6ec03d96-ea49-417b-99a8-ddbb7f0895f9,HBCI Deutsche Bank Hildesheim,DEUTDE2H259,,hbci-deutsche-bank-adapter,25970074,, -cec0512a-dc40-4700-8e56-9df9574e1c2a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB253,,hbci-deutsche-bank-adapter,25971024,, -9870cb01-88c8-44dc-b2b3-1094d7127b84,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB261,,hbci-deutsche-bank-adapter,25971024,, -d1f62a45-8a87-416e-8854-8f294630ba5a,HBCI Deutsche Bank Alfeld Leine,DEUTDE2H253,,hbci-deutsche-bank-adapter,25971071,, -62c55937-2ec2-44c4-ae76-b5472ea139ea,HBCI TARGOBANK GF FG,CPLADE55XXX,,hbci-verlag-adapter,55030500,, -b42a7c1f-ceb0-4e52-a5ac-b6c319b1ec8c,HBCI Deutsche Bank Gronau Leine,DEUTDE2H261,,hbci-deutsche-bank-adapter,25971071,, -3874f56c-b42c-4152-a299-95092409aa51,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB260,,hbci-deutsche-bank-adapter,26070024,, -ea77ddf5-ca8f-4cca-a5c6-22158c8c1765,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB263,,hbci-deutsche-bank-adapter,26070024,, -8c94d235-cbba-4829-a91c-5fc6c9322ad3,HBCI Deutsche Bank Göttingen,DEUTDE2H260,,hbci-deutsche-bank-adapter,26070072,, -ee306e6d-02fe-4181-9c5d-6e5e15ee13ac,HBCI Deutsche Bank Northeim Han,DEUTDE2H263,,hbci-deutsche-bank-adapter,26070072,, -26d71899-32e4-4b46-a852-ca5f69e0c04e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB262,,hbci-deutsche-bank-adapter,26271424,, -f5e79381-58c1-46bc-8ce0-b8e04537990b,HBCI Deutsche Bank Einbeck,DEUTDE2H262,,hbci-deutsche-bank-adapter,26271471,, -8c603a23-3dee-4391-8717-b83a93eb73ca,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB265,,hbci-deutsche-bank-adapter,26570024,, -e9d01f53-e2dc-468e-bc90-38baf2d3cccf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB921,,hbci-deutsche-bank-adapter,26570024,, -1883e3ef-427f-4e36-bc26-ed90d4459752,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB922,,hbci-deutsche-bank-adapter,26570024,, -47c86ee6-eb6c-496b-8b52-e80709e77f17,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB923,,hbci-deutsche-bank-adapter,26570024,, -bef22007-9176-483a-9e82-71c6c303e8f5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB924,,hbci-deutsche-bank-adapter,26570024,, -667845e0-c778-4212-af4c-1afa8110c42b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB266,,hbci-deutsche-bank-adapter,26570024,, -b767a304-6500-4583-a81c-9201ac24566b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB925,,hbci-deutsche-bank-adapter,26570024,, -2a677b77-21db-460a-af3e-99dfb9cc8811,HBCI Deutsche Bank Osnabrück,DEUTDE3B265,,hbci-deutsche-bank-adapter,26570090,, -848458c8-3ab8-4f02-a1be-794dd46a5487,HBCI Deutsche Bank Georgsmarienh,DEUTDE3B270,,hbci-deutsche-bank-adapter,26570090,, -100bf9d9-d1d3-48b6-85a4-63271a09dd4f,HBCI Deutsche Bank Bramsche Hase,DEUTDE3B269,,hbci-deutsche-bank-adapter,26570090,, -9469bf64-a951-4938-82b0-af95165d7105,HBCI Deutsche Bank Bad Iburg,DEUTDE3B268,,hbci-deutsche-bank-adapter,26570090,, -672c2021-1073-44b5-8ab5-8056b6de557f,HBCI Deutsche Bank Lengerich Wes,DEUTDE3B271,,hbci-deutsche-bank-adapter,26570090,, -591e359e-bf9d-496e-a7c0-ae196952625a,HBCI Deutsche Bank Melle,DEUTDE3B266,,hbci-deutsche-bank-adapter,26570090,, -c519f22b-d765-493e-80fa-6ce3036f8539,HBCI Deutsche Bank Quakenbrück,DEUTDE3B272,,hbci-deutsche-bank-adapter,26570090,, -f3d9f6fd-9575-4d59-a1c8-3e601bc2b465,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB267,,hbci-deutsche-bank-adapter,26770024,, -71677633-4e5d-4cc0-a55d-713fb9997bcb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB926,,hbci-deutsche-bank-adapter,26770024,, -093fe9bb-fa9a-4215-bc29-ef68f672be42,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB927,,hbci-deutsche-bank-adapter,26770024,, -6a4a00ca-dd7f-4100-9365-1879c412f959,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB928,,hbci-deutsche-bank-adapter,26770024,, -a327c68f-ca93-4f92-baf1-9b2a1feb70b1,HBCI Deutsche Bank Nordhorn,DEUTDE3B267,,hbci-deutsche-bank-adapter,26770095,, -aebe6e70-7f79-41a2-b450-2d88d66e2724,HBCI Deutsche Bank Meppen,DEUTDE3B274,,hbci-deutsche-bank-adapter,26770095,, -2c61a8de-d4fd-4bde-909b-d3521b98b3d6,HBCI Deutsche Bank Lingen Ems,DEUTDE3B273,,hbci-deutsche-bank-adapter,26770095,, -a1315a38-6f5d-40f4-92c1-369aff431f47,HBCI Deutsche Bank Schüttorf,DEUTDE3B275,,hbci-deutsche-bank-adapter,26770095,, -e5d0c49f-bd5a-42c8-8581-d25157bd46d5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB268,,hbci-deutsche-bank-adapter,26870024,, -2d03dd4d-c2b1-4605-a6b8-51f7060bae92,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB929,,hbci-deutsche-bank-adapter,26870024,, -c9153d3a-fe3c-4ef4-919b-92c6ae88cbe5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB934,,hbci-deutsche-bank-adapter,26870024,, -a71eb66f-c086-45e2-8296-11b33386cb47,HBCI Deutsche Bank Goslar,DEUTDE2H268,,hbci-deutsche-bank-adapter,26870032,, -70f5d65d-5b47-43d9-91b1-c84cd680d78f,HBCI Deutsche Bank Clausthal-Zel,DEUTDE2H280,,hbci-deutsche-bank-adapter,26870032,, -f3ac8a2c-0264-4cfc-b560-e2eec23ff2f7,HBCI Deutsche Bank Seesen,DEUTDE2H285,,hbci-deutsche-bank-adapter,26870032,, -1870f96a-4863-4c77-81f6-c55a81635b93,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB269,,hbci-deutsche-bank-adapter,26971024,, -ea54a4bf-3525-4812-b04c-eced97fee178,HBCI Deutsche Bank Wolfsburg,DEUTDE2H269,,hbci-deutsche-bank-adapter,26971038,, -b76802cd-66ef-4c0b-8f88-0e0be729f11f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB270,,hbci-deutsche-bank-adapter,27070024,, -f981dbce-4b72-4c98-abfd-da6c5c6214b6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB278,,hbci-deutsche-bank-adapter,27070024,, -d75cc738-ef42-4cf7-97a4-aecfccaba045,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB271,,hbci-deutsche-bank-adapter,27070024,, -410bd0d9-3187-4b0a-af7c-24109bd8711e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB930,,hbci-deutsche-bank-adapter,27070024,, -eab232e9-05d3-4b8b-be7a-189d8a17081f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB274,,hbci-deutsche-bank-adapter,27070024,, -d14fcd41-ca46-475c-b254-04462e019cc1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB272,,hbci-deutsche-bank-adapter,27070024,, -88eef05b-e178-4dcf-ad90-87907b4892cc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB279,,hbci-deutsche-bank-adapter,27070024,, -9d4c11bc-41f3-4710-bba6-a6cef3bb68f2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB273,,hbci-deutsche-bank-adapter,27070024,, -68a2d8ae-a15d-483c-b2ed-cfed78d83ab9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB275,,hbci-deutsche-bank-adapter,27070024,, -a6b6775e-7309-4a88-b48a-dd2036556a05,HBCI Deutsche Bank Braunschweig,DEUTDE2H270,,hbci-deutsche-bank-adapter,27070030,, -6decacb7-05db-414d-9463-50c58da12080,HBCI Deutsche Bank Gifhorn,DEUTDE2H271,,hbci-deutsche-bank-adapter,27070031,, -d77db535-83c2-4f4e-9013-4c43bc0687e7,HBCI Deutsche Bank Osterode Harz,DEUTDE2H274,,hbci-deutsche-bank-adapter,27070034,, -282f835f-73ca-4398-9e47-e17410d1feb0,HBCI Deutsche Bank Herzberg Harz,DEUTDE2H281,,hbci-deutsche-bank-adapter,27070034,, -d55c2b28-c2a5-4e23-819f-a5655e89aa51,HBCI Deutsche Bank Bad Lauterber,DEUTDE2H278,,hbci-deutsche-bank-adapter,27070034,, -75b6a6d9-1a5d-468b-8687-4df6935e74dd,HBCI Deutsche Bank Bad Sachsa,DEUTDE2H279,,hbci-deutsche-bank-adapter,27070041,, -4bffc597-44b2-4c84-acdd-3e79daf14e7d,HBCI Deutsche Bank Bad Harzburg,DEUTDE2H272,,hbci-deutsche-bank-adapter,27070042,, -2b09cc01-c973-4dc6-a8cd-91124bcf0104,HBCI Deutsche Bank Helmstedt,DEUTDE2H273,,hbci-deutsche-bank-adapter,27070043,, -86f00802-ccae-4905-a6a4-2df3122ccc36,HBCI Deutsche Bank Peine,DEUTDE2H275,,hbci-deutsche-bank-adapter,27070079,, -19e5bf05-1666-488e-a5f9-0206ce782efa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB277,,hbci-deutsche-bank-adapter,27072524,, -4f0d7422-d06b-4e17-bb40-4c20a401dba1,HBCI Deutsche Bank Wolfenbüttel,DEUTDE2H277,,hbci-deutsche-bank-adapter,27072537,, -b429d03d-acad-4ae7-b43b-4dff50b40207,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB276,,hbci-deutsche-bank-adapter,27072724,, -a1f8de5b-35ce-4b55-82bd-975de9d2ea80,HBCI Deutsche Bank Salzgitter,DEUTDE2H276,,hbci-deutsche-bank-adapter,27072736,, -73ee15a5-73b5-4234-9c74-75dd347652a9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB280,,hbci-deutsche-bank-adapter,28070024,, -42d0d22b-4f02-4ff9-9c5c-9a4c99c62005,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB281,,hbci-deutsche-bank-adapter,28070024,, -cee5789b-b02b-41ce-8d3b-07656d0cbf9a,HBCI Deutsche Bank Oldenburg,DEUTDEHB280,,hbci-deutsche-bank-adapter,28070057,, -10390b61-166a-4512-973d-be8e0c6ed1c0,HBCI Deutsche Bank Bad Zwischena,DEUTDEHB281,,hbci-deutsche-bank-adapter,28070057,, -ab31e025-9c7f-4e60-90aa-1c37b0a5f2b2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB282,,hbci-deutsche-bank-adapter,28270024,, -3d7aa73b-6225-46c8-89e2-aeb28031341a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB283,,hbci-deutsche-bank-adapter,28270024,, -2367f124-4cd1-41a8-936c-3e5898d0abe8,HBCI Deutsche Bank Wilhelmshaven,DEUTDEHB282,,hbci-deutsche-bank-adapter,28270056,, -c1841f9d-7ecf-4228-84ca-cf944dcc612f,HBCI Deutsche Bank Jever,DEUTDEHB283,,hbci-deutsche-bank-adapter,28270056,, -21ca1608-0552-4a55-b52a-93035f4233f4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB284,,hbci-deutsche-bank-adapter,28470024,, -2b00d56d-b280-46cf-acf1-5d1cc3a09aaa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB289,,hbci-deutsche-bank-adapter,28470024,, -0f8d74b9-2c39-4950-b845-d15065ee7a18,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB286,,hbci-deutsche-bank-adapter,28470024,, -504a4412-2f54-4d63-8c97-f65f4d0116ba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB298,,hbci-deutsche-bank-adapter,28470024,, -25b790aa-e46d-461e-bc02-79ab01cd5890,HBCI Deutsche Bank Emden,DEUTDEHB284,,hbci-deutsche-bank-adapter,28470091,, -756b3ef9-a38c-487a-aadd-8df30f0f9419,HBCI Deutsche Bank Aurich,DEUTDEHB289,,hbci-deutsche-bank-adapter,28470091,, -ee8391c8-c5ea-4f8a-9fc7-56c905c5109c,HBCI Deutsche Bank Norden,DEUTDEHB286,,hbci-deutsche-bank-adapter,28470091,, -ce8b9c1e-4897-4768-a51f-2720c7bfaf2b,HBCI Deutsche Bank Norderney,DEUTDEHB298,,hbci-deutsche-bank-adapter,28470091,, -e2be9405-5b4a-43f1-9857-31f70ae06f34,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB285,,hbci-deutsche-bank-adapter,28570024,, -4bc18d15-efe5-4868-9b59-9baba1b66823,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB287,,hbci-deutsche-bank-adapter,28570024,, -6cb3163d-14ec-40a1-9a64-b985e756e5a3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB288,,hbci-deutsche-bank-adapter,28570024,, -babbad2c-ca77-463c-a80a-1084cca41f94,HBCI Deutsche Bank Leer,DEUTDEHB285,,hbci-deutsche-bank-adapter,28570092,, -23edca22-0b9a-4b19-9f16-6b299059de96,HBCI Deutsche Bank Papenburg,DEUTDEHB287,,hbci-deutsche-bank-adapter,28570092,, -a1d153e0-0977-49e1-ba42-59ab5c4e518a,HBCI Deutsche Bank Weener,DEUTDEHB288,,hbci-deutsche-bank-adapter,28570092,, -ad1de28c-5292-4179-9465-1f5ac6839d23,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBBRE,,hbci-deutsche-bank-adapter,29070024,, -35404390-8e1f-4352-ab04-b9fa39ff3ff9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB295,,hbci-deutsche-bank-adapter,29070024,, -94bb8e18-0b87-4599-8d3d-d0e3c9d42cef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB292,,hbci-deutsche-bank-adapter,29070024,, -d29106c5-003a-4c29-8546-812511e6ef6c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB293,,hbci-deutsche-bank-adapter,29070024,, -16346660-76ab-4198-b5a2-485123e3b820,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB294,,hbci-deutsche-bank-adapter,29070024,, -9e9e838d-69f8-4e44-bc98-a446fd4e46bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB296,,hbci-deutsche-bank-adapter,29070024,, -3eb481ea-7c2f-47ac-bdea-79e773bfc13a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB297,,hbci-deutsche-bank-adapter,29070024,, -36a440eb-cba5-4695-9a5d-c1461f0adae2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB290,,hbci-deutsche-bank-adapter,29070024,, -cdfaec0b-4b71-4b4a-b03a-dddf00ec0ae8,HBCI Deutsche Bank Bremen,DEUTDEHBXXX,,hbci-deutsche-bank-adapter,29070050,, -53fc1ec7-ff63-4822-b00f-23546dc47f40,HBCI Deutsche Bank Achim Bremen,DEUTDEHB295,,hbci-deutsche-bank-adapter,29070050,, -b02f8c68-d42d-408d-9a2e-c85baeb4d7f5,HBCI Deutsche Bank Osterholz-Sch,DEUTDEHB297,,hbci-deutsche-bank-adapter,29070050,, -bb0c92a7-30dd-4b31-a2ff-97ca7201d703,HBCI Deutsche Bank Bremerhaven,DEUTDEHB292,,hbci-deutsche-bank-adapter,29070051,, -cc50e45e-6f63-4c0a-90be-2844d7049edd,HBCI Deutsche Bank Delmenhorst,DEUTDEHB294,,hbci-deutsche-bank-adapter,29070052,, -5985e79d-d68d-4f41-a061-82a5f5198b58,HBCI Deutsche Bank Cloppenburg,DEUTDEHB293,,hbci-deutsche-bank-adapter,29070058,, -50f4e0ba-8170-4d28-a4bb-9c0994995635,HBCI Deutsche Bank Vechta,DEUTDEHB290,,hbci-deutsche-bank-adapter,29070059,, -15f50043-b1d4-4f0c-9cc2-f4003b98bf15,HBCI Deutsche Bank Lohne Oldenbg,DEUTDEHB296,,hbci-deutsche-bank-adapter,29070059,, -45a565a1-6d7f-4b0a-97ba-02c6b699588c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB291,,hbci-deutsche-bank-adapter,29172624,, -cd6960b9-e743-424e-96d4-1bd0676a9bac,HBCI Deutsche Bank Verden,DEUTDEHB291,,hbci-deutsche-bank-adapter,29172655,, -b1209ba1-46c4-4197-931e-01e3ff26b40d,HBCI Deutsche Bank Düsseldorf,DEUTDEDDXXX,,hbci-deutsche-bank-adapter,30070010,, -673274bf-87f4-4751-b98f-5374be603c06,HBCI Deutsche Bank Erkrath,DEUTDEDD306,,hbci-deutsche-bank-adapter,30070010,, -9927cfaf-cf49-41b1-882d-182e2528fe6e,HBCI Deutsche Bank Kaarst,DEUTDEDD307,,hbci-deutsche-bank-adapter,30070010,, -8a332523-b72c-431a-a0a6-a9f25fd55882,HBCI Deutsche Bank Neuss,DEUTDEDD300,,hbci-deutsche-bank-adapter,30070010,, -64ada01d-8a26-4001-8fac-ee91a2dda110,HBCI Deutsche Bank Hilden,DEUTDEDD305,,hbci-deutsche-bank-adapter,30070010,, -2b155bd9-cd4f-4d0b-bbc1-d517e43f9b1a,HBCI Deutsche Bank Langenfeld Rh,DEUTDEDD301,,hbci-deutsche-bank-adapter,30070010,, -78e92849-2416-4e54-b884-850476ceccb1,HBCI Deutsche Bank Ratingen,DEUTDEDD304,,hbci-deutsche-bank-adapter,30070010,, -b4849f05-a74b-41e6-bef0-48f40869f0ec,HBCI Deutsche Bank Meerbusch,DEUTDEDD303,,hbci-deutsche-bank-adapter,30070010,, -ba8545ff-b601-42a7-8c7f-7de02414d0f9,HBCI Deutsche Bank Monheim Rhein,DEUTDEDD302,,hbci-deutsche-bank-adapter,30070010,, -3ae277d1-4bb5-44e7-a36e-7c17f60c094b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBDUE,,hbci-deutsche-bank-adapter,30070024,, -d956e8ef-b054-4eb3-9507-cf1ff8fd1446,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB306,,hbci-deutsche-bank-adapter,30070024,, -072b9def-688c-4fe6-b9a2-59bf9a686f69,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB305,,hbci-deutsche-bank-adapter,30070024,, -228e6b9c-5a45-4350-9553-b95bce2e7b67,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB307,,hbci-deutsche-bank-adapter,30070024,, -583ab3fd-1de8-4673-89bb-e8c070558430,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB301,,hbci-deutsche-bank-adapter,30070024,, -e6a46c39-0133-4f25-9aca-3536bc4b3f2f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB303,,hbci-deutsche-bank-adapter,30070024,, -673871dd-df4a-4627-9e9f-8e8295ad3444,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB302,,hbci-deutsche-bank-adapter,30070024,, -976af41e-86ee-45de-bf26-bb4553d67388,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB300,,hbci-deutsche-bank-adapter,30070024,, -b59186e7-8a4f-4f8d-862c-428c6d3ccd84,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB304,,hbci-deutsche-bank-adapter,30070024,, -20da1e9e-8c84-49ca-9796-11a1a8ce8a4f,HBCI Deutsche Bank Mönchengladbach,DEUTDEDD310,,hbci-deutsche-bank-adapter,31070001,, -6291d121-d0c0-4575-b800-11093d0105f1,HBCI Deutsche Bank Korschenbroic,DEUTDEDD317,,hbci-deutsche-bank-adapter,31070001,, -8e479897-6f9b-4ec9-bcff-3b48c663d8f5,HBCI Deutsche Bank Wegberg,DEUTDEDD318,,hbci-deutsche-bank-adapter,31070001,, -0bb3f135-24a8-4a53-ad29-8e300ffd0a37,HBCI Deutsche Bank Erkelenz,DEUTDEDD319,,hbci-deutsche-bank-adapter,31070001,, -9b6d5f88-f0ed-4384-b79b-cfeb201d0035,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB310,,hbci-deutsche-bank-adapter,31070024,, -68207426-2423-417d-9aef-ebb6ed0ae6f5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB319,,hbci-deutsche-bank-adapter,31070024,, -ca6f19a8-b1d8-4d84-9080-77f8ec51c62e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB317,,hbci-deutsche-bank-adapter,31070024,, -6034f87b-ca62-4339-b319-3fb574f46c57,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB318,,hbci-deutsche-bank-adapter,31070024,, -f52b8b51-ac54-4612-8740-98c0a7635307,HBCI Deutsche Bank Viersen,DEUTDEDD314,,hbci-deutsche-bank-adapter,31470004,, -0240700b-5427-47c1-8cfc-7aa77e8f1483,HBCI Deutsche Bank Nettetal,DEUTDEDD315,,hbci-deutsche-bank-adapter,31470004,, -a0aa6913-d577-4ed2-9cd2-d67231295235,HBCI Deutsche Bank Grefrath Kref,DEUTDEDD316,,hbci-deutsche-bank-adapter,31470004,, -68e8145a-4893-4d39-8eea-4a13098b643b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB314,,hbci-deutsche-bank-adapter,31470024,, -14dda433-35fc-4829-9056-b95ec94d11d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB316,,hbci-deutsche-bank-adapter,31470024,, -ebf57986-7c5f-41ad-85c8-54a55720eb79,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB315,,hbci-deutsche-bank-adapter,31470024,, -ce6eaad5-b16f-4da1-9805-d98eb923126d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB320,,hbci-deutsche-bank-adapter,32070024,, -dd3db7a0-c2d3-478d-aa8b-2da8025744e1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB323,,hbci-deutsche-bank-adapter,32070024,, -4455ce01-b11a-4b90-a3ee-22b9d8d8b45e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB327,,hbci-deutsche-bank-adapter,32070024,, -e9820075-3d1b-490c-96a7-390015efa8d4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB328,,hbci-deutsche-bank-adapter,32070024,, -b503eaf2-c967-4c2d-990c-47006277ee7d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB329,,hbci-deutsche-bank-adapter,32070024,, -c15c32a2-a412-4ffe-98c5-ac7b3bee5a08,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB936,,hbci-deutsche-bank-adapter,32070024,, -042aa437-74ff-4b55-b14a-63070f2ad921,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB322,,hbci-deutsche-bank-adapter,32070024,, -8db2ed57-16da-4bed-87e7-6cc2d58209c0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB321,,hbci-deutsche-bank-adapter,32070024,, -bbe0591b-bb8a-41d1-b44f-e1a7f241fa2c,HBCI Deutsche Bank Krefeld,DEUTDEDD320,,hbci-deutsche-bank-adapter,32070080,, -e7fac75a-9661-4fe6-9ab6-b2b88f7377a9,HBCI Deutsche Bank Geldern,DEUTDEDD323,,hbci-deutsche-bank-adapter,32070080,, -cb822b9a-37d9-425c-95b5-915046ecb43d,HBCI Deutsche Bank Kempen,DEUTDEDD327,,hbci-deutsche-bank-adapter,32070080,, -c30d4d99-45dc-467c-b22d-68b14537daa6,HBCI Deutsche Bank Kevelaer,DEUTDEDD328,,hbci-deutsche-bank-adapter,32070080,, -0f477f09-3f40-40a9-97dd-e034193480a9,HBCI Deutsche Bank Tönisvorst,DEUTDEDD331,,hbci-deutsche-bank-adapter,32070080,, -0c9e0214-861c-4298-884d-685179d3ae2f,HBCI Deutsche Bank Rheinberg,DEUTDEDD329,,hbci-deutsche-bank-adapter,32070080,, -31cd4dde-44f6-46f6-95d4-64a997a1f842,HBCI Deutsche Bank Willich,DEUTDEDD322,,hbci-deutsche-bank-adapter,32070080,, -200c1ba4-268f-4dd6-b9da-19f65622ffbf,HBCI Deutsche Bank Xanten,DEUTDEDD321,,hbci-deutsche-bank-adapter,32070080,, -f53a7fd1-8888-4136-b00d-bf29fb8c68c4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB324,,hbci-deutsche-bank-adapter,32470024,, -23815c7a-7c41-41db-ac51-854550fb2cb1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB326,,hbci-deutsche-bank-adapter,32470024,, -9c85c8a0-48a5-4f06-a045-0a3776bf47d0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB325,,hbci-deutsche-bank-adapter,32470024,, -22687505-fac2-4b3f-b300-5608c55707c8,HBCI Deutsche Bank Kleve,DEUTDEDD324,,hbci-deutsche-bank-adapter,32470077,, -b335431c-5efc-4b9b-8a64-2b809fdce919,HBCI Deutsche Bank Goch,DEUTDEDD325,,hbci-deutsche-bank-adapter,32470077,, -466bfff2-8c1c-4f3b-a8f6-d2ca3db89950,HBCI Deutsche Bank Emmerich,DEUTDEDD326,,hbci-deutsche-bank-adapter,32470077,, -49ea090d-eb7a-4eca-9aa0-f0b86a96dbc6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBWUP,,hbci-deutsche-bank-adapter,33070024,, -3a8e506d-f2fc-470f-9e60-fc3d47e6d946,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB331,,hbci-deutsche-bank-adapter,33070024,, -f94ac4a0-85be-4645-95f1-7bcae83fe009,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB332,,hbci-deutsche-bank-adapter,33070024,, -264e80dd-1ed2-4749-a49b-58004ebfa28f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB333,,hbci-deutsche-bank-adapter,33070024,, -03fb8ea8-021e-468a-9335-ab2fd46addce,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB334,,hbci-deutsche-bank-adapter,33070024,, -2e0b1843-faf5-4895-bd42-be68d5facf78,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB330,,hbci-deutsche-bank-adapter,33070024,, -8cb1fd3e-3184-41dc-9839-1eb020969629,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB335,,hbci-deutsche-bank-adapter,33070024,, -0a4efa08-b618-4529-8bf1-41192704cfcc,HBCI Deutsche Bank Wuppertal,DEUTDEDWXXX,,hbci-deutsche-bank-adapter,33070090,, -cc2eaa42-c258-43e9-aae7-715d0aec3c5a,HBCI Deutsche Bank Ennepetal,DEUTDEDW331,,hbci-deutsche-bank-adapter,33070090,, -442b0a53-493f-45fe-b03c-872eb5890d25,HBCI Deutsche Bank Mettmann,DEUTDEDW333,,hbci-deutsche-bank-adapter,33070090,, -f0511ed2-c122-41b7-93c2-5d855af97207,HBCI Deutsche Bank Heiligenhaus,DEUTDEDW332,,hbci-deutsche-bank-adapter,33070090,, -1d7c92fd-14e6-4cc0-8379-de976eae89e9,HBCI Deutsche Bank Velbert,DEUTDEDW330,,hbci-deutsche-bank-adapter,33070090,, -1894543e-0e4f-4e6f-80a9-b0dacc3349bc,HBCI Deutsche Bank Schwelm,DEUTDEDW334,,hbci-deutsche-bank-adapter,33070090,, -1c8ce2f7-34d7-4c5d-b591-22f0e13c0cb9,HBCI Deutsche Bank Wülfrath,DEUTDEDW335,,hbci-deutsche-bank-adapter,33070090,, -91818e16-e480-4b4c-8240-d5a39b83b4ec,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB340,,hbci-deutsche-bank-adapter,34070024,, -fc4006be-0bb3-43f0-aebb-a592b96cb5da,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB344,,hbci-deutsche-bank-adapter,34070024,, -79e5e01d-b6d0-4d1b-8b5e-cb63c76439fb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB345,,hbci-deutsche-bank-adapter,34070024,, -baab4e7a-1eb1-48e3-bae6-5d5ee973dbd8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB346,,hbci-deutsche-bank-adapter,34070024,, -f4202125-f417-4e2b-9686-677e667a9a59,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB341,,hbci-deutsche-bank-adapter,34070024,, -6f5acb0c-708e-4735-a695-1884e0407e4d,HBCI Deutsche Bank Remscheid,DEUTDEDW340,,hbci-deutsche-bank-adapter,34070093,, -17849c26-dd40-408f-90b9-e5f9c53501ab,HBCI Deutsche Bank Hückeswagen,DEUTDEDW344,,hbci-deutsche-bank-adapter,34070093,, -cd3c8852-a904-4197-ad8c-caae90ad42b4,HBCI Deutsche Bank Wermelskirche,DEUTDEDW346,,hbci-deutsche-bank-adapter,34070093,, -cdc7fd4c-5c8b-4e92-ab48-6aac3cfb92b6,HBCI Deutsche Bank Wipperfürth,DEUTDEDW341,,hbci-deutsche-bank-adapter,34070093,, -565334ca-0e51-472c-acca-933e233aa08a,HBCI Deutsche Bank Radevormwald,DEUTDEDW345,,hbci-deutsche-bank-adapter,34070093,, -aee83f43-1ed9-41d0-a331-04bfffb79da3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB342,,hbci-deutsche-bank-adapter,34270024,, -5e306a3c-36d8-424a-9bda-a0e7c6a1929a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB343,,hbci-deutsche-bank-adapter,34270024,, -a4e2a519-58b3-4b77-bab5-91aa658cf585,HBCI Deutsche Bank Solingen,DEUTDEDW342,,hbci-deutsche-bank-adapter,34270094,, -03ea4d30-7c0c-4467-be7e-2c417879c452,HBCI Deutsche Bank Haan Rheinl,DEUTDEDW343,,hbci-deutsche-bank-adapter,34270094,, -0213cff4-2e6f-47c3-a93d-adca571934dd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB350,,hbci-deutsche-bank-adapter,35070024,, -f53ab142-da6f-451b-8eb3-99eb85985e0e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB351,,hbci-deutsche-bank-adapter,35070024,, -4c478070-e223-4022-94b4-0ac3326c41b4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB352,,hbci-deutsche-bank-adapter,35070024,, -6da983d0-25c8-4bd8-b139-3807b614d29b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB354,,hbci-deutsche-bank-adapter,35070024,, -10ee7726-2a34-4978-a522-0eb43e27a4ba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB356,,hbci-deutsche-bank-adapter,35070024,, -a3fe6ee4-7f97-483f-a4ce-4f94f104020e,HBCI Deutsche Bank Duisburg,DEUTDEDE350,,hbci-deutsche-bank-adapter,35070030,, -60a04cc6-9751-434a-8e0e-d7ba3cffcace,HBCI Deutsche Bank Dinslaken,DEUTDEDE351,,hbci-deutsche-bank-adapter,35070030,, -8778c54a-fca6-4fa3-866a-3df88a71aa2f,HBCI Deutsche Bank Kamp-Lintfort,DEUTDEDE352,,hbci-deutsche-bank-adapter,35070030,, -2c3b0f3b-4636-42ef-939e-4f6f0e4e2d35,HBCI Deutsche Bank Moers,DEUTDEDE354,,hbci-deutsche-bank-adapter,35070030,, -85c1c5ed-1a40-4651-ba7b-f16175dec95a,HBCI Deutsche Bank Wesel,DEUTDEDE356,,hbci-deutsche-bank-adapter,35070030,, -14310557-3512-41a1-a886-cc9a4491c92e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBESS,,hbci-deutsche-bank-adapter,36070024,, -09d6843d-1a0a-41d8-ae63-1155673084a3,HBCI Deutsche Bank Essen,DEUTDEDEXXX,,hbci-deutsche-bank-adapter,36070050,, -a3c893f7-f7e5-4510-83ed-d3ce0349c1cf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB362,,hbci-deutsche-bank-adapter,36270024,, -a0f3816f-73ed-4801-a71b-f8c250e7b7ab,HBCI Deutsche Bank Mülheim Ruhr,DEUTDEDE362,,hbci-deutsche-bank-adapter,36270048,, -6b5c6b73-f7a6-43b5-ab54-09fd2fd8d3e9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB365,,hbci-deutsche-bank-adapter,36570024,, -5348d169-9eed-431e-814e-801c40180d6b,HBCI Deutsche Bank Oberhausen,DEUTDEDE365,,hbci-deutsche-bank-adapter,36570049,, -5ede9e90-87dc-4534-9dde-bdfa86525df9,HBCI Deutsche Bank Köln,DEUTDEDK402,,hbci-deutsche-bank-adapter,37070000,, -684c60de-1f33-489a-903e-f1978f95a301,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBKOE,,hbci-deutsche-bank-adapter,37070024,, -20932baf-f82f-4468-8402-1dbca68a6349,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB379,,hbci-deutsche-bank-adapter,37070024,, -29ea79ee-366d-46f1-a3bd-b5429a2e486e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB938,,hbci-deutsche-bank-adapter,37070024,, -516491a1-87d3-4b53-9dfd-66b05ee10d22,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB373,,hbci-deutsche-bank-adapter,37070024,, -33f4d553-b685-46cd-89f3-15c6ebd56573,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB370,,hbci-deutsche-bank-adapter,37070024,, -cde5b0b4-5b9e-4369-9c78-40a6ebf7fac1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB939,,hbci-deutsche-bank-adapter,37070024,, -36fd6f4e-bee0-4a3a-b63e-d3671f035184,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB353,,hbci-deutsche-bank-adapter,37070024,, -049e6fd2-4fba-4de8-b8c8-2c70a0e11a57,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB940,,hbci-deutsche-bank-adapter,37070024,, -06df49b0-0e87-4552-a7f4-7bcc64aa6ce2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB355,,hbci-deutsche-bank-adapter,37070024,, -e4e7ac66-3820-4ce9-848a-df901bd01745,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB372,,hbci-deutsche-bank-adapter,37070024,, -4343734d-7eb9-4086-ba61-5330b2a0c1e9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB941,,hbci-deutsche-bank-adapter,37070024,, -68019dc8-5cb5-471a-8b71-6f4a2b08684f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB357,,hbci-deutsche-bank-adapter,37070024,, -19b95c51-df72-429a-92d2-119a3210569a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB358,,hbci-deutsche-bank-adapter,37070024,, -7ac78454-b94d-4a42-a656-f866a3358a16,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB386,,hbci-deutsche-bank-adapter,37070024,, -177bbad9-190b-4d0b-8d60-4afe8b07f019,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB360,,hbci-deutsche-bank-adapter,37070024,, -d7e9b97b-3805-4c5d-9d0e-c5e158f6c438,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB371,,hbci-deutsche-bank-adapter,37070024,, -bb5eacf5-b94d-43aa-8212-8e8ac40a9e51,HBCI Deutsche Bank Köln,DEUTDEDKXXX,,hbci-deutsche-bank-adapter,37070060,, -45a68583-d606-4f0b-ad40-dab2d63effc2,HBCI Deutsche Bank Grevenbroich,DEUTDEDK372,,hbci-deutsche-bank-adapter,37070060,, -a14b0307-e6dd-4414-9fbd-948222f191d9,HBCI Deutsche Bank Brühl Rheinl,DEUTDEDK370,,hbci-deutsche-bank-adapter,37070060,, -1080a273-d240-4e22-988c-dc14ea5f710b,HBCI Deutsche Bank Bergisch-Glad,DEUTDEDK373,,hbci-deutsche-bank-adapter,37070060,, -0213312c-0242-4a5b-9627-0776645cb13e,HBCI Deutsche Bank Bergheim Erft,DEUTDEDK351,,hbci-deutsche-bank-adapter,37070060,, -23470e3f-6012-49e9-82fa-714d87656e6d,HBCI Deutsche Bank Euskirchen,DEUTDEDK354,,hbci-deutsche-bank-adapter,37070060,, -01ffc103-32c3-4283-8ea8-3a8e4bbe573d,HBCI Deutsche Bank Dormagen,DEUTDEDK352,,hbci-deutsche-bank-adapter,37070060,, -88a8ac48-32ea-447c-85de-a2b946cd45f8,HBCI Deutsche Bank Frechen,DEUTDEDK355,,hbci-deutsche-bank-adapter,37070060,, -8c13c1db-5dc0-4835-ba66-4b51e999c6b0,HBCI Deutsche Bank Hennef,DEUTDEDK356,,hbci-deutsche-bank-adapter,37070060,, -475c820d-3c50-4572-a5e6-7f4f497151e5,HBCI Deutsche Bank Troisdorf,DEUTDEDK360,,hbci-deutsche-bank-adapter,37070060,, -1f2bf96e-6a54-451c-a4b2-215b727a3f1f,HBCI Deutsche Bank Siegburg,DEUTDEDK386,,hbci-deutsche-bank-adapter,37070060,, -1e6d1e55-41a2-436f-9ed8-e2e4100a9c2c,HBCI Deutsche Bank Wesseling,DEUTDEDK371,,hbci-deutsche-bank-adapter,37070060,, -e399e333-0963-459a-87b7-bd2ad782eaa3,HBCI Deutsche Bank Euskirchen,DEUTDEDK379,,hbci-deutsche-bank-adapter,37070060,, -33212823-6c76-40d6-83b5-2596c0a8ebac,HBCI Deutsche Bank Hürth Rheinl,DEUTDEDK357,,hbci-deutsche-bank-adapter,37070060,, -aa1dae3e-c6c3-42b1-b7c3-9e7d07a09829,HBCI Deutsche Bank Eitorf,DEUTDEDK353,,hbci-deutsche-bank-adapter,37070060,, -fd65ab6c-bd00-4bfc-903a-d089761761fb,HBCI Deutsche Bank Kerpen Rheinl,DEUTDEDK358,,hbci-deutsche-bank-adapter,37070060,, -3102548e-947f-4add-be51-bbfdaed54912,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB375,,hbci-deutsche-bank-adapter,37570024,, -fd0c90f2-0137-4032-8b07-3f96dae32043,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB378,,hbci-deutsche-bank-adapter,37570024,, -5ef46ff7-179b-4416-b05f-1e53dbe59475,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB377,,hbci-deutsche-bank-adapter,37570024,, -3fbbcfee-ccfe-493a-b014-b8ee3bef136a,HBCI Deutsche Bank Leverkusen,DEUTDEDK375,,hbci-deutsche-bank-adapter,37570064,, -a816b92a-d2a9-4fda-817d-cdc8f596c274,HBCI Deutsche Bank Burscheid,DEUTDEDK378,,hbci-deutsche-bank-adapter,37570064,, -b36afb9f-efd4-4ae1-ad9e-037cf79224ba,HBCI Deutsche Bank Leichlingen,DEUTDEDK377,,hbci-deutsche-bank-adapter,37570064,, -7832825f-2805-46e8-8857-f9bab7fad1d6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB380,,hbci-deutsche-bank-adapter,38070024,, -c033ca45-2df4-4b46-b7b4-ae6b94f2d8fb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB944,,hbci-deutsche-bank-adapter,38070024,, -3e5f5dbf-6180-4418-9d2a-86f9dab63ce2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB943,,hbci-deutsche-bank-adapter,38070024,, -78d0a245-6c21-41e3-8f59-840041efd95b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB946,,hbci-deutsche-bank-adapter,38070024,, -aee380d4-9d44-454a-afd5-939c0ff78ee3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB942,,hbci-deutsche-bank-adapter,38070024,, -337ac7a0-77d7-4a7a-b498-9e1cbefc9fd3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB945,,hbci-deutsche-bank-adapter,38070024,, -34e7af96-823d-455d-9d6e-d47c03850abd,HBCI Deutsche Bank Bonn,DEUTDEDK380,,hbci-deutsche-bank-adapter,38070059,, -594cbc93-d387-4fd0-a59c-a92626d66e1c,HBCI Deutsche Bank Bad Neuenahr,DEUTDEDK385,,hbci-deutsche-bank-adapter,38070059,, -77f9340f-5bd1-4255-bfa3-9f738d1d2674,HBCI Deutsche Bank Meckenheim Rh,DEUTDEDK389,,hbci-deutsche-bank-adapter,38070059,, -b883d0b0-1f53-42e5-808f-7f7ec9fc6b31,HBCI Deutsche Bank Rheinbach,DEUTDEDK388,,hbci-deutsche-bank-adapter,38070059,, -5b85f2cd-3c0d-4082-b736-4841d0bb72b8,HBCI Deutsche Bank Remagen,DEUTDEDK384,,hbci-deutsche-bank-adapter,38070059,, -f71dfbfc-ab7d-483d-86dc-4c187eba3f24,HBCI Deutsche Bank Bad Honnef,DEUTDEDK387,,hbci-deutsche-bank-adapter,38070059,, -a9f6c234-8150-44a8-9a51-e2eab5a2e2fc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBXXX,,hbci-deutsche-bank-adapter,38070724,, -40b2128c-ace3-491d-a34f-f9705530fe09,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB383,,hbci-deutsche-bank-adapter,38077724,, -b936bbc5-3dc2-46b8-bd19-e81e96742e10,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB384,,hbci-deutsche-bank-adapter,38470024,, -10ea206d-8a40-4fb2-b3a8-9a85d361ac18,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB385,,hbci-deutsche-bank-adapter,38470024,, -5dfcf506-99d6-46bb-8ece-ead2285169a9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB388,,hbci-deutsche-bank-adapter,38470024,, -3f45ac05-23ae-4500-8479-b330d83fa16b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB389,,hbci-deutsche-bank-adapter,38470024,, -a18491be-dccc-497b-9818-3779187f8061,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB387,,hbci-deutsche-bank-adapter,38470024,, -5c869ca0-4135-403f-b18e-512bb5656f3e,HBCI Deutsche Bank Gummersbach,DEUTDEDW384,,hbci-deutsche-bank-adapter,38470091,, -b7df5951-0ffd-445d-866d-24c9ace7702a,HBCI Deutsche Bank Bergneustadt,DEUTDEDW385,,hbci-deutsche-bank-adapter,38470091,, -b651fde4-b02a-4072-bf82-ca04adfaa684,HBCI Deutsche Bank Engelskirchen,DEUTDEDW388,,hbci-deutsche-bank-adapter,38470091,, -6927f2f2-4d68-49a3-9900-f3e1b5a9ddfb,HBCI Deutsche Bank Meinerzhagen,DEUTDEDW389,,hbci-deutsche-bank-adapter,38470091,, -521f60aa-4f85-473b-965b-b7659b615267,HBCI Deutsche Bank Waldbröl,DEUTDEDW387,,hbci-deutsche-bank-adapter,38470091,, -e2dc94fa-5e1a-423a-a96b-7d9f72c710ba,HBCI Deutsche Bank Aachen,DEUTDEDK390,,hbci-deutsche-bank-adapter,39070020,, -f264967e-7f56-4238-8256-c0ce53b894fb,HBCI Deutsche Bank Eschweiler Rh,DEUTDEDK391,,hbci-deutsche-bank-adapter,39070020,, -d48a01b6-5074-4273-919e-aceeda07a2ad,HBCI Deutsche Bank Alsdorf Rhein,DEUTDEDK398,,hbci-deutsche-bank-adapter,39070020,, -ea5e3bda-7c7c-498d-9df0-e82ef8ab9fae,HBCI Deutsche Bank Jülich,DEUTDEDK392,,hbci-deutsche-bank-adapter,39070020,, -d1296017-3343-4c97-b267-5db5b6b40567,HBCI Deutsche Bank Hückelhoven,DEUTDEDK394,,hbci-deutsche-bank-adapter,39070020,, -e2022ae4-dbbd-4032-9c9c-2b4e3b0f92c2,HBCI Deutsche Bank Herzogenrath,DEUTDEDK397,,hbci-deutsche-bank-adapter,39070020,, -40f7e721-db03-4343-b3c2-b4b0ee8cbf8c,HBCI Deutsche Bank Übach-Palenberg,DEUTDEDK399,,hbci-deutsche-bank-adapter,39070020,, -d445d6e2-e052-4e62-ab4b-af1e748762c9,HBCI Deutsche Bank Stolberg,DEUTDEDK393,,hbci-deutsche-bank-adapter,39070020,, -efcfc74d-3039-4252-94cd-938b424a0c27,HBCI Deutsche Bank Würselen,DEUTDEDK400,,hbci-deutsche-bank-adapter,39070020,, -e878a4eb-d9cf-4f8c-b041-132ecbffdd19,HBCI Deutsche Bank Heinsberg,DEUTDEDK401,,hbci-deutsche-bank-adapter,39070020,, -eacc3a8d-b501-4f34-92e6-5832f4c2830e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB390,,hbci-deutsche-bank-adapter,39070024,, -025be8ad-86c2-4152-a1ce-eba2af87ac85,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB398,,hbci-deutsche-bank-adapter,39070024,, -f2d295fa-5df3-4d87-8582-78b30c634caf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB391,,hbci-deutsche-bank-adapter,39070024,, -e6715434-d09f-41db-be45-aad78fa9a3df,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB948,,hbci-deutsche-bank-adapter,39070024,, -fa714964-4c67-4feb-9dd4-e263aea88acb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB397,,hbci-deutsche-bank-adapter,39070024,, -27f875ee-275c-4d6b-8d92-8f887c7a0e6c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB394,,hbci-deutsche-bank-adapter,39070024,, -626aae72-f254-4701-b9e3-58ec67decffa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB392,,hbci-deutsche-bank-adapter,39070024,, -fc3f4e06-812a-44de-80f7-e36b41a58ef6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB393,,hbci-deutsche-bank-adapter,39070024,, -c0ba3098-b8db-43d9-ac3d-b7225720788d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB399,,hbci-deutsche-bank-adapter,39070024,, -714b76c2-5004-4a9e-98d3-caa8105d281b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB947,,hbci-deutsche-bank-adapter,39070024,, -9f06b5c0-c504-4dff-9222-f5d7db169907,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB395,,hbci-deutsche-bank-adapter,39570024,, -d18eadca-292e-4814-96b5-d87070b0e75b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB396,,hbci-deutsche-bank-adapter,39570024,, -4b6e793b-9d89-4380-8b43-5349e180916e,HBCI Deutsche Bank Düren,DEUTDEDK395,,hbci-deutsche-bank-adapter,39570061,, -19ad5dc5-77b7-49dc-9926-123352b6a82d,HBCI Deutsche Bank Kreuzau,DEUTDEDK396,,hbci-deutsche-bank-adapter,39570061,, -17b6e2ff-04a0-4caf-964e-b6e5e802e247,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB400,,hbci-deutsche-bank-adapter,40070024,, -76978fcb-bece-4b31-a353-949dedabf515,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB949,,hbci-deutsche-bank-adapter,40070024,, -c9256693-26af-4ac9-a545-6b6e61787582,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB950,,hbci-deutsche-bank-adapter,40070024,, -18a73411-d506-4506-8fcc-e4c35ddd30c4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB951,,hbci-deutsche-bank-adapter,40070024,, -bcf87885-7c6b-4a2f-9b4e-98231884d53e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB952,,hbci-deutsche-bank-adapter,40070024,, -e0566584-41d5-4362-8cff-a5905fb82258,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB404,,hbci-deutsche-bank-adapter,40070024,, -72589083-2856-47ba-beed-d9f2b97f5764,HBCI Deutsche Bank Münster Westf,DEUTDE3B400,,hbci-deutsche-bank-adapter,40070080,, -438a6775-9449-4f79-b7fe-f480f32e05c2,HBCI Deutsche Bank Greven Westf,DEUTDE3B442,,hbci-deutsche-bank-adapter,40070080,, -a6e1f76a-017b-4c67-976f-3815e422a84a,HBCI Deutsche Bank Steinfurt,DEUTDE3B443,,hbci-deutsche-bank-adapter,40070080,, -2f7822df-6282-4ecf-a7be-536e968a9684,HBCI Deutsche Bank Dülmen,DEUTDE3B441,,hbci-deutsche-bank-adapter,40070080,, -63f94cff-5e5f-45c3-abed-5e1fb9d54469,HBCI Deutsche Bank Warendorf,DEUTDE3B404,,hbci-deutsche-bank-adapter,40070080,, -83dbcea2-add8-4c79-8bda-5c8c51b1f8b6,HBCI Deutsche Bank Coesfeld,DEUTDE3B440,,hbci-deutsche-bank-adapter,40070080,, -235e718b-e4d4-48b0-9cb6-7611e9b59b31,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB403,,hbci-deutsche-bank-adapter,40370024,, -3ae7ccaf-4bdf-4e32-8f9c-3f8a0703bd6d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB405,,hbci-deutsche-bank-adapter,40370024,, -db4f7086-ea3b-4c83-977f-da0498165b83,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB406,,hbci-deutsche-bank-adapter,40370024,, -45b4f432-ffd5-47a4-9d64-72fb20bd8d17,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB401,,hbci-deutsche-bank-adapter,40370024,, -26b99788-542c-4a18-9ea3-099cc8ead81d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB407,,hbci-deutsche-bank-adapter,40370024,, -040fa589-b406-40df-bfbe-9d8c4f1599db,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB408,,hbci-deutsche-bank-adapter,40370024,, -c5c6beae-ec8c-4a7d-abbc-c202b24f9235,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB409,,hbci-deutsche-bank-adapter,40370024,, -f8b91b6b-7625-4144-9a42-9f8710d7ea8c,HBCI Deutsche Bank Rheine Westf,DEUTDE3B403,,hbci-deutsche-bank-adapter,40370079,, -0d2ba03e-7db1-4a93-b80b-ced60b88f952,HBCI Deutsche Bank Emsdetten,DEUTDE3B406,,hbci-deutsche-bank-adapter,40370079,, -5425a71d-8b55-4762-948f-fa364bc0bcd1,HBCI Deutsche Bank Ahaus,DEUTDE3B405,,hbci-deutsche-bank-adapter,40370079,, -16e506a9-ef3a-425a-ba62-90a60f25f62d,HBCI Deutsche Bank Gronau Westf,DEUTDE3B401,,hbci-deutsche-bank-adapter,40370079,, -29312a5b-e56f-4b29-9004-a3493e77fd59,HBCI Deutsche Bank Vreden,DEUTDE3B409,,hbci-deutsche-bank-adapter,40370079,, -a660c4ca-95d1-4072-9507-c9bb3dfb8458,HBCI Deutsche Bank Stadtlohn,DEUTDE3B408,,hbci-deutsche-bank-adapter,40370079,, -f47c62eb-93a2-45c9-a4f2-6772296f69c4,HBCI Deutsche Bank Ibbenbüren,DEUTDE3B407,,hbci-deutsche-bank-adapter,40370079,, -a87be49c-5d85-4687-9def-c8cdfc94304f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB410,,hbci-deutsche-bank-adapter,41070024,, -6a232db0-204b-42aa-b171-b98a9bb861d0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB412,,hbci-deutsche-bank-adapter,41070024,, -c9823bf6-6904-4e62-8cd7-e21cda13ee99,HBCI Deutsche Bank Hamm,DEUTDEDE410,,hbci-deutsche-bank-adapter,41070049,, -b9dba798-a721-4a99-821c-8eb7f2a02147,HBCI Deutsche Bank Ahlen Westf,DEUTDEDE412,,hbci-deutsche-bank-adapter,41070049,, -91537749-e15a-4ecc-8b9b-525a5677378e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB416,,hbci-deutsche-bank-adapter,41670024,, -6906b4d8-51e7-4a4f-9990-92f83ef0c4ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB417,,hbci-deutsche-bank-adapter,41670024,, -1185b039-888b-41fc-84c0-053def1a1855,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB414,,hbci-deutsche-bank-adapter,41670024,, -723d0f20-fda9-46fd-9a58-2ac79d3d4f71,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB418,,hbci-deutsche-bank-adapter,41670024,, -fca5b9e8-70c7-45eb-aaf7-e6ed8089e29e,HBCI Deutsche Bank Lippstadt,DEUTDE3B416,,hbci-deutsche-bank-adapter,41670027,, -a233635d-f20c-45d4-b1d5-774ce720f48f,HBCI Deutsche Bank Brilon,DEUTDE3B417,,hbci-deutsche-bank-adapter,41670028,, -65837a26-58fb-4207-88cc-6d2866b75aca,HBCI Deutsche Bank Soest Westf,DEUTDE3B414,,hbci-deutsche-bank-adapter,41670029,, -b3ba53f1-998b-4fea-a5ed-54dc956050a6,HBCI Deutsche Bank Werl,DEUTDE3B418,,hbci-deutsche-bank-adapter,41670030,, -3e73bbde-e456-4b02-af9b-a95a8891c5b6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB420,,hbci-deutsche-bank-adapter,42070024,, -6422bb5d-d292-40e8-b190-eaab31e46077,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB422,,hbci-deutsche-bank-adapter,42070024,, -66eeef0b-0ce2-4c7d-ac9f-111c984c7787,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB423,,hbci-deutsche-bank-adapter,42070024,, -dfe66600-f3a3-491a-83af-8dcbafa6ce1c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB424,,hbci-deutsche-bank-adapter,42070024,, -634c7b9a-1985-4642-bc05-a1e4afeea9b8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB366,,hbci-deutsche-bank-adapter,42070024,, -1f8eab28-80e1-43d4-8d9e-8293da9b2803,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB426,,hbci-deutsche-bank-adapter,42070024,, -4706eb8a-0ace-4034-aebd-7f06118cfb2e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB425,,hbci-deutsche-bank-adapter,42070024,, -d1ca2aaa-be1e-44c5-adc6-7012587d133b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB421,,hbci-deutsche-bank-adapter,42070024,, -4382666d-977a-4f0b-93ba-345dc88b8134,HBCI Deutsche Bank Gelsenkirchen,DEUTDEDE420,,hbci-deutsche-bank-adapter,42070062,, -5d67cba8-f1bb-4418-a80e-79b6d6ecf250,HBCI Deutsche Bank Gladbeck,DEUTDEDE384,,hbci-deutsche-bank-adapter,42070062,, -4324aec1-8e8f-4e83-a4ef-f2735cb87090,HBCI Deutsche Bank Bottrop,DEUTDEDE422,,hbci-deutsche-bank-adapter,42070062,, -44695de6-82a0-4d37-90d3-bfdc288e889f,HBCI Deutsche Bank Dorsten,DEUTDEDE424,,hbci-deutsche-bank-adapter,42070062,, -7bd7eec5-7a2c-47a9-a2b2-e47434d20100,HBCI Deutsche Bank Datteln,DEUTDEDE423,,hbci-deutsche-bank-adapter,42070062,, -286c775d-f97d-492c-a207-f46c889e199d,HBCI Deutsche Bank Marl Westf,DEUTDEDE425,,hbci-deutsche-bank-adapter,42070062,, -c024aadb-9d99-4f04-a0da-44097a5e2874,HBCI Deutsche Bank Herten Westf,DEUTDEDE426,,hbci-deutsche-bank-adapter,42070062,, -22ccc66b-0622-420b-a588-72a6441e4bd4,HBCI Deutsche Bank Recklinghause,DEUTDEDE421,,hbci-deutsche-bank-adapter,42070062,, -54e2878c-04c3-45fd-b743-5390e4482597,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB428,,hbci-deutsche-bank-adapter,42870024,, -43d4e1e9-2ac4-47c9-93d0-abf2df74d2d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB429,,hbci-deutsche-bank-adapter,42870024,, -a71f6434-f231-431b-810b-9a2fdc687b12,HBCI Deutsche Bank Bocholt,DEUTDE3B428,,hbci-deutsche-bank-adapter,42870077,, -51d062e8-a904-4f80-ad7d-d153961fb0d7,HBCI Deutsche Bank Borken Westf,DEUTDE3B429,,hbci-deutsche-bank-adapter,42870077,, -c32861ab-4468-429d-8e36-5cad41643342,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB430,,hbci-deutsche-bank-adapter,43070024,, -9c60e7c1-70ef-4b87-898b-79828347aafb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB433,,hbci-deutsche-bank-adapter,43070024,, -66ee4688-937f-4dcd-ba28-67fdff9a8c91,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB432,,hbci-deutsche-bank-adapter,43070024,, -1103b9bd-4bbf-42cc-a2e3-4d0366ede4f8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB434,,hbci-deutsche-bank-adapter,43070024,, -ce9f6c41-03bd-4d85-8418-fa781b68bcef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB431,,hbci-deutsche-bank-adapter,43070024,, -db7661bd-4c4a-4bab-bf9b-38abd9bb4de1,HBCI Deutsche Bank Bochum,DEUTDEDE430,,hbci-deutsche-bank-adapter,43070061,, -7b5496ce-06f8-4164-9808-c9a8198f7af1,HBCI Deutsche Bank Hattingen,DEUTDEDE433,,hbci-deutsche-bank-adapter,43070061,, -676f02bb-11b2-4256-a8df-9666718b856f,HBCI Deutsche Bank Sprockhövel,DEUTDEDE434,,hbci-deutsche-bank-adapter,43070061,, -76ffdd10-b209-44a7-8568-5c229bc9cd07,HBCI Deutsche Bank Herne,DEUTDEDE432,,hbci-deutsche-bank-adapter,43070061,, -bd95a75e-6fff-42f1-87a7-ea3c6ba0d2ec,HBCI Deutsche Bank Witten,DEUTDEDE431,,hbci-deutsche-bank-adapter,43070061,, -4e1e065a-779c-4c78-a083-3a55255738ce,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB440,,hbci-deutsche-bank-adapter,44070024,, -c0227d69-1348-4111-bbe5-baf3521a7944,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB441,,hbci-deutsche-bank-adapter,44070024,, -e09a87cd-15c9-44d3-83a7-a7e423af5a91,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB442,,hbci-deutsche-bank-adapter,44070024,, -81b9a82e-86cd-4bf4-8616-6faf1a50fa6a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB444,,hbci-deutsche-bank-adapter,44070024,, -cadc8822-77c1-4659-abe1-5224afdbfdb9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB443,,hbci-deutsche-bank-adapter,44070024,, -cb5245a6-9504-435c-bda0-aa7aaa2bd49d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB447,,hbci-deutsche-bank-adapter,44070024,, -03beae71-c388-4fb3-9212-d8cf2cbb9694,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB448,,hbci-deutsche-bank-adapter,44070024,, -d4742756-db21-4461-a285-97c0801a2962,HBCI Deutsche Bank Dortmund,DEUTDEDE440,,hbci-deutsche-bank-adapter,44070050,, -bbb36411-94e8-4a11-b3ae-77abaaed81c5,HBCI Deutsche Bank CastropRauxel,DEUTDEDE441,,hbci-deutsche-bank-adapter,44070050,, -0d326ffe-b851-41e7-a928-bbd161debf09,HBCI Deutsche Bank Lünen,DEUTDEDE442,,hbci-deutsche-bank-adapter,44070050,, -754b5d20-a682-4d4f-b92f-84cfce0543b0,HBCI Deutsche Bank Unna,DEUTDEDE443,,hbci-deutsche-bank-adapter,44070050,, -78133b96-de65-4da0-bda0-8911f78bfbb1,HBCI Deutsche Bank Schwerte,DEUTDEDE444,,hbci-deutsche-bank-adapter,44070050,, -d289538f-e39c-4c78-809b-d032dd7bac01,HBCI Deutsche Bank Waltrop,DEUTDEDE447,,hbci-deutsche-bank-adapter,44070050,, -f4370860-bc5e-4743-a8e8-904664e6b75a,HBCI Deutsche Bank Werne Lippe,DEUTDEDE448,,hbci-deutsche-bank-adapter,44070050,, -84ee2675-ad3f-4bd1-b1c0-9a0985c3392a,HBCI Deutsche Bank Iserlohn,DEUTDEDW445,,hbci-deutsche-bank-adapter,44570004,, -d7ba888c-fb66-4b6f-8924-a8d3ff2cf928,HBCI Deutsche Bank Altena Westf,DEUTDEDW446,,hbci-deutsche-bank-adapter,44570004,, -796c1473-2d4c-41f9-8bea-b99b5fb0ebdf,HBCI Deutsche Bank Menden Sauerl,DEUTDEDW447,,hbci-deutsche-bank-adapter,44570004,, -7c0b9a99-a927-43e3-8245-8f5e0cc87f0f,HBCI Deutsche Bank Hemer,DEUTDEDW444,,hbci-deutsche-bank-adapter,44570004,, -e80c901f-1836-4e93-b176-102bcaf73cb9,HBCI Deutsche Bank Plettenberg,DEUTDEDW449,,hbci-deutsche-bank-adapter,44570004,, -db6b074c-e475-4176-ad7e-0a118e0175fa,HBCI Deutsche Bank Werdohl,DEUTDEDW443,,hbci-deutsche-bank-adapter,44570004,, -1bccffa3-48fe-4313-8a37-f5feba18f931,HBCI Deutsche Bank Neuenrade,DEUTDEDW448,,hbci-deutsche-bank-adapter,44570004,, -334c71fa-7305-4c37-b95c-63b95a3d3bad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB445,,hbci-deutsche-bank-adapter,44570024,, -5ec70c6e-934c-4df9-8fe7-7d8632068154,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB446,,hbci-deutsche-bank-adapter,44570024,, -46c52f42-ba07-4a39-97f0-961688bab1b3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB954,,hbci-deutsche-bank-adapter,44570024,, -0cd3e75f-237d-4264-9f86-4c9f93aaa53b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB955,,hbci-deutsche-bank-adapter,44570024,, -10d1e9f2-8b81-4ca3-a684-2bc02452a380,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB956,,hbci-deutsche-bank-adapter,44570024,, -a48e16ee-d238-43a8-9091-6ef6178eb010,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB449,,hbci-deutsche-bank-adapter,44570024,, -f29b40cb-1b8d-4378-b4d3-db28b9effc38,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB953,,hbci-deutsche-bank-adapter,44570024,, -a192fb33-1979-48a0-b485-9424ae7e7d01,HBCI Deutsche Bank Hagen,DEUTDEDW450,,hbci-deutsche-bank-adapter,45070002,, -9172fae0-22bd-4e8a-8caa-f1efae176923,HBCI Deutsche Bank Gevelsberg,DEUTDEDW454,,hbci-deutsche-bank-adapter,45070002,, -06ff2b29-71cf-4c3f-922f-ef9dd03919db,HBCI Deutsche Bank Kierspe,DEUTDEDW456,,hbci-deutsche-bank-adapter,45070002,, -d75d5f74-59cc-4a3c-8602-ce2cda204980,HBCI Deutsche Bank Herdecke Ruhr,DEUTDEDW453,,hbci-deutsche-bank-adapter,45070002,, -6588d221-c33b-4f77-826f-c5cb5fb243fc,HBCI Deutsche Bank Lüdenscheid,DEUTDEDW451,,hbci-deutsche-bank-adapter,45070002,, -97d11bd5-dfdd-41c2-84c5-4478ee2e6a8d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB450,,hbci-deutsche-bank-adapter,45070024,, -1df4d90c-faf8-4abc-b6ec-f520b1c4a9a2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB454,,hbci-deutsche-bank-adapter,45070024,, -ebc0321c-7e1a-4a66-a2bd-214f539c3c53,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB453,,hbci-deutsche-bank-adapter,45070024,, -9d695a6e-5e98-47c4-868e-598786ca57a6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB456,,hbci-deutsche-bank-adapter,45070024,, -86b69dbd-a032-4573-bb6b-5a11cb4f99b3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB451,,hbci-deutsche-bank-adapter,45070024,, -d3400524-9742-4751-9579-4bfdec7d1a35,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB460,,hbci-deutsche-bank-adapter,46070024,, -a313efb7-56f1-44fc-a895-90e4e353273f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB962,,hbci-deutsche-bank-adapter,46070024,, -297e9e8f-90dc-4618-bf5d-b8b70f803ef7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB963,,hbci-deutsche-bank-adapter,46070024,, -073547eb-9ca9-4fdd-afa1-8e16b0bfafa6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB463,,hbci-deutsche-bank-adapter,46070024,, -6dbee66b-b9da-423b-b808-7e0744fb8885,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB469,,hbci-deutsche-bank-adapter,46070024,, -8051bbb9-91ea-41ef-8777-9c24173f4894,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB466,,hbci-deutsche-bank-adapter,46070024,, -63b6c525-3306-4ff5-9dab-c2903d0e177b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB461,,hbci-deutsche-bank-adapter,46070024,, -b02aed05-8a66-4e0d-9d38-0f4de65bd044,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB516,,hbci-deutsche-bank-adapter,46070024,, -815f18ad-3339-49be-a398-a84976ddef82,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB470,,hbci-deutsche-bank-adapter,46070024,, -1fb69d4f-6720-4f2f-8471-b67eeee407be,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB967,,hbci-deutsche-bank-adapter,46070024,, -fdeae5e2-ae68-48b0-a36a-8aa6a64aa6d7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB471,,hbci-deutsche-bank-adapter,46070024,, -2cdb1191-f7a4-4123-a5c2-4b026cb26c5f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB966,,hbci-deutsche-bank-adapter,46070024,, -ab3496fb-385f-4dea-991a-5ab0960c849a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB964,,hbci-deutsche-bank-adapter,46070024,, -276a045b-fb08-494b-926a-341d38c5d2c4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB465,,hbci-deutsche-bank-adapter,46070024,, -f37dcdef-4228-469f-9c19-2051e56256b5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB462,,hbci-deutsche-bank-adapter,46070024,, -2c581c10-77a7-4ea0-8e78-b6b06239acbb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB965,,hbci-deutsche-bank-adapter,46070024,, -42395220-5190-491a-b7d8-5671f675852a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB464,,hbci-deutsche-bank-adapter,46070024,, -c6a9f692-d848-49b4-8b30-ed76810ff8f0,HBCI Deutsche Bank Siegen,DEUTDEDK460,,hbci-deutsche-bank-adapter,46070090,, -d7a27399-fde5-40f9-80e7-8112d4f9e638,HBCI Deutsche Bank Biedenkopf,DEUTDEDK461,,hbci-deutsche-bank-adapter,46070090,, -c5384dcd-a2e6-4830-957d-3d121f819481,HBCI Deutsche Bank Betzdorf Sieg,DEUTDEDK466,,hbci-deutsche-bank-adapter,46070090,, -cb845cb3-30fa-4299-b792-accd82b82ac4,HBCI Deutsche Bank Bad Berleburg,DEUTDEDK463,,hbci-deutsche-bank-adapter,46070090,, -7dc630c7-5385-42b2-a7b6-a45a8a2235d9,HBCI Deutsche Bank Dillenburg,DEUTDEDK516,,hbci-deutsche-bank-adapter,46070090,, -38512d54-c71c-4a5c-8ec1-64b484ae8437,HBCI Deutsche Bank Attendorn,DEUTDEDK468,,hbci-deutsche-bank-adapter,46070090,, -1e2ee9b8-d1e5-4229-815c-757555333284,HBCI Deutsche Bank Altenkirchen,DEUTDEDK467,,hbci-deutsche-bank-adapter,46070090,, -17c266df-1ee6-41df-96e1-e821acebc87f,HBCI Deutsche Bank Freudenberg W,DEUTDEDK470,,hbci-deutsche-bank-adapter,46070090,, -f97cd2eb-1377-4eed-bba3-f4700f0bcc6f,HBCI Deutsche Bank Neunkirc Sieg,DEUTDEDK465,,hbci-deutsche-bank-adapter,46070090,, -027149b8-ba6f-4f0c-8141-e64620fe9643,HBCI Deutsche Bank Kreuztal,DEUTDEDK474,,hbci-deutsche-bank-adapter,46070090,, -de214103-879d-4c82-9925-9770447ef951,HBCI Deutsche Bank Herborn Hess,DEUTDEDK471,,hbci-deutsche-bank-adapter,46070090,, -48b684b2-c6ef-4686-8182-3f04106751d0,HBCI Deutsche Bank Laasphe,DEUTDEDK469,,hbci-deutsche-bank-adapter,46070090,, -579a8bfe-9d4a-41fb-a14d-299f3b649edd,HBCI Deutsche Bank Olpe Biggesee,DEUTDEDK462,,hbci-deutsche-bank-adapter,46070090,, -ff27330f-9f19-4df2-823b-3a4170831a03,HBCI Deutsche Bank Schmallenberg,DEUTDEDK473,,hbci-deutsche-bank-adapter,46070090,, -e6cf0daa-7736-4acf-8778-3ae6d25ed04e,HBCI Deutsche Bank Wissen Sieg,DEUTDEDK464,,hbci-deutsche-bank-adapter,46070090,, -488b49d1-9e50-47f7-a263-ff9e1068b1f7,HBCI Deutsche Bank Haiger,DEUTDEDK475,,hbci-deutsche-bank-adapter,46070090,, -2644fe09-69ff-4b2a-9c6f-777fe745f4ca,HBCI Deutsche Bank Lennestadt,DEUTDEDK472,,hbci-deutsche-bank-adapter,46070090,, -39a78c68-5c6c-4d58-b53e-e9d5913d3911,HBCI Deutsche Bank Arnsberg,DEUTDEDW466,,hbci-deutsche-bank-adapter,46670007,, -3ec2adf8-0d2c-4d33-8f4c-0052b1190e9c,HBCI Deutsche Bank Sundern Sauer,DEUTDEDW467,,hbci-deutsche-bank-adapter,46670007,, -94faa089-b371-4e11-9490-6efeb2035d34,HBCI Deutsche Bank Meschede,DEUTDEDW468,,hbci-deutsche-bank-adapter,46670007,, -628d29b8-622c-4da2-8d07-1bf16e23b772,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB961,,hbci-deutsche-bank-adapter,46670024,, -7501608a-7ffc-443c-9865-040e5c9b5579,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB468,,hbci-deutsche-bank-adapter,46670024,, -d7dcd6be-2cb1-4491-9ccc-1a59b49356cc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB467,,hbci-deutsche-bank-adapter,46670024,, -77e7cdfb-b9af-4a6a-b4aa-c9db1cb6282a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB472,,hbci-deutsche-bank-adapter,47270024,, -1c4daa44-3f99-4dba-b09c-82c51c0c0539,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB473,,hbci-deutsche-bank-adapter,47270024,, -c0881000-c573-4904-a897-8331ba4f67bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB474,,hbci-deutsche-bank-adapter,47270024,, -27208452-7d2d-42c8-aee7-24d9040a7bbc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB475,,hbci-deutsche-bank-adapter,47270024,, -18c99954-721b-4721-a058-e836a7eaf005,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB958,,hbci-deutsche-bank-adapter,47270024,, -71406473-9c97-495e-ad33-45a0662c46fa,HBCI Deutsche Bank Paderborn,DEUTDE3B472,,hbci-deutsche-bank-adapter,47270029,, -7c0a69a3-23b4-4652-9fa6-61aa38d17174,HBCI Deutsche Bank Geseke Westf,DEUTDE3B475,,hbci-deutsche-bank-adapter,47270029,, -550ce5b5-27f2-4a06-86ab-f14098ba5ea4,HBCI Deutsche Bank Bad Driburg,DEUTDE3B473,,hbci-deutsche-bank-adapter,47270029,, -ca7ec36a-b5b5-4f98-98f4-21694803df86,HBCI Deutsche Bank Höxter,DEUTDE3B451,,hbci-deutsche-bank-adapter,47270029,, -022aef9f-0abb-425e-b496-a797b4975b4c,HBCI Deutsche Bank Bad Lippsprin,DEUTDE3B474,,hbci-deutsche-bank-adapter,47270029,, -931a36c5-91d8-4d88-b790-8b6c8c8487fb,HBCI Deutsche Bank Detmold,DEUTDE3B476,,hbci-deutsche-bank-adapter,47670023,, -e6fc780c-a16e-4077-a342-7d288468d6b7,HBCI Deutsche Bank Blomberg Lipp,DEUTDE3B450,,hbci-deutsche-bank-adapter,47670023,, -75606f08-b3b8-4acb-b3b1-16e506900163,HBCI Deutsche Bank Bad Salzuflen,DEUTDE3B477,,hbci-deutsche-bank-adapter,47670023,, -a227633b-79eb-4969-83b1-0313a73a1bdd,HBCI Deutsche Bank Lemgo,DEUTDE3B478,,hbci-deutsche-bank-adapter,47670023,, -ea806a0f-d5ee-4b8c-8d43-1d7b3f6049f6,HBCI Deutsche Bank Lage Lippe,DEUTDE3B453,,hbci-deutsche-bank-adapter,47670023,, -13f52d35-3138-477c-a5a6-5818aa4c0b65,HBCI Deutsche Bank Horn-Bad Mein,DEUTDE3B452,,hbci-deutsche-bank-adapter,47670023,, -9bac6b42-4405-4bd4-b9ac-cd701f0ffafd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB476,,hbci-deutsche-bank-adapter,47670024,, -6ecddd62-1088-4281-83f9-5ac8fe88704e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB477,,hbci-deutsche-bank-adapter,47670024,, -3a643f56-2905-49e4-8f29-215a7b76a6ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB957,,hbci-deutsche-bank-adapter,47670024,, -bb631081-d561-47ff-92be-0c3876f42fa8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB959,,hbci-deutsche-bank-adapter,47670024,, -92c61034-09c8-4f3b-a8ac-e0c8b079e34d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB960,,hbci-deutsche-bank-adapter,47670024,, -dc70cad9-0284-421d-87fc-24c6316b6395,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB478,,hbci-deutsche-bank-adapter,47670024,, -febb850a-6db6-4a3a-b562-2ffedf0763c0,HBCI Deutsche Bank Bielefeld,DEUTDE3BXXX,,hbci-deutsche-bank-adapter,48070020,, -eb35eb93-f960-4982-87e9-930e1856ce53,HBCI Deutsche Bank Halle Westf,DEUTDE3B483,,hbci-deutsche-bank-adapter,48070020,, -a68b0b4a-f063-46a5-a0e9-9f81998ea9dc,HBCI Deutsche Bank Oerlinghausen,DEUTDE3B486,,hbci-deutsche-bank-adapter,48070020,, -7a2f848d-02a4-4389-9acd-d0bfc721a31d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBBIE,,hbci-deutsche-bank-adapter,48070024,, -f4896fd8-c375-4489-a576-deeb6f63c24c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB483,,hbci-deutsche-bank-adapter,48070024,, -3df1da04-2a9e-4ba1-b098-bdc65c8afecc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB486,,hbci-deutsche-bank-adapter,48070024,, -95540a70-2092-43ca-92c8-b8f9be5f33cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB413,,hbci-deutsche-bank-adapter,48070024,, -ec198640-caa6-4068-b4ae-92d54e4a530a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB480,,hbci-deutsche-bank-adapter,48070024,, -7bc70129-7501-438d-8011-7bc86c14b6ce,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB484,,hbci-deutsche-bank-adapter,48070024,, -e45a30bf-cb81-4c0c-a235-528a5160fee9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB485,,hbci-deutsche-bank-adapter,48070024,, -25afbe7e-c170-4cfe-9eb9-9bb20983ca09,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB487,,hbci-deutsche-bank-adapter,48070024,, -799e2c84-fe59-4147-aac2-ad4fb3e3f4cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB489,,hbci-deutsche-bank-adapter,48070024,, -c7a81b08-b469-4ddb-bbc8-524f763f68f3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB492,,hbci-deutsche-bank-adapter,48070024,, -be58fa64-c5a8-411e-9529-08c343cac6ab,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB481,,hbci-deutsche-bank-adapter,48070024,, -a6f6c100-be7d-42af-ab4b-d620bae466c2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB488,,hbci-deutsche-bank-adapter,48070024,, -9ff7a91c-b9e5-49b5-a54c-61787d0120f5,HBCI Deutsche Bank Gütersloh,DEUTDE3B480,,hbci-deutsche-bank-adapter,48070040,, -ef8b30c6-5e50-4996-9623-119c410b8ffe,HBCI Deutsche Bank Harsewinkel,DEUTDE3B484,,hbci-deutsche-bank-adapter,48070042,, -ef13b879-0fae-4844-8431-12da0d0d9eb3,HBCI Deutsche Bank Verl,DEUTDE3B489,,hbci-deutsche-bank-adapter,48070043,, -d540e8a2-17b7-4316-af7e-86b61ef4579d,HBCI Deutsche Bank Rheda-Wiedenb,DEUTDE3B487,,hbci-deutsche-bank-adapter,48070044,, -f75fb3a0-ffb8-4d14-b03c-6183adb25e8d,HBCI Deutsche Bank Beckum Westf,DEUTDE3B413,,hbci-deutsche-bank-adapter,48070045,, -04a24084-d41f-4b3a-b5c6-403a21cbd6fe,HBCI Deutsche Bank Herford,DEUTDE3B481,,hbci-deutsche-bank-adapter,48070050,, -d85d4bde-da4c-4582-9008-f4489d35ce8e,HBCI Deutsche Bank Bünde Westf,DEUTDE3B492,,hbci-deutsche-bank-adapter,48070052,, -0706c7ff-834c-4e44-81e6-5c491b041065,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB490,,hbci-deutsche-bank-adapter,49070024,, -f2c0d472-6d8a-4d0d-a28d-fb2bc4795c5a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB491,,hbci-deutsche-bank-adapter,49070024,, -f1330a6a-e8b5-4029-9792-00b7f09d4d22,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB493,,hbci-deutsche-bank-adapter,49070024,, -49f04c61-2ce4-4dce-9069-caa84feda5c7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB494,,hbci-deutsche-bank-adapter,49070024,, -7039660d-462c-4d97-a488-365062de6c61,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB495,,hbci-deutsche-bank-adapter,49070024,, -21c01ae4-4fcb-4a5c-9222-80694868b537,HBCI Deutsche Bank Minden Westf,DEUTDE3B490,,hbci-deutsche-bank-adapter,49070028,, -f942ea33-60d0-4e2c-8d82-b3c0fdd060c4,HBCI Deutsche Bank Bad Oeynhause,DEUTDE3B491,,hbci-deutsche-bank-adapter,49070028,, -262c0329-413d-4b6d-a3e3-7eb58843df6d,HBCI Deutsche Bank Löhne Westf,DEUTDE3B494,,hbci-deutsche-bank-adapter,49070028,, -4d227cf2-e016-451e-ab91-9fc9db0e2b76,HBCI Deutsche Bank Espelkamp,DEUTDE3B493,,hbci-deutsche-bank-adapter,49070028,, -5084b876-5de8-43f9-9156-c91762a636df,HBCI Deutsche Bank Lübbecke,DEUTDE3B495,,hbci-deutsche-bank-adapter,49070028,, -1de4aca3-cafd-402c-8316-edc22bd72fd9,HBCI Deutsche Bank Frankfurt F,DEUTDEFFXXX,,hbci-deutsche-bank-adapter,50070010,, -6af0f8f7-d32a-42a1-9861-adc3b5432bd2,HBCI Deutsche Bank Bad Homburg,DEUTDEFF500,,hbci-deutsche-bank-adapter,50070010,, -6284e18c-e0de-4472-98c0-bda919cb7200,HBCI Deutsche Bank Kronberg,DEUTDEFF542,,hbci-deutsche-bank-adapter,50070010,, -c4f84c77-5c04-4c72-9906-98837a779874,HBCI Deutsche Bank Königstein,DEUTDEFF541,,hbci-deutsche-bank-adapter,50070010,, -e496905c-9da7-4b8d-8b19-b381e85e42f6,HBCI Deutsche Bank Oberursel,DEUTDEFF504,,hbci-deutsche-bank-adapter,50070010,, -0b20ba45-0719-4f0c-98d0-16d762e70cc3,HBCI Deutsche Bank Friedbg Hess,DEUTDEFF503,,hbci-deutsche-bank-adapter,50070010,, -d05cfa12-23cc-4667-b78f-7ee1b1194346,HBCI Deutsche Bank Hofheim,DEUTDEFF540,,hbci-deutsche-bank-adapter,50070010,, -87180fca-0082-4c0d-9e22-3c96e1e851e7,HBCI Deutsche Bank F-SIP,DEUTDEFFSIP,,hbci-deutsche-bank-adapter,50070011,, -3e279d19-5fa2-4199-8f32-d33a94621f95,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBFRA,,hbci-deutsche-bank-adapter,50070024,, -fadba679-a64d-49df-a2d5-bccd78e4b621,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB500,,hbci-deutsche-bank-adapter,50070024,, -6af69266-f133-4eec-b9a3-2ca3148762cb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB503,,hbci-deutsche-bank-adapter,50070024,, -41c676de-b2b7-4f1e-a27f-ad6a85dcbc30,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB535,,hbci-deutsche-bank-adapter,50070024,, -54437b09-ca43-41c3-95bd-e35db524a31a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB536,,hbci-deutsche-bank-adapter,50070024,, -7d61b89f-efdc-4330-8593-270d890f57d9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB504,,hbci-deutsche-bank-adapter,50070024,, -71e271ad-fdae-470d-aeb8-09841374252b,HBCI Deutsche Bank Rüsselsheim,DEUTDEFF502,,hbci-deutsche-bank-adapter,50073019,, -4e793d5f-e888-4b7d-8071-1cf1e01d1e1c,HBCI Deutsche Bank Raunheim,DEUTDEFF543,,hbci-deutsche-bank-adapter,50073019,, -6bc9fc54-ffda-4c83-9be1-5bb7b3dc19e1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB502,,hbci-deutsche-bank-adapter,50073024,, -e975cd4d-8539-4424-8887-cb635837fc55,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB537,,hbci-deutsche-bank-adapter,50073024,, -e908304f-85a7-433e-900d-a4c32b4d4918,HBCI Deutsche Bank Europe,DEUTDE5XXXX,,hbci-deutsche-bank-adapter,50073081,, -a2a08a75-313a-4d16-aae7-99daab7a855e,HBCI Deutsche Bank Offenbach,DEUTDEFF505,,hbci-deutsche-bank-adapter,50570018,, -a33fc3da-701a-4fc3-ad0f-7ed6fbcfec74,HBCI Deutsche Bank Neu-Isenburg,DEUTDEFF507,,hbci-deutsche-bank-adapter,50570018,, -6d33a58d-2afd-43aa-84ee-41ed075f4ed1,HBCI Deutsche Bank Obertshausen,DEUTDEFF549,,hbci-deutsche-bank-adapter,50570018,, -6f90cc63-290d-4807-ae1e-3016ab38fc28,HBCI Deutsche Bank Heusenstamm,DEUTDEFF546,,hbci-deutsche-bank-adapter,50570018,, -e8af5305-1112-40b7-ba1d-51d705aeab17,HBCI Deutsche Bank Mühlheim Main,DEUTDEFF548,,hbci-deutsche-bank-adapter,50570018,, -5af62044-df7c-4405-acc6-f5bcbabe18a6,HBCI Deutsche Bank Dreieich,DEUTDEFF545,,hbci-deutsche-bank-adapter,50570018,, -89e34459-3312-4e60-8b52-5a6aa2f21d8e,HBCI Deutsche Bank Dietzenbach,DEUTDEFF544,,hbci-deutsche-bank-adapter,50570018,, -fffcb3f8-fd61-46ac-861f-36290e9023b6,HBCI Deutsche Bank Langen Hess,DEUTDEFF547,,hbci-deutsche-bank-adapter,50570018,, -3748f2f3-80fb-4629-b676-426fbcaa112e,HBCI Deutsche Bank Rodgau,DEUTDEFF550,,hbci-deutsche-bank-adapter,50570018,, -d648bbdc-462c-4902-aed5-277cfc0886a7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB505,,hbci-deutsche-bank-adapter,50570024,, -839deb8c-a93d-4404-8e3e-c99353db92a8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB538,,hbci-deutsche-bank-adapter,50570024,, -2d55cc97-2ca1-432f-b391-71df960163fa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB539,,hbci-deutsche-bank-adapter,50570024,, -0d81edb9-87e7-4d61-a01a-59c2bfc074d1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB529,,hbci-deutsche-bank-adapter,50570024,, -04c19bce-d1c3-4d8b-ba83-2fa22bd3ce27,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB528,,hbci-deutsche-bank-adapter,50570024,, -75d74efd-fc81-481b-b776-5c0530e04f0a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB527,,hbci-deutsche-bank-adapter,50570024,, -5c0b7498-0515-4af4-b934-136100e01d45,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB507,,hbci-deutsche-bank-adapter,50570024,, -2d2e78d1-baf5-4e3f-be6e-dfef1099a54c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB526,,hbci-deutsche-bank-adapter,50570024,, -a35e9502-8ae4-4b9a-bdf0-b70bd4f9a0f1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB525,,hbci-deutsche-bank-adapter,50570024,, -712ff879-5c8f-4672-81eb-392a884f1286,HBCI Deutsche Bank Hanau Main,DEUTDEFF506,,hbci-deutsche-bank-adapter,50670009,, -7c803c2a-65c8-4d3d-a8b4-b66539a3c7a1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB506,,hbci-deutsche-bank-adapter,50670024,, -e6ab2099-92c7-4269-a572-f678e7e32aaa,HBCI Deutsche Bank Darmstadt,DEUTDEFF508,,hbci-deutsche-bank-adapter,50870005,, -7f3499ee-e9f0-4e10-b97f-bfb28e894217,HBCI Deutsche Bank Griesheim Hes,DEUTDEFF551,,hbci-deutsche-bank-adapter,50870005,, -22538af5-774a-48a5-ab56-51cd4fc08a45,HBCI Deutsche Bank Groß-Gerau,DEUTDEFF552,,hbci-deutsche-bank-adapter,50870005,, -38149cff-c103-42f9-b8f0-f2801e7d3d96,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB508,,hbci-deutsche-bank-adapter,50870024,, -7ffe443a-b136-415f-a619-6acf6e31242b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB554,,hbci-deutsche-bank-adapter,50870024,, -97c351c8-13b2-4bdf-8db1-e864296257fd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB555,,hbci-deutsche-bank-adapter,50870024,, -025f2163-e975-4b12-8179-3f11476aad96,HBCI Deutsche Bank Bensheim,DEUTDEFF509,,hbci-deutsche-bank-adapter,50970004,, -91c63b85-d295-4aaa-be59-554b0e76e481,HBCI Deutsche Bank Heppenheim,DEUTDEFF519,,hbci-deutsche-bank-adapter,50970004,, -964fa3e5-327e-441b-bf3c-c5a4c9f2870e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB509,,hbci-deutsche-bank-adapter,50970024,, -5689dc32-4f33-4fea-bfa3-df8e07320272,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB519,,hbci-deutsche-bank-adapter,50970024,, -0c6a2e88-d12b-4bcd-b6de-6a5ed7b36457,HBCI Deutsche Bank Wiesbaden,DEUTDEFF510,,hbci-deutsche-bank-adapter,51070021,, -1d8d6a1d-ffc7-4c82-b061-9a06ff813845,HBCI Deutsche Bank Eltville,DEUTDEFF512,,hbci-deutsche-bank-adapter,51070021,, -3ed41b65-f2bf-44bc-8b41-92a6fd49f88c,HBCI Deutsche Bank Taunusstein,DEUTDEFF514,,hbci-deutsche-bank-adapter,51070021,, -46dbda93-5dff-4705-9458-d8b374b460f4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB510,,hbci-deutsche-bank-adapter,51070024,, -a1dbbadc-f451-4b87-8b55-1f5d3309d71e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB512,,hbci-deutsche-bank-adapter,51070024,, -f91c9d50-af32-4654-8997-f5e733014c0e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB514,,hbci-deutsche-bank-adapter,51070024,, -37cc903c-ea3b-4992-8a69-300c2ab77789,HBCI Deutsche Bank Limburg Lahn,DEUTDEFF511,,hbci-deutsche-bank-adapter,51170010,, -02a8b3ec-c7c4-422a-8e9d-c47603711326,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB511,,hbci-deutsche-bank-adapter,51170024,, -8d1b5479-785a-4d9c-9a71-08b66c998995,HBCI Deutsche Bank Gießen,DEUTDEFF513,,hbci-deutsche-bank-adapter,51370008,, -249d5ae3-cbd2-4d41-86c6-70143c299fea,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB513,,hbci-deutsche-bank-adapter,51370024,, -2ff7e3f9-2263-499a-9398-b464ff5ac798,HBCI Deutsche Bank Wetzlar,DEUTDEFF515,,hbci-deutsche-bank-adapter,51570008,, -39717826-51a5-4805-b46e-6b4387614d09,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB515,,hbci-deutsche-bank-adapter,51570024,, -cbeedff4-4e37-4b4b-8d1f-06965483b001,HBCI Deutsche Bank Kassel,DEUTDEFF520,,hbci-deutsche-bank-adapter,52070012,, -39b87570-bd6c-434c-9526-36844ccee919,HBCI Deutsche Bank Baunatal,DEUTDEFF523,,hbci-deutsche-bank-adapter,52070012,, -a62834bc-164c-4901-85d3-5ace57cc65d0,HBCI Deutsche Bank Hann Münden,DEUTDEFF524,,hbci-deutsche-bank-adapter,52070012,, -c7462cb3-6d90-42e1-8aae-f9c8a09db938,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB520,,hbci-deutsche-bank-adapter,52070024,, -45f0bf7a-7868-45aa-8b59-51c64315d08d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB523,,hbci-deutsche-bank-adapter,52070024,, -6646d8da-9c5b-4367-8446-ba6241b1ddfe,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB524,,hbci-deutsche-bank-adapter,52070024,, -c3db20ab-c878-45d0-b381-50a1f053d837,HBCI Deutsche Bank Bad Wildungen,DEUTDEFF521,,hbci-deutsche-bank-adapter,52071212,, -d1efc49f-2f39-42e7-9d4d-3157c78f0256,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB521,,hbci-deutsche-bank-adapter,52071224,, -fe467cc7-b7c2-48c1-a66d-133df64ce9e3,HBCI Deutsche Bank Eschwege,DEUTDEFF522,,hbci-deutsche-bank-adapter,52270012,, -a3ee67af-84dc-4df3-bed6-da4b8e84e02d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB522,,hbci-deutsche-bank-adapter,52270024,, -00e4772c-d1be-4fe2-959e-a503cd8db4c4,HBCI Deutsche Bank Fulda,DEUTDEFF530,,hbci-deutsche-bank-adapter,53070007,, -bafb91bd-ef2c-4bae-9b25-d5ecd846615e,HBCI Deutsche Bank Alsfeld,DEUTDEFF531,,hbci-deutsche-bank-adapter,53070007,, -ad326335-0ec0-42e4-a014-58beee40672c,HBCI Deutsche Bank Lauterbach He,DEUTDEFF534,,hbci-deutsche-bank-adapter,53070007,, -bd560a74-5f67-49b5-ba07-88a1b24fc26b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB530,,hbci-deutsche-bank-adapter,53070024,, -2ce6f404-cd84-4b89-b027-f732f534d7ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB531,,hbci-deutsche-bank-adapter,53070024,, -6832815a-fc61-4067-828e-b3dea46622e5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB534,,hbci-deutsche-bank-adapter,53070024,, -b1bd67ac-3d1f-4480-8f87-aa7ce8f8080d,HBCI Deutsche Bank Bad Hersfeld,DEUTDEFF532,,hbci-deutsche-bank-adapter,53270012,, -b2d7d44d-6dba-40d9-8399-d5fd7bfb87b5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB518,,hbci-deutsche-bank-adapter,53270024,, -3b15e48e-4a6b-4d32-a285-1c3f72f2f615,HBCI Deutsche Bank Marburg Lahn,DEUTDEFF533,,hbci-deutsche-bank-adapter,53370008,, -98456274-7382-48dd-8f2f-301bf4a06727,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB533,,hbci-deutsche-bank-adapter,53370024,, -c2129bf2-5abb-4f15-8f22-fde882e6396b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB540,,hbci-deutsche-bank-adapter,54070024,, -f914b19d-b9d9-4e72-987e-e1cc3b715a49,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB541,,hbci-deutsche-bank-adapter,54070024,, -f0997ad3-1243-42d6-b458-9aa689b4515e,HBCI Deutsche Bank Kaiserslauter,DEUTDESM540,,hbci-deutsche-bank-adapter,54070092,, -6a8d16e5-06d0-45aa-8e5b-2e066498df80,HBCI Deutsche Bank Landstuhl,DEUTDESM541,,hbci-deutsche-bank-adapter,54070092,, -6ecbcdd1-87c9-448c-b48f-75479803c90b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB542,,hbci-deutsche-bank-adapter,54270024,, -e5887427-6918-479b-b7f7-95469d6bdfa5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB543,,hbci-deutsche-bank-adapter,54270024,, -0868691a-5505-4a7b-90ae-d78bf9d2fe1b,HBCI Deutsche Bank Pirmasens,DEUTDESM542,,hbci-deutsche-bank-adapter,54270096,, -89a9e3e1-4c9d-4847-9add-b0385574aebf,HBCI Deutsche Bank Zweibrücken,DEUTDESM543,,hbci-deutsche-bank-adapter,54270096,, -d0e2543b-4775-4bc4-ac59-dc3df0e1af2b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB545,,hbci-deutsche-bank-adapter,54570024,, -aa29aed6-bb14-4264-a2ef-2b90ba4f2272,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB549,,hbci-deutsche-bank-adapter,54570024,, -7e3715f3-2aca-4291-abd4-9b4fa6b705f8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB544,,hbci-deutsche-bank-adapter,54570024,, -9face340-19d7-4319-a8b7-e9cadcc0ecfb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB550,,hbci-deutsche-bank-adapter,54570024,, -75743d65-68f0-4401-a335-b861a5e20172,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB547,,hbci-deutsche-bank-adapter,54570024,, -c8c96838-213e-4c91-8b3f-1c0ce1864ebd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB553,,hbci-deutsche-bank-adapter,54570024,, -6044cd71-cf3d-49df-a18f-08ba185a2fc7,HBCI Deutsche Bank Ludwigshafen,DEUTDESM545,,hbci-deutsche-bank-adapter,54570094,, -35d1c0a8-4970-402e-aa63-930bee125e25,HBCI Deutsche Bank Frankenthal,DEUTDESM544,,hbci-deutsche-bank-adapter,54570094,, -0e396a88-3e2a-4e67-be18-e40c32cd6cbf,HBCI Deutsche Bank Alzey,DEUTDESM549,,hbci-deutsche-bank-adapter,54570094,, -65795882-00ad-4b30-99b7-61d107764edb,HBCI Deutsche Bank Limburgerhof,DEUTDESM550,,hbci-deutsche-bank-adapter,54570094,, -e8576fcb-6fde-4079-b93e-8da82ab09746,HBCI Deutsche Bank Speyer,DEUTDESM547,,hbci-deutsche-bank-adapter,54570094,, -a3c79081-f63d-4f24-a5e4-d72aa3f2b08b,HBCI Deutsche Bank Worms,DEUTDESM553,,hbci-deutsche-bank-adapter,54570094,, -747a1a2b-6ccc-4cec-b23b-62ae853df545,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB546,,hbci-deutsche-bank-adapter,54670024,, -c0cdf40d-3111-4f6c-85d8-aa43072618ba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB552,,hbci-deutsche-bank-adapter,54670024,, -10c75e1f-2595-43b2-b1e9-8188ef525e24,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB548,,hbci-deutsche-bank-adapter,54670024,, -9deb4d53-6fda-4196-a3c2-d9d8d8eb1845,HBCI Deutsche Bank Neustadt Wstr,DEUTDESM546,,hbci-deutsche-bank-adapter,54670095,, -f378b3b7-56d7-4c77-bc7f-8d46865007c5,HBCI Deutsche Bank Bad Dürkheim,DEUTDESM552,,hbci-deutsche-bank-adapter,54670095,, -01693557-b21d-4f57-97f5-9d63a149c029,HBCI Deutsche Bank Landau Pfalz,DEUTDESM548,,hbci-deutsche-bank-adapter,54670095,, -af020ca8-0a44-46cc-8207-80eed5534b78,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMAI,,hbci-deutsche-bank-adapter,55070024,, -566cb290-1321-4e29-8cb9-4d1213fdd108,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB563,,hbci-deutsche-bank-adapter,55070024,, -cc1148c5-3bf7-4646-8310-fd7a879ae9c4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB561,,hbci-deutsche-bank-adapter,55070024,, -4601819f-dc74-4eb6-9dac-03b05e99dcdc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB551,,hbci-deutsche-bank-adapter,55070024,, -bf507592-eb84-4715-9c8d-2d5b605eabf5,HBCI Deutsche Bank Mainz,DEUTDE5MXXX,,hbci-deutsche-bank-adapter,55070040,, -17618f23-9d75-4eda-9b80-c7d4e8ccb068,HBCI Deutsche Bank Bingen Rhein,DEUTDE5M552,,hbci-deutsche-bank-adapter,55070040,, -aacb075e-71a4-43cf-a665-baa0d686c3a7,HBCI Deutsche Bank Ginsheim-Gust,DEUTDE5M550,,hbci-deutsche-bank-adapter,55070040,, -03e0dc08-2011-4981-99bb-ff0b6d3f53a1,HBCI Deutsche Bank Ingelheim Rhe,DEUTDE5M551,,hbci-deutsche-bank-adapter,55070040,, -106fcbaf-67e5-4952-bbb8-db291fd5582b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB560,,hbci-deutsche-bank-adapter,56070024,, -ae401fc9-9182-403d-82b0-bac3a2ddbd16,HBCI Deutsche Bank Bad Kreuznach,DEUTDE5M560,,hbci-deutsche-bank-adapter,56070040,, -1ce3c56f-4125-4d43-97b6-871609e5fa89,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB562,,hbci-deutsche-bank-adapter,56270024,, -73af02b4-832e-429e-b462-1d03bb828cb9,HBCI Deutsche Bank Idar-Oberst,DEUTDE5M562,,hbci-deutsche-bank-adapter,56270044,, -15d18d60-506c-4190-a72c-9884376be4ac,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB570,,hbci-deutsche-bank-adapter,57070024,, -ee804775-a6a2-4f68-b1c0-ea2ac16cab3b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB572,,hbci-deutsche-bank-adapter,57070024,, -372e9312-19d8-4514-95db-98b73ae150b1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB571,,hbci-deutsche-bank-adapter,57070024,, -7c8e8ebf-cbd5-44a4-b997-70c8a2171874,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB577,,hbci-deutsche-bank-adapter,57070024,, -a18454b9-6e8a-4e71-8631-903a4b6a9aa9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB573,,hbci-deutsche-bank-adapter,57070024,, -04c69bb8-a199-4be9-aeff-8f190104e8fa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB578,,hbci-deutsche-bank-adapter,57070024,, -7f4ca38b-4998-4517-8053-1c507945f8e5,HBCI Deutsche Bank Koblenz,DEUTDE5M570,,hbci-deutsche-bank-adapter,57070045,, -04c1c870-31e6-4074-acd1-c83d57166cd4,HBCI Deutsche Bank Bendorf Rhein,DEUTDE5M572,,hbci-deutsche-bank-adapter,57070045,, -f50fa9ee-c575-43d5-808e-b1b80132ba4b,HBCI Deutsche Bank Lahnstein,DEUTDE5M573,,hbci-deutsche-bank-adapter,57070045,, -25aa8716-db8f-4a86-8033-9472051f04b1,HBCI Deutsche Bank Höhr-Grenzhau,DEUTDE5M577,,hbci-deutsche-bank-adapter,57070045,, -9fa59720-e2f9-4464-916c-61ca834388cd,HBCI Deutsche Bank Boppard,DEUTDE5M571,,hbci-deutsche-bank-adapter,57070045,, -5bba1215-1748-4097-8f3d-e04073fcd51d,HBCI Deutsche Bank Montabaur,DEUTDE5M578,,hbci-deutsche-bank-adapter,57070045,, -ee1a9f75-0a39-454a-a0c9-55f87814adb9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB574,,hbci-deutsche-bank-adapter,57470024,, -c1277afd-365a-4245-8adf-b0a2ed7f2981,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB575,,hbci-deutsche-bank-adapter,57470024,, -2435cb73-527f-4bcd-8e10-fc8c52074f0d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB576,,hbci-deutsche-bank-adapter,57470024,, -2645afbb-941c-40b6-95cd-e663c8023d3b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB579,,hbci-deutsche-bank-adapter,57470024,, -adc56314-65ad-4e24-9da0-5cf480988158,HBCI Deutsche Bank Neuwied,DEUTDE5M574,,hbci-deutsche-bank-adapter,57470047,, -ad419db3-0ea2-42cb-85c4-29fa7a54bc4a,HBCI Deutsche Bank Andernach,DEUTDE5M575,,hbci-deutsche-bank-adapter,57470047,, -d66da24d-10cd-4932-b145-222411dd5016,HBCI Deutsche Bank Mayen,DEUTDE5M576,,hbci-deutsche-bank-adapter,57470047,, -421fa78a-78f7-42ed-9085-24d5a707aa19,HBCI Deutsche Bank Weißenthurm,DEUTDE5M579,,hbci-deutsche-bank-adapter,57470047,, -645c690b-f5a5-4e63-bd83-dcdf91f446e9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB585,,hbci-deutsche-bank-adapter,58570024,, -1782a134-e433-448e-8d93-64e24cd54e02,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB580,,hbci-deutsche-bank-adapter,58570024,, -c320c17c-b447-4f0b-a962-50e81598ded2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB586,,hbci-deutsche-bank-adapter,58570024,, -e0447fd0-dd5d-44ac-b238-02026051a00b,HBCI Deutsche Bank Trier,DEUTDE5M585,,hbci-deutsche-bank-adapter,58570048,, -2da29fa9-06be-4761-9e68-06fc3e7339b9,HBCI Deutsche Bank Konz,DEUTDE5M590,,hbci-deutsche-bank-adapter,58570048,, -33108e4f-bbd9-444a-874d-619e952828ef,HBCI Deutsche Bank Wittlich,DEUTDE5M586,,hbci-deutsche-bank-adapter,58570048,, -c25c8f53-b92c-4493-8e39-34d07bb0122a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB587,,hbci-deutsche-bank-adapter,58771224,, -12ddd8ac-8428-46ff-a3d7-e19a2325c10e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB589,,hbci-deutsche-bank-adapter,58771224,, -6bf2ba89-db42-4323-880d-6cbd6828f1b0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB588,,hbci-deutsche-bank-adapter,58771224,, -c4ec1154-9e4c-4ea1-989f-1344bcc6ed8c,HBCI Deutsche Bank Bernkast-Kues,DEUTDE5M587,,hbci-deutsche-bank-adapter,58771242,, -b7d0f815-b72b-4e48-a8ad-15e7239e1ed7,HBCI Deutsche Bank Traben-Trarb,DEUTDE5M589,,hbci-deutsche-bank-adapter,58771242,, -14c96dca-2c0e-49db-82e9-bae4bb19719c,HBCI Deutsche Bank Zell Mosel,DEUTDE5M588,,hbci-deutsche-bank-adapter,58771242,, -3778a122-0e9a-4fc4-b36c-5e0ddc8da668,HBCI Deutsche Bank Saarbruecken,DEUTDE5M555,,hbci-deutsche-bank-adapter,59070000,, -5f64fb6d-249f-4363-b61e-e7178b6ed523,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB595,,hbci-deutsche-bank-adapter,59070070,, -98cb5fa5-072b-44e0-ae4d-b1ae3366feb4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB590,,hbci-deutsche-bank-adapter,59070070,, -ba46ea47-b54a-4a16-a21f-4cf6e6ab915b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBSTG,,hbci-deutsche-bank-adapter,60070024,, -5fa530e3-fe72-4945-8bf4-1a8aa34b76b6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB602,,hbci-deutsche-bank-adapter,60070024,, -ecc5bccb-9327-46a6-a45a-40228dbe85ad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB647,,hbci-deutsche-bank-adapter,60070024,, -f684e131-f1d8-4ff7-bdb3-867d79b865ed,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB609,,hbci-deutsche-bank-adapter,60070024,, -fc5eb5ae-c54d-4daa-91b2-d82602a1634b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB624,,hbci-deutsche-bank-adapter,60070024,, -4b0a6056-1011-44dc-a49c-ede034993b8a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB605,,hbci-deutsche-bank-adapter,60070024,, -32e21492-e515-46fc-b69a-fadcaf1e7d5c,HBCI Deutsche Bank Stuttgart,DEUTDESSXXX,,hbci-deutsche-bank-adapter,60070070,, -c1604540-10ab-42ba-99da-502d89218d2f,HBCI Deutsche Bank Böblingen,DEUTDESS602,,hbci-deutsche-bank-adapter,60070070,, -66530680-311d-4689-9ddf-60d417caa9b2,HBCI Deutsche Bank Leonberg Württ,DEUTDESS624,,hbci-deutsche-bank-adapter,60070070,, -fe15e680-4024-4b9a-8561-4877f780e6d3,HBCI Deutsche Bank Leinfelden-Ec,DEUTDESS609,,hbci-deutsche-bank-adapter,60070070,, -4c5fbb0c-619c-4f97-99ea-5eadb37e4a7c,HBCI Deutsche Bank Sindelfingen,DEUTDESS605,,hbci-deutsche-bank-adapter,60070070,, -924c57c7-8d0c-4487-873d-c949cb8a6231,HBCI Deutsche Bank Gerlingen,DEUTDESS647,,hbci-deutsche-bank-adapter,60070070,, -f90df2e0-512e-4bfa-a316-8bd3b061e46e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB606,,hbci-deutsche-bank-adapter,60270024,, -2cbe05f8-81a5-4e8f-abb7-3d3117d2e0c9,HBCI Deutsche Bank Waiblingen,DEUTDESS606,,hbci-deutsche-bank-adapter,60270073,, -8e07214d-18a7-4f67-96dc-0bc990ecda98,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB604,,hbci-deutsche-bank-adapter,60470024,, -25c74df4-caed-4f2c-b591-1d264fda9901,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB608,,hbci-deutsche-bank-adapter,60470024,, -d322f03f-c9ea-4aea-a531-1ce4d187f7b0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB635,,hbci-deutsche-bank-adapter,60470024,, -aa77b87e-5079-4358-ac08-a236a7599dcb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB617,,hbci-deutsche-bank-adapter,60470024,, -ece461a2-2361-41f3-bc97-410d93272b7e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB623,,hbci-deutsche-bank-adapter,60470024,, -aee89a3d-0c5b-450e-b534-58c793f53672,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB648,,hbci-deutsche-bank-adapter,60470024,, -cb6f3059-29e2-4bea-baca-181fbbca6891,HBCI Deutsche Bank Ludwigsburg,DEUTDESS604,,hbci-deutsche-bank-adapter,60470082,, -6fd90246-9516-472e-9788-e8895ec1a350,HBCI Deutsche Bank Bietigheim-Bi,DEUTDESS635,,hbci-deutsche-bank-adapter,60470082,, -c96e4b6c-18c5-4deb-abe9-29639e8968f3,HBCI Deutsche Bank Kornwestheim,DEUTDESS617,,hbci-deutsche-bank-adapter,60470082,, -e49164c8-f14f-498d-8e4a-bd4683e323bc,HBCI Deutsche Bank Marbach Necka,DEUTDESS623,,hbci-deutsche-bank-adapter,60470082,, -a96310d7-e1ef-450f-9773-23200b6235f9,HBCI Deutsche Bank Asperg,DEUTDESS608,,hbci-deutsche-bank-adapter,60470082,, -2b78e184-996a-45c3-84cb-476712504f0d,HBCI Deutsche Bank Markgröningen,DEUTDESS648,,hbci-deutsche-bank-adapter,60470082,, -d729a012-6d15-4aee-863f-bf9c7eb7ab6d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB659,,hbci-deutsche-bank-adapter,60670024,, -3213c925-8f02-4b59-8f04-87740e6eec94,HBCI Deutsche Bank Untertürkheim,DEUTDESS659,,hbci-deutsche-bank-adapter,60670070,, -861e4b01-8ec9-4c29-a537-86f86f1601c3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB610,,hbci-deutsche-bank-adapter,61070024,, -699ed246-d8ba-48a9-a8f1-224e472f0f2a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB627,,hbci-deutsche-bank-adapter,61070024,, -a1123ff8-2304-4d28-a9c6-0ca5ea61b1dd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB618,,hbci-deutsche-bank-adapter,61070024,, -1a27da42-f326-426e-bca7-2a814dead916,HBCI Deutsche Bank Göppingen,DEUTDESS610,,hbci-deutsche-bank-adapter,61070078,, -f27bf216-30ed-4aed-918f-88a46f2c97f5,HBCI Deutsche Bank Geislingen St,DEUTDESS618,,hbci-deutsche-bank-adapter,61070078,, -c735e835-95b0-4c87-80d4-db3707ed06f0,HBCI Deutsche Bank Eislingen Fil,DEUTDESS627,,hbci-deutsche-bank-adapter,61070078,, -72e8e150-915c-44a9-9e46-a37e4f26e702,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB611,,hbci-deutsche-bank-adapter,61170024,, -bd5e20e6-5b62-4b85-ba09-95c4daa2c7bc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB619,,hbci-deutsche-bank-adapter,61170024,, -660a12c9-fc74-461b-ab89-f0fe64120b74,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB612,,hbci-deutsche-bank-adapter,61170024,, -c30db235-a11c-40bd-9ca2-77627aa70363,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB626,,hbci-deutsche-bank-adapter,61170024,, -01bd215b-e12c-4420-b8ee-1a38b0fbd644,HBCI Deutsche Bank Esslingen,DEUTDESS611,,hbci-deutsche-bank-adapter,61170076,, -b9250a70-186e-4e1e-97af-6a87f220e28b,HBCI Deutsche Bank Nürtingen,DEUTDESS612,,hbci-deutsche-bank-adapter,61170076,, -a7737cf8-7813-48c9-8d8e-e49500a6fb01,HBCI Deutsche Bank Kirchheim Tec,DEUTDESS619,,hbci-deutsche-bank-adapter,61170076,, -8aa0d3e7-76a6-48ec-8f3b-41daa83b5d94,HBCI Deutsche Bank Plochingen,DEUTDESS626,,hbci-deutsche-bank-adapter,61170076,, -0d609c84-e372-48b0-8119-1f856d53929e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB613,,hbci-deutsche-bank-adapter,61370024,, -186373b6-f498-49af-a9b1-ef2421a07f88,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB614,,hbci-deutsche-bank-adapter,61370024,, -6fc461e4-f99e-4070-89a1-cc4942bc16b0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB637,,hbci-deutsche-bank-adapter,61370024,, -8b652366-fc63-4ec2-aa84-a4fa5a61138c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB638,,hbci-deutsche-bank-adapter,61370024,, -f0fc797c-fb6b-4f08-bc5e-cdcce3d92253,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB639,,hbci-deutsche-bank-adapter,61370024,, -3f5584bd-0b81-4e23-a9e6-2099441b850e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB615,,hbci-deutsche-bank-adapter,61370024,, -aadde62d-d6e7-43d9-a1fd-e81b1e102ce1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB633,,hbci-deutsche-bank-adapter,61370024,, -9b85af20-ea08-4d4a-a934-fb700c819207,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB616,,hbci-deutsche-bank-adapter,61370024,, -480125e6-690a-401f-96e5-8381149e1645,HBCI Deutsche Bank Schwäbisch Gmünd,DEUTDESS613,,hbci-deutsche-bank-adapter,61370086,, -4b56cfcb-e16e-43b7-9b15-871cf5bd322a,HBCI Deutsche Bank Giengen Brenz,DEUTDESS639,,hbci-deutsche-bank-adapter,61370086,, -209fde6a-0405-4dbb-b8ab-a9a15d9690c0,HBCI Deutsche Bank Ellwangen Jag,DEUTDESS638,,hbci-deutsche-bank-adapter,61370086,, -e9040794-ab20-428c-a2ef-1a0bbd0cfae0,HBCI Deutsche Bank Aalen Württ,DEUTDESS614,,hbci-deutsche-bank-adapter,61370086,, -cd1c619a-7888-444f-ad3c-b155ed4d2e1f,HBCI Deutsche Bank Heidenheim Br,DEUTDESS615,,hbci-deutsche-bank-adapter,61370086,, -5f1c00ec-217d-4adb-b4bb-26620036bc85,HBCI Deutsche Bank Schorndorf Wu,DEUTDESS616,,hbci-deutsche-bank-adapter,61370086,, -2cc5e9b6-56ad-4653-9148-5a938b240667,HBCI Deutsche Bank Crailsheim,DEUTDESS637,,hbci-deutsche-bank-adapter,61370086,, -51e48adc-793c-4cde-8eb6-6976e9548e89,HBCI Deutsche Bank Nördlingen,DEUTDESS633,,hbci-deutsche-bank-adapter,61370086,, -53d3aaa9-8624-4ce6-990c-436a3f62cafd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB620,,hbci-deutsche-bank-adapter,62070024,, -7a7a4454-cfa0-449d-96d7-343865b29185,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB628,,hbci-deutsche-bank-adapter,62070024,, -23508e16-0350-436c-9fd8-fdd9cbd981b5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB621,,hbci-deutsche-bank-adapter,62070024,, -b860fb0e-6008-49ba-842a-b5a8aba40f08,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB629,,hbci-deutsche-bank-adapter,62070024,, -1f65e5ff-ec00-484a-9537-788d26b2121c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB622,,hbci-deutsche-bank-adapter,62070024,, -225b54e9-f69e-4a95-be3a-65b6e6348306,HBCI Deutsche Bank Heilbronn,DEUTDESS620,,hbci-deutsche-bank-adapter,62070081,, -5104f309-dd6d-4ceb-86f7-d6fa40527e68,HBCI Deutsche Bank Neckarsulm,DEUTDESS621,,hbci-deutsche-bank-adapter,62070081,, -276ecc32-484b-4417-91c7-c86774026cd7,HBCI Deutsche Bank Öhringen,DEUTDESS629,,hbci-deutsche-bank-adapter,62070081,, -721fb5f4-1502-4560-8f60-8eef1be0a2a4,HBCI Deutsche Bank Schwäbisch H,DEUTDESS622,,hbci-deutsche-bank-adapter,62070081,, -9d76e490-1a0f-4481-a216-74e64f158c4d,HBCI Deutsche Bank Künzelsau,DEUTDESS628,,hbci-deutsche-bank-adapter,62070081,, -b9274bd0-dab6-4516-96d4-6bbebc4371d0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB630,,hbci-deutsche-bank-adapter,63070024,, -ea9e8cab-90a7-415f-9783-3c682416a339,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB631,,hbci-deutsche-bank-adapter,63070024,, -f0496265-4f47-4ada-91a2-0deb09464cf2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB632,,hbci-deutsche-bank-adapter,63070024,, -d77a8011-645b-43d1-a777-7e9c68ac9e72,HBCI Deutsche Bank Ulm Donau,DEUTDESS630,,hbci-deutsche-bank-adapter,63070088,, -13cb15a9-7823-456e-859c-f0477891caa3,HBCI Deutsche Bank Biberach Riß,DEUTDESS631,,hbci-deutsche-bank-adapter,63070088,, -8a3670fe-cd3a-4109-a7be-f266f9b5be2b,HBCI Deutsche Bank Neu-Ulm,DEUTDESS632,,hbci-deutsche-bank-adapter,63070088,, -af96fb81-1d6d-4292-8cd0-857ae98d2d7a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB640,,hbci-deutsche-bank-adapter,64070024,, -04581c0b-2381-4949-8882-19be5c09896b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB646,,hbci-deutsche-bank-adapter,64070024,, -d5376cb7-cc7a-497a-a71f-d31d24d07e70,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB634,,hbci-deutsche-bank-adapter,64070024,, -44197611-88a5-4ce4-aa6e-deccaf2ac407,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB643,,hbci-deutsche-bank-adapter,64070024,, -9eefefc0-9cdc-4bb3-839b-8bbe4ef77fa2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB636,,hbci-deutsche-bank-adapter,64070024,, -ae0c8b8d-0b5d-4b25-b6a2-93809254a421,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB645,,hbci-deutsche-bank-adapter,64070024,, -042c3444-9d2f-426b-bb65-a614947d8ce8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB641,,hbci-deutsche-bank-adapter,64070024,, -4b08aecc-8ac7-4f8c-afe6-740b39bb9d0f,HBCI Deutsche Bank Reutlingen,DEUTDESS640,,hbci-deutsche-bank-adapter,64070085,, -5d6c649b-64e8-4b20-a17d-0bbd986d219e,HBCI Deutsche Bank Metzingen,DEUTDESS642,,hbci-deutsche-bank-adapter,64070085,, -17025272-6c6f-4527-8c5b-a0e574696efd,HBCI Deutsche Bank Tübingen,DEUTDESS641,,hbci-deutsche-bank-adapter,64070085,, -f5c2a012-6f51-4121-a09c-9641bee76bb0,HBCI Deutsche Bank Pfullingen,DEUTDESS644,,hbci-deutsche-bank-adapter,64070085,, -4b8954d6-4b7f-49de-a4b6-53fefcb21c1d,HBCI Deutsche Bank Rottenburg Ne,DEUTDESS645,,hbci-deutsche-bank-adapter,64070085,, -bdba5039-436f-4748-aa30-152917090c89,HBCI Deutsche Bank Nagold,DEUTDESS643,,hbci-deutsche-bank-adapter,64070085,, -579d9467-40c7-47d8-8b9c-a332702699b7,HBCI Deutsche Bank Freudenstadt,DEUTDESS646,,hbci-deutsche-bank-adapter,64070085,, -d9ef54d2-5b15-4823-a6a9-0d2224c3d1eb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB650,,hbci-deutsche-bank-adapter,65070024,, -29b0d546-3e24-4119-8a80-756674f80738,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB651,,hbci-deutsche-bank-adapter,65070024,, -dd077a52-34d8-452f-b783-4bda6fee253e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB652,,hbci-deutsche-bank-adapter,65070024,, -fb0ebe22-b56d-429a-825a-a69368c1a8a0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB654,,hbci-deutsche-bank-adapter,65070024,, -70ab1c42-c3e0-4a9d-8775-501b9086f848,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB649,,hbci-deutsche-bank-adapter,65070024,, -aa59562e-5526-4b8b-95f8-eb8145c1dc86,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB657,,hbci-deutsche-bank-adapter,65070024,, -299a08c5-3333-46ff-b56e-40591c185107,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB658,,hbci-deutsche-bank-adapter,65070024,, -0073d26d-a8c7-4374-bfb5-bc965c9252b6,HBCI Deutsche Bank Ravensburg,DEUTDESS650,,hbci-deutsche-bank-adapter,65070084,, -3a02709d-c397-4be5-b107-9b151337334a,HBCI Deutsche Bank Friedrichshaf,DEUTDESS651,,hbci-deutsche-bank-adapter,65070084,, -5ec01328-d950-4391-85b5-5a9cc00b876c,HBCI Deutsche Bank Weingarten Wu,DEUTDESS658,,hbci-deutsche-bank-adapter,65070084,, -1eb68be8-a8a1-49bc-99e6-6ca1617bf084,HBCI Deutsche Bank Wangen Allgäu,DEUTDESS657,,hbci-deutsche-bank-adapter,65070084,, -f81c0534-f2eb-4549-b83c-716470b9c8e7,HBCI Deutsche Bank Lindau Bodens,DEUTDESS654,,hbci-deutsche-bank-adapter,65070084,, -4561a072-dcda-4b55-96e1-f22cfdf8cda2,HBCI Deutsche Bank Leutkirch,DEUTDESS652,,hbci-deutsche-bank-adapter,65070084,, -3f364775-9cf9-4631-b15b-dd63db3dd9c8,HBCI Deutsche Bank Tettnang,DEUTDESS649,,hbci-deutsche-bank-adapter,65070084,, -725a5bc1-3d4b-4498-af79-0166261b8a77,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB653,,hbci-deutsche-bank-adapter,65370024,, -218a51db-24f9-49a0-b207-cca8967e5f2a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB655,,hbci-deutsche-bank-adapter,65370024,, -8e90b4f8-4044-4a16-8732-ff4c3d0120f5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB603,,hbci-deutsche-bank-adapter,65370024,, -67c941b2-e888-465b-8b34-7a8695e0649b,HBCI Deutsche Bank Albstadt,DEUTDESS653,,hbci-deutsche-bank-adapter,65370075,, -7b722da7-f7ab-4adc-9dc7-b644975306d4,HBCI Deutsche Bank Balingen,DEUTDESS655,,hbci-deutsche-bank-adapter,65370075,, -cab5fb1f-f9b6-4f53-96c1-7c3d48acce5c,HBCI Deutsche Bank Tuttlingen,DEUTDESS603,,hbci-deutsche-bank-adapter,65370075,, -1c29d3ee-22f8-4c30-9a31-7f8415562f7e,HBCI Deutsche Bank Karlsruhe,DEUTDESM660,,hbci-deutsche-bank-adapter,66070004,, -d77b4adb-a5bd-41f5-9f13-e750ce8d9e51,HBCI Deutsche Bank Bruchsal,DEUTDESM661,,hbci-deutsche-bank-adapter,66070004,, -4f19c0ee-9e31-4c13-b6f9-7646480d5a2b,HBCI Deutsche Bank Bretten Baden,DEUTDESM663,,hbci-deutsche-bank-adapter,66070004,, -72a5b147-3c7e-4041-aab3-06b864cc2278,HBCI Deutsche Bank Ettlingen,DEUTDESM664,,hbci-deutsche-bank-adapter,66070004,, -be5bd162-3b35-404d-ac0c-180dbe8cc894,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB660,,hbci-deutsche-bank-adapter,66070024,, -c6b548d0-8ccb-41c0-969c-6132276b172e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB663,,hbci-deutsche-bank-adapter,66070024,, -e0370e9d-2c19-4da3-88ea-33c74d647dfa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB661,,hbci-deutsche-bank-adapter,66070024,, -49f3ce89-4516-422e-8d14-5eb001df5096,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB664,,hbci-deutsche-bank-adapter,66070024,, -0cb520c4-3878-43f8-9f40-e2d643a700ce,HBCI Deutsche Bank Baden-Baden,DEUTDESM662,,hbci-deutsche-bank-adapter,66270001,, -7ad12a08-12ac-4002-83bc-f3129ccddce3,HBCI Deutsche Bank Gernsbach,DEUTDESM667,,hbci-deutsche-bank-adapter,66270001,, -9da5ee85-61e5-4c87-b7f4-95f930cb5254,HBCI Deutsche Bank Gaggenau,DEUTDESM671,,hbci-deutsche-bank-adapter,66270001,, -b6ea4a4b-f795-4a29-9540-5dce69431f12,HBCI Deutsche Bank Rastatt,DEUTDESM665,,hbci-deutsche-bank-adapter,66270001,, -44b8ae17-3e77-436e-b1ef-fef3671050d3,HBCI Deutsche Bank Bühl Baden,DEUTDESM669,,hbci-deutsche-bank-adapter,66270001,, -21c3916f-6661-44a6-be2a-3e35626f4966,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB662,,hbci-deutsche-bank-adapter,66270024,, -33cc9f60-9b33-4daf-8ffa-a3aaf401b31d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB669,,hbci-deutsche-bank-adapter,66270024,, -1de284f5-750a-4aaf-9030-4c75a3eac7ce,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB671,,hbci-deutsche-bank-adapter,66270024,, -2a20b3c2-d96d-4b5e-83ef-6ffbcf667f0c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB667,,hbci-deutsche-bank-adapter,66270024,, -ef3371a6-ca47-4849-bc44-fecfe8e1f1ac,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB665,,hbci-deutsche-bank-adapter,66270024,, -a38254f9-0530-4ca0-8d1e-2930223561bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB968,,hbci-deutsche-bank-adapter,66470024,, -5a36a2f3-32da-4d8d-a24a-f05d69847f93,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB970,,hbci-deutsche-bank-adapter,66470024,, -e2c2214b-f05e-45b2-8cfa-19fa667460f7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB969,,hbci-deutsche-bank-adapter,66470024,, -18715a1f-4a59-44ad-ba14-b7e1b36ca2ae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB971,,hbci-deutsche-bank-adapter,66470024,, -eabd0387-fabf-4a7d-91ea-7aa5cfbf103a,HBCI Deutsche Bank Offenburg,DEUTDE6F664,,hbci-deutsche-bank-adapter,66470035,, -7bc79420-041d-4c8e-9432-2967fa10225a,HBCI Deutsche Bank Kehl,DEUTDE6F665,,hbci-deutsche-bank-adapter,66470035,, -1493900b-1186-4db8-8a3c-1188da268904,HBCI Deutsche Bank Haslach Kinzi,DEUTDE6F666,,hbci-deutsche-bank-adapter,66470035,, -06d75db2-9cb6-4aec-b79f-5728a2f0d5f0,HBCI Deutsche Bank Oberkirch Bad,DEUTDE6F667,,hbci-deutsche-bank-adapter,66470035,, -39d79909-a995-4e77-9431-5e02fe782dfe,HBCI Deutsche Bank Pforzheim,DEUTDESM666,,hbci-deutsche-bank-adapter,66670006,, -c82b4788-fcd9-4106-afd3-08589990e8a9,HBCI Deutsche Bank Mühlacker,DEUTDESM677,,hbci-deutsche-bank-adapter,66670006,, -0b93c512-296b-4eca-8124-38bc3150b65b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB666,,hbci-deutsche-bank-adapter,66670024,, -eb79ff47-476a-4f52-ace3-a95465ffa8a5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB677,,hbci-deutsche-bank-adapter,66670024,, -c887e04c-c4e6-4de7-a9b9-8587e97d4536,HBCI Deutsche Bank Mannheim,DEUTDESMXXX,,hbci-deutsche-bank-adapter,67070010,, -94579c1e-9d5a-41a3-914e-2dc9016c5413,HBCI Deutsche Bank Hockenheim,DEUTDESM676,,hbci-deutsche-bank-adapter,67070010,, -d4422d0f-6285-47c3-b32c-a2fdc8f3c2ff,HBCI Deutsche Bank Viernheim,DEUTDESM675,,hbci-deutsche-bank-adapter,67070010,, -b1cab851-bd22-4bb3-ac43-24eabe50ee0a,HBCI Deutsche Bank Schwetzingen,DEUTDESM673,,hbci-deutsche-bank-adapter,67070010,, -83217bc2-a790-44be-b1ce-a1b7e2b6acb5,HBCI Deutsche Bank Weinheim Berg,DEUTDESM670,,hbci-deutsche-bank-adapter,67070010,, -4e2a44b0-47d7-4a0b-9003-98048a372d8d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMAN,,hbci-deutsche-bank-adapter,67070024,, -ada1b57f-4b9d-49f1-8378-fb0224a2a715,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB676,,hbci-deutsche-bank-adapter,67070024,, -53e4c5a6-5d76-4c3d-8b01-95bb9c904cca,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB673,,hbci-deutsche-bank-adapter,67070024,, -3925f350-0ef9-4d71-8f94-649ae98350f6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB675,,hbci-deutsche-bank-adapter,67070024,, -a83a2e6e-ccff-4bc7-8fe2-324db967d319,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB670,,hbci-deutsche-bank-adapter,67070024,, -abb38f78-bec0-48ba-a4a4-49c52797fe0a,HBCI Deutsche Bank Heidelberg,DEUTDESM672,,hbci-deutsche-bank-adapter,67270003,, -3dcf2923-1f42-4fd5-b127-9f39ad145580,HBCI Deutsche Bank Mosbach Baden,DEUTDESM674,,hbci-deutsche-bank-adapter,67270003,, -7db66748-57cc-41f1-9dfc-c9ea27e1f0ac,HBCI Deutsche Bank Wiesloch,DEUTDESM678,,hbci-deutsche-bank-adapter,67270003,, -57543e8a-3f84-4b51-b0b6-da610adef40e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB672,,hbci-deutsche-bank-adapter,67270024,, -9b560978-4cb0-4551-8912-8c80893b787c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB674,,hbci-deutsche-bank-adapter,67270024,, -8f1d5a9a-a2e9-4c6a-8d81-5d354eff3c2e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB678,,hbci-deutsche-bank-adapter,67270024,, -5015c4e0-d8b2-4da6-90d6-481edd30c2e8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBFRE,,hbci-deutsche-bank-adapter,68070024,, -e1dac43b-8a33-439a-9f02-8fcfc1cd4464,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB681,,hbci-deutsche-bank-adapter,68070024,, -2c437ce9-f410-4041-b92a-446a2553e99a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB685,,hbci-deutsche-bank-adapter,68070024,, -5ff3663b-18c5-414a-b95d-1b4bce501c10,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB689,,hbci-deutsche-bank-adapter,68070024,, -db346487-eeb4-4694-98eb-5210a9624a75,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB687,,hbci-deutsche-bank-adapter,68070024,, -26da5ca0-2655-4fee-a60b-497c9bcf5e15,HBCI Deutsche Bank Freiburg,DEUTDE6FXXX,,hbci-deutsche-bank-adapter,68070030,, -c03c982b-b2aa-43b1-9702-7bbaafedf5be,HBCI Deutsche Bank Emmendingen,DEUTDE6F681,,hbci-deutsche-bank-adapter,68070030,, -b4ce3bb5-6d90-4d42-970e-80bcde663cdb,HBCI Deutsche Bank Müllheim Bad,DEUTDE6F685,,hbci-deutsche-bank-adapter,68070030,, -901cadb9-6500-45d6-9f62-78844a078e09,HBCI Deutsche Bank Waldkirch Bre,DEUTDE6F687,,hbci-deutsche-bank-adapter,68070030,, -590c8a65-98e1-4eaf-9471-f287cbc490a8,HBCI Deutsche Bank Titisee-Neust,DEUTDE6F689,,hbci-deutsche-bank-adapter,68070030,, -5e231785-e023-42f7-9cb3-4494c9d6aef6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB682,,hbci-deutsche-bank-adapter,68270024,, -d457739f-9f9d-4a02-8ae4-675b5c297852,HBCI Deutsche Bank Lahr Schwarzw,DEUTDE6F682,,hbci-deutsche-bank-adapter,68270033,, -7bbe296e-047c-4db4-9398-cec7b6a324d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB683,,hbci-deutsche-bank-adapter,68370024,, -5eff384c-9473-4cbb-87dc-1657c93e70ab,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB684,,hbci-deutsche-bank-adapter,68370024,, -f30e67ec-edef-4099-a9a3-0a80fd6b6c5e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB688,,hbci-deutsche-bank-adapter,68370024,, -30f37c52-6200-4659-af27-97180422862f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB686,,hbci-deutsche-bank-adapter,68370024,, -7925f1f6-8a39-4c8e-a561-c6cb90670aa7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB693,,hbci-deutsche-bank-adapter,68370024,, -46c62d85-0abd-4bc1-b184-6d53ef9624fd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB680,,hbci-deutsche-bank-adapter,68370024,, -d1400c82-ad7b-4843-b6b4-14fa0088e099,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB679,,hbci-deutsche-bank-adapter,68370024,, -d2a0cacf-361c-467c-ab92-2111c68d4abb,HBCI Deutsche Bank Lörrach,DEUTDE6F683,,hbci-deutsche-bank-adapter,68370034,, -7ba298f4-44da-4d0e-bc6c-0fece40d3b53,HBCI Deutsche Bank Grenzach-Wyhl,DEUTDE6F688,,hbci-deutsche-bank-adapter,68370034,, -77e9cba9-b49f-4bc2-bbb0-c4a50da28317,HBCI Deutsche Bank Schopfheim,DEUTDE6F693,,hbci-deutsche-bank-adapter,68370034,, -14a16b88-3f4d-4f9d-8cac-32fc872347ec,HBCI Deutsche Bank Bad Säckingen,DEUTDE6F684,,hbci-deutsche-bank-adapter,68370034,, -6d2d5517-5877-410e-a808-fb4b2d0c28d9,HBCI Deutsche Bank Rheinfelden B,DEUTDE6F686,,hbci-deutsche-bank-adapter,68370034,, -037390f2-67f0-4c7d-a233-5288dfac8fb3,HBCI Deutsche Bank Weil Rhein,DEUTDE6F679,,hbci-deutsche-bank-adapter,68370034,, -fba7b316-d73d-4e8d-aae3-a300ca1cbe1d,HBCI Deutsche Bank Wehr Baden,DEUTDE6F678,,hbci-deutsche-bank-adapter,68370034,, -5a49e78c-a91b-443c-ab59-779318270ea9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB690,,hbci-deutsche-bank-adapter,69070024,, -8e9be7db-60c8-4145-b5dc-e41d98418625,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB691,,hbci-deutsche-bank-adapter,69070024,, -3329247a-e393-4d2c-b978-108037bc0340,HBCI Deutsche Bank Konstanz,DEUTDE6F690,,hbci-deutsche-bank-adapter,69070032,, -74be5061-fbab-4820-9ca1-c329bf7e6905,HBCI Deutsche Bank Überlingen,DEUTDE6F691,,hbci-deutsche-bank-adapter,69070032,, -aa167f8e-e348-4ac6-834b-24ac58461272,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB692,,hbci-deutsche-bank-adapter,69270024,, -b41152f1-9aa4-4159-b18b-7efa36826d14,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB696,,hbci-deutsche-bank-adapter,69270024,, -1f6427eb-8db1-4c7d-b6ac-539ba2e5587e,HBCI Deutsche Bank Singen Hohent,DEUTDE6F692,,hbci-deutsche-bank-adapter,69270038,, -e3161977-256a-4206-b398-427e93ceeb45,HBCI Deutsche Bank Radolfzell,DEUTDE6F696,,hbci-deutsche-bank-adapter,69270038,, -1dad7f12-d993-46ae-a8c1-3fe09564bd06,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB694,,hbci-deutsche-bank-adapter,69470024,, -48fd3671-f299-43d7-badf-34fffbb868a8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB698,,hbci-deutsche-bank-adapter,69470024,, -25f7d59b-2a5a-433d-9fa6-35677aae68f2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB642,,hbci-deutsche-bank-adapter,69470024,, -04309b0c-993a-4072-80be-3deb9923b8f7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB699,,hbci-deutsche-bank-adapter,69470024,, -c7134d4b-ac2e-4ac9-b7dc-7a34eff40caf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB644,,hbci-deutsche-bank-adapter,69470024,, -15af4076-7a5e-48f2-91cc-123a0c107a6e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB697,,hbci-deutsche-bank-adapter,69470024,, -74caa57c-0019-4015-81bf-872d51ae2a1f,HBCI Deutsche Bank Villingen Sch,DEUTDE6F694,,hbci-deutsche-bank-adapter,69470039,, -fba630f5-a0fb-4092-bb54-cdbadf79b4c0,HBCI Deutsche Bank Triberg,DEUTDE6F697,,hbci-deutsche-bank-adapter,69470039,, -6509a886-aa98-459d-b756-f30d25d7469e,HBCI Deutsche Bank Rottweil,DEUTDE6F642,,hbci-deutsche-bank-adapter,69470039,, -ee327421-d9ef-41eb-8760-0138fdad47e3,HBCI Deutsche Bank Sankt Georgen,DEUTDE6F699,,hbci-deutsche-bank-adapter,69470039,, -6284e1ea-3813-45a5-b37a-64c9b907ff0f,HBCI Deutsche Bank Spaichingen,DEUTDE6F644,,hbci-deutsche-bank-adapter,69470039,, -8fa86efc-fcf2-4817-b192-802422256801,HBCI Deutsche Bank Donaueschinge,DEUTDE6F698,,hbci-deutsche-bank-adapter,69470039,, -8eaa9651-37cb-44c5-b0e9-73cfd66ecec5,HBCI Deutsche Bank München,DEUTDEMMXXX,,hbci-deutsche-bank-adapter,70070010,, -8ee0bae9-6369-4c87-878a-5fdd53eec2a3,HBCI Deutsche Bank Rosenheim,DEUTDEMM705,,hbci-deutsche-bank-adapter,70070010,, -716de359-4b6a-41f1-9b84-a5977e7872e3,HBCI Deutsche Bank Germering,DEUTDEMM713,,hbci-deutsche-bank-adapter,70070010,, -acb8a36f-c51d-4201-83f1-6579a2551f41,HBCI Deutsche Bank Garmisch-Part,DEUTDEMM701,,hbci-deutsche-bank-adapter,70070010,, -14b0c957-e640-47e0-8a77-535f4e3dcd5b,HBCI Deutsche Bank Fürstenfeldbruck,DEUTDEMM708,,hbci-deutsche-bank-adapter,70070010,, -406b66bf-0789-4fc5-95c5-2b07d5b947cb,HBCI Deutsche Bank Landshut,DEUTDEMM703,,hbci-deutsche-bank-adapter,70070010,, -29e2442e-550b-493f-b262-bf5c5d48836f,HBCI Deutsche Bank Starnberg,DEUTDEMM709,,hbci-deutsche-bank-adapter,70070010,, -6ff79695-0c9a-40ae-9f3c-097dc81230d4,HBCI Deutsche Bank Dachau,DEUTDEMM706,,hbci-deutsche-bank-adapter,70070010,, -bebe7578-a68f-41c2-8f49-d1d0de9d1767,HBCI Deutsche Bank Landsberg Lec,DEUTDEMM702,,hbci-deutsche-bank-adapter,70070010,, -1f6ac2a0-fcbe-4b40-9e04-e2f3e08911c0,HBCI Deutsche Bank Ottobrunn,DEUTDEMM715,,hbci-deutsche-bank-adapter,70070010,, -a720df8d-ec19-4b77-9a7c-a06ce8a05a47,HBCI Deutsche Bank Mühldorf Inn,DEUTDEMM704,,hbci-deutsche-bank-adapter,70070010,, -794ad9fd-946e-494d-b15c-37ef05862b2d,HBCI Deutsche Bank Bad Tölz,DEUTDEMM700,,hbci-deutsche-bank-adapter,70070010,, -060307b3-9d51-4696-800a-f1efe83e2c2f,HBCI Deutsche Bank Weilheim Obb,DEUTDEMM711,,hbci-deutsche-bank-adapter,70070010,, -c2bb5369-93a3-4596-95e0-790e03f8fc46,HBCI Deutsche Bank Freising,DEUTDEMM707,,hbci-deutsche-bank-adapter,70070010,, -55493f64-cd01-4e7e-b376-297eb252e8fd,HBCI Deutsche Bank Planegg,DEUTDEMM716,,hbci-deutsche-bank-adapter,70070010,, -95bc37f5-4d53-43cf-9e52-5dc474f52dc7,HBCI Deutsche Bank Grünwald,DEUTDEMM714,,hbci-deutsche-bank-adapter,70070010,, -e08edfee-9aed-4e53-9492-91e55fe1102a,HBCI Deutsche Bank Erding,DEUTDEMM712,,hbci-deutsche-bank-adapter,70070010,, -fea8491e-d9d0-4d86-938e-463805a3f7c9,HBCI Deutsche Bank Bad Reichenha,DEUTDEMM710,,hbci-deutsche-bank-adapter,70070010,, -fdcabf9b-7a1b-4eab-8c89-f644423e42ca,HBCI Deutsche Bank Rottach-Egern,DEUTDEMM717,,hbci-deutsche-bank-adapter,70070010,, -b3fa94c7-ec56-4ea0-b75d-7387c4ae7b4e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMUC,,hbci-deutsche-bank-adapter,70070024,, -08ad3e96-f9ed-4112-a77e-f91f14d67536,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB710,,hbci-deutsche-bank-adapter,70070024,, -b44f9171-ed20-4402-ae4f-885dd3f2db50,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB700,,hbci-deutsche-bank-adapter,70070024,, -943ed300-72b9-4620-a3ee-d35288f4bb8b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB706,,hbci-deutsche-bank-adapter,70070024,, -3f1599f6-c0f4-44d2-bb47-66e3558cf104,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB712,,hbci-deutsche-bank-adapter,70070024,, -d32ffef7-2209-4cdb-9cef-8137ce443ca3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB707,,hbci-deutsche-bank-adapter,70070024,, -c4ef46fb-1d5e-403d-a72f-d3682d50b641,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB708,,hbci-deutsche-bank-adapter,70070024,, -2cc0e26c-970b-46ce-a4ae-11efcdbc5a25,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB701,,hbci-deutsche-bank-adapter,70070024,, -09c67b05-d114-42b8-8a16-e257033c1e34,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB713,,hbci-deutsche-bank-adapter,70070024,, -e98873ea-b8ae-4975-adf0-c11c6ca5a305,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB714,,hbci-deutsche-bank-adapter,70070024,, -3972da52-6115-4b34-99f1-1450e832f803,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB702,,hbci-deutsche-bank-adapter,70070024,, -3fb2b529-cb84-4c0b-84d4-f96c284f9486,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB703,,hbci-deutsche-bank-adapter,70070024,, -2c88f9f0-0054-4d20-995c-b9f46e722258,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB704,,hbci-deutsche-bank-adapter,70070024,, -4d44e0a1-c1c3-4e66-bad1-8a87d7df8618,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB715,,hbci-deutsche-bank-adapter,70070024,, -ed1e3c9a-4961-4e38-8b5f-9178a8560564,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB716,,hbci-deutsche-bank-adapter,70070024,, -44ae0f7c-9d73-4816-a03f-2b02f4851d16,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB705,,hbci-deutsche-bank-adapter,70070024,, -67bbbc18-a423-41fb-8095-99e301bca4c4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB717,,hbci-deutsche-bank-adapter,70070024,, -b67b6d6d-03ce-42f3-a6bc-a0d12bf57878,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB709,,hbci-deutsche-bank-adapter,70070024,, -59c31c7e-2d93-4dc3-933f-8a8b93b8788a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB711,,hbci-deutsche-bank-adapter,70070024,, -b0bfc980-72e1-4c8a-8496-b54946693baf,HBCI Deutsche Bank Augsburg,DEUTDEMM720,,hbci-deutsche-bank-adapter,72070001,, -b85764ab-1310-458f-9fdd-e66faa31d5aa,HBCI Deutsche Bank Königsbrunn,DEUTDEMM727,,hbci-deutsche-bank-adapter,72070001,, -677a46d5-52db-4d99-a0ab-d01129e41679,HBCI Deutsche Bank Gersthofen,DEUTDEMM725,,hbci-deutsche-bank-adapter,72070001,, -32a008dd-5cdb-4bd7-bc20-b3745d30738c,HBCI Deutsche Bank Bad Wörishof,DEUTDEMM723,,hbci-deutsche-bank-adapter,72070001,, -e615a0a3-92bb-446e-a862-389c9100cd7e,HBCI Deutsche Bank Günzburg,DEUTDEMM726,,hbci-deutsche-bank-adapter,72070001,, -95bc6c74-e1de-4226-bb1c-9e07ac1bc1c1,HBCI Deutsche Bank Dillingen,DEUTDEMM724,,hbci-deutsche-bank-adapter,72070001,, -a5c0e503-6a97-4e5f-a540-b578da3a9064,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB720,,hbci-deutsche-bank-adapter,72070024,, -528e0b40-51e6-4c6c-ac04-0fec704e66e3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB723,,hbci-deutsche-bank-adapter,72070024,, -f511e09e-4e77-426d-819d-10a50a3e3ecf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB724,,hbci-deutsche-bank-adapter,72070024,, -22c989b6-de1f-4ade-a5e9-2b787f199c54,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB725,,hbci-deutsche-bank-adapter,72070024,, -34a90ab7-79d3-4b0f-8f4d-ad8be9e50890,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB726,,hbci-deutsche-bank-adapter,72070024,, -7bf0b7b0-2ac4-4bd0-b937-08922ae612ca,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB727,,hbci-deutsche-bank-adapter,72070024,, -93490ded-f454-4596-998d-39a2c7ff0044,HBCI Deutsche Bank Ingolstadt,DEUTDEMM721,,hbci-deutsche-bank-adapter,72170007,, -19a808a8-7df5-498a-9ab4-bbb6f0cc1ed1,HBCI Deutsche Bank Vohburg Donau,DEUTDEMM729,,hbci-deutsche-bank-adapter,72170007,, -d5d5a8c5-b3c6-4c13-8663-1c0a69090e92,HBCI Deutsche Bank Neuburg Donau,DEUTDEMM722,,hbci-deutsche-bank-adapter,72170007,, -3d7e97ae-4fc7-4e44-8efa-7d75f5a3c065,HBCI Deutsche Bank Pfaffenh Ilm,DEUTDEMM728,,hbci-deutsche-bank-adapter,72170007,, -ac2c8398-9d7a-470e-a656-8b589487dc3c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB721,,hbci-deutsche-bank-adapter,72170024,, -db34cbb1-e841-4fb4-9b5e-9484cb6cf649,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB722,,hbci-deutsche-bank-adapter,72170024,, -475381b5-6331-4eb3-a6cf-5bad76415255,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB728,,hbci-deutsche-bank-adapter,72170024,, -ed676c03-54d4-4fbc-9d04-423c250190a5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB729,,hbci-deutsche-bank-adapter,72170024,, -032fad76-a196-4e66-8589-4eba319b1f58,HBCI Deutsche Bank Kempten Allga,DEUTDEMM733,,hbci-deutsche-bank-adapter,73370008,, -04a345c8-e53b-4ac2-b365-c63aba913620,HBCI Deutsche Bank Memmingen,DEUTDEMM734,,hbci-deutsche-bank-adapter,73370008,, -cfb28b5e-55c8-4299-9d44-7114feca1c3b,HBCI Deutsche Bank Sonthofen,DEUTDEMM735,,hbci-deutsche-bank-adapter,73370008,, -259282d1-82e5-4968-a980-2c6bf53347e8,HBCI Deutsche Bank Marktoberdorf,DEUTDEMM736,,hbci-deutsche-bank-adapter,73370008,, -2a84ecc0-c486-423e-bf2b-dffd974b9dcb,HBCI Deutsche Bank Kaufbeuren,DEUTDEMM737,,hbci-deutsche-bank-adapter,73370008,, -95012b3d-989e-4cfd-9e65-266fefcde323,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB733,,hbci-deutsche-bank-adapter,73370024,, -66516d66-6104-4f46-9eea-cd04d368f8de,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB737,,hbci-deutsche-bank-adapter,73370024,, -eb8b5425-0db6-4810-b4c5-e52ac10a1037,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB736,,hbci-deutsche-bank-adapter,73370024,, -3c98d9b5-6cd6-4b7f-901a-1786d2834d50,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB734,,hbci-deutsche-bank-adapter,73370024,, -ce82896b-42fe-4f79-ba38-a4e71d03e209,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB735,,hbci-deutsche-bank-adapter,73370024,, -07d6d2c3-9dcf-442d-80a2-137e8883fab4,HBCI Deutsche Bank Regensburg,DEUTDEMM750,,hbci-deutsche-bank-adapter,75070013,, -36777829-f60b-4d29-93e7-5ece0692aa6e,HBCI Deutsche Bank Straubing,DEUTDEMM751,,hbci-deutsche-bank-adapter,75070013,, -85e37ec9-5077-4595-9570-2ea73a22953f,HBCI Deutsche Bank Deggendorf,DEUTDEMM741,,hbci-deutsche-bank-adapter,75070013,, -7cd9fb8b-f8f6-449b-9f07-72a64ffa368e,HBCI Deutsche Bank Passau,DEUTDEMM752,,hbci-deutsche-bank-adapter,75070013,, -cd5b8336-8ff9-4447-85b8-2cd27b450e05,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB750,,hbci-deutsche-bank-adapter,75070024,, -e1fd54d4-0a00-479f-b2a9-3b0e8f150fc8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB741,,hbci-deutsche-bank-adapter,75070024,, -5682e50d-8c85-48b8-a2ea-b329ac3f8520,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB752,,hbci-deutsche-bank-adapter,75070024,, -f6cecd07-c7eb-42a4-8f07-5dd59cb81f8b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB751,,hbci-deutsche-bank-adapter,75070024,, -444db6f7-7f14-4860-8443-29353b296670,HBCI Deutsche Bank Nürnberg,DEUTDEMM760,,hbci-deutsche-bank-adapter,76070012,, -4d04d499-9d0d-45da-be0c-e550b4452933,HBCI Deutsche Bank Bayreuth,DEUTDEMM773,,hbci-deutsche-bank-adapter,76070012,, -20c08f9d-90cf-4167-af2b-4abb1a477a33,HBCI Deutsche Bank Bamberg,DEUTDEMM762,,hbci-deutsche-bank-adapter,76070012,, -75527e56-ac5c-42e2-b11a-bf90a1d58153,HBCI Deutsche Bank Erlangen,DEUTDEMM763,,hbci-deutsche-bank-adapter,76070012,, -4ca01802-abf7-47a5-af38-d5d56da99b5e,HBCI Deutsche Bank Coburg,DEUTDEMM783,,hbci-deutsche-bank-adapter,76070012,, -1352b1c5-0995-40b8-83bd-a495c9558c11,HBCI Deutsche Bank Fürth Bay,DEUTDEMM764,,hbci-deutsche-bank-adapter,76070012,, -5a611935-0e71-4a4d-87af-ce532cd8b06e,HBCI Deutsche Bank Zirndorf,DEUTDEMM769,,hbci-deutsche-bank-adapter,76070012,, -3234ff28-54b1-49f4-8544-62a3ce232185,HBCI Deutsche Bank Kulmbach,DEUTDEMM774,,hbci-deutsche-bank-adapter,76070012,, -9f68b307-9fd2-41c6-8881-22ccc53869e2,HBCI Deutsche Bank Forchheim Ofr,DEUTDEMM768,,hbci-deutsche-bank-adapter,76070012,, -5e8a909b-4395-4cd6-ad21-80cfb6c23965,HBCI Deutsche Bank Ansbach,DEUTDEMM761,,hbci-deutsche-bank-adapter,76070012,, -4c95b4a1-b44f-4ea1-b42b-a294b420e7ef,HBCI Deutsche Bank Amberg Oberpf,DEUTDEMM765,,hbci-deutsche-bank-adapter,76070012,, -0746945c-9b06-4e85-a9da-23d93d739352,HBCI Deutsche Bank Weiden Oberpf,DEUTDEMM766,,hbci-deutsche-bank-adapter,76070012,, -b65c7415-bb97-456c-b126-2941bc77ec2a,HBCI Deutsche Bank Neumarkt Opf,DEUTDEMM767,,hbci-deutsche-bank-adapter,76070012,, -ff5d2c1a-7791-49e3-b1e7-bfdbdfafb1a3,HBCI Deutsche Bank Lauf Pegnitz,DEUTDEMM772,,hbci-deutsche-bank-adapter,76070012,, -e7994a06-819f-48d0-b8ff-c68f78ee1a24,HBCI Deutsche Bank Schwabach Mfr,DEUTDEMM771,,hbci-deutsche-bank-adapter,76070012,, -92259b65-f827-4c66-b657-f36eacb481e6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB760,,hbci-deutsche-bank-adapter,76070024,, -814bcda6-cb97-4359-8460-03178c783809,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB765,,hbci-deutsche-bank-adapter,76070024,, -25ac15f0-a1dd-4a0e-9bd8-7e19da764091,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB761,,hbci-deutsche-bank-adapter,76070024,, -5d4dec34-9c42-4e6d-938c-1ff281662748,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB762,,hbci-deutsche-bank-adapter,76070024,, -475ebba9-8a5b-43a7-a3ad-21a3df370e1d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB773,,hbci-deutsche-bank-adapter,76070024,, -b2745599-8dc0-4080-997c-38fbdd4393ae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB783,,hbci-deutsche-bank-adapter,76070024,, -847d64a8-fb55-4323-a495-c0a71ce8207e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB763,,hbci-deutsche-bank-adapter,76070024,, -1eb73455-f11f-41ce-9084-52c49b237934,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB768,,hbci-deutsche-bank-adapter,76070024,, -0f016023-9426-4db8-a0ec-a272a7a287e4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB764,,hbci-deutsche-bank-adapter,76070024,, -0e84736e-a0cd-4c20-bc4f-7d3c6ba7174c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB774,,hbci-deutsche-bank-adapter,76070024,, -6bc9be07-8de3-449b-a954-6c2dce81c688,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB772,,hbci-deutsche-bank-adapter,76070024,, -7cf9c601-0d94-46c9-8383-a87a1f0e3851,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB767,,hbci-deutsche-bank-adapter,76070024,, -309fb8f5-22f3-48c3-ae9b-222800edc337,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB771,,hbci-deutsche-bank-adapter,76070024,, -26efe933-f0fe-48a0-be0e-e555d61087ac,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB766,,hbci-deutsche-bank-adapter,76070024,, -c96bb3ae-495a-487e-9e92-7d4bf24dc8cb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB769,,hbci-deutsche-bank-adapter,76070024,, -a85d7d7b-9334-4248-9fce-1c87ca65730e,HBCI Deutsche Bank Würzburg,DEUTDEMM790,,hbci-deutsche-bank-adapter,79070016,, -e6710513-f2e4-4e6b-a9c2-802a8a895b7b,HBCI Deutsche Bank Schweinfurt,DEUTDEMM791,,hbci-deutsche-bank-adapter,79070016,, -838c4a1b-e89c-4e6a-bac2-0b05748300bc,HBCI Deutsche Bank Bad Mergenthe,DEUTDEMM792,,hbci-deutsche-bank-adapter,79070016,, -42d76794-5644-4b72-adf0-1bc34426db68,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB790,,hbci-deutsche-bank-adapter,79070024,, -eedd0720-16a1-4375-92f9-acafcd0345ad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB792,,hbci-deutsche-bank-adapter,79070024,, -0d251d93-679d-47f8-ac3a-9b997a6116c1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB791,,hbci-deutsche-bank-adapter,79070024,, -f99d93ce-8adc-451c-a8b3-26dea2d3eb4e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB795,,hbci-deutsche-bank-adapter,79570024,, -14d9742d-b021-451c-8a31-d34b351c0170,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB796,,hbci-deutsche-bank-adapter,79570024,, -2de43a3f-d5df-4307-9f7c-95e5cc5146e8,HBCI Deutsche Bank Aschaffenburg,DEUTDEFF795,,hbci-deutsche-bank-adapter,79570051,, -9fa70e4a-440b-4ab3-8452-70bc5b9e10ba,HBCI Deutsche Bank Miltenberg,DEUTDEFF796,,hbci-deutsche-bank-adapter,79570051,, -13530eb7-333a-47d8-a777-01e6f7f482e8,HBCI Deutsche Bank Magdeburg,DEUTDE8MXXX,,hbci-deutsche-bank-adapter,81070000,, -6f85913f-d022-4bbf-972d-5f075e17260a,HBCI Deutsche Bank Burg Magdebg,DEUTDE8M814,,hbci-deutsche-bank-adapter,81070000,, -3f916776-6c0f-4309-b9e6-e30d29fbb620,HBCI Deutsche Bank Genthin,DEUTDE8M812,,hbci-deutsche-bank-adapter,81070000,, -554b1ce8-522a-4eec-8919-11763edaf472,HBCI Deutsche Bank Halberstadt,DEUTDE8M816,,hbci-deutsche-bank-adapter,81070000,, -b52081f5-5708-495d-8ee8-bba009702ca3,HBCI Deutsche Bank Schönebeck,DEUTDE8M820,,hbci-deutsche-bank-adapter,81070000,, -348aaf92-d2d7-43d0-a319-fc56f60aaee9,HBCI Deutsche Bank Oschersleben,DEUTDE8M818,,hbci-deutsche-bank-adapter,81070000,, -369e1602-627b-49f2-ae44-7e47ab33c7ea,HBCI Deutsche Bank Staßfurt,DEUTDE8M821,,hbci-deutsche-bank-adapter,81070000,, -83c4d2da-217c-4a76-a744-65b20302d87e,HBCI Deutsche Bank Stendal,DEUTDE8M822,,hbci-deutsche-bank-adapter,81070000,, -5b19e3ed-27bb-486a-a7f4-b400588bb007,HBCI Deutsche Bank Wernigerode,DEUTDE8M823,,hbci-deutsche-bank-adapter,81070000,, -2a27c852-99dd-4bb2-88c2-9a6dc0283702,HBCI Deutsche Bank Blankenburg,DEUTDE8M815,,hbci-deutsche-bank-adapter,81070000,, -46a73c2f-1ec2-4b04-8e84-314136942b46,HBCI Deutsche Bank Haldensleben,DEUTDE8M817,,hbci-deutsche-bank-adapter,81070000,, -ee4a472e-b958-407a-add1-a4a642ce7371,HBCI Deutsche Bank Salzwedel,DEUTDE8M819,,hbci-deutsche-bank-adapter,81070000,, -eadecb03-406b-465e-867a-13622177af2e,HBCI Deutsche Bank Gardelegen,DEUTDE8M811,,hbci-deutsche-bank-adapter,81070000,, -f4415616-bcae-4f74-8797-0bbb52d8e1fd,HBCI Deutsche Bank Zerbst,DEUTDE8M825,,hbci-deutsche-bank-adapter,81070000,, -8ae76fb5-634a-44d0-b346-359aec299efd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMAG,,hbci-deutsche-bank-adapter,81070024,, -5f978d95-3952-423d-ad2c-ecccc7abf29f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB815,,hbci-deutsche-bank-adapter,81070024,, -2999eaa6-4035-4393-8d4a-29736f16ef37,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB814,,hbci-deutsche-bank-adapter,81070024,, -6835a230-8a71-453a-9515-b155170cf054,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB811,,hbci-deutsche-bank-adapter,81070024,, -34151fb7-699a-4c46-bcf0-18a89b214113,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB812,,hbci-deutsche-bank-adapter,81070024,, -169f940f-c426-46fd-845b-6e2d438b57e5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB816,,hbci-deutsche-bank-adapter,81070024,, -96573737-2790-4ec8-a350-15e141cb562b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB817,,hbci-deutsche-bank-adapter,81070024,, -5038eb51-b012-43a2-ade4-3b5be0c26055,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB818,,hbci-deutsche-bank-adapter,81070024,, -c84fc434-a48a-4907-92cc-8e2474e6f431,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB819,,hbci-deutsche-bank-adapter,81070024,, -82d81ad6-28a0-4cae-b5b6-ba77222ee3be,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB801,,hbci-deutsche-bank-adapter,81070024,, -dc0b86c9-e5b1-4feb-bb7d-feda6d12869b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB802,,hbci-deutsche-bank-adapter,81070024,, -de4b18ba-80c8-439d-a2df-7f138232e9f2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB803,,hbci-deutsche-bank-adapter,81070024,, -a79f89f4-63b4-4396-b8e1-fd638927173a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB804,,hbci-deutsche-bank-adapter,81070024,, -6e843bca-2578-4677-93a4-fa4be7359645,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB806,,hbci-deutsche-bank-adapter,81070024,, -61f6615f-4928-4c19-8283-d11c132114d1,HBCI Deutsche Bank Erfurt,DEUTDE8EXXX,,hbci-deutsche-bank-adapter,82070000,, -3f7fb608-3ab5-4069-8477-1cee73f38fc1,HBCI Deutsche Bank Apolda,DEUTDE8E828,,hbci-deutsche-bank-adapter,82070000,, -625d9d74-0ecd-4580-817e-4d3d22fec579,HBCI Deutsche Bank Bad Langenslz,DEUTDE8E829,,hbci-deutsche-bank-adapter,82070000,, -d1819a8b-6388-4770-ba71-af1adbc55553,HBCI Deutsche Bank Bad Salzungen,DEUTDE8E842,,hbci-deutsche-bank-adapter,82070000,, -f44738f8-eee3-455a-950b-b3dfff663321,HBCI Deutsche Bank Eisenach,DEUTDE8E843,,hbci-deutsche-bank-adapter,82070000,, -b39f2268-b062-4f2c-88f6-e3f9670c7fe1,HBCI Deutsche Bank Eisenberg,DEUTDE8E832,,hbci-deutsche-bank-adapter,82070000,, -cca4d06d-e568-4c0b-a8f2-ca189a0d9c6e,HBCI Deutsche Bank Gera,DEUTDE8E830,,hbci-deutsche-bank-adapter,82070000,, -3169edd2-9f13-461b-982c-db0564391097,HBCI Deutsche Bank Gotha,DEUTDE8E827,,hbci-deutsche-bank-adapter,82070000,, -403401de-18ae-4056-9833-71bc0a651b1a,HBCI Deutsche Bank Greiz,DEUTDE8E833,,hbci-deutsche-bank-adapter,82070000,, -c2dcf782-0a38-4fff-9926-df773f12a876,HBCI Deutsche Bank Ilmenau,DEUTDE8E844,,hbci-deutsche-bank-adapter,82070000,, -249b8e45-8199-47a7-ad79-4a36c811415f,HBCI Deutsche Bank Jena,DEUTDE8E831,,hbci-deutsche-bank-adapter,82070000,, -9247883c-a064-4222-9dd3-2fc632b78cb0,HBCI Deutsche Bank Meiningen,DEUTDE8E845,,hbci-deutsche-bank-adapter,82070000,, -5f5e5d5e-9802-4adf-84af-308eff4f25b0,HBCI Deutsche Bank Mühlhausen,DEUTDE8E825,,hbci-deutsche-bank-adapter,82070000,, -14265080-2d31-4bcf-94aa-9c92b09c021a,HBCI Deutsche Bank Nordhausen,DEUTDE8E824,,hbci-deutsche-bank-adapter,82070000,, -b602694c-2759-4082-81af-6ebc98803e2b,HBCI Deutsche Bank Pößneck,DEUTDE8E835,,hbci-deutsche-bank-adapter,82070000,, -727cfa68-31f4-4cb9-b5ee-c3bece633b87,HBCI Deutsche Bank Rudolstadt,DEUTDE8E847,,hbci-deutsche-bank-adapter,82070000,, -c31511bf-3d20-4a56-bd01-7a562573755c,HBCI Deutsche Bank Saalfeld,DEUTDE8E848,,hbci-deutsche-bank-adapter,82070000,, -0140b91b-3db3-4654-97a8-3e5d65a51b83,HBCI Deutsche Bank Schmalkalden,DEUTDE8E849,,hbci-deutsche-bank-adapter,82070000,, -c1874192-47b9-4ac7-9578-4c83d43890c8,HBCI Deutsche Bank Sondershausen,DEUTDE8E822,,hbci-deutsche-bank-adapter,82070000,, -2313903f-9c3c-41f3-894a-3f637e046445,HBCI Deutsche Bank Sonneberg Thür,DEUTDE8E850,,hbci-deutsche-bank-adapter,82070000,, -95899d43-13a0-4af6-9910-671c3c86e277,HBCI Deutsche Bank Sömmerda,DEUTDE8E823,,hbci-deutsche-bank-adapter,82070000,, -c27f2cb4-d808-4082-8a65-98f1bd6dcf42,HBCI Deutsche Bank Suhl,DEUTDE8E840,,hbci-deutsche-bank-adapter,82070000,, -e1a259ad-9e00-404a-b4fb-a1f9f0616a4f,HBCI Deutsche Bank Weimar,DEUTDE8E820,,hbci-deutsche-bank-adapter,82070000,, -75907a68-473d-4b37-9d84-358dfbb12f2d,HBCI Deutsche Bank Zeulenroda,DEUTDE8E836,,hbci-deutsche-bank-adapter,82070000,, -f4af5fb8-2dc9-4b9a-a604-61c6956e3f77,HBCI Deutsche Bank Arnstadt,DEUTDE8E841,,hbci-deutsche-bank-adapter,82070000,, -c16f8813-9756-432a-82ec-cedd1fb7a31c,HBCI Deutsche Bank Leinefelde,DEUTDE8E826,,hbci-deutsche-bank-adapter,82070000,, -a9a11f13-6f5e-4836-aba9-2742fbc3b56b,HBCI Deutsche Bank Waltershausen,DEUTDE8E851,,hbci-deutsche-bank-adapter,82070000,, -6bad966a-09c9-4621-ba8e-49036ac283c1,HBCI Deutsche Bank Ohrdruf,DEUTDE8E846,,hbci-deutsche-bank-adapter,82070000,, -489f8ee3-5c22-489b-b858-efbd5df2042f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBERF,,hbci-deutsche-bank-adapter,82070024,, -3cfdb5f7-89d0-4d9a-874d-52ccacc327b1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB828,,hbci-deutsche-bank-adapter,82070024,, -93851d77-0156-463a-b22a-816ad2ded340,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB841,,hbci-deutsche-bank-adapter,82070024,, -63470afb-2cab-466f-a72c-e99830ff0cb9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB829,,hbci-deutsche-bank-adapter,82070024,, -f1fe9302-9d11-418c-965e-a48795a1b1d8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB842,,hbci-deutsche-bank-adapter,82070024,, -c009ea60-9267-4d96-9b5a-71ccb3c04ae4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB843,,hbci-deutsche-bank-adapter,82070024,, -544f6c57-7ec9-4dad-8f80-1cf7f7b910f6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB832,,hbci-deutsche-bank-adapter,82070024,, -4abbc0aa-8c9e-4409-a77f-5697f9109140,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB830,,hbci-deutsche-bank-adapter,82070024,, -b3ad12f4-f0c1-4bd8-9289-a90d6f22fd54,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB827,,hbci-deutsche-bank-adapter,82070024,, -ca9a3129-893a-4f81-9bab-a5b1ab8ddb08,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB833,,hbci-deutsche-bank-adapter,82070024,, -e5c3e808-336c-4e21-9d73-32b6e69decd0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB844,,hbci-deutsche-bank-adapter,82070024,, -1a4873c0-6b4a-49da-91bb-ba5c7a866574,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB831,,hbci-deutsche-bank-adapter,82070024,, -7a1e27b4-809c-46f4-a6b2-a4dc39987bf8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB826,,hbci-deutsche-bank-adapter,82070024,, -1f7ed9dc-1975-4638-b73f-356eadb06b5e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB845,,hbci-deutsche-bank-adapter,82070024,, -091a7c35-43bd-4eb0-a5e4-59dc2da978cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB825,,hbci-deutsche-bank-adapter,82070024,, -688e645a-ad12-4412-b232-defad0c4fcbc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB824,,hbci-deutsche-bank-adapter,82070024,, -36ebdc75-9009-4f68-9a48-baeb7bd2b3b8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB846,,hbci-deutsche-bank-adapter,82070024,, -9f117b4e-3cba-456b-aa20-d5b13663ab05,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB835,,hbci-deutsche-bank-adapter,82070024,, -813e8296-ed80-493e-8fd3-7201fff0888d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB847,,hbci-deutsche-bank-adapter,82070024,, -8d0a3907-ca9b-4396-b905-19aae03bd6c5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB848,,hbci-deutsche-bank-adapter,82070024,, -079126cd-263c-4892-a09f-23941568a590,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB849,,hbci-deutsche-bank-adapter,82070024,, -e74d70c2-961c-4746-8a90-70feff67af1b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB823,,hbci-deutsche-bank-adapter,82070024,, -fe5930ad-a0f0-4325-9c53-321f5b7fff01,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB822,,hbci-deutsche-bank-adapter,82070024,, -a2f5f182-e798-4d2c-b416-cbf75ff0ffa7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB850,,hbci-deutsche-bank-adapter,82070024,, -db906c37-47cf-4a69-aaea-964919a6df79,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB840,,hbci-deutsche-bank-adapter,82070024,, -60dd20e6-5995-4a99-b945-b89da9aa20e1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB851,,hbci-deutsche-bank-adapter,82070024,, -c137642e-d260-47e9-b5d7-a5abd8ffdca5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB820,,hbci-deutsche-bank-adapter,82070024,, -878f95a4-24f3-49ea-ab71-c16cdd058471,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB821,,hbci-deutsche-bank-adapter,82070024,, -0aa3d903-b8c8-4740-ac3f-c9f78ff6601c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB836,,hbci-deutsche-bank-adapter,82070024,, -3ca349c9-d28e-4c52-93f8-40aee216d52a,HBCI Deutsche Bank Leipzig,DEUTDE8LXXX,,hbci-deutsche-bank-adapter,86070000,, -de9f37f2-96f6-4b1c-a826-d011a05f5cf0,HBCI Deutsche Bank Altenburg,DEUTDE8L861,,hbci-deutsche-bank-adapter,86070000,, -c4b9331d-2a13-440a-966f-9957a86e99ce,HBCI Deutsche Bank Aschersleben,DEUTDE8L862,,hbci-deutsche-bank-adapter,86070000,, -659acc55-ca56-4a4d-94ff-5686bf582be4,HBCI Deutsche Bank Bernburg,DEUTDE8L863,,hbci-deutsche-bank-adapter,86070000,, -7c6c3d5e-1414-46fb-b5c2-ad7e5c9743f9,HBCI Deutsche Bank Bitterfeld,DEUTDE8L864,,hbci-deutsche-bank-adapter,86070000,, -fb2a7bcf-5aaf-4028-8b48-025f0959b071,HBCI Deutsche Bank Borna,DEUTDE8L865,,hbci-deutsche-bank-adapter,86070000,, -4ae60c38-0970-4979-b315-0127cfff9146,HBCI Deutsche Bank Dessau,DEUTDE8L867,,hbci-deutsche-bank-adapter,86070000,, -95a33a52-1afb-4b5d-9cc5-33d6c1aa20fe,HBCI Deutsche Bank Grimma,DEUTDE8L871,,hbci-deutsche-bank-adapter,86070000,, -cf318266-5695-4d0d-8a0d-17fc8701e022,HBCI Deutsche Bank Halle,DEUTDE8L860,,hbci-deutsche-bank-adapter,86070000,, -21c192f7-e2cf-48f0-9281-84e18acb0327,HBCI Deutsche Bank Köthen,DEUTDE8L873,,hbci-deutsche-bank-adapter,86070000,, -85f8979a-7566-47bd-85ca-b79cb9dc31fc,HBCI Deutsche Bank Merseburg,DEUTDE8L875,,hbci-deutsche-bank-adapter,86070000,, -f8863da4-2a5f-40a9-8b9f-3c3b0650da0a,HBCI Deutsche Bank Naumburg,DEUTDE8L877,,hbci-deutsche-bank-adapter,86070000,, -6dc53835-82f3-4683-a693-59fe02a89298,HBCI Deutsche Bank Sangerhausen,DEUTDE8L880,,hbci-deutsche-bank-adapter,86070000,, -23170599-3298-463e-8283-8251c961b6ae,HBCI Deutsche Bank Torgau,DEUTDE8L883,,hbci-deutsche-bank-adapter,86070000,, -3b888bde-08df-423e-a590-ab0f9be79b49,HBCI Deutsche Bank Weißenfels,DEUTDE8L884,,hbci-deutsche-bank-adapter,86070000,, -e7739514-806d-4852-a760-5781b15090f6,HBCI Deutsche Bank Wittenbg Luth,DEUTDE8L885,,hbci-deutsche-bank-adapter,86070000,, -f59810e5-fb53-43c9-8bf3-3ffc65c1f448,HBCI Deutsche Bank Wurzen,DEUTDE8L887,,hbci-deutsche-bank-adapter,86070000,, -910aefe2-3610-4d98-8e55-6b716aec10f9,HBCI Deutsche Bank Zeitz,DEUTDE8L888,,hbci-deutsche-bank-adapter,86070000,, -80cad80a-037c-4503-9f4f-a642511bb324,HBCI Deutsche Bank Delitzsch,DEUTDE8L866,,hbci-deutsche-bank-adapter,86070000,, -e086d1cc-0840-4c6e-a3e4-ed3224362989,HBCI Deutsche Bank Döbeln,DEUTDE8L868,,hbci-deutsche-bank-adapter,86070000,, -56c973a6-d9d0-4011-a2e2-9c240c532ff2,HBCI Deutsche Bank Eilenburg,DEUTDE8L869,,hbci-deutsche-bank-adapter,86070000,, -ff0ef3ee-51e7-4399-afab-b23f3b0946f9,HBCI Deutsche Bank Hettstedt,DEUTDE8L872,,hbci-deutsche-bank-adapter,86070000,, -134088c1-489f-4823-a0f7-4eeaafe58cff,HBCI Deutsche Bank Eisleben,DEUTDE8L870,,hbci-deutsche-bank-adapter,86070000,, -4d925bc5-fd30-4007-a816-303ef0bede25,HBCI Deutsche Bank Markkleeberg,DEUTDE8L874,,hbci-deutsche-bank-adapter,86070000,, -2a7598df-b0b1-4a21-bd1c-389a32c0ab22,HBCI Deutsche Bank Oschatz,DEUTDE8L878,,hbci-deutsche-bank-adapter,86070000,, -b6a7ed1f-ba20-4a88-bc0c-f2b8d328add7,HBCI Deutsche Bank Quedlinburg,DEUTDE8L879,,hbci-deutsche-bank-adapter,86070000,, -4fc01753-7c58-4544-ba76-41d54f9670ce,HBCI Deutsche Bank Schkeuditz,DEUTDE8L881,,hbci-deutsche-bank-adapter,86070000,, -b2bea560-6749-439c-ba54-6dbea8e7a68a,HBCI Deutsche Bank Taucha,DEUTDE8L882,,hbci-deutsche-bank-adapter,86070000,, -d8b014d3-2f25-46fb-8127-f47aca24f085,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBLEG,,hbci-deutsche-bank-adapter,86070024,, -e9ab2900-d85b-4b20-8529-4ca64b6f15ec,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB861,,hbci-deutsche-bank-adapter,86070024,, -ee5b566f-e713-4dd9-a162-b39da726069a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB862,,hbci-deutsche-bank-adapter,86070024,, -94bb287c-2f33-4321-91d9-6d6ee9cf89d5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB863,,hbci-deutsche-bank-adapter,86070024,, -e387958c-5dac-4d3e-b1eb-ed63ae133a16,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB864,,hbci-deutsche-bank-adapter,86070024,, -65935352-3951-4b3e-aca2-c8400da69d13,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB865,,hbci-deutsche-bank-adapter,86070024,, -43620c02-d96c-437e-93b3-66d6b465bf35,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB866,,hbci-deutsche-bank-adapter,86070024,, -43fce207-95b7-45f3-85b7-9d6600b8aa49,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB867,,hbci-deutsche-bank-adapter,86070024,, -d1618ebf-bf1c-4764-a6b2-5fe69e8b2cfa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB868,,hbci-deutsche-bank-adapter,86070024,, -e2fe3667-9e96-41d0-9de8-ccdcf70dae13,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB869,,hbci-deutsche-bank-adapter,86070024,, -8972824c-c0cc-45d2-8e42-bf0d834a632f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB974,,hbci-deutsche-bank-adapter,86070024,, -eb4be081-6ef1-485a-b85b-e21d199b9d1e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB860,,hbci-deutsche-bank-adapter,86070024,, -5efd1113-9ad2-467f-b753-05e9f180273b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB975,,hbci-deutsche-bank-adapter,86070024,, -306e1395-0164-4a30-8b1e-95633f95c16b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB976,,hbci-deutsche-bank-adapter,86070024,, -3e2cf87b-c871-416e-b95a-80dee188883c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB973,,hbci-deutsche-bank-adapter,86070024,, -9b467909-4437-4fe5-9fa6-ee7efabe992d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB988,,hbci-deutsche-bank-adapter,86070024,, -0067ae7f-b19d-421d-ae4d-4b92a1af0971,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB977,,hbci-deutsche-bank-adapter,86070024,, -a0ce0dcc-7d0d-4ff1-9bdc-ac99fea72707,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB978,,hbci-deutsche-bank-adapter,86070024,, -dfcae388-d2e8-4e83-a1f3-a6ec41eba93c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB980,,hbci-deutsche-bank-adapter,86070024,, -8031577e-4fe9-4533-8ce4-8a36633292cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB981,,hbci-deutsche-bank-adapter,86070024,, -6a2f2100-c217-44d8-ac5c-7443b31deb40,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB982,,hbci-deutsche-bank-adapter,86070024,, -1655c55d-bea7-4a22-ba4d-d33eedadf80e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB983,,hbci-deutsche-bank-adapter,86070024,, -635e7429-7ce2-45f3-a614-664acc973773,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB984,,hbci-deutsche-bank-adapter,86070024,, -59b6917a-0cf9-4cca-b9b1-a0cc7d10c841,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB985,,hbci-deutsche-bank-adapter,86070024,, -af4e127c-49f7-40e2-8377-ae8cc4856f4d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB986,,hbci-deutsche-bank-adapter,86070024,, -10b05005-4949-4b96-b299-6e433928321c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB987,,hbci-deutsche-bank-adapter,86070024,, -d742b3e3-2513-4a89-a8b7-c75de6c980b2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB990,,hbci-deutsche-bank-adapter,86070024,, -f442024a-1976-4c79-9c1b-b570145677ee,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB991,,hbci-deutsche-bank-adapter,86070024,, -251d9161-3eb0-4c64-af59-446c8be94f52,HBCI Deutsche Bank Chemnitz,DEUTDE8CXXX,,hbci-deutsche-bank-adapter,87070000,, -ffd70513-7600-4ef0-87e0-c74901555bc7,HBCI Deutsche Bank Annabg-Buchhz,DEUTDE8C871,,hbci-deutsche-bank-adapter,87070000,, -b33e540e-820c-4bbd-93aa-81ef0bce1afb,HBCI Deutsche Bank Bautzen,DEUTDE8C874,,hbci-deutsche-bank-adapter,87070000,, -d9c5ed76-3947-432a-a36b-8a0a4d361c8e,HBCI Deutsche Bank Crimmitschau,DEUTDE8C877,,hbci-deutsche-bank-adapter,87070000,, -53a15e33-325c-4bf7-b98a-f4729a467a93,HBCI Deutsche Bank Dresden,DEUTDE8C870,,hbci-deutsche-bank-adapter,87070000,, -77bcfa63-7a8c-432b-b5e7-da099cbbabe9,HBCI Deutsche Bank Freibg Sachs,DEUTDE8C879,,hbci-deutsche-bank-adapter,87070000,, -2532552b-83c8-49ca-8dcd-fc2aade1affe,HBCI Deutsche Bank Freital,DEUTDE8C880,,hbci-deutsche-bank-adapter,87070000,, -4ffdbb0d-4c7e-4fba-ab5d-bae9d233802e,HBCI Deutsche Bank Glauchau,DEUTDE8C881,,hbci-deutsche-bank-adapter,87070000,, -638ac14c-da76-493d-87a5-9c0d6b856379,HBCI Deutsche Bank Görlitz,DEUTDE8C882,,hbci-deutsche-bank-adapter,87070000,, -4a6b77e5-fa83-4010-8e7e-9258828d2ee2,HBCI Deutsche Bank Großenhain,DEUTDE8C883,,hbci-deutsche-bank-adapter,87070000,, -ac63361c-d780-448c-9958-34979a1a9c2e,HBCI Deutsche Bank Hohenst-Ernst,DEUTDE8C885,,hbci-deutsche-bank-adapter,87070000,, -1c9728fe-26f4-403c-815a-23eabf42117d,HBCI Deutsche Bank Hoyerswerda,DEUTDE8C886,,hbci-deutsche-bank-adapter,87070000,, -c8472109-a389-4ad1-b089-37044c7f19e1,HBCI Deutsche Bank Kamenz,DEUTDE8C887,,hbci-deutsche-bank-adapter,87070000,, -e3ba332b-57df-4cee-8774-7f42c6b850ee,HBCI Deutsche Bank Klingenthal,DEUTDE8C888,,hbci-deutsche-bank-adapter,87070000,, -8038cdbe-535e-4686-b45c-fce64a23654b,HBCI Deutsche Bank Limbach-Obrfr,DEUTDE8C890,,hbci-deutsche-bank-adapter,87070000,, -6986eb37-b3a9-4514-a15c-53880fbb41ce,HBCI Deutsche Bank Marienberg,DEUTDE8C892,,hbci-deutsche-bank-adapter,87070000,, -f2fced25-48f9-4c9a-bfff-99b434d7f1b9,HBCI Deutsche Bank Meißen,DEUTDE8C894,,hbci-deutsche-bank-adapter,87070000,, -6cf8e34e-456f-4646-a79f-3cc4f174fa48,HBCI Deutsche Bank Mittweida,DEUTDE8C895,,hbci-deutsche-bank-adapter,87070000,, -e36081fb-14dc-485f-b5bb-7c1bb87946cf,HBCI Deutsche Bank Oberwiesenth,DEUTDE8C897,,hbci-deutsche-bank-adapter,87070000,, -ede87d4d-3846-4d27-8973-8f96e33c28dc,HBCI Deutsche Bank Pirna,DEUTDE8C898,,hbci-deutsche-bank-adapter,87070000,, -74abd472-e261-4934-809c-70a4822d3cc3,HBCI Deutsche Bank Plauen,DEUTDE8C899,,hbci-deutsche-bank-adapter,87070000,, -ceee59b9-cc05-413d-9785-ece51a1b6d2c,HBCI Deutsche Bank Radebeul,DEUTDE8C901,,hbci-deutsche-bank-adapter,87070000,, -ba0e8b05-e612-4dfc-bd3c-9695d78450ef,HBCI Deutsche Bank Reichenbach V,DEUTDE8C902,,hbci-deutsche-bank-adapter,87070000,, -09a29b88-d21f-4c62-a271-2973839bd737,HBCI Deutsche Bank Riesa,DEUTDE8C903,,hbci-deutsche-bank-adapter,87070000,, -82818194-87f7-47e7-923f-5cdd03736c6f,HBCI Deutsche Bank Schwarzenberg,DEUTDE8C906,,hbci-deutsche-bank-adapter,87070000,, -b2daa140-5606-4dc3-9652-e8d8edfac033,HBCI Deutsche Bank Stollbg,DEUTDE8C907,,hbci-deutsche-bank-adapter,87070000,, -4b8fd5ac-80de-4b9d-9492-0dc976fbc92c,HBCI Deutsche Bank Zittau,DEUTDE8C909,,hbci-deutsche-bank-adapter,87070000,, -1e51db71-b8c4-4ea6-aad3-fa4c39f1338b,HBCI Deutsche Bank Zwickau,DEUTDE8C910,,hbci-deutsche-bank-adapter,87070000,, -950f437c-81f1-41c6-b740-06175eeb552c,HBCI Deutsche Bank Aue Sachs,DEUTDE8C872,,hbci-deutsche-bank-adapter,87070000,, -14d5c1ac-c2e6-42f3-a6cc-753eb4f1aec8,HBCI Deutsche Bank Auerbach,DEUTDE8C873,,hbci-deutsche-bank-adapter,87070000,, -18d99a61-cd18-42a9-8eab-3f63d410af4a,HBCI Deutsche Bank Burgstädt,DEUTDE8C875,,hbci-deutsche-bank-adapter,87070000,, -a9547531-6424-40c1-bac1-3e477bb03b84,HBCI Deutsche Bank Coswig,DEUTDE8C876,,hbci-deutsche-bank-adapter,87070000,, -2932fb66-c375-4213-886e-b8748a408642,HBCI Deutsche Bank Heidenau,DEUTDE8C884,,hbci-deutsche-bank-adapter,87070000,, -d934d99d-7015-4559-bc02-84cc0c9d1975,HBCI Deutsche Bank Lichtenstein,DEUTDE8C889,,hbci-deutsche-bank-adapter,87070000,, -6c9ff744-f158-4f5e-87b7-418aad67160f,HBCI Deutsche Bank Löbau,DEUTDE8C891,,hbci-deutsche-bank-adapter,87070000,, -9fe8cba7-bd2c-44da-a65e-28782d3437f5,HBCI Deutsche Bank Meerane,DEUTDE8C893,,hbci-deutsche-bank-adapter,87070000,, -1e3bcc35-57a9-409b-b5dd-1ac41bec38a5,HBCI Deutsche Bank Niesky,DEUTDE8C896,,hbci-deutsche-bank-adapter,87070000,, -c83c39dc-70a3-4d1c-bb50-f0eb6b0db321,HBCI Deutsche Bank Radeberg,DEUTDE8C900,,hbci-deutsche-bank-adapter,87070000,, -33ebc7e0-7a4f-4b42-ba5c-16bcece0fcb6,HBCI Deutsche Bank Schneeberg,DEUTDE8C905,,hbci-deutsche-bank-adapter,87070000,, -64458dbf-89f9-4b1b-862f-f8df1ea406ea,HBCI Deutsche Bank Werdau,DEUTDE8C908,,hbci-deutsche-bank-adapter,87070000,, -e10144f0-05b4-4547-96d8-094a503c04ae,HBCI Deutsche Bank Frankenberg,DEUTDE8C878,,hbci-deutsche-bank-adapter,87070000,, -649ea200-d236-4b66-95db-87601a02718f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBCHE,,hbci-deutsche-bank-adapter,87070024,, -ed7a42d4-0c28-4723-b8fc-10ad8f03d958,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB871,,hbci-deutsche-bank-adapter,87070024,, -55f1c446-fcf6-4d78-a5c6-dd3fff6f8144,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB872,,hbci-deutsche-bank-adapter,87070024,, -7f18f4d7-0f7f-4b4c-b1e3-bdb5836f3c9d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB873,,hbci-deutsche-bank-adapter,87070024,, -3601c187-227d-4669-a03b-eb8dc4acba83,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB874,,hbci-deutsche-bank-adapter,87070024,, -1165c62e-fc1f-407b-8109-3061ea6a5563,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB875,,hbci-deutsche-bank-adapter,87070024,, -a66ae902-96d7-48a8-bda3-e0a007be2357,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB876,,hbci-deutsche-bank-adapter,87070024,, -95c0c169-3e26-4da7-a5b4-c584d975677d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB877,,hbci-deutsche-bank-adapter,87070024,, -055ccdb5-8636-4271-a9d7-cca645e628b7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB870,,hbci-deutsche-bank-adapter,87070024,, -940751eb-4991-4972-9307-0c17ff9049ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB878,,hbci-deutsche-bank-adapter,87070024,, -3870ac81-ab01-47b1-b44c-27bb448b19ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB879,,hbci-deutsche-bank-adapter,87070024,, -6d85d24d-2d3b-46d7-9df4-ae0d8713bde6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB880,,hbci-deutsche-bank-adapter,87070024,, -64cee712-c74c-4677-b6bd-73535401d2ad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB881,,hbci-deutsche-bank-adapter,87070024,, -1d9c8f2b-cc70-43a1-843e-4327a28cf5c8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB882,,hbci-deutsche-bank-adapter,87070024,, -36f03fc1-dd49-42ca-b311-0e8c1b5cfea3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB883,,hbci-deutsche-bank-adapter,87070024,, -82877edd-07a0-4fd3-80ce-23398b156775,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB884,,hbci-deutsche-bank-adapter,87070024,, -21e846cb-6b72-45a2-80e7-c329ac266f06,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB885,,hbci-deutsche-bank-adapter,87070024,, -885d7457-4f32-47a0-8b16-dc6098b0ed5c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB886,,hbci-deutsche-bank-adapter,87070024,, -a77cbd5d-61f8-42bb-b5bf-74cffc2c3d06,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB887,,hbci-deutsche-bank-adapter,87070024,, -5d70c936-49eb-43e4-9b44-376ef8087c25,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB888,,hbci-deutsche-bank-adapter,87070024,, -46033b21-2911-4572-96fd-b9ae902019b8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB897,,hbci-deutsche-bank-adapter,87070024,, -18e90865-7f97-420e-9e4f-56e399c026e1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB889,,hbci-deutsche-bank-adapter,87070024,, -ee83f266-e94d-45e6-8033-e3fbdc8ace02,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB890,,hbci-deutsche-bank-adapter,87070024,, -d1d9d75a-7d69-4e1e-bb0d-2a5d557a2545,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB891,,hbci-deutsche-bank-adapter,87070024,, -06eec325-2bc3-48aa-8090-d8d8afc14cc0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB892,,hbci-deutsche-bank-adapter,87070024,, -fb30fb30-25cc-4258-a59b-377c1b157a9f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB893,,hbci-deutsche-bank-adapter,87070024,, -c7690b49-8550-48bd-86a1-6d725f2f2e8d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB894,,hbci-deutsche-bank-adapter,87070024,, -c6842148-83ee-44bd-8a08-8c3ba53c6423,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB895,,hbci-deutsche-bank-adapter,87070024,, -a3aa11aa-621b-4e27-bc90-3ed1249275be,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB896,,hbci-deutsche-bank-adapter,87070024,, -c496f491-9226-4668-80c3-4f79118d054b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB898,,hbci-deutsche-bank-adapter,87070024,, -e1d105cf-8f5d-43c1-9fa5-70524a9a50d7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB899,,hbci-deutsche-bank-adapter,87070024,, -4e0b1a73-fee9-4e3e-9ad6-f92a9d991c48,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB900,,hbci-deutsche-bank-adapter,87070024,, -f537e24e-de73-4de7-8d97-0839eb04dc6a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB901,,hbci-deutsche-bank-adapter,87070024,, -c834845b-e557-49ff-b321-af5be26bc5b7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB902,,hbci-deutsche-bank-adapter,87070024,, -8ba81d46-683c-4145-ad1c-09ee4a423de5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB903,,hbci-deutsche-bank-adapter,87070024,, -c3ff4763-7b1f-4db0-b5c4-16043cc3502f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB905,,hbci-deutsche-bank-adapter,87070024,, -410b56b3-8cac-43f9-bb42-bcadf0ff4b4a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB906,,hbci-deutsche-bank-adapter,87070024,, -c6c4df48-1dbf-4a36-a84b-ed04cd427b83,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB907,,hbci-deutsche-bank-adapter,87070024,, -7a52d7d0-d977-4a1b-b3ac-c668a6a0aaa1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB908,,hbci-deutsche-bank-adapter,87070024,, -28caa592-1633-4ce9-9456-7f5021821605,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB909,,hbci-deutsche-bank-adapter,87070024,, -d239eea6-9ad1-468a-a757-a74ba7a57db2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB910,,hbci-deutsche-bank-adapter,87070024,, -bb3ae76d-af4e-42b0-b78f-8227c7d11a9b,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,10010010,, -8b9fd84a-3234-4381-ab67-a4400720e41e,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,20010020,, -f08e4203-9414-46e2-a82c-b518de023b2e,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,20110022,, -c526d4a6-2d4d-4e11-ad23-8d8f1cac3582,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,25010030,, -14a230e1-01c7-4483-a07c-79d26d2720b0,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,36010043,, -544aff56-3c8b-4b68-a138-843dd06b819d,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,37010050,, -cc5438a4-7d84-45f1-9dde-d37435d35598,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,37011000,, -3fd65c83-b4c5-4409-a985-95ecfde3b069,HBCI Postbank Ndl DB PFK,PBNKDEFF380,,hbci-deutsche-bank-adapter,38010053,, -0e52919d-a24f-49c5-8a40-fb7bb53b1941,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,44010046,, -54aed208-5af5-48d5-956d-31b84e189f38,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,50010060,, -2729375b-5814-4453-9550-16d77534c17c,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,54510067,, -88c6e536-be82-4215-86b5-906d99d71541,HBCI ZVCFK11 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010011,, -3e42c4d2-4257-4d67-942a-b6e033931647,HBCI ZVCFK12 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010012,, -e88d2d3c-616e-406c-a047-5d0a9b5a69cf,HBCI ZVCFK13 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010013,, -5b14aedc-4f82-4e5c-8434-2e7bf98cfae6,HBCI ZVCFK14 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010014,, -6e831e4d-30de-4b44-a7c6-4c0da88e46dd,HBCI ZVCFK15 Postbank Ndl DB PFK,PBNKDEFF015,,hbci-deutsche-bank-adapter,59010015,, -9dccfd71-0a27-4a2a-a56c-1b80701510e4,HBCI ZVCFK16 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010016,, -f1905327-dbd7-446d-9c6d-3dbeb9f35359,HBCI ZVCFK17 Postbank Ndl DB PFK,PBNKDEFF017,,hbci-deutsche-bank-adapter,59010017,, -32e03679-182b-4b27-af4a-d38ea497ccea,HBCI ZVCFK18 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010018,, -214fe4c6-916a-4ad9-a624-1bdd283de3ad,HBCI ZVCFK19 Postbank Ndl DB PFK,PBNKDEFF019,,hbci-deutsche-bank-adapter,59010019,, -b53616ef-72c1-4b6d-92fc-1b18ed402be9,HBCI ZVCFK21 Postbank Ndl DB PFK,PBNKDEFF021,,hbci-deutsche-bank-adapter,59010021,, -7f366ebe-9603-4657-9c07-b5904c8edaa8,HBCI ZVCFK22 Postbank Ndl DB PFK,PBNKDEFF022,,hbci-deutsche-bank-adapter,59010022,, -b1ca5d12-ab9a-4098-aef8-aeda145bace8,HBCI ZVCFK23 Postbank Ndl DB PFK,PBNKDEFF023,,hbci-deutsche-bank-adapter,59010023,, -fa6f5ba8-ffe4-4b90-a887-07eca6bb4ec0,HBCI ZVCFK24 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010024,, -91c405ff-4fb3-4633-9e7f-ce773f759ede,HBCI ZVCFK25 Postbank Ndl DB PFK,PBNKDEFF025,,hbci-deutsche-bank-adapter,59010025,, -d2442f87-b35a-4346-b9d3-8db26255cfa8,HBCI ZVCFK26 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010026,, -274858d3-c0f8-427f-ad48-539c4b5d0ad1,HBCI ZVCFK27 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010027,, -357f8965-aa5b-42f0-82bf-a16affba6af9,HBCI ZVCFK28 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010028,, -4ff4efdc-cd3b-404e-9893-51e0a0aa1333,HBCI ZVCFK29 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010029,, -5735b590-ffd3-4ce1-acfa-1f0d933cb27d,HBCI ZVCFK31 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010031,, -8b4bd310-1456-4170-8e6e-cc9871385a5a,HBCI ZVCFK32 Postbank Ndl DB PFK,PBNKDEFF032,,hbci-deutsche-bank-adapter,59010032,, -8f9ed113-5ac7-4249-af47-aa1b64eee3f1,HBCI ZVCFK33 Postbank Ndl DB PFK,PBNKDEFF033,,hbci-deutsche-bank-adapter,59010033,, -fa68fe28-9771-4658-9173-d3ec5f3cd198,HBCI ZVCFK34 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010034,, -3897a36d-bd65-44ed-a79a-5cb4222f9d99,HBCI ZVCFK35 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010035,, -6090b2c4-5e49-4edd-a7b1-b29cbd0e4ae1,HBCI ZVCFK36 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010036,, -8f6a7c13-a44d-4d9e-a2b6-65643c4b99dd,HBCI ZVCFK37 Postbank Ndl DB PFK,PBNKDEFF037,,hbci-deutsche-bank-adapter,59010037,, -f25236f2-4cca-4e4c-bae8-6bd745ee2181,HBCI ZVCFK38 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010038,, -b5fdecbc-dd89-4e07-ae47-2238e2e83f2c,HBCI ZVCFK39 Postbank Ndl DB PFK,PBNKDEFF039,,hbci-deutsche-bank-adapter,59010039,, -1f7aee47-2471-4860-a3cb-55324d8235fb,HBCI ZVCFK40 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010040,, -f20fe93d-4f66-4f7f-9cee-5cdd87c24b56,HBCI ZVCFK41 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010041,, -2e360d61-19d7-4d95-9301-fd63f071c27a,HBCI ZVCFK42 Postbank Ndl DB PFK,PBNKDEFF042,,hbci-deutsche-bank-adapter,59010042,, -57d0a61e-84f4-4fcd-8227-f7453cc498e3,HBCI ZVCFK44 Postbank Ndl DB PFK,PBNKDEFF044,,hbci-deutsche-bank-adapter,59010044,, -2ed5542b-0656-4e8a-9748-79be01aedc78,HBCI ZVCFK45 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010045,, -7e8da164-f4f6-4d9b-b07b-7d05ac53da96,HBCI ZVCFK47 Postbank Ndl DB PFK,PBNKDEFF047,,hbci-deutsche-bank-adapter,59010047,, -450feab8-032d-4a89-8fee-4dbb91221a7c,HBCI ZVCFK48 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010048,, -f0853639-0f07-4d60-860e-8f79446c4933,HBCI ZVCFK49 Postbank Ndl DB PFK,PBNKDEFF049,,hbci-deutsche-bank-adapter,59010049,, -db53a767-5121-4d18-8bbc-4594dcd1caff,HBCI ZVCFK51 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010051,, -c60ecb36-d8fc-4506-b95c-b4e126bf2d7d,HBCI ZVCFK52 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010052,, -d4260857-11db-482d-9521-5f222c19af27,HBCI ZVCFK53 Postbank Ndl DB PFK,PBNKDEFF053,,hbci-deutsche-bank-adapter,59010053,, -a573cde9-881d-46fc-a2e1-774ae4bdd428,HBCI ZVCFK54 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010054,, -d5aa4b5e-df6d-47f0-8dcf-ef1a39c35ed2,HBCI ZVCFK55 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010055,, -13567a5c-65ad-48c3-8cae-ba18c5e91d68,HBCI ZVCFK56 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010056,, -40d13327-911d-429b-a943-c207ee37e267,HBCI ZVCFK57 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010057,, -99a075ed-f0d0-41e7-8583-84a7ee8edb3e,HBCI ZVCFK58 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010058,, -b9b1c930-4fc1-466a-a978-23c6ed1e0149,HBCI ZVCFK59 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010059,, -aa5ab7f4-f019-4526-924c-9fee7eaed8db,HBCI ZVCFK61 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010061,, -3545b977-5192-446c-bfe3-495286376295,HBCI ZVCFK62 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010062,, -15c3d0f3-3b1c-4c92-8041-e46580f58f62,HBCI ZVCFK63 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010063,, -76a8165a-9951-4603-bc41-12415af56187,HBCI ZVCFK64 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010064,, -805131b9-e9b7-4946-b7fa-04e499c07ae1,HBCI ZVCFK65 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010065,, -77cd369b-344f-4c2c-b27c-b446da688114,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010066,, -be223441-a59c-43a3-88a3-62f803de4dcc,HBCI ZVCFK68 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010068,, -85dcc241-0bc3-4198-b4cd-af871df90cf1,HBCI ZVCFK69 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010069,, -97118a6f-2e13-4580-85be-4a67438431ad,HBCI ZVCFK71 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010071,, -2ec89a44-e84d-4847-bd03-0a4645df6263,HBCI ZVCFK72 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010072,, -e601644d-e2c3-4d71-a328-6c4160c63121,HBCI ZVCFK73 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010073,, -9ecafcb2-2d87-4322-afda-f184e52bf33b,HBCI ZVCFK74 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010074,, -a0e10ce9-8bbf-4e51-8b54-d4e9e841d98f,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,60010070,, -9b708db1-d1fc-41c6-8e73-840a97941e19,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,66010075,, -c6d13654-da24-42e8-9e1e-c7d97b9aedec,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,70010080,, -ab610391-bb99-4358-8f9f-7b083523b3fa,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,70110088,, -44630b67-a86e-4eda-a729-9dbfc5eebc8c,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,76010085,, -56942a7d-4905-4d09-80f1-24e073dc81a8,HBCI comdirect,COBADEHDXXX,,hbci-comdirect-adapter,20041111,, -4ce16b00-cef8-4982-a3b0-8b4fefe046c7,HBCI comdirect,COBADEHD001,,hbci-comdirect-adapter,20041133,, -c0b295d6-37d7-4c60-8db1-ad07a460ccc4,HBCI comdirect,COBADEHD044,,hbci-comdirect-adapter,20041144,, -e9da149b-cf6a-4222-86c9-1c5cd1a50cbe,HBCI comdirect,COBADEHD055,,hbci-comdirect-adapter,20041155,, -021ac028-20f9-4ec1-8a6e-ca76e6df4c4c,HBCI comdirect,COBADEHD066,,hbci-comdirect-adapter,20041166,, -e56343f5-845e-4892-b799-67b0750dcbf3,HBCI comdirect,COBADEHD077,,hbci-comdirect-adapter,20041177,, -2f5ee476-423a-40ed-8d3e-6ee57ba7f48c,HBCI comdirect,COBADEHD088,,hbci-comdirect-adapter,20041188,, -8bcc219a-7ada-4966-9f04-7eb693deb4ac,HBCI comdirect,COBADEHD099,,hbci-comdirect-adapter,20041199,, -609332ac-b701-404e-8e18-d0a42b301d74,HBCI Sparda-Bank Baden-Württemberg eG,GENODEF1S02,,hbci-sparda-bank-adapter,60090800,, -9ce647f9-fca6-4f86-9725-951ae7bcafc6,HBCI Sparda-Bank Ostbayern eG,GENODEF1S05,,hbci-sparda-bank-adapter,75090500,, -52dcde19-fe9f-48c4-ae6d-44e7a781ba09,HBCI Sparda-Bank Hessen eG,GENODEF1S12,,hbci-sparda-bank-adapter,50090500,, -8bcf6cac-41b5-486c-ba46-38fa55ed12f7,HBCI Sparda-Bank Nürnberg eG,GENODEF1S06,,hbci-sparda-bank-adapter,76090500,, -7dbddd34-a0bd-472e-b13b-235e1203805e,HBCI Sparda-Bank Augsburg eG,GENODEF1S03,,hbci-sparda-bank-adapter,72090500,, -aaf4d87d-5bc2-4c9f-8fec-d131e6aeb17b,HBCI Sparda-Bank München eG,GENODEF1S04,,hbci-sparda-bank-adapter,70090500,, -f00ecd69-3f78-4702-ad0d-221a7eba0514,HBCI Sparda-Bank West eG,GENODED1SPE,,hbci-sparda-bank-adapter,36060591,, -cbce5fe0-8968-4e99-965e-04d262cf9be8,HBCI Sparda-Bank West eG,GENODED1SPW,,hbci-sparda-bank-adapter,33060592,, -6593e2a4-396c-4006-b29f-76921202007e,HBCI Sparda-Bank West eG,GENODED1SPK,,hbci-sparda-bank-adapter,37060590,, -7e126ae4-858f-45e9-98fa-8ac9246a49f7,HBCI Sparda-Bank West eG,GENODEF1S08,,hbci-sparda-bank-adapter,40060560,, -f1481995-02fe-459a-b216-1d941dbadf5d,HBCI Commerzbank Filiale Berlin 1,COBADEBBXXX,,hbci-commerzbank-adapter,10040000,, -f4197d9c-43b3-44fd-8c88-232672df370a,HBCI Commerzbank Filiale Berlin 3,COBADEBBXXX,,hbci-commerzbank-adapter,10040005,, -3b234f43-7487-4ffb-9ac0-941fb8ab06ab,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,10040010,, -e5a88c4a-cbc0-443e-ab94-89846b1ff505,HBCI Commerzbank GF-B48,COBADEFFXXX,,hbci-commerzbank-adapter,10040048,, -bcd3784d-6fc5-4bb6-9331-39b212e6278a,HBCI Commerzbank Gf 160,COBADEFFXXX,,hbci-commerzbank-adapter,10040060,, -5f1ea2bf-d2f5-4162-8319-71b8ed85b277,HBCI Commerzbank Gf 161,COBADEFFXXX,,hbci-commerzbank-adapter,10040061,, -ceb4aace-20e3-4f7e-845b-09dffdec16dc,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,10040062,, -cac2e7af-5239-4edc-a639-2f81edfedf81,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,10040063,, -70c7b51b-23df-4d56-8c22-7a1133822930,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,10040085,, -ad478d8d-30aa-4c27-82f4-1d69b4e3e5bf,HBCI Commerzbank Service-BZ,COBADEFFXXX,,hbci-commerzbank-adapter,10045050,, -28f309f4-878f-46df-9a38-0bc8c34eefa1,HBCI Commerzbank vormals Dresdner Bank Filiale Berlin I,DRESDEFF100,,hbci-commerzbank-adapter,10080000,, -21711940-86b4-47e9-8c92-377ab8b05805,HBCI Commerzbank vormals Dresdner Bank Zw A,DRESDEFFI26,,hbci-commerzbank-adapter,10080005,, -5f118821-3fb8-4a2d-9f2f-440a02da7299,HBCI Commerzbank vormals Dresdner Bank Zw B,DRESDEFFXXX,,hbci-commerzbank-adapter,10080006,, -70da0f53-4439-482d-ae9c-5ef64cd78418,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF112,,hbci-commerzbank-adapter,10080055,, -14d3e61e-1ca3-43b0-9963-39336ac82f39,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF114,,hbci-commerzbank-adapter,10080057,, -3cf3522a-2d2b-41f4-a153-b34103028b87,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 3,DRESDEFFI53,,hbci-commerzbank-adapter,10080085,, -842fa72c-d17c-4c36-bdfe-445adce7dded,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI71,,hbci-commerzbank-adapter,10080086,, -1784202b-f90f-4c7a-8f50-56c87c23806a,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI72,,hbci-commerzbank-adapter,10080087,, -894cc912-a761-4b28-a025-bd4e09757345,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25040066,, -81f963b8-ed7d-44cf-a09b-3382de1f661f,HBCI Commerzbank vormals Dresdner Bank IBLZ,DRESDEFFXXX,,hbci-commerzbank-adapter,10080088,, -286f128d-018c-462b-b14a-2076965130a4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM664,,hbci-unicredit-adapter,70322192,, -0fa1c7bc-fe35-4641-90ed-0e6fde4894a3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI73,,hbci-commerzbank-adapter,10080089,, -abf005b9-a9a7-42de-845e-052fc5f28ef9,HBCI Commerzbank vormals Dresdner Bank Filiale Berlin III,DRESDEFF199,,hbci-commerzbank-adapter,10080900,, -c61aac61-66a8-4d27-a0df-abf46778eaa2,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI14,,hbci-commerzbank-adapter,10089260,, -1c8676bb-840b-4802-8d87-17e6a3507b2c,HBCI Commerzbank vormals Dresdner Bank ITGK 2,DRESDEFFI99,,hbci-commerzbank-adapter,10089999,, -d326c17f-9d07-48ba-b5b1-5dbbf472292a,HBCI Commerzbank Filiale Berlin 2,COBADEBB120,,hbci-commerzbank-adapter,12040000,, -2372e1c0-a64f-4f76-990f-ed3fd394b85c,HBCI Commerzbank vormals Dresdner Bank Filiale Berlin II,DRESDEFF120,,hbci-commerzbank-adapter,12080000,, -9e3b7ddd-5f58-422d-8b87-6fc6236b21a2,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,13040000,, -cad70d8d-fbfd-498e-944e-6f995f7a6056,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF130,,hbci-commerzbank-adapter,13080000,, -b1c0a4bb-d727-4e4b-9967-e9c36aead9b3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,14040000,, -5a3fd28f-75d6-4ff8-ba1b-457685d6b04d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF140,,hbci-commerzbank-adapter,14080000,, -1521abf9-c5e6-4f4d-b0bd-5a6e66b25f78,HBCI Commerzbank vormals Dresdner Bank Zw W,DRESDEFFI27,,hbci-commerzbank-adapter,14080011,, -f67ac3c8-dc12-4226-9d50-d7b3ff4939d3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,15040068,, -d143670e-e166-44ec-ad33-fd765001eccd,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF150,,hbci-commerzbank-adapter,15080000,, -64b73a60-f13d-4478-9621-cf7939c76162,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,16040000,, -6d494446-4858-4329-b7eb-facaccc5964e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF160,,hbci-commerzbank-adapter,16080000,, -362fd203-3701-48e1-b20f-48d99be492d3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,17040000,, -cf647e92-8b72-4d29-8696-717ab0662d2b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF170,,hbci-commerzbank-adapter,17080000,, -76efc5d8-967d-4fd6-8a1b-df1b4877fcd5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,18040000,, -3f60ccec-5ce8-43ea-8a8c-d3698255a5b9,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF180,,hbci-commerzbank-adapter,18080000,, -4f795767-ebbd-4218-8ec5-a505c3966566,HBCI Commerzbank,COBADEHHXXX,,hbci-commerzbank-adapter,20040000,, -d8c3d97c-20e5-4836-b4ab-49fd1699c90b,HBCI Commerzbank Filiale Hamburg 2,COBADEHHXXX,,hbci-commerzbank-adapter,20040005,, -8414f04a-a72b-4e9e-ab30-134a55b87bdc,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,20040020,, -d46b1317-d620-4e15-b274-84a37af72e9f,HBCI Commerzbank GF RME,COBADEFFXXX,,hbci-commerzbank-adapter,20040040,, -58324a8d-4923-42dc-aba2-209b4b015599,HBCI Commerzbank GF-H48,COBADEFFXXX,,hbci-commerzbank-adapter,20040048,, -cdf0938d-d726-497a-81f6-86a9dfd2c236,HBCI Commerzbank GF COC,COBADEFFXXX,,hbci-commerzbank-adapter,20040050,, -d5e6fb9f-e0d0-4866-ae1c-f577197ccd36,HBCI Commerzbank Gf 260,COBADEFFXXX,,hbci-commerzbank-adapter,20040060,, -c09c7153-1006-4348-801d-afe6c1646b82,HBCI Commerzbank Gf 261,COBADEFFXXX,,hbci-commerzbank-adapter,20040061,, -c7a980b6-f14d-4af9-93c6-de2702061960,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,20040062,, -65611597-5dea-4186-a310-df7e12d5b41b,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,20040063,, -cdb55d58-153e-45b6-aac8-84f5ac2c0452,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF200,,hbci-commerzbank-adapter,20080000,, -915e1663-42d8-4964-8c33-2e387318fc93,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF207,,hbci-commerzbank-adapter,20080055,, -f8880690-e881-4fc9-b931-f37e67da5e55,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF208,,hbci-commerzbank-adapter,20080057,, -432fe3c8-e5c3-4232-879d-ab06c14b72dd,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 2,DRESDEFFI56,,hbci-commerzbank-adapter,20080085,, -634167b7-3cb8-44b0-ae3e-ce4a1b40e1a9,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI63,,hbci-commerzbank-adapter,20080086,, -48b2cf47-b254-4280-863e-ec2a97a8b839,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI64,,hbci-commerzbank-adapter,20080087,, -fd4c801b-8c66-4cb3-a819-a501aac49f8d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI74,,hbci-commerzbank-adapter,20080088,, -e511ec32-13b1-4653-b698-94c411f805fd,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI75,,hbci-commerzbank-adapter,20080089,, -ac204c17-53f0-4926-925b-f5cec593ca45,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFJ33,,hbci-commerzbank-adapter,20080091,, -9ba00f0e-23bb-464e-9cbe-008e9036569a,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 8,DRESDEFFJ34,,hbci-commerzbank-adapter,20080092,, -d5151fb0-a244-4c44-9402-aa35845122b2,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 9,DRESDEFFJ35,,hbci-commerzbank-adapter,20080093,, -203f5ae7-96f9-4488-ab0f-b041d5ccb817,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 10,DRESDEFFJ36,,hbci-commerzbank-adapter,20080094,, -74afa4ae-0e25-476c-bf2f-cfeb1a8f9d3a,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 11,DRESDEFFJ37,,hbci-commerzbank-adapter,20080095,, -55170235-4493-4614-8713-683b96b52b84,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI06,,hbci-commerzbank-adapter,20089200,, -be556da9-b00d-4202-ad3c-a2ea062ca4b4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21040010,, -cbb19bed-f388-4e6e-ab1a-48952cd1cb00,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21042076,, -5fcc125a-11db-4181-8097-654c96e7ff0f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF210,,hbci-commerzbank-adapter,21080050,, -64c791c0-e3dc-43ca-9db6-b14983232568,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI07,,hbci-commerzbank-adapter,21089201,, -68976004-3933-4abd-8dbe-94917cf87f26,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21240040,, -355f218f-dfa4-4356-a8e3-22bac2a00a33,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21241540,, -8a53205b-f558-42a0-9efd-c35e0c0847a0,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF212,,hbci-commerzbank-adapter,21280002,, -51d01cd5-3e66-4c4d-8a68-2d314d4a7348,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21340010,, -b4711eab-a8f6-4b98-8796-0a856d47024f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21440045,, -c0fc2871-6d64-4e1f-8508-e8ff247bc8bc,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF214,,hbci-commerzbank-adapter,21480003,, -3f709833-d36d-4a39-95e4-5636bfe394d3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21540060,, -1ab8967e-f950-4bce-92ac-80f706ea8a04,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF215,,hbci-commerzbank-adapter,21580000,, -5c08e371-ab8f-45f8-a169-4caa3f8d4359,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21740043,, -2737603b-4b24-427a-a57a-9f2e53e364c3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21741674,, -294c32fc-1a7c-45e8-a850-8884db09da01,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21741825,, -c8fdd458-6fcc-4248-b869-2d556eeb1b98,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21840078,, -0a2dcdd1-828a-4c3b-99cc-d07d39a8f374,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21841328,, -980971f7-63dc-4d79-8660-040838e830b7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22140028,, -a34238c3-6c5b-4e3b-baca-c2592645d1ea,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22141028,, -4b490c79-e655-423b-8426-783369c7d06e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22141428,, -373842ae-7861-4bdc-a6df-85a4a048a21f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22141628,, -3355ae73-81d3-4d1f-944e-b17309c65b58,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF221,,hbci-commerzbank-adapter,22180000,, -12705888-ac3d-4d6c-acec-e1367fd68f5f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF206,,hbci-commerzbank-adapter,22181400,, -8522b804-7674-4463-89b5-e607d7426f3c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22240073,, -0b5a9b50-cdb6-48f0-9f51-dfab95881f16,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF201,,hbci-commerzbank-adapter,22280000,, -43162ca2-a348-4c7f-a1f3-7e3c66291737,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,23040022,, -ee791879-0564-4dff-8656-e6775334c910,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF230,,hbci-commerzbank-adapter,23080040,, -c24dc9a9-5f19-4d16-bc75-bcf484d4e2a7,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI08,,hbci-commerzbank-adapter,23089201,, -a5956108-0c18-4203-9967-f3ca91218a07,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,24040000,, -1780bbda-5b0f-4326-b14d-d3a92a41d7f6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF240,,hbci-commerzbank-adapter,24080000,, -bf48ea2d-2923-4ca3-b46e-161f8b5201f3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,24140041,, -c23ab7bb-9948-4208-abb4-5d991df96603,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF242,,hbci-commerzbank-adapter,24180000,, -49bf4a1c-b808-4fb0-8d98-0992f9feee76,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF241,,hbci-commerzbank-adapter,24180001,, -56a392fe-ed07-42d3-a3db-4168c10a73c7,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,25040060,, -cd0d7e7c-51b9-4733-884f-eb251ce41e08,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,25040061,, -f1039a52-9d0b-4a14-917f-6e7fe6eb402c,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF250,,hbci-commerzbank-adapter,25080020,, -34e0d257-0070-4ea3-ac4e-a21081c8aab3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI65,,hbci-commerzbank-adapter,25080085,, -86bb6dfa-b786-44b8-967a-963de50d2964,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI09,,hbci-commerzbank-adapter,25089220,, -4f915293-bbf8-462c-ba5a-8f1da43ea5d8,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25440047,, -5287c855-f0a9-47c8-9071-a54462bda59f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF254,,hbci-commerzbank-adapter,25480021,, -38925ad6-7ad0-46c3-a3f9-a3c6876e0142,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM408,,hbci-unicredit-adapter,72020070,, -9a908268-db58-4d93-b07c-ee50b44d5bc9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25541426,, -1dce9ba0-bdb5-4ff7-8789-15a876a88658,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25641302,, -69760075-3785-4a9b-b1dc-241a9a9b2959,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25740061,, -b28c401a-f22b-4848-8984-021c1c947eca,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF257,,hbci-commerzbank-adapter,25780022,, -a220e46c-ed1b-4d81-baba-28835dacbde0,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25840048,, -7920fb64-4642-49bf-b4b4-9888f361e686,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25841403,, -6aa382d9-144f-400e-ba26-7e8174a0bbb7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25841708,, -769b9e9d-400a-4ba4-8ec8-a3a3e957679c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25940033,, -e44a08dd-5cdb-4299-8e12-80218867b77b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF259,,hbci-commerzbank-adapter,25980027,, -f142c2f9-dc68-45a3-a575-2b6243b92900,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26040030,, -74b710fc-6a12-4198-ad86-2bb17c553708,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF260,,hbci-commerzbank-adapter,26080024,, -73793ca3-c633-47ea-abb8-75db1b84c8a4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26240039,, -798cf375-7d2e-4ed2-b3b7-624aededfabe,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF261,,hbci-commerzbank-adapter,26280020,, -2bba0763-3178-4057-af31-f9528e43d247,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF262,,hbci-commerzbank-adapter,26281420,, -255c3c4c-8640-4475-b809-c0d232a39066,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26340056,, -7fc07b6e-8375-4908-ae67-f38a89c74e57,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26341072,, -252cc893-d9f0-4d32-97bf-584d7472208e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26540070,, -adcb21ba-0dd1-4f53-933d-cb2f55ce9556,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF265,,hbci-commerzbank-adapter,26580070,, -38a56161-f02d-4410-82c7-e91adcd6fd2d,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI10,,hbci-commerzbank-adapter,26589210,, -ef311903-fa58-4755-b790-9ec02a11c3d7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26640049,, -ed14c900-8f7a-491f-97a7-db694d74098e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26740044,, -46c051f3-f1b7-4cf7-b6ab-152cf54644b5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26840032,, -70161e36-7663-4d13-8a7b-fb756e1db7d3,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF268,,hbci-commerzbank-adapter,26880063,, -67063f53-9611-4fd6-b191-ebd32bcee002,HBCI Commerzbank Wolfsburg,COBADEFFXXX,,hbci-commerzbank-adapter,26941053,, -d5adf7bb-8ba2-4170-a441-3a88f5d9dfef,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF269,,hbci-commerzbank-adapter,26981062,, -5fc8d3e5-7204-4b16-b236-634d525ad237,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI11,,hbci-commerzbank-adapter,26989221,, -0a44deb7-33ff-4bdf-8d01-627089403a6a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,27040080,, -e1a22955-5082-4795-9340-4357d3fdc5fc,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF270,,hbci-commerzbank-adapter,27080060,, -1e2494e6-3239-471c-a926-d930d807288e,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI12,,hbci-commerzbank-adapter,27089221,, -60953cc8-10b7-498d-88d5-bca6ff1838da,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,27240004,, -2805f6ed-cc29-40e2-981c-f847183ce3fe,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28040046,, -eed7cfcb-c26a-4b67-8b82-6200f815df0d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28042865,, -03994c77-3a8b-4e26-af09-fe72e91f017f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28240023,, -874e2fef-f997-406c-9e09-b977f77912bb,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF282,,hbci-commerzbank-adapter,28280012,, -bcf15377-096e-49f0-98f8-a2caac437776,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28440037,, -168591e2-1d0e-40fe-8f3d-200e769a59fa,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28540034,, -0f7d231f-3cec-43a9-9f6b-c7bdbfb90af4,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,29040060,, -6f3a246a-9ad2-4af7-801e-967bf44aac2b,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,29040061,, -d13ebc5a-9848-4b5d-a42d-35a7f319e29c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,29040090,, -b4e011b0-1474-4a61-b537-a1c2c5697944,HBCI Commerzbank vormals Bremer Bank (Dresdner Bank),DRESDEFF290,,hbci-commerzbank-adapter,29080010,, -a533bee6-1f61-4138-ad7d-931b5d77168c,HBCI Commerzbank vormals Bremer Bank (Dresdner Bank) ITGK,DRESDEFFI13,,hbci-commerzbank-adapter,29089210,, -ec8bf279-1b02-408a-b33d-a4c4da377e7c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,29240024,, -e9edd534-f028-475b-8e79-24e30dc59625,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,32440023,, -42fb7521-8b8e-421b-9b83-3ed36143651b,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,33040001,, -c4e2bb4e-6241-4086-9587-d01c8b1f9ab8,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF292,,hbci-commerzbank-adapter,29280011,, -95735800-9599-4371-a2f7-930f7c1dac5d,HBCI Commerzbank,COBADEDDXXX,,hbci-commerzbank-adapter,30040000,, -ab575aa4-7fdc-40be-8c0c-3fa112be8df1,HBCI Commerzbank Filiale Düsseldorf 2,COBADEDDXXX,,hbci-commerzbank-adapter,30040005,, -9c0e3fff-8061-4261-a15b-c39f9cd80414,HBCI Commerzbank GF-D48,COBADEFFXXX,,hbci-commerzbank-adapter,30040048,, -5f009043-51a8-4ad8-b547-86e10a657761,HBCI Commerzbank Gf 660,COBADEFFXXX,,hbci-commerzbank-adapter,30040060,, -095e9370-b6b3-4f6e-9a2a-b229a241ec0d,HBCI Commerzbank Gf 661,COBADEFFXXX,,hbci-commerzbank-adapter,30040061,, -95ad9811-6fdc-4a8f-aca5-8a0d7b068b58,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,30040062,, -9140e3ca-69f4-4e82-8790-649eb5073887,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,30040063,, -563c1c56-c49b-4c63-b26a-2a4ad1b3f26e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF300,,hbci-commerzbank-adapter,30080000,, -18c695c9-5062-4b93-aa3f-3aecc1f2a3d9,HBCI Commerzbank vormals Dresdner Bank Zw 05,DRESDEFFXXX,,hbci-commerzbank-adapter,30080005,, -85954e9a-ec49-4c22-bfca-5d2a5378fff3,HBCI Commerzbank vormals Dresdner Bank Ztv 22,DRESDEFFI28,,hbci-commerzbank-adapter,30080022,, -31a08d50-57c4-4bc1-a3fb-1899ccc231c0,HBCI Commerzbank vormals Dresdner Bank Zw 38,DRESDEFFXXX,,hbci-commerzbank-adapter,30080038,, -6071739d-10b9-4302-ae9a-26483b4a6dc4,HBCI Commerzbank vormals Dresdner Bank Zw 41,DRESDEFFI29,,hbci-commerzbank-adapter,30080041,, -086c41e2-5005-4cd7-b857-4a490c131e7f,HBCI Commerzbank vormals Dresdner Bank Zw 53,DRESDEFFI30,,hbci-commerzbank-adapter,30080053,, -ba17f663-cd95-4888-83d7-f2b10710951d,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF309,,hbci-commerzbank-adapter,30080055,, -7a5b14ab-97cf-4a97-8b34-c3577a05d9f4,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF316,,hbci-commerzbank-adapter,30080057,, -8d73bf5f-ac31-42a1-9f48-543eef698251,HBCI Commerzbank vormals Dresdner Bank Zw 61,DRESDEFFI31,,hbci-commerzbank-adapter,30080061,, -28638d56-54f8-490a-b620-65de6cf18c70,HBCI Commerzbank vormals Dresdner Bank Zw 74,DRESDEFFI32,,hbci-commerzbank-adapter,30080074,, -ee3ee4fa-13a8-4682-a4fd-6135fca36c70,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI76,,hbci-commerzbank-adapter,30080080,, -9b9504cd-5308-440b-9ca7-70c25232e94c,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI77,,hbci-commerzbank-adapter,30080081,, -66cbc7bd-356d-42ce-90e9-b5a8204e77dc,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI78,,hbci-commerzbank-adapter,30080082,, -d29111e8-72c0-4b75-8a1a-bc41806115ad,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI79,,hbci-commerzbank-adapter,30080083,, -e7b2d9ae-3de8-4f1f-98e8-e9d6586aca7f,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFI80,,hbci-commerzbank-adapter,30080084,, -f82c9528-16b6-43c0-821e-439862d791dc,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 8,DRESDEFFI81,,hbci-commerzbank-adapter,30080085,, -db8203dc-6d29-40a7-a0b7-a6aecb99c559,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 9,DRESDEFFI82,,hbci-commerzbank-adapter,30080086,, -02071d91-545a-43ac-af6c-d744f03c193d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 10,DRESDEFFI83,,hbci-commerzbank-adapter,30080087,, -0fc7c4b7-b6e6-42d3-984d-87cb572df84b,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 11,DRESDEFFI84,,hbci-commerzbank-adapter,30080088,, -dc11dff0-72c5-4fc5-b5c9-1801e1768527,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 12,DRESDEFFI85,,hbci-commerzbank-adapter,30080089,, -78a351e0-1b0c-42fa-9782-5ddcc629a1c8,HBCI Commerzbank vormals Dresdner Bank Zw 95,DRESDEFFI33,,hbci-commerzbank-adapter,30080095,, -b54deabb-9743-451e-a6bb-64c79675b67f,HBCI Commerzbank vormals Dresdner Bank ITGK I,DRESDEFFI02,,hbci-commerzbank-adapter,30089300,, -8d26b806-4536-4734-96a3-34b79911f708,HBCI Commerzbank vormals Dresdner Bank ITGK II,DRESDEFFI03,,hbci-commerzbank-adapter,30089302,, -58d168cd-da21-45c7-9329-8e784ad83280,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,31040015,, -b0e8a80c-d370-4674-9151-94526a944491,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,31040060,, -732e55b3-324c-4d72-abc2-27c3d739a18d,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,31040061,, -77e1de46-a058-47db-95b8-09332ea81a32,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF310,,hbci-commerzbank-adapter,31080015,, -af4de221-8840-42fa-9b6b-5e4a0aa10b03,HBCI Commerzbank vormals Dresdner Bank Zw 61,DRESDEFFI34,,hbci-commerzbank-adapter,31080061,, -4a399794-b31f-4f80-9a54-d8b6e67c65b7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,32040024,, -c3c8ac4a-c9e1-4310-abaa-089d76bab313,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF320,,hbci-commerzbank-adapter,32080010,, -002bdf69-542d-4da2-87c9-739a4dde7919,HBCI Commerzbank Zw 117,COBADEDHXXX,,hbci-commerzbank-adapter,33040310,, -4087e5f8-13fa-41d2-94b5-676a5c308272,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI86,,hbci-commerzbank-adapter,33080001,, -67560fcc-79ce-49d9-a137-10d05cf55596,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF332,,hbci-commerzbank-adapter,33080030,, -42f6ab8e-65c7-4677-b293-3fd301fc4bd3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI87,,hbci-commerzbank-adapter,33080085,, -85b15e53-56ec-47b4-979a-0f45719de79e,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI88,,hbci-commerzbank-adapter,33080086,, -1b669fec-321b-4767-b03a-e3789413a4e4,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI89,,hbci-commerzbank-adapter,33080087,, -3dac30a7-88bb-4e48-b34c-77a39008bad8,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI90,,hbci-commerzbank-adapter,33080088,, -03b523dc-305d-4587-8cfd-291cb041dee6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,33440035,, -953f480a-0f1b-4f8c-aaa0-088473cc746a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,34040049,, -2c7f4155-9f6c-4d00-a1fb-3cf61b1f5b9f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF340,,hbci-commerzbank-adapter,34080031,, -699cc36d-58b2-401b-8c96-5bfdc2e0b003,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,34240050,, -be66f792-1917-4473-a4e6-26c10426f8f3,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF342,,hbci-commerzbank-adapter,34280032,, -a378ee32-0c17-4ce3-be54-263d8055ee1f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,35040038,, -1c5d3029-e7f3-439e-b271-d137d396f896,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,35040085,, -77c42e80-cdd8-4362-a566-2735ad23311a,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF350,,hbci-commerzbank-adapter,35080070,, -68739dd8-55ff-43b5-a823-232ee353dfaa,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI91,,hbci-commerzbank-adapter,35080085,, -10fe87b7-238c-463e-9709-82ea36474b51,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI92,,hbci-commerzbank-adapter,35080086,, -d864c7c1-86e7-4672-beaa-cf39038b495e,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI93,,hbci-commerzbank-adapter,35080087,, -aea8fe93-966b-4d6f-9df5-594e5f72962d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI94,,hbci-commerzbank-adapter,35080088,, -4e14ac9b-a369-4855-baf8-309a209f874c,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI95,,hbci-commerzbank-adapter,35080089,, -1a90f7b9-9cb0-4808-8c9a-ab431ed066a6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF413,,hbci-commerzbank-adapter,41280043,, -bdc37316-ed22-4a8e-9771-294dd3ffd820,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41440018,, -022d3751-9cde-44cf-a6d4-40d4da9c8fc3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,42040040,, -8d58e87d-de3f-4876-ab16-2c110ebfef49,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF420,,hbci-commerzbank-adapter,42080082,, -b777cdff-4a62-498a-93e7-c990ad5f93d3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,42640048,, -67df5971-66ef-4446-9c4c-f18624b020c0,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF426,,hbci-commerzbank-adapter,42680081,, -a7a973bc-aefc-4c13-856c-f9a9f0cf1b60,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,42840005,, -8b487506-fe76-4d41-84c3-96903688f628,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,43040036,, -2a51b210-d3de-46b6-8d51-bf8dd8b15827,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF430,,hbci-commerzbank-adapter,43080083,, -d4809ee9-5178-42a0-adf7-5e2928f0c851,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,44040037,, -1a828827-92db-4dc4-9779-bc9b68dee364,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,44040060,, -b511d71a-791e-404c-8657-94dec23b052f,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,44040061,, -632f05f5-80ae-4cfb-b010-13137d96aea7,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,44040085,, -1eaa5e4b-af04-4424-bae0-51d6e88fa62b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF440,,hbci-commerzbank-adapter,44080050,, -119fe25c-fee3-486d-99c0-7500cb749366,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF446,,hbci-commerzbank-adapter,44080055,, -778a4c35-abd6-496c-a55a-8f9b86387de4,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF447,,hbci-commerzbank-adapter,44080057,, -4e51f130-d103-4491-b7f5-901718ac9760,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI69,,hbci-commerzbank-adapter,44080085,, -45fb349c-3c29-4252-86f4-125a58e70300,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI18,,hbci-commerzbank-adapter,44089320,, -ede06b63-c741-4a52-a060-bc78302d95d9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,44340037,, -96264e37-0e07-41c8-b039-054b10235418,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,44540022,, -8955a5af-ae1a-49ed-85b1-8edb5bbf7fdd,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF445,,hbci-commerzbank-adapter,44580070,, -2745fd5e-73b2-4dc4-99f1-d4330ba05bfb,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI70,,hbci-commerzbank-adapter,44580085,, -90b75ad8-eb5c-4ca3-8015-24f60b205161,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45040042,, -166453f8-00df-4bc4-9860-a407ade25569,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF450,,hbci-commerzbank-adapter,45080060,, -6ce64182-2381-453f-9fe4-ed9b353cb28d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45240056,, -2d209338-898d-4839-8963-e7fa383beec7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45840026,, -d9ca54e4-6747-410d-8b8b-fdec94e39a15,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45841031,, -9f22ea8f-0311-405c-956d-b5a9dd136900,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46040033,, -72c7764f-dc65-49f8-850c-ad3ff7a2238b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF460,,hbci-commerzbank-adapter,46080010,, -4e55156f-beba-4abd-b7c3-1975713d8b7e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46240016,, -76a197cc-703f-4126-a622-7371f7a4465a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46441003,, -cd652ef3-f499-4922-a1f0-b2bab8912e65,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46640018,, -279af378-d4da-4cf3-b901-c1186469f325,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,47240047,, -446f3734-8d01-48ce-bc3c-c1edddd314d2,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,47640051,, -a2e37c10-f7e5-4c60-aa66-34b1ab7ac97e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,47840065,, -058c9f1d-8803-40c5-8b77-397a1d9fcc0a,HBCI Commerzbank Zw 80,COBADEFFXXX,,hbci-commerzbank-adapter,47840080,, -cf8e704b-a655-4e50-b293-8fefb987851d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF478,,hbci-commerzbank-adapter,47880031,, -5cfcb7f0-0574-4294-be78-e4fedc0826b8,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,48040035,, -0c047330-e046-43db-b0fd-50d70a2c9c11,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,48040060,, -e9e6afb6-ee47-4157-b09e-ad19357b26be,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,48040061,, -4530f17b-a9a5-4453-b5d2-580fee7aeb49,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF480,,hbci-commerzbank-adapter,48080020,, -9166bb95-4d9c-4ae2-959a-226e652f82d5,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI19,,hbci-commerzbank-adapter,48089350,, -cdfeda98-207e-4ae0-98c1-94428c38e0d4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,49040043,, -5fea603b-77d3-4d50-9d63-55f2dfc8b328,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF491,,hbci-commerzbank-adapter,49080025,, -fc11c4df-88bd-4804-acda-4057233bf57e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,49240096,, -03ba285a-ce26-473b-b047-172f6031a230,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,49440043,, -4e5c4066-f266-43f7-8a11-2f895fc490a0,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50040000,, -2ff97ecd-43a5-430e-b114-65e7336fb350,HBCI Commerzbank Filiale Frankfurt 2,COBADEFFXXX,,hbci-commerzbank-adapter,50040005,, -d495fa96-ee56-4604-b105-c2ce93465b85,HBCI Commerzbank Gf BRS,COBADEF1BRS,,hbci-commerzbank-adapter,50040033,, -607871c9-58de-46ce-91c4-3eb67a854b5a,HBCI Commerzbank MBP,COBADEFFXXX,,hbci-commerzbank-adapter,50040038,, -353ae4c7-7f6a-4eed-a02a-2d2da562442c,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM418,,hbci-unicredit-adapter,70021180,, -26c3a807-e367-4a54-8f66-0b6de9bacae5,HBCI Commerzbank Gf ZRK,COBADEFFXXX,,hbci-commerzbank-adapter,50040040,, -37ef8e91-0feb-4ee5-acb5-83eec46fec17,HBCI Commerzbank GF-F48,COBADEFFXXX,,hbci-commerzbank-adapter,50040048,, -9b673723-3a86-40ee-80de-09b2fb7a0560,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,50040050,, -ad3b9a8d-621d-4500-9178-8bdf508c0223,HBCI Commerzbank Center Dresdner Bank Frankfurt,COBADEFFXXX,,hbci-commerzbank-adapter,50040051,, -4ef6f98c-3b97-4f48-861e-4dd1ec5949ba,HBCI Commerzbank Service - BZ Frankfurt,COBADEFFXXX,,hbci-commerzbank-adapter,50040052,, -dce3c208-6aa6-4058-a4a3-04e42be12f81,HBCI Commerzbank Gf 460,COBADEFFXXX,,hbci-commerzbank-adapter,50040060,, -0a23df7d-e666-46d7-bb11-c4c003a376ed,HBCI Commerzbank Gf 461,COBADEFFXXX,,hbci-commerzbank-adapter,50040061,, -0faacce7-8690-4ed8-8215-2ac40b161884,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,50040062,, -f2ab0481-1962-44d0-8f1c-3abc35350307,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,50040063,, -ce857127-0fca-4350-96ec-f0b4c3290b24,HBCI Commerzbank Gf ZCM,COBADEFFXXX,,hbci-commerzbank-adapter,50040075,, -95559ceb-6c5a-461a-a4ac-b95c8b12963b,HBCI Commerzbank GF Web-K CMTS2,COBADEFFXXX,,hbci-commerzbank-adapter,50040084,, -8f930609-de66-4ab6-aa3e-c32ff53cea33,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,50040085,, -d0388c27-f8de-4549-9b74-0fc8da2de5d8,HBCI Commerzbank GF Web-K CMTS,COBADEFFXXX,,hbci-commerzbank-adapter,50040086,, -c18d1561-4de7-411d-8eed-a7489846e212,HBCI Commerzbank Gf Web-K CMTS3,COBADEFFXXX,,hbci-commerzbank-adapter,50040087,, -8a458e6c-124e-4a45-b4d1-056806ff03e2,HBCI Commerzbank INT 1,COBADEFFXXX,,hbci-commerzbank-adapter,50040088,, -65f76e21-5c8e-4708-8dff-8f5b37a6f778,HBCI Commerzbank INT,COBADEFFXXX,,hbci-commerzbank-adapter,50040099,, -ec094c26-8252-4097-8a10-4c81ae9fa77e,HBCI Commerzbank Zw 425 - keine Auslandsbanken,COBADEFFXXX,,hbci-commerzbank-adapter,50042500,, -bc8ce078-e8f9-4972-9c9c-d01585d3cca5,HBCI Commerzbank Vermögensverwaltung,COBADEFFXXX,,hbci-commerzbank-adapter,50044444,, -1b3c8688-16bc-4510-b843-f318c29cb1d5,HBCI Commerzbank Service - BZ,COBADEFFXXX,,hbci-commerzbank-adapter,50047010,, -2e702e6a-fb8f-4fbc-9784-5113decb964c,HBCI Commerzbank vormals Dresdner Bank,DRESDEFFXXX,,hbci-commerzbank-adapter,50080000,, -514e6277-4156-4186-8311-c23cdc47bb09,HBCI Commerzbank vormals Dresdner Bank Zw 15,DRESDEFFI39,,hbci-commerzbank-adapter,50080015,, -e71e615b-5a44-48ac-ab85-78e56cb233ad,HBCI Commerzbank vormals Dresdner Bank Zw 25,DRESDEFFXXX,,hbci-commerzbank-adapter,50080025,, -d297d80e-ada6-45b6-b297-311c1d9d334c,HBCI Commerzbank vormals Dresdner Bank Zw 35,DRESDEFFI40,,hbci-commerzbank-adapter,50080035,, -80e9fc49-7b45-4756-876e-c40334c1cb40,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF516,,hbci-commerzbank-adapter,50080055,, -e821e787-3f24-4735-bad0-3fc71738255c,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF522,,hbci-commerzbank-adapter,50080057,, -3419be0c-3a2e-459e-b80b-02181ab9bf6f,HBCI Commerzbank vormals Dresdner Bank Gf DrKW,DRESDEFFXXX,,hbci-commerzbank-adapter,50080060,, -cf49b96e-afd7-45fd-bc06-e1c295b656b8,HBCI Commerzbank vormals Dresdner Bank Gf DrKWSL,DRESDEFFLDG,,hbci-commerzbank-adapter,50080061,, -87e1ed00-ea44-488d-868e-c7199c312bba,HBCI Commerzbank GF Wüstenrot BSPK,DRESDEFFBSP,,hbci-commerzbank-adapter,50080077,, -720f1692-d913-4390-9836-c0ce5712f8c9,HBCI Commerzbank vormals Dresdner Bank ESOP,DRESDEFFXXX,,hbci-commerzbank-adapter,50080079,, -0a47a420-b518-413a-b2bc-2b628416a54b,HBCI Commerzbank vormals Dresdner Bank Bs 80,DRESDEFFI41,,hbci-commerzbank-adapter,50080080,, -e96bfeb7-9bb1-40d2-8e8b-5064a0364d97,HBCI Commerzbank vormals Dresdner Bank Gf AVB,DRESDEFFAVB,,hbci-commerzbank-adapter,50080082,, -ab177ea1-9703-4092-8da7-ab7e9e31fd4c,HBCI Commerzbank vormals Dresdner Bank ITGK 3,DRESDEFFI49,,hbci-commerzbank-adapter,50080086,, -12ff125f-940d-4488-aaf0-73cdb9020927,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFJ08,,hbci-commerzbank-adapter,50080087,, -2490c2e5-f88d-417c-8176-abbfd862f7aa,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFJ09,,hbci-commerzbank-adapter,50080088,, -5c512163-4357-43f9-befb-383d9c3c877c,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFJ10,,hbci-commerzbank-adapter,50080089,, -9e5701ba-1c52-4de4-9e4a-c05b35657bf0,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFJ11,,hbci-commerzbank-adapter,50080091,, -09f8606c-7295-4e45-9781-52148350a3a5,HBCI Commerzbank vormals Dresdner Bank Finance and Controlling,DRESDEFFFCO,,hbci-commerzbank-adapter,50080092,, -67e8d293-9f5a-44d8-a62d-0f1e0d1dbb5b,HBCI Commerzbank vormals Dresdner Bank Zw 99,DRESDEFFI42,,hbci-commerzbank-adapter,50080099,, -7ad8c4f4-661b-43c0-8ce7-3cd56ec1727b,HBCI Commerzbank vormals Dresdner Bank Private Banking Inland,DRESDEFF500,,hbci-commerzbank-adapter,50080300,, -da4eadb8-1d41-4cb0-ad91-cb8cc4a21322,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF502,,hbci-commerzbank-adapter,50083007,, -e090f2c0-83d7-45ff-a9a7-b583a2509a88,HBCI Commerzbank vormals Dresdner Bank in Frankfurt MBP,DRESDEFFMBP,,hbci-commerzbank-adapter,50083838,, -77635484-630b-4ab3-a43e-a0bdb0404cc5,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI01,,hbci-commerzbank-adapter,50089400,, -c07e1f56-0298-45ac-b6bd-9c6eb0b6637d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50540028,, -ccf8f0a1-982e-4bb3-ada4-b8845c96a8f2,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF505,,hbci-commerzbank-adapter,50580005,, -8e40ede0-4898-41d6-b8c8-4a18155858a3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ12,,hbci-commerzbank-adapter,50580085,, -3518a208-95b0-44e3-9cb4-62ead7b6d8f5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50640015,, -01e3dffe-bf33-4a02-9454-1ce126a8aee1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF506,,hbci-commerzbank-adapter,50680002,, -37ff34e1-e669-43a2-9829-fe5b139f969e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54640035,, -da405b31-773e-4630-b3fa-03be8c4fb847,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ13,,hbci-commerzbank-adapter,50680085,, -45453f97-e6e2-445c-ac71-26c973297a45,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM436,,hbci-unicredit-adapter,73120075,, -1137aaec-2841-4ac7-9008-dc8252295209,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50740048,, -a9a3aa51-f59f-4fd2-8747-103abbea4871,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF524,,hbci-commerzbank-adapter,50780006,, -b2386c40-401d-4e48-9fdc-b9c94dbc9b15,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50840005,, -e6493426-7524-43eb-b5ec-3790392f2cde,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF508,,hbci-commerzbank-adapter,50880050,, -cd49da14-43bf-4e02-bcd9-189c10e9eb80,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ14,,hbci-commerzbank-adapter,50880085,, -2cea53f3-1fb6-4e5b-bbd1-d66318ac2e19,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ15,,hbci-commerzbank-adapter,50880086,, -d32409fd-9499-4620-b5e4-497c7413fb1f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51040038,, -078cf98d-fcad-4f85-aeaf-13502322a23e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF510,,hbci-commerzbank-adapter,51080060,, -e0be4a06-08ee-4d9d-878c-03f1f583e333,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ16,,hbci-commerzbank-adapter,51080085,, -9e4d938b-1936-4dc5-a533-dd9c32f68951,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK2,DRESDEFFJ17,,hbci-commerzbank-adapter,51080086,, -9399cc26-eb06-4fbd-b0b7-d14bb07fe50f,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI20,,hbci-commerzbank-adapter,51089410,, -aad32b61-a2ac-44b6-86db-bd67871820ca,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51140029,, -6301fdeb-7c44-45fe-92c2-a7e0c57d0770,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF511,,hbci-commerzbank-adapter,51180041,, -ce75ea61-cda1-4ed4-8a8a-9b0263df3762,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51340013,, -a16b73df-5222-4ea5-9bad-b075d2cf79c8,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51343224,, -d8abf524-407f-47b8-a63a-ed4cd80de15b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF513,,hbci-commerzbank-adapter,51380040,, -6f00239f-0bc7-415e-95be-e25a7aea6c21,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ18,,hbci-commerzbank-adapter,51380085,, -b58b468b-aa8a-479c-bd23-95519db6d2d9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51540037,, -0a8d1c40-6360-4e0b-ae13-fc3748004e3f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF515,,hbci-commerzbank-adapter,51580044,, -1fdfb608-8c5d-4276-84f3-2d50f0be2e5f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51640043,, -1de6f25e-f10c-4dcd-be74-1f67b84a1874,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,52040021,, -2b0eb7b5-75c2-4d66-9332-1e110954dc03,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF520,,hbci-commerzbank-adapter,52080080,, -0c03d84d-9a55-446f-a194-df51979d05b5,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK1,DRESDEFFJ19,,hbci-commerzbank-adapter,52080085,, -4a108ae6-b1e4-403c-a7e2-82eb9ad96352,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,52240006,, -a0f7b000-fb10-4477-ac80-21d22eb432ef,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,53040012,, -57ea1aa1-f088-4451-944f-08d5db89380e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF530,,hbci-commerzbank-adapter,53080030,, -f09dad44-15a1-4d24-af1a-23301bf54a5b,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,53240048,, -1b35b89c-ba07-4741-a06c-e5e8129b4feb,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF532,,hbci-commerzbank-adapter,53280081,, -11aef4fc-dfcf-4451-8b5f-938e86ed4948,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,53340024,, -b5957a70-e4f6-496a-be77-4e35a36934f2,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF533,,hbci-commerzbank-adapter,53380042,, -ff866b36-867c-4fb3-821e-a11d33dd1f9b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF568,,hbci-commerzbank-adapter,53381843,, -eaef8e44-cbb4-4e32-bd8b-2d6045b813e2,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54040042,, -d4feab35-5d66-40c6-931e-4f40219e523d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF540,,hbci-commerzbank-adapter,54080021,, -52121046-301f-4215-bd2f-acf1138926ba,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54240032,, -10c80ddd-90f4-4d75-bda4-f9705d1bb071,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF542,,hbci-commerzbank-adapter,54280023,, -d526710d-e183-4411-92f2-b139b85d69bc,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54540033,, -5e302572-97ed-404a-9637-57965c71ab40,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM236,,hbci-unicredit-adapter,72021271,, -7d704a2c-2499-4346-a7e1-e91f21450a29,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF545,,hbci-commerzbank-adapter,54580020,, -5e18fe55-0399-4aac-a695-a149418a5795,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF546,,hbci-commerzbank-adapter,54680022,, -91d22917-e735-425a-bf7b-a0e653318a0d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,55040022,, -2f7c3af5-e39b-4e48-a8dc-b59d735b489a,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,55040060,, -c0a53218-e5d5-4f35-94ce-ce50101a80a9,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,55040061,, -2cec00af-ee6c-4a89-ac7e-64fd59d18792,HBCI Commerzbank TF MZ 1,COBADEFFXXX,,hbci-commerzbank-adapter,55080044,, -c3f4092a-1d97-4b09-85de-b80c931526ab,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF550,,hbci-commerzbank-adapter,55080065,, -219e2482-9005-4aca-8150-b7af020ff1dc,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ20,,hbci-commerzbank-adapter,55080085,, -ca2cc712-874b-4dd5-8fd0-9ba96ef2cfce,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ21,,hbci-commerzbank-adapter,55080086,, -b9a517bd-fe5e-4c36-bd12-48f5bb957e88,HBCI Commerzbank TF MZ 2,DRESDEFF555,,hbci-commerzbank-adapter,55080088,, -011970a1-bf80-4d74-8cf6-26372fd39299,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,55340041,, -494276e0-3b89-4c9a-819a-0b8daf38db54,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,56240050,, -a2104517-5e17-41d5-9591-106e1c57086d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,57040044,, -66f04040-3780-4f55-aa16-0e1ab4ee1359,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF570,,hbci-commerzbank-adapter,57080070,, -1e6f8aed-abab-4bfb-814e-2fb65135064a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,58540035,, -518ccda9-a932-4cd8-a179-ed31a39caced,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF585,,hbci-commerzbank-adapter,58580074,, -b0b5098a-1f59-4ac7-9f9e-6175111900e7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,59040000,, -f6dcd736-df76-430f-a452-caf5f295e642,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF590,,hbci-commerzbank-adapter,59080090,, -c481219a-94ab-4181-b354-9c6f23b65804,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,60040060,, -2bae600a-48a5-4ba3-ad30-3ce5bb839c08,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,60040061,, -a63f8247-98c6-455a-a5d1-ad966fc33836,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,60040071,, -e3456275-8f71-4c94-9a58-ec77152f0761,HBCI Commerzbank Filiale Stuttgart 2,COBADEFFXXX,,hbci-commerzbank-adapter,60040075,, -e5c86d05-29fd-43c6-8c20-74083628c75c,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF600,,hbci-commerzbank-adapter,60080000,, -e5e7723d-f335-430d-a39c-a68735f970f6,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF608,,hbci-commerzbank-adapter,60080055,, -d056aac8-a7e2-4747-a94c-afc739bf2a51,HBCI Commerzbank vormals Dresdner Bank Gf Zw 57,DRESDEFF609,,hbci-commerzbank-adapter,60080057,, -f1589b50-2b04-4aa3-8e46-8b337fc18689,HBCI Commerzbank vormals Dresdner Bank ITGK 2,DRESDEFFI50,,hbci-commerzbank-adapter,60080085,, -51afc8c3-bfce-4798-a3c9-c9a8e65f0d2b,HBCI Commerzbank vormals Dresdner Bank Gf PCC-ITGK 3,DRESDEFFI54,,hbci-commerzbank-adapter,60080086,, -7bde73db-8ac3-4ffd-b81b-f49db2c7c1bf,HBCI Commerzbank vormals Dresdner Bank PCC DC-ITGK 4,DRESDEFFI57,,hbci-commerzbank-adapter,60080087,, -d50df787-3086-47f1-9003-c5db9cb8831f,HBCI Commerzbank vormals Dresdner Bank PCC DC-ITGK 5,DRESDEFFI58,,hbci-commerzbank-adapter,60080088,, -74509a3b-f124-4d62-83b2-7c64cebd201e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM643,,hbci-unicredit-adapter,70025175,, -0beb3722-3bc9-4779-a5c8-193fb19aa313,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI21,,hbci-commerzbank-adapter,60089450,, -c8564b33-01e2-468d-9524-cd7d783f7c96,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,60241074,, -77e6799f-80db-4ca9-a112-84daaaeb1638,HBCI Commerzbank Sindelfingen,COBADEFFXXX,,hbci-commerzbank-adapter,60340071,, -8ad7bbbf-2f58-41af-a191-3f79344bbac2,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF601,,hbci-commerzbank-adapter,60380002,, -497d7fb6-e5fa-4716-a4ad-764bff66d1b7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,60440073,, -8b29a620-b716-4fa1-87c6-19582296716d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF604,,hbci-commerzbank-adapter,60480008,, -5559f526-68d3-4990-847b-e6718a0aa22a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61040014,, -af8b89d4-a63f-4272-bc06-aaac4a62ef21,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF610,,hbci-commerzbank-adapter,61080006,, -02130304-16b8-4b2c-8f08-e5a4956f0d20,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61140071,, -f973c8a7-85c2-4538-ae1f-c67168ec414a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM259,,hbci-unicredit-adapter,72021876,, -d7633c67-31c1-4fe1-b357-829cdfec6c36,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF611,,hbci-commerzbank-adapter,61180004,, -47ddd92a-0990-45e2-8af2-2b0f66b90458,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61240048,, -3c0ab3f4-bc6b-4674-9f94-6ceb2598c981,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF612,,hbci-commerzbank-adapter,61281007,, -3c304a23-ab6a-403f-96d4-79f6c36e776a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61340079,, -8d8e7384-b951-4403-a0f6-ff1afe5e44ab,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61440086,, -d2621d96-4daa-451d-8884-0654d6075e84,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF614,,hbci-commerzbank-adapter,61480001,, -9f045d03-75db-4850-bf0b-dc6d4d68f15f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,62040060,, -ab940282-20f2-4da0-8565-77774727d115,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF620,,hbci-commerzbank-adapter,62080012,, -e52d3e97-c8bf-4a41-9502-5339becfde90,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,62240048,, -ef887bee-9d56-4c4e-bf4f-7122274711b4,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF622,,hbci-commerzbank-adapter,62280012,, -3add8d04-3059-4c38-8585-250f354a3fb7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,63040053,, -a5558122-7617-4a1d-a665-cfdf97fdd1ce,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF630,,hbci-commerzbank-adapter,63080015,, -00343d42-aea2-4ee0-8034-519f5c2121eb,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI59,,hbci-commerzbank-adapter,63080085,, -ad5a6640-0683-40e0-8c4a-c60933453d95,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM272,,hbci-unicredit-adapter,61420086,, -f26b3ad0-50e6-49ad-b061-b87b66fad3ec,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,63240016,, -9bac3446-7bc2-4876-995a-f2f90f3f9087,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64040033,, -030447be-b39e-4664-a662-41bb45adf012,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64040045,, -47490e3c-709d-4cf2-96ea-d508fbb9f693,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF640,,hbci-commerzbank-adapter,64080014,, -b8f5d3cb-a481-4766-a381-d4ad6ad4d856,HBCI Commerzbank Tübingen,COBADEFFXXX,,hbci-commerzbank-adapter,64140036,, -44d47f06-f790-4ec4-8189-069ad78d443b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF641,,hbci-commerzbank-adapter,64180014,, -6ab13401-1a53-4257-9833-f634cd4fdbf1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64240048,, -1ca2a25f-62c5-4e2c-9f33-adb195760121,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64240071,, -e8942c4b-950d-472c-ac04-327032bdbb5b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM461,,hbci-unicredit-adapter,63020086,, -7d39c6ad-0144-417a-ac0e-b032eb9763e8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM271,,hbci-unicredit-adapter,63220090,, -e3453c2b-0697-44c8-aecd-e760c396e4ef,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM374,,hbci-unicredit-adapter,64020186,, -017d374d-d487-4253-a8d4-c7ddf5a99a64,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM588,,hbci-unicredit-adapter,65020186,, -db607ad8-52a4-41b6-9a6a-458155dc7e38,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM475,,hbci-unicredit-adapter,66020286,, -85d5da2a-0c68-4e7b-abf1-727e7a9ccd2e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM489,,hbci-unicredit-adapter,67020190,, -4484e745-000e-4137-a03a-da9316545a1a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM479,,hbci-unicredit-adapter,67220286,, -d0bcc6d3-30cd-4fea-a590-644527a6c954,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM357,,hbci-unicredit-adapter,68020186,, -5f045273-c8d5-4902-b876-4ef68f05eeb6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM591,,hbci-unicredit-adapter,69020190,, -65bed199-ffb0-4715-845a-45e501d6d2e2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM590,,hbci-unicredit-adapter,69220186,, -63785cbe-8d07-476f-aab1-46d29f370ec1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMMXXX,,hbci-unicredit-adapter,70020270,, -25d9b9c2-2e34-43b3-8fc9-83d6b95026fe,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM654,,hbci-unicredit-adapter,70320090,, -8f5fa8d8-c12c-4c5d-9938-77faed63f942,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM466,,hbci-unicredit-adapter,70321194,, -ebb4bd3c-29d0-4321-8226-b6231b6c2ee6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM410,,hbci-unicredit-adapter,71020072,, -9ed39761-80fa-4cbb-85c4-29416e4b59db,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM629,,hbci-unicredit-adapter,71021270,, -90e3c389-f7fc-4f98-b57d-7f3ea9cad227,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM453,,hbci-unicredit-adapter,71022182,, -6034d8de-4423-483b-9180-99a1715c9f62,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM632,,hbci-unicredit-adapter,71023173,, -5a07cab0-322c-4fd6-aa3d-ad13ae82bda6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM448,,hbci-unicredit-adapter,71120077,, -397c8d35-da89-4b8e-8f44-c50fb0d29d6b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM644,,hbci-unicredit-adapter,71120078,, -1f010fd6-be9b-4f65-8d07-99d656db0fa6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM438,,hbci-unicredit-adapter,71121176,, -36028ee9-f2cb-4a51-b544-4b3807b08581,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM457,,hbci-unicredit-adapter,71122183,, -dc045b60-de5b-4398-92e2-713d0034c79b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM426,,hbci-unicredit-adapter,72120078,, -ea6e6c75-19a0-497d-8862-50b52f3edbe0,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM665,,hbci-unicredit-adapter,72122181,, -5f22d979-4b2d-49dd-be92-c0d2189b7091,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM255,,hbci-unicredit-adapter,72220074,, -a231f304-31cc-413a-8b2f-896ce60ef0a7,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM263,,hbci-unicredit-adapter,72223182,, -2102a75a-7eef-42a7-879d-0815529ad91e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM428,,hbci-unicredit-adapter,73320073,, -876d27a7-e04c-4239-bf5b-3593dad653c1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM567,,hbci-unicredit-adapter,73321177,, -ba25595f-0a6a-44b3-8c9a-c7579ca07da1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM570,,hbci-unicredit-adapter,73322380,, -b328ac0f-7b10-46d9-b9c6-529f8fc83822,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM427,,hbci-unicredit-adapter,73420071,, -c6452c40-c750-4b4a-a984-fa183dd18c02,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM666,,hbci-unicredit-adapter,73421478,, -29f6d0c2-b3c2-45cc-80ae-8b8fec3ff0cd,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM445,,hbci-unicredit-adapter,74020074,, -4d96129c-945f-4501-8556-0cac28e393de,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM415,,hbci-unicredit-adapter,74120071,, -9ff8692e-ad9d-42b2-9528-ea8664922734,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM452,,hbci-unicredit-adapter,74220075,, -e1d37616-8ee4-4573-9943-343f04b4db9a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM675,,hbci-unicredit-adapter,74221170,, -3129449f-6d76-4494-a871-d5f5281c104a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM433,,hbci-unicredit-adapter,74320073,, -5afd2fe6-aec2-4000-a73c-95d99333f9f5,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM447,,hbci-unicredit-adapter,75020073,, -4591eb5b-8822-47eb-ba86-2e23a6234357,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM804,,hbci-unicredit-adapter,75021174,, -47ffa4ca-9195-4ade-b5b2-115e61df970d,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM405,,hbci-unicredit-adapter,75220070,, -94ee739b-5d1e-4ab8-b08d-7a6a24862f88,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM454,,hbci-unicredit-adapter,75320075,, -649164ca-6572-4a79-8300-0e3f2e571d08,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM460,,hbci-unicredit-adapter,76020070,, -99cf7674-1036-45b5-9ed1-d806713254f0,HBCI UniCredit Bank - HypoVereinsbank Prepaid Card,HYVEDEMMCAR,,hbci-unicredit-adapter,76020099,, -3a74b851-2534-4efb-a9a3-2f43340ae169,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM419,,hbci-unicredit-adapter,76220073,, -136ba7e9-5943-48cf-904f-87ac55831fce,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM417,,hbci-unicredit-adapter,76320072,, -418901e0-858b-4d4f-ba5c-0a94edd227db,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM065,,hbci-unicredit-adapter,76420080,, -64e85ecc-76a0-4820-bfd2-68935ab6a5b3,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM406,,hbci-unicredit-adapter,76520071,, -40c0670e-f4c0-4bcc-ace0-88db6de3610b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM411,,hbci-unicredit-adapter,77020070,, -5427a0d1-202a-488f-b09e-4e9965df3330,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM289,,hbci-unicredit-adapter,77120073,, -b3bf6bdc-60f6-41c1-be40-5961fb35dafb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66440084,, -514309b3-ebf7-4418-aaa6-944d602cd5f6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66640035,, -141ac038-2f0f-49de-94ab-29ead541e26e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF666,,hbci-commerzbank-adapter,66680013,, -76c9e974-df25-4658-a521-e96279021fc6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,67040031,, -003a6095-2324-4a54-ab69-6138c333646c,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,67040060,, -31e282eb-9b76-424a-9ac9-03bd491f7e0e,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,67040061,, -3a3cd4de-b126-43cd-80d0-009cc5e8bfb6,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,67040085,, -1347b493-393b-4e2e-a14a-9d80d0d0d399,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF670,,hbci-commerzbank-adapter,67080050,, -b02ac401-d222-4e95-ab1a-dad552c42610,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI60,,hbci-commerzbank-adapter,67080085,, -e35bdde9-6f64-4d1b-8f6e-bed6d07096f5,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI61,,hbci-commerzbank-adapter,67080086,, -b023641f-41ed-4386-a450-2eb87fba941c,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI22,,hbci-commerzbank-adapter,67089440,, -7af2c50e-eb4f-4502-abe7-4f56227909d5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,67240039,, -974ebfe6-ee42-47ed-ab9e-ebb8e7c919d1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF672,,hbci-commerzbank-adapter,67280051,, -f183658f-b875-4e24-bfba-0e3f1260cfd9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,68040007,, -3928fa65-8641-41bb-a6a3-1a1902f299e8,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF680,,hbci-commerzbank-adapter,68080030,, -e0c8dd75-f18d-4289-b72f-e21bebcef588,HBCI Commerzbank vormals Dresdner Bank Zw Münsterstraße,DRESDEFFI44,,hbci-commerzbank-adapter,68080031,, -2f1e9ae5-ef03-470c-8eac-d27dd531045e,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI62,,hbci-commerzbank-adapter,68080085,, -705096a9-8285-4d65-823a-3f97dbe906ed,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ22,,hbci-commerzbank-adapter,68080086,, -dee61653-8c29-4f99-89af-29520504dd3a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,68340058,, -b6b4b399-14b9-4434-bf11-fb99376a4f2f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,69040045,, -5f9a1a58-1f61-4ae8-b8eb-076166e98534,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,69240075,, -8226abff-2f1b-4833-97f8-0367735f3765,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF692,,hbci-commerzbank-adapter,69280035,, -f54a69e6-0fca-43e6-84c8-3a8c6b406d6e,HBCI Commerzbank Villingen u Schwenningen,COBADEFFXXX,,hbci-commerzbank-adapter,69440007,, -a225e2ae-9f67-4ea3-9bd6-2ca1a8817d7c,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,69440060,, -08275d5c-3a28-4511-94dd-160aefbe6786,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,70040041,, -182b25e7-13fc-49a8-a54b-2997fa4e0450,HBCI Commerzbank Filiale München 2,COBADEFFXXX,,hbci-commerzbank-adapter,70040045,, -9f3b07a4-0cf0-497a-8560-3eeb878c945d,HBCI Commerzbank GF-M48,COBADEFFXXX,,hbci-commerzbank-adapter,70040048,, -04b212b1-e839-4ed2-b30c-d4c48971d19f,HBCI Commerzbank Gf 860,COBADEFFXXX,,hbci-commerzbank-adapter,70040060,, -31d44faa-dbf5-4441-aa10-a8c87f97671c,HBCI Commerzbank Gf 861,COBADEFFXXX,,hbci-commerzbank-adapter,70040061,, -15d53050-c769-44de-a8ac-565d3dd71aeb,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,70040062,, -da0f7268-d00c-46cc-9f07-d34cb87036b8,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,70040063,, -80f8edcc-3341-4264-8b42-c42bf3f41c8b,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,70040070,, -7d5c9fb0-94d5-4073-bcd1-d61681153dd0,HBCI Commerzbank Service-BZ,COBADEFFXXX,,hbci-commerzbank-adapter,70045050,, -868a8291-8232-4cbe-9c04-6b4e63d85565,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF700,,hbci-commerzbank-adapter,70080000,, -076f2d48-73bd-4920-91b1-edc4dab7eef8,HBCI Commerzbank vormals Dresdner Bank Zw 56,DRESDEFF714,,hbci-commerzbank-adapter,70080056,, -8e80ec9a-bfba-4fb8-9b6d-e6612b2ff040,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF724,,hbci-commerzbank-adapter,70080057,, -7c676efe-4165-48b8-8ada-8c4f98a9b784,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 3,DRESDEFFI55,,hbci-commerzbank-adapter,70080085,, -546c985e-2537-4ec6-bd43-b911fa55a7f1,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFJ23,,hbci-commerzbank-adapter,70080086,, -346e5e41-70d8-454a-9314-1374c1916094,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFJ24,,hbci-commerzbank-adapter,70080087,, -962f739a-22f1-4bdc-a6d3-32d0e94ac6a9,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFJ25,,hbci-commerzbank-adapter,70080088,, -169018ea-d844-4d7c-a134-04faee8cee56,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM412,,hbci-unicredit-adapter,77320072,, -e9a90043-e80f-420d-aebf-3ce20e7c2b85,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF643,,hbci-commerzbank-adapter,64380011,, -5ed0bcd8-b0c5-407b-b3fe-503cc01e2695,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65040073,, -8e762cb9-e42b-4517-bffe-7132038af102,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF650,,hbci-commerzbank-adapter,65080009,, -933c9527-3e96-4230-ac6f-ee840fd90a67,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65140072,, -aaa82a8b-c81d-4c45-ad54-802607e553f6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF651,,hbci-commerzbank-adapter,65180005,, -0e5ce5b4-653b-4b35-b12d-24b72bf14bdd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65340004,, -e79d5013-6641-4076-a6a0-4c1a18ddb1c8,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65341204,, -ba49e33d-2e22-46eb-8a05-8841bfd2ec74,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF653,,hbci-commerzbank-adapter,65380003,, -a42b46ea-9a6d-41f5-a238-3097067c8c73,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65440087,, -48284f26-a321-4e6f-9a4e-d32f3fffc3b1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66040018,, -0261e809-85f1-4ee5-8a33-870dfa711f60,HBCI Commerzbank/Kreditcenter Badenia,COBADEFFXXX,,hbci-commerzbank-adapter,66040026,, -e3f3b0c6-ffea-48c8-a476-7cf3ed4b6f73,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF660,,hbci-commerzbank-adapter,66080052,, -7d8fa0eb-bc87-4ee9-ae8d-15991074e175,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66240002,, -dea8cd88-fe81-4fe7-b37c-fe3a26dcd48d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF662,,hbci-commerzbank-adapter,66280053,, -aa628e5e-748b-4fa8-9c56-c09a56544724,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66340018,, -c86b8281-10c7-4ac3-a7fe-d4f950b64964,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI23,,hbci-commerzbank-adapter,70089470,, -66ebc86a-6838-4a0f-994b-2eadd486bbdb,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI45,,hbci-commerzbank-adapter,70089472,, -ebe2d9ff-4e4e-4d29-b9b4-874443c46dac,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF703,,hbci-commerzbank-adapter,70380006,, -a88e95b4-82f8-4a82-87f0-b26941a9a48f,HBCI Commerzbank Rosenheim,COBADEFFXXX,,hbci-commerzbank-adapter,71140041,, -b58479e3-8d4e-4613-8094-6dcb3177de77,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,71141041,, -414d98c0-e79e-4489-a2e9-30ee2b9a6f94,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,71142041,, -15e20955-64c8-4be1-865b-bde879a9272b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF711,,hbci-commerzbank-adapter,71180005,, -e6e49810-265d-49ca-b982-20a8f01bdde7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,72040046,, -88574d2a-7842-4ff7-a696-85bd0142629a,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF720,,hbci-commerzbank-adapter,72080001,, -86fcf425-943b-463e-9efc-1e707d0278a2,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,72140052,, -743ac60e-3000-4cc5-83bf-d457ca97bb46,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF721,,hbci-commerzbank-adapter,72180002,, -ccf58c02-1aee-490b-8e7c-920ae5660c7f,HBCI Commerzbank Memmingen,COBADEFFXXX,,hbci-commerzbank-adapter,73140046,, -0a8efc79-37b5-4eb5-96db-bdf3c134c979,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF731,,hbci-commerzbank-adapter,73180011,, -f4b2b4a2-b398-440c-b111-03d3ff8acbb9,HBCI Commerzbank Kempten Allgäu,COBADEFFXXX,,hbci-commerzbank-adapter,73340046,, -ce32d25e-1d34-4cd2-8a63-d9057898a4d6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF733,,hbci-commerzbank-adapter,73380004,, -057bb26a-1380-48e6-88d5-0599d52ce79d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,73440048,, -ba918708-6db8-4943-969a-0d243f22c830,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF734,,hbci-commerzbank-adapter,73480013,, -034d4248-ef5e-4815-a845-fbf7237e871e,HBCI Commerzbank Passau,COBADEFFXXX,,hbci-commerzbank-adapter,74040082,, -9352a221-4dda-4903-920f-cb7922fc2531,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,74140048,, -8023bebb-5ba3-4925-a188-e53d663e57c1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF741,,hbci-commerzbank-adapter,74180009,, -2c343eb4-345e-4d59-814e-c23f300e72f6,HBCI Commerzbank Straubing,COBADEFFXXX,,hbci-commerzbank-adapter,74240062,, -3f66e7db-bdb1-46ef-81bb-e051fc4f0cb9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,74340077,, -0ba51481-c468-408b-88b2-b825189e29df,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF743,,hbci-commerzbank-adapter,74380007,, -a6a2b7f3-b810-4e5a-ad5f-147fbc44e170,HBCI Commerzbank Regensburg,COBADEFFXXX,,hbci-commerzbank-adapter,75040062,, -4150b143-9c05-42ee-bc83-006504373a6e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF750,,hbci-commerzbank-adapter,75080003,, -9d90b984-4086-4b44-b47d-90a1924dca60,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,75240000,, -e34fc3eb-2ef2-464f-8af9-d2f50adb60af,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,75340090,, -eaec714f-bd9e-4fb7-97b9-34a118b49c56,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,76040060,, -60e9f76d-aa93-4eca-8ed3-88de472b581a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,76040061,, -6f23ef71-d67e-4853-bfeb-734e98fb7edf,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,76040062,, -d235b575-e37b-4365-9101-73de5c943164,HBCI Commerzbank Filiale Nürnberg 2,COBADEFFXXX,,hbci-commerzbank-adapter,76040065,, -8ed9a238-2cb5-4e9a-9201-81473aaf4854,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF760,,hbci-commerzbank-adapter,76080040,, -03b1f3e5-ac35-4d57-a8a1-3b77ccc96e57,HBCI Commerzbank vormals Dresdner Bank Zw 53,DRESDEFFAGI,,hbci-commerzbank-adapter,76080053,, -0476e7c7-3dcd-4fb5-ae48-673922984756,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFFI25,,hbci-commerzbank-adapter,76080055,, -2a312088-b0b0-430f-aa38-0d6b89abac29,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ26,,hbci-commerzbank-adapter,76080085,, -74c09189-e5f2-44d3-b932-e46295b916cf,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ27,,hbci-commerzbank-adapter,76080086,, -e1ff1fbb-9e53-4982-b1e2-58a3cec02ea2,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI24,,hbci-commerzbank-adapter,76089480,, -14a35a82-15d3-43e2-8cfd-8ff2be231c14,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI46,,hbci-commerzbank-adapter,76089482,, -cc6a2a15-ff6b-45f3-a3a9-901d389aa4eb,HBCI Commerzbank Fürth Bayern,COBADEFFXXX,,hbci-commerzbank-adapter,76240011,, -133a6fa5-98f1-41c9-a69e-7d1287532d03,HBCI Commerzbank Erlangen,COBADEFFXXX,,hbci-commerzbank-adapter,76340061,, -453809d0-8eeb-4a6b-ab50-731a6b75e8eb,HBCI Commerzbank Bamberg,COBADEFFXXX,,hbci-commerzbank-adapter,77040080,, -ad642f19-3993-4bdb-8b3a-8bb3bae2bc18,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,77140061,, -9f4a6b6e-5b06-4566-85f8-b9b6e8991d96,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,77340076,, -7a98fd1b-6aa0-4cce-afb2-c49198837968,HBCI Commerzbank Hof Saale,COBADEFFXXX,,hbci-commerzbank-adapter,78040081,, -c2e7ca0c-fb57-4819-b771-23ab996a8248,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,78140000,, -e9f9162c-0806-4cba-95c7-f5fdf47ac662,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,78340091,, -dca1c28d-aa36-425b-bda0-974409eda33d,HBCI Commerzbank Würzburg,COBADEFFXXX,,hbci-commerzbank-adapter,79040047,, -251186ed-4cc8-493c-9db5-8c79974c1412,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF790,,hbci-commerzbank-adapter,79080052,, -f21d9765-d6d7-46e2-af33-49535c70e620,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ28,,hbci-commerzbank-adapter,79080085,, -70502f7a-7f5f-450d-bbc5-c1a42dd28f89,HBCI Commerzbank Schweinfurt,COBADEFFXXX,,hbci-commerzbank-adapter,79340054,, -fcd3869e-389f-4cf7-80db-9fcfb1e9f8ab,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF793,,hbci-commerzbank-adapter,79380051,, -458c32ca-99e2-4aa5-a8ac-10401abe51fd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,79540049,, -634231fb-a8ca-49cb-888f-c291d8a294bb,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF795,,hbci-commerzbank-adapter,79580099,, -15153556-3d11-460f-8ee0-aeb8446510ec,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI47,,hbci-commerzbank-adapter,79589402,, -ca369842-38f3-447f-accb-866400945288,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,80040000,, -1e8872bb-e710-4d65-baa2-6110e90a80c0,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF800,,hbci-commerzbank-adapter,80080000,, -5c0d9091-4763-4390-86fe-ba2dce049dff,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,81040000,, -1815db9b-0dff-4f87-af3b-8d490d6103ad,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF810,,hbci-commerzbank-adapter,81080000,, -0b55b44d-e209-42fe-baf1-919c98615dfb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,82040000,, -cd218d59-24ac-4c5f-a187-033234ad9504,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,82040085,, -8a039af8-910b-461b-8bb3-24104874b932,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF827,,hbci-commerzbank-adapter,82080000,, -e73b5183-81bb-4cc3-941b-0520e7665e90,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,83040000,, -fbce607b-4cb9-4a74-9655-567a4abecd63,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF830,,hbci-commerzbank-adapter,83080000,, -f2b7348c-9d58-4c64-869b-46fa2e33d3db,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,84040000,, -11b62331-952c-4139-a5e7-bfa65351b8a3,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF843,,hbci-commerzbank-adapter,84080000,, -11d687d5-89ab-4da9-b4af-26a34d5a6238,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,85040000,, -2802e3b7-8f5b-4d5e-a3f0-fa5a6f225e43,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,85040060,, -dca84725-2d30-48c5-8d6b-13d489e0feea,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,85040061,, -0c832e23-b15f-4f57-9663-84b81b80ac8f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF850,,hbci-commerzbank-adapter,85080000,, -07562339-df24-4b55-8415-3b08c53b1575,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ29,,hbci-commerzbank-adapter,85080085,, -ea1ce7e7-813c-4a04-99ab-2b532422406e,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ30,,hbci-commerzbank-adapter,85080086,, -20fab773-04c2-4dca-abf2-cffe0419565e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF857,,hbci-commerzbank-adapter,85080200,, -f1a8792a-0695-4438-98a2-8d3ccf787e95,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI15,,hbci-commerzbank-adapter,85089270,, -edf11683-81d1-483e-b351-d2b4b1117f3c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,86040000,, -98d3661f-1397-4c5b-a794-22c6b3ac4f8a,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,86040060,, -370d348c-fe99-4f82-8a46-463a19864ec6,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,86040061,, -81dace17-837a-4fdd-8979-61923b08ac28,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF860,,hbci-commerzbank-adapter,86080000,, -fe2dd8b6-7717-4b7d-bdbe-408c20ac5a72,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF862,,hbci-commerzbank-adapter,86080055,, -14ffcacc-20f9-4c0c-8237-95ea436a3c24,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF867,,hbci-commerzbank-adapter,86080057,, -3df06929-2590-486c-b2ec-efcf79ec903c,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ31,,hbci-commerzbank-adapter,86080085,, -c8c2ea97-3c64-45a4-9e4d-3ef418cd16ff,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ32,,hbci-commerzbank-adapter,86080086,, -110e6733-69ac-4031-a0a7-725e281d1421,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI16,,hbci-commerzbank-adapter,86089280,, -11659cbf-c1df-4b79-8c4b-507be263d79d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,87040000,, -130a1a24-ca76-42a1-963f-407a470dd949,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF870,,hbci-commerzbank-adapter,87080000,, -26bd94a3-2bfd-4834-a58f-d82579960cec,HBCI Consors Finanz BNP Paribas S.A. Niederlassung Deutschland,WKVBDEM1XXX,,hbci-verlag-adapter,70020300,, -40ecd5c1-85fc-4210-aa86-681d8c0c738b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM483,,hbci-unicredit-adapter,54520194,, -f0521f36-379a-4ebd-a43c-2986111f768d,HBCI TARGOBANKi AG,CMCIDEDDXXX,,hbci-verlag-adapter,30020900,, -72caaae6-dbca-4aa4-a5eb-a960db5d9e08,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM620,,hbci-unicredit-adapter,54620093,, -80e0bf5c-8806-481c-a2f5-ebce9b4ad4a1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM486,,hbci-unicredit-adapter,55020486,, -75adc84d-1a13-484f-9cfe-fd26c809b45c,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM515,,hbci-unicredit-adapter,56020086,, -cade3daa-9db4-4f0c-8baa-569ce28e2903,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM401,,hbci-unicredit-adapter,57020086,, -a15e6257-3757-4715-83fb-b0ed471133d9,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM437,,hbci-unicredit-adapter,58520086,, -dafe9d87-d467-461e-892f-f0d2611706b1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM432,,hbci-unicredit-adapter,59020090,, -2a65f2b0-f3b3-46a5-a426-540f3bd4cf73,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM838,,hbci-unicredit-adapter,59320087,, -ff4308f7-6b95-427e-a600-8807454622df,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM473,,hbci-unicredit-adapter,60020290,, -819bb24b-6824-40b1-bf18-d3a34537c628,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM858,,hbci-unicredit-adapter,60320291,, -c6c648ec-b2bc-49f0-bca7-3e762717dbe2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM860,,hbci-unicredit-adapter,60420186,, -685011c4-5df4-4d33-a411-2b9f08ee73e8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM859,,hbci-unicredit-adapter,61120286,, -a35f2b30-0394-4f2a-a6f4-0bd288d0cc3a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM424,,hbci-unicredit-adapter,78020070,, -935a30df-ce75-4111-baf7-58b7f7244ce3,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM480,,hbci-unicredit-adapter,78320076,, -f776345c-1499-4648-855e-36b83379e461,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM455,,hbci-unicredit-adapter,79020076,, -039fcbaf-a74c-45ed-b863-0bed9bf33d43,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM451,,hbci-unicredit-adapter,79320075,, -2ce97dfb-f37c-4883-8f6a-7da659c847eb,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM407,,hbci-unicredit-adapter,79520070,, -18b2d1fe-0c92-4cd3-9801-62134ae96e83,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM440,,hbci-unicredit-adapter,80020086,, -344c086b-6dd5-458d-b888-4371470cfbc8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM462,,hbci-unicredit-adapter,80020087,, -766c6449-d089-4fd4-b066-27ced020cf3f,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM498,,hbci-unicredit-adapter,82020086,, -45876e24-a07d-421e-ae7c-73c2c0b5a4df,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM098,,hbci-unicredit-adapter,82020087,, -d388ff2e-60f8-4c73-b68c-e92a8c8f3ba2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM824,,hbci-unicredit-adapter,82020088,, -ece9104b-fe6f-45fc-8178-b85c358faab4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM468,,hbci-unicredit-adapter,83020086,, -2e6caec8-4789-4a93-8739-364211020435,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM463,,hbci-unicredit-adapter,83020087,, -dfb11947-7f5b-45a7-87f3-972dfd042f0c,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM484,,hbci-unicredit-adapter,83020088,, -7e546a23-6999-4008-9e10-5d9d0b5f7ae1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM458,,hbci-unicredit-adapter,84020087,, -7b82315a-238f-4feb-96c9-9a89a72d5ae6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM496,,hbci-unicredit-adapter,85020086,, -5af72aaa-eb90-44e7-9da9-57f18604b7b1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM495,,hbci-unicredit-adapter,86020086,, -31513d29-2be8-4ab4-9ab0-73c78b797fa2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM497,,hbci-unicredit-adapter,87020086,, -a800c4de-1953-4cf6-a585-4fda3730e76a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM481,,hbci-unicredit-adapter,87020087,, -da111c00-50ac-4111-a383-7269942baa39,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM441,,hbci-unicredit-adapter,87020088,, -677e6ddb-6b1f-40ff-8e37-7b958100f69d,HBCI Berliner Sparkasse,BELADEBEXXX,,hbci-sparkasse-adapter,10050000,, -7a75eb48-050a-4f53-ac45-30b3c3780e8c,HBCI S-Kreditpartner,,,hbci-sparkasse-adapter,10050020,, -7af335fb-63db-49a3-a466-8fc8f1504455,HBCI Weberbank,,,hbci-sparkasse-adapter,10120100,, -632ca6f5-42e0-49ab-876a-ba2c09876edf,HBCI OstseeSparkasse Rostock,NOLADE21ROS,,hbci-sparkasse-adapter,13050000,, -aab6dda7-27ce-4aab-88ce-657b005032d7,HBCI SPK Mecklenburg-Nordwest,NOLADE21WIS,,hbci-sparkasse-adapter,14051000,, -aec9df15-3e40-4c74-b89d-80c9197f4331,HBCI SPK Parchim-Lübz,NOLADE21PCH,,hbci-sparkasse-adapter,14051362,, -c97d0a0a-9ec4-4145-bb7b-67caf33a0bb6,HBCI SPK Emden,BRLADE21EMD,,hbci-sparkasse-adapter,28450000,, -6045e91f-f044-4b18-af0f-815543eddbb1,HBCI SPK Mecklenburg-Schwerin,NOLADE21LWL,,hbci-sparkasse-adapter,14052000,, -c464b583-0f94-4791-ba71-4a7fecb0f1dd,HBCI Müritz-Sparkasse,NOLADE21WRN,,hbci-sparkasse-adapter,15050100,, -9eff305c-2f37-47c8-b188-0a2e75a6ec86,HBCI SPK Neubrandenburg-Demmin,NOLADE21NBS,,hbci-sparkasse-adapter,15050200,, -468a0aaf-5922-4cd5-92cf-54ef0d7fa493,HBCI SPK Uecker-Randow,NOLADE21PSW,,hbci-sparkasse-adapter,15050400,, -6b5993be-eb5e-4c04-a9a5-504500e8c799,HBCI SPK Vorpommern,NOLADE21GRW,,hbci-sparkasse-adapter,15050500,, -a2a85c7b-d915-4a52-9136-6ec14936f118,HBCI SPK Mecklenburg-Strelitz,NOLADE21MST,,hbci-sparkasse-adapter,15051732,, -dd2c6079-5882-4ab5-bba1-15e49593aad4,HBCI Mittelbrandenburgische SPK in Potsdam,WELADED1PMB,,hbci-sparkasse-adapter,16050000,, -91ee280b-8310-4d7f-90fb-92e54f884fd3,HBCI SPK Prignitz,WELADED1PRP,,hbci-sparkasse-adapter,16050101,, -cb90454e-0a37-4ded-b0f0-104e511959b6,HBCI SPK Ostprignitz-Ruppin,WELADED1OPR,,hbci-sparkasse-adapter,16050202,, -451c8761-612d-4347-8f2f-83f142b36ff0,HBCI SPK Barnim,WELADED1GZE,,hbci-sparkasse-adapter,17052000,, -228c961f-f829-4f51-b9f4-c3a9b357ecd6,HBCI SSK Schwedt,WELADED1UMX,,hbci-sparkasse-adapter,17052302,, -7d7fd3ab-543b-48db-be3f-a9ae85efde81,HBCI KSK Märkisch-Oderland,WELADED1MOL,,hbci-sparkasse-adapter,17054040,, -fa09b267-8895-47a1-80f8-4a3f35836cbd,HBCI SPK Oder-Spree,WELADED1LOS,,hbci-sparkasse-adapter,17055050,, -4a8b3b13-253c-4949-a9fe-484f8f0e0619,HBCI SPK Uckermark,WELADED1UMP,,hbci-sparkasse-adapter,17056060,, -fec88c66-968d-43f2-9a02-efbcab973080,HBCI SPK Spree-Neiße,WELADED1CBN,,hbci-sparkasse-adapter,18050000,, -d0a66abf-9a26-4884-a582-9339ad6c027f,HBCI SPK Elbe-Elster,WELADED1EES,,hbci-sparkasse-adapter,18051000,, -5ace721c-e992-4a70-b642-19aa0ac214aa,HBCI SPK Niederlausitz,WELADED1OSL,,hbci-sparkasse-adapter,18055000,, -4f014e48-b452-40ee-8302-9576117576ee,HBCI Hamburger Sparkasse,HASPDEHHXXX,,hbci-sparkasse-adapter,20050550,, -3756c9f9-ff8e-4dcb-a726-76a90b8734e0,HBCI SPK Harburg-Buxtehude,NOLADE21HAM,,hbci-sparkasse-adapter,20750000,, -63ee8d8a-c7d2-4330-a20a-524e6998d257,HBCI Förde SPK,NOLADE21KIE,,hbci-sparkasse-adapter,21050170,, -696b12cd-ee6d-45b9-bdec-d9e30fcdf739,HBCI Bordesholmer Sparkasse AG,NOLADE21BOR,,hbci-sparkasse-adapter,21051275,, -b3a2df3b-af9c-4dbe-8975-a75299f06102,HBCI SPK Holstein,NOLADE21HOL,,hbci-sparkasse-adapter,21352240,, -258d54dd-4690-4558-864a-d7544a7f80e3,HBCI SPK Mittelholstein AG,NOLADE21RDB,,hbci-sparkasse-adapter,21450000,, -9c6968b0-8192-4d4a-b1d9-87b0d97aa080,HBCI Nord-Ostsee SPK,NOLADE21NOS,,hbci-sparkasse-adapter,21750000,, -3b5f2e56-b4a1-4fd9-8204-81bb01123b76,HBCI SPK Elmshorn,NOLADE21ELH,,hbci-sparkasse-adapter,22150000,, -53d7b313-44b6-4100-b8d0-4479772d6cc0,HBCI SSK Wedel,NOLADE21WED,,hbci-sparkasse-adapter,22151730,, -687966bf-b0b8-4260-b768-46dab8f3475d,HBCI SPK Westholstein,NOLADE21WHO,,hbci-sparkasse-adapter,22250020,, -88a31076-23ac-4a8f-861b-20fedda602fe,HBCI SPK zu Lübeck AG,NOLADE21SPL,,hbci-sparkasse-adapter,23050101,, -56cfc4f9-b604-4701-ac9e-9361fdc981b1,HBCI SPK Südholstein,NOLADE21SHO,,hbci-sparkasse-adapter,23051030,, -9abd4025-a32c-4907-8d5a-aa18a7b142da,HBCI KSK Herzogtum Lauenburg,NOLADE21RZB,,hbci-sparkasse-adapter,23052750,, -094c5f02-346f-48e7-8197-da71cf795ee9,HBCI SPK Lüneburg,NOLADE21LBG,,hbci-sparkasse-adapter,24050110,, -2c7b5541-68ef-48b0-8a43-93539688fe5d,HBCI SSK Cuxhaven,BRLADE21CUX,,hbci-sparkasse-adapter,24150001,, -61d7778f-e5ae-4746-bab4-490cdd349023,HBCI SPK Stade - Altes Land,NOLADE21STS,,hbci-sparkasse-adapter,24151005,, -b2f99dcd-b2ea-45ab-ae9e-efadd9c12163,HBCI KSK Stade,NOLADE21STK,,hbci-sparkasse-adapter,24151116,, -addc7975-a5c2-4fc2-aba6-a14c5adeeed8,HBCI SPK Rotenburg Osterholz,BRLADE21ROB,,hbci-sparkasse-adapter,24151235,, -60afa64c-a45a-44b4-ab9f-1ab4dfecdcd9,HBCI Spar- und Bauverein,,,hbci-sparkasse-adapter,25007957,, -f4751381-966b-4ca3-8229-cddc6bb79f02,HBCI NORD/LB,,,hbci-sparkasse-adapter,25050000,, -265dd71c-9dfb-4304-9c33-0643dc6217e5,HBCI Investitionsbank Sachsen-Anhalt,,,hbci-sparkasse-adapter,25050002,, -0674a71a-2f70-45e1-b8d1-d210cb33f424,HBCI Landesförderinst. Mecklenburg-Vorpommern,,,hbci-sparkasse-adapter,25050003,, -236c9455-c27f-403a-89b8-8e53724a6ce8,HBCI Investitionsbank Sachsen-Anhalt,,,hbci-sparkasse-adapter,25050064,, -cd44f729-e6e4-4346-89db-ba6131d9f7ef,HBCI SPK Hannover,SPKHDE2HXXX,,hbci-sparkasse-adapter,25050180,, -04618d34-ad50-462a-969b-b23ccef01985,HBCI SSK Barsinghausen,NOLADE21BAH,,hbci-sparkasse-adapter,25151270,, -6f752ecf-0820-4049-89f3-522961f45b4f,HBCI SSK Burgdorf,NOLADE21BUF,,hbci-sparkasse-adapter,25151371,, -41f30948-6a47-44c6-bbe5-2fb23ce74d45,HBCI KSK Walsrode,NOLADE21WAL,,hbci-sparkasse-adapter,25152375,, -88de2bec-5134-4002-a17e-9ee2fd2602ec,HBCI SSK Wunstorf,NOLADE21WST,,hbci-sparkasse-adapter,25152490,, -3dd86d4f-e81a-4ef7-a243-510b18d5f5f3,HBCI SPK Hameln-Weserbergland,NOLADE21SWB,,hbci-sparkasse-adapter,25450110,, -8405ce99-cc54-4b30-94ea-e96d5aef989f,HBCI SSK Bad Pyrmont,NOLADE21PMT,,hbci-sparkasse-adapter,25451345,, -f30cbbd0-f80a-495f-9956-fc8ff7975653,HBCI SPK Schaumburg,NOLADE21SHG,,hbci-sparkasse-adapter,25551480,, -4230214c-7080-4428-a589-21ddaccdf650,HBCI SPK Nienburg,NOLADE21NIB,,hbci-sparkasse-adapter,25650106,, -17c31e2f-4f6c-4c38-a48e-a8a6a997907f,HBCI KSK Grafschaft Diepholz,BRLADE21DHZ,,hbci-sparkasse-adapter,25651325,, -6da92e5f-a272-4d61-82c7-77b9845885e7,HBCI SPK Celle,NOLADE21CEL,,hbci-sparkasse-adapter,25750001,, -477b19f7-d453-453b-a6be-b50f2266a0ac,HBCI SPK Uelzen Lüchow-Dannenberg,NOLADE21UEL,,hbci-sparkasse-adapter,25850110,, -1692550b-b99b-4398-bcd7-f3ef55fd58ee,HBCI KSK Soltau,NOLADE21SOL,,hbci-sparkasse-adapter,25851660,, -653612a3-3f46-4009-868d-2a76545de809,HBCI SPK Hildesheim Goslar Peine,NOLADE21HIK,,hbci-sparkasse-adapter,25950130,, -e7253c67-c6b0-4421-a070-42728f3c8794,HBCI SPK Göttingen,NOLADE21GOE,,hbci-sparkasse-adapter,26050001,, -5c9afdbc-1e39-4422-9d2f-cf170a973d0f,HBCI SPK Duderstadt,NOLADE21DUD,,hbci-sparkasse-adapter,26051260,, -41f9eb28-3108-48e5-ad85-0cbe6a1da87c,HBCI SPK Münden,NOLADE21HMU,,hbci-sparkasse-adapter,26051450,, -036cca1e-f3b3-4c06-aa30-edebbcb814ef,HBCI KSK Northeim,NOLADE21NOM,,hbci-sparkasse-adapter,26250001,, -16eb3b36-89f9-42ac-9dd3-6ec152f52281,HBCI SPK Einbeck,NOLADE21EIN,,hbci-sparkasse-adapter,26251425,, -f053ee53-857d-4e5f-a907-a253fccc7f91,HBCI SPK Osterode am Harz,NOLADE21HZB,,hbci-sparkasse-adapter,26351015,, -a0db945c-c4d3-467e-8a32-cdfed25439e3,HBCI SSK Bad Sachsa,NOLADE21SAC,,hbci-sparkasse-adapter,26351445,, -54e9417a-eb0c-463f-9a96-157f54d1bfe9,HBCI SPK Osnabrück,NOLADE22XXX,,hbci-sparkasse-adapter,26550105,, -f781dcef-6910-4573-a13d-2a5ff3f6025c,HBCI KSK Bersenbrück,NOLADE21BEB,,hbci-sparkasse-adapter,26551540,, -79285967-199d-4011-b081-0932470e6975,HBCI KSK Melle,NOLADE21MEL,,hbci-sparkasse-adapter,26552286,, -4acc6ac4-fa14-4fab-84e6-f621bb7c8fe9,HBCI SPK Emsland,NOLADE21EMS,,hbci-sparkasse-adapter,26650001,, -87d8a804-d762-42da-a582-8c3d74fa6118,HBCI KSK Nordhorn,NOLADE21NOH,,hbci-sparkasse-adapter,26750001,, -19d8bbc4-22a7-409b-8de7-548913a890b7,HBCI SPK Gifhorn-Wolfsburg,NOLADE21GFW,,hbci-sparkasse-adapter,26951311,, -ef869dfd-9703-4231-93b9-94b30c2422b7,HBCI LSK Oldenburg,SLZODE22XXX,,hbci-sparkasse-adapter,28050100,, -d95681d9-5427-40ae-9c9c-871a0539f10e,HBCI SPK Wilhelmshaven,BRLADE21WHV,,hbci-sparkasse-adapter,28250110,, -1517c10a-0f24-482f-a8ea-3e95c86b6287,HBCI SPK Aurich-Norden,BRLADE21ANO,,hbci-sparkasse-adapter,28350000,, -8fd5a780-936d-41ae-8353-6648a51c2a33,HBCI SPK LeerWittmund,BRLADE21LER,,hbci-sparkasse-adapter,28550000,, -be8086af-a9d8-40bc-8f9f-17cd0aa051a0,HBCI Bremer LB,,,hbci-sparkasse-adapter,29050000,, -a92e8dcc-a933-4461-874a-1051af3ecaad,HBCI Bremer LB,,,hbci-sparkasse-adapter,29050004,, -b156b77b-8ce8-46ea-be9a-3aa42245c208,HBCI SPK Bremen,SBREDE22XXX,,hbci-sparkasse-adapter,29050101,, -3bf645c3-0908-4fc5-b9a5-5da4d7bfce6d,HBCI KSK Syke,BRLADE21SYK,,hbci-sparkasse-adapter,29151700,, -9f819704-29be-459b-bf8c-2120a54144c2,HBCI SPK Scheeßel,BRLADE21SHL,,hbci-sparkasse-adapter,29152550,, -ecfed660-c2d8-419f-8af1-1406354f76b8,HBCI KSK Verden,BRLADE21VER,,hbci-sparkasse-adapter,29152670,, -81e6da56-f8cb-4e0c-84b3-434130cc60f1,HBCI Weser-Elbe Sparkasse,BRLADE21BRS,,hbci-sparkasse-adapter,29250000,, -193cd6dd-643e-4de0-8cfb-0f49e7f67e83,HBCI SSK Düsseldorf,DUSSDEDDXXX,,hbci-sparkasse-adapter,30050110,, -c2daedbd-3972-4684-9bcc-220d05b4e045,HBCI KSK Düsseldorf,WELADED1KSD,,hbci-sparkasse-adapter,30150200,, -a1fbd0ce-aa32-4d8a-b6a7-fd0d5b6c3aef,HBCI SSK Haan (Rheinland),WELADED1HAA,,hbci-sparkasse-adapter,30351220,, -17aecac8-d128-47b1-ae07-3a55a7054685,HBCI SPK Neuss,WELADEDNXXX,,hbci-sparkasse-adapter,30550000,, -81ec5288-7c01-46fc-97a6-f7d2ae57f417,HBCI SSK Mönchengladbach,MGLSDE33XXX,,hbci-sparkasse-adapter,31050000,, -9ec07f2b-b5c0-46e3-83d8-94f4f2ac98d7,HBCI KSK Heinsberg,WELADED1ERK,,hbci-sparkasse-adapter,31251220,, -b6a9c1bc-d0ae-48d4-af3e-6b6719a836ab,HBCI SPK Krefeld,SPKRDE33XXX,,hbci-sparkasse-adapter,32050000,, -e5dfe5a5-55f5-4046-a298-ff1c41a89e98,HBCI VSK Goch-Kevelaer-Weeze,WELADED1GOC,,hbci-sparkasse-adapter,32250050,, -a77ae185-0af0-4e87-8559-5f5d9e804e14,HBCI SPK Rhein-Maas,WELADED1KLE,,hbci-sparkasse-adapter,32450000,, -46b82cd0-e5fb-4399-98b6-21f97163a90d,HBCI SSK Wuppertal,WUPSDE33XXX,,hbci-sparkasse-adapter,33050000,, -6d407b1c-80c2-4dd4-bdb3-5a86eae1275d,HBCI SPK Hilden-Ratingen-Velbert,WELADED1VEL,,hbci-sparkasse-adapter,33450000,, -928c69a6-5e1f-4915-a916-e0be5fa67771,HBCI SSK Remscheid,WELADEDRXXX,,hbci-sparkasse-adapter,34050000,, -dfc4f089-9a69-4232-bc6f-154b7d101dfd,HBCI SPK Radevormwald-Hückeswagen,WELADED1RVW,,hbci-sparkasse-adapter,34051350,, -22af2acf-50bc-41ce-a6d5-236af163300e,HBCI SSK Wermelskirchen,WELADED1WMK,,hbci-sparkasse-adapter,34051570,, -d0b3c93d-82b8-4ce4-9c0a-322a3632487f,HBCI SSK Solingen,SOLSDE33XXX,,hbci-sparkasse-adapter,34250000,, -5468586e-4ba9-4dbf-bc72-671c4a00f315,HBCI SPK Duisburg,DUISDE33XXX,,hbci-sparkasse-adapter,35050000,, -5c33691c-de70-4df3-83ab-19eb7f1db9fc,HBCI SPK am Niederrhein,WELADED1MOR,,hbci-sparkasse-adapter,35450000,, -4ccaea6c-9f81-4fa1-9e9a-b1470835be46,HBCI Niederrheinische Sparkasse RheinLippe,WELADED1WES,,hbci-sparkasse-adapter,35650000,, -030c5743-5379-45b0-88e7-7d0928114918,HBCI SPK Essen,SPESDE3EXXX,,hbci-sparkasse-adapter,36050105,, -bc5f816f-5693-422d-b599-b66e4f1b3850,HBCI SPK Mülheim a.d. Ruhr,SPMHDE3EXXX,,hbci-sparkasse-adapter,36250000,, -8412aad1-0def-4712-bd2a-ec207574183c,HBCI SSK Oberhausen,WELADED1OBH,,hbci-sparkasse-adapter,36550000,, -899326fe-ed33-41d5-91df-526f5fa1f973,HBCI SPK KölnBonn,COLSDE33XXX,,hbci-sparkasse-adapter,37050198,, -d8b65e7d-8ac2-40fe-8dbb-f220511cd89a,HBCI KSK Köln,COKSDE33XXX,,hbci-sparkasse-adapter,37050299,, -847d7c63-04cc-417b-b823-d5c5650ed2aa,HBCI SPK Leverkusen,WELADEDLLEV,,hbci-sparkasse-adapter,37551440,, -de39dcaa-fe35-4683-8d14-254930a0b0f3,HBCI SSK Langenfeld (Rheinland),WELADED1LAF,,hbci-sparkasse-adapter,37551780,, -e798c4a4-7598-4530-a6e9-093230be0c06,HBCI KSK Euskirchen,WELADED1EUS,,hbci-sparkasse-adapter,38250110,, -5e7ff442-2230-440b-9cd6-5af7d86140b6,HBCI SPK Gummersbach,WELADED1GMB,,hbci-sparkasse-adapter,38450000,, -844f8219-f473-4964-b54f-9b8721afaf76,HBCI SPK Aachen,AACSDE33XXX,,hbci-sparkasse-adapter,39050000,, -9274b494-e0ac-4566-89aa-ed69fdb63ef9,HBCI SPK Düren,SDUEDE33XXX,,hbci-sparkasse-adapter,39550110,, -1036ad21-4a4d-4718-9c9a-c261e72f19b3,HBCI SPK Münsterland-Ost,WELADED1MST,,hbci-sparkasse-adapter,40050150,, -966f8c04-83d5-430e-8211-e952bd815896,HBCI VSK Emsdetten-Ochtrup,WELADED1EMS,,hbci-sparkasse-adapter,40153768,, -2136ebdd-d2d3-4e38-ab15-d089d7d33f05,HBCI SSK Lengerich,WELADED1LEN,,hbci-sparkasse-adapter,40154476,, -98548136-c0c3-4243-9ef3-dd42bc5d58af,HBCI SPK Westmünsterland,WELADE3WXXX,,hbci-sparkasse-adapter,40154530,, -f8cfd663-d76d-48bf-91f0-69e1fc69263e,HBCI SSK Rheine,WELADED1RHN,,hbci-sparkasse-adapter,40350005,, -951be82e-792a-4cc3-8499-a48ba7273895,HBCI KSK Steinfurt,WELADED1STF,,hbci-sparkasse-adapter,40351060,, -86849581-1c8c-4c0b-8487-285a92a67d2c,HBCI SPK Hamm,WELADED1HAM,,hbci-sparkasse-adapter,41050095,, -6fcd7e50-dfb5-4c01-bd56-57d59e1cf66b,HBCI SPK Bergkamen-Bönen,WELADED1BGK,,hbci-sparkasse-adapter,41051845,, -01a15236-8afa-4f27-b692-b69d0f231e2d,HBCI SPK Beckum-Wadersloh,WELADED1BEK,,hbci-sparkasse-adapter,41250035,, -7ddc9bf9-a781-4c2c-8ff6-c95e30f1a4ef,HBCI SPK SoestWerl,WELADED1SOS,,hbci-sparkasse-adapter,41450075,, -7191fc6d-b7db-4e18-8616-e739ee071538,HBCI SPK Lippstadt,WELADED1LIP,,hbci-sparkasse-adapter,41650001,, -b7813cb7-87e6-4b48-82a3-ff79909801df,HBCI SPK Hochsauerland,WELADED1HSL,,hbci-sparkasse-adapter,41651770,, -86b5058a-6340-4755-b663-4a0aa6a7cfb7,HBCI SPK Geseke,WELADED1GES,,hbci-sparkasse-adapter,41651965,, -d4d6fce3-3cd7-4590-8a31-a378a2782b61,HBCI SPK Gelsenkirchen,WELADED1GEK,,hbci-sparkasse-adapter,42050001,, -24bb3232-2bb6-41ad-908c-63d21e859f73,HBCI SPK Gladbeck,WELADED1GLA,,hbci-sparkasse-adapter,42450040,, -1c2ad660-411c-4ed0-8a87-177541122bcd,HBCI SPK Bottrop,WELADED1BOT,,hbci-sparkasse-adapter,42451220,, -44638f12-582b-4348-a81f-7ce34d5c7044,HBCI SPK Vest Recklinghausen,WELADED1REK,,hbci-sparkasse-adapter,42650150,, -e8ef8886-8291-4f49-b85e-064d059d1489,HBCI SSK Haltern am See,WELADED1HAT,,hbci-sparkasse-adapter,42651315,, -5aaf3c23-ca5f-47d9-aff2-c698b4c2965f,HBCI SSK Bocholt,WELADED1BOH,,hbci-sparkasse-adapter,42850035,, -df961c04-b35a-4401-b7e0-beb8c85f505a,HBCI SPK Bochum,WELADED1BOC,,hbci-sparkasse-adapter,43050001,, -db8f7b83-a45e-4a45-97b3-6ac145968d73,HBCI SPK Hattingen,WELADED1HTG,,hbci-sparkasse-adapter,43051040,, -2f0e07a3-5f79-47f0-9dbd-eda6cca4d75a,HBCI SPK Herne,WELADED1HRN,,hbci-sparkasse-adapter,43250030,, -d6848291-ca05-4457-886f-4a1a6e188445,HBCI SPK Dortmund,DORTDE33XXX,,hbci-sparkasse-adapter,44050199,, -7347146d-6fbe-4caf-994c-77cd18eea07b,HBCI Sparkasse an der Lippe,WELADED1LUN,,hbci-sparkasse-adapter,44152370,, -d897bf8d-0d0e-4ed1-a1d1-6bbe5818a6b5,HBCI SSK Schwerte,WELADED1SWT,,hbci-sparkasse-adapter,44152490,, -0116535d-9363-4837-bc64-a712a6517340,HBCI SPK UnnaKamen,WELADED1UNN,,hbci-sparkasse-adapter,44350060,, -b1e728a1-86b6-48ab-9813-1aaceff47c36,HBCI SPK Iserlohn,WELADED1ISL,,hbci-sparkasse-adapter,44550045,, -61892dcf-c8ed-41a6-ba1c-fc5beb112a3d,HBCI SPK Märkisches Sauerland Hemer - Menden,WELADED1HEM,,hbci-sparkasse-adapter,44551210,, -87eacdb6-cefd-4599-9a1b-735cded078cc,HBCI SPK HagenHerdecke,WELADE3HXXX,,hbci-sparkasse-adapter,45050001,, -ab1e5160-581b-419b-8df1-8e94dac3b38f,HBCI SPK Witten,WELADED1WTN,,hbci-sparkasse-adapter,45250035,, -a1a183b5-52a3-4310-b45e-1e518507dcf1,HBCI SPK Sprockhövel,SPSHDE31XXX,,hbci-sparkasse-adapter,45251515,, -cfd27bf7-6297-4a10-b824-46bfb5a5f802,HBCI SPK Gevelsberg-Wetter,WELADED1GEV,,hbci-sparkasse-adapter,45450050,, -515b384c-0a24-42b3-9c7c-1a55c68e3cc3,HBCI SPK Ennepetal-Breckerfeld,WELADED1ENE,,hbci-sparkasse-adapter,45451060,, -1771af5a-8678-498c-85c7-79653de8b063,HBCI SSK Schwelm,WELADED1SLM,,hbci-sparkasse-adapter,45451555,, -50f4838d-7535-4f51-ad01-f8cc431bc7b9,HBCI SPK Lüdenscheid,WELADED1LSD,,hbci-sparkasse-adapter,45850005,, -65677dca-6b8b-4fc9-b8d9-d87c058974a1,HBCI Vereinigte Sparkasse im Märkischen Kreis,WELADED1PLB,,hbci-sparkasse-adapter,45851020,, -472f39a9-bab2-4cf5-ae8e-b5f674b6de42,HBCI SPK Kierspe-Meinerzhagen,WELADED1KMZ,,hbci-sparkasse-adapter,45851665,, -7ebd2cc2-152f-4aed-8db7-475414b3892f,HBCI SPK Siegen,WELADED1SIE,,hbci-sparkasse-adapter,46050001,, -44ac4ae5-c852-4a98-86a0-4dbfcaa5272b,HBCI SPK Burbach-Neunkirchen,WELADED1BUB,,hbci-sparkasse-adapter,46051240,, -97eb478a-03e1-4372-a6ed-d3813bc4c881,HBCI SSK Schmallenberg,WELADED1SMB,,hbci-sparkasse-adapter,46052855,, -af59f3f0-7232-4241-9659-4f3b04cc84ee,HBCI SPK Wittgenstein,WELADED1BEB,,hbci-sparkasse-adapter,46053480,, -aad6c0a7-1fb4-47a5-8d99-14c809bd26ad,HBCI SPK Olpe-Drolshagen-Wenden,WELADED1OPE,,hbci-sparkasse-adapter,46250049,, -939cf0ec-4e2e-43cc-bd4a-33f3e44b7ae8,HBCI SPK Finnentrop,WELADED1FTR,,hbci-sparkasse-adapter,46251590,, -86322cd1-91d1-46be-8cda-3b94d979b75e,HBCI SPK Attendorn-Lennestadt-Kirchhundem,WELADED1ALK,,hbci-sparkasse-adapter,46251630,, -a8c30abe-67b0-4bec-a0e9-7c92a75549b1,HBCI SPK Meschede,WELADED1MES,,hbci-sparkasse-adapter,46451012,, -b6b15816-3a46-40ed-a3aa-199c92eee130,HBCI SPK Arnsberg-Sundern,WELADED1ARN,,hbci-sparkasse-adapter,46650005,, -4e53f71d-d6e8-4d47-9fff-4541cf087f7a,HBCI SPK Höxter,WELADED1HXB,,hbci-sparkasse-adapter,47251550,, -554f9a70-fd95-4e01-8082-34041f404f73,HBCI SSK Delbrück,WELADED1DEL,,hbci-sparkasse-adapter,47251740,, -56b4fa8c-4a38-4b2e-b3ef-612d02900525,HBCI SPK Paderborn-Detmold,WELADE3LXXX,,hbci-sparkasse-adapter,47650130,, -f3947e0c-01c7-461f-a827-9284b35957e9,HBCI SSK Blomberg/Lippe,WELADED1BLO,,hbci-sparkasse-adapter,47651225,, -ebc7806e-5c07-4273-88be-75e55674f79b,HBCI SPK Gütersloh-Rietberg,WELADED1GTL,,hbci-sparkasse-adapter,47850065,, -0f397768-fcc2-464a-92b0-922bcf3626b2,HBCI SSK Versmold,WELADED1VSM,,hbci-sparkasse-adapter,47853355,, -d559230e-bcea-4ded-8f8d-8d35dcb568c8,HBCI KSK Wiedenbrück,WELADED1WDB,,hbci-sparkasse-adapter,47853520,, -73364ba7-42d6-476b-8c44-9e1e20825ae5,HBCI SPK Bielefeld,SPBIDE3BXXX,,hbci-sparkasse-adapter,48050161,, -e59cd121-42c3-4b25-9d96-0e2a0ce47563,HBCI KSK Halle (Westf.),WELADED1HAW,,hbci-sparkasse-adapter,48051580,, -8f3699a2-0218-4661-a8ca-a1041923e162,HBCI SPK Lemgo,WELADED1LEM,,hbci-sparkasse-adapter,48250110,, -a43bdab9-5aff-4b0d-868f-b4da66ccefd6,HBCI SPK Minden-Lübbecke,WELADED1MIN,,hbci-sparkasse-adapter,49050101,, -2e619809-2455-42da-83fd-ea0079cd4f47,HBCI SSK Rahden,WELADED1RHD,,hbci-sparkasse-adapter,49051065,, -7c9f141d-eda1-4b1b-a909-92b058a5e350,HBCI SPK Bad Oeynhausen - Porta Westfalica,WELADED1OEH,,hbci-sparkasse-adapter,49051285,, -ce168978-a63b-4647-925a-4562c817bef9,HBCI SPK Herford,WLAHDE44XXX,,hbci-sparkasse-adapter,49450120,, -648e1a4d-f595-4927-b9ed-a7a46e8319fa,HBCI Frankfurter Sparkasse,HELADEF1822,,hbci-sparkasse-adapter,50050201,, -0206a0c4-973e-4a98-afa2-d7a2c3972fd6,HBCI SSK Offenbach,HELADEF1OFF,,hbci-sparkasse-adapter,50550020,, -f4aabc9c-e5b3-4d1a-9689-f4bfe66074c9,HBCI SPK Hanau,HELADEF1HAN,,hbci-sparkasse-adapter,50650023,, -e1d9de9b-b59b-401b-8ef4-25fdc6e2bc23,HBCI SPK Langen-Seligenstadt,HELADEF1SLS,,hbci-sparkasse-adapter,50652124,, -26be6966-419b-41e8-8fcc-7af80097455d,HBCI KSK Gelnhausen,HELADEF1GEL,,hbci-sparkasse-adapter,50750094,, -8bcbb766-e15e-4986-8b96-c198ade29095,HBCI SPK Darmstadt,HELADEF1DAS,,hbci-sparkasse-adapter,50850150,, -696605c4-c97e-48dc-8e6c-fb51e77f0998,HBCI SPK Odenwaldkreis,HELADEF1ERB,,hbci-sparkasse-adapter,50851952,, -4ac64541-1e6a-47d9-834a-8db6e0010a41,HBCI KSK Groß-Gerau,HELADEF1GRG,,hbci-sparkasse-adapter,50852553,, -c9b2f9af-0c85-4c8c-9163-19896521b381,HBCI SPK Dieburg,HELADEF1DIE,,hbci-sparkasse-adapter,50852651,, -e1274c1b-50e6-4bad-bd16-bbd4e366142e,HBCI SPK Bensheim,HELADEF1BEN,,hbci-sparkasse-adapter,50950068,, -280993e9-ad08-4d49-9c62-2945ab5fbf90,HBCI SPK Starkenburg,HELADEF1HEP,,hbci-sparkasse-adapter,50951469,, -9e0f2456-7519-44b2-b6b7-ba8dee67c8b6,HBCI Nassauische Sparkasse,NASSDE55XXX,,hbci-sparkasse-adapter,51050015,, -809b1b07-13c4-4af0-b9ee-0cf06ea499a1,HBCI KSK Limburg,HELADEF1LIM,,hbci-sparkasse-adapter,51150018,, -0c78230f-071f-4343-9110-ff3e6412df90,HBCI KSK Weilburg,HELADEF1WEI,,hbci-sparkasse-adapter,51151919,, -448214eb-0659-4fe7-9a99-85e2cb2bccb3,HBCI Taunus Sparkasse,HELADEF1TSK,,hbci-sparkasse-adapter,51250000,, -42ca9a71-084d-48cf-a64c-2e568285c395,HBCI SPK Gießen,SKGIDE5FXXX,,hbci-sparkasse-adapter,51350025,, -266e87e9-f69b-4a06-98bd-0e6943ce32f7,HBCI SPK Grünberg,HELADEF1GRU,,hbci-sparkasse-adapter,51351526,, -99a31da0-14fc-4fdd-b1dc-0388bcf2460a,HBCI SPK Laubach-Hungen,HELADEF1LAU,,hbci-sparkasse-adapter,51352227,, -a706b5f2-a0ac-4f76-8151-664d8518649b,HBCI SPK Wetzlar,HELADEF1WET,,hbci-sparkasse-adapter,51550035,, -6e31efed-8712-4fad-895a-83f9133ea773,HBCI SPK Dillenburg,HELADEF1DIL,,hbci-sparkasse-adapter,51650045,, -a52231f1-b758-409d-9568-0e75a0f0c5a9,HBCI SPK Battenberg,HELADEF1BAT,,hbci-sparkasse-adapter,51752267,, -3e493a69-ab65-489b-877d-dcbb56d2ef21,HBCI SPK Oberhessen,HELADEF1FRI,,hbci-sparkasse-adapter,51850079,, -1b0588a2-4b7c-4529-80d0-9f9b2404c9a3,HBCI Kasseler Sparkasse,HELADEF1KAS,,hbci-sparkasse-adapter,52050353,, -499507b4-33d6-4aa4-88c6-f40b871d6ecb,HBCI SSK Borken,HELADEF1BOR,,hbci-sparkasse-adapter,52051373,, -43b16376-37c2-4aa9-a908-55aa84702493,HBCI SSK Grebenstein,HELADEF1GRE,,hbci-sparkasse-adapter,52051877,, -97b98455-5010-449a-a736-6e53053195f7,HBCI KSK Schwalm-Eder,HELADEF1MEG,,hbci-sparkasse-adapter,52052154,, -539904c6-7485-4890-929b-5d5b4f3bafd1,HBCI SSK Schwalmstadt,HELADEF1SWA,,hbci-sparkasse-adapter,52053458,, -ebfd0f73-c9d8-484c-aaba-ccfd6f441f9d,HBCI SPK Werra-Meißner,HELADEF1ESW,,hbci-sparkasse-adapter,52250030,, -aa5ba509-6c2b-46dc-9f18-335b894d6346,HBCI SPK Waldeck-Frankenberg,HELADEF1KOR,,hbci-sparkasse-adapter,52350005,, -6718dddb-ea86-4bc7-bd5e-18dc806accee,HBCI SPK Fulda,HELADEF1FDS,,hbci-sparkasse-adapter,53050180,, -ded96fb9-17f7-4adf-9b81-3dfabf5c6e80,HBCI KSK Schlüchtern,HELADEF1SLU,,hbci-sparkasse-adapter,53051396,, -e2c204e5-3779-44e3-bece-714f273370f1,HBCI SPK Bad Hersfeld-Rotenburg,HELADEF1HER,,hbci-sparkasse-adapter,53250000,, -0770bf46-e984-4267-96b0-051ae658ec62,HBCI SPK Marburg-Biedenkopf,HELADEF1MAR,,hbci-sparkasse-adapter,53350000,, -52c3583d-da31-4c99-bc4a-e7df1139e670,HBCI SSK Kaiserslautern,MALADE51KLS,,hbci-sparkasse-adapter,54050110,, -40f22200-b1fa-42f9-bdf9-e999927649fc,HBCI KSK Kaiserslautern,MALADE51KLK,,hbci-sparkasse-adapter,54050220,, -b9a65b62-223a-4166-89cc-a55eb090d2c8,HBCI KSK Kusel,MALADE51KUS,,hbci-sparkasse-adapter,54051550,, -5bbd5a04-159a-42de-846f-eaf0b747286e,HBCI SPK Donnersberg,MALADE51ROK,,hbci-sparkasse-adapter,54051990,, -ea9faad1-4c40-4cd7-b9cc-1d759792f24f,HBCI SPK Suedwestpfalz,MALADE51SWP,,hbci-sparkasse-adapter,54250010,, -8dcdf8fe-294e-48f8-a203-7346d9d73e30,HBCI SPK Vorderpfalz,LUHSDE6AXXX,,hbci-sparkasse-adapter,54550010,, -085cf361-ebad-4f23-97a2-0cc7d1c3ea7b,HBCI SPK Rhein-Haardt,MALADE51DKH,,hbci-sparkasse-adapter,54651240,, -c4151151-c82e-4678-9574-0b22b3f7bb25,HBCI SPK Südl. Weinstr. Landau,SOLADES1SUW,,hbci-sparkasse-adapter,54850010,, -884e1c5d-622e-42f3-bf3a-cfaee15d277c,HBCI SPK Germersheim Kandel,MALADE51KAD,,hbci-sparkasse-adapter,54851440,, -e9f686a8-d572-450d-991b-6d94aeb010fe,HBCI SPK Mainz,MALADE51MNZ,,hbci-sparkasse-adapter,55050120,, -20a40c98-461a-4421-80a1-9cd665ad6221,HBCI SPK Worms-Alzey-Ried,MALADE51WOR,,hbci-sparkasse-adapter,55350010,, -7ca89269-61fa-4834-a626-426ea7c6d5e2,HBCI SPK Rhein-Nahe,MALADE51KRE,,hbci-sparkasse-adapter,56050180,, -ea837041-ce3b-417d-a168-6829d3a8d2a1,HBCI KSK Rhein-Hunsrück,MALADE51SIM,,hbci-sparkasse-adapter,56051790,, -a3e2985f-69ef-493d-a070-c525a9e38cf1,HBCI KSK Birkenfeld,BILADE55XXX,,hbci-sparkasse-adapter,56250030,, -164fb4c3-3a8c-42b1-91a8-c6bf90663ef4,HBCI SPK Koblenz,MALADE51KOB,,hbci-sparkasse-adapter,57050120,, -0315c05f-3cd1-45b1-96b7-b8515fcb7cf7,HBCI SPK Westerwald-Sieg,MALADE51AKI,,hbci-sparkasse-adapter,57351030,, -fa23f8f7-2f13-4b2d-ad72-7baa837b0fe9,HBCI SPK Neuwied,MALADE51NWD,,hbci-sparkasse-adapter,57450120,, -a972568c-11cb-4aa7-825f-46d25dcea62b,HBCI KSK Mayen,MALADE51MYN,,hbci-sparkasse-adapter,57650010,, -c70836ae-3788-40fa-8340-5be12613a35f,HBCI KSK Ahrweiler,MALADE51AHR,,hbci-sparkasse-adapter,57751310,, -a76b4d11-0c5f-4290-8c44-6574756d95e7,HBCI SPK Trier,TRISDE55XXX,,hbci-sparkasse-adapter,58550130,, -8ff4e3cf-5c2d-4162-ab1e-431c8d3043d5,HBCI KSK Bitburg-Prüm,MALADE51BIT,,hbci-sparkasse-adapter,58650030,, -6af80730-947f-4362-bd98-01172f614be3,HBCI KSK Vulkaneifel,MALADE51DAU,,hbci-sparkasse-adapter,58651240,, -b684242a-33ef-4c5d-8200-b342b912b33b,HBCI SPK Mittelmosel-Eifel-Mosel-Hunsrück,MALADE51BKS,,hbci-sparkasse-adapter,58751230,, -a6a9f205-b92d-45fd-8595-42ef427f5a2f,HBCI SPK Saarbrücken,SAKSDE55XXX,,hbci-sparkasse-adapter,59050101,, -de0d6ad9-c1e4-4c7e-a5dd-80ba9234bf14,HBCI KSK St. Wendel,SALADE51WND,,hbci-sparkasse-adapter,59251020,, -1885e75b-4d70-4197-9b2c-722b1568dd34,HBCI SPK Neunkirchen,SALADE51NKS,,hbci-sparkasse-adapter,59252046,, -f3e9f536-0037-461b-863e-ab36a3fda47e,HBCI KSK Saarlouis,KRSADE55XXX,,hbci-sparkasse-adapter,59350110,, -914474d5-3b81-4a91-a257-914c981bf70e,HBCI SPK Merzig-Wadern,MERZDE55XXX,,hbci-sparkasse-adapter,59351040,, -573f047b-2d2c-4db9-8ece-c3dacd3a51fa,HBCI KSK Saarpfalz,SALADE51HOM,,hbci-sparkasse-adapter,59450010,, -5c371bff-b164-4f14-9dcd-9b5d8cb5bad0,HBCI LBBW,,,hbci-sparkasse-adapter,60050101,, -b544a856-8355-4c08-9a0f-5dc48f50dc16,HBCI KSK Waiblingen,SOLADES1WBN,,hbci-sparkasse-adapter,60250010,, -981fbdef-1dc6-48cb-8102-938e8abb37ab,HBCI KSK Böblingen,BBKRDE6BXXX,,hbci-sparkasse-adapter,60350130,, -53f61378-804d-4038-8d11-87cbd9fbb49e,HBCI KSK Ludwigsburg,SOLADES1LBG,,hbci-sparkasse-adapter,60450050,, -922e33b2-aa99-45b3-baad-1c637ac0bc82,HBCI KSK Göppingen,GOPSDE6G612,,hbci-sparkasse-adapter,61050000,, -d37bed8e-1636-4e6a-a6cc-89f581c5f9bf,HBCI KSK Göppingen,GOPSDE6GXXX,,hbci-sparkasse-adapter,61050000,, -577691a0-1e07-4668-9f62-7dd8fb997ca2,HBCI KSK Esslingen-Nürtingen,ESSLDE66XXX,,hbci-sparkasse-adapter,61150020,, -625193b1-680e-473c-83ea-7e07406fb359,HBCI KSK Ostalb,OASPDE6AXXX,,hbci-sparkasse-adapter,61450050,, -606b5772-81f0-4bc4-b1c1-67654ed3c91a,HBCI KSK Heilbronn,HEISDE66XXX,,hbci-sparkasse-adapter,62050000,, -1475f688-849d-4ec7-bf13-dc46812fbc91,HBCI SPK Schwäbisch Hall-Crailsheim,SOLADES1SHA,,hbci-sparkasse-adapter,62250030,, -7eae328c-2b98-4f83-935e-f1898360d6e5,HBCI SPK Hohenlohekreis,SOLADES1KUN,,hbci-sparkasse-adapter,62251550,, -261310b4-d680-41e4-970e-6076b6617a79,HBCI SPK Ulm,SOLADES1ULM,,hbci-sparkasse-adapter,63050000,, -19c16627-43c7-4042-b4f1-2b4f08b1a9ff,HBCI KSK Heidenheim,SOLADES1HDH,,hbci-sparkasse-adapter,63250030,, -cc84fbf8-a093-419d-a19b-acf242d03e90,HBCI KSK Reutlingen,SOLADES1REU,,hbci-sparkasse-adapter,64050000,, -261caa96-0047-42d8-98c1-959fd23d37f3,HBCI KSK Tübingen,SOLADES1TUB,,hbci-sparkasse-adapter,64150020,, -3c455f89-bb74-42fe-8d91-283c53f5198c,HBCI KSK Rottweil,SOLADES1RWL,,hbci-sparkasse-adapter,64250040,, -d8bf277a-0c2a-4704-9392-2d37f588d308,HBCI KSK Freudenstadt,SOLADES1FDS,,hbci-sparkasse-adapter,64251060,, -f324ca6a-f0d7-42ef-97bd-b9c6b1e9112f,HBCI KSK Tuttlingen,SOLADES1TUT,,hbci-sparkasse-adapter,64350070,, -e4e5675d-2d38-4ae0-9072-574e76f9b22d,HBCI KSK Ravensburg,SOLADES1RVB,,hbci-sparkasse-adapter,65050110,, -6c0e2bb7-18f9-406c-bead-a61b6bd210fd,HBCI KSK Sigmaringen,SOLADES1SIG,,hbci-sparkasse-adapter,65351050,, -9ebe1bbd-3c45-4ab9-a822-f392ac386da5,HBCI SPK Zollernalb,SOLADES1BAL,,hbci-sparkasse-adapter,65351260,, -adff6c85-213c-4b76-8799-66f8316bf78e,HBCI KSK Biberach,SBCRDE66XXX,,hbci-sparkasse-adapter,65450070,, -1654e4ae-e3ff-4c06-a150-924377456a2b,HBCI SPK Karlsruhe,KARSDE66XXX,,hbci-sparkasse-adapter,66050101,, -1f93e544-7d63-4441-bf11-864cb170e8c4,HBCI SPK Baden-Baden Gaggenau,SOLADES1BAD,,hbci-sparkasse-adapter,66250030,, -5ea46f73-04f4-4abf-a636-8de82496c764,HBCI SPK Bühl,SOLADES1BHL,,hbci-sparkasse-adapter,66251434,, -e09109d1-477d-4d0d-804e-6ab7c4b227dc,HBCI SPK Kraichgau,BRUSDE66XXX,,hbci-sparkasse-adapter,66350036,, -b3c585d0-7fac-4fad-84f9-1c8f4ec958e9,HBCI SPK Offenburg/Ortenau,SOLADES1OFG,,hbci-sparkasse-adapter,66450050,, -67aa9027-6275-4521-8beb-d00b3a92fd75,HBCI SPK Gengenbach,SOLADES1GEB,,hbci-sparkasse-adapter,66451346,, -0de8228c-3d39-4869-8fe4-cf19b694d9a5,HBCI SPK Haslach-Zell,SOLADES1HAL,,hbci-sparkasse-adapter,66451548,, -8b94fc27-9686-41fa-b705-f63b5aa58e15,HBCI SPK Hanauerland,SOLADES1KEL,,hbci-sparkasse-adapter,66451862,, -a1752c49-a818-439d-9e5d-75dd1e866bb3,HBCI SPK Wolfach,SOLADES1WOF,,hbci-sparkasse-adapter,66452776,, -4b362b7b-39b7-4f5f-8846-f22f5f014e57,HBCI SPK Rastatt-Gernsbach,SOLADES1RAS,,hbci-sparkasse-adapter,66550070,, -1c1374c7-07c2-4a62-b351-7da0124bffbf,HBCI SPK Pforzheim Calw,PZHSDE66XXX,,hbci-sparkasse-adapter,66650085,, -479828c9-3c25-4cdd-8227-b11c2acb66ee,HBCI SPK Rhein Neckar Nord,MANSDE66XXX,,hbci-sparkasse-adapter,67050505,, -d857c850-2bc8-4fee-b168-1e29c2a4df86,HBCI SPK Heidelberg,SOLADES1HDB,,hbci-sparkasse-adapter,67250020,, -be7cc54c-0a77-417f-b9f5-62b6fbb790d6,HBCI SPK Tauberfranken,SOLADES1TBB,,hbci-sparkasse-adapter,67352565,, -a688a930-c8ad-4930-9f5a-613b8e777ce9,HBCI SPK Neckartal-Odenwald,SOLADES1MOS,,hbci-sparkasse-adapter,67450048,, -c0a0d55a-a450-4ae4-aa22-97ea2139d7de,HBCI SPK Freiburg-Nördlicher Breisgau,FRSPDE66XXX,,hbci-sparkasse-adapter,68050101,, -9cee9307-cf0d-46d4-867f-84f131c0c50e,HBCI SPK Hochschwarzwald,SOLADES1HSW,,hbci-sparkasse-adapter,68051004,, -e15c6b11-9aae-40b6-a717-8ca917c2217f,HBCI SPK Bonndorf-Stühlingen,SOLADES1BND,,hbci-sparkasse-adapter,68051207,, -a04646ad-62cc-4015-a6e4-44ecc1d31918,HBCI SPK St.Blasien,SOLADES1STB,,hbci-sparkasse-adapter,68052230,, -5c16b255-8d49-489e-899d-bd06993a699b,HBCI SPK Staufen-Breisach,SOLADES1STF,,hbci-sparkasse-adapter,68052328,, -6e725130-c361-4368-88b4-6686eef41875,HBCI SPK Lörrach-Rheinfelden,SKLODE66XXX,,hbci-sparkasse-adapter,68350048,, -84611884-8eb3-4056-bd70-bf2e83b04600,HBCI SPK Wiesental,SOLADES1SFH,,hbci-sparkasse-adapter,68351557,, -47017d54-3224-40bd-b77f-ea5f4368cf4f,HBCI SPK Markgräflerland,SOLADES1MGL,,hbci-sparkasse-adapter,68351865,, -2360a4b6-11ed-4df8-8788-9e810851e209,HBCI SPK Hochrhein,SKHRDE6WXXX,,hbci-sparkasse-adapter,68452290,, -f688dfa3-27c5-4d7e-9445-e1d1ad3ad4e5,HBCI SPK Bodensee,SOLADES1KNZ,,hbci-sparkasse-adapter,69050001,, -e8d49527-b8cb-4047-83fd-6201e557088e,HBCI BSK Reichenau,SOLADES1REN,,hbci-sparkasse-adapter,69051410,, -8c879880-6ab6-421c-a613-60f620330f87,HBCI SPK Pfullendorf-Meßkirch,SOLADES1PFD,,hbci-sparkasse-adapter,69051620,, -2eb9d327-2df4-43ab-8532-09a713c18f15,HBCI SPK Salem-Heiligenberg,SOLADES1SAL,,hbci-sparkasse-adapter,69051725,, -4bb7a7f2-cfed-49e9-8ec0-0025cbe60614,HBCI SPK Hegau-Bodensee,SOLADES1SNG,,hbci-sparkasse-adapter,69250035,, -a5a3292c-db67-44cc-a034-10c46c662e0b,HBCI SPK Engen-Gottmadingen,SOLADES1ENG,,hbci-sparkasse-adapter,69251445,, -a609d04c-2f02-4c1c-b334-670246a3f709,HBCI SPK Schwarzwald-Baar,SOLADES1VSS,,hbci-sparkasse-adapter,69450065,, -f365d0c4-f9a5-4eea-874d-95c3a62aee96,HBCI SPK Freising,BYLADEM1FSI,,hbci-sparkasse-adapter,70051003,, -e878bdf7-cfbc-4c0b-8a67-d54f405a6ca3,HBCI SPK Dachau,BYLADEM1DAH,,hbci-sparkasse-adapter,70051540,, -e09b035c-a322-494b-bc81-bd18759c0bbf,HBCI SPK Erding-Dorfen,BYLADEM1ERD,,hbci-sparkasse-adapter,70051995,, -6c652bc9-e071-4497-b2bf-2f77cb4ffa84,HBCI SPK Landsberg-Dießen,BYLADEM1LLD,,hbci-sparkasse-adapter,70052060,, -4eaa7654-5194-4cc5-bab9-ef226b27e4b5,HBCI SPK Fürstenfeldbruck,BYLADEM1FFB,,hbci-sparkasse-adapter,70053070,, -37e214a1-4a7f-4c36-9ae7-1a3a176adb10,HBCI SPK Bad Tölz-Wolfratshausen,BYLADEM1WOR,,hbci-sparkasse-adapter,70054306,, -3129d7f3-bc3f-4948-aa25-e1797ca4ed45,HBCI SSK München,SSKMDEMMXXX,,hbci-sparkasse-adapter,70150000,, -8aa44df1-faf8-422b-a6f7-7a13da0a59b9,HBCI KSK München Starnberg Ebersberg,BYLADEM1KMS,,hbci-sparkasse-adapter,70250150,, -8c8c72be-6596-47ab-a771-20ee2b50d52e,HBCI KSK Garmisch-Partenkirchen,BYLADEM1GAP,,hbci-sparkasse-adapter,70350000,, -6b22efb7-fc15-4e2c-8918-e8b18c9b50e8,HBCI SPK Oberland,BYLADEM1WHM,,hbci-sparkasse-adapter,70351030,, -1bb96082-f9a4-4c99-91b0-879598b8327f,HBCI SPK Berchtesgadener Land,BYLADEM1BGL,,hbci-sparkasse-adapter,71050000,, -e27ce474-f7d7-425a-bc78-f8916b09ffdc,HBCI KSK Traunstein-Trostberg,BYLADEM1TST,,hbci-sparkasse-adapter,71052050,, -f414558d-96b1-4362-95f8-87a72d279585,HBCI SPK Rosenheim-Bad Aibling,BYLADEM1ROS,,hbci-sparkasse-adapter,71150000,, -85a641f2-9458-4e01-8890-d9d96e4c26c2,HBCI SPK Altötting-Mühldorf,BYLADEM1MDF,,hbci-sparkasse-adapter,71151020,, -4fc28ecd-ec11-46f9-9db6-0eb08680f138,HBCI KSK Miesbach-Tegernsee,BYLADEM1MIB,,hbci-sparkasse-adapter,71152570,, -96a67d6d-e51d-4cc0-a0c2-4512f461b1be,HBCI KSSK Wasserburg,BYLADEM1WSB,,hbci-sparkasse-adapter,71152680,, -0bb64609-cec5-44c5-aafd-c28bce2568fd,HBCI SSK Augsburg,AUGSDE77XXX,,hbci-sparkasse-adapter,72050000,, -431c2d62-bde2-4732-98a2-28272beeb2b3,HBCI KSK Augsburg,BYLADEM1AUG,,hbci-sparkasse-adapter,72050101,, -3de6e35d-aec1-4dc8-99e1-89e55e616547,HBCI SPK Aichach-Schrobenhausen,BYLADEM1AIC,,hbci-sparkasse-adapter,72051210,, -0c16f39f-ca49-4764-9d08-cc6dee935e9c,HBCI SPK Günzburg-Krumbach,BYLADEM1GZK,,hbci-sparkasse-adapter,72051840,, -10f97dc6-40ef-4c43-93d4-0aa039c14e57,HBCI SPK IngolstadtEichstätt,BYLADEM1ING,,hbci-sparkasse-adapter,72150000,, -1dd4a964-c292-47b2-af48-94578435c25b,HBCI SPK Pfaffenhofen,BYLADEM1PAF,,hbci-sparkasse-adapter,72151650,, -988b2996-466d-4e60-a9dd-4fe1db1b9671,HBCI SPK Neuburg-Rain,BYLADEM1NEB,,hbci-sparkasse-adapter,72152070,, -b97bb33c-dd95-47b5-bbc1-03640989bf77,HBCI SPK Nördlingen,BYLADEM1NLG,,hbci-sparkasse-adapter,72250000,, -bc1cef46-390d-4c2c-8a97-bf21ffde3a05,HBCI SPK Donauwörth,BYLADEM1DON,,hbci-sparkasse-adapter,72250160,, -b980c4fd-1cbc-4bf0-99b6-9e3c41807f03,HBCI KSSK Dillingen,BYLADEM1DLG,,hbci-sparkasse-adapter,72251520,, -c4ce31f1-afa6-47ea-83d8-968444228fc2,HBCI SPK Neu-Ulm-Illertissen,BYLADEM1NUL,,hbci-sparkasse-adapter,73050000,, -19aee7ad-d4f9-4148-94b1-edc2972da2a6,HBCI SPK Memmingen-Lindau-Mindelheim,BYLADEM1MLM,,hbci-sparkasse-adapter,73150000,, -3fe3be7c-268b-4643-8c28-4c811f7ecaa8,HBCI SPK Allgäu,BYLADEM1ALG,,hbci-sparkasse-adapter,73350000,, -ef6ce91a-25e6-4c7b-8f30-f0d597f4bf7d,HBCI SPK Riezlern,BYLADEM1ALR,,hbci-sparkasse-adapter,73351635,, -66712aeb-0aa2-468a-b21d-61298838a2d6,HBCI KSSK Kaufbeuren,BYLADEM1KFB,,hbci-sparkasse-adapter,73450000,, -e219d197-e225-4625-a8af-2b15e5e20483,HBCI SPK Passau,BYLADEM1PAS,,hbci-sparkasse-adapter,74050000,, -b1b80395-1dc8-4c64-8c79-835bd33d4299,HBCI SPK Freyung-Grafenau,BYLADEM1FRG,,hbci-sparkasse-adapter,74051230,, -ae44fe0b-679f-4e19-b5f3-8c540310230e,HBCI SPK Deggendorf,BYLADEM1DEG,,hbci-sparkasse-adapter,74150000,, -972a2395-89f2-42b6-8666-76dc9cd102ba,HBCI SPK Regen-Viechtach,BYLADEM1REG,,hbci-sparkasse-adapter,74151450,, -4f04bcf0-2a74-4b7e-9214-b8935997af1a,HBCI SPK Niederbayern-Mitte,BYLADEM1SRG,,hbci-sparkasse-adapter,74250000,, -3581cae7-de6b-411e-92d2-2f7149d951af,HBCI SPK im Landkreis Cham,BYLADEM1CHM,,hbci-sparkasse-adapter,74251020,, -65e1f959-91b4-4695-bff1-2189de10cec1,HBCI SPK Landshut,BYLADEM1LAH,,hbci-sparkasse-adapter,74350000,, -722b327a-64fa-4054-a49f-4e0754857f83,HBCI SPK Rottal-Inn,BYLADEM1EGF,,hbci-sparkasse-adapter,74351430,, -92ea1270-59e7-4e19-ad2a-7bd1830cd742,HBCI SPK Moosburg,BYLADEM1MSB,,hbci-sparkasse-adapter,74351740,, -fe03ed03-1fd4-4584-b61b-b36e855e6273,HBCI SPK Regensburg,BYLADEM1RBG,,hbci-sparkasse-adapter,75050000,, -e7700671-e562-4983-aeee-869b916bfd4a,HBCI SPK im Landkreis Schwandorf,BYLADEM1SAD,,hbci-sparkasse-adapter,75051040,, -9fdb7450-bb5f-4707-9149-f7b57dc6d598,HBCI KSK Kelheim,BYLADEM1KEH,,hbci-sparkasse-adapter,75051565,, -28b98b2e-71c9-4d9a-af56-9e5cc5511156,HBCI SPK Amberg-Sulzbach,BYLADEM1ABG,,hbci-sparkasse-adapter,75250000,, -173d00ca-8158-4389-ba82-63202516703d,HBCI SPK Oberpfalz Nord,BYLADEM1WEN,,hbci-sparkasse-adapter,75350000,, -dac0d5e7-1f44-4427-a717-4b7bcb8e823a,HBCI SPK Eschenbach Neustadt (a.d. Waldnaab),BYLADEM1ESB,,hbci-sparkasse-adapter,75351960,, -62cfa298-7d63-4881-a126-40f6b41e2a64,HBCI SPK Nürnberg,SSKNDE77XXX,,hbci-sparkasse-adapter,76050101,, -3f11b316-6b8e-4f41-8589-5586d8b32d9f,HBCI SPK Neumarkt i.d.OPf.-Parsberg,BYLADEM1NMA,,hbci-sparkasse-adapter,76052080,, -71397f45-2863-4744-8547-f3fbd7f3b92d,HBCI SPK Fürth,BYLADEM1SFU,,hbci-sparkasse-adapter,76250000,, -3e0d6f8a-68f1-47a3-8d76-8f862adb8c7a,HBCI SPK Neustadt a.d. Aisch-Bad Windsheim,BYLADEM1NEA,,hbci-sparkasse-adapter,76251020,, -23d7c1dc-b327-469d-ac02-2c72d289f793,HBCI SPK Erlangen Höchstadt Herzogenaurach,BYLADEM1ERH,,hbci-sparkasse-adapter,76350000,, -7f722ef9-0e21-4b09-b32e-b225003bde1b,HBCI SPK Forchheim,BYLADEM1FOR,,hbci-sparkasse-adapter,76351040,, -03773928-cbff-4eb6-a925-88724f05d128,HBCI SPK Mittelfranken-Süd,BYLADEM1SRS,,hbci-sparkasse-adapter,76450000,, -0589fefb-730d-4a07-82d9-70a8ce32842a,HBCI SPK Ansbach,BYLADEM1ANS,,hbci-sparkasse-adapter,76550000,, -28b4b79d-3c3a-46b5-a389-61ee7fcefa70,HBCI SPK Gunzenhausen,BYLADEM1GUN,,hbci-sparkasse-adapter,76551540,, -a4180835-5570-498f-9e32-474262cffb21,HBCI SPK Bamberg,BYLADEM1SKB,,hbci-sparkasse-adapter,77050000,, -ddf374b7-0ebe-415f-bcab-5c2a7d103684,HBCI SPK Kulmbach-Kronach,BYLADEM1KUB,,hbci-sparkasse-adapter,77150000,, -6dce9684-d2b7-4ea2-9bbc-2ff538a84a28,HBCI SPK Bayreuth,BYLADEM1SBT,,hbci-sparkasse-adapter,77350110,, -be279458-9fd6-4c8a-a34c-a4922de76571,HBCI SPK Hochfranken,BYLADEM1HOF,,hbci-sparkasse-adapter,78050000,, -91beaa6b-8b01-4cfa-b799-d78a8cbaf306,HBCI SPK Coburg-Lichtenfels,BYLADEM1COB,,hbci-sparkasse-adapter,78350000,, -c6e9bcfc-c906-422e-b453-7cda31929638,HBCI SPK Mainfranken Würzburg,BYLADEM1SWU,,hbci-sparkasse-adapter,79050000,, -2314397d-9390-4756-a5ed-35ef66a8bf7c,HBCI SPK Schweinfurt-Haßberge,BYLADEM1KSW,,hbci-sparkasse-adapter,79350101,, -e43e56f6-65a2-48e7-a96d-a19047ed38c0,HBCI SPK Bad Kissingen,BYLADEM1KIS,,hbci-sparkasse-adapter,79351010,, -15b3c6b7-d4b3-4d1a-b1e7-2ad6fa08e5e9,HBCI SPK Bad Neustadt a.d. Saale,BYLADEM1NES,,hbci-sparkasse-adapter,79353090,, -023c0bf7-94a1-4377-9216-bdb4c2c197aa,HBCI SPK Aschaffenburg-Alzenau,BYLADEM1ASA,,hbci-sparkasse-adapter,79550000,, -c037d3a5-6913-45dd-8131-8a3aaa1e1900,HBCI SPK Miltenberg-Obernburg,BYLADEM1MIL,,hbci-sparkasse-adapter,79650000,, -c907960a-674f-4d14-9334-78a84287b0c6,HBCI SPK Burgenlandkreis,NOLADE21BLK,,hbci-sparkasse-adapter,80053000,, -257317a1-4b62-45d2-8507-7b7fe409872b,HBCI SSK Dessau,NOLADE21DES,,hbci-sparkasse-adapter,80053572,, -ff833600-6c7a-41d8-b1d2-a8e6b1eaef29,HBCI KSK Anhalt-Bitterfeld,NOLADE21BTF,,hbci-sparkasse-adapter,80053722,, -de0addc4-a74d-47e1-aafb-0ecac971fa62,HBCI Saalesparkasse,NOLADE21HAL,,hbci-sparkasse-adapter,80053762,, -19699b93-fc2d-437e-afd7-bbd5344c1a3f,HBCI SPK Mansfeld-Südharz,NOLADE21EIL,,hbci-sparkasse-adapter,80055008,, -13394af0-753b-4806-bbad-1202838fc49c,HBCI Salzlandsparkasse,NOLADE21SES,,hbci-sparkasse-adapter,80055500,, -0faff791-4c60-4aac-b861-c3f1b7e7c950,HBCI SPK Wittenberg,NOLADE21WBL,,hbci-sparkasse-adapter,80550101,, -c259e585-b26e-462f-8fd8-f576321d1436,HBCI KSK Stendal,NOLADE21SDL,,hbci-sparkasse-adapter,81050555,, -679b2a33-6b60-491e-9da1-90aa9a46fa12,HBCI Harzsparkasse,NOLADE21HRZ,,hbci-sparkasse-adapter,81052000,, -3fb19941-cdde-4afe-9df7-f89be4e494fe,HBCI SSK Magdeburg,NOLADE21MDG,,hbci-sparkasse-adapter,81053272,, -6530a38f-4f37-409c-80cb-87390ed08c7b,HBCI SPK Jerichower Land,NOLADE21JEL,,hbci-sparkasse-adapter,81054000,, -2d0a78b7-86de-474d-8e18-7dea598d1f30,HBCI KSK Börde,NOLADE21HDL,,hbci-sparkasse-adapter,81055000,, -b8c44db2-ca12-45b1-b914-f96664a6a1fc,HBCI SPK Altmark West,NOLADE21SAW,,hbci-sparkasse-adapter,81055555,, -e4ee31f4-bf08-462d-a8b3-61c3b69d2dc5,HBCI SPK Mittelthüringen,HELADEF1WEM,,hbci-sparkasse-adapter,82051000,, -6556a194-3bc4-486f-894e-1e3f74a45139,HBCI KSK Gotha,HELADEF1GTH,,hbci-sparkasse-adapter,82052020,, -3d46d4c3-7e27-4e42-8f5a-6cf791335c3d,HBCI KSK Nordhausen,HELADEF1NOR,,hbci-sparkasse-adapter,82054052,, -f6929a9e-8ef4-4cda-8002-d919188bbc7f,HBCI Kyffhäusersparkasse Artern-Sondershausen,HELADEF1KYF,,hbci-sparkasse-adapter,82055000,, -dc92f52e-b988-4b14-bc52-ea813eeb21ac,HBCI SPK Unstrut-Hainich,HELADEF1MUE,,hbci-sparkasse-adapter,82056060,, -0b29e2f7-72e6-42b5-bf33-2e48a8187778,HBCI KSK Eichsfeld,HELADEF1EIC,,hbci-sparkasse-adapter,82057070,, -cee540ef-6f53-490c-9463-3d9e805fe825,HBCI SPK Gera-Greiz,HELADEF1GER,,hbci-sparkasse-adapter,83050000,, -0c489046-11bf-4fbe-9bb4-33b1aa281ae1,HBCI SPK Altenburger Land,HELADEF1ALT,,hbci-sparkasse-adapter,83050200,, -0c9dcb6e-32b5-4b17-9648-3729c74a7a27,HBCI KSK Saalfeld-Rudolstadt,HELADEF1SAR,,hbci-sparkasse-adapter,83050303,, -364c904e-f18c-44dc-b50c-8657bc98ca45,HBCI KSK Saale-Orla,HELADEF1SOK,,hbci-sparkasse-adapter,83050505,, -0a0e08f6-1cd1-4958-b047-a2a7663fb37b,HBCI SPK Jena-Saale-Holzland,HELADEF1JEN,,hbci-sparkasse-adapter,83053030,, -704a4fc9-ad20-4fdb-b261-22ed00e640bf,HBCI Rhön-Rennsteig SPK,HELADEF1RRS,,hbci-sparkasse-adapter,84050000,, -8e91566e-0541-4755-9563-32a8b4278a20,HBCI SPK Arnstadt-Ilmenau,HELADEF1ILK,,hbci-sparkasse-adapter,84051010,, -269fd09b-06cc-45e4-a8c9-2466c3145d6f,HBCI KSK Hildburghausen,HELADEF1HIL,,hbci-sparkasse-adapter,84054040,, -846b57a6-9f2f-433c-89b9-f4aac49e3418,HBCI SPK Sonneberg,HELADEF1SON,,hbci-sparkasse-adapter,84054722,, -e2bfab56-90f1-4675-ad6d-40a60c86f5ed,HBCI Wartburg-Sparkasse,HELADEF1WAK,,hbci-sparkasse-adapter,84055050,, -1a63748f-c6d4-4efd-bcd7-40e4c769b0c4,HBCI SPK Oberlausitz-Niederschlesien,WELADED1GRL,,hbci-sparkasse-adapter,85050100,, -c14d20f7-cbcb-4843-bdd2-df6123e33fa6,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81PIR,,hbci-sparkasse-adapter,85050300,, -36d1a6d8-ae69-4b5a-ade9-6f079fd59203,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81RBG,,hbci-sparkasse-adapter,85050300,, -c0ed16da-0fa9-4a29-aa6a-63966b3271a4,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81KMZ,,hbci-sparkasse-adapter,85050300,, -4087d774-6c96-44e1-82a6-ac6ee678fda1,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81HOY,,hbci-sparkasse-adapter,85050300,, -638c3ba7-9db5-42d0-932e-a822debe0485,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81HDN,,hbci-sparkasse-adapter,85050300,, -5edca546-2e2d-4857-a9ae-f50cd21e186a,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81FTL,,hbci-sparkasse-adapter,85050300,, -dfbd81b2-d658-4c19-88b2-4a5b1ed25adb,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81SEB,,hbci-sparkasse-adapter,85050300,, -f9103a4a-65fa-455e-9ded-ef5c7aacab97,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81XXX,,hbci-sparkasse-adapter,85050300,, -7efdc5b4-a58b-489b-950d-e070c0f4c202,HBCI SPK Meißen,SOLADES1MEI,,hbci-sparkasse-adapter,85055000,, -ffa3cb39-79bd-4b1e-9fdf-4c9bd8e69dba,HBCI KSK Bautzen,SOLADES1BAT,,hbci-sparkasse-adapter,85550000,, -dcffb43d-b7fe-4914-b6d5-8168fcd298a0,HBCI SPK Muldental,SOLADES1GRM,,hbci-sparkasse-adapter,86050200,, -f15a3c02-54c4-4d42-9e1d-605ad7463a5e,HBCI KSK Döbeln,SOLADES1DLN,,hbci-sparkasse-adapter,86055462,, -4627833e-a13d-415d-8759-eb93e3afbed4,HBCI Stadt- und Kreissparkasse Leipzig,WELADE8LXXX,,hbci-sparkasse-adapter,86055592,, -7dee5af8-3951-4c7e-9b27-c6fb81e73fe3,HBCI SPK Chemnitz,CHEKDE81HOT,,hbci-sparkasse-adapter,87050000,, -7a47b3b3-f0bc-4131-b425-d7f13b72a6d1,HBCI SPK Chemnitz,CHEKDE81GLA,,hbci-sparkasse-adapter,87050000,, -a6710fb6-014e-4199-9431-7de1b1c34b19,HBCI SPK Chemnitz,CHEKDE81LIM,,hbci-sparkasse-adapter,87050000,, -ce08a230-eca9-4b3e-8ed4-2e54e58b4878,HBCI SPK Chemnitz,CHEKDE81OLW,,hbci-sparkasse-adapter,87050000,, -e6e7f913-dc6f-47be-9e8f-e674b4fe1438,HBCI SPK Chemnitz,CHEKDE81LTS,,hbci-sparkasse-adapter,87050000,, -82c4051b-5a26-4b04-aaff-da24d4b4949c,HBCI SPK Chemnitz,CHEKDE81MRN,,hbci-sparkasse-adapter,87050000,, -c05a3cfc-ae4f-4e54-b7ca-c9ae4ba475ec,HBCI SPK Chemnitz,CHEKDE81XXX,,hbci-sparkasse-adapter,87050000,, -af367022-949c-4308-8d8e-c9972c0f0514,HBCI SPK Mittelsachsen,WELADED1FGX,,hbci-sparkasse-adapter,87052000,, -a174d148-d3c5-46b0-bc76-ef32f7241bcc,HBCI Erzgebirgssparkasse,WELADED1STB,,hbci-sparkasse-adapter,87054000,, -7fc97a83-9211-4453-936b-b94d4c4e71b0,HBCI SPK Zwickau,WELADED1ZWI,,hbci-sparkasse-adapter,87055000,, -dc7239f1-fa55-46a9-b019-156787aa36cb,HBCI SPK Vogtland,WELADED1PLX,,hbci-sparkasse-adapter,87058000,, -ccec5d5e-fde8-4f2c-9b1f-dbc4c25b5b9e,HBCI DKB,BYLADEM1001,,hbci-dkb-adapter,12030000,, -2b9fbe14-2ee3-40af-9592-d753573aef2e,HBCI Aachener Bank eG,GENODED1AAC,,hbci-fiducia-adapter,39060180,, -246cd595-1064-43d3-b957-34104edad423,HBCI Abtsgmünder Bank -Raiffeisen- eG,GENODES1ABR,,hbci-fiducia-adapter,60069673,, -ef1261d9-b6f6-4cf2-bcfd-b8c59995936c,HBCI Airbus Bank GmbH,AGBMDEMMXXX,,hbci-fiducia-adapter,70120600,, -ddb1e9d6-f2d2-41d0-9d45-aca123f43380,HBCI Aktivbank AG,AKBADES1XXX,,hbci-fiducia-adapter,60030700,, -32882f1f-e286-4ebe-a6b3-efa576d4fca1,HBCI Allgäuer Volksbank eG Kempten-Sonthofen,GENODEF1KEV,,hbci-fiducia-adapter,73390000,, -00e8b631-a803-49ac-a6cc-c722de047e32,HBCI Alxing-Brucker Genossenschaftsbank eG,GENODEF1ALX,,hbci-fiducia-adapter,70169310,, -168dbf52-95d5-4c9f-a2bb-8458d80415ac,HBCI Bank 1 Saar eG,SABADE5SXXX,,hbci-fiducia-adapter,59190000,, -59044515-1ea2-4258-8d4f-de6afbed5981,HBCI Bank für Kirche und Caritas eG,GENODEM1BKC,,hbci-fiducia-adapter,47260307,, -c75c9d09-c587-4d77-bfd6-d09fd4251147,HBCI Bank für Kirche und Diakonie eG - KD-Bank,GENODED1DKD,,hbci-fiducia-adapter,35060190,, -784b8bfe-1867-4c2d-98ff-99051c49d19d,HBCI Bank im Bistum Essen eG,GENODED1BBE,,hbci-fiducia-adapter,36060295,, -c34936e2-a312-492e-9979-f239ace9e131,HBCI Bank11 für Privatkunden und Handel GmbH,WEFZDED1XXX,,hbci-fiducia-adapter,30530500,, -687088ca-c258-4b3b-8ba4-2bc4644f510a,HBCI Bankhaus Anton Hafner KG,ANHODE77XXX,,hbci-fiducia-adapter,72030227,, -78f1e554-90c3-4de4-aca1-2bf7d06b6cba,HBCI Bankhaus Bauer Aktiengesellschaft,BHBADES1XXX,,hbci-fiducia-adapter,60030100,, -4d11ba32-c35b-44c2-9285-2a085808a24c,HBCI Bankhaus E. Mayer AG,BKMADE61XXX,,hbci-fiducia-adapter,68030000,, -0250f4d3-5dda-4c72-ad67-eb7165d93448,HBCI Bankhaus Ellwanger & Geiger AG,ELGEDES1XXX,,hbci-fiducia-adapter,60030200,, -d976ebca-b25b-4759-917c-9d6f5c981c5d,HBCI Bankhaus Max Flessa KG,FLESDEMMXXX,,hbci-fiducia-adapter,79330111,, -94e2b4c6-c303-4a9a-8017-e59e44479af0,HBCI Bankhaus Rautenschlein AG,GENODEF1RTS,,hbci-fiducia-adapter,27131300,, -df0be897-7360-4104-89b4-bca84994c78d,HBCI Bayerische BodenseeBank - Raiffeisen - eG,GENODEF1LBB,,hbci-fiducia-adapter,73369821,, -f091781e-ad89-461c-951e-d3a8f172d2d1,HBCI BBBank eG,GENODE61BBB,,hbci-fiducia-adapter,66090800,, -80854144-3fd6-4204-b036-37b2129b3e0e,HBCI Bensberger Bank eG,GENODED1BGL,,hbci-fiducia-adapter,37062124,, -724ec001-8bf2-4717-930c-fa00c45e57bc,HBCI Berliner Volksbank eG Abteilung BIT,BEVODEBBXXX,,hbci-fiducia-adapter,10090000,, -d38f7df3-3ef9-4fe4-936e-937726cbd885,HBCI Bernhauser Bank eG,GENODES1BBF,,hbci-fiducia-adapter,61262345,, -a4992223-e800-4f04-9334-664123e821bb,HBCI Bopfinger Bank Sechta-Ries eG,GENODES1BPF,,hbci-fiducia-adapter,60069239,, -386fba73-dcbd-4ced-ab15-803d4567b031,HBCI Brandenburger Bank Volksbank-Raiffeisenbank eG,GENODEF1BRB,,hbci-fiducia-adapter,16062073,, -2f781a2c-da43-4704-b3df-d1e2220bc564,HBCI Bremische Volksbank eG,GENODEF1HB1,,hbci-fiducia-adapter,29190024,, -cc045544-598a-4598-92b1-cb69766911e1,HBCI Brühler Bank eG,GENODED1BRL,,hbci-fiducia-adapter,37069991,, -6e6b56af-c090-46f5-be33-ee6799e7eb1c,HBCI BTV Bank für Tirol und Vorarlberg AG Zweigniederlassung Deutschland,BTVADE61XXX,,hbci-fiducia-adapter,72012300,, -a9370655-79f5-4088-8563-3119ff906532,HBCI Budenheimer Volksbank eG,GENODE51BUD,,hbci-fiducia-adapter,55061303,, -ea4448f1-6c48-4870-84fb-e15c648b5a8c,HBCI Cronbank AG,GENODE51CRO,,hbci-fiducia-adapter,50530000,, -b671f38d-7c7f-428b-a129-a6fc434897e3,HBCI CVW-Privatbank AG,GENODEF1WHD,,hbci-fiducia-adapter,76211900,, -4e3814e9-6eaf-422c-9c9e-c9c62dc27ace,HBCI Dettinger Bank eG,GENODES1DBE,,hbci-fiducia-adapter,60069387,, -18ad076e-61f2-4560-8f1c-54fa91bd1501,HBCI Dithmarscher Volks- und Raiffeisenbank eG,GENODEF1DVR,,hbci-fiducia-adapter,21890022,, -f3402b92-6be4-487a-bc1a-6a174ccabfa0,HBCI DKM Darlehnskasse Münster eG,GENODEM1DKM,,hbci-fiducia-adapter,40060265,, -9ad7b2d9-e899-4200-a963-6b4f6dfa4f16,HBCI Donau-Iller Bank eG,GENODES1EHI,,hbci-fiducia-adapter,63091010,, -05377b84-d75c-4634-9321-8ba62e51bfc9,HBCI Donner & Reuschel AG,CHDBDEHHXXX,,hbci-fiducia-adapter,20030300,, -e1d78795-3c14-4b34-a31b-cd12bb3ae58e,HBCI Dortmunder Volksbank eG,GENODEM1DOR,,hbci-fiducia-adapter,44160014,, -486f0689-2d8b-4030-88b2-41105aebc988,HBCI Echterdinger Bank eG,GENODES1ECH,,hbci-fiducia-adapter,60062775,, -a3e3ba60-d19a-4e3a-850d-d5fd8fed4702,HBCI Eckernförder Bank eG Volksbank-Raiffeisenbank,GENODEF1EFO,,hbci-fiducia-adapter,21092023,, -a1543522-60a6-4c4a-a7af-727cf1719d8c,HBCI EDEKABANK AG Hamburg,EDEKDEHHXXX,,hbci-fiducia-adapter,20090700,, -29c17eb8-d5ee-4c54-bb94-63dc2be2785c,HBCI Emsländische Volksbank eG,GENODEF1MEP,,hbci-fiducia-adapter,26661494,, -66acfe1e-1dae-4171-811b-10dfe9710702,HBCI Erfurter Bank eG,ERFBDE8EXXX,,hbci-fiducia-adapter,82064228,, -a2be5886-31a3-430d-aee1-3b2a2db54d55,HBCI EthikBank eG,GENODEF1ETK,,hbci-fiducia-adapter,83094495,, -22682720-6963-4ade-9d64-f28fc37467ad,HBCI Eurocity Bank AG,DLGHDEB1XXX,,hbci-fiducia-adapter,10030700,, -e7b72ce7-572a-4036-9f63-b1b1d73d779d,HBCI Evangelische Bank eG,GENODEF1EK1,,hbci-fiducia-adapter,52060410,, -1bf0c4f2-eca5-4476-a0ce-fdc3a9799fad,HBCI Evenord-Bank eG-KG,GENODEF1N03,,hbci-fiducia-adapter,76090400,, -3c8993b1-9aeb-4335-a5d7-0cf110599fa1,HBCI Federseebank eG,GENODES1FED,,hbci-fiducia-adapter,60069860,, -6baa766c-8d74-4599-be34-8b75b2275071,HBCI Frankenberger Bank Raiffeisenbank eG,GENODEF1FBK,,hbci-fiducia-adapter,52069519,, -e6df2270-4525-42a8-ac57-35e9daafcbb5,HBCI Frankfurter Bankgesellschaft (Deutschland) AG,FBGADEF1XXX,,hbci-fiducia-adapter,50110700,, -81f7872a-689c-43d6-b577-600b316a7411,HBCI Frankfurter Volksbank eG,FFVBDEFFXXX,,hbci-fiducia-adapter,50190000,, -cdabefa3-1318-4bc8-a371-8f88065b2ac4,HBCI Freisinger Bank eG Volksbank-Raiffeisenbank,GENODEF1FSR,,hbci-fiducia-adapter,70169614,, -0329fb91-b14c-47d6-b4db-0642977fe377,HBCI Fürst Fugger Privatbank Aktiengesellschaft,FUBKDE71XXX,,hbci-fiducia-adapter,72030014,, -397a95b3-288a-4e6c-9b15-62a735fc2ecb,HBCI Fürstlich Castell'sche Bank Credit-Casse AG,FUCEDE77XXX,,hbci-fiducia-adapter,79030001,, -1d11ec24-4088-4075-9f66-9a84f3469266,HBCI GENO BANK ESSEN eG,GENODEM1GBE,,hbci-fiducia-adapter,36060488,, -f6a1f901-c52a-4be9-9afa-188c69b3f40e,HBCI Genobank Mainz eG,GENODE51MZ6,,hbci-fiducia-adapter,55060611,, -6b3361cc-5a64-4080-8b44-0896031c91e5,HBCI Genossenschaftsbank eG München,GENODEF1M07,,hbci-fiducia-adapter,70169464,, -98e766e6-be31-4a81-89af-8054e8275cdc,HBCI Genossenschaftsbank Unterallgäu eG,GENODEF1MIR,,hbci-fiducia-adapter,73160000,, -913066d5-0144-4994-bf82-24ec7afdb6ce,HBCI Genossenschaftsbank Weil im Schönbuch eG,GENODES1GWS,,hbci-fiducia-adapter,60069224,, -d0cf291d-7865-47ad-a62d-4d596638b343,HBCI Gladbacher Bank AG von 1922,GENODED1GBM,,hbci-fiducia-adapter,31060181,, -a117aa04-d40d-472a-b5bb-a061cff0a2f7,HBCI GLS Gemeinschaftsbank eG,GENODEM1GLS,,hbci-fiducia-adapter,43060967,, -18410a6b-1dc2-496d-8b0d-b439ed5c6a27,HBCI Grafschafter Volksbank eG,GENODEF1NEV,,hbci-fiducia-adapter,28069956,, -02b3df07-accf-49c9-8ad2-86dc59441979,HBCI GRENKE BANK AG,GREBDEH1XXX,,hbci-fiducia-adapter,20130400,, -89eaa7c3-b65b-40d6-a308-277430f6cf86,HBCI Hagnauer Volksbank eG,GENODE61HAG,,hbci-fiducia-adapter,69091200,, -b05e255a-74e1-48ff-9241-2db520f26422,HBCI Hamburger Volksbank eG,GENODEF1HH2,,hbci-fiducia-adapter,20190003,, -c3cfedac-99d7-4e31-9a6a-8892a476c594,HBCI Hannoversche Volksbank eG,VOHADE2HXXX,,hbci-fiducia-adapter,25190001,, -32656792-c11f-4462-bd10-076d1bbb985d,HBCI Harzer Volksbank eG,GENODEF1QLB,,hbci-fiducia-adapter,80063508,, -732adbad-48b1-4031-8082-d766ff1b0d2e,HBCI HAUSBANK MÜNCHEN eG Bank für Haus- und Grundbesitz,GENODEF1M04,,hbci-fiducia-adapter,70090100,, -b7d9a7fe-bf9c-4116-a580-4885347b3c44,HBCI Heidelberger Volksbank eG,GENODE61HD1,,hbci-fiducia-adapter,67290000,, -f1a1c1ec-65b5-4173-8005-7c573d1563c6,HBCI Heidenheimer Volksbank eG,GENODES1HDH,,hbci-fiducia-adapter,63290110,, -6795f456-5ab2-4a38-9dc5-975dda8ed377,HBCI Hoerner Bank AG,HOEBDE61XXX,,hbci-fiducia-adapter,62020000,, -5a55d1ac-8ac5-4910-a841-042b17e46689,HBCI Hümmlinger Volksbank eG,GENODEF1WLT,,hbci-fiducia-adapter,28069381,, -e2aa23eb-aea3-4aac-833a-e09ab3971e9d,HBCI Hüttenberger Bank eG,GENODE51HUT,,hbci-fiducia-adapter,50069455,, -cda604c3-ce28-480b-b2ad-ee064422e64e,HBCI IBM Deutschland Kreditbank GmbH,IBKBDES1XXX,,hbci-fiducia-adapter,60035810,, -730d3105-0879-4746-ab0e-bbf25c6657ca,HBCI Ikano Bank AB (publ) Zweigniederlassung Deutschland,PLFGDE5AIKB,,hbci-fiducia-adapter,50230888,, -cc36f4ad-db2b-4058-af43-8465967ea491,HBCI Internationales Bankhaus Bodensee AG,IBBFDE81XXX,,hbci-fiducia-adapter,65110200,, -043e6e70-9d1f-413c-8764-fd41fbe4dd52,HBCI Kieler Volksbank eG,GENODEF1KIL,,hbci-fiducia-adapter,21090007,, -bce6343c-eb6a-424b-a6c3-02eac7b27788,HBCI Kurhessische Landbank eG,GENODEF1KS2,,hbci-fiducia-adapter,52060208,, -774a54b0-e6ac-4ec1-94c7-24abee8787c8,HBCI Landbank Horlofftal eG,GENODE51REW,,hbci-fiducia-adapter,51861616,, -582735f2-7b88-43cf-a98c-c059544482bc,HBCI Landwirtschaftliche Rentenbank,LAREDEFFXXX,,hbci-fiducia-adapter,50020500,, -18787d1c-d0ed-40f6-bbc9-02a31e4b6d73,HBCI Leipziger Volksbank eG,GENODEF1LVB,,hbci-fiducia-adapter,86095604,, -b3ac44fd-a36c-4fa3-8cc5-81ffb2ae1423,HBCI levoBank eG,GENODE51LEB,,hbci-fiducia-adapter,59393000,, -54985661-f87b-4f77-9d8a-e9ed0fd80ef5,HBCI LIGA Bank eG,GENODEF1M05,,hbci-fiducia-adapter,75090300,, -05665950-7a0a-4c50-886e-4c9250329cf4,HBCI Mainzer Volksbank eG,MVBMDE55XXX,,hbci-fiducia-adapter,55190000,, -cbf36c50-5eba-483c-9895-4f73f5643186,HBCI Märkische Bank eG,GENODEM1HGN,,hbci-fiducia-adapter,45060009,, -cf96aeac-62ec-49d2-9734-a8290f794263,HBCI meine Volksbank Raiffeisenbank eG,GENODEF1VRR,,hbci-fiducia-adapter,71160000,, -bd59c2fc-9f51-4d44-a108-d2904a0220b0,HBCI Mendener Bank eG,GENODEM1MEN,,hbci-fiducia-adapter,44761312,, -d50eb822-8f60-4746-a5ba-6e424e4683ea,HBCI MERKUR BANK KGaA,GENODEF1M06,,hbci-fiducia-adapter,70130800,, -f82d18c3-d909-4334-81b8-608136ba4376,HBCI MKB Mittelstandskreditbank AG,GENODEF1MKB,,hbci-fiducia-adapter,20190800,, -04bc99ba-726c-42f2-991e-37cc0bfd984e,HBCI MLP Finanzdienstleistungen,MLPBDE61XXX,,hbci-fiducia-adapter,67230000,, -73cce166-bad5-45c1-a3cb-8776c83dbc1a,HBCI Münchner Bank eG,GENODEF1M01,,hbci-fiducia-adapter,70190000,, -9cc87fea-46a6-41ce-99ce-0ec901b58a21,HBCI Münsterländische Bank Thie & Co. KG,MLBKDEH1MUE,,hbci-fiducia-adapter,40030000,, -3d96e45b-de69-4ea5-bfea-b783747d3191,HBCI net-m privatbank 1891 AG Aktiengesellschaft,BVWBDE2WXXX,,hbci-fiducia-adapter,70013100,, -9ab5d816-b505-49dc-baea-a5ae79c6b518,HBCI Nordthüringer Volksbank eG,GENODEF1NDS,,hbci-fiducia-adapter,82094054,, -e9b73857-5136-41d8-ae3d-68a6cddeac70,HBCI North Channel Bank GmbH & Co. KG,GENODEF1OGK,,hbci-fiducia-adapter,10030600,, -53171df3-4504-4bad-9c3c-05ff09fab1eb,HBCI Onstmettinger Bank eG,GENODES1ONS,,hbci-fiducia-adapter,65361989,, -a5d3435d-e53b-4f87-ac97-61a9c8fb4537,HBCI Ostfriesische Volksbank eG,GENODEF1LER,,hbci-fiducia-adapter,28590075,, -0585d351-511f-4f85-821e-ad485ea10f0b,HBCI Otto M. Schröder Bank AG,OSCBDEH1XXX,,hbci-fiducia-adapter,20230300,, -6af4529b-7988-430d-969f-7c1cc70db093,HBCI Pax-Bank eG Kirche und Caritas,GENODED1PAX,,hbci-fiducia-adapter,37060193,, -eaa64f2e-ae9e-4ec4-8c8a-a9688f0b1a86,HBCI Pommersche Volksbank eG,GENODEF1HST,,hbci-fiducia-adapter,13091054,, -153b9a58-1e9a-4335-8951-11fa4494bd46,HBCI PSD Bank Berlin-Brandenburg eG,GENODEF1P01,,hbci-fiducia-adapter,10090900,, -42b925dc-0613-4879-b9d8-40e2f594dc00,HBCI PSD Bank Braunschweig eG,GENODEF1P02,,hbci-fiducia-adapter,27090900,, -3f8f11b1-091e-4f1e-8c52-26fa8775cdc6,HBCI PSD Bank Hannover eG,GENODEF1P09,,hbci-fiducia-adapter,25090900,, -44ca7cdc-00e9-4d4c-9391-f9bc47b93d71,HBCI PSD Bank Hessen-Thüringen eG,GENODEF1P06,,hbci-fiducia-adapter,50090900,, -aecf2263-b790-4a00-8468-c6191fe43728,HBCI PSD Bank Karlsruhe-Neustadt eG,GENODEF1P10,,hbci-fiducia-adapter,66090900,, -3de2565f-8457-448b-b177-ac59251beb0c,HBCI PSD Bank Kiel eG,GENODEF1P11,,hbci-fiducia-adapter,21090900,, -fe35f9eb-2026-4cb1-af0e-b8edc50f1e75,HBCI PSD Bank Koblenz eG,GENODEF1P12,,hbci-fiducia-adapter,57090900,, -d1fa066f-82fb-48b4-b60f-f3c1a942bb26,HBCI PSD Bank München eG,GENODEF1P14,,hbci-fiducia-adapter,72090900,, -dedc280b-4923-4db9-b40f-23ff405402d5,HBCI PSD Bank Nord eG,GENODEF1P08,,hbci-fiducia-adapter,20090900,, -2f7b8016-c54d-4a0a-a713-a74b80004e40,HBCI PSD Bank Nürnberg eG,GENODEF1P17,,hbci-fiducia-adapter,76090900,, -1c002868-6e6f-482e-a0f0-e9c5e73ad406,HBCI PSD Bank RheinNeckarSaar eG,GENODEF1P20,,hbci-fiducia-adapter,60090900,, -c0cdd0b1-c466-401e-8a81-81e93e18fe74,HBCI PSD Bank Rhein-Ruhr eG,GENODEF1P05,,hbci-fiducia-adapter,30060992,, -129dbe94-0d2f-45e2-8f39-84ac072771ee,HBCI PSD Bank West eG,GENODEF1P13,,hbci-fiducia-adapter,37060993,, -6d9ac12c-fb91-4e77-ab62-c2d38845a0ea,HBCI PSD Bank Westfalen-Lippe eG,GENODEF1P15,,hbci-fiducia-adapter,40090900,, -b1a8426d-cb19-4723-b65b-5a8520685399,HBCI Raiffeisen - meine Bank eG,GENODEF1FYS,,hbci-fiducia-adapter,76069449,, -e09af5c6-0981-4f4e-a676-901a7412222f,HBCI Raiffeisen Privatbank eG,GENODE61WIB,,hbci-fiducia-adapter,67262243,, -7e54d6e5-3e94-44be-a1da-d9d389ea36ef,HBCI Raiffeisen Spar+Kreditbank eG,GENODEF1LAU,,hbci-fiducia-adapter,76061025,, -d0d69efd-796e-415f-8279-258a80010d7d,HBCI Raiffeisenbank Adelzhausen-Sielenbach eG,GENODEF1ADZ,,hbci-fiducia-adapter,72069002,, -44d80093-6aa6-4ee2-9697-d06f4518112b,HBCI Raiffeisenbank Aichhalden-Hardt- Sulgen eG,GENODES1HAR,,hbci-fiducia-adapter,60069553,, -74845839-e51c-49d7-8e96-604ee7c7b2da,HBCI Raiffeisenbank Aidlingen eG,GENODES1AID,,hbci-fiducia-adapter,60069206,, -2179b3dd-3ec2-464b-b1bd-1048866ad074,HBCI Raiffeisenbank Aindling eG,GENODEF1AIL,,hbci-fiducia-adapter,72069005,, -448393ac-8855-4cb6-bb02-30d15d34f622,HBCI Raiffeisenbank Aitrang-Ruderatshofen eG,GENODEF1AIT,,hbci-fiducia-adapter,73369851,, -6f67fb8f-e9c8-486d-857b-c6f7542b5c38,HBCI Raiffeisenbank Altdorf-Ergolding eG,GENODEF1ERG,,hbci-fiducia-adapter,74362663,, -ba58da08-f7c2-418d-bea2-a54464516a80,HBCI Raiffeisenbank Altdorf-Feucht eG,GENODEF1FEC,,hbci-fiducia-adapter,76069440,, -289788e0-ccb7-43a3-9acb-1b8139dbc3b7,HBCI Raiffeisenbank Alteglofsheim-Hagelstadt eG,GENODEF1HGA,,hbci-fiducia-adapter,75069055,, -2a0ed1cd-71a5-43e4-9f60-68c678bf95f1,HBCI Raiffeisenbank Altschweier eG,GENODE61ALR,,hbci-fiducia-adapter,66261416,, -9fd741ed-9d86-49b8-9590-98f124c87868,HBCI Raiffeisenbank am Dreisessel eG,GENODEF1NHD,,hbci-fiducia-adapter,74069768,, -7fa378cf-cda8-4b19-8044-9faab1dc8f1a,HBCI Raiffeisenbank Am Goldenen Steig eG,GENODEF1RGS,,hbci-fiducia-adapter,74061101,, -43e15946-354d-4233-83cf-bb5c3e7d098f,HBCI Raiffeisenbank am Kulm eG,GENODEF1SPK,,hbci-fiducia-adapter,77069782,, -ff58c973-85ba-4004-b4f0-5ea622b9e555,HBCI Raiffeisenbank Anger eG,GENODEF1AGE,,hbci-fiducia-adapter,71062802,, -6367d7f1-7d05-4ccc-8764-37c5f766910a,HBCI Raiffeisenbank Aresing-Gerolsbach eG,GENODEF1GSB,,hbci-fiducia-adapter,72169080,, -40588c8c-d708-4c8f-936e-d7f42caa1e31,HBCI Raiffeisenbank Arnstorf eG,GENODEF1ARF,,hbci-fiducia-adapter,74361211,, -ea0a0e4b-3fec-45f0-93a4-588312ebe3e5,HBCI Raiffeisenbank Aschau-Samerberg eG,GENODEF1ASU,,hbci-fiducia-adapter,71162804,, -f840c7f8-4c9d-4b54-848a-03b7ffe8ffa8,HBCI Raiffeisenbank Aschberg eG,GENODEF1HZH,,hbci-fiducia-adapter,72069113,, -c563365b-6491-451d-a777-b8aae3ad9a16,HBCI Raiffeisenbank Auerbach-Freihung eG,GENODEF1AUO,,hbci-fiducia-adapter,76069369,, -336a8051-d417-475e-a1c6-a70333130f2e,HBCI Raiffeisenbank Augsburger Land West eG,GENODEF1ZUS,,hbci-fiducia-adapter,72069274,, -60a887d0-fee8-4523-b642-cf0bf8c116dc,HBCI Raiffeisenbank Aulendorf eG,GENODES1AUL,,hbci-fiducia-adapter,65061219,, -6d25644e-62fb-43f6-8322-ad0d1af579dd,HBCI Raiffeisenbank Bad Kötzting eG,GENODEF1KTZ,,hbci-fiducia-adapter,75069081,, -9f11c6b3-5464-4f6d-94b8-d5ce384b8443,HBCI Raiffeisenbank Bad Saulgau eG,GENODES1SAG,,hbci-fiducia-adapter,65063086,, -84460a04-b48b-4c2e-8b47-cffc019498a9,HBCI Raiffeisenbank Bad Schussenried eG,GENODES1RBS,,hbci-fiducia-adapter,60069303,, -2abbbb9a-bfc8-4245-8236-eb56f6202893,HBCI Raiffeisenbank Bad Windsheim eG,GENODEF1WDS,,hbci-fiducia-adapter,76069372,, -d16816e7-1822-4b1b-b6f6-e0fba829b384,HBCI Raiffeisenbank Baisweil-Eggenthal-Friesenried eG,GENODEF1EGB,,hbci-fiducia-adapter,73369871,, -f4107e86-3bfd-4b9d-bb6f-0f12d3f55818,HBCI Raiffeisenbank Bechhofen eG,GENODEF1BEH,,hbci-fiducia-adapter,76069378,, -e995d294-ce17-4e5e-aa1c-dab0a1225bc5,HBCI Raiffeisenbank Beilngries eG,GENODEF1BLN,,hbci-fiducia-adapter,72169380,, -2fab8357-b70b-49ec-90bf-e1242504910f,HBCI Raiffeisenbank Berghülen eG,GENODES1BGH,,hbci-fiducia-adapter,60069931,, -8f5ce84d-f738-492b-b80a-0c85a4c59b56,HBCI Raiffeisenbank Beuerberg-Eurasburg eG,GENODEF1EUR,,hbci-fiducia-adapter,70169333,, -292a1bfc-6382-413a-998e-d3b187c11d83,HBCI Raiffeisenbank Biberach eG,GENODES1WAR,,hbci-fiducia-adapter,65461878,, -22da142d-597c-4b72-84a2-0b8ac9b5f6b6,HBCI Raiffeisenbank Bibertgrund eG,GENODEF1ZIR,,hbci-fiducia-adapter,76069669,, -b4c4907c-8faa-409c-bf17-0d6601995def,HBCI Raiffeisenbank Bidingen eG,GENODEF1BIN,,hbci-fiducia-adapter,73369859,, -49200c47-bc6d-4f78-9f75-be5cefee8317,HBCI Raiffeisenbank Biebergrund-Petersberg eG,GENODEF1PBG,,hbci-fiducia-adapter,53062350,, -ec482443-aee4-416e-9302-30913a2bdf7e,HBCI Raiffeisenbank Bissingen eG,GENODEF1BSI,,hbci-fiducia-adapter,72069034,, -07bb33f5-f0b3-45d6-b945-09a186391ef3,HBCI Raiffeisenbank Bobingen eG,GENODEF1BOI,,hbci-fiducia-adapter,72069036,, -fef0652e-3190-457e-b511-6ddbe84b089d,HBCI Raiffeisenbank Böllingertal eG,GENODES1BOE,,hbci-fiducia-adapter,60069976,, -36ed96e0-250e-41d2-9722-104a4423d434,HBCI Raiffeisenbank Borken Nordhessen eG,GENODEF1BOR,,hbci-fiducia-adapter,52061303,, -fa668d8b-1a15-465a-8338-a4946d8eb125,HBCI Raiffeisenbank Bruck eG,GENODEF1BUK,,hbci-fiducia-adapter,75069020,, -668b44d5-a418-464c-acf4-fe95e76659c7,HBCI Raiffeisenbank Buch-Eching eG,GENODEF1EBV,,hbci-fiducia-adapter,74369662,, -8633371e-7033-4947-aa4b-95e259af72d0,HBCI Raiffeisenbank Bühlertal eG,GENODES1RVG,,hbci-fiducia-adapter,60069075,, -641cccab-2b32-453e-8732-8c8486ec1cf1,HBCI Raiffeisenbank Burgebrach-Stegaurach eG,GENODEF1BGB,,hbci-fiducia-adapter,77062014,, -07a9bd3e-1906-4203-8757-47bbb646f836,HBCI Raiffeisenbank Butjadingen- Abbehausen eG,GENODEF1BUT,,hbci-fiducia-adapter,28068218,, -3eb1f5af-fb80-4f25-af80-453474e56f42,HBCI Raiffeisenbank Bütthard-Gaukönigshofen eG,GENODEF1BHD,,hbci-fiducia-adapter,79069031,, -7a9c808d-ff7b-428c-bac4-561719bf1469,HBCI Raiffeisenbank Chamer Land eG,GENODEF1CHA,,hbci-fiducia-adapter,74261024,, -1f583373-198c-4259-9617-962527f621fe,HBCI Raiffeisenbank Chiemgau-Nord-Obing eG,GENODEF1SBC,,hbci-fiducia-adapter,70169165,, -4866df7f-bb37-4067-ad30-8052c04c8f4d,HBCI Raiffeisenbank Denzlingen-Sexau eG,GENODE61DEN,,hbci-fiducia-adapter,68062105,, -cbb18c6b-7ed0-4c64-ab63-3e128a4e01c3,HBCI Raiffeisenbank Dietersheim und Umgebung eG,GENODEF1DIM,,hbci-fiducia-adapter,76069410,, -61512276-74f9-4bbd-9b87-8fb992f733a8,HBCI Raiffeisenbank Donau-Heuberg eG,GENODES1RDH,,hbci-fiducia-adapter,64361359,, -ccec8152-1dad-40f0-af21-09ccd44a3b6d,HBCI Raiffeisenbank Ebrachgrund eG,GENODEF1SFD,,hbci-fiducia-adapter,77069091,, -515d7c07-b302-41ca-aec3-40a5ee797969,HBCI Raiffeisenbank eG Baunatal,GENODEF1BTA,,hbci-fiducia-adapter,52064156,, -76ce31ac-df28-4208-b1c5-c18af7e9b4e9,HBCI Raiffeisenbank eG Büchen-Crivitz-Hagenow-Plate,GENODEF1BCH,,hbci-fiducia-adapter,23064107,, -128056a5-31af-4957-87d2-94ed949d188c,HBCI Raiffeisenbank eG Deggendorf-Plattling-Sonnenwald,GENODEF1DEG,,hbci-fiducia-adapter,74160025,, -a5622c6f-4d23-4e37-95d1-f83414b0786f,HBCI Raiffeisenbank eG Elztal,GENODE61ELZ,,hbci-fiducia-adapter,66069103,, -273af76f-2094-4d35-9416-732bf86e710a,HBCI Raiffeisenbank eG Offenbach / M.-Bieber,GENODE51OF2,,hbci-fiducia-adapter,50560102,, -1a2ea71e-b5de-48e8-9574-85e04bb87267,HBCI Raiffeisenbank eG Scharrel,GENODEF1SAN,,hbci-fiducia-adapter,28065286,, -cb1c1b5a-6bf8-484f-8d34-38d0c8949f0f,HBCI Raiffeisenbank eG Unterwesterwald,GENODE51ARZ,,hbci-fiducia-adapter,57263015,, -c7fe6ecd-14bc-4814-a2f5-c18e6c27e92d,HBCI "Raiffeisenbank eG, Handewitt",,hbci-https://www.raibahandewitt.de/services_xs2a/bg13,fiducia-adapter,,, -9e6fe244-ea8d-443c-aecc-6dc8809f77f5,HBCI "Raiffeisenbank eG, Lauenburg",,hbci-https://www.raibalauenburg.de/services_xs2a/bg13,fiducia-adapter,,, -a5b37d96-c7e2-471c-b3df-10c04639fd74,HBCI "Raiffeisenbank eG, Leezen",,hbci-https://www.rbleezen.de/services_xs2a/bg13,fiducia-adapter,,, -ea3ff859-0de2-4a0a-8d11-538cfdabb64e,HBCI "Raiffeisenbank eG, Moormerland",,hbci-https://www.raibamol.de/services_xs2a/bg13,fiducia-adapter,,, -da0af930-cf7a-40c9-9798-5b862ecc24f2,HBCI "Raiffeisenbank eG, Owschlag",,hbci-https://www.rbowschlag.de/services_xs2a/bg13,fiducia-adapter,,, -b1e312bb-8baf-40a1-8c3e-a8f76ec84d10,HBCI "Raiffeisenbank eG, Ratzeburg",,hbci-https://www.rbratzeburg.de/services_xs2a/bg13,fiducia-adapter,,, -5da450f6-af48-4fe3-b36a-96397a74961b,HBCI "Raiffeisenbank eG, Rodenbach",,hbci-https://www.rbrodenbach.de/services_xs2a/bg13,fiducia-adapter,,, -0da45443-5590-4bf3-979d-48d32e999f25,HBCI "Raiffeisenbank eG, Seestermühe",,hbci-https://www.rbseestermuehe.de/services_xs2a/bg13,fiducia-adapter,,, -c72aad27-cda9-4cdb-a48a-d634104db909,HBCI "Raiffeisenbank eG, Simmerath",,hbci-https://www.raiffeisenbank-simmerath.de/services_xs2a/bg13,fiducia-adapter,,, -fb42305f-ed6d-4afa-a05a-f8d10e97bd8f,HBCI "Raiffeisenbank eG, Struvenhütten",,hbci-https://www.rbstruvenhuetten.de/services_xs2a/bg13,fiducia-adapter,,, -08c150e1-050a-429e-a60f-477a523a4052,HBCI "Raiffeisenbank eG, Todenbüttel",,hbci-https://www.rbtodenbuettel.de/services_xs2a/bg13,fiducia-adapter,,, -6c57dafd-18c4-4f10-844d-6de2de607465,HBCI Raiffeisenbank Ehekirchen-Oberhausen eG,GENODEF1WDF,,hbci-fiducia-adapter,72169745,, -0b4ed421-d2a9-4044-9a89-1e0d030a4888,HBCI Raiffeisenbank Ehingen-Hochsträß eG,GENODES1REH,,hbci-fiducia-adapter,60069346,, -dd9ce4dc-90af-45a6-89ac-faddd6376cba,HBCI Raiffeisenbank Eichenbühl und Umgebung eG,GENODEF1ENB,,hbci-fiducia-adapter,79668509,, -7da9df8d-52cf-44e0-809e-16e1f6e45adb,HBCI Raiffeisenbank Eifeltor eG,GENODED1KAI,,hbci-fiducia-adapter,57069144,, -d74f26cf-dc55-4344-bc24-a425b9cc3c8d,HBCI Raiffeisenbank Elbmarsch eG,GENODEF1HTE,,hbci-fiducia-adapter,22163114,, -3f116384-889d-475c-8c41-07418818be45,HBCI Raiffeisenbank Elsavatal eG,GENODEF1EAU,,hbci-fiducia-adapter,79665540,, -2e092f14-fd86-48f8-a21a-87cfd9642603,HBCI Raiffeisenbank Emsland-Mitte eG,GENODEF1KBL,,hbci-fiducia-adapter,28069878,, -43200637-b375-4e1c-a531-11b8cac7fd9d,HBCI Raiffeisenbank Erding eG,GENODEF1EDR,,hbci-fiducia-adapter,70169356,, -6cac747c-601a-48b7-939a-daa26a6816c3,HBCI Raiffeisenbank Erkelenz eG,GENODED1LOE,,hbci-fiducia-adapter,31263359,, -89640b73-d0d8-4eb2-9fb6-ce337e9e9351,HBCI Raiffeisenbank Erlenbach eG,GENODES1ERL,,hbci-fiducia-adapter,60069911,, -f96082ea-61fd-41fd-bf62-27eb3f12c14c,HBCI Raiffeisenbank Ersingen eG,GENODE61ERS,,hbci-fiducia-adapter,66662155,, -6ff7b18c-4e98-407f-b670-202249205c73,HBCI Raiffeisenbank Eschlkam-Lam- Lohberg-Neukirchen b. Hl. Blut eG,GENODEF1NKN,,hbci-fiducia-adapter,75069110,, -71c11191-be2c-4961-9e6d-b159c31364f0,HBCI Raiffeisen-Bank Eschweiler eG,GENODED1RSC,,hbci-fiducia-adapter,39362254,, -a7c6b2cb-edff-401e-ad75-b2b3b005e226,HBCI Raiffeisenbank Essenbach eG,GENODEF1ENA,,hbci-fiducia-adapter,74369656,, -7415d97e-469c-4989-b592-369d8eab4cf6,HBCI Raiffeisenbank Estenfeld-Bergtheim eG,GENODEF1EFD,,hbci-fiducia-adapter,79063060,, -6a8efe06-0878-4bb3-a707-2699cb7c888f,HBCI Raiffeisenbank Falkenstein-Wörth eG,GENODEF1FKS,,hbci-fiducia-adapter,75069038,, -1a29f9b1-7054-4e32-998f-015a5525c328,HBCI Raiffeisenbank Fischenich-Kendenich eG,GENODED1FKH,,hbci-fiducia-adapter,37063367,, -4ef6c7fc-9ed1-41a1-9b2d-b0b2559625fe,HBCI Raiffeisenbank Flachsmeer eG,GENODEF1WEF,,hbci-fiducia-adapter,28562716,, -00750c73-9967-4792-bdae-5ca5a2c31d86,HBCI Raiffeisenbank Floß eG,GENODEF1FLS,,hbci-fiducia-adapter,75362039,, -77c9cfc8-cb7a-45f0-8764-c99183d4f15d,HBCI Raiffeisenbank Frankenhardt-Stimpfach eG,GENODES1RFS,,hbci-fiducia-adapter,60069442,, -11f05a27-fe5c-43e8-80d8-d093add86930,HBCI Raiffeisenbank Frankenwinheim und Umgebung eG,GENODEF1FWH,,hbci-fiducia-adapter,79364069,, -23cf500a-33dd-4342-bb0c-2d8b10de39f6,HBCI Raiffeisenbank Fränkische Schweiz eG,GENODEF1HWA,,hbci-fiducia-adapter,77365792,, -e3379996-50cb-4030-96e3-2ee8dceb2a97,HBCI Raiffeisenbank Freinsheim eG,GENODE61FSH,,hbci-fiducia-adapter,54661800,, -6cd3e376-6e73-4db1-8791-0d7203e9ab64,HBCI Raiffeisenbank Fuchstal-Denklingen eG,GENODEF1FCH,,hbci-fiducia-adapter,73369854,, -d15f3e6a-6f5b-4b0f-bb2f-557c07b2acbd,HBCI Raiffeisenbank Gefrees eG,GENODEF1GFS,,hbci-fiducia-adapter,77363749,, -ab93d9da-d2cb-4624-930a-47b050df3ae6,HBCI Raiffeisenbank Geiselhöring-Pfaffenberg eG,GENODEF1GPF,,hbci-fiducia-adapter,74369088,, -20d0152d-dca0-404c-964b-990eff7e5f8b,HBCI Raiffeisenbank Geislingen-Rosenfeld eG,GENODES1GEI,,hbci-fiducia-adapter,65362499,, -3eae0308-21e9-400f-9810-ea96550b86f4,HBCI Raiffeisenbank Gilching eG,GENODEF1GIL,,hbci-fiducia-adapter,70169382,, -54da194e-dfec-4637-8df9-16a1c8bdf9aa,HBCI Raiffeisenbank Gmund am Tegernsee eG,GENODEF1GMU,,hbci-fiducia-adapter,70169383,, -212d92a9-c9b7-40e2-b9d0-a6f264b7900b,HBCI Raiffeisenbank Gotha eG,GENODEF1GTH,,hbci-fiducia-adapter,82064168,, -c7704de2-58c3-4aeb-a8f4-c223e4798067,HBCI Raiffeisenbank Grainet eG,GENODEF1GRT,,hbci-fiducia-adapter,74069744,, -bdc99afb-495d-49aa-b63a-6c7df5afe8d2,HBCI Raiffeisenbank Grävenwiesbach eG,GENODE51GWB,,hbci-fiducia-adapter,50069345,, -ac2bc021-a379-420a-bd25-803f0fb08926,HBCI Raiffeisenbank Greding-Thalmässing eG,GENODEF1GDG,,hbci-fiducia-adapter,76069462,, -5b8e6858-f0a4-4d1f-865f-dc6473f6b0b9,HBCI Raiffeisenbank Griesstätt-Halfing eG,GENODEF1HFG,,hbci-fiducia-adapter,70169132,, -8912bee3-b61a-45ab-85e2-6060b0cb601e,HBCI Raiffeisenbank Grimma eG,GENODEF1GMR,,hbci-fiducia-adapter,86065483,, -445f6fc7-15fa-4b0d-8dfb-436c988a281b,HBCI Raiffeisenbank Gruibingen eG,GENODES1RGR,,hbci-fiducia-adapter,60069242,, -b7708034-cedb-4114-ae4e-c9e8aa5c1871,HBCI Raiffeisenbank Gymnich eG,GENODED1EGY,,hbci-fiducia-adapter,37069322,, -fbb33a77-9e91-43ed-99c8-cb7751b0d91a,HBCI Raiffeisenbank Haag-Gars-Maitenbeth eG,GENODEF1HMA,,hbci-fiducia-adapter,70169388,, -44f408a4-e0ce-41d0-85e8-46a3c13d2ad1,HBCI Raiffeisenbank Hallertau eG,GENODEF1RHT,,hbci-fiducia-adapter,70169693,, -4495c596-08ab-4fa9-95bd-adadf3c85729,HBCI Raiffeisenbank Hardt-Bruhrain eG,GENODE61DET,,hbci-fiducia-adapter,66062366,, -62ed24a7-a96a-4f60-8e0d-d2827957ccf3,HBCI Raiffeisenbank Heilsbronn-Windsbach eG,GENODEF1WBA,,hbci-fiducia-adapter,76069663,, -3ded80e1-870d-435d-9f3e-07bb53bfe99f,HBCI Raiffeisenbank Hengersberg-Schöllnach eG,GENODEF1HBW,,hbci-fiducia-adapter,74161608,, -5c88970d-20b7-4199-b57b-115970157ca0,HBCI Raiffeisenbank Heroldsbach eG,GENODEF1HOB,,hbci-fiducia-adapter,77069052,, -ce7f5e92-a234-4d51-82e8-b24580eb31ea,HBCI Raiffeisenbank Hersbruck eG,GENODEF1HSB,,hbci-fiducia-adapter,76061482,, -92385ede-14b3-47d0-886d-d1a2a52e3f6c,HBCI Raiffeisenbank HessenNord eG,GENODEF1WOH,,hbci-fiducia-adapter,52063550,, -1bd707ec-4356-4a21-8294-0dd41e5c2444,HBCI Raiffeisenbank Hiltenfingen eG,GENODEF1HTF,,hbci-fiducia-adapter,72069105,, -3e74ece1-d08f-4a16-a33e-e42b85bb8426,HBCI Raiffeisenbank Hirschau eG,GENODEF1HSC,,hbci-fiducia-adapter,76069486,, -771f35f2-2b5c-40d5-bbad-88b862df4f02,HBCI Raiffeisenbank Höchberg eG,GENODEF1HBG,,hbci-fiducia-adapter,79063122,, -93ea0ac0-ea9f-4cc4-97d2-d5f8ae36f283,HBCI Raiffeisenbank Hochfranken West eG,GENODEF1SZF,,hbci-fiducia-adapter,77069870,, -a5411b49-3aa1-4194-a035-86061e3aab87,HBCI Raiffeisenbank Hohenloher Land eG,GENODES1IBR,,hbci-fiducia-adapter,60069714,, -fb5acdf9-92ec-49b0-9e2e-2a184f4e3375,HBCI Raiffeisenbank Holzkirchen-Otterfing eG,GENODEF1HZO,,hbci-fiducia-adapter,70169410,, -cf3a628a-5d34-416d-a3cd-214b50e68d82,HBCI Raiffeisenbank Ichenhausen eG,GENODEF1ICH,,hbci-fiducia-adapter,72069119,, -78d32a5a-4f0e-4190-92e2-c6f78c84cf93,HBCI Raiffeisenbank im Allgäuer Land eG,GENODEF1DTA,,hbci-fiducia-adapter,73369264,, -81b66cec-05dc-4e37-a7bf-a438ba8cbc47,HBCI Raiffeisenbank im Breisgau eG,GENODE61GUN,,hbci-fiducia-adapter,68064222,, -77f6b3b9-ce41-474b-bdc4-2edb235d62d3,HBCI Raiffeisenbank im Donautal eG,GENODEF1GAH,,hbci-fiducia-adapter,72169812,, -ffafed71-48b3-4792-824f-1223253420e1,HBCI Raiffeisenbank im Fuldaer Land eG,GENODEF1GLU,,hbci-fiducia-adapter,53062035,, -50bfe73a-8583-4806-8f95-d6d4d5428294,HBCI Raiffeisenbank im Grabfeld eG,GENODEF1SLZ,,hbci-fiducia-adapter,79069188,, -afb83d1c-be80-4b6c-affd-4e24fe8e0df0,HBCI Raiffeisenbank im Kreis Calw eG,GENODES1RCW,,hbci-fiducia-adapter,60663084,, -e1e338b9-48b0-424e-8815-add3552ae7c1,HBCI Raiffeisenbank im Landkreis Passau-Nord eG,GENODEF1TIE,,hbci-fiducia-adapter,74062786,, -2c837bb9-832d-453c-aa87-c86d9e2eaf9e,HBCI Raiffeisenbank im Oberland eG,GENODEF1MIB,,hbci-fiducia-adapter,70169598,, -ca18e581-26b8-430b-b814-3703e706fff3,HBCI Raiffeisenbank im Oberpfälzer Jura eG,GENODEF1HEM,,hbci-fiducia-adapter,75069061,, -2183400b-97d9-4636-bcea-1386537e6402,HBCI Raiffeisenbank Irrel eG,GENODED1IRR,,hbci-fiducia-adapter,57069727,, -14db4780-b71c-40a5-a83f-5ba18b8ee09a,HBCI Raiffeisenbank Isar-Loisachtal eG,GENODEF1HHS,,hbci-fiducia-adapter,70169543,, -8cf19dc9-9b21-4c93-b2fd-15f01628a93e,HBCI Raiffeisenbank Kaarst eG,GENODED1KAA,,hbci-fiducia-adapter,37069405,, -9e47f4f3-bf07-4690-a5eb-74f63c3baf5b,HBCI Raiffeisenbank Kaiserstuhl eG,GENODE61VOK,,hbci-fiducia-adapter,68063479,, -8965cc9c-f224-4bf9-a61b-82c70d532ece,HBCI Raiffeisenbank Kalbe-Bismark eG,GENODEF1KAB,,hbci-fiducia-adapter,81063028,, -f1a8c46d-bdeb-4826-9e92-9776ac3ab59f,HBCI Raiffeisenbank Kastellaun eG,GENODED1KSL,,hbci-fiducia-adapter,56061151,, -42af5239-a501-4c93-aaf2-a4d12678be5b,HBCI Raiffeisenbank Kehrig eG,GENODED1KEH,,hbci-fiducia-adapter,57661253,, -e6d7e565-09f5-4089-8e06-20f31a2cf210,HBCI Raiffeisenbank Kempten-Oberallgäu eG,GENODEF1SFO,,hbci-fiducia-adapter,73369920,, -a7188152-056e-4eeb-b8d8-0a8a57b803f7,HBCI Raiffeisenbank Kieselbronn eG,GENODE61KBR,,hbci-fiducia-adapter,66661329,, -8dc88993-1538-4f0f-b5e8-357a66a0ffe4,HBCI Raiffeisenbank Kirchweihtal eG,GENODEF1OKI,,hbci-fiducia-adapter,73369918,, -cf6e1b3c-112f-4130-99cd-5aa8af062b4d,HBCI Raiffeisenbank Kirtorf eG,GENODE51KIF,,hbci-fiducia-adapter,50069477,, -44d6be6f-4e05-454c-a921-dc1fdf37762b,HBCI Raiffeisenbank Kissing-Mering eG,GENODEF1MRI,,hbci-fiducia-adapter,72069155,, -605dfdac-ce43-4fab-8c28-4a94e7bf1c8c,HBCI Raiffeisenbank Kitzinger Land eG,GENODEF1OBR,,hbci-fiducia-adapter,79161499,, -ca78d472-52fe-409a-bcba-1d93d1531794,HBCI Raiffeisenbank Knoblauchsland eG,GENODEF1N08,,hbci-fiducia-adapter,76069512,, -3312fcc9-9f02-49d1-b0d9-a6eb849e98de,HBCI Raiffeisenbank Kreis Kelheim eG,GENODEF1ABS,,hbci-fiducia-adapter,75069014,, -928ae230-47fd-40c7-8598-5043dea4781b,HBCI Raiffeisenbank Küps-Mitwitz-Stockheim eG,GENODEF1KC2,,hbci-fiducia-adapter,77069044,, -a78b4520-9664-47d7-b43b-835d7f1213fc,HBCI Raiffeisenbank Lorup eG,GENODEF1LRU,,hbci-fiducia-adapter,28069935,, -8071f8df-e413-4b20-90c2-ff60da11fdcc,HBCI Raiffeisenbank Main-Spessart eG,GENODEF1GEM,,hbci-fiducia-adapter,79069150,, -fa6a2e91-049e-4e5b-ad11-91e6348e06f0,HBCI Raiffeisenbank Maitis eG,GENODES1RMA,,hbci-fiducia-adapter,60069336,, -5c8cb599-385c-40c1-a5a9-d1b85d72fd84,HBCI Raiffeisenbank Maßbach eG,GENODEF1RNM,,hbci-fiducia-adapter,79069213,, -d5c349be-7dd6-40cb-a226-8c2373173d5f,HBCI Raiffeisenbank Mecklenburger Seenplatte eG,GENODEF1WRN,,hbci-fiducia-adapter,15061618,, -109e884d-3114-4c3a-a0e5-f1d6c37d6229,HBCI Raiffeisenbank Mehring-Leiwen eG,GENODED1MLW,,hbci-fiducia-adapter,58561771,, -f28511f8-2b8f-4924-bcfc-9bc21403849a,HBCI Raiffeisenbank Mehrstetten eG,GENODES1MEH,,hbci-fiducia-adapter,60069706,, -10e18d1c-34d7-49b1-849b-3efe4c8214b1,HBCI Raiffeisenbank Mittelschwaben eG,GENODEF1BBT,,hbci-fiducia-adapter,72069126,, -66413151-d4e1-4cc2-8f93-d9f2e21484ca,HBCI Raiffeisenbank Mittenwald eG,GENODEF1MTW,,hbci-fiducia-adapter,70169459,, -8cc54cde-acdb-4e02-9c1e-5ac744acc6f4,HBCI Raiffeisenbank Moselkrampen eG,GENODED1MOK,,hbci-fiducia-adapter,57069081,, -634b2d18-942c-4e31-9635-6b588c9b67f1,HBCI Raiffeisenbank Mötzingen eG,GENODES1RMO,,hbci-fiducia-adapter,60069817,, -ac96baed-cee8-4f1a-ad5c-6d5368e31424,HBCI Raiffeisenbank München-Nord eG,GENODEF1M08,,hbci-fiducia-adapter,70169465,, -36286f93-fb07-4fa1-a519-e9e2e2e812ed,HBCI Raiffeisenbank München-Süd eG,GENODEF1M03,,hbci-fiducia-adapter,70169466,, -36de6420-85b9-4608-81d0-83bb1d084847,HBCI Raiffeisenbank Mutlangen eG,GENODES1RML,,hbci-fiducia-adapter,61361975,, -a2b20dd5-0bf9-4f16-943b-9a4b3766f27a,HBCI Raiffeisenbank Nahe eG,GENODED1FIN,,hbci-fiducia-adapter,56261735,, -20f0c328-a199-42a1-b902-c76ade013fb8,HBCI Raiffeisenbank Neumarkt i.d.OPf. eG,GENODEF1NM1,,hbci-fiducia-adapter,76069553,, -5cb7a9f5-8adb-408a-ae3c-28905eb21811,HBCI Raiffeisenbank Neumarkt- St. Veit - Reischach eG,GENODEF1RWZ,,hbci-fiducia-adapter,70169530,, -d1fbb43d-a85b-40ac-9e4c-0505a682e59f,HBCI Raiffeisenbank Neustadt eG,GENODED1ASN,,hbci-fiducia-adapter,57069238,, -0a9f4720-f7ac-4a9f-9a5c-6c6ddc188f90,HBCI Raiffeisenbank Neustadt-Vohenstrauß eG,GENODEF1NEW,,hbci-fiducia-adapter,75363189,, -df0f884b-5ac2-4a87-bb48-48221270ed19,HBCI Raiffeisenbank Niedere Alb eG,GENODES1RBA,,hbci-fiducia-adapter,60069066,, -c0a92d8c-cd38-4b4b-9abb-e22955e0d8bc,HBCI Raiffeisenbank Niederwallmenach eG,GENODE51NWA,,hbci-fiducia-adapter,57062675,, -dd48bf5c-9d07-4eba-a5f3-8814b53060b8,HBCI Raiffeisenbank Nordkreis Landsberg eG,GENODEF1ELB,,hbci-fiducia-adapter,70169351,, -ea9d8794-06bf-445f-906b-51343325c810,HBCI Raiffeisenbank Nördliche Bergstraße eG,GENODE51ABH,,hbci-fiducia-adapter,50861501,, -b3880494-1ee5-40f6-b2bd-aa1b8e8c7a0c,HBCI Raiffeisenbank Nüdlingen eG,GENODEF1NDL,,hbci-fiducia-adapter,79069181,, -f57c53ed-1162-49b3-9ded-1e6c0fa8bdd0,HBCI Raiffeisenbank Oberaudorf eG,GENODEF1OBD,,hbci-fiducia-adapter,71162355,, -e4b02fc6-7559-41db-a9c7-9f140efa7837,HBCI Raiffeisenbank Oberes Gäu eG,GENODES1ROG,,hbci-fiducia-adapter,60069876,, -1879e1a6-e837-4641-8dcf-df0f10311637,HBCI Raiffeisenbank Oberferrieden-Burgthann eG,GENODEF1BTO,,hbci-fiducia-adapter,76069564,, -5b41f72b-b34f-4f3c-a4b3-be794f857743,HBCI Raiffeisenbank Oberland eG,GENODEF1MGA,,hbci-fiducia-adapter,77069868,, -103fe46a-ea90-47c5-8255-d181d4f83659,HBCI Raiffeisenbank Obermain Nord eG,GENODEF1ALK,,hbci-fiducia-adapter,77061004,, -0c7b2bc4-257d-472a-8601-615b60b23d1c,HBCI Raiffeisenbank Oberpfalz NordWest eG,GENODEF1KEM,,hbci-fiducia-adapter,77069764,, -5fd9f9f1-07b1-4149-8b80-1c252d359c5b,HBCI Raiffeisenbank Oberpfalz Süd eG,GENODEF1DST,,hbci-fiducia-adapter,75062026,, -a3ae5b46-89dc-4f22-8a6c-655db8731fd9,HBCI Raiffeisenbank Oberteuringen-Meckenbeuren eG,GENODES1OTE,,hbci-fiducia-adapter,65162832,, -f6b19ef6-f60a-4cf5-80f2-727e4b5ec6a0,HBCI Raiffeisenbank Oberursel eG,GENODE51OBU,,hbci-fiducia-adapter,50061741,, -dfbe9037-b5c5-428d-9cee-21fc976630c9,HBCI Raiffeisenbank Oldenburg eG,GENODEF1OL2,,hbci-fiducia-adapter,28060228,, -ad6ccd29-d14c-424f-a300-1a1ab70e4cba,HBCI Raiffeisenbank Ortenburg-Kirchberg v.W. eG,GENODEF1ORT,,hbci-fiducia-adapter,74061670,, -59335302-3053-4b37-89a4-76cccc890fe5,HBCI Raiffeisenbank Ostprignitz - Ruppin eG,GENODEF1NPP,,hbci-fiducia-adapter,16061938,, -5e521ba2-6eeb-4d0b-a631-7316ce9af2d0,HBCI Raiffeisenbank Ottenbach eG,GENODES1OTT,,hbci-fiducia-adapter,60069457,, -e1721a66-d3f9-4e39-be60-ccbfe1ddeeeb,HBCI Raiffeisenbank Parkstetten eG,GENODEF1PST,,hbci-fiducia-adapter,74369130,, -a6f772d7-2ce9-482d-83d7-c734dc55dd00,HBCI Raiffeisenbank Pfaffenhausen eG,GENODEF1PFA,,hbci-fiducia-adapter,72069789,, -2cb952fe-05ce-48c3-b304-0b034ffccf9c,HBCI Raiffeisenbank Pfaffenhofen a.d.Glonn eG,GENODEF1ODZ,,hbci-fiducia-adapter,70169186,, -16ec55fe-83db-4dfd-b3f0-713281d84d21,HBCI Raiffeisenbank Pfaffenwinkel eG,GENODEF1PEI,,hbci-fiducia-adapter,70169509,, -b850e27e-4046-40b7-9241-38ea6427bd85,HBCI Raiffeisenbank Pfeffenhausen- Rottenburg-Wildenberg eG,GENODEF1PFF,,hbci-fiducia-adapter,74364689,, -f7f40b73-3a2b-47ec-9317-2977d8119264,HBCI Raiffeisenbank Plankstetten AG,GENODEF1BPL,,hbci-fiducia-adapter,76069576,, -f0617887-fecf-44b9-a4ba-ff97f010acf7,HBCI Raiffeisenbank Raisting eG,GENODEF1RIG,,hbci-fiducia-adapter,70169521,, -b6a3dbc9-64fc-44f1-9bc6-9e116cd7d6a0,HBCI Raiffeisenbank Rastede eG,GENODEF1RSE,,hbci-fiducia-adapter,28062165,, -d4e331a0-baf4-40b3-8bd8-62be289d908b,HBCI Raiffeisenbank Rattiszell-Konzell eG,GENODEF1RZK,,hbci-fiducia-adapter,74369146,, -cb59069b-7090-40de-b435-533f39767225,HBCI Raiffeisenbank Regensburg-Wenzenbach eG,GENODEF1R02,,hbci-fiducia-adapter,75060150,, -189c5d29-480a-4423-9100-54033212c71d,HBCI Raiffeisenbank Regenstauf eG,GENODEF1REF,,hbci-fiducia-adapter,75061851,, -e7ef0c17-c041-4c29-92df-249ab7044f22,HBCI Raiffeisenbank Rehling eG,GENODEF1RLI,,hbci-fiducia-adapter,72069193,, -4aa243cd-388b-4ce6-834f-cda11d1d40db,HBCI Raiffeisenbank Reute-Gaisbeuren eG,GENODES1RRG,,hbci-fiducia-adapter,60069350,, -da6e263f-04c8-4f2f-b2f4-c71e6d6adaea,HBCI Raiffeisenbank Ried eG,GENODE51RBU,,hbci-fiducia-adapter,50961206,, -6a9314c7-ba1f-45ec-b223-a01f5b6e44e0,HBCI Raiffeisenbank Riedenburg-Lobsing eG,GENODEF1RBL,,hbci-fiducia-adapter,72169831,, -67fd21b9-c6ea-4663-9c03-a576013bc4ef,HBCI Raiffeisenbank Rosenstein eG,GENODES1HEU,,hbci-fiducia-adapter,61361722,, -a5d72e81-e6fc-47e1-a23c-f2f860035047,HBCI Raiffeisenbank Roth-Schwabach eG,GENODEF1SWR,,hbci-fiducia-adapter,76460015,, -853bb8b3-4e7b-4bec-8836-c1b92cc226e8,HBCI Raiffeisenbank RSA eG,GENODEF1RME,,hbci-fiducia-adapter,70169524,, -184b81f0-d0e1-4e57-964a-1ce953e84212,HBCI Raiffeisenbank Rupertiwinkel eG,GENODEF1TEI,,hbci-fiducia-adapter,70169191,, -ae6e9a8f-7a31-485d-9d20-76975ad96c7b,HBCI Raiffeisenbank Schaafheim eG,GENODE51SHM,,hbci-fiducia-adapter,50862835,, -c161e4d5-6dca-4abb-a9ba-03626e7a5a7f,HBCI Raiffeisenbank Schrobenhausener Land eG,GENODEF1WFN,,hbci-fiducia-adapter,72169246,, -88f40178-eb32-4abd-a513-6a5d2689f973,HBCI Raiffeisenbank Schrozberg- Rot am See eG,GENODES1SBB,,hbci-fiducia-adapter,60069595,, -2d83e8bb-75a2-431d-97fb-baea6867b34f,HBCI Raiffeisenbank Schwaben Mitte eG,GENODEF1BLT,,hbci-fiducia-adapter,72069736,, -d6d0c384-fc71-438e-9e6c-7123536031b9,HBCI Raiffeisenbank Schwabmünchen eG,GENODEF1SMU,,hbci-fiducia-adapter,72069220,, -664f6bc3-6570-4962-9329-2f605fc38792,HBCI Raiffeisenbank Seebachgrund eG,GENODEF1HSE,,hbci-fiducia-adapter,76069602,, -c63b2f25-cada-4ed7-a7fc-77b2462176f9,HBCI Raiffeisenbank Singoldtal eG,GENODEF1HUA,,hbci-fiducia-adapter,70169413,, -1c843bab-2e5d-4a04-bee4-762c8872ab14,HBCI Raiffeisenbank Sinzing eG,GENODEF1SZV,,hbci-fiducia-adapter,75069078,, -28c6bfc7-60d4-42cc-93e2-2b9fc47e6c00,HBCI Raiffeisenbank Sondelfingen eG,GENODES1RSF,,hbci-fiducia-adapter,60069147,, -2f296df3-b091-4dd2-af5d-6012ddd5d628,HBCI Raiffeisenbank St. Wolfgang-Schwindkirchen eG,GENODEF1SWO,,hbci-fiducia-adapter,70169538,, -eeca5219-f154-46c8-bdc6-ca858b189a23,HBCI Raiffeisenbank Stauden eG,GENODEF1LST,,hbci-fiducia-adapter,72069135,, -e1c076b1-db2f-4b9c-a8d8-df69e244665e,HBCI Raiffeisenbank Steingaden eG,GENODEF1SGA,,hbci-fiducia-adapter,70169558,, -75198022-1622-4b92-93aa-607b33b48725,HBCI Raiffeisenbank Steinheim eG,GENODES1SAA,,hbci-fiducia-adapter,60069158,, -603146e2-3d91-4fbf-b411-59af789bbc02,HBCI Raiffeisenbank Straubing eG,GENODEF1SR2,,hbci-fiducia-adapter,74260110,, -22da09af-e5c9-4d07-954e-3132136d8f24,HBCI Raiffeisenbank Strücklingen- Idafehn eG,GENODEF1ORF,,hbci-fiducia-adapter,28069052,, -8d769c1c-c3b6-46fa-b79c-87001f3b1b3b,HBCI Raiffeisenbank Südhardt eG,GENODE61DUR,,hbci-fiducia-adapter,66562053,, -b3da5174-bb05-44f8-abce-6c4c951832e3,HBCI Raiffeisenbank Südl. Bayerischer Wald eG,GENODEF1HZN,,hbci-fiducia-adapter,74066749,, -7993eba7-1319-410a-bfc0-00ada6e3b4c3,HBCI Raiffeisenbank Südliches Ostallgäu eG,GENODEF1RHP,,hbci-fiducia-adapter,73369933,, -44d0b1e9-7923-43b3-96ee-6719d8b67bed,HBCI Raiffeisenbank Südstormarn Mölln eG,GENODEF1GRS,,hbci-fiducia-adapter,20069177,, -a818db33-e667-4bef-b982-fdd2ebff226d,HBCI Raiffeisenbank Sulzbach-Rosenberg eG,GENODEF1SZH,,hbci-fiducia-adapter,75261700,, -283edb3f-8a99-4a67-90a0-8058ed2c7bce,HBCI Raiffeisenbank Taufkirchen-Oberneukirchen eG,GENODEF1TAE,,hbci-fiducia-adapter,70169568,, -06fe8592-30cf-44c3-99e5-30b69e701d5d,HBCI Raiffeisenbank Thannhausen eG,GENODEF1THS,,hbci-fiducia-adapter,72069235,, -42cbd712-91e0-4858-bb94-84edde717396,HBCI Raiffeisenbank Thurnauer Land eG,GENODEF1THA,,hbci-fiducia-adapter,77069739,, -09ec5f28-90d4-4f2b-8762-8c36262644ce,HBCI Raiffeisenbank Tüngental eG,GENODES1TUN,,hbci-fiducia-adapter,60069950,, -e6f9f75c-c454-450e-96d9-41f7fc6ae2a5,HBCI Raiffeisenbank Türkheim eG,GENODEF1TRH,,hbci-fiducia-adapter,70169575,, -e57a556b-d3cb-406b-9a2e-4c71dfac472b,HBCI Raiffeisenbank Ühlfeld-Dachsbach eG,GENODEF1DSB,,hbci-fiducia-adapter,76069404,, -dd413396-14aa-4fc8-8e86-4b71afa9de4f,HBCI Raiffeisenbank Unteres Inntal eG,GENODEF1NUI,,hbci-fiducia-adapter,74061564,, -d0ce84ee-8f85-469d-a4c9-220cc2d3667f,HBCI Raiffeisenbank Unteres Vilstal eG,GENODEF1SDM,,hbci-fiducia-adapter,76069611,, -4a7461a4-36d4-4c9b-a5a3-9068909452eb,HBCI Raiffeisenbank Unteres Zusamtal eG,GENODEF1BWI,,hbci-fiducia-adapter,72069179,, -426ca9fc-098c-4aae-97be-bfc92b85e6a9,HBCI Raiffeisenbank Volkacher Mainschleife - Wiesentheid eG,GENODEF1WED,,hbci-fiducia-adapter,79069001,, -a6fd0ab1-6fd1-4243-9fe4-4429a74859e0,HBCI Raiffeisenbank Volkmarsen eG,GENODEF1VLM,,hbci-fiducia-adapter,52069149,, -5e3f383f-8436-47a8-b984-9b58110536bb,HBCI Raiffeisenbank Vordersteinenberg eG,GENODES1RVS,,hbci-fiducia-adapter,60069455,, -05a7217b-ad36-4477-a700-2853c3b9eead,HBCI Raiffeisenbank Voreifel eG,GENODED1RBC,,hbci-fiducia-adapter,37069627,, -3a6251a1-37cf-4db8-a472-9a06e776fae5,HBCI Raiffeisenbank Waldaschaff-Heigenbrücken eG,GENODEF1WAA,,hbci-fiducia-adapter,79565568,, -7fd0190b-2536-428b-a313-67f2d9dde14f,HBCI Raiffeisenbank Wald-Görisried eG,GENODEF1WGO,,hbci-fiducia-adapter,73369954,, -220887e4-1c87-4262-b44b-cdb6fed02beb,HBCI Raiffeisenbank Wallgau-Krün eG,GENODEF1WAK,,hbci-fiducia-adapter,70362595,, -733da1bd-cada-4e7d-af23-056d31295797,HBCI Raiffeisenbank Wangen eG,GENODES1RWA,,hbci-fiducia-adapter,60069685,, -55c470d4-4e62-4de6-acdf-d21f1840dc32,HBCI Raiffeisenbank Wegscheid eG,GENODEF1WSD,,hbci-fiducia-adapter,74064593,, -dcf44613-a1cf-46fa-a671-b795cff28308,HBCI Raiffeisenbank Weißenburg-Gunzenhausen eG,GENODEF1GU1,,hbci-fiducia-adapter,76069468,, -89885a1b-a5ca-4320-a16f-0f63350a5d11,HBCI Raiffeisenbank Welling eG,GENODED1WLG,,hbci-fiducia-adapter,57069361,, -64be638e-a96e-42f5-96eb-ab5685c5fe32,HBCI Raiffeisenbank Werratal-Landeck eG,GENODEF1RAW,,hbci-fiducia-adapter,53261342,, -49eefda0-a60a-4fc5-a913-2668123d5855,HBCI Raiffeisenbank Wesermarsch-Süd eG,GENODEF1BRN,,hbci-fiducia-adapter,28061410,, -1bf8ce37-6987-42ea-821b-b2b37be40c8f,HBCI Raiffeisenbank Westallgäu eG,GENODEF1WWA,,hbci-fiducia-adapter,73369823,, -a3ec48cd-f0ad-4622-b769-c3317c5dd1e0,HBCI Raiffeisenbank Westeifel eG,GENODED1WSC,,hbci-fiducia-adapter,58661901,, -861846be-2c26-43de-aa1b-8ac2bff8bb43,HBCI Raiffeisenbank Westhausen eG,GENODES1RWN,,hbci-fiducia-adapter,60069544,, -a723e33e-bc35-45f7-a7b5-e20efc74fc6d,HBCI Raiffeisenbank Westkreis Fürstenfeldbruck eG,GENODEF1MOO,,hbci-fiducia-adapter,70169460,, -d261e0c1-feb2-4ca8-9312-9209406a5d80,HBCI Raiffeisenbank Wiesedermeer- Wiesede-Marcardsmoor eG,GENODEF1WWM,,hbci-fiducia-adapter,28069773,, -c0dab2f1-dfce-44bd-ba46-80edd71448d0,HBCI Raiffeisenbank Wimsheim-Mönsheim eG,GENODES1WIM,,hbci-fiducia-adapter,60661906,, -fe2aea8b-bb06-411f-a774-67ece7a4fe77,HBCI Raiffeisenbank Wüstenselbitz eG,GENODEF1WSZ,,hbci-fiducia-adapter,77069906,, -6ff8d99a-3a62-4ead-a138-ce99d2a9e382,HBCI Raiffeisenbank Wyhl eG,GENODE61WYH,,hbci-fiducia-adapter,68062730,, -6253d341-a23e-4da1-8527-01957808ce88,HBCI Raiffeisenbank Zeller Land eG,GENODED1BPU,,hbci-fiducia-adapter,58761343,, -5caa4a5e-0ef0-414b-b319-4e08bd6d2b9f,HBCI Raiffeisenbank Zorneding eG,GENODEF1ZOR,,hbci-fiducia-adapter,70169619,, -75ee637c-0cff-462f-9016-cb89a18eb6a8,HBCI Raiffeisenbank. Tattenhausen-Großkarolinenfeld eG,GENODEF1GKT,,hbci-fiducia-adapter,70169190,, -761842d1-dffc-4168-8511-f90baf9add9e,HBCI Raiffeisenkasse Erbes-Büdesheim und Umgebung eG,GENODE51ERB,,hbci-fiducia-adapter,50069241,, -f6c3ca04-0f0a-422e-89ef-11af204a1620,HBCI Raiffeisen-Volksbank Aschaffenburg eG,GENODEF1AB1,,hbci-fiducia-adapter,79562514,, -277b2aac-4fb5-4c95-a193-55ee4a5677ad,HBCI Raiffeisen-Volksbank Bad Staffelstein eG,GENODEF1SFF,,hbci-fiducia-adapter,77062139,, -41802d35-081f-49ec-b177-5b222c6c1f4a,HBCI Raiffeisen-Volksbank Donauwörth eG,GENODEF1DON,,hbci-fiducia-adapter,72290100,, -f6bebd24-b075-4605-b8e9-cb2061840b63,HBCI Raiffeisen-Volksbank Ebersberg eG,GENODEF1ASG,,hbci-fiducia-adapter,70169450,, -3011722f-5aa8-43b3-904e-1023071f146f,HBCI Raiffeisen-Volksbank eG,GENODEF1UPL,,hbci-fiducia-adapter,28562297,, -77cd168a-768d-4eb6-9585-f1bd56cb9dc0,HBCI Raiffeisen-Volksbank Fresena eG,GENODEF1MAR,,hbci-fiducia-adapter,28361592,, -201dcd20-de0e-44ec-ab67-7b9e967fe30f,HBCI Raiffeisen-Volksbank Haßberge eG,GENODEF1HAS,,hbci-fiducia-adapter,79363151,, -f17c3c7c-2c3c-4586-801d-b579aea769b5,HBCI Raiffeisen-Volksbank Hermsdorfer Kreuz eG,GENODEF1HMF,,hbci-fiducia-adapter,83064488,, -fcfbafb6-4ac4-490f-bdf6-d11220f5392b,HBCI Raiffeisen-Volksbank Neustadt eG,GENODEF1NST,,hbci-fiducia-adapter,25069262,, -e8c37aee-6b6b-48ee-8c76-7df7b7dfc949,HBCI Raiffeisen-Volksbank Oder-Spree eG,GENODEF1BKW,,hbci-fiducia-adapter,17062428,, -aabcdbad-f73a-417d-8fb2-8504e2c03a5a,HBCI Raiffeisen-Volksbank Ries eG,GENODEF1NOE,,hbci-fiducia-adapter,72069329,, -97ea79de-63d2-450a-b456-e4ff336aa5e5,HBCI Raiffeisen-Volksbank Tüssling-Unterneukirchen eG,GENODEF1TUS,,hbci-fiducia-adapter,70169576,, -36362fe6-1cb9-455a-a657-112b3fa6f39f,HBCI Raiffeisen-Volksbank Varel - Nordenham eG,GENODEF1VAR,,hbci-fiducia-adapter,28262673,, -4a1ce598-0ecd-46c1-bb1e-40a9621facc6,HBCI Raiffeisen-Volksbank Wemding eG,GENODEF1WDN,,hbci-fiducia-adapter,72069308,, -00bfc6fe-75bc-4968-aab9-a1912b22c28f,HBCI Rheingauer Volksbank eG,GENODE51RGG,,hbci-fiducia-adapter,51091500,, -dce5b10d-21c1-4a3d-9aff-bcdd705ae8a7,HBCI Rosbacher Raiffeisenbank eG,GENODED1WND,,hbci-fiducia-adapter,37069639,, -6b731de5-395f-4aa5-afe2-0784848f93ed,HBCI Rostocker Volks- und Raiffeisenbank eG,GENODEF1HR1,,hbci-fiducia-adapter,13090000,, -568d07af-22ae-4dd7-9ec2-08f171ef1df9,HBCI Rottaler Raiffeisenbank eG,GENODEF1POC,,hbci-fiducia-adapter,74067000,, -f22722ec-2073-4c4a-8496-1c4faeb7d6ef,HBCI RSB Retail+Service Bank GmbH,SABUDES1XXX,,hbci-fiducia-adapter,60422000,, -e39dd7b1-79f2-4324-8ce3-e164ff4e2cc1,HBCI Rüsselsheimer Volksbank eG,GENODE51RUS,,hbci-fiducia-adapter,50093000,, -ec563b73-2197-494f-bdb0-dd14778d20c5,HBCI Scharnhauser Bank eG,GENODES1SCA,,hbci-fiducia-adapter,60069517,, -a8c0d1d6-4e8a-4ab3-b83d-0549bef31523,HBCI Schrobenhausener Bank eG,GENODEF1SBN,,hbci-fiducia-adapter,72169218,, -58ca9f36-55b3-4712-8fc6-50e8300bcb05,HBCI Spar- u. Kredit-Bank eG,GENODEF1GMD,,hbci-fiducia-adapter,52069029,, -5c186f69-74cf-4f38-bc2f-edfdb4b79cf0,HBCI Spar- und Darlehnskasse Bockum-Hövel eG,GENODEM1HBH,,hbci-fiducia-adapter,41061011,, -fc92a807-81b9-448c-b112-cffbae262317,HBCI Spar- und Darlehnskasse Börde Lamstedt-Hechthausen eG,GENODEF1LAS,,hbci-fiducia-adapter,24162898,, -5c213da6-05ac-45ae-b947-f6320a5173bf,HBCI "Spar- und Darlehnskasse eG, Friesoythe",,hbci-https://www.spadaka-friesoythe.de/services_xs2a/bg13,fiducia-adapter,,, -dedec3ce-d974-447a-90b1-614c779c3c6f,HBCI Spar- und Kreditbank Bühlertal eG,GENODE61BHT,,hbci-fiducia-adapter,66261092,, -3f4d9af6-61e5-4521-86c2-b03059a861d3,HBCI Spar- und Kreditbank des Bundes Freier evangelischer Gemeinden eG,GENODEM1BFG,,hbci-fiducia-adapter,45260475,, -213e1343-2280-4770-b43f-130e79b1d3ef,HBCI "Spar- und Kreditbank eG, Hammah",,hbci-https://www.skb-hammah.de/services_xs2a/bg13,fiducia-adapter,,, -d8102295-7e04-48ae-9922-0a4fcb5fcd51,HBCI Spar- und Kreditbank Evangelisch-Freikirchlicher Gemeinden eG,GENODE51BH2,,hbci-fiducia-adapter,50092100,, -015a9de3-7e42-4959-839c-e4836277d6ad,HBCI Spar- und Kreditbank Rheinstetten eG,GENODE61RH2,,hbci-fiducia-adapter,66061407,, -069db369-a25b-4183-b524-6d41687c9078,HBCI Sparda-Bank Berlin eG,GENODEF1S10,,hbci-fiducia-adapter,12096597,, -59ed4a05-2f7d-4158-b753-0ce201017383,HBCI Sparda-Bank Hamburg eG,GENODEF1S11,,hbci-fiducia-adapter,20690500,, -d463d664-c442-404a-b043-287253b9524b,HBCI Sparda-Bank Hannover eG,GENODEF1S09,,hbci-fiducia-adapter,25090500,, -93d4dc98-d772-4263-a431-4e199260b644,HBCI Sparda-Bank Südwest eG,GENODEF1S01,,hbci-fiducia-adapter,55090500,, -389e5b30-38b9-4838-87fe-b44988a54696,HBCI Spreewaldbank eG,GENODEF1LN1,,hbci-fiducia-adapter,18092684,, -e1be4839-a6ab-457e-babd-6111667dc113,HBCI St. Galler Kantonalbank Deutschland AG,GAKDDEM1XXX,,hbci-fiducia-adapter,70032500,, -87207bff-cfbc-49e5-b8d5-3b4d2072e1c3,HBCI Steyler Bank GmbH,GENODED1STB,,hbci-fiducia-adapter,38621500,, -acc4bbe8-e426-4b8b-9d18-c4623a6f502f,HBCI Südtiroler Sparkasse AG Niederlassung München,SUSKDEM1XXX,,hbci-fiducia-adapter,70012600,, -57f8c06e-15c0-446f-8985-3095a000902d,HBCI Südwestbank AG,SWBSDESSXXX,,hbci-fiducia-adapter,60090700,, -cb4c06cc-1d92-4381-a9bc-94e3d8ea1922,HBCI Sylter Bank eG,GENODEF1SYL,,hbci-fiducia-adapter,21791805,, -10cab866-80e7-4fcf-8a6c-00a09c21ec46,HBCI Triodos Bank N.V. Deutschland,TRODDEF1XXX,,hbci-fiducia-adapter,50031000,, -3aab67c7-124d-46c3-8aa8-c28bfeff6b46,HBCI UNION-BANK AG,UNBNDE21XXX,,hbci-fiducia-adapter,21520100,, -fc7223d2-4782-496e-b34a-d2f2cc6a30a7,HBCI "VakifBank International AG, Wien ZN Deutschland",,hbci-https://www.onlinebanking-vakif-bank.de/services_xs2a/bg13,fiducia-adapter,,, -31f61e31-32b7-4770-832e-33a2438f8aa4,HBCI VBU Volksbank im Unterland eG,GENODES1VLS,,hbci-fiducia-adapter,62063263,, -cd9d0183-4077-4021-b51f-1fb7d15eaa4c,HBCI VerbundVolksbank OWL eG,DGPBDE3MXXX,,hbci-fiducia-adapter,47260121,, -b045822b-9e35-4300-8b84-3ed898864cfb,HBCI Vereinigte Raiffeisenbank Burgstädt eG,GENODEF1BST,,hbci-fiducia-adapter,87069077,, -f6963ffb-a5b1-4c3f-be5a-e274ef80309d,HBCI Vereinigte Raiffeisenbanken Gräfenberg-Forchheim- Eschenau-Heroldsberg eG,GENODEF1GBF,,hbci-fiducia-adapter,77069461,, -8dc8ef8c-1820-4c44-b8ff-a8bc941096e3,HBCI Vereinigte Volksbank eG Ganderkesee-Hude-Bookholzberg- Lemwerder,GENODEF1HUD,,hbci-fiducia-adapter,28062249,, -b03a1cf2-6127-4bf6-ac23-ad055bd3cde8,HBCI Vereinigte Volksbank eG Saarlouis - Losheim am See - Sulzbach/Saar,GENODE51SB2,,hbci-fiducia-adapter,59092000,, -49fb6b81-d772-4758-8b59-a5de61047e96,HBCI "Vereinigte Volksbank eG, Brakel",,hbci-https://www.v-vb.de/services_xs2a/bg13,fiducia-adapter,,, -7deffe6a-d0a0-4993-97ee-080a5f4bd517,HBCI "Vereinigte Volksbank Raiffeisenbank eG, Reinheim",,hbci-https://www.vvrb.de/services_xs2a/bg13,fiducia-adapter,,, -44bb5df7-1874-46cc-9030-53da712ad194,HBCI "Vereinigte Volksbank Raiffeisenbank eG, Wittlich",,hbci-https://www.vvr-bank.de/services_xs2a/bg13,fiducia-adapter,,, -2b2485bf-456c-4f53-bb11-e9563758a904,HBCI "Vereinigte Volksbanken eG, Sindelfingen",,hbci-https://www.diebank.de/services_xs2a/bg13,fiducia-adapter,,, -d1a8d61f-6098-4414-8479-993a1cae9474,HBCI "Vereinigte VR Bank eG, Wyk auf Föhr",,hbci-https://www.vereinigte-vrbk.de/services_xs2a/bg13,fiducia-adapter,,, -b4d2e105-72d6-45b2-b2ae-7a899f3049ff,HBCI Vereinigte VR Bank Kur- und Rheinpfalz eG,GENODE61SPE,,hbci-fiducia-adapter,54790000,, -572a1772-8e37-4a22-89af-b993c3929b90,HBCI Vereinte Volksbank eG,GENODEM1KIH,,hbci-fiducia-adapter,42461435,, -04e5bf5d-e1cb-469f-b305-55fb402b3734,HBCI Volks- und Raiffeisenbank eG,GENODEF1GUE,,hbci-fiducia-adapter,14061308,, -80415a66-1723-45a5-b829-6c1f702d6fdb,HBCI Volks- und Raiffeisenbank Fürstenwalde Seelow-Wriezen eG,GENODEF1FW1,,hbci-fiducia-adapter,17092404,, -36d8fcdd-d425-4588-b68e-d8e3dc64696d,HBCI Volks- und Raiffeisenbank Muldental eG,GENODEF1GMV,,hbci-fiducia-adapter,86095484,, -0a0e9618-9f57-41c5-aec8-aebdcb12335b,HBCI Volks- und Raiffeisenbank Prignitz eG,GENODEF1PER,,hbci-fiducia-adapter,16060122,, -3446fa0c-0035-46a8-ac1d-7edabe825e1a,HBCI Volks- und Raiffeisenbank Saale-Unstrut eG,GENODEF1NMB,,hbci-fiducia-adapter,80063648,, -513cbee5-a9ae-44f0-bce2-eff9fcd93eb6,HBCI Volks- und Raiffeisenbank Saarpfalz eG,GENODE51BEX,,hbci-fiducia-adapter,59291200,, -3fceac22-ebe3-434c-ad8c-8935f0435b3f,HBCI Volksbank - Raiffeisenbank Vilshofen eG,GENODEF1VIR,,hbci-fiducia-adapter,74062490,, -e828c399-9ad3-443b-b06b-6dd3b2e431db,HBCI Volksbank Albstadt eG,GENODES1EBI,,hbci-fiducia-adapter,65390120,, -2bf72c75-c6f0-4070-a44b-9aa63313a14e,HBCI Volksbank Aller-Weser eG,GENODEF1HOY,,hbci-fiducia-adapter,25663584,, -4602156c-7195-417b-ba29-dba9718e609d,HBCI Volksbank Allgäu-Oberschwaben eG,GENODES1LEU,,hbci-fiducia-adapter,65091040,, -a4fd6683-3ba8-4d80-90c7-c2eec3f97b1e,HBCI Volksbank Altshausen eG,GENODES1VAH,,hbci-fiducia-adapter,65092200,, -dee6bc8f-17a0-4241-80d8-7725120fa003,HBCI Volksbank Alzey-Worms eG,GENODE61AZY,,hbci-fiducia-adapter,55091200,, -cb554b34-a2c9-487f-82e6-03d8ff6e8852,HBCI Volksbank am Württemberg eG,GENODES1UTV,,hbci-fiducia-adapter,60060396,, -6fd6480f-893b-465c-b863-532f563c2d3e,HBCI Volksbank Ammerbuch eG,GENODES1AMM,,hbci-fiducia-adapter,64161397,, -72f0bbf6-157a-4446-bb36-5eac4b3efbc3,HBCI Volksbank an der Niers eG,GENODED1GDL,,hbci-fiducia-adapter,32061384,, -b4111cc9-956e-4dc2-b7ed-f4a148229497,HBCI Volksbank Anröchte eG,GENODEM1ANR,,hbci-fiducia-adapter,41661206,, -41af25b4-db9a-4c55-8099-9d9ee6d50dd6,HBCI Volksbank Ascheberg-Herbern eG,GENODEM1CAN,,hbci-fiducia-adapter,40069601,, -8bea3e05-d35c-4715-b752-92808cad7016,HBCI Volksbank Backnang eG,GENODES1VBK,,hbci-fiducia-adapter,60291120,, -c21b5032-fae0-4617-81d4-3152ee2acdcc,HBCI Volksbank Bad Salzuflen eG,GENODEM1BSU,,hbci-fiducia-adapter,48291490,, -5b434653-a959-4492-8691-5c7610974a63,HBCI Volksbank Bad Saulgau eG,GENODES1SLG,,hbci-fiducia-adapter,65093020,, -69fdac6d-4428-4cb1-b60d-ba3753561a80,HBCI Volksbank Baden-Baden Rastatt eG,VBRADE6KXXX,,hbci-fiducia-adapter,66290000,, -c9691d36-c837-4ffa-8989-301737fe7008,HBCI Volksbank Bakum eG,GENODEF1BAM,,hbci-fiducia-adapter,28063607,, -a8fa6f35-959a-44b7-beb2-a55365e30216,HBCI Volksbank Baumberge eG,GENODEM1BAU,,hbci-fiducia-adapter,40069408,, -b6545f86-c785-477b-96c3-5a71da3a37a0,HBCI Volksbank Beckum-Lippstadt eG,GENODEM1LPS,,hbci-fiducia-adapter,41660124,, -efbe4a5d-d8d6-44cf-9f15-2037887a63df,HBCI Volksbank Beilstein-Ilsfeld- Abstatt eG,GENODES1BIA,,hbci-fiducia-adapter,62062215,, -94dec651-5738-4d48-81e1-5fd448b7d468,HBCI Volksbank Berg eG,GENODED1RKO,,hbci-fiducia-adapter,37069125,, -006fb61c-89fd-483a-9cdd-5061dd95a2e1,HBCI Volksbank Bielefeld-Gütersloh eG,GENODEM1GTL,,hbci-fiducia-adapter,47860125,, -3ade8779-bb50-4f21-ba20-001cf186b731,HBCI Volksbank Bigge-Lenne eG,GENODEM1SMA,,hbci-fiducia-adapter,46062817,, -f83338b9-83dd-4f96-b3f9-3806cbf03548,HBCI Volksbank Blaubeuren eG,GENODES1BLA,,hbci-fiducia-adapter,63091200,, -c4ccd783-62fe-4a82-a04d-f012710633e6,HBCI Volksbank Bocholt eG,GENODEM1BOH,,hbci-fiducia-adapter,42860003,, -4b861060-8f67-4c54-9ba0-8af45bba06b1,HBCI Volksbank Bochum Witten eG,GENODEM1BOC,,hbci-fiducia-adapter,43060129,, -535361bf-c78e-4699-aede-5308431b0ba5,HBCI Volksbank Bönen eG,GENODEM1BO1,,hbci-fiducia-adapter,41062215,, -c694debc-7b6d-4373-a6fc-d4e72644c949,HBCI Volksbank Börde-Bernburg eG,GENODEF1WZL,,hbci-fiducia-adapter,81069052,, -e2342b49-d6b6-4413-ac3d-908e42a04829,HBCI Volksbank Börßum-Hornburg eG,GENODEF1BOH,,hbci-fiducia-adapter,27062290,, -0c76513b-f934-4781-8631-493d70fae0bc,HBCI Volksbank Bösel eG,GENODEF1BSL,,hbci-fiducia-adapter,28062913,, -76895960-d768-4c6b-acdb-5dd6be1d6ddc,HBCI Volksbank Bramgau-Wittlage eG,GENODEF1WHO,,hbci-fiducia-adapter,26563960,, -c481e7db-776b-4cc8-9f52-0ef9f0e25660,HBCI Volksbank Brandoberndorf eG,GENODE51WBO,,hbci-fiducia-adapter,51591300,, -7ea80c6e-74d3-443f-b609-304bfb644736,HBCI Volksbank Braunlage eG,GENODEF1BLG,,hbci-fiducia-adapter,27893359,, -e862e2da-60d1-48b9-9249-e8f147a3ffd2,HBCI Volksbank Breisgau- Markgräflerland eG,GENODE61IHR,,hbci-fiducia-adapter,68061505,, -2b5e9045-9aa2-43c3-8f86-bdd5d8342e02,HBCI Volksbank Breisgau Nord eG,GENODE61EMM,,hbci-fiducia-adapter,68092000,, -56294c0e-4b4a-49a0-8805-132935e00ccd,HBCI Volksbank Bremen-Nord eG,GENODEF1HB2,,hbci-fiducia-adapter,29190330,, -a3bca2fb-da71-4d2f-a952-a74dcfece33c,HBCI Volksbank Brenztal eG,GENODES1RNS,,hbci-fiducia-adapter,60069527,, -7b52604d-e3ad-4201-bded-799793e53827,HBCI Volksbank Brilon-Büren-Salzkotten eG,GENODEM1BUS,,hbci-fiducia-adapter,47261603,, -2fafb332-ef0b-444c-a70a-5414be67dbde,HBCI Volksbank Bruchsal-Bretten eG,GENODE61BTT,,hbci-fiducia-adapter,66391200,, -0e0fca4b-5f57-47d8-b0fd-71b9dd3eca98,HBCI Volksbank Bruhrain-Kraich-Hardt eG,GENODE61ORH,,hbci-fiducia-adapter,66391600,, -97ec3f7c-9975-4ff8-bf49-70d04fb3200f,HBCI Volksbank Bühl eG,GENODE61BHL,,hbci-fiducia-adapter,66291400,, -8cb32796-e1d4-497e-97b7-6e55c311f68b,HBCI Volksbank Butzbach eG,GENODE51BUT,,hbci-fiducia-adapter,51861403,, -1ef9d925-0327-4ead-8b22-cbda64e9f46c,HBCI Volksbank Chemnitz eG,GENODEF1CH1,,hbci-fiducia-adapter,87096214,, -063051b3-8e6f-4bb5-af87-7efef4ad9e02,HBCI Volksbank Daaden eG,GENODE51DAA,,hbci-fiducia-adapter,57391200,, -9906322a-2c81-464f-a915-f91ec9689a38,HBCI Volksbank Dammer Berge eG,GENODEF1DAM,,hbci-fiducia-adapter,28061679,, -878eb49a-384b-4943-98e5-066552c8d9c4,HBCI Volksbank Darmstadt - Südhessen eG,GENODEF1VBD,,hbci-fiducia-adapter,50890000,, -bf29045b-e4fc-435b-b919-f9c52048d524,HBCI Volksbank Deisslingen eG,GENODES1VDL,,hbci-fiducia-adapter,64291420,, -fe976958-6393-4cea-920c-1689ae20f4ae,HBCI Volksbank Delbrück-Hövelhof eG,GENODEM1DLB,,hbci-fiducia-adapter,47262703,, -c8e75950-2249-4f96-abf3-29aecbc38c26,HBCI Volksbank Delitzsch eG,GENODEF1DZ1,,hbci-fiducia-adapter,86095554,, -af536cc9-1428-41c6-b72d-2b760291639d,HBCI Volksbank Demmin eG,GENODEF1DM1,,hbci-fiducia-adapter,15091674,, -f58ceba1-9d5d-4fd3-aa17-6c3424cfa146,HBCI Volksbank Dessau-Anhalt eG,GENODEF1DS1,,hbci-fiducia-adapter,80093574,, -d83ac5cb-9634-4b6d-a53e-fb7a667e6a79,HBCI Volksbank Dettenhausen eG,GENODES1DEH,,hbci-fiducia-adapter,60069378,, -733d78cd-4259-454c-b54b-35d523727b7d,HBCI Volksbank Dortmund-Nordwest eG,GENODEM1DNW,,hbci-fiducia-adapter,44060122,, -24289d2a-0269-4416-8798-2ea0164602a1,HBCI Volksbank Dreieich eG,GENODE51DRE,,hbci-fiducia-adapter,50592200,, -510af30e-d056-439d-87cf-c1245f77a84d,HBCI Volksbank Dreiländereck eG,VOLODE66XXX,,hbci-fiducia-adapter,68390000,, -ebc75380-17d9-42fb-9e63-db3a1025d1e3,HBCI Volksbank Dresden-Bautzen eG,GENODEF1DRS,,hbci-fiducia-adapter,85090000,, -8b4d88b8-22a3-497a-a443-880822410a56,HBCI Volksbank Dünnwald-Holweide eG,GENODED1DHK,,hbci-fiducia-adapter,37069427,, -2ca30540-1253-4eec-9c3b-60fb207e0569,HBCI Volksbank Düren eG,GENODED1DUE,,hbci-fiducia-adapter,39560201,, -0b082031-91ff-4cb6-8e90-7dbffedccb27,HBCI Volksbank Düsseldorf Neuss eG,GENODED1DNE,,hbci-fiducia-adapter,30160213,, -7e61c6e4-c953-4b7d-b22f-7b6d0280ba01,HBCI Volksbank eG - Die Gestalterbank,GENODE61OG1,,hbci-fiducia-adapter,66490000,, -86118857-cedb-4987-99d5-1c55dddba9e1,HBCI Volksbank eG Bad Laer-Borgloh-Hilter-Melle,GENODEF1HTR,,hbci-fiducia-adapter,26562490,, -aaf50991-084d-4240-ade0-55da5e0df9b7,HBCI Volksbank eG Braunschweig Wolfsburg,GENODEF1WOB,,hbci-fiducia-adapter,26991066,, -5ee583b2-ff8e-4b19-88f6-32c9033e50f3,HBCI Volksbank eG Bremerhaven-Cuxland,GENODEF1BEV,,hbci-fiducia-adapter,29265747,, -188e7493-3978-4223-aa04-026d6c233f7b,HBCI Volksbank eG Delmenhorst Schierbrok,GENODEF1GSC,,hbci-fiducia-adapter,28067170,, -d47edde2-a19e-481e-83dd-2c1f4725268f,HBCI Volksbank eG Gera · Jena · Rudolstadt,GENODEF1RUJ,,hbci-fiducia-adapter,83094454,, -f1ac96a0-c7d9-4403-b2dc-3d98293f04bc,HBCI Volksbank eG im Kreis Freudenstadt,GENODES1FDS,,hbci-fiducia-adapter,64291010,, -5c9141cf-2cfd-4bd7-be0f-a4c917b82cef,HBCI Volksbank eG Konstanz,GENODE61RAD,,hbci-fiducia-adapter,69291000,, -4199ef78-ed86-45f3-91d6-4b953c8d1435,HBCI Volksbank eG Mosbach,GENODE61MOS,,hbci-fiducia-adapter,67460041,, -e640ed91-0e57-4c12-9d26-dc78dca65919,HBCI Volksbank eG Osterholz-Scharmbeck,GENODEF1OHZ,,hbci-fiducia-adapter,29162394,, -1d1c3419-d3aa-45d8-bb20-d475ed18e21d,HBCI Volksbank eG Südheide - Isenhagener Land - Altmark,GENODEF1HMN,,hbci-fiducia-adapter,25791635,, -6fbb75d7-9029-492f-b210-ac07d61634b7,HBCI Volksbank eG Westrhauderfehn,GENODEF1WRH,,hbci-fiducia-adapter,28591654,, -3ae24376-328d-4a9e-8b4c-214f87bc1cdf,HBCI Volksbank eG Wümme-Wieste,GENODEF1SUM,,hbci-fiducia-adapter,29165681,, -07a78b5d-905f-480a-a1f8-802e83618707,HBCI "Volksbank eG, Adelebsen",,hbci-https://www.volksbank-adelebsen.de/services_xs2a/bg13,fiducia-adapter,,, -ad8d5492-cc25-4d03-b04e-6d1bf1df9ebc,HBCI "Volksbank eG, Fredenbeck",,hbci-https://www.vbfoa.de/services_xs2a/bg13,fiducia-adapter,,, -84d6a53e-23a3-4bf5-afca-637be5d8e1d6,HBCI "Volksbank eG, Gardelegen",,hbci-https://www.volksbank-gardelegen.de/services_xs2a/bg13,fiducia-adapter,,, -69f263c1-39a8-471e-9ce7-940a84525abc,HBCI "Volksbank eG, Grebenhain",,hbci-https://www.vb-grebenhain.de/services_xs2a/bg13,fiducia-adapter,,, -596941e2-d7dc-4989-8328-810a0c1d2f5f,HBCI "Volksbank eG, Hildesheim-Lehrte-Pattensen",,hbci-https://www.vb-eg.de/services_xs2a/bg13,fiducia-adapter,,, -e622e191-8723-40de-bed0-bcca374e80d5,HBCI "Volksbank eG, Köthen-Bitterfeld",,hbci-https://www.vb-abi.de/services_xs2a/bg13,fiducia-adapter,,, -525abe51-3914-4c61-a6b2-6b74c54aa3f0,HBCI "Volksbank eG, Löningen",,hbci-https://www.vbloeningen.de/services_xs2a/bg13,fiducia-adapter,,, -d84f6428-0983-4f45-a158-19e3639b4816,HBCI "Volksbank eG, Nienburg",,hbci-https://www.vbnienburg.de/services_xs2a/bg13,fiducia-adapter,,, -2a6d5033-664d-4a27-b0a5-bd484204633a,HBCI "Volksbank eG, Sangerhausen",,hbci-https://www.volksbank-sangerhausen.de/services_xs2a/bg13,fiducia-adapter,,, -47bc6cce-4108-4720-93e0-a6ad85139703,HBCI "Volksbank eG, Seesen",,hbci-https://www.myvoba.com/services_xs2a/bg13,fiducia-adapter,,, -75a9eb0a-81c7-4b53-82d7-ffc56b230388,HBCI "Volksbank eG, Sulingen",,hbci-https://www.volksbanksulingen.de/services_xs2a/bg13,fiducia-adapter,,, -6063edc9-c712-4a36-845a-e624d7ac73a6,HBCI "Volksbank eG, Syke",,hbci-https://www.volksbank-syke.de/services_xs2a/bg13,fiducia-adapter,,, -58271036-6563-490c-8635-9d7aa2e0f784,HBCI "Volksbank eG, Überlingen",,hbci-https://www.volksbank-ueberlingen.de/services_xs2a/bg13,fiducia-adapter,,, -88e53bba-ed81-425b-ae5d-8e8787c8b853,HBCI "Volksbank eG, Warendorf",,hbci-https://www.volksbank-eg.de/services_xs2a/bg13,fiducia-adapter,,, -a61e4bfa-f034-4b6f-bea8-d0a3a4353e13,HBCI "Volksbank eG, Wolfenbüttel",,hbci-https://www.volksbank-mit-herz.de/services_xs2a/bg13,fiducia-adapter,,, -8ed6eb5e-b93b-4e0b-a77c-bd6975bc222d,HBCI Volksbank Eifel eG,GENODED1BIT,,hbci-fiducia-adapter,58660101,, -ac43f3d8-83f9-4cdd-9864-36550f69b7aa,HBCI Volksbank Eisenberg eG,GENODEF1ESN,,hbci-fiducia-adapter,83094494,, -b5b2528a-6138-4899-8ebc-b140ff672fdd,HBCI Volksbank Elsen-Wewer-Borchen eG,GENODEM1EWB,,hbci-fiducia-adapter,47260234,, -ecef0eb0-91e7-4703-881c-cf59b86b5d28,HBCI Volksbank Elsterland eG,GENODEF1JE1,,hbci-fiducia-adapter,80062608,, -28dd3224-3f1b-4d7c-9058-dc88b9b997df,HBCI Volksbank Emmerich-Rees eG,GENODED1EMR,,hbci-fiducia-adapter,35860245,, -2278b469-9373-4d1e-b72d-159cef353b31,HBCI Volksbank Emstal eG,GENODEF1LTH,,hbci-fiducia-adapter,28069991,, -0a5708c5-7c64-40a6-90ec-79cce5026b1f,HBCI Volksbank Emstek eG,GENODEF1EMK,,hbci-fiducia-adapter,28069109,, -fbba1c72-73c0-4c76-a6dd-be751c1a68d8,HBCI Volksbank Enniger-Ostenfelde-Westkirchen eG,GENODEM1EOW,,hbci-fiducia-adapter,41261324,, -80dfe77f-55ee-4128-8a5a-04c7d32fa366,HBCI Volksbank Erft eG,GENODED1ERE,,hbci-fiducia-adapter,37069252,, -0dd11abb-d864-4d66-989f-836393388f62,HBCI Volksbank Erle eG,GENODEM1ERR,,hbci-fiducia-adapter,40069606,, -48e80166-feb5-4cc0-a220-60bba0b90550,HBCI Volksbank Ermstal-Alb eG,GENODES1MTZ,,hbci-fiducia-adapter,64091200,, -ec2ff510-f07d-46f8-afeb-a6391f10bd55,HBCI Volksbank Esens eG,GENODEF1ESE,,hbci-fiducia-adapter,28291551,, -684f2dab-b4a4-4861-8a4d-3c35d91628f2,HBCI Volksbank Essen-Cappeln eG,GENODEF1ESO,,hbci-fiducia-adapter,28063526,, -24dfd3fc-d540-4eb3-bc03-4b98e1e63ced,HBCI Volksbank Ettlingen eG,GENODE61ETT,,hbci-fiducia-adapter,66091200,, -458dd1d3-2f26-404a-a421-23eac00843ca,HBCI Volksbank Euskirchen eG,GENODED1EVB,,hbci-fiducia-adapter,38260082,, -055c0f04-788b-4c9c-bea5-acc2903eacbf,HBCI Volksbank Eutin Raiffeisenbank eG,GENODEF1EUT,,hbci-fiducia-adapter,21392218,, -ac3fd8b6-3ce3-47dd-bbd2-41aac98d74aa,HBCI Volksbank Feldatal eG,GENODE51FEL,,hbci-fiducia-adapter,51961801,, -48a156ac-e761-4f58-83ea-6ee8875bcdb1,HBCI Volksbank Filder eG,GENODES1NHB,,hbci-fiducia-adapter,61161696,, -c091c691-41e3-4e55-b275-77defe513292,HBCI Volksbank Flein-Talheim eG,GENODES1VFT,,hbci-fiducia-adapter,62062643,, -75ee1043-05c8-4c5c-baa6-6daa28a1554a,HBCI Volksbank Franken eG,GENODE61BUC,,hbci-fiducia-adapter,67461424,, -037008db-19ac-4609-85f2-2140a8cad427,HBCI Volksbank Freiburg eG,GENODE61FR1,,hbci-fiducia-adapter,68090000,, -015e3b50-c2b8-4dcb-ba64-276d18d0c292,HBCI Volksbank Friedrichshafen-Tettnang eG,GENODES1TET,,hbci-fiducia-adapter,65191500,, -a1cc3f15-5dcb-4b92-8169-ec4aa3f943e4,HBCI Volksbank Gebhardshain eG,GENODED1GBS,,hbci-fiducia-adapter,57361476,, -c699c467-72df-4297-aa93-5e3598552cad,HBCI Volksbank Geest eG,GENODEF1APE,,hbci-fiducia-adapter,20069782,, -95438931-44d0-49f3-9d0e-cf10073cf244,HBCI Volksbank Geeste-Nord eG,GENODEF1BRV,,hbci-fiducia-adapter,29262722,, -40a6de7d-86de-42ea-b808-e05b8c4ed898,HBCI Volksbank Gemen eG,GENODEM1BOG,,hbci-fiducia-adapter,42861515,, -804afad6-b5be-4948-b1d9-7d4430a5b4c5,HBCI Volksbank Gescher eG,GENODEM1GE1,,hbci-fiducia-adapter,40164901,, -32c2a3a0-7691-4974-ad35-871b81633ab8,HBCI Volksbank Glan-Münchweiler eG,GENODE61GLM,,hbci-fiducia-adapter,54092400,, -6347bab7-38b6-43b0-91d5-43ee3f9d7fef,HBCI Volksbank GMHütte-Hagen-Bissendorf eG,GENODEF1HGM,,hbci-fiducia-adapter,26565928,, -057a4da4-bc2a-4a60-bc35-1ecc46089bf8,HBCI Volksbank Göppingen eG,GENODES1VGP,,hbci-fiducia-adapter,61060500,, -c023fbda-c5bc-4439-a16b-d94cf3f9c27b,HBCI Volksbank Gronau-Ahaus eG,GENODEM1GRN,,hbci-fiducia-adapter,40164024,, -c5e90202-726c-4682-9c0b-cb1511beb961,HBCI Volksbank Haaren eG,GENODED1HAW,,hbci-fiducia-adapter,37069330,, -1024066c-67aa-49f7-a8a1-4a063d45152f,HBCI Volksbank Halle (Saale) eG,GENODEF1HAL,,hbci-fiducia-adapter,80093784,, -565914a7-2a15-4367-8a93-308be82052b8,HBCI Volksbank Halle/Westf. eG,GENODEM1HLW,,hbci-fiducia-adapter,48062051,, -1739e5ef-1aab-4edc-9675-241c87fe796d,HBCI Volksbank Hameln-Stadthagen eG,GENODEF1HMP,,hbci-fiducia-adapter,25462160,, -88063aa9-ae89-4595-900f-116247c07c03,HBCI Volksbank Hamm / Sieg eG,GENODE51HAM,,hbci-fiducia-adapter,57391500,, -c9b6f7f0-1948-43b2-ae22-04200f1944c3,HBCI Volksbank Haselünne eG,GENODEF1HLN,,hbci-fiducia-adapter,26661380,, -94807ce1-f72b-4759-8107-c145bfded42e,HBCI Volksbank Heiden eG,GENODEM1HEI,,hbci-fiducia-adapter,42861608,, -f81ee3e5-cd0e-4d42-a4b0-bb118cd51991,HBCI Volksbank Heilbronn eG,GENODES1VHN,,hbci-fiducia-adapter,62090100,, -04c7b844-6cf2-4ed0-810b-f8a174d9ed5c,HBCI Volksbank Heimbach eG,GENODED1HMB,,hbci-fiducia-adapter,37069342,, -2de7dda3-ebf4-4eff-a30d-7627d4c3bca0,HBCI Volksbank Heinsberg eG,GENODED1HRB,,hbci-fiducia-adapter,37069412,, -cc71b9d9-9f69-4b4d-8b36-bba975d61a41,HBCI Volksbank Hellweg eG,GENODEM1SOE,,hbci-fiducia-adapter,41460116,, -de580965-a1fe-4758-9690-5b63cb6498b0,HBCI Volksbank Herford-Mindener Land eG,GENODEM1HFV,,hbci-fiducia-adapter,49490070,, -25e6c1b9-95d7-4d43-9432-2414d3dd3675,HBCI Volksbank Herrenberg-Nagold- Rottenburg eG,GENODES1VBH,,hbci-fiducia-adapter,60391310,, -1b08f3e8-01fd-4e31-a3b4-252d28942ebe,HBCI Volksbank Heuchelheim eG,GENODE51HHE,,hbci-fiducia-adapter,51361021,, -32c6bc5d-863b-4189-8ad4-4e50326802d0,HBCI Volksbank Hochrhein eG,GENODE61WT1,,hbci-fiducia-adapter,68492200,, -7229a7d3-2c37-43c9-8cd6-554d6bc9416d,HBCI Volksbank Hohenlimburg eG,GENODEM1HLH,,hbci-fiducia-adapter,45061524,, -6ed837b7-9bcf-4d23-98ff-9974615f3a88,HBCI Volksbank Hohenlohe eG,GENODES1VHL,,hbci-fiducia-adapter,62091800,, -a192e028-fd11-4e7f-a6c4-fc93be703716,HBCI Volksbank Hohenzollern-Balingen eG,GENODES1VHZ,,hbci-fiducia-adapter,64163225,, -71feda45-5147-466a-9928-5d9cada01ca7,HBCI Volksbank Hunsrück-Nahe eG,GENODED1KHK,,hbci-fiducia-adapter,56061472,, -158527b6-876a-4f97-8617-e6030d8e5312,HBCI Volksbank im Bergischen Land eG,VBRSDE33XXX,,hbci-fiducia-adapter,34060094,, -a624e3b8-56af-46df-be71-d1dca56a2228,HBCI Volksbank im Harz eG,GENODEF1OHA,,hbci-fiducia-adapter,26891484,, -c2252f68-1e5a-44c5-beef-1b425fb1eb9d,HBCI Volksbank im Hochsauerland eG,GENODEM1MAS,,hbci-fiducia-adapter,40069266,, -0f90cf50-d712-4aeb-9a4f-86a4fa820364,HBCI Volksbank im Wesertal eG,GENODEF1COP,,hbci-fiducia-adapter,25462680,, -0f2ead3e-73a7-4629-980d-660b342efd95,HBCI Volksbank Immenstadt eG,GENODEF1IMV,,hbci-fiducia-adapter,73392000,, -f086e737-e6bf-4cae-9382-8755ec32f135,HBCI Volksbank in der Hohen Mark eG,GENODEM1DLR,,hbci-fiducia-adapter,40069709,, -4339d08a-ffd2-4dfe-a550-b6348d0e23b2,HBCI Volksbank in Schaumburg eG,GENODEF1BCK,,hbci-fiducia-adapter,25591413,, -4764520f-2dee-40e7-8526-83225197537b,HBCI Volksbank in Südwestfalen eG,GENODEM1NRD,,hbci-fiducia-adapter,44761534,, -89f094c8-18dc-4e5a-bb0d-8d5158d977e6,HBCI Volksbank Jerichower Land eG,GENODEF1BRG,,hbci-fiducia-adapter,81063238,, -b1378a71-9ed6-45c0-bbe6-b9b6f87ef2c9,HBCI Volksbank Jever eG,GENODEF1JEV,,hbci-fiducia-adapter,28262254,, -9a7d6449-0739-490b-b35b-c873dedad0ae,HBCI Volksbank Kaiserslautern eG,GENODE61KL1,,hbci-fiducia-adapter,54090000,, -28ecf3dc-fcb4-4a25-85a6-7ed276421d67,HBCI Volksbank Kamen-Werne eG,GENODEM1KWK,,hbci-fiducia-adapter,44361342,, -f0665028-75f0-4501-a302-98f40199d17a,HBCI Volksbank Karlsruhe eG,GENODE61KA1,,hbci-fiducia-adapter,66190000,, -a7955b85-324c-4b32-8036-7b67676f3b4d,HBCI Volksbank Kassel Göttingen eG,GENODE51KS1,,hbci-fiducia-adapter,52090000,, -606b8a10-8777-4984-8a8f-8473f93bd918,HBCI Volksbank Kempen-Grefrath eG,GENODED1KMP,,hbci-fiducia-adapter,32061414,, -97932077-3b92-43ac-9a97-64e80bb53d77,HBCI Volksbank Kierspe eG,GENODEM1KIE,,hbci-fiducia-adapter,45861434,, -42adf91b-8fc4-4a68-a9f1-f2c722abae01,HBCI Volksbank Kirnau eG,GENODE61RNG,,hbci-fiducia-adapter,67461733,, -99dd5b5d-d6fb-4ce4-8dc6-1c6f780fc445,HBCI Volksbank Klettgau-Wutöschingen eG,GENODE61WUT,,hbci-fiducia-adapter,68462427,, -22cc530d-dca1-4ef2-9bfd-751a3fc14410,HBCI Volksbank Kleverland eG,GENODED1KLL,,hbci-fiducia-adapter,32460422,, -21df3a34-6343-40af-8901-1f677b23745f,HBCI Volksbank Köln Bonn eG,GENODED1BRS,,hbci-fiducia-adapter,38060186,, -4fffe5ff-0b95-444c-bc8b-ebe763ae68d0,HBCI Volksbank Kraichgau eG,GENODE61WIE,,hbci-fiducia-adapter,67292200,, -9ddf0d21-2a41-400a-90fc-fa2e5e1d86fc,HBCI Volksbank Krautheim eG,GENODE61KTH,,hbci-fiducia-adapter,66069342,, -9767ed5a-7acf-4e34-931b-bc6e6a4ba15b,HBCI Volksbank Krefeld eG,GENODED1HTK,,hbci-fiducia-adapter,32060362,, -0a1db664-d97e-4d7f-8489-7d0024e8b30c,HBCI Volksbank Kurpfalz eG,GENODE61WNM,,hbci-fiducia-adapter,67092300,, -8f716842-0211-4434-ae05-f6972585defb,HBCI Volksbank Lahr eG,GENODE61LAH,,hbci-fiducia-adapter,68290000,, -08ff9809-5b93-4809-accc-30bc5243d9c3,HBCI Volksbank Laichinger Alb eG,GENODES1LAI,,hbci-fiducia-adapter,63091300,, -f3916c36-b5cc-425c-86e0-4c4dca1d371f,HBCI Volksbank Langendernbach eG,GENODE51LDD,,hbci-fiducia-adapter,51161606,, -c73c98b0-4c21-4c92-be7b-ba4c813908c2,HBCI Volksbank Lastrup eG,GENODEF1LAP,,hbci-fiducia-adapter,28067257,, -12cc6f58-ee98-480b-ad3b-4befe4e3b36f,HBCI Volksbank Lauterbach-Schlitz eG,GENODE51LB1,,hbci-fiducia-adapter,51990000,, -d5bcb187-e1a1-45db-a5cf-cb1f07538026,HBCI Volksbank Lauterecken eG,GENODE61LEK,,hbci-fiducia-adapter,54091700,, -433358e9-9365-42c5-a4fb-d009c270a4a7,HBCI Volksbank Leonberg-Strohgäu eG,GENODES1LEO,,hbci-fiducia-adapter,60390300,, -ab1de1a9-a629-4eb2-83a2-a9ae74d1fe16,HBCI Volksbank Limbach eG,GENODE61LMB,,hbci-fiducia-adapter,67462368,, -7fad78e2-bf90-41e2-a7a0-fcca173b90f4,HBCI Volksbank Lindenberg eG,GENODEF1LIA,,hbci-fiducia-adapter,73369826,, -2a66c4b4-5ac4-4711-b901-73ff5924ca97,HBCI Volksbank Lingen eG,GENODEF1LIG,,hbci-fiducia-adapter,26660060,, -2ca1bf27-a41d-4812-b5d0-8aed660cd289,HBCI Volksbank Löbau-Zittau eG,GENODEF1NGS,,hbci-fiducia-adapter,85590100,, -8ffd4f46-88f0-48d8-b4e6-f7566fd96719,HBCI Volksbank Lohne-Mühlen eG,GENODEF1LON,,hbci-fiducia-adapter,28062560,, -57e869e5-3b19-4e78-88d9-15e1265d5b7f,HBCI Volksbank Lübbecker Land eG,GENODEM1LUB,,hbci-fiducia-adapter,49092650,, -6776669f-7bdb-4755-aa35-a61198131f64,HBCI Volksbank Lübeck eG,GENODEF1HLU,,hbci-fiducia-adapter,23090142,, -210ecd9e-b0ea-44cb-8039-78f8eda07b05,HBCI Volksbank Ludwigsburg eG,GENODES1LBG,,hbci-fiducia-adapter,60490150,, -26297b9a-686b-4d1e-86a1-d3150693646f,HBCI Volksbank Lüneburger Heide eG,GENODEF1NBU,,hbci-fiducia-adapter,24060300,, -d7359fc0-55e7-475c-87cf-f02e24984a1a,HBCI Volksbank Magdeburg eG,GENODEF1MD1,,hbci-fiducia-adapter,81093274,, -0b570aa3-b797-4cc3-b5fe-3ff39cef1f10,HBCI Volksbank Mainspitze eG,GENODE51GIN,,hbci-fiducia-adapter,50862903,, -14050895-134b-4606-adea-b3e1f943716f,HBCI Volksbank Main-Tauber eG,GENODE61WTH,,hbci-fiducia-adapter,67390000,, -019cf778-39be-4b4b-a21b-4082a7044be8,HBCI Volksbank Marl-Recklinghausen eG,GENODEM1MRL,,hbci-fiducia-adapter,42661008,, -8354425a-387c-4836-834e-02fbc0248e54,HBCI Volksbank Meßkirch eG Raiffeisenbank,GENODE61MES,,hbci-fiducia-adapter,69362032,, -a0299455-cfb2-4a04-8991-d748e8faf9bf,HBCI Volksbank Mittelhessen eG,VBMHDE5FXXX,,hbci-fiducia-adapter,51390000,, -10c48923-5111-4ef4-a7e6-2da661357ad6,HBCI Volksbank Mittlerer Neckar eG,GENODES1NUE,,hbci-fiducia-adapter,61290120,, -de308665-e8b7-480c-a37f-73894e3b5aeb,HBCI Volksbank Mittlerer Schwarzwald eG,GENODE61KZT,,hbci-fiducia-adapter,66492700,, -25856696-ac38-42f7-b4a7-cf7640a6e7ec,HBCI Volksbank Mittleres Erzgebirge eG,GENODEF1MBG,,hbci-fiducia-adapter,87069075,, -4f76b500-f0a1-41b6-8036-1d74c0b3de7b,HBCI Volksbank Mittweida eG,GENODEF1MIW,,hbci-fiducia-adapter,87096124,, -df801d23-de65-4e48-9470-b7f22fc11d50,HBCI Volksbank Möckmühl eG,GENODES1VMN,,hbci-fiducia-adapter,62091600,, -532747b5-0e54-4ca7-9f9f-4d7c085e6a12,HBCI Volksbank Mönchengladbach eG,GENODED1MRB,,hbci-fiducia-adapter,31060517,, -27d2e3d3-5db8-4d72-9612-8dd25cbf73af,HBCI Volksbank Münsingen eG,GENODES1MUN,,hbci-fiducia-adapter,64091300,, -d876fd10-9994-46dc-b2d0-9d753b67b8d4,HBCI Volksbank Münsterland Nord eG,GENODEM1IBB,,hbci-fiducia-adapter,40361906,, -c27e2efa-dd00-49c2-9b94-0019b92f7360,HBCI Volksbank Neckartal eG,GENODE61NGD,,hbci-fiducia-adapter,67291700,, -e9a79faf-6db1-48f9-9775-b271255e5ebd,HBCI Volksbank Neuenkirchen-Vörden eG,GENODEF1NEO,,hbci-fiducia-adapter,28067068,, -c9b93d81-04e9-49e6-b416-c61cf6431052,HBCI Volksbank Niedergrafschaft eG,GENODEF1HOO,,hbci-fiducia-adapter,28069926,, -0cede116-aae2-4912-86ba-52cd656ebeac,HBCI Volksbank Niederrhein eG,GENODED1NRH,,hbci-fiducia-adapter,35461106,, -4969c4ec-13ad-4142-ba49-d46564c8d561,HBCI Volksbank Nordharz eG,GENODEF1VNH,,hbci-fiducia-adapter,26890019,, -6600a194-a148-4a32-b682-2b31b4600f1c,HBCI Volksbank Nordhümmling eG,GENODEF1BOG,,hbci-fiducia-adapter,28069706,, -873729f7-37f1-40c2-901a-5fe2bc1d98f3,HBCI Volksbank Nordschwarzwald eG,GENODES1PGW,,hbci-fiducia-adapter,64261853,, -15882e70-8a23-45f3-9c60-ec023a35594f,HBCI Volksbank Nottuln eG,GENODEM1CNO,,hbci-fiducia-adapter,40164352,, -c4f63e86-3a44-401b-aada-3e22f4489ce3,HBCI Volksbank Oberberg eG,GENODED1WIL,,hbci-fiducia-adapter,38462135,, -80db2773-d331-4c86-944c-1d948a8dd576,HBCI Volksbank Ober-Mörlen eG,GENODE51OBM,,hbci-fiducia-adapter,51861806,, -1e09c840-8a5d-4191-9a1d-b8544f2a34d5,HBCI Volksbank Ochtrup-Laer eG,GENODEM1OTR,,hbci-fiducia-adapter,40164618,, -927719ee-3466-4aee-a77a-db40f8f2d953,HBCI Volksbank Oldenburg eG,GENODEF1EDE,,hbci-fiducia-adapter,28061822,, -4b808f3f-042c-4d0b-bf61-91ba73381b5d,HBCI Volksbank Olpe-Wenden-Drolshagen eG,GENODEM1WDD,,hbci-fiducia-adapter,46261822,, -cec23901-17d0-4201-82d7-0526d539bfd3,HBCI Volksbank Osnabrück eG,GENODEF1OSV,,hbci-fiducia-adapter,26590025,, -c2a9e272-3101-464c-abb3-3563c9ace544,HBCI Volksbank Ostlippe eG,GENODEM1OLB,,hbci-fiducia-adapter,47691200,, -cb193d1d-e050-48e8-89d3-8678cd6b8127,HBCI Volksbank Oyten eG,GENODEF1OYT,,hbci-fiducia-adapter,29165545,, -ffa69c97-7206-41e9-987f-2d7946c51ce3,HBCI Volksbank Pforzheim eG,VBPFDE66XXX,,hbci-fiducia-adapter,66690000,, -e7e8caa5-a4d8-4a40-8d45-7b5f55eb18ca,HBCI Volksbank Pfullendorf eG,GENODE61PFD,,hbci-fiducia-adapter,69091600,, -fd844e94-3515-4269-b582-c89ad23e7756,HBCI Volksbank Pirna eG,GENODEF1PR2,,hbci-fiducia-adapter,85060000,, -5ed50480-7126-448b-9635-73b896c3b82d,HBCI Volksbank Plochingen eG,GENODES1VBP,,hbci-fiducia-adapter,61191310,, -92023f7f-0196-4ead-aba8-3e217afdbb6a,HBCI Volksbank Raesfeld eG,GENODEM1RAE,,hbci-fiducia-adapter,42862451,, -648f0fe2-8c0a-4901-9224-0a043d521911,HBCI Volksbank Raiffeisenbank Bad Kissingen eG,GENODEF1BRK,,hbci-fiducia-adapter,79065028,, -968dd2e9-402d-4a29-b9cd-567b45286857,HBCI Volksbank Raiffeisenbank Bayern Mitte eG,GENODEF1INP,,hbci-fiducia-adapter,72160818,, -5efa617b-8d99-4577-bb1c-0b7d338bfff4,HBCI Volksbank Raiffeisenbank Dachau eG,GENODEF1DCA,,hbci-fiducia-adapter,70091500,, -d66d554b-a89e-457b-82d9-e4c6eb3799e6,HBCI Volksbank Raiffeisenbank eG Itzehoe Norderstedt Hohenwestedt,GENODEF1VIT,,hbci-fiducia-adapter,22290031,, -8f055817-784e-443b-afc3-7f7a0294f969,HBCI "Volksbank Raiffeisenbank eG, Bad Oldesloe",,hbci-https://www.vrhs.de/services_xs2a/bg13,fiducia-adapter,,, -d6bfe75a-e51f-4927-a156-5fc98c664d3d,HBCI Volksbank Raiffeisenbank Fürstenfeldbruck eG,GENODEF1FFB,,hbci-fiducia-adapter,70163370,, -6d1b6a0d-5817-4ac5-ad0e-9040033279d8,HBCI Volksbank Raiffeisenbank Meißen Großenhain eG,GENODEF1MEI,,hbci-fiducia-adapter,85095004,, -3267a1c6-501f-4983-9bc2-b7411748591b,HBCI Volksbank Raiffeisenbank Niederschlesien eG,GENODEF1GR1,,hbci-fiducia-adapter,85591000,, -6af70776-52c3-486c-953a-8dd2329b7577,HBCI Volksbank Raiffeisenbank Nordoberpfalz eG,GENODEF1WEV,,hbci-fiducia-adapter,75390000,, -99f6517f-81b2-4c71-8a75-172168320352,HBCI Volksbank Raiffeisenbank Nürnberg eG,GENODEF1N02,,hbci-fiducia-adapter,76060618,, -814e2657-1757-4a0a-868e-e0baddac6d99,HBCI Volksbank Raiffeisenbank Oberbayern Südost eG,GENODEF1BGL,,hbci-fiducia-adapter,71090000,, -779d1f1d-9d2e-4282-a4be-91e1732e4a44,HBCI Volksbank Raiffeisenbank Regensburg-Schwandorf eG,GENODEF1R01,,hbci-fiducia-adapter,75090000,, -cfeb38bd-4392-48ee-8c98-fc03c15b2230,HBCI Volksbank Raiffeisenbank Rhön-Grabfeld eG,GENODEF1MLV,,hbci-fiducia-adapter,79069165,, -94640899-5f25-44a1-b723-c5644a567908,HBCI Volksbank Raiffeisenbank Würzburg eG,GENODEF1WU1,,hbci-fiducia-adapter,79090000,, -a36d172d-e683-445e-8c7e-f1dd93845ecc,HBCI Volksbank Rathenow eG,GENODEF1RN1,,hbci-fiducia-adapter,16091994,, -52516127-cda3-41d3-8425-d862b604a8c9,HBCI Volksbank Remseck eG,GENODES1REM,,hbci-fiducia-adapter,60069905,, -298eecab-9d4a-41f2-993a-443c5a4e3867,HBCI Volksbank Rhede eG,GENODEM1RHD,,hbci-fiducia-adapter,42861814,, -74f212d0-145f-43e1-851b-18d2012f4d77,HBCI Volksbank RheinAhrEifel eG,GENODED1BNA,,hbci-fiducia-adapter,57761591,, -87852bf2-ae74-4ee0-a7fa-dd558d6ff6f7,HBCI Volksbank Rheinböllen eG,GENODED1RBO,,hbci-fiducia-adapter,56062227,, -d7db7d96-566c-4771-bf21-fa8fa6b2558d,HBCI Volksbank Rhein-Erft-Köln eG,GENODED1FHH,,hbci-fiducia-adapter,37062365,, -33068f6f-460d-486c-a0a9-5b7dfaf2e08b,HBCI Volksbank Rhein-Lahn-Limburg eG,GENODE51DIE,,hbci-fiducia-adapter,57092800,, -1ae7d4fb-5b65-428a-b3c3-98f9dfa20bc5,HBCI Volksbank Rhein-Lippe eG,GENODED1RLW,,hbci-fiducia-adapter,35660599,, -3332faee-7f1b-4c93-a6db-77258ab6d799,HBCI Volksbank Rhein-Nahe-Hunsrück eG,GENODE51KRE,,hbci-fiducia-adapter,56090000,, -a88ae64c-e07e-49b4-a1bc-813149b3d14d,HBCI Volksbank Rhein-Ruhr eG,GENODED1VRR,,hbci-fiducia-adapter,35060386,, -f51c8954-262d-4eab-a12f-fa6c78775a19,HBCI Volksbank Rhein-Wehra eG,GENODE61BSK,,hbci-fiducia-adapter,68490000,, -79cd2f24-1b7f-425b-9862-daf548135314,HBCI Volksbank Riesa eG,GENODEF1RIE,,hbci-fiducia-adapter,85094984,, -2e7e9f0e-b375-4d77-bc65-f79a57b71278,HBCI Volksbank Rietberg eG,GENODEM1RNE,,hbci-fiducia-adapter,47862447,, -dec4eebb-1eb3-43ad-9476-e40e3a6cf939,HBCI Volksbank Rot eG,GENODE61LRO,,hbci-fiducia-adapter,67262550,, -10a146e8-1547-4bc5-8155-9188409331db,HBCI Volksbank Rottweil eG,GENODES1VRW,,hbci-fiducia-adapter,64290120,, -77a3cb83-7b3d-458c-9738-521ce240007a,HBCI Volksbank Ruhr Mitte eG,GENODEM1GBU,,hbci-fiducia-adapter,42260001,, -05d45e71-dac8-42aa-9065-ae964cf1138d,HBCI Volksbank Sandhofen eG,GENODE61MA3,,hbci-fiducia-adapter,67060031,, -3f6238e9-c2cb-47b3-87d6-c451bda16626,HBCI Volksbank Sauerland eG,GENODEM1NEH,,hbci-fiducia-adapter,46660022,, -4256e879-4309-450f-a1ed-8e933d32b51e,HBCI Volksbank Schermbeck eG,GENODEM1SMB,,hbci-fiducia-adapter,40069363,, -05963036-478b-45b3-b282-a97254f5d533,HBCI Volksbank Schlangen eG,GENODEM1SLN,,hbci-fiducia-adapter,40069283,, -1bb53c4a-1086-4603-9d90-ead9bb70f188,HBCI Volksbank Schnathorst eG,GENODEM1SNA,,hbci-fiducia-adapter,49262364,, -dca03173-9180-4bd8-9d2d-bbe5c4afbf3a,HBCI Volksbank Schupbach eG,GENODE51SBH,,hbci-fiducia-adapter,51191800,, -9e594ff6-374c-4543-8459-f9f7f8fbd832,HBCI Volksbank Schwanewede eG,GENODEF1SWW,,hbci-fiducia-adapter,29162453,, -451042f3-7222-4e88-918e-aa285df35f1d,HBCI Volksbank Schwarzwald-Donau-Neckar eG,GENODES1TUT,,hbci-fiducia-adapter,64390130,, -bc1e0ed3-d201-46ea-af00-a20e8ce4189e,HBCI Volksbank Seligenstadt eG,GENODE51SEL,,hbci-fiducia-adapter,50692100,, -eed78254-cedd-423d-8b63-0f897e93efad,HBCI Volksbank Selm-Bork eG,GENODEM1SEM,,hbci-fiducia-adapter,40165366,, -e4824dd6-e756-44a5-90a5-31824e93080e,HBCI Volksbank Senden eG,GENODEM1SDN,,hbci-fiducia-adapter,40069546,, -910f4de9-bab4-4cfb-bfe5-758ef367bb76,HBCI Volksbank Solling eG,GENODEF1HDG,,hbci-fiducia-adapter,26261693,, -9a75a9b6-5033-4859-a26b-e083f668093b,HBCI Volksbank Spree-Neiße eG,GENODEF1SPM,,hbci-fiducia-adapter,18092744,, -a5902ea8-9817-4daa-9015-672c4e4a66d6,HBCI Volksbank Sprockhövel eG,GENODEM1SPO,,hbci-fiducia-adapter,45261547,, -9a99bd80-42f6-4cff-beba-bbbde84e09cb,HBCI Volksbank Stade-Cuxhaven eG,GENODEF1SDE,,hbci-fiducia-adapter,24191015,, -46e44d49-1213-4e73-afd1-1180072fc838,HBCI Volksbank Staufen eG,GENODE61STF,,hbci-fiducia-adapter,68092300,, -37735678-7c37-486d-a630-30f12caf5473,HBCI Volksbank Stendal eG,GENODEF1SDL,,hbci-fiducia-adapter,81093054,, -62a19dca-e553-4b69-aedd-6a1075bce6b6,HBCI Volksbank Störmede-Hörste eG,GENODEM1SGE,,hbci-fiducia-adapter,41662465,, -e75fa1d9-e3cb-44ff-81fe-96ad83d6a48c,HBCI Volksbank Stutensee-Weingarten eG,GENODE61WGA,,hbci-fiducia-adapter,66061724,, -a9571ec3-bbed-4ac8-8a2c-e16575b34821,HBCI Volksbank Stuttgart eG,VOBADESSXXX,,hbci-fiducia-adapter,60090100,, -c331f6a0-ca8d-41ff-bc52-4d0b7694bd6d,HBCI Volksbank Süd-Emsland eG,GENODEF1SPL,,hbci-fiducia-adapter,28069994,, -d326fbb5-5dc6-4b99-9b84-aa04b0fcabc5,HBCI Volksbank Südkirchen-Capelle-Nordkirchen eG,GENODEM1SCN,,hbci-fiducia-adapter,40069716,, -1885723b-d658-4e29-89bd-f202089b30a2,HBCI Volksbank Südmünsterland-Mitte eG,GENODEM1LHN,,hbci-fiducia-adapter,40164528,, -f8758eca-569e-42fe-b413-2949bf4ccadf,HBCI Volksbank Sulmtal eG,GENODES1VOS,,hbci-fiducia-adapter,62061991,, -d5e6a6aa-557b-4eb5-845f-70bafc9b3ae1,HBCI Volksbank Trier eG,GENODED1TVB,,hbci-fiducia-adapter,58560103,, -7157691a-73e6-4979-8acc-faf10e3dc6f0,HBCI Volksbank Trossingen eG,GENODES1TRO,,hbci-fiducia-adapter,64292310,, -9c189095-f805-4742-ae58-a141ee8fb4b0,HBCI Volksbank Überherrn eG,GENODE51UBH,,hbci-fiducia-adapter,59391200,, -f45c9864-e388-4006-ab17-3f5b050f252a,HBCI Volksbank Überwald-Gorxheimertal eG,GENODE51ABT,,hbci-fiducia-adapter,50961685,, -9a8dfedf-f5d5-461a-ac73-c58f6bf39c76,HBCI Volksbank Uelzen-Salzwedel eG,GENODEF1EUB,,hbci-fiducia-adapter,25862292,, -d0111aaf-7531-44d5-a872-f37496ac79d6,HBCI Volksbank Ulm-Biberach eG,ULMVDE66XXX,,hbci-fiducia-adapter,63090100,, -ef00e7c3-a7c8-4af5-9775-0cf839086629,HBCI Volksbank Ulrichstein eG,GENODE51ULR,,hbci-fiducia-adapter,51961023,, -7ab54da3-5529-4927-810d-d89b6d7741db,HBCI Volksbank Vechta eG,GENODEF1VEC,,hbci-fiducia-adapter,28064179,, -21ecbe8f-596d-4871-a1a6-dfb93ed6d7b3,HBCI Volksbank Versmold eG,GENODEM1VMD,,hbci-fiducia-adapter,47863373,, -6e690a45-8b95-451e-a32e-6483f0a46128,HBCI Volksbank Viersen eG,GENODED1VSN,,hbci-fiducia-adapter,31460290,, -86acfd36-0cb7-4385-b78a-16c3064d6eda,HBCI Volksbank Visbek eG,GENODEF1VIS,,hbci-fiducia-adapter,28066103,, -f2ce1552-93b9-477c-9822-48078338d02c,HBCI Volksbank Vogtland-Saale-Orla eG,GENODEF1PL1,,hbci-fiducia-adapter,87095824,, -08277946-4472-46c1-afc7-e119a8d0c86d,HBCI Volksbank Vorbach-Tauber eG,GENODES1VVT,,hbci-fiducia-adapter,62391420,, -5ca11865-c99e-4651-b759-cfb7d9482491,HBCI Volksbank Vorpommern eG,GENODEF1ANK,,hbci-fiducia-adapter,15061638,, -655b062c-9f19-4aa4-9625-b40e7e880bb3,HBCI Volksbank Welzheim eG,GENODES1WEL,,hbci-fiducia-adapter,61391410,, -7f13512a-483a-4e62-8032-0026cff2fc81,HBCI Volksbank Weschnitztal eG,GENODE51FHO,,hbci-fiducia-adapter,50961592,, -312ed38a-d437-4430-9179-ade13db9d8a4,HBCI Volksbank Westenholz eG,GENODEM1WDE,,hbci-fiducia-adapter,47262626,, -afb37dcd-a5ac-4085-a487-ad91078e826d,HBCI Volksbank Westerkappeln-Saerbeck eG,GENODEM1WKP,,hbci-fiducia-adapter,40361627,, -fe59d4b9-c930-4941-8bce-d5e3e71cc2c5,HBCI Volksbank Westerstede eG,GENODEF1WRE,,hbci-fiducia-adapter,28063253,, -5e6b628e-afe0-48a2-acc8-e88e6a04c05e,HBCI Volksbank Wickede (Ruhr) eG,GENODEM1WRU,,hbci-fiducia-adapter,41462295,, -458d5231-0bdb-4f86-8c07-2c4365f2fdbf,HBCI Volksbank Wilhelmshaven eG,GENODEF1WHV,,hbci-fiducia-adapter,28290063,, -4a000eda-adc1-4df8-b3ac-a2c2e1c05213,HBCI Volksbank Winsener Marsch eG,GENODEF1WIM,,hbci-fiducia-adapter,20069965,, -4e2a99f5-31a4-4de4-8e43-d4d26e575bdf,HBCI Volksbank Wißmar eG,GENODE51WWI,,hbci-fiducia-adapter,50069976,, -22d156f5-47fa-49b9-96db-0f269d71aee2,HBCI Volksbank Wittenberg eG,GENODEF1WB1,,hbci-fiducia-adapter,80063598,, -e9b201a7-7a78-44bf-afb5-712d82f87402,HBCI Volksbank Wittgenstein eG,GENODEM1BB1,,hbci-fiducia-adapter,46063405,, -b6b428e7-3438-4b43-8c96-bb4dbddf0a17,HBCI Volksbank Worpswede eG,GENODEF1WOP,,hbci-fiducia-adapter,29166568,, -ec7b3195-d796-4fc4-a293-8e1113764b24,HBCI Volksbank Wulfsen eG,GENODEF1WUL,,hbci-fiducia-adapter,20069989,, -edc4fe28-863a-4389-82cd-d8d8945fd944,HBCI Volksbank Zuffenhausen eG,GENODES1ZUF,,hbci-fiducia-adapter,60090300,, -23f66c9a-f159-4605-8119-cd99c658cf58,HBCI Volksbank Zwickau eG,GENODEF1Z01,,hbci-fiducia-adapter,87095934,, -da6311e2-ada6-4546-b3d4-ebfdbc2e5f3a,HBCI Volksbank-Raiffeisenbank Amberg eG,GENODEF1AMV,,hbci-fiducia-adapter,75290000,, -c245da3b-a735-4d71-a12d-8cc0cae8429a,HBCI Volksbank-Raiffeisenbank Deggingen eG,GENODES1DGG,,hbci-fiducia-adapter,61091200,, -816d270c-9228-4a32-8486-ddb8c739a7d7,HBCI Volksbank-Raiffeisenbank Glauchau eG,GENODEF1GC1,,hbci-fiducia-adapter,87095974,, -4ae1216c-b70f-4820-bb1c-e5c03ff7d455,HBCI Volksbank-Raiffeisenbank Laupheim-Illertal eG,GENODES1VBL,,hbci-fiducia-adapter,65491320,, -bbec6889-18cd-472f-bfdc-cd4190f60cb3,HBCI Volksbank-Raiffeisenbank Riedlingen eG,GENODES1VRR,,hbci-fiducia-adapter,65491510,, -9e98b5cf-6cf6-4d8b-af35-cec8620da66c,HBCI VR Bank Alzey-Land-Schwabenheim eG,GENODE51ABO,,hbci-fiducia-adapter,50069126,, -c7a28002-603b-4569-a72d-6490a3b7b81c,HBCI VR Bank Augsburg-Ostallgäu eG,GENODEF1AUB,,hbci-fiducia-adapter,72090000,, -6c6cdd7f-71fd-4f67-9d46-59a53801562a,HBCI VR Bank Bad Orb-Gelnhausen eG,GENODE51GEL,,hbci-fiducia-adapter,50790000,, -4dcfe64b-2f02-42e9-9390-eaabeb32cdf4,HBCI VR Bank Bamberg-Forchheim eG,GENODEF1FOH,,hbci-fiducia-adapter,76391000,, -ef266797-3869-4014-a033-879478642e8c,HBCI VR Bank Bayreuth-Hof eG,GENODEF1HO1,,hbci-fiducia-adapter,78060896,, -c6814679-62a8-48dc-8557-268e3c45f23a,HBCI VR Bank Burglengenfeld eG,GENODEF1BLF,,hbci-fiducia-adapter,75091400,, -0c37566f-d44c-4b1d-b041-6193dcf2fac9,HBCI VR BANK Dinklage-Steinfeld eG,GENODEF1DIK,,hbci-fiducia-adapter,28065108,, -227d618c-c759-4a56-b00e-c7baf78dde11,HBCI VR Bank eG Bergisch Gladbach-Leverkusen,GENODED1PAF,,hbci-fiducia-adapter,37062600,, -978975d7-61c3-498c-8bc0-b1b61195cc0b,HBCI VR Bank eG Heuberg-Winterlingen,GENODES1WLB,,hbci-fiducia-adapter,65361898,, -7f473677-75bb-4d8e-91b2-6a170f319f3d,HBCI "VR Bank eG, Alsheim",,hbci-https://www.vrbank-alsheim.de/services_xs2a/bg13,fiducia-adapter,,, -bb45f517-06ce-431c-9583-c3cde9e3d1be,HBCI "VR Bank eG, Monheim am Rhein",,hbci-https://www.vrbankeg.de/services_xs2a/bg13,fiducia-adapter,,, -5087adf3-f58b-4f0e-b87c-a20f6776d744,HBCI VR Bank Enz plus eG,GENODE61WIR,,hbci-fiducia-adapter,66692300,, -73fc8841-62f7-44e7-a5af-a49f74739662,HBCI VR Bank Fulda eG,GENODE51FUL,,hbci-fiducia-adapter,53060180,, -9e920a50-4f8e-46b0-9377-4fcba5a0d1d0,HBCI VR Bank HessenLand eG,GENODE51ALS,,hbci-fiducia-adapter,53093200,, -d00be78c-24d7-4b46-a956-42c093a50b54,HBCI VR Bank Hohenneuffen-Teck eG,GENODES1HON,,hbci-fiducia-adapter,61261339,, -9380e4f4-ba8f-4947-a444-751f2fa9019f,HBCI VR Bank in Holstein eG,GENODEF1PIN,,hbci-fiducia-adapter,22191405,, -aec13a37-6c13-4bc6-9742-194c202a5261,HBCI VR Bank Kitzingen eG,GENODEF1KT1,,hbci-fiducia-adapter,79190000,, -201afab1-c65b-4558-ac51-8b7ce4dac492,HBCI VR Bank Lahn-Dill eG,GENODE51BIK,,hbci-fiducia-adapter,51762434,, -4e4c7bb5-88e6-4f7a-b7be-81050ba056be,HBCI VR Bank Lausitz eG,GENODEF1FWA,,hbci-fiducia-adapter,18062678,, -09ed1c43-19d9-4642-a9a1-7e3feadfe1fb,HBCI VR Bank Main-Kinzig-Büdingen eG,GENODEF1LSR,,hbci-fiducia-adapter,50661639,, -abcb149c-0db7-4983-8454-ec298f8ee6ea,HBCI VR Bank Mittelhaardt eG,GENODE61DUW,,hbci-fiducia-adapter,54691200,, -c83b7c46-47e1-471a-bbb9-4bf01c9d3b95,HBCI VR Bank Mittlere Oberpfalz eG,GENODEF1SWD,,hbci-fiducia-adapter,75069171,, -2edf02d3-ebe8-47ef-93bd-7f20a8b4c54f,HBCI VR Bank München Land eG,GENODEF1OHC,,hbci-fiducia-adapter,70166486,, -54a0fcdf-c3a5-4991-94d8-55af173f1f72,HBCI VR Bank Neuburg-Rain eG,GENODEF1ND2,,hbci-fiducia-adapter,72169756,, -6a773c0f-2ead-4ff5-9278-4d7ca1d94da0,HBCI VR Bank Neumünster eG,GENODEF1NMS,,hbci-fiducia-adapter,21290016,, -58b962b3-cf08-4989-866c-599adc0f5477,HBCI VR Bank Niederbayern-Oberpfalz eG,GENODEF1P18,,hbci-fiducia-adapter,75090900,, -a50b9498-111c-44cc-9413-17cee4023161,HBCI VR Bank Nord eG,GENODEF1BDS,,hbci-fiducia-adapter,21763542,, -b695752d-1eca-4f1f-aab4-9bab0500198f,HBCI VR Bank Oberfranken Mitte eG,GENODEF1KU1,,hbci-fiducia-adapter,77190000,, -1db80575-1ef3-47b0-8289-7374d960e6d1,HBCI VR Bank Oldenburg Land eG,GENODEF1WDH,,hbci-fiducia-adapter,28066214,, -834e5fdb-3fc8-4d9a-8359-699c545eb586,HBCI VR Bank Ostholstein Nord - Plön eG,GENODEF1NSH,,hbci-fiducia-adapter,21390008,, -a42e1eb1-b5a2-44b8-92b3-34c835ce420c,HBCI VR Bank Ravensburg-Weingarten eG,GENODES1RRV,,hbci-fiducia-adapter,65062577,, -32921d80-f873-4015-b4e0-bf5504c6899d,HBCI VR Bank Rhein-Mosel eG,GENODED1NWD,,hbci-fiducia-adapter,57460117,, -ebcc507c-c4c6-483f-82e5-d6167d20fc39,HBCI VR Bank Rhein-Neckar eG,GENODE61MA2,,hbci-fiducia-adapter,67090000,, -244a7839-28a0-4f5f-8d5f-6d8b5b66a1f6,HBCI VR Bank Schleswig-Mittelholstein eG,GENODEF1SLW,,hbci-fiducia-adapter,21690020,, -e0b2844a-7f34-4539-8e94-da9528b8cd2a,HBCI VR Bank Schwäbisch Hall-Crailsheim eG,GENODES1SHA,,hbci-fiducia-adapter,62290110,, -2414966a-d70c-4935-8456-ae3decd7b510,HBCI VR Bank Starnberg-Herrsching-Landsberg eG,GENODEF1STH,,hbci-fiducia-adapter,70093200,, -a6ba366f-4eec-468a-baf5-0170064239e4,HBCI VR Bank Südliche Weinstraße-Wasgau eG,GENODE61BZA,,hbci-fiducia-adapter,54891300,, -0568aeec-0dfb-4c19-b6df-ca4500ec4e92,HBCI VR Bank Südpfalz eG,GENODE61SUW,,hbci-fiducia-adapter,54862500,, -8ce43d3d-0bb2-422d-8cf2-b68393252106,HBCI vr bank Südthüringen eG,GENODEF1SHL,,hbci-fiducia-adapter,84094814,, -005900d6-7339-4373-a0b7-9985a344ecde,HBCI VR Bank Tübingen eG,GENODES1STW,,hbci-fiducia-adapter,64061854,, -6a4dd91e-1037-420b-9981-cd49480aaa6d,HBCI vr bank Untertaunus eG,VRBUDE51XXX,,hbci-fiducia-adapter,51091700,, -bf4efbfb-68a4-4f16-890d-5f700e54b936,HBCI VR Bank Weimar eG,GENODEF1WE1,,hbci-fiducia-adapter,82064188,, -da2e28f1-8f7a-4021-9361-7367dad53fad,HBCI VR Bank Westküste eG,GENODEF1HUM,,hbci-fiducia-adapter,21762550,, -ac52d582-0f7c-48c4-9a6c-66c0de664413,HBCI VR Bank Westthüringen eG,GENODEF1MU2,,hbci-fiducia-adapter,82064038,, -42c61da1-ebc9-4272-8215-a315a2b0fb49,HBCI VR GenoBank DonauWald eG,GENODEF1DGV,,hbci-fiducia-adapter,74190000,, -1582e4d1-74db-4fa2-a415-a72a019dca12,HBCI VR meine Bank eG,GENODEF1NEA,,hbci-fiducia-adapter,76069559,, -da7100db-a010-42fe-9c22-43c82961809a,HBCI VR PartnerBank eG Chattengau-Schwalm-Eder,GENODEF1HRV,,hbci-fiducia-adapter,52062601,, -e3d30cbe-c744-48c9-a8f1-b8ffe8b1c4ef,HBCI VR PLUS Altmark-Wendland eG,GENODEF1WOT,,hbci-fiducia-adapter,25863489,, -4c60ab28-a06a-42e4-b934-a4577844a8cd,HBCI VR-Bank Altenburger Land eG,GENODEF1SLR,,hbci-fiducia-adapter,83065408,, -733db193-8299-4044-b7dd-b2f6976ae790,HBCI VR-Bank Asperg-Markgröningen eG,GENODES1AMT,,hbci-fiducia-adapter,60462808,, -153c370e-fc8f-4c94-9eea-046ff254c540,HBCI VR-Bank Bad Salzungen Schmalkalden eG,GENODEF1SAL,,hbci-fiducia-adapter,84094754,, -1b35e6e2-2250-4f5a-af55-73e517dd1b2e,HBCI VR-Bank Bonn eG,GENODED1HBO,,hbci-fiducia-adapter,38160220,, -9ff5749d-3823-402c-a4e3-50c5006f2540,HBCI VR-Bank Coburg eG,GENODEF1COS,,hbci-fiducia-adapter,78360000,, -290b87ae-396a-4ba7-a3e1-d094a0ad1055,HBCI VR-Bank Donau-Mindel eG,GENODEF1GZ2,,hbci-fiducia-adapter,72069043,, -2b2e5d9a-3294-4a94-a6d6-d3be6ddd8c6d,HBCI VR-Bank Dornstetten-Horb eG,GENODES1VDS,,hbci-fiducia-adapter,64262408,, -cd483c4b-6d72-40ec-a6b7-7e4df8958c4d,HBCI VR-Bank eG Magstadt-Weissach,GENODES1MAG,,hbci-fiducia-adapter,60391420,, -b39cefd5-b415-47f0-b0c4-3c5df7884e3a,HBCI VR-Bank eG Osnabrücker Nordland,GENODEF1NOP,,hbci-fiducia-adapter,26567943,, -c093e203-ad87-4b94-9343-984a30dbca23,HBCI VR-Bank eG Schopfheim-Maulburg,GENODE61SPF,,hbci-fiducia-adapter,68391500,, -bcb1b4a9-292c-443b-9210-a9299a7c3c95,HBCI "VR-Bank eG, Alzenau",,hbci-https://www.vr-bank-alzenau.de/services_xs2a/bg13,fiducia-adapter,,, -0bab3847-1cf9-41d5-955e-d3be5d6f4061,HBCI "VR-Bank eG, Würselen",,hbci-https://www.vrbank-eg.de/services_xs2a/bg13,fiducia-adapter,,, -146d86a7-2c44-4c04-baa3-38b209ec144e,HBCI VR-Bank Ehningen-Nufringen eG,GENODES1EHN,,hbci-fiducia-adapter,60069355,, -a0411e94-095b-4b75-862b-6c86aa25f98b,HBCI VR-Bank Eisenach-Ronshausen eG,GENODEF1ESA,,hbci-fiducia-adapter,82064088,, -4fd708a8-dde4-4662-a9bc-569928feed31,HBCI VR-Bank Ellwangen eG,GENODES1ELL,,hbci-fiducia-adapter,61491010,, -3a42d6eb-858b-4082-96f9-846775974987,HBCI VR-Bank Erding eG,GENODEF1ISE,,hbci-fiducia-adapter,70169605,, -bb1051f2-9cbf-4557-9f60-ecf356e98ac5,HBCI VR-Bank Erlangen-Höchstadt- Herzogenaurach eG,GENODEF1ER1,,hbci-fiducia-adapter,76360033,, -51d77733-b82e-46f8-8605-aab3db2df723,HBCI VR-Bank Feuchtwangen-Dinkelsbühl eG,GENODEF1DKV,,hbci-fiducia-adapter,76591000,, -5d50b639-0d46-47a5-861a-2fe9d088eeaf,HBCI VR-Bank Fichtelgebirge- Frankenwald eG,GENODEF1MAK,,hbci-fiducia-adapter,78160069,, -42e1ae1d-aa10-4243-b98e-8b8e8face554,HBCI VR-Bank Fläming eG,GENODEF1LUK,,hbci-fiducia-adapter,16062008,, -b989d846-0c23-4850-be9a-6297fad1b663,HBCI VR-Bank Freudenberg-Niederfischbach eG,GENODEM1FRF,,hbci-fiducia-adapter,46061724,, -2e641633-1308-4f6c-9207-7b2057fc64ec,HBCI VR-Bank Gerolzhofen eG,GENODEF1GZH,,hbci-fiducia-adapter,79362081,, -bda028d2-1f24-4549-8507-c99bcbf0e38a,HBCI VR-Bank Handels- und Gewerbebank eG,GENODEF1MTG,,hbci-fiducia-adapter,72062152,, -bd483428-56c5-4acb-ae32-117e2357879c,HBCI VR-Bank Hunsrück-Mosel eG,GENODED1MBA,,hbci-fiducia-adapter,57069806,, -6f3314be-e977-421c-a02c-1d2f928048c2,HBCI VR-Bank in Mittelbaden eG,GENODE61IFF,,hbci-fiducia-adapter,66562300,, -41f9a427-978c-4175-a88b-46654774fb14,HBCI VR-Bank in Südniedersachsen eG,GENODEF1DRA,,hbci-fiducia-adapter,26062433,, -d2552fb3-9b2e-4e22-993e-ee53980c770f,HBCI VR-Bank in Südoldenburg eG,GENODEF1CLP,,hbci-fiducia-adapter,28061501,, -571214a6-0d36-4bcd-8be7-c3534b0d271b,HBCI VR-Bank Isar-Vils eG,GENODEF1VBV,,hbci-fiducia-adapter,74392300,, -f83a32cc-a236-40b3-9b61-b9b489f45968,HBCI VR-Bank Ismaning Hallbergmoos Neufahrn eG,GENODEF1ISV,,hbci-fiducia-adapter,70093400,, -f1131c03-44ca-43b1-a73e-74229b24b11b,HBCI VR-Bank Landau-Mengkofen eG,GENODEF1LND,,hbci-fiducia-adapter,74191000,, -4f5b882c-bc87-451d-8dcf-f35620d120b8,HBCI VR-Bank Landsberg-Ammersee eG,GENODEF1DSS,,hbci-fiducia-adapter,70091600,, -8ecec273-c02e-45d8-92a4-9d659aed1d83,HBCI VR-Bank Landshut eG,GENODEF1LH1,,hbci-fiducia-adapter,74390000,, -6c3aad67-04ec-469a-8982-1da7d58a6234,HBCI VR-Bank Langenau-Ulmer Alb eG,GENODES1LBK,,hbci-fiducia-adapter,63061486,, -f2466f8e-9c3c-41b2-92dd-bf09e909f49d,HBCI VR-Bank Lichtenfels-Ebern eG,GENODEF1LIF,,hbci-fiducia-adapter,77091800,, -121e14b6-2907-4fd6-9258-8c3a805e3f70,HBCI VR-Bank Memmingen eG,GENODEF1MM1,,hbci-fiducia-adapter,73190000,, -72407f02-3aa0-4ad0-949b-4ebb53816271,HBCI VR-Bank Mitte eG,GENODEF1ESW,,hbci-fiducia-adapter,52260385,, -b3aa4bcb-6a6a-43a1-9341-cec60b15ca82,HBCI VR-Bank Mittelfranken West eG,GENODEF1ANS,,hbci-fiducia-adapter,76560060,, -0dd8d01e-4768-426b-8c59-dfd7872d0e4b,HBCI VR-Bank Mittelsachsen eG,GENODEF1DL1,,hbci-fiducia-adapter,86065468,, -bacea114-250b-44f6-96b4-47f9caf1cc06,HBCI VR-Bank Neckar-Enz eG,GENODES1VBB,,hbci-fiducia-adapter,60491430,, -2de51922-dd5f-42fc-a628-f3ddf76dcbc7,HBCI VR-Bank Neu-Ulm eG,GENODEF1NU1,,hbci-fiducia-adapter,73061191,, -dd47f1ce-0a5b-48b7-9d36-0c62aecefa80,HBCI VR-Bank Nordeifel eG,GENODED1SLE,,hbci-fiducia-adapter,37069720,, -e764fecc-4009-499e-9629-d1f38ab9c887,HBCI VR-Bank NordRhön eG,GENODEF1HUE,,hbci-fiducia-adapter,53061230,, -adc1919a-613c-482e-bdae-c45ce506cebb,HBCI VR-Bank Ostalb eG,GENODES1AAV,,hbci-fiducia-adapter,61490150,, -d34472ac-f92e-4a51-a558-db1fa49e89b2,HBCI VR-Bank Ostbayern-Mitte eG,GENODEF1SR1,,hbci-fiducia-adapter,74290000,, -85a26aba-f891-4255-ba57-8c102309b93d,HBCI VR-Bank Passau eG,GENODEF1PA1,,hbci-fiducia-adapter,74090000,, -d7c1bdaf-9392-4538-b732-d733966d8bc9,HBCI VR-Bank Rhein-Sieg eG,GENODED1RST,,hbci-fiducia-adapter,37069520,, -b37cef7c-e419-492f-9059-2381068dab73,HBCI VR-Bank Rottal-Inn eG,GENODEF1PFK,,hbci-fiducia-adapter,74061813,, -63fdd36d-c6f7-41be-95ef-21a9f3c50814,HBCI VR-Bank Schweinfurt eG,GENODEF1ATE,,hbci-fiducia-adapter,79069010,, -dc490698-3014-4744-8537-ec924e49efb4,HBCI VR-Bank Spangenberg-Morschen eG,GENODEF1SPB,,hbci-fiducia-adapter,52063369,, -7d8b415f-9913-4c1b-9914-747c5136caa4,HBCI VR-Bank Südwestpfalz eG Pirmasens - Zweibrücken,GENODE61ROA,,hbci-fiducia-adapter,54261700,, -f8847d15-7e82-49d5-9674-e5ff7c4dd91b,HBCI VR-Bank Taufkirchen-Dorfen eG,GENODEF1TAV,,hbci-fiducia-adapter,70169566,, -1dbf381f-79e2-4a7b-aefb-e792ed94a6e1,HBCI VR-Bank Uckermark-Randow eG,GENODEF1PZ1,,hbci-fiducia-adapter,15091704,, -3eb334a5-9641-4aa6-84cf-49fa9b3184db,HBCI VR-Bank Werdenfels eG,GENODEF1GAP,,hbci-fiducia-adapter,70390000,, -dd7cdb1d-d7e7-464f-b31e-27854746391a,HBCI VR-Bank Westmünsterland eG,GENODEM1BOB,,hbci-fiducia-adapter,42861387,, -cf71c654-6ecb-41bf-a506-d829d43adc7d,HBCI VR-Bankverein Bad Hersfeld-Rotenburg eG,GENODE51BHE,,hbci-fiducia-adapter,53290000,, -a8f08c3e-a64b-43dd-8674-cf1c54b0f0d2,HBCI Waldecker Bank eG,GENODEF1KBW,,hbci-fiducia-adapter,52360059,, -acbd2cdf-d0fd-4c6a-b7e7-2f1bd2cb1339,HBCI WEG Bank AG,WEGBDE77XXX,,hbci-fiducia-adapter,70011600,, -7cdba5a6-fead-4b9f-8c4a-ed2010528ad5,HBCI Westerwald Bank eG Volks- und Raiffeisenbank,GENODE51WW1,,hbci-fiducia-adapter,57391800,, -a234d0eb-4b22-49a9-99b0-51048126b6dc,HBCI Wiesbadener Volksbank eG,WIBADE5WXXX,,hbci-fiducia-adapter,51090000,, -8ea71ae0-7605-4bc3-8e14-2938b67332a2,HBCI Winterbacher Bank eG,GENODES1WBB,,hbci-fiducia-adapter,60069462,, -87817506-b84b-43c4-942f-9930a4304310,HBCI Wirecard Bank AG,WIREDEMMXXX,,hbci-fiducia-adapter,51230800,, -fe5043cf-c1a4-4921-a659-1627ff1dd706,HBCI Zevener Volksbank eG,GENODEF1SIT,,hbci-fiducia-adapter,24161594,, +6fa2313d-de4c-4eeb-93ed-2cd0ae0012fb,HBCI Bundesbank,MARKDEF1100,,hbci-verlag-adapter,10000000,, +8b5ecf57-a906-44e5-ba5f-55bd1b113b4e,HBCI Isbank Berlin,ISBKDEFXXXX,,hbci-verlag-adapter,10130600,, +241d3de7-f329-4408-a48d-afc5b9088195,HBCI Isbank Hamburg,ISBKDEFXXXX,,hbci-verlag-adapter,20230600,, +f11e42c7-a496-474c-8363-c6c984474f83,HBCI Bundesbank,MARKDEF1130,,hbci-verlag-adapter,13000000,, +586979e0-f36d-4740-945f-c77b98e9ad40,HBCI Bundesbank,MARKDEF1150,,hbci-verlag-adapter,15000000,, +6a9d229b-b274-493f-91dc-8913ff367309,HBCI Bundesbank,MARKDEF1200,,hbci-verlag-adapter,20000000,, +33c911d9-a91a-4315-8fc4-fab1073db58e,HBCI Bundesbank eh Kiel,MARKDEF1210,,hbci-verlag-adapter,21000000,, +691a19a2-1535-4c1d-9233-c38e5bb86039,HBCI Bundesbank eh Luebeck,MARKDEF1230,,hbci-verlag-adapter,23000000,, +f1d0c28f-8d41-4fa0-b2ba-682ad774a805,HBCI Bundesbank,MARKDEF1250,,hbci-verlag-adapter,25000000,, +f7ddc046-4232-4d70-a620-b85538ffbe37,HBCI Bundesbank,MARKDEF1260,,hbci-verlag-adapter,26000000,, +ff634216-08bf-4d72-a80f-dd639210d887,HBCI Bundesbank,MARKDEF1265,,hbci-verlag-adapter,26500000,, +58ce65e4-4839-4c6b-aa86-8c93cecbf9c1,HBCI Bundesbank,MARKDEF1280,,hbci-verlag-adapter,28000000,, +de69db0e-a63c-4360-8836-10106365ba7d,HBCI Bundesbank eh Bremen,MARKDEF1290,,hbci-verlag-adapter,29000000,, +1019b4aa-d439-4059-bdfe-6aa9f1bf72de,HBCI Bundesbank,MARKDEF1300,,hbci-verlag-adapter,30000000,, +0f2398c0-5b02-455b-9c9d-c56106122788,HBCI Bundesbank,MARKDEF1360,,hbci-verlag-adapter,36000000,, +475872f7-c8d2-4f41-9d1d-8c8d0fb7513d,HBCI Bundesbank,MARKDEF1370,,hbci-verlag-adapter,37000000,, +f95f0755-982b-4765-b7e8-e4d6dbda0b91,HBCI Bundesbank,MARKDEF1430,,hbci-verlag-adapter,43000000,, +5ecb00e2-95a5-4e66-9fb0-041d1e57a025,HBCI Bundesbank,MARKDEF1440,,hbci-verlag-adapter,44000000,, +7277947a-5067-44a1-adfa-d026a856b791,HBCI Bundesbank,MARKDEF1450,,hbci-verlag-adapter,45000000,, +bdaed7b9-d1f8-4c8a-b60b-7086831f0b57,HBCI Deutsche Bundesbank Filiale Dortmund (Bargeldzentrum),MARKDEF1470,,hbci-verlag-adapter,47000000,, +ecbdc9ff-4bca-4691-a47d-4c69b9e506cf,HBCI Bundesbank,MARKDEF1480,,hbci-verlag-adapter,48000000,, +accaf2ba-0da5-4a13-ac68-97569009a16f,HBCI Bundesbank,MARKDEF1500,,hbci-verlag-adapter,50000000,, +b1526c9c-5441-4e11-84c0-7787be47b776,HBCI Bundesbank Zentrale,MARKDEFFXXX,,hbci-verlag-adapter,50400000,, +1d926b32-fffe-47a7-90d5-bfdc021bd83f,HBCI Bundesbank eh Giessen,MARKDEF1513,,hbci-verlag-adapter,51300000,, +1fb8b747-2a74-48f8-9255-f77380bda96e,HBCI Bundesbank,MARKDEF1545,,hbci-verlag-adapter,54500000,, +5dae187a-00fe-485e-94af-04029c132d2e,HBCI Bundesbank,MARKDEF1550,,hbci-verlag-adapter,55000000,, +d5f62922-8bc2-4aa2-bfd8-33372065e3a5,HBCI Bundesbank,MARKDEF1570,,hbci-verlag-adapter,57000000,, +82f029ed-ee6d-4ccd-96e5-7ad8af9a8bf5,HBCI Bundesbank,MARKDEF1590,,hbci-verlag-adapter,59000000,, +ef8561ec-e71f-46ff-a2c2-b5599b70fd55,HBCI Bundesbank,MARKDEF1600,,hbci-verlag-adapter,60000000,, +eed48147-3fcd-4af3-a5d0-a3c6fede6be9,HBCI Bundesbank,MARKDEF1630,,hbci-verlag-adapter,63000000,, +3156204d-452f-4e74-bf7a-9a0f04795e31,HBCI Bundesbank,MARKDEF1640,,hbci-verlag-adapter,64000000,, +58fe3df0-35ab-4f0a-94f7-b6c50cccddae,HBCI Bundesbank,MARKDEF1660,,hbci-verlag-adapter,66000000,, +d5ad225d-e8fd-4359-9e64-2dc40dd0c103,HBCI Bundesbank,MARKDEF1680,,hbci-verlag-adapter,68000000,, +37939388-4ec2-441e-aff3-78114443ee51,HBCI Bundesbank,MARKDEF1694,,hbci-verlag-adapter,69400000,, +fc56b77e-4998-4203-a669-73c881d46498,HBCI Bundesbank,MARKDEF1700,,hbci-verlag-adapter,70000000,, +e7dca507-1ff4-4100-bd2f-89ea80f81654,HBCI Bundesbank,MARKDEF1720,,hbci-verlag-adapter,72000000,, +0da50951-b484-40a1-a421-96b0edfb2699,HBCI Bundesbank,MARKDEF1750,,hbci-verlag-adapter,75000000,, +6420be6a-237c-4c17-9a08-27d502b48077,HBCI Bundesbank,MARKDEF1760,,hbci-verlag-adapter,76000000,, +b0367314-0ba5-46c5-9880-30d2f99d0e88,HBCI Bundesbank eh Bayreuth,MARKDEF1773,,hbci-verlag-adapter,77300000,, +59ca7c0a-7274-4d10-bece-0f69a92746c2,HBCI Bundesbank,MARKDEF1790,,hbci-verlag-adapter,79000000,, +0e62d1bc-eb9f-473f-9cbe-355bd9c6bb82,HBCI Bundesbank,MARKDEF1810,,hbci-verlag-adapter,81000000,, +48d58869-dda3-4ef9-a255-392eb6d9f5b4,HBCI Bundesbank,MARKDEF1820,,hbci-verlag-adapter,82000000,, +0cc504f7-8956-47ad-9ab1-3b3833a763cc,HBCI Bundesbank eh Dresden,MARKDEF1850,,hbci-verlag-adapter,85000000,, +f4a27e97-10f5-4da3-8661-e8c83260a693,HBCI Bundesbank,MARKDEF1860,,hbci-verlag-adapter,86000000,, +df7c6c93-3174-42ac-be2c-b3a7e7771b35,HBCI Bundesbank,MARKDEF1870,,hbci-verlag-adapter,87000000,, +2090ffb7-1d2c-41ec-9c7f-94c70679a089,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,35640064,, +a9dd8a8c-5c5d-4eb0-b323-498b50ddde7c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,36040039,, +30f2a043-0109-4873-899d-975ed6e31df1,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,36040060,, +e37d6972-83fc-4e55-a814-ab467b2b9f75,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,36040061,, +f74056c6-a119-4ac3-b445-0584da6f9576,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,36040085,, +0b9efded-dbe0-4064-8ef2-11aa68291757,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF360,,hbci-commerzbank-adapter,36080080,, +e1f38fe5-a597-42d6-9d77-cebc4cd1be7d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI66,,hbci-commerzbank-adapter,36080085,, +b17469ce-1b46-4964-8222-5e4e5489708d,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI17,,hbci-commerzbank-adapter,36089321,, +b9312bf0-c16f-47dc-a3a0-4d71e96ed1e0,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,36240045,, +96dc8ae7-ad86-4249-aed1-d61aa151236a,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF362,,hbci-commerzbank-adapter,36280071,, +84c49bc7-f8bc-446c-83a4-7a0c989ccaa6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,36540046,, +f36bab3f-0fae-42d1-b6e1-e89e7a8816c8,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF365,,hbci-commerzbank-adapter,36580072,, +5db9aa58-2388-4278-9be4-88cdc21637ad,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,37040037,, +cded589c-0e33-4deb-9f7f-7299f3395282,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,37040044,, +a09c414e-ce5f-44f9-be29-00fce9e9d89a,HBCI Commerzbank GF-K48,COBADEFFXXX,,hbci-commerzbank-adapter,37040048,, +918d72ee-af34-45f3-bf62-6579571f7cfe,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,37040060,, +40a5f1d6-dd6c-43be-a2fc-616a7220244b,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,37040061,, +0846bbc0-630c-4997-b6bf-98b3dd179a7f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF370,,hbci-commerzbank-adapter,37080040,, +34948db6-bbc0-42f4-a974-56eb5f203d1c,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 1,DRESDEFFI51,,hbci-commerzbank-adapter,37080085,, +2cebffc8-d8d4-4925-9df3-1014266a10df,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI67,,hbci-commerzbank-adapter,37080086,, +112efb0f-30ba-4c9f-afbe-c360250ef6f4,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI96,,hbci-commerzbank-adapter,37080087,, +8e1ddc3e-d56d-4f63-8193-450b07c284f0,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI97,,hbci-commerzbank-adapter,37080088,, +5fde4e62-df55-49bf-b75d-24f97afb75c7,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFI98,,hbci-commerzbank-adapter,37080089,, +dbb9fcba-ead7-4e33-abe2-e8fd82d04773,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 8,DRESDEFFJ01,,hbci-commerzbank-adapter,37080090,, +bd318885-b3fd-475b-b0cf-23fb4aeba7ad,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 9,DRESDEFFJ02,,hbci-commerzbank-adapter,37080091,, +96a7bc4e-2ead-4fd8-9726-619a1797638b,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 10,DRESDEFFJ03,,hbci-commerzbank-adapter,37080092,, +c88955cf-f697-4536-81b5-9a837fa83ed1,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 11,DRESDEFFJ04,,hbci-commerzbank-adapter,37080093,, +e81ba3c7-8264-4653-ad63-8ba1c59c839e,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 12,DRESDEFFJ05,,hbci-commerzbank-adapter,37080094,, +ebf74d8d-d957-4095-8f7b-dd7774f2e85a,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 13,DRESDEFFJ06,,hbci-commerzbank-adapter,37080095,, +03c4ab62-9d8c-4593-9ed9-eec043d4b8de,HBCI Commerzbank vormals Dresdner Bank Zw 96,DRESDEFFXXX,,hbci-commerzbank-adapter,37080096,, +fba9a1dc-2c0a-496f-8dec-b4f8ab133358,HBCI Commerzbank vormals Dresdner Bank Zw 97,DRESDEFFXXX,,hbci-commerzbank-adapter,37080097,, +16c392ae-5cc3-4152-99b0-c6c06c841010,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 14,DRESDEFFJ07,,hbci-commerzbank-adapter,37080098,, +6d3bf513-c27d-48b0-9df7-0a402a074b91,HBCI Commerzbank vormals Dresdner Bank Zw 99,DRESDEFFI36,,hbci-commerzbank-adapter,37080099,, +4b61158e-ba2f-4c0b-8a41-4621cf597e26,HBCI Commerzbank vormals Dresdner Bank ITGK I,DRESDEFFI04,,hbci-commerzbank-adapter,37089340,, +574024ca-075e-408a-8b75-07cfc0bd0568,HBCI Commerzbank vormals Dresdner Bank ITGK II,DRESDEFFI05,,hbci-commerzbank-adapter,37089342,, +592d2329-8de6-4372-aa4d-94ce64daabde,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,37540050,, +1fcf29c8-49f4-4087-bdf9-1d9266fe750c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,38040007,, +4df26395-1ff0-44d8-85b0-7f1c36a3f9c3,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF380,,hbci-commerzbank-adapter,38080055,, +3bdd4b2b-98d4-4b73-9b64-3268c205c2cd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,38440016,, +be4b1eb1-e774-4f61-b0ca-c2bfed1799dc,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,39040013,, +54a5da9c-dbe7-4bbf-a577-665ce87fac90,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF390,,hbci-commerzbank-adapter,39080005,, +35bbf7ef-65db-419c-8bbd-944f8bbb0eae,HBCI Commerzbank vormals Dresdner Bank Zw 98,DRESDEFFI37,,hbci-commerzbank-adapter,39080098,, +2277e84f-4c4b-4cc6-9e95-fdb06234cc26,HBCI Commerzbank vormals Dresdner Bank Zw 99,DRESDEFFI38,,hbci-commerzbank-adapter,39080099,, +33ffca4f-b7a8-4618-a65b-613e6df99d67,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,39540052,, +a9d71781-e1b2-4a25-be3d-71e1ab566f1d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF395,,hbci-commerzbank-adapter,39580041,, +4bd78444-45d8-43de-9053-0f645c3bbdf7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,40040028,, +9b90219d-1c7a-4065-8912-f481a8097e7c,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF400,,hbci-commerzbank-adapter,40080040,, +2afe5ce3-d93b-4874-9f3f-5d255cc5655b,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI68,,hbci-commerzbank-adapter,40080085,, +47082b35-600a-4351-8ed0-b6d2da76d688,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,40340030,, +d262b670-ce23-4b43-9126-8f6b25aa9bfe,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41040018,, +839e488c-71e6-42d4-8451-3f4f3ad7b56e,HBCI ZTB der Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41041000,, +e357a1f2-2f51-4ef9-8538-05af7552fe21,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41240048,, +c9eaca3a-35fa-41bc-9dbf-f658af86253d,HBCI Santander Consumer Bank,AKBCDE31XXX,,hbci-santander-adapter,37020600,, +90b8a7e2-e24c-491f-a30c-cbf43f9f3174,HBCI Santander Consumer Bank,BSCHDEFFXXX,,hbci-santander-adapter,50320500,, +a08c555b-771c-41cc-abf1-851e087950dd,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,10033300,, +c88ae330-d7bb-4f5c-ae4d-050ce0d535ba,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,20133300,, +294b2d5e-6bce-4dcc-9d71-5dd2a375ba7c,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,25020600,, +79b2dce4-bf98-4f67-a7c9-1ed4a25d7442,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,31010833,, +74b7857d-f169-41e5-ad3b-290969170cec,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,36033300,, +dcce1331-4aec-4ddd-ba0d-85cdbce585de,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,50033300,, +be8d6547-9e57-4756-9005-ccc3ea72d332,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,55033300,, +2438afd1-82f0-4f78-83ba-023bfac820cc,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,60133300,, +99cef8f7-1379-447c-af42-87e2cfe3b7d4,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,70133300,, +99bd1fff-cfdb-4736-916f-101471a1ce6c,HBCI Santander Consumer Bank,SCFBDE33XXX,,hbci-santander-adapter,86033300,, +1eebbe20-0b13-4e7f-b828-8fa781da4f0f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBBER,,hbci-deutsche-bank-adapter,10070024,, +ffcd39fe-3f1e-47e0-94a2-b8cac944ae12,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM488,,hbci-unicredit-adapter,10020890,, +beba119f-980f-4f69-bdf2-17087e91c22b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM470,,hbci-unicredit-adapter,16020086,, +f5bfc16b-3f20-4ab9-b127-ef0ccc3c97b9,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM471,,hbci-unicredit-adapter,17020086,, +8d66d0f8-a41b-4518-b1e5-1e43e3c236d3,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM472,,hbci-unicredit-adapter,18020086,, +422a10b6-9cec-4fb3-8481-a0a36a7f31de,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM300,,hbci-unicredit-adapter,20030000,, +57b4f8f3-bf91-4fac-b01d-3732d4088301,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM414,,hbci-unicredit-adapter,30220190,, +0eec3eb6-7197-4e70-88c8-0783cb7da180,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM809,,hbci-unicredit-adapter,33020190,, +19cc4df5-201d-4635-b5a4-4c450ee92052,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM360,,hbci-unicredit-adapter,36020186,, +a91c86b0-76c2-471f-9b25-37b33b7369b6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM429,,hbci-unicredit-adapter,37020090,, +4eca2680-53e3-4ba2-aeb0-21890aba7229,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM402,,hbci-unicredit-adapter,38020090,, +71506315-8ea8-4ac2-a058-6553e3e43f86,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM808,,hbci-unicredit-adapter,44020090,, +b40cbe82-a9e7-4f41-8b94-2018b20440c9,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM344,,hbci-unicredit-adapter,48020086,, +3ce6fecd-0efb-4c01-8085-0903a76fc1ea,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM430,,hbci-unicredit-adapter,50320191,, +65142ede-c4a9-4b12-af9f-550cfe009134,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM467,,hbci-unicredit-adapter,50520190,, +c1d42c9a-a49f-41c0-b2f8-cdf9299ed0c0,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM487,,hbci-unicredit-adapter,50820292,, +145d8abf-0e47-4329-9e93-0956252046ba,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM478,,hbci-unicredit-adapter,51020186,, +cb05c351-5423-4c79-b830-6253e952b743,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM482,,hbci-unicredit-adapter,54020090,, +122632e1-2a1b-42d4-921e-e77e9ef61d6c,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM485,,hbci-unicredit-adapter,54220091,, +96bf506f-0923-410a-acc8-da4e774d2d2e,HBCI BNP Paribas Germany Consorsbank,CSDBDE71XXX,,hbci-consors-bank-adapter,76030080,, +85cd910f-8053-42c5-8577-706e390a4f06,HBCI Sydbank A/S Filiale Flensburg,SYBKDE22XXX,,hbci-verlag-adapter,21510600,, +62a119df-0724-4964-8c11-5758fb6462a2,HBCI HSBC Trinkaus & Burkhardt AG,TUBDDEDDXXX,,hbci-verlag-adapter,30030880,, +403a66ae-7816-4c28-bac1-2d9bacf8381e,HBCI HSBC Trinkaus & Burkhardt AG,TUBDDEDDXXX,,hbci-verlag-adapter,30030889,, +d857fdd1-2549-43f3-b14f-10ebde0612a7,HBCI Isbank Duesseldorf,ISBKDEFXDUS,,hbci-verlag-adapter,30130600,, +087bf043-28c8-45d0-ae0c-d89ba5c20e76,HBCI Degussa Bank AG,DEGUDEFFXXX,,hbci-verlag-adapter,50010700,, +7ae45cef-6e05-46f1-8c31-6ee00aaeb355,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,25621327,, +0b7b7cff-6faa-40b7-9109-ef13b86fd930,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26520017,, +2962db0f-9802-4e1b-8449-2a6030ed8a27,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26521703,, +4d79ec19-685d-4ad7-911e-14b6abe8999b,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26522319,, +4dc11e46-147b-4b6c-8b52-9469c72da85a,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26620010,, +6db6708f-143a-4f53-b722-7d450e999e70,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26621413,, +3c74abc6-1d88-4121-86bc-ac33abda0dea,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,26720028,, +c2795676-5cb2-45fe-83de-19131d5c9a5a,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28020050,, +3c1b63b9-7156-43d7-b2c7-d3722aac65a1,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021002,, +0e35dcce-a723-45d8-9046-99d9b979bd62,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021301,, +6f9c0064-b288-4a7b-87a8-ab59b9026dc2,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021504,, +a5d63de8-6e3d-4e76-ba33-973ef68c12e5,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021623,, +a8d89a6b-7532-41fe-90ff-b2733820de70,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021705,, +62622ea5-faff-4530-bcc9-09cd96454f26,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28021906,, +d20f6e36-51ce-4b24-af0e-3158c7c6ffbd,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022015,, +d9ae4123-7bd0-4ca2-95be-694dd6ee18b1,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022412,, +36e8fed9-65b9-4924-8b86-c03a1d9c085d,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022511,, +572a2732-4ba1-47ad-8f79-78e3e6c7837f,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022620,, +a24e3dbf-f60e-4ffa-9037-c9b900280363,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28022822,, +cc859e9c-c067-4654-b0f9-7f7d9df989a5,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28023224,, +4853ecdf-9f4c-4740-887c-92c4fa7a6fc8,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28023325,, +49625c57-72dd-4607-832d-163f7545a926,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28220026,, +066964dd-11a7-4222-9fea-c2082fb2f4f2,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28222208,, +3e59a4b4-b6f2-41f9-ac0b-ecc0fc09edd8,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28222621,, +27f0774c-c8c4-44fd-8e38-f6a527136fba,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28320014,, +c96414f5-7d5a-47ce-ba3a-2ceec7e0bc42,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28321816,, +3e5ec343-2fac-4221-b9f4-ea9c04e315f5,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28420007,, +238b8d12-9fc2-465c-9730-ab0c1ad8a6b6,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28421030,, +0bd5af6f-f4fb-4d48-b958-8323c49eaf8f,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28520009,, +2a8641a3-d881-4f6b-9271-bd1e42619c6f,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,28521518,, +5e81df5b-f74d-48e2-aaba-4d80ec04e0ca,HBCI Olb Bank,OLBODEH2XXX,,hbci-olb-adapter,29121731,, +146e84bc-9cac-48af-a1cf-c8becf6a78cd,HBCI ZIRAAT BANK INTERNATIONAL AG Hauptverwaltung,TCZBDEFFXXX,,hbci-verlag-adapter,51220700,, +d8d6356a-9583-4c3d-95db-e1b3274544e1,HBCI DAB,DABBDEMMXXX,,hbci-dab-bank-adapter,70120400,, +bafb9cbb-3359-4bd6-a936-b6b6abf5024d,HBCI Net Bank,GENODEF1S15,,hbci-finapi-adapter,,, +11b3a496-d2a7-4fab-8585-06ca96fd5281,HBCI AAB Bank,AUGBDE77XXX,,hbci-finapi-adapter,,, +0c1dd990-7508-47d9-922e-0f891d1ea9b9,HBCI Isbank Koeln,ISBKDEFXKOL,,hbci-verlag-adapter,37030800,, +563ea862-cbe5-4d97-8be8-f5fa2cf9100a,HBCI Isbank Gelsenkirchen,ISBKDEFXGEL,,hbci-verlag-adapter,42030600,, +d10fc770-feeb-4e57-8aa2-3a5f973f9e8e,HBCI Isbank,ISBKDEFXXXX,,hbci-verlag-adapter,50230600,, +261e339a-05a3-4015-87c0-272f2d15e28d,HBCI Isbank Stuttgart,ISBKDEFXSTU,,hbci-verlag-adapter,60030900,, +3af39c92-0eaa-48eb-ae4d-5caeb46846d5,HBCI Isbank Mannheim,ISBKDEFXXXX,,hbci-verlag-adapter,66030600,, +615a17e9-7e6a-45a8-8e6f-c97593dd74d4,HBCI Isbank Muenchen,ISBKDEFXMUN,,hbci-verlag-adapter,70230600,, +015d0f86-d7c5-412b-87aa-f786b251c506,HBCI Isbank Nuernberg,ISBKDEFXNUR,,hbci-verlag-adapter,76030600,, +621852e5-0d96-46ca-a0e8-b653f13c82ca,HBCI Europäisch-Iranische Handelsbank AG,EIHBDEHHXXX,,hbci-verlag-adapter,20310300,, +3e27398a-1a3d-4fcb-8952-1dc2a65eb5f1,HBCI BNP Paribas Personal Finance SA Niederlassung Österreich,GEBAATWWXXX,,hbci-verlag-adapter,,, +ae95b923-2a56-4d5e-8b8b-4129b269cd32,HBCI Ing Bank N.V.,INGDDEFFXXX,,hbci-ing-adapter,50010517,, +5c48e3de-8ebf-4e34-8221-147e79d07c34,HBCI Deutsche Bank AG,DEUTDE,,hbci-deutsche-bank-adapter,,, +3b14ed68-58fc-45b5-9f87-9ab60dd11a2d,HBCI Norisbank,NORSDE51XXX,,hbci-deutsche-bank-adapter,10077777,, +5be9cc0c-bdf9-427d-9db5-c8f635e0a764,HBCI Norisbank,NORSDE71XXX,,hbci-deutsche-bank-adapter,76026000,, +d7a55606-817c-4c79-bb86-cb7cb0026b2d,HBCI Deutsche Bank Fil Berlin,DEUTDEBBXXX,,hbci-deutsche-bank-adapter,10070000,, +c92649f6-8e31-4091-904f-dd2ae0994727,HBCI Deutsche Bank Fil Berlin II,DEUTDEBB101,,hbci-deutsche-bank-adapter,10070100,, +f97eb142-4460-464b-84fe-a2e70fdc24f8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB101,,hbci-deutsche-bank-adapter,10070124,, +bd697a06-de33-4341-9c93-e7efad1f10f0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB110,,hbci-deutsche-bank-adapter,10070848,, +2d8f6180-934c-4ce9-bf24-517f0168b7ff,HBCI Deutsche Bank Ld Brandenbg,DEUTDEBB160,,hbci-deutsche-bank-adapter,12070000,, +6124e67e-0396-4d30-8de2-97104604e416,HBCI Deutsche Bank Bad Freienwde,DEUTDEBB172,,hbci-deutsche-bank-adapter,12070000,, +6116675c-1b98-45a4-80e8-0197e77b3b1a,HBCI Deutsche Bank Bernau,DEUTDEBB122,,hbci-deutsche-bank-adapter,12070000,, +13854619-f587-43a0-9910-6393be6fea84,HBCI Deutsche Bank Brandenburg,DEUTDEBB161,,hbci-deutsche-bank-adapter,12070000,, +767e3f99-ac1f-4b4c-8c83-90e6ece5b15b,HBCI Deutsche Bank Cottbus,DEUTDEBB180,,hbci-deutsche-bank-adapter,12070000,, +a006c041-0e5d-4780-bf52-00e5e106f248,HBCI Deutsche Bank Eberswalde,DEUTDEBB173,,hbci-deutsche-bank-adapter,12070000,, +6217c0c4-8067-4a5b-809c-6f714566bbc0,HBCI Deutsche Bank Eisenhüttenst,DEUTDEBB174,,hbci-deutsche-bank-adapter,12070000,, +6f0e5ce0-6770-4907-a23e-38d845b664f9,HBCI Deutsche Bank Finsterwalde,DEUTDEBB182,,hbci-deutsche-bank-adapter,12070000,, +7678c078-9518-4ce1-9052-5e030b317684,HBCI Deutsche Bank Frankfurt Od,DEUTDEBB170,,hbci-deutsche-bank-adapter,12070000,, +c0fafd86-0e8b-42ac-9e9b-83375374d34a,HBCI Deutsche Bank Fürstenwalde,DEUTDEBB175,,hbci-deutsche-bank-adapter,12070000,, +7e70a3a1-450d-4118-a256-08dbb593bbf4,HBCI Deutsche Bank Jüterbog,DEUTDEBB187,,hbci-deutsche-bank-adapter,12070000,, +a0b4b81c-feec-4dcd-8ee1-5552fad7407e,HBCI Deutsche Bank Königs Wuster,DEUTDEBB121,,hbci-deutsche-bank-adapter,12070000,, +188c693d-0711-4848-9dbf-7bafa969e328,HBCI Deutsche Bank Kyritz,DEUTDEBB163,,hbci-deutsche-bank-adapter,12070000,, +b8ed4ec1-676b-4786-9e0d-43e164cd6ec6,HBCI Deutsche Bank Neuruppin,DEUTDEBB123,,hbci-deutsche-bank-adapter,12070000,, +61c977cc-976c-4c83-a152-8a6a7ad9a49e,HBCI Deutsche Bank Oranienburg,DEUTDEBB120,,hbci-deutsche-bank-adapter,12070000,, +4ab72ab8-82b2-47ce-bf4e-f1c564205580,HBCI Deutsche Bank Pritzwalk,DEUTDEBB166,,hbci-deutsche-bank-adapter,12070000,, +8fcd3578-2e58-437d-ab2a-1e09d44e04f5,HBCI Deutsche Bank Rathenow,DEUTDEBB167,,hbci-deutsche-bank-adapter,12070000,, +481ef845-2ff1-4119-93d3-4b9a1672361e,HBCI Deutsche Bank Schwedt,DEUTDEBB176,,hbci-deutsche-bank-adapter,12070000,, +157baadf-7190-46b7-9d3c-3464e591983f,HBCI Deutsche Bank Seelow,DEUTDEBB177,,hbci-deutsche-bank-adapter,12070000,, +ff906240-f0c5-406b-99d0-28e54d54a4eb,HBCI Deutsche Bank Senftenberg,DEUTDEBB185,,hbci-deutsche-bank-adapter,12070000,, +11347778-b6aa-4872-903d-708d4cc7e492,HBCI Deutsche Bank Spremberg,DEUTDEBB186,,hbci-deutsche-bank-adapter,12070000,, +65c8154e-7a1b-4e7d-936b-d8a931d5b237,HBCI Deutsche Bank Weißwasser,DEUTDEBB189,,hbci-deutsche-bank-adapter,12070000,, +0bf02854-c4e2-404a-92f1-365dff09a1cd,HBCI Deutsche Bank Guben,DEUTDEBB183,,hbci-deutsche-bank-adapter,12070000,, +e489a1eb-1643-499a-a005-ab2f08684e48,HBCI Deutsche Bank Wittstock,DEUTDEBB169,,hbci-deutsche-bank-adapter,12070000,, +8b8b8219-8cf1-46e8-a7a4-6845d8e37050,HBCI Deutsche Bank Zossen,DEUTDEBB124,,hbci-deutsche-bank-adapter,12070000,, +a919c826-48b9-4030-a8b1-6343f5cecb25,HBCI Deutsche Bank Angermünde,DEUTDEBB171,,hbci-deutsche-bank-adapter,12070000,, +2f0f9755-a093-49ae-9dc8-afed5478d394,HBCI Deutsche Bank Falkensee,DEUTDEBB162,,hbci-deutsche-bank-adapter,12070000,, +8f9287cf-4ae6-4c27-a31a-8c89d53878a0,HBCI Deutsche Bank Forst,DEUTDEBB181,,hbci-deutsche-bank-adapter,12070000,, +8d78b637-86e6-473b-b9ee-adcde03dc0cf,HBCI Deutsche Bank Hennigsdorf,DEUTDEBB125,,hbci-deutsche-bank-adapter,12070000,, +3855d15d-2dbd-42c4-bc00-b49434cd4d8b,HBCI Deutsche Bank Luckenwalde,DEUTDEBB188,,hbci-deutsche-bank-adapter,12070000,, +f4c99397-1531-4dca-aa47-53a9f9356210,HBCI Deutsche Bank Ludwigsfelde,DEUTDEBB164,,hbci-deutsche-bank-adapter,12070000,, +bf890ec5-826c-49ed-84f8-b16f1d9c072f,HBCI Deutsche Bank Lübben,DEUTDEBB184,,hbci-deutsche-bank-adapter,12070000,, +8e060b2c-712b-4781-85c2-e51e0dcd3beb,HBCI Deutsche Bank Schwarzheide,DEUTDEBB126,,hbci-deutsche-bank-adapter,12070000,, +b9f01b44-44f5-4d7d-ae09-03f032c2df21,HBCI Deutsche Bank Strausberg,DEUTDEBB178,,hbci-deutsche-bank-adapter,12070000,, +c59c1f10-e633-419e-8f3f-876395fb5083,HBCI Deutsche Bank Teltow,DEUTDEBB127,,hbci-deutsche-bank-adapter,12070000,, +1e3500ff-0860-4c80-bcd2-5a28a88347f1,HBCI Deutsche Bank Werder Havel,DEUTDEBB168,,hbci-deutsche-bank-adapter,12070000,, +c9009ec6-ae45-4b00-8b3b-9f915b7ec5b7,HBCI Deutsche Bank Nauen,DEUTDEBB165,,hbci-deutsche-bank-adapter,12070000,, +174f3d52-41e1-4ab3-b09e-bdab6e90df38,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB160,,hbci-deutsche-bank-adapter,12070024,, +c3c28583-aa5e-49c3-902d-f51bf989ef2e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB171,,hbci-deutsche-bank-adapter,12070024,, +9b63b020-ced4-461c-aa2e-61630f4351c9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB172,,hbci-deutsche-bank-adapter,12070024,, +0867fe6e-a7eb-4610-aa3f-0096ed8e2cd1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB122,,hbci-deutsche-bank-adapter,12070024,, +aace16f3-444c-4b9f-b864-37126d0df42d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB180,,hbci-deutsche-bank-adapter,12070024,, +498593a1-7a51-4456-a9c0-f62e9b1fa6f0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB173,,hbci-deutsche-bank-adapter,12070024,, +78878b9e-0d52-4c7b-93d3-a80a743a265d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB174,,hbci-deutsche-bank-adapter,12070024,, +96b8b81d-37f0-412a-9c79-e58383cd2454,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB162,,hbci-deutsche-bank-adapter,12070024,, +52c66e31-48ea-4656-8ec3-7af84ed6b9c8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB182,,hbci-deutsche-bank-adapter,12070024,, +7b1e82f0-8bd6-43d8-bf93-dafca0ac46a3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB181,,hbci-deutsche-bank-adapter,12070024,, +4ac8bff7-2d56-4b55-a976-259bec09a33d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB170,,hbci-deutsche-bank-adapter,12070024,, +3d55c173-1ef2-41a1-9a6f-f815a4904404,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB175,,hbci-deutsche-bank-adapter,12070024,, +f1bb05f9-3ef2-4589-bf68-d048bdab5490,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB183,,hbci-deutsche-bank-adapter,12070024,, +4e86ef42-d80e-47fd-ad5b-831a1636a195,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB125,,hbci-deutsche-bank-adapter,12070024,, +f0041a13-fc72-4f9f-9562-d345a7c7fe0b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB187,,hbci-deutsche-bank-adapter,12070024,, +0fff479f-5e49-4726-8d78-1d9d93031fa0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB121,,hbci-deutsche-bank-adapter,12070024,, +3e17a3a4-3085-47b0-a9a9-7f40c13ac9f8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB163,,hbci-deutsche-bank-adapter,12070024,, +f4c1640f-b972-49ed-ba0c-66b41a34682e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB188,,hbci-deutsche-bank-adapter,12070024,, +f31312a8-5ef4-4f0a-8cc7-9db23983755e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB164,,hbci-deutsche-bank-adapter,12070024,, +0398e713-fdb5-4e1e-b1c8-074f32cb2deb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB184,,hbci-deutsche-bank-adapter,12070024,, +bbdfe3fc-0816-4acf-81c8-ede553f77105,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB165,,hbci-deutsche-bank-adapter,12070024,, +a8c27147-f77a-4840-8a87-04a1167f4986,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB123,,hbci-deutsche-bank-adapter,12070024,, +9db337b3-92e5-452d-9a76-f6a3f672073b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB120,,hbci-deutsche-bank-adapter,12070024,, +79a83664-01de-4e25-b217-42189b7273f8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB166,,hbci-deutsche-bank-adapter,12070024,, +2d43eedf-a38c-400a-9224-b350236eae84,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB167,,hbci-deutsche-bank-adapter,12070024,, +20f952b3-60da-4b05-b5b1-ce04bf3fd0be,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB126,,hbci-deutsche-bank-adapter,12070024,, +80638cbf-c7e5-48fe-9f24-a942f730be31,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB176,,hbci-deutsche-bank-adapter,12070024,, +91206252-55dc-4c55-8931-832b6df38957,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB177,,hbci-deutsche-bank-adapter,12070024,, +17f2feed-ca16-4a7d-8140-5ce33c13ace4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB185,,hbci-deutsche-bank-adapter,12070024,, +711c9940-6980-46e0-bf29-e8efa0b1af3c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB186,,hbci-deutsche-bank-adapter,12070024,, +8a992fc0-88b2-4ac2-88bc-2b759361bd19,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB178,,hbci-deutsche-bank-adapter,12070024,, +a989e890-150b-4fb3-adc2-252a5e6c56c9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB127,,hbci-deutsche-bank-adapter,12070024,, +1b3cc292-a858-4429-9162-8c3bcb1076cf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB189,,hbci-deutsche-bank-adapter,12070024,, +1e274ec0-e298-45e6-9176-ad4b095de71e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB168,,hbci-deutsche-bank-adapter,12070024,, +64ef56ff-ab71-4315-978e-b1b7374805fd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB169,,hbci-deutsche-bank-adapter,12070024,, +c2c12f75-3159-4944-b0bc-4e4b82f49115,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB124,,hbci-deutsche-bank-adapter,12070024,, +ccdd30ff-ad92-4eed-a84f-6214481499b2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB161,,hbci-deutsche-bank-adapter,12070024,, +fb7346b4-2576-437c-b9a8-fb49c272cc0d,HBCI Deutsche Bank (Gf intern),DEUTDEFFVAC,,hbci-deutsche-bank-adapter,12070070,, +cc662839-7a58-470f-909e-54a3a6c1b2e4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBPAL,,hbci-deutsche-bank-adapter,12070088,, +d998f788-3dee-451c-a819-d1e90d3e5485,HBCI Deutsche Bank Rostock,DEUTDEBRXXX,,hbci-deutsche-bank-adapter,13070000,, +4bf830c2-92b8-496c-9fbf-a36ffb354075,HBCI Deutsche Bank Anklam,DEUTDEBB151,,hbci-deutsche-bank-adapter,13070000,, +cb16c8ae-93c0-4134-810d-026ddbfeb742,HBCI Deutsche Bank Bad Doberan,DEUTDEBR131,,hbci-deutsche-bank-adapter,13070000,, +40ed8890-a4e0-4fd3-91cb-de64a6ce974a,HBCI Deutsche Bank Bergen Rügen,DEUTDEBR133,,hbci-deutsche-bank-adapter,13070000,, +1e03b7b4-468c-4890-986f-4e8ab5fd2318,HBCI Deutsche Bank Bützow,DEUTDEBB130,,hbci-deutsche-bank-adapter,13070000,, +9dabe183-a986-485b-9c14-fd6aa1d9aaac,HBCI Deutsche Bank Demmin,DEUTDEBB131,,hbci-deutsche-bank-adapter,13070000,, +3f0bdba2-881f-46bd-ba56-efc05522e4ac,HBCI Deutsche Bank Greifswald,DEUTDEBR134,,hbci-deutsche-bank-adapter,13070000,, +40eeced0-3d44-4764-8d9f-7024778c06e5,HBCI Deutsche Bank Grimmen,DEUTDEBR135,,hbci-deutsche-bank-adapter,13070000,, +b1559ea0-498a-4180-ad10-7f90f52f87b8,HBCI Deutsche Bank Güstrow,DEUTDEBB141,,hbci-deutsche-bank-adapter,13070000,, +794f76de-b8c3-4e08-9892-4bac33ce2014,HBCI Deutsche Bank Hagenow,DEUTDEBB142,,hbci-deutsche-bank-adapter,13070000,, +00d7d8be-6ae6-43dc-a12d-daa26eacc60f,HBCI Deutsche Bank Ludwigslust,DEUTDEBB143,,hbci-deutsche-bank-adapter,13070000,, +107400a1-d6f2-45ae-9086-2db356cd3d07,HBCI Deutsche Bank Lübz,DEUTDEBB144,,hbci-deutsche-bank-adapter,13070000,, +998ca5a5-3bd8-471b-8d11-33079cd20940,HBCI Deutsche Bank Malchin,DEUTDEBB152,,hbci-deutsche-bank-adapter,13070000,, +c9837f8c-1b39-4e31-8ee1-9b2cbf10b952,HBCI Deutsche Bank Neubrandenbg,DEUTDEBB150,,hbci-deutsche-bank-adapter,13070000,, +d345de5d-bc48-4b42-9d3d-9b21b508ac84,HBCI Deutsche Bank Neustrelitz,DEUTDEBB153,,hbci-deutsche-bank-adapter,13070000,, +a941b3ee-d0c7-4018-ba41-6fa45031cfb4,HBCI Deutsche Bank Prenzlau,DEUTDEBB154,,hbci-deutsche-bank-adapter,13070000,, +67a5ce54-624b-4a40-b392-a8a325a4f808,HBCI Deutsche Bank Ribnitz-Damgt,DEUTDEBR136,,hbci-deutsche-bank-adapter,13070000,, +30e0e963-24b6-45af-a9e0-fda2d167c479,HBCI Deutsche Bank Schwerin,DEUTDEBB140,,hbci-deutsche-bank-adapter,13070000,, +295ad41c-ef4c-4df1-b8c2-17ba599e6d0f,HBCI Deutsche Bank Stralsund,DEUTDEBR138,,hbci-deutsche-bank-adapter,13070000,, +51a1e55f-6cd1-4e29-81f7-f774f1b1fb39,HBCI Deutsche Bank Templin,DEUTDEBB155,,hbci-deutsche-bank-adapter,13070000,, +24ae1dbb-54be-460f-83fa-ae3244bb875d,HBCI Deutsche Bank Teterow,DEUTDEBB156,,hbci-deutsche-bank-adapter,13070000,, +dbb8ecc0-b7cd-4edb-bb5f-8f55f26802b2,HBCI Deutsche Bank Torgelow,DEUTDEBB179,,hbci-deutsche-bank-adapter,13070000,, +0d331247-67d8-4670-bd4a-2b8ec48016bc,HBCI Deutsche Bank Wismar,DEUTDEBB148,,hbci-deutsche-bank-adapter,13070000,, +4c777eaa-e5f9-4f92-9888-80d46e577671,HBCI Deutsche Bank Wittenberge,DEUTDEBB149,,hbci-deutsche-bank-adapter,13070000,, +8d1e97fa-2d66-47da-a90b-e8f06cde89e0,HBCI Deutsche Bank Wolgast,DEUTDEBB159,,hbci-deutsche-bank-adapter,13070000,, +22586c65-f33c-463f-844f-a6a0893c7469,HBCI Deutsche Bank Gadebusch,DEUTDEBB132,,hbci-deutsche-bank-adapter,13070000,, +e314d6f9-9414-4628-948a-4793143032c5,HBCI Deutsche Bank Parchim,DEUTDEBB145,,hbci-deutsche-bank-adapter,13070000,, +40d82168-4d32-4823-abf3-742b34ebc9c1,HBCI Deutsche Bank Perleberg,DEUTDEBB146,,hbci-deutsche-bank-adapter,13070000,, +3341a824-36e6-410b-b739-dc54b24c103e,HBCI Deutsche Bank Plau,DEUTDEBB147,,hbci-deutsche-bank-adapter,13070000,, +82fd3180-0174-4e47-9a2f-f1d59ebaa320,HBCI Deutsche Bank Sassnitz,DEUTDEBR137,,hbci-deutsche-bank-adapter,13070000,, +df8c0a43-d6e9-4223-8329-54b0ff6199a4,HBCI Deutsche Bank Waren,DEUTDEBB158,,hbci-deutsche-bank-adapter,13070000,, +a5bb74c5-68bc-40ca-b026-639af1570f34,HBCI Deutsche Bank Ueckermünde,DEUTDEBB157,,hbci-deutsche-bank-adapter,13070000,, +e00f4f55-2ef7-4072-b9a0-5b7c3d22f891,HBCI Deutsche Bank Barth,DEUTDEBR132,,hbci-deutsche-bank-adapter,13070000,, +719a9449-0968-4242-9671-6a2c88383d1c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBROS,,hbci-deutsche-bank-adapter,13070024,, +ae0070cd-b210-4680-86cd-908109d21ff8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB151,,hbci-deutsche-bank-adapter,13070024,, +5140e33a-f366-4ffb-ad3e-e440c45c033f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB131,,hbci-deutsche-bank-adapter,13070024,, +55d7903f-8421-4da3-8d90-af3731eb71c1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB133,,hbci-deutsche-bank-adapter,13070024,, +a5e7b506-593d-444b-a4a8-dc3a746122d2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB130,,hbci-deutsche-bank-adapter,13070024,, +eb838991-63e0-411a-b964-40f0c991552b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB128,,hbci-deutsche-bank-adapter,13070024,, +91354996-b630-4b1a-817a-99c5cdd1dd86,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB132,,hbci-deutsche-bank-adapter,13070024,, +6f1a74a1-7171-41f3-861c-7c96ea34a8da,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB134,,hbci-deutsche-bank-adapter,13070024,, +417e60cd-eae2-45b0-a87d-5533fcc20ef3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB135,,hbci-deutsche-bank-adapter,13070024,, +805d24e7-c480-4b49-b257-eaea955b8f5e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB141,,hbci-deutsche-bank-adapter,13070024,, +91ef41de-d9b5-48e8-b405-c3097c727fc0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB142,,hbci-deutsche-bank-adapter,13070024,, +39117a26-66ce-42ac-8c77-c22427d532e9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB143,,hbci-deutsche-bank-adapter,13070024,, +fa5d814e-a48c-4d47-933e-044d796e024e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB144,,hbci-deutsche-bank-adapter,13070024,, +640879bc-daf0-4262-b356-462d4517a589,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB152,,hbci-deutsche-bank-adapter,13070024,, +5fbd02f5-f5e7-4ed4-ab73-82db7f539390,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB150,,hbci-deutsche-bank-adapter,13070024,, +4c8fb5ef-2867-42f3-a021-1ee7a948d47b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB153,,hbci-deutsche-bank-adapter,13070024,, +9dd23e43-34e2-4f54-af58-be2fb196f25c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB145,,hbci-deutsche-bank-adapter,13070024,, +2c3d273a-8a11-4cb4-b79f-bd2dda303617,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB146,,hbci-deutsche-bank-adapter,13070024,, +f771d6e3-41a3-48bc-8e7b-1532038482b2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB147,,hbci-deutsche-bank-adapter,13070024,, +ec7e6d47-6baf-43f0-9d75-b9cb3941f09c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB154,,hbci-deutsche-bank-adapter,13070024,, +2d6df510-909b-4e84-a0a9-5e7f154650e8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB136,,hbci-deutsche-bank-adapter,13070024,, +64734177-2df3-4b5c-821d-8608c1de607a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB137,,hbci-deutsche-bank-adapter,13070024,, +3dec822c-2bb0-4a4f-87ec-09c37103b2f0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB140,,hbci-deutsche-bank-adapter,13070024,, +e64c5d6c-fb09-43b4-9c50-c78e1b2123a2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB138,,hbci-deutsche-bank-adapter,13070024,, +51f11c4b-eecc-4002-8d86-7a6bacb799cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB155,,hbci-deutsche-bank-adapter,13070024,, +670be157-e85f-40b7-a509-1555c4383560,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB156,,hbci-deutsche-bank-adapter,13070024,, +5675c968-a200-4d33-8d22-d789cbce3cb9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB179,,hbci-deutsche-bank-adapter,13070024,, +617ae6e9-fefe-4746-b9ee-776ba00a5663,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB157,,hbci-deutsche-bank-adapter,13070024,, +a46f657f-24f3-43c6-a1ba-44b45e667d94,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB158,,hbci-deutsche-bank-adapter,13070024,, +eeb08978-b5ee-40b4-ab2b-94cb13fa156b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB148,,hbci-deutsche-bank-adapter,13070024,, +27bf8d56-4226-4f6d-b13d-d54771ab2a3d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB149,,hbci-deutsche-bank-adapter,13070024,, +d864205c-c87e-4da5-9a8f-ff1fe4a3c392,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB159,,hbci-deutsche-bank-adapter,13070024,, +3ba487de-ad37-45f0-a86e-1ee3ef0ca81a,HBCI Deutsche Bank Hamburg,DEUTDEHHXXX,,hbci-deutsche-bank-adapter,20070000,, +c974988e-5f3b-4061-af80-a3740d65a1f5,HBCI Deutsche Bank Geesthacht,DEUTDEHH205,,hbci-deutsche-bank-adapter,20070000,, +b76d0c61-7559-45c5-b4d7-099710b8896b,HBCI Deutsche Bank Norderstedt,DEUTDEHH202,,hbci-deutsche-bank-adapter,20070000,, +0067113f-c3b4-4c81-a3ad-cd7856b4fc28,HBCI Deutsche Bank Buchholz,DEUTDEHH207,,hbci-deutsche-bank-adapter,20070000,, +4e0e641a-e195-4d34-a5c9-f7b5cffe2947,HBCI Deutsche Bank Brunsbüttel,DEUTDEHH219,,hbci-deutsche-bank-adapter,20070000,, +a2f3fbb0-a391-40d8-b096-fded3008e9bf,HBCI Deutsche Bank Elmshorn,DEUTDEHH221,,hbci-deutsche-bank-adapter,20070000,, +9124ad42-2923-44c8-9115-f9cda52ff93c,HBCI Deutsche Bank Cuxhaven,DEUTDEHH241,,hbci-deutsche-bank-adapter,20070000,, +780a89ad-e227-4fd3-b530-e14edd7b7453,HBCI Deutsche Bank Ahrensburg,DEUTDEHH201,,hbci-deutsche-bank-adapter,20070000,, +4b51c9d1-7f31-4735-bbef-b33cee00aad1,HBCI Deutsche Bank Itzehoe,DEUTDEHH200,,hbci-deutsche-bank-adapter,20070000,, +0904c1aa-2340-4ce3-a13b-a23077d7d1a8,HBCI Deutsche Bank Lauenburg,DEUTDEHH203,,hbci-deutsche-bank-adapter,20070000,, +66660b04-842f-49c2-87ba-bcf3586e14d5,HBCI Deutsche Bank Stade,DEUTDEHH209,,hbci-deutsche-bank-adapter,20070000,, +2e90f748-d7cb-4fcd-96b3-fb88eda0ef1d,HBCI Deutsche Bank Pinneberg,DEUTDEHH206,,hbci-deutsche-bank-adapter,20070000,, +35d87f59-4829-4b76-9128-95db62418303,HBCI Deutsche Bank Wedel Holst,DEUTDEHH204,,hbci-deutsche-bank-adapter,20070000,, +d0a261d9-aa34-4ae9-927c-a23c67e1e7cf,HBCI Deutsche Bank Buxtehude,DEUTDEHH211,,hbci-deutsche-bank-adapter,20070000,, +238fb8e4-ea34-4974-8e00-c90d75069060,HBCI Deutsche Bank Reinbek,DEUTDEHH213,,hbci-deutsche-bank-adapter,20070000,, +6ea8104b-e112-4bc9-913d-d013c517e817,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBHAM,,hbci-deutsche-bank-adapter,20070024,, +1ebc2ef6-adde-49ec-86d0-f6a599b4bca5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB201,,hbci-deutsche-bank-adapter,20070024,, +637a8326-a085-4a04-b33f-f467bfe1af84,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB219,,hbci-deutsche-bank-adapter,20070024,, +41c6fe61-a1f5-478e-b6c6-6b0fa69f2b4e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB207,,hbci-deutsche-bank-adapter,20070024,, +68fa6bb2-f2f4-4548-a0b8-3ddb097ffe9b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB211,,hbci-deutsche-bank-adapter,20070024,, +dd838194-90e2-4517-a3fb-5f90f816d0eb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB241,,hbci-deutsche-bank-adapter,20070024,, +716cbce9-6a66-42af-b5cb-3c3630f17d69,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB221,,hbci-deutsche-bank-adapter,20070024,, +7782937c-0644-4789-b190-baddac02170a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB205,,hbci-deutsche-bank-adapter,20070024,, +29b78338-fa11-42f4-bd1c-e7ad5445b0d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB200,,hbci-deutsche-bank-adapter,20070024,, +8352c95a-0120-4637-a660-f0bf9c8f7cef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB203,,hbci-deutsche-bank-adapter,20070024,, +1afdfb6f-374f-4855-8e49-6f12d239767c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB202,,hbci-deutsche-bank-adapter,20070024,, +74add828-2fa5-475b-b764-7a3a290f9a6f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB206,,hbci-deutsche-bank-adapter,20070024,, +81b19021-c940-4be4-96bc-498433e71a8e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB213,,hbci-deutsche-bank-adapter,20070024,, +f37842a2-f4ed-4a82-bf69-ec2d04c27bfb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB209,,hbci-deutsche-bank-adapter,20070024,, +faa6d839-59d7-4db9-bb0f-e5605d1604ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB204,,hbci-deutsche-bank-adapter,20070024,, +f5fdd700-3abf-45bf-abf4-7fba72abe88b,HBCI Deutsche Bank Kiel,DEUTDEHH210,,hbci-deutsche-bank-adapter,21070020,, +861c0c7a-ae16-4534-8479-813e7a95696c,HBCI Deutsche Bank Rendsburg,DEUTDEHH214,,hbci-deutsche-bank-adapter,21070020,, +c45f1e3a-3c10-4ac8-90ac-f66abb8306e7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB210,,hbci-deutsche-bank-adapter,21070024,, +17f7d261-5430-488f-a215-887a635f1034,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB214,,hbci-deutsche-bank-adapter,21070024,, +a3e26b48-d8fb-47ae-a66a-c6f211408c5c,HBCI Deutsche Bank Neumünster,DEUTDEHH212,,hbci-deutsche-bank-adapter,21270020,, +6a808d85-e6c7-4fce-bda7-286a98a72360,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB212,,hbci-deutsche-bank-adapter,21270024,, +9d6596ed-fb5d-419a-b3d9-a96279952c23,HBCI Deutsche Bank Flensburg,DEUTDEHH215,,hbci-deutsche-bank-adapter,21570011,, +85918a53-532b-4381-8d9a-8118e56b8553,HBCI Deutsche Bank Westerland,DEUTDEHH216,,hbci-deutsche-bank-adapter,21570011,, +c838bf4a-2c30-4248-acee-3e9afb4d760d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB215,,hbci-deutsche-bank-adapter,21570024,, +88262d48-9aa9-4a7f-8e6e-61311a4871f2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB216,,hbci-deutsche-bank-adapter,21570024,, +6669e4bd-4873-48e4-b7c2-bfa4605cd2de,HBCI Deutsche Bank Husum Nordsee,DEUTDEHH217,,hbci-deutsche-bank-adapter,21770011,, +98ae25d7-f83f-4948-a3ea-ced7c4565329,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB217,,hbci-deutsche-bank-adapter,21770024,, +7aa080d8-41b8-498c-9da6-c29f4b213134,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB237,,hbci-deutsche-bank-adapter,23070700,, +1fd61fd6-4389-45a0-9a30-cd73732138bc,HBCI Deutsche Bank,DEUTDEHH222,,hbci-deutsche-bank-adapter,23070710,, +8aa18e62-bf39-4a7c-9ab7-fbf9fe0338f7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB240,,hbci-deutsche-bank-adapter,24070024,, +483f169d-4205-49ad-a434-1bad28d98dc5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB242,,hbci-deutsche-bank-adapter,24070024,, +3e4d3df0-701f-43f8-a834-bb9c7762bd76,HBCI Deutsche Bank Lüneburg,DEUTDE2H240,,hbci-deutsche-bank-adapter,24070075,, +6a044271-488c-4249-adbd-c580a3a083e7,HBCI Deutsche Bank Uelzen,DEUTDE2H241,,hbci-deutsche-bank-adapter,24070075,, +7ce4a4eb-7570-4f3a-afe7-a63d3e3b9d9b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBHAN,,hbci-deutsche-bank-adapter,25070024,, +2bfde187-c112-4864-9487-69021d696f57,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB243,,hbci-deutsche-bank-adapter,25070024,, +84f833fd-9bd2-4932-9865-8cb5d1115d56,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB250,,hbci-deutsche-bank-adapter,25070024,, +93d86863-692f-43b1-af4f-80babdcb61c2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB252,,hbci-deutsche-bank-adapter,25070024,, +d7b99374-3b3e-4eb7-bc17-50cbdefcf1fd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB931,,hbci-deutsche-bank-adapter,25070024,, +93d27d87-bc39-4698-a756-ade41691630b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB932,,hbci-deutsche-bank-adapter,25070024,, +8eaf4899-d17b-48c2-9b9f-f65956b9ccae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB256,,hbci-deutsche-bank-adapter,25070024,, +5010e7e1-7a9c-47ad-91c3-79f55bebcc1c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB251,,hbci-deutsche-bank-adapter,25070024,, +cb46cfcd-6880-47df-aa74-8e6f82ac351d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB933,,hbci-deutsche-bank-adapter,25070024,, +bd916f66-af74-47c3-b041-80f1f7a0ef70,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB258,,hbci-deutsche-bank-adapter,25070024,, +6c6cec8e-90fd-4092-955f-a040f13cdbcd,HBCI Deutsche Bank Stadthagen,DEUTDE2H265,,hbci-deutsche-bank-adapter,25070066,, +b70b9775-71af-40b3-8137-eba556f5db17,HBCI Deutsche Bank Hannover,DEUTDE2HXXX,,hbci-deutsche-bank-adapter,25070070,, +96342a80-d9ae-4fdb-8530-c3c9b3921130,HBCI Deutsche Bank Barsinghausen,DEUTDE2H250,,hbci-deutsche-bank-adapter,25070070,, +5da63a1e-0187-4155-b6ef-1a1b1541c356,HBCI Deutsche Bank Langenhagen,DEUTDE2H283,,hbci-deutsche-bank-adapter,25070070,, +817bfab9-835a-48ec-a259-2605a6c59135,HBCI Deutsche Bank Laatzen,DEUTDE2H282,,hbci-deutsche-bank-adapter,25070070,, +61ed2908-f8a3-4ef1-8046-bd3ffede2cfc,HBCI Deutsche Bank Burgdorf Hann,DEUTDE2H252,,hbci-deutsche-bank-adapter,25070070,, +90125596-d60c-49ff-bcb6-f52a16a8ceff,HBCI Deutsche Bank Nienburg,DEUTDE2H256,,hbci-deutsche-bank-adapter,25070077,, +b75bfa0b-30ce-44c0-8c09-8b3d8680e4bd,HBCI Deutsche Bank Soltau,DEUTDE2H258,,hbci-deutsche-bank-adapter,25070084,, +3a4d86a3-adbc-4d23-a2aa-d87636405ebd,HBCI Deutsche Bank Munster,DEUTDE2H284,,hbci-deutsche-bank-adapter,25070084,, +53d5a9e3-6870-416f-831f-853aa17ba995,HBCI Deutsche Bank Holzminden,DEUTDE2H251,,hbci-deutsche-bank-adapter,25070086,, +dfcd39ac-6cca-48b0-81ad-96def3ab58dd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB254,,hbci-deutsche-bank-adapter,25470024,, +c516c947-e6b0-4f2e-bab1-f0bdfe72d352,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB255,,hbci-deutsche-bank-adapter,25470024,, +29dd10cf-722f-4e0c-9394-3210dd0283c5,HBCI Deutsche Bank Hameln,DEUTDE2H254,,hbci-deutsche-bank-adapter,25470073,, +cc2898be-6e66-451d-82c3-ce148df1b1eb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB264,,hbci-deutsche-bank-adapter,25471024,, +f66645b7-46f3-439f-b6c7-016ff68c9967,HBCI Deutsche Bank Rinteln,DEUTDE2H264,,hbci-deutsche-bank-adapter,25471073,, +e33aa73a-0ae9-4bfd-a4c6-51576e47c90e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB257,,hbci-deutsche-bank-adapter,25770024,, +4a211e0d-79aa-430b-9a56-86fd60636e48,HBCI Deutsche Bank Celle,DEUTDE2H257,,hbci-deutsche-bank-adapter,25770069,, +a783d52a-81e4-4c82-ae20-41b5752fabbe,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB259,,hbci-deutsche-bank-adapter,25970024,, +e9e4f996-54a5-45cc-a7e8-42c2c3dcea37,HBCI Deutsche Bank Hildesheim,DEUTDE2H259,,hbci-deutsche-bank-adapter,25970074,, +6e025c68-25dd-4988-aac5-c3df2075b11e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB253,,hbci-deutsche-bank-adapter,25971024,, +01c3b388-4b8d-4649-9ea1-a33f7c106c0f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB261,,hbci-deutsche-bank-adapter,25971024,, +b3d371f3-95f8-46ae-8f55-ab7caa149f59,HBCI Deutsche Bank Alfeld Leine,DEUTDE2H253,,hbci-deutsche-bank-adapter,25971071,, +3bc1d14a-6965-4ad9-a543-f3f09cf73d05,HBCI TARGOBANK GF FG,CPLADE55XXX,,hbci-verlag-adapter,55030500,, +1b44bf50-8b29-4c98-88e3-24221a4118d8,HBCI Deutsche Bank Gronau Leine,DEUTDE2H261,,hbci-deutsche-bank-adapter,25971071,, +48928dad-7b62-46ec-80ba-d0f7a4188fb1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB260,,hbci-deutsche-bank-adapter,26070024,, +ddaa753a-efe5-4c22-b8a3-d4e2cb0a9d7a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB263,,hbci-deutsche-bank-adapter,26070024,, +3773950d-3168-4025-8565-b6f74525219e,HBCI Deutsche Bank Göttingen,DEUTDE2H260,,hbci-deutsche-bank-adapter,26070072,, +8db0879a-a221-4e8f-ab92-956a625376dc,HBCI Deutsche Bank Northeim Han,DEUTDE2H263,,hbci-deutsche-bank-adapter,26070072,, +e38ab694-972c-4d9d-a7b2-1b2e81c518a9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB262,,hbci-deutsche-bank-adapter,26271424,, +79c72e19-d6af-434b-a9d8-0d5d1edd342a,HBCI Deutsche Bank Einbeck,DEUTDE2H262,,hbci-deutsche-bank-adapter,26271471,, +46d0330f-9d46-40ba-a7a5-53ece2a04430,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB265,,hbci-deutsche-bank-adapter,26570024,, +6ecfc78e-ae11-4d26-b16e-d3888389473a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB921,,hbci-deutsche-bank-adapter,26570024,, +41b38cb5-6a15-4bd9-843a-49733ef94eed,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB922,,hbci-deutsche-bank-adapter,26570024,, +dcbcf32d-49fa-4081-9d75-ee79c588494b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB923,,hbci-deutsche-bank-adapter,26570024,, +6db1e191-030c-4479-b9f9-5d99a17b9f02,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB924,,hbci-deutsche-bank-adapter,26570024,, +369d38d0-d6c3-4b08-904e-86a7893ad57c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB266,,hbci-deutsche-bank-adapter,26570024,, +fdb3a0de-c621-433f-9e0f-ea08656e9261,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB925,,hbci-deutsche-bank-adapter,26570024,, +73633763-d5c1-4200-a026-52bc76b0670d,HBCI Deutsche Bank Osnabrück,DEUTDE3B265,,hbci-deutsche-bank-adapter,26570090,, +4fe69b54-8178-42c9-8264-88c1c1512578,HBCI Deutsche Bank Georgsmarienh,DEUTDE3B270,,hbci-deutsche-bank-adapter,26570090,, +77ea129c-dc8f-4936-bbc1-53444ca2f7b2,HBCI Deutsche Bank Bramsche Hase,DEUTDE3B269,,hbci-deutsche-bank-adapter,26570090,, +c6a7e115-f99c-4b67-9226-6c95672de3c9,HBCI Deutsche Bank Bad Iburg,DEUTDE3B268,,hbci-deutsche-bank-adapter,26570090,, +26667dfb-864f-4c36-83fa-0e1e253c0497,HBCI Deutsche Bank Lengerich Wes,DEUTDE3B271,,hbci-deutsche-bank-adapter,26570090,, +14e39bdd-d80e-45cd-89d9-6f0e5a012f2a,HBCI Deutsche Bank Melle,DEUTDE3B266,,hbci-deutsche-bank-adapter,26570090,, +411fef5d-ff12-4aa3-a63a-95304da04736,HBCI Deutsche Bank Quakenbrück,DEUTDE3B272,,hbci-deutsche-bank-adapter,26570090,, +94d73192-7030-46a7-95dd-2f58f5f7bcd6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB267,,hbci-deutsche-bank-adapter,26770024,, +6e993d88-98be-471b-b26d-1307aaaac6c7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB926,,hbci-deutsche-bank-adapter,26770024,, +ed2fef94-a94a-4fcc-8817-4ac9a8449dd3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB927,,hbci-deutsche-bank-adapter,26770024,, +b4755112-5b15-4567-a58a-8a2d58d35e40,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB928,,hbci-deutsche-bank-adapter,26770024,, +7f1e364b-0cf4-4fa1-aed3-d87b5ae97253,HBCI Deutsche Bank Nordhorn,DEUTDE3B267,,hbci-deutsche-bank-adapter,26770095,, +bdf8436b-d0ad-44b6-9c62-a8b2667fc43d,HBCI Deutsche Bank Meppen,DEUTDE3B274,,hbci-deutsche-bank-adapter,26770095,, +7dcf0656-1076-4cf8-8e03-9ef13bfe6f66,HBCI Deutsche Bank Lingen Ems,DEUTDE3B273,,hbci-deutsche-bank-adapter,26770095,, +7a0a437d-c23b-487d-8a82-f9ec964c7f50,HBCI Deutsche Bank Schüttorf,DEUTDE3B275,,hbci-deutsche-bank-adapter,26770095,, +7fbde10c-e8d0-4449-898f-7bc399ed837c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB268,,hbci-deutsche-bank-adapter,26870024,, +7f5bc922-a796-4b7d-ae20-3e6f4ad1aa2e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB929,,hbci-deutsche-bank-adapter,26870024,, +2a7dcc00-cd3f-4283-9411-0d1cee64d283,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB934,,hbci-deutsche-bank-adapter,26870024,, +0d25b944-b91c-425d-bcbb-20c6104cdbe7,HBCI Deutsche Bank Goslar,DEUTDE2H268,,hbci-deutsche-bank-adapter,26870032,, +fe5f5561-1347-4b16-8271-bdafc628c254,HBCI Deutsche Bank Clausthal-Zel,DEUTDE2H280,,hbci-deutsche-bank-adapter,26870032,, +751538fa-1b47-45f8-b845-e397f9f3d3fe,HBCI Deutsche Bank Seesen,DEUTDE2H285,,hbci-deutsche-bank-adapter,26870032,, +5b331fb2-4771-4ece-bd30-fdbcd71a0133,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB269,,hbci-deutsche-bank-adapter,26971024,, +5624050a-8a9b-4b79-9c80-daf18c8eb8cd,HBCI Deutsche Bank Wolfsburg,DEUTDE2H269,,hbci-deutsche-bank-adapter,26971038,, +3370d6c9-480f-4d82-b836-8bdd7a88b04b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB270,,hbci-deutsche-bank-adapter,27070024,, +a7a4b7a1-d9b2-4f05-96e9-c050937c3bc5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB278,,hbci-deutsche-bank-adapter,27070024,, +5e791312-edfa-4311-87a1-ade2306e4c47,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB271,,hbci-deutsche-bank-adapter,27070024,, +b97f6330-3bf3-4e04-9df5-377d0bd773da,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB930,,hbci-deutsche-bank-adapter,27070024,, +818f84c6-261a-4cb1-a6f7-cb7de9498e62,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB274,,hbci-deutsche-bank-adapter,27070024,, +2e4d5e94-674f-4ba3-b292-c71b30c5081b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB272,,hbci-deutsche-bank-adapter,27070024,, +356a4d7f-cc17-4f1b-9b2c-bfc5776afbb8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB279,,hbci-deutsche-bank-adapter,27070024,, +587fe0aa-c8ff-46d9-932e-987ab5259da0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB273,,hbci-deutsche-bank-adapter,27070024,, +d217a4c2-3063-4d71-a5cc-ed81687284e0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB275,,hbci-deutsche-bank-adapter,27070024,, +97a66a34-138a-4d13-815d-651083966547,HBCI Deutsche Bank Braunschweig,DEUTDE2H270,,hbci-deutsche-bank-adapter,27070030,, +366a3a2b-7f6b-4b7c-b363-75fe9720b269,HBCI Deutsche Bank Gifhorn,DEUTDE2H271,,hbci-deutsche-bank-adapter,27070031,, +3f359849-1d0d-4698-9ae0-f1634acff2fd,HBCI Deutsche Bank Osterode Harz,DEUTDE2H274,,hbci-deutsche-bank-adapter,27070034,, +eafcd179-8053-451c-bba1-f179ad698df4,HBCI Deutsche Bank Herzberg Harz,DEUTDE2H281,,hbci-deutsche-bank-adapter,27070034,, +b35629c2-7b20-4681-bcfb-ff71ee912ab0,HBCI Deutsche Bank Bad Lauterber,DEUTDE2H278,,hbci-deutsche-bank-adapter,27070034,, +65f54598-0a93-4f5b-9abd-42e2c665c5d3,HBCI Deutsche Bank Bad Sachsa,DEUTDE2H279,,hbci-deutsche-bank-adapter,27070041,, +9ba72c45-1636-49ef-8b9d-ad808a22a21a,HBCI Deutsche Bank Bad Harzburg,DEUTDE2H272,,hbci-deutsche-bank-adapter,27070042,, +230859c4-8cf7-41ae-ae52-2f2fbcffbcda,HBCI Deutsche Bank Helmstedt,DEUTDE2H273,,hbci-deutsche-bank-adapter,27070043,, +e2ffac52-b078-4ba2-b6c2-3f2bce0260c9,HBCI Deutsche Bank Peine,DEUTDE2H275,,hbci-deutsche-bank-adapter,27070079,, +887cef5c-41f6-428b-8342-eb22d31e4ec4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB277,,hbci-deutsche-bank-adapter,27072524,, +23cad5af-4e92-43ff-8249-ac410c00dafe,HBCI Deutsche Bank Wolfenbüttel,DEUTDE2H277,,hbci-deutsche-bank-adapter,27072537,, +ca1c2b48-ff92-441f-84aa-248dd6f7c898,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB276,,hbci-deutsche-bank-adapter,27072724,, +12062944-340a-4ec6-949f-d3d5ad578dc8,HBCI Deutsche Bank Salzgitter,DEUTDE2H276,,hbci-deutsche-bank-adapter,27072736,, +870a5b71-8aa0-4cb3-8257-3e8e1baf5a89,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB280,,hbci-deutsche-bank-adapter,28070024,, +56f05ba6-e18b-4cdb-902f-b5d54c078264,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB281,,hbci-deutsche-bank-adapter,28070024,, +d04a366e-8c5c-4869-9e0a-eecd2ed69590,HBCI Deutsche Bank Oldenburg,DEUTDEHB280,,hbci-deutsche-bank-adapter,28070057,, +3ec09e96-e91e-48dc-a7d5-7c449f01cf0a,HBCI Deutsche Bank Bad Zwischena,DEUTDEHB281,,hbci-deutsche-bank-adapter,28070057,, +7fd2363e-c975-4a87-9fff-8123c5798796,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB282,,hbci-deutsche-bank-adapter,28270024,, +13b07d87-8cba-414e-94fd-6c058b11f1b0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB283,,hbci-deutsche-bank-adapter,28270024,, +abe239ce-02e2-4874-bdc3-059e6a92e4c2,HBCI Deutsche Bank Wilhelmshaven,DEUTDEHB282,,hbci-deutsche-bank-adapter,28270056,, +408fad48-f49e-401c-b469-19c2286fb0d9,HBCI Deutsche Bank Jever,DEUTDEHB283,,hbci-deutsche-bank-adapter,28270056,, +701e44af-9f24-4ae1-b861-11069972b371,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB284,,hbci-deutsche-bank-adapter,28470024,, +9ac2a3f4-943b-4aa0-ad96-8f0efa30c13d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB289,,hbci-deutsche-bank-adapter,28470024,, +5dc531fe-2732-4143-baf3-abb84003051b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB286,,hbci-deutsche-bank-adapter,28470024,, +2e21fe48-b854-4178-8050-47ea225e1d44,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB298,,hbci-deutsche-bank-adapter,28470024,, +8938261c-43c2-4fe0-a6a6-2de008e47200,HBCI Deutsche Bank Emden,DEUTDEHB284,,hbci-deutsche-bank-adapter,28470091,, +6f4a4423-2e02-4944-8888-cd542a6fd616,HBCI Deutsche Bank Aurich,DEUTDEHB289,,hbci-deutsche-bank-adapter,28470091,, +28aec3e1-f733-460b-be86-ab0a0630c302,HBCI Deutsche Bank Norden,DEUTDEHB286,,hbci-deutsche-bank-adapter,28470091,, +b6284436-6a91-4b1e-863d-262c806870e0,HBCI Deutsche Bank Norderney,DEUTDEHB298,,hbci-deutsche-bank-adapter,28470091,, +a577e853-58ba-43a7-8673-ae9bfccee24a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB285,,hbci-deutsche-bank-adapter,28570024,, +4b542ca3-d29c-4efa-8d40-d40c64ae5f97,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB287,,hbci-deutsche-bank-adapter,28570024,, +b2c1978f-ebaf-45aa-a310-cf0787f3d503,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB288,,hbci-deutsche-bank-adapter,28570024,, +502d056a-813e-437e-98f0-a80e33391ceb,HBCI Deutsche Bank Leer,DEUTDEHB285,,hbci-deutsche-bank-adapter,28570092,, +5b927a84-d3f8-466f-a282-1fe613595f12,HBCI Deutsche Bank Papenburg,DEUTDEHB287,,hbci-deutsche-bank-adapter,28570092,, +997a8149-0527-4ebe-ba10-63c578a8512c,HBCI Deutsche Bank Weener,DEUTDEHB288,,hbci-deutsche-bank-adapter,28570092,, +4c74b231-d6e5-41b7-90b2-3dbd0e250d9c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBBRE,,hbci-deutsche-bank-adapter,29070024,, +873348c8-77e8-4516-a02d-de455a55b636,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB295,,hbci-deutsche-bank-adapter,29070024,, +6becd539-8acf-4916-8bc2-f403faf08362,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB292,,hbci-deutsche-bank-adapter,29070024,, +9fa26be6-e837-4787-aa3b-967023d99069,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB293,,hbci-deutsche-bank-adapter,29070024,, +dff6c21c-e768-4596-b73b-e26f1d04cd02,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB294,,hbci-deutsche-bank-adapter,29070024,, +bcafcfdd-14b4-4534-b628-14c90ed9837f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB296,,hbci-deutsche-bank-adapter,29070024,, +f8a65288-11e7-452d-a934-eef437780ef1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB297,,hbci-deutsche-bank-adapter,29070024,, +4686e723-478f-4dcc-95c9-16829dd43b52,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB290,,hbci-deutsche-bank-adapter,29070024,, +41d8a967-207c-4311-a9d8-5040898caa20,HBCI Deutsche Bank Bremen,DEUTDEHBXXX,,hbci-deutsche-bank-adapter,29070050,, +8018946c-55df-4df2-abc7-5f05e3215b24,HBCI Deutsche Bank Achim Bremen,DEUTDEHB295,,hbci-deutsche-bank-adapter,29070050,, +e946bfbc-58f3-4670-aae7-cce70ab82bfe,HBCI Deutsche Bank Osterholz-Sch,DEUTDEHB297,,hbci-deutsche-bank-adapter,29070050,, +e32a169b-0ca1-4784-be5d-bbbbb574a3e0,HBCI Deutsche Bank Bremerhaven,DEUTDEHB292,,hbci-deutsche-bank-adapter,29070051,, +97856b70-922c-4a97-bd14-cd593597d215,HBCI Deutsche Bank Delmenhorst,DEUTDEHB294,,hbci-deutsche-bank-adapter,29070052,, +0d999395-7ca0-43cf-928c-cbcb924c480d,HBCI Deutsche Bank Cloppenburg,DEUTDEHB293,,hbci-deutsche-bank-adapter,29070058,, +91d80815-bfcc-4117-a7be-b1b3ab6fe205,HBCI Deutsche Bank Vechta,DEUTDEHB290,,hbci-deutsche-bank-adapter,29070059,, +79c8f5b4-8249-43f5-8df5-269f9ea221a4,HBCI Deutsche Bank Lohne Oldenbg,DEUTDEHB296,,hbci-deutsche-bank-adapter,29070059,, +272f68b4-f560-47a1-989d-b75b09bf7064,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB291,,hbci-deutsche-bank-adapter,29172624,, +a0117d99-10b2-40c4-8200-1128bd0b289e,HBCI Deutsche Bank Verden,DEUTDEHB291,,hbci-deutsche-bank-adapter,29172655,, +c50bdacc-8735-4891-a6e8-aad066736d87,HBCI Deutsche Bank Düsseldorf,DEUTDEDDXXX,,hbci-deutsche-bank-adapter,30070010,, +2182ec11-67f1-4913-aff6-27501cf8e830,HBCI Deutsche Bank Erkrath,DEUTDEDD306,,hbci-deutsche-bank-adapter,30070010,, +0e991ee7-34b0-4a9f-91b8-3530337f4b2d,HBCI Deutsche Bank Kaarst,DEUTDEDD307,,hbci-deutsche-bank-adapter,30070010,, +6c326bbc-f70d-4d68-835b-cc499894b23e,HBCI Deutsche Bank Neuss,DEUTDEDD300,,hbci-deutsche-bank-adapter,30070010,, +523bf732-b133-4609-bf4e-001385eef34a,HBCI Deutsche Bank Hilden,DEUTDEDD305,,hbci-deutsche-bank-adapter,30070010,, +b7c89233-aea9-4376-9cb6-df63820cdf10,HBCI Deutsche Bank Langenfeld Rh,DEUTDEDD301,,hbci-deutsche-bank-adapter,30070010,, +44b19eac-6cb6-4936-8f5c-318220ab6cf9,HBCI Deutsche Bank Ratingen,DEUTDEDD304,,hbci-deutsche-bank-adapter,30070010,, +4c022c89-be16-4432-bbf1-97e2ac4351f6,HBCI Deutsche Bank Meerbusch,DEUTDEDD303,,hbci-deutsche-bank-adapter,30070010,, +9b17d207-2988-4b46-8d99-ce7ed0064121,HBCI Deutsche Bank Monheim Rhein,DEUTDEDD302,,hbci-deutsche-bank-adapter,30070010,, +823c30b3-2ff5-4b33-b485-69c7c812fa1a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBDUE,,hbci-deutsche-bank-adapter,30070024,, +b3361991-3bbc-4dbd-b6f9-d3808d3104d7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB306,,hbci-deutsche-bank-adapter,30070024,, +315f11f3-0924-4d10-b538-7f7419d217f1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB305,,hbci-deutsche-bank-adapter,30070024,, +6e4a1b20-0488-4c13-ba5b-3787b8de5221,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB307,,hbci-deutsche-bank-adapter,30070024,, +77a5a629-f741-4710-b6ab-aa68483f19d2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB301,,hbci-deutsche-bank-adapter,30070024,, +592dd6a1-b9aa-4a61-a4f6-23b8de68060d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB303,,hbci-deutsche-bank-adapter,30070024,, +af0c8fef-51fa-46dc-9cea-226d404d940e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB302,,hbci-deutsche-bank-adapter,30070024,, +ea9de9dd-f5bf-408c-8ded-41e850a1ec7d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB300,,hbci-deutsche-bank-adapter,30070024,, +0690b976-c69e-4ce4-9a76-3efe77e9cbea,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB304,,hbci-deutsche-bank-adapter,30070024,, +1cc7d6d1-f6d8-469e-bdba-86724fc7d6e4,HBCI Deutsche Bank Mönchengladbach,DEUTDEDD310,,hbci-deutsche-bank-adapter,31070001,, +371aff9c-fcaa-419d-a98c-f4f89c07aef6,HBCI Deutsche Bank Korschenbroic,DEUTDEDD317,,hbci-deutsche-bank-adapter,31070001,, +cdbf6ad5-4cd5-4657-99d6-5b4f4104602e,HBCI Deutsche Bank Wegberg,DEUTDEDD318,,hbci-deutsche-bank-adapter,31070001,, +75beac86-2c1f-4b7a-9c1f-a80d551222b7,HBCI Deutsche Bank Erkelenz,DEUTDEDD319,,hbci-deutsche-bank-adapter,31070001,, +475e14ce-cf38-47b9-9195-69e4d9fd7ced,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB310,,hbci-deutsche-bank-adapter,31070024,, +3e2b73a6-7a35-4752-bc6a-05030666c6b4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB319,,hbci-deutsche-bank-adapter,31070024,, +03a14ee1-b97f-45c6-ad83-7691a44f4a74,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB317,,hbci-deutsche-bank-adapter,31070024,, +5a9070c5-ca60-46c8-92e0-985e615f8a24,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB318,,hbci-deutsche-bank-adapter,31070024,, +7a7fb3c5-5d7b-469b-b199-1de7ebf73336,HBCI Deutsche Bank Viersen,DEUTDEDD314,,hbci-deutsche-bank-adapter,31470004,, +876491c0-08f6-4a00-94cf-bfa828f2ee04,HBCI Deutsche Bank Nettetal,DEUTDEDD315,,hbci-deutsche-bank-adapter,31470004,, +23966aad-3898-4211-943a-138ce1ee84a3,HBCI Deutsche Bank Grefrath Kref,DEUTDEDD316,,hbci-deutsche-bank-adapter,31470004,, +87bed7a5-0b67-4379-8395-9ceab6419702,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB314,,hbci-deutsche-bank-adapter,31470024,, +39c30d22-2abe-4ee7-a394-dc9154d49ade,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB316,,hbci-deutsche-bank-adapter,31470024,, +e01d1f96-a9ad-498e-b5cd-c10b4692db2a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB315,,hbci-deutsche-bank-adapter,31470024,, +772c00c3-7f8e-4064-9949-1f65b74ddc6a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB320,,hbci-deutsche-bank-adapter,32070024,, +6e33041f-d990-41d7-9acf-fc9bf554ab54,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB323,,hbci-deutsche-bank-adapter,32070024,, +05e8e161-59f5-4d6c-bdc0-6496c73f7984,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB327,,hbci-deutsche-bank-adapter,32070024,, +ced805d5-7ed2-4ea4-b343-8a0426edaa49,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB328,,hbci-deutsche-bank-adapter,32070024,, +090f7b1a-8860-47ab-8bbf-e405ed6c38f6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB329,,hbci-deutsche-bank-adapter,32070024,, +1e96c11c-3006-454e-9963-3332285ac90a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB936,,hbci-deutsche-bank-adapter,32070024,, +d014c681-5e02-46c8-b071-0f126972584c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB322,,hbci-deutsche-bank-adapter,32070024,, +e8ac9e39-ac2a-4891-99cf-0372ce3e9a52,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB321,,hbci-deutsche-bank-adapter,32070024,, +005a3821-483b-4abb-a989-6ea4e66d29db,HBCI Deutsche Bank Krefeld,DEUTDEDD320,,hbci-deutsche-bank-adapter,32070080,, +2cf64caf-f6a5-41a9-8ab0-27bafbdd012a,HBCI Deutsche Bank Geldern,DEUTDEDD323,,hbci-deutsche-bank-adapter,32070080,, +de9bcf59-393a-4354-819c-80f8eee05c4c,HBCI Deutsche Bank Kempen,DEUTDEDD327,,hbci-deutsche-bank-adapter,32070080,, +f4ec5b68-b006-4a53-9b84-22b61f4f318b,HBCI Deutsche Bank Kevelaer,DEUTDEDD328,,hbci-deutsche-bank-adapter,32070080,, +289638dd-e8b4-41ab-8de0-f8447253541d,HBCI Deutsche Bank Tönisvorst,DEUTDEDD331,,hbci-deutsche-bank-adapter,32070080,, +c0a4f1a3-7d28-47f3-866a-a4864203d469,HBCI Deutsche Bank Rheinberg,DEUTDEDD329,,hbci-deutsche-bank-adapter,32070080,, +6c5bbccf-7d60-4b18-8147-5bebcf132947,HBCI Deutsche Bank Willich,DEUTDEDD322,,hbci-deutsche-bank-adapter,32070080,, +f323946d-8e0b-403f-a6eb-ccf194bb2125,HBCI Deutsche Bank Xanten,DEUTDEDD321,,hbci-deutsche-bank-adapter,32070080,, +594e3aa9-863c-4615-ae3d-e0e7d0120fa2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB324,,hbci-deutsche-bank-adapter,32470024,, +29dfb4c1-2ab4-450d-a6e5-be7c7ad0d019,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB326,,hbci-deutsche-bank-adapter,32470024,, +21c4466e-6937-49b0-90cc-9cec33f1d69a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB325,,hbci-deutsche-bank-adapter,32470024,, +80e8d57e-74e8-4da2-8dc6-67f51f926dc0,HBCI Deutsche Bank Kleve,DEUTDEDD324,,hbci-deutsche-bank-adapter,32470077,, +89845284-f32b-46e0-b910-79be5f728de3,HBCI Deutsche Bank Goch,DEUTDEDD325,,hbci-deutsche-bank-adapter,32470077,, +dc5984e1-5308-4b71-9d74-c8735da5cfbb,HBCI Deutsche Bank Emmerich,DEUTDEDD326,,hbci-deutsche-bank-adapter,32470077,, +9aa55914-e2d8-40ae-9938-64dd8b021179,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBWUP,,hbci-deutsche-bank-adapter,33070024,, +82820661-afd3-41b1-bb75-b68273aa2b06,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB331,,hbci-deutsche-bank-adapter,33070024,, +b0ed786d-c9f0-4090-a3b4-d547d2bdf628,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB332,,hbci-deutsche-bank-adapter,33070024,, +071e863a-3354-4f9d-9be5-bfc26b3f7eae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB333,,hbci-deutsche-bank-adapter,33070024,, +1deeb986-fa01-4c84-979c-81061fcac652,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB334,,hbci-deutsche-bank-adapter,33070024,, +2aa4901a-7fa4-490d-918e-0ac26b03d5f2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB330,,hbci-deutsche-bank-adapter,33070024,, +da4258b1-e8a2-4feb-84c3-e88e57d51e2e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB335,,hbci-deutsche-bank-adapter,33070024,, +ee0485fd-f764-4028-9b36-aa9ca3dda6c6,HBCI Deutsche Bank Wuppertal,DEUTDEDWXXX,,hbci-deutsche-bank-adapter,33070090,, +47b741f0-bd7c-4de5-96cc-3ff7c14e20fc,HBCI Deutsche Bank Ennepetal,DEUTDEDW331,,hbci-deutsche-bank-adapter,33070090,, +8a45bf03-b1f8-466b-ba97-31a135f234b2,HBCI Deutsche Bank Mettmann,DEUTDEDW333,,hbci-deutsche-bank-adapter,33070090,, +cb7c5485-e79d-4043-a5c1-2dabd97b2446,HBCI Deutsche Bank Heiligenhaus,DEUTDEDW332,,hbci-deutsche-bank-adapter,33070090,, +a4de01fa-d3c2-4276-9b0f-3b8127ec30c3,HBCI Deutsche Bank Velbert,DEUTDEDW330,,hbci-deutsche-bank-adapter,33070090,, +93dadb73-39ed-45e4-8b7c-fbd0362524c6,HBCI Deutsche Bank Schwelm,DEUTDEDW334,,hbci-deutsche-bank-adapter,33070090,, +379e48ec-c544-4147-97c2-610132797737,HBCI Deutsche Bank Wülfrath,DEUTDEDW335,,hbci-deutsche-bank-adapter,33070090,, +d39af0b6-d16a-44d0-a068-b1a0c624848d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB340,,hbci-deutsche-bank-adapter,34070024,, +4814614a-f1e3-490e-bf77-3286dbe930f1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB344,,hbci-deutsche-bank-adapter,34070024,, +c9937656-add5-4c66-8a17-17a04ed0d56b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB345,,hbci-deutsche-bank-adapter,34070024,, +b39015c4-d2a0-4030-92ff-35d7ccb606ce,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB346,,hbci-deutsche-bank-adapter,34070024,, +684c71d7-9f3d-4f4b-a96e-11af27a21a01,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB341,,hbci-deutsche-bank-adapter,34070024,, +46344d58-1068-419d-9267-d72b2d88e19a,HBCI Deutsche Bank Remscheid,DEUTDEDW340,,hbci-deutsche-bank-adapter,34070093,, +5b18b417-a71e-4096-9c3b-5d5820dbdf23,HBCI Deutsche Bank Hückeswagen,DEUTDEDW344,,hbci-deutsche-bank-adapter,34070093,, +d0c04568-575e-4001-9485-375b3e3c17a4,HBCI Deutsche Bank Wermelskirche,DEUTDEDW346,,hbci-deutsche-bank-adapter,34070093,, +226df6f8-03c2-4637-8114-d35cf749393e,HBCI Deutsche Bank Wipperfürth,DEUTDEDW341,,hbci-deutsche-bank-adapter,34070093,, +6696178c-198a-4f58-a35c-56a68ff8cc87,HBCI Deutsche Bank Radevormwald,DEUTDEDW345,,hbci-deutsche-bank-adapter,34070093,, +8b4c85ff-7afd-4877-9d66-bae5bd42d45b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB342,,hbci-deutsche-bank-adapter,34270024,, +7c60973a-0a1a-49ff-90b7-39c35e285cc1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB343,,hbci-deutsche-bank-adapter,34270024,, +61e9d5aa-5dae-4e97-8b48-7f494e63b947,HBCI Deutsche Bank Solingen,DEUTDEDW342,,hbci-deutsche-bank-adapter,34270094,, +53a62ecc-049b-4f8b-abf0-33154885cc66,HBCI Deutsche Bank Haan Rheinl,DEUTDEDW343,,hbci-deutsche-bank-adapter,34270094,, +24be3408-5bf7-44e8-b52b-d2cfc3564037,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB350,,hbci-deutsche-bank-adapter,35070024,, +32b2c7ec-434a-40d1-89e9-238c86e109eb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB351,,hbci-deutsche-bank-adapter,35070024,, +9031a096-49e9-4f03-9acf-0d4354105561,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB352,,hbci-deutsche-bank-adapter,35070024,, +b8b877b4-c7f6-4e81-b899-fed3fc3a228a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB354,,hbci-deutsche-bank-adapter,35070024,, +4fd035fb-8543-49d4-ab96-4054ae8dbf0e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB356,,hbci-deutsche-bank-adapter,35070024,, +32a32f02-f03d-4814-b0fc-52d79ccaf686,HBCI Deutsche Bank Duisburg,DEUTDEDE350,,hbci-deutsche-bank-adapter,35070030,, +4cf5f380-052f-4628-97a6-ca642262ec41,HBCI Deutsche Bank Dinslaken,DEUTDEDE351,,hbci-deutsche-bank-adapter,35070030,, +68cb4373-58a4-42a5-83d7-032fe9f264cd,HBCI Deutsche Bank Kamp-Lintfort,DEUTDEDE352,,hbci-deutsche-bank-adapter,35070030,, +d3f3c154-0b5f-49bf-a824-1c3958bcf57c,HBCI Deutsche Bank Moers,DEUTDEDE354,,hbci-deutsche-bank-adapter,35070030,, +5147a33a-d76f-4d9a-8a77-d9379b2dcee8,HBCI Deutsche Bank Wesel,DEUTDEDE356,,hbci-deutsche-bank-adapter,35070030,, +70812777-dc8f-4084-97a4-877b2f816025,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBESS,,hbci-deutsche-bank-adapter,36070024,, +986762b0-cfff-4aeb-b415-d849dd971951,HBCI Deutsche Bank Essen,DEUTDEDEXXX,,hbci-deutsche-bank-adapter,36070050,, +9b9df475-65f6-4956-ad1b-b729ce5b8cc8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB362,,hbci-deutsche-bank-adapter,36270024,, +7272c979-304c-4461-95db-e73e1e7ac176,HBCI Deutsche Bank Mülheim Ruhr,DEUTDEDE362,,hbci-deutsche-bank-adapter,36270048,, +604eae15-0c3c-4214-9876-02706823fe3a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB365,,hbci-deutsche-bank-adapter,36570024,, +f237658c-b180-470d-98f1-689e6da62f6a,HBCI Deutsche Bank Oberhausen,DEUTDEDE365,,hbci-deutsche-bank-adapter,36570049,, +6397b892-aa41-471c-bea1-271c76ab1c8d,HBCI Deutsche Bank Köln,DEUTDEDK402,,hbci-deutsche-bank-adapter,37070000,, +2a5e221f-dd90-4cb4-a121-df281d5fa938,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBKOE,,hbci-deutsche-bank-adapter,37070024,, +403e9d94-8d7e-4405-8463-d8bd1145c2d8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB379,,hbci-deutsche-bank-adapter,37070024,, +665e97df-9d03-4c1e-a60f-f406da1d205b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB938,,hbci-deutsche-bank-adapter,37070024,, +06c6cfa1-c3ac-417a-9a20-110e9caab3ad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB373,,hbci-deutsche-bank-adapter,37070024,, +0d6cc2b6-5c4f-4720-8411-f716159a20b9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB370,,hbci-deutsche-bank-adapter,37070024,, +795570f2-839f-4fe9-aa41-0180eab4515c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB939,,hbci-deutsche-bank-adapter,37070024,, +07f15a7e-8874-4499-89f3-dc256d651a6c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB353,,hbci-deutsche-bank-adapter,37070024,, +080e0df4-9689-4d2b-9167-bc0f0cc7048c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB940,,hbci-deutsche-bank-adapter,37070024,, +af241d91-7d0b-488b-88fb-5dcd5a0389e0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB355,,hbci-deutsche-bank-adapter,37070024,, +9cc69290-3e50-4732-9bea-ba5dd6986720,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB372,,hbci-deutsche-bank-adapter,37070024,, +9187d67c-4ddc-40f4-9463-3b581b504fb9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB941,,hbci-deutsche-bank-adapter,37070024,, +d8c39967-2e8e-4e47-8b8f-75f818ad10c2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB357,,hbci-deutsche-bank-adapter,37070024,, +04df90b2-23e3-40a5-b586-356eb8202e0a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB358,,hbci-deutsche-bank-adapter,37070024,, +f5fe91ca-a700-48b4-94b0-7bb75214ddde,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB386,,hbci-deutsche-bank-adapter,37070024,, +e272c2b1-167d-4a48-ba6c-0c3df717bd7e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB360,,hbci-deutsche-bank-adapter,37070024,, +41cc9fad-8ace-40c6-8053-998e0ac44c49,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB371,,hbci-deutsche-bank-adapter,37070024,, +444b2c32-877c-4b72-97ed-aedf9ec2ff9a,HBCI Deutsche Bank Köln,DEUTDEDKXXX,,hbci-deutsche-bank-adapter,37070060,, +5bd13771-d0cb-44e5-b06d-cb663466095e,HBCI Deutsche Bank Grevenbroich,DEUTDEDK372,,hbci-deutsche-bank-adapter,37070060,, +f5360f3e-ee17-4e77-8ba4-42e7560ec578,HBCI Deutsche Bank Brühl Rheinl,DEUTDEDK370,,hbci-deutsche-bank-adapter,37070060,, +e3f7a785-a5e5-4451-a4a1-045e632e9b47,HBCI Deutsche Bank Bergisch-Glad,DEUTDEDK373,,hbci-deutsche-bank-adapter,37070060,, +52ca3735-f037-4cf7-8a4b-df075fe1d27f,HBCI Deutsche Bank Bergheim Erft,DEUTDEDK351,,hbci-deutsche-bank-adapter,37070060,, +a5bde90c-663b-415b-9260-276f8c5fbc68,HBCI Deutsche Bank Euskirchen,DEUTDEDK354,,hbci-deutsche-bank-adapter,37070060,, +4d10165c-03e3-406b-ae4c-b1eec4d157af,HBCI Deutsche Bank Dormagen,DEUTDEDK352,,hbci-deutsche-bank-adapter,37070060,, +2f9c7577-f28f-40f8-bd06-8db84aa9b3cd,HBCI Deutsche Bank Frechen,DEUTDEDK355,,hbci-deutsche-bank-adapter,37070060,, +6b42b4ea-e375-47c1-923f-c4d8f602fa24,HBCI Deutsche Bank Hennef,DEUTDEDK356,,hbci-deutsche-bank-adapter,37070060,, +a9df5beb-4fbc-44f8-a331-8d6bf4ad47b6,HBCI Deutsche Bank Troisdorf,DEUTDEDK360,,hbci-deutsche-bank-adapter,37070060,, +9cef7902-2ea0-4817-8ff5-b1e58ea2d440,HBCI Deutsche Bank Siegburg,DEUTDEDK386,,hbci-deutsche-bank-adapter,37070060,, +92559c4a-3356-46b9-a2c1-651a45805868,HBCI Deutsche Bank Wesseling,DEUTDEDK371,,hbci-deutsche-bank-adapter,37070060,, +d1d1caca-f800-401c-883f-7046d39f3d65,HBCI Deutsche Bank Euskirchen,DEUTDEDK379,,hbci-deutsche-bank-adapter,37070060,, +589017ea-6c3e-43dd-8201-cae36db3f4e8,HBCI Deutsche Bank Hürth Rheinl,DEUTDEDK357,,hbci-deutsche-bank-adapter,37070060,, +0cbdc4e1-ce56-4702-9509-3bd84692f915,HBCI Deutsche Bank Eitorf,DEUTDEDK353,,hbci-deutsche-bank-adapter,37070060,, +e0c2b68c-7208-4498-9394-a2e7fe862058,HBCI Deutsche Bank Kerpen Rheinl,DEUTDEDK358,,hbci-deutsche-bank-adapter,37070060,, +c7ecd7bf-879b-4728-bfaf-97a5c7195637,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB375,,hbci-deutsche-bank-adapter,37570024,, +b35c5c72-52cd-4ce8-ac18-63ae28944c8a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB378,,hbci-deutsche-bank-adapter,37570024,, +95b51a96-115c-49ff-9df8-341dba9c4364,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB377,,hbci-deutsche-bank-adapter,37570024,, +f808d656-77fe-47c4-8db5-eb034062f18c,HBCI Deutsche Bank Leverkusen,DEUTDEDK375,,hbci-deutsche-bank-adapter,37570064,, +38bff19c-30d3-4a21-af1b-53aaffadc9fa,HBCI Deutsche Bank Burscheid,DEUTDEDK378,,hbci-deutsche-bank-adapter,37570064,, +38af3654-5144-4e98-8879-3931f613c90e,HBCI Deutsche Bank Leichlingen,DEUTDEDK377,,hbci-deutsche-bank-adapter,37570064,, +7933eafe-c4de-41e4-9d4b-bcabcea3fce0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB380,,hbci-deutsche-bank-adapter,38070024,, +f35de8f5-7a4f-4bc6-bed2-518807aade26,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB944,,hbci-deutsche-bank-adapter,38070024,, +e2bca34a-2bfd-4767-a04b-9ddc3cdaf0fb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB943,,hbci-deutsche-bank-adapter,38070024,, +d20487c2-5d14-400c-9ad7-ddcc7e242b08,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB946,,hbci-deutsche-bank-adapter,38070024,, +a3f990d9-238b-4735-aac3-88e5c9c1ebe0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB942,,hbci-deutsche-bank-adapter,38070024,, +72a204d5-86cb-4c53-a677-715472759614,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB945,,hbci-deutsche-bank-adapter,38070024,, +235bb04a-98a6-433e-8ba0-1cb17690fb23,HBCI Deutsche Bank Bonn,DEUTDEDK380,,hbci-deutsche-bank-adapter,38070059,, +9df30cf0-b652-4b74-b775-f214f3987178,HBCI Deutsche Bank Bad Neuenahr,DEUTDEDK385,,hbci-deutsche-bank-adapter,38070059,, +3c98e0d0-54b7-42fe-9deb-8186f9974d65,HBCI Deutsche Bank Meckenheim Rh,DEUTDEDK389,,hbci-deutsche-bank-adapter,38070059,, +072631ef-6225-4b59-a822-eaa533204103,HBCI Deutsche Bank Rheinbach,DEUTDEDK388,,hbci-deutsche-bank-adapter,38070059,, +5c863e33-7fd5-4467-b420-3a128be20650,HBCI Deutsche Bank Remagen,DEUTDEDK384,,hbci-deutsche-bank-adapter,38070059,, +343922ef-4cc4-4a6d-b20f-2215057674f6,HBCI Deutsche Bank Bad Honnef,DEUTDEDK387,,hbci-deutsche-bank-adapter,38070059,, +0c87cd79-8b0c-4f4d-885f-6cfc20a5680b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBXXX,,hbci-deutsche-bank-adapter,38070724,, +ff773184-e56c-4227-ad9d-a88838423f64,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB383,,hbci-deutsche-bank-adapter,38077724,, +c56f5753-570b-494a-9cb2-777478f1022d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB384,,hbci-deutsche-bank-adapter,38470024,, +b75d7daa-e428-4ece-9180-02546abf1589,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB385,,hbci-deutsche-bank-adapter,38470024,, +e1d8095c-1695-418c-bb76-f4bed1ebfa22,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB388,,hbci-deutsche-bank-adapter,38470024,, +12997ff3-b96e-4e70-874b-aaaa5e7749b0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB389,,hbci-deutsche-bank-adapter,38470024,, +d4775c16-7de4-44fc-b55c-e92b833cbfc2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB387,,hbci-deutsche-bank-adapter,38470024,, +44f83746-f9f5-40b1-bccc-2b95606cd00e,HBCI Deutsche Bank Gummersbach,DEUTDEDW384,,hbci-deutsche-bank-adapter,38470091,, +70748f80-6357-4244-a0a5-6915b9381b72,HBCI Deutsche Bank Bergneustadt,DEUTDEDW385,,hbci-deutsche-bank-adapter,38470091,, +bc3a7149-db0e-43e0-b74b-cd730761ef70,HBCI Deutsche Bank Engelskirchen,DEUTDEDW388,,hbci-deutsche-bank-adapter,38470091,, +c0d75525-80f5-420f-9a41-3f239d80e3d2,HBCI Deutsche Bank Meinerzhagen,DEUTDEDW389,,hbci-deutsche-bank-adapter,38470091,, +898e2921-d2fc-4ed4-833c-c26c345daf4c,HBCI Deutsche Bank Waldbröl,DEUTDEDW387,,hbci-deutsche-bank-adapter,38470091,, +e62dd0f0-68df-4c24-a2fe-606432808aa6,HBCI Deutsche Bank Aachen,DEUTDEDK390,,hbci-deutsche-bank-adapter,39070020,, +481e2a42-3372-41ae-9153-a54424791150,HBCI Deutsche Bank Eschweiler Rh,DEUTDEDK391,,hbci-deutsche-bank-adapter,39070020,, +c1f90cda-aaf9-4786-9086-20708071adb2,HBCI Deutsche Bank Alsdorf Rhein,DEUTDEDK398,,hbci-deutsche-bank-adapter,39070020,, +c33c4685-eb6f-4f90-94ab-ea5ebb8899f1,HBCI Deutsche Bank Jülich,DEUTDEDK392,,hbci-deutsche-bank-adapter,39070020,, +c0423011-c0a2-43de-b4a5-6dffcbcc318b,HBCI Deutsche Bank Hückelhoven,DEUTDEDK394,,hbci-deutsche-bank-adapter,39070020,, +aad85cb9-4599-4bec-ac6b-ee88cdb76c69,HBCI Deutsche Bank Herzogenrath,DEUTDEDK397,,hbci-deutsche-bank-adapter,39070020,, +47dfe0c9-c66b-4b1d-9202-5cd3058f4850,HBCI Deutsche Bank Übach-Palenberg,DEUTDEDK399,,hbci-deutsche-bank-adapter,39070020,, +9c72e2a2-3a2f-47f9-b39b-4fc066dcc3f6,HBCI Deutsche Bank Stolberg,DEUTDEDK393,,hbci-deutsche-bank-adapter,39070020,, +0a509fc4-40e7-4213-a0a3-774d71fd7c05,HBCI Deutsche Bank Würselen,DEUTDEDK400,,hbci-deutsche-bank-adapter,39070020,, +ad104167-8cc3-43f2-af4a-33a9044e33de,HBCI Deutsche Bank Heinsberg,DEUTDEDK401,,hbci-deutsche-bank-adapter,39070020,, +b0139fdd-92f9-402b-bd35-e359446eee68,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB390,,hbci-deutsche-bank-adapter,39070024,, +10b4358d-f614-415f-be67-91d72d300d45,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB398,,hbci-deutsche-bank-adapter,39070024,, +10d1dd6b-c550-492d-88ca-8c940ef85517,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB391,,hbci-deutsche-bank-adapter,39070024,, +c639f604-b652-4691-9d12-d790e4c48598,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB948,,hbci-deutsche-bank-adapter,39070024,, +d378be11-8229-4946-8273-f75847be5095,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB397,,hbci-deutsche-bank-adapter,39070024,, +c906e66c-f83b-4090-bd05-a70d0ab6db36,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB394,,hbci-deutsche-bank-adapter,39070024,, +cda14e8e-8d78-461d-8224-13317557edfd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB392,,hbci-deutsche-bank-adapter,39070024,, +d5723528-d589-46bf-9070-df54c9ad8368,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB393,,hbci-deutsche-bank-adapter,39070024,, +6f7b9124-5402-4318-956c-857da525e221,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB399,,hbci-deutsche-bank-adapter,39070024,, +a3fbe834-0478-4dda-9d1f-efacc8efb15f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB947,,hbci-deutsche-bank-adapter,39070024,, +a2c045b6-064f-47c3-a3c0-b8b0e2d20ae3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB395,,hbci-deutsche-bank-adapter,39570024,, +ec0394ae-4421-4a24-aff3-6ebfd2bdecf5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB396,,hbci-deutsche-bank-adapter,39570024,, +5469ae3d-92fc-4161-928a-1cbad24c1807,HBCI Deutsche Bank Düren,DEUTDEDK395,,hbci-deutsche-bank-adapter,39570061,, +a807d880-cca3-4f51-804e-2bd6e3e5c58d,HBCI Deutsche Bank Kreuzau,DEUTDEDK396,,hbci-deutsche-bank-adapter,39570061,, +8165969c-6693-4d08-a0bb-cdf106d58f74,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB400,,hbci-deutsche-bank-adapter,40070024,, +d757a76d-928e-4f4f-a86c-970e0952607a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB949,,hbci-deutsche-bank-adapter,40070024,, +28a30f4c-e104-4173-baa9-9b3d54dd307c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB950,,hbci-deutsche-bank-adapter,40070024,, +26c5851e-26d4-4c7c-96f9-189067b34397,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB951,,hbci-deutsche-bank-adapter,40070024,, +35d21675-4ea2-458b-88e4-ad2dca6f4bae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB952,,hbci-deutsche-bank-adapter,40070024,, +5e336da0-34e5-4504-adb1-ebb8d9abc3e3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB404,,hbci-deutsche-bank-adapter,40070024,, +04fe85fe-10b7-4d76-8498-3db59f780ee1,HBCI Deutsche Bank Münster Westf,DEUTDE3B400,,hbci-deutsche-bank-adapter,40070080,, +d781d151-61c4-4582-887a-3faa36351b44,HBCI Deutsche Bank Greven Westf,DEUTDE3B442,,hbci-deutsche-bank-adapter,40070080,, +172fc704-0113-4f64-9eb2-80012fa7af18,HBCI Deutsche Bank Steinfurt,DEUTDE3B443,,hbci-deutsche-bank-adapter,40070080,, +80cabb54-ad48-4e5e-ae52-2354653432ab,HBCI Deutsche Bank Dülmen,DEUTDE3B441,,hbci-deutsche-bank-adapter,40070080,, +c3d41c0a-1731-4de1-9a14-a18fe7501bd7,HBCI Deutsche Bank Warendorf,DEUTDE3B404,,hbci-deutsche-bank-adapter,40070080,, +dceca7dc-aec4-4c11-85e9-9413ab88d242,HBCI Deutsche Bank Coesfeld,DEUTDE3B440,,hbci-deutsche-bank-adapter,40070080,, +98fdc298-d17b-4760-add2-d2b156c52254,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB403,,hbci-deutsche-bank-adapter,40370024,, +0ae35031-428b-4a2b-bacb-5d80e3f6b7d0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB405,,hbci-deutsche-bank-adapter,40370024,, +ff06e55b-a542-47e1-9e36-59209182c132,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB406,,hbci-deutsche-bank-adapter,40370024,, +9bb0d11c-1d7d-4430-8bb4-3b51db8df81e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB401,,hbci-deutsche-bank-adapter,40370024,, +6c30b56e-77eb-4b74-809f-286f8b9ec530,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB407,,hbci-deutsche-bank-adapter,40370024,, +dc3ce440-2432-453f-8242-0050d456a098,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB408,,hbci-deutsche-bank-adapter,40370024,, +532cbbf6-ac32-452c-8a35-3d8c36ee8b85,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB409,,hbci-deutsche-bank-adapter,40370024,, +f362b382-4668-40c8-a7fa-2487d0c3ef08,HBCI Deutsche Bank Rheine Westf,DEUTDE3B403,,hbci-deutsche-bank-adapter,40370079,, +ab790258-1507-40f5-a820-6b81ad8ab338,HBCI Deutsche Bank Emsdetten,DEUTDE3B406,,hbci-deutsche-bank-adapter,40370079,, +511286c9-4d42-4865-aa1a-7f3a862b24d0,HBCI Deutsche Bank Ahaus,DEUTDE3B405,,hbci-deutsche-bank-adapter,40370079,, +c980a357-d81a-4cfa-9f4e-bca1449289c6,HBCI Deutsche Bank Gronau Westf,DEUTDE3B401,,hbci-deutsche-bank-adapter,40370079,, +fe3fc192-ba1f-4b2f-ba0f-5ce09cb6d793,HBCI Deutsche Bank Vreden,DEUTDE3B409,,hbci-deutsche-bank-adapter,40370079,, +3747f30e-c52a-4567-8597-c57daa6ef9f9,HBCI Deutsche Bank Stadtlohn,DEUTDE3B408,,hbci-deutsche-bank-adapter,40370079,, +0ec5f40c-8e2b-48d4-8d9a-898ef0475600,HBCI Deutsche Bank Ibbenbüren,DEUTDE3B407,,hbci-deutsche-bank-adapter,40370079,, +f33f6b3b-0d20-44d4-86ec-b2cae1f9c1a6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB410,,hbci-deutsche-bank-adapter,41070024,, +521bf02f-ebe8-45c5-98af-feec541a372c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB412,,hbci-deutsche-bank-adapter,41070024,, +1358aa8f-0b0f-4d66-8069-2f39949f3e4b,HBCI Deutsche Bank Hamm,DEUTDEDE410,,hbci-deutsche-bank-adapter,41070049,, +16c66f68-0c38-493e-962d-440b695bf98a,HBCI Deutsche Bank Ahlen Westf,DEUTDEDE412,,hbci-deutsche-bank-adapter,41070049,, +61faff8a-7b4e-4508-95ef-ef8f43ee4fa1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB416,,hbci-deutsche-bank-adapter,41670024,, +9c292ea1-eeed-459f-9105-14b30038f0c5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB417,,hbci-deutsche-bank-adapter,41670024,, +583cf0fb-7d54-4531-812b-c8510e0d7b4e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB414,,hbci-deutsche-bank-adapter,41670024,, +68212713-a578-4c47-a2f0-0a1ded0a2fad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB418,,hbci-deutsche-bank-adapter,41670024,, +478832fd-ff6b-4f5e-ad4b-6884d0322181,HBCI Deutsche Bank Lippstadt,DEUTDE3B416,,hbci-deutsche-bank-adapter,41670027,, +f3b999bf-24d9-4c71-9805-9feb6bd8172d,HBCI Deutsche Bank Brilon,DEUTDE3B417,,hbci-deutsche-bank-adapter,41670028,, +67f382ec-13b0-4f0e-a81f-d322b67da409,HBCI Deutsche Bank Soest Westf,DEUTDE3B414,,hbci-deutsche-bank-adapter,41670029,, +e16dcc9d-266c-45ac-9ca9-b32ddfd8c003,HBCI Deutsche Bank Werl,DEUTDE3B418,,hbci-deutsche-bank-adapter,41670030,, +91d3c922-1ed3-41d1-b591-c616a8ec4ceb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB420,,hbci-deutsche-bank-adapter,42070024,, +2b6031be-4020-47a8-8504-20a1ba4d046e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB422,,hbci-deutsche-bank-adapter,42070024,, +2856ba5d-9430-4a1c-b19b-b7d4b0d277b2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB423,,hbci-deutsche-bank-adapter,42070024,, +b302af89-1879-4e36-9c98-7093419718cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB424,,hbci-deutsche-bank-adapter,42070024,, +1cb4db49-f98e-4f1e-a7e9-aaa7973a9fc4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB366,,hbci-deutsche-bank-adapter,42070024,, +0b0d1f11-ddd7-4244-a314-75d65987959f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB426,,hbci-deutsche-bank-adapter,42070024,, +51a38577-f068-423c-b458-76762afff49b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB425,,hbci-deutsche-bank-adapter,42070024,, +4d62bb2b-a632-48a1-8764-7dcdd3b0a646,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB421,,hbci-deutsche-bank-adapter,42070024,, +3fd074bc-8fd0-43e5-947a-f27919d38141,HBCI Deutsche Bank Gelsenkirchen,DEUTDEDE420,,hbci-deutsche-bank-adapter,42070062,, +835bd10f-9bbf-4ea3-94b1-8be9aaaf3d40,HBCI Deutsche Bank Gladbeck,DEUTDEDE384,,hbci-deutsche-bank-adapter,42070062,, +f83b92b0-0da2-4763-915e-f6467535a864,HBCI Deutsche Bank Bottrop,DEUTDEDE422,,hbci-deutsche-bank-adapter,42070062,, +f8f3e644-4da9-4e87-9f7a-35ec704c2d94,HBCI Deutsche Bank Dorsten,DEUTDEDE424,,hbci-deutsche-bank-adapter,42070062,, +d70aba54-e77b-4aeb-837c-6adf3054e768,HBCI Deutsche Bank Datteln,DEUTDEDE423,,hbci-deutsche-bank-adapter,42070062,, +15b65c5f-2032-421e-a489-312d896ffa5e,HBCI Deutsche Bank Marl Westf,DEUTDEDE425,,hbci-deutsche-bank-adapter,42070062,, +4adf71c4-dc6b-459e-90f7-e8e8589d8507,HBCI Deutsche Bank Herten Westf,DEUTDEDE426,,hbci-deutsche-bank-adapter,42070062,, +0982bca5-aba7-403a-80fd-e61103436436,HBCI Deutsche Bank Recklinghause,DEUTDEDE421,,hbci-deutsche-bank-adapter,42070062,, +e45fa075-0846-4976-9e5b-d757f1e25c4e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB428,,hbci-deutsche-bank-adapter,42870024,, +a5b1a344-657c-473c-bae6-0e2905ee97bd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB429,,hbci-deutsche-bank-adapter,42870024,, +0dfbb245-82a0-4493-98b1-506b88877560,HBCI Deutsche Bank Bocholt,DEUTDE3B428,,hbci-deutsche-bank-adapter,42870077,, +c125c024-db13-47fb-a389-a5604e7d31db,HBCI Deutsche Bank Borken Westf,DEUTDE3B429,,hbci-deutsche-bank-adapter,42870077,, +ad6024f1-e7fb-43de-b910-cf05f3d6c25a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB430,,hbci-deutsche-bank-adapter,43070024,, +722b8c3d-ec2c-453e-a4fc-e556907f9776,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB433,,hbci-deutsche-bank-adapter,43070024,, +a6fff4c2-1265-4c97-bb63-930c7fb3f280,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB432,,hbci-deutsche-bank-adapter,43070024,, +d0a06945-6601-416d-9014-438c66102dc5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB434,,hbci-deutsche-bank-adapter,43070024,, +f76ab4a3-e959-4387-9edb-31eca6cd083a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB431,,hbci-deutsche-bank-adapter,43070024,, +97a1a700-0656-4bf2-b657-da10f52b25a9,HBCI Deutsche Bank Bochum,DEUTDEDE430,,hbci-deutsche-bank-adapter,43070061,, +cb7d3a4e-336a-4851-9d5a-ce9f44779148,HBCI Deutsche Bank Hattingen,DEUTDEDE433,,hbci-deutsche-bank-adapter,43070061,, +1348f2e0-eb7f-44a4-b18a-c4328a5ab351,HBCI Deutsche Bank Sprockhövel,DEUTDEDE434,,hbci-deutsche-bank-adapter,43070061,, +c43a0c98-5a79-4610-ad9f-b7b4a2d5107b,HBCI Deutsche Bank Herne,DEUTDEDE432,,hbci-deutsche-bank-adapter,43070061,, +7d97c041-b609-4f21-a673-e1809fa3d241,HBCI Deutsche Bank Witten,DEUTDEDE431,,hbci-deutsche-bank-adapter,43070061,, +e05dd16e-ef24-418d-82ea-cd61a6aac7ed,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB440,,hbci-deutsche-bank-adapter,44070024,, +b89de267-8cf0-4ab8-a20f-481377de7936,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB441,,hbci-deutsche-bank-adapter,44070024,, +9b26256c-06fd-4b46-bc8a-bc14e7b576a4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB442,,hbci-deutsche-bank-adapter,44070024,, +fc152650-c1f5-4ac3-8f75-e01e27d56581,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB444,,hbci-deutsche-bank-adapter,44070024,, +2645ceae-5fa1-4da1-b726-ce4b235a0e67,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB443,,hbci-deutsche-bank-adapter,44070024,, +3679b91f-b22f-43c3-9f2e-ac5f1d1d73e0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB447,,hbci-deutsche-bank-adapter,44070024,, +3b025c22-35c0-455b-b7ed-013a16216b1d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB448,,hbci-deutsche-bank-adapter,44070024,, +499fda7b-565e-465c-99c7-9d1e75261a4c,HBCI Deutsche Bank Dortmund,DEUTDEDE440,,hbci-deutsche-bank-adapter,44070050,, +ac22a5da-4174-4433-89fe-9f38872793ad,HBCI Deutsche Bank CastropRauxel,DEUTDEDE441,,hbci-deutsche-bank-adapter,44070050,, +5dcd9bd7-a522-4016-b5da-8580fb5b4758,HBCI Deutsche Bank Lünen,DEUTDEDE442,,hbci-deutsche-bank-adapter,44070050,, +3dd8340d-f72c-4d58-8185-0679764f708d,HBCI Deutsche Bank Unna,DEUTDEDE443,,hbci-deutsche-bank-adapter,44070050,, +325c4080-1693-423f-96f9-f3d0ca54a312,HBCI Deutsche Bank Schwerte,DEUTDEDE444,,hbci-deutsche-bank-adapter,44070050,, +440b58bf-78cf-4df2-b241-9ce132493737,HBCI Deutsche Bank Waltrop,DEUTDEDE447,,hbci-deutsche-bank-adapter,44070050,, +0a3f9ff4-ff12-4c8a-824d-97d97ca7ff21,HBCI Deutsche Bank Werne Lippe,DEUTDEDE448,,hbci-deutsche-bank-adapter,44070050,, +c68b4c44-93a9-4db1-8fb8-15f12a9a8c05,HBCI Deutsche Bank Iserlohn,DEUTDEDW445,,hbci-deutsche-bank-adapter,44570004,, +76c0ec50-85ec-4421-8ceb-9ee9a62282ce,HBCI Deutsche Bank Altena Westf,DEUTDEDW446,,hbci-deutsche-bank-adapter,44570004,, +77017d72-62d2-44e7-8d33-6456ea522471,HBCI Deutsche Bank Menden Sauerl,DEUTDEDW447,,hbci-deutsche-bank-adapter,44570004,, +627eed2f-bc6a-40a3-b8a6-d5dedeaf1662,HBCI Deutsche Bank Hemer,DEUTDEDW444,,hbci-deutsche-bank-adapter,44570004,, +8e260dde-f90e-456f-ad07-74c74c9ac335,HBCI Deutsche Bank Plettenberg,DEUTDEDW449,,hbci-deutsche-bank-adapter,44570004,, +1f3f7cc2-7495-41bd-8295-8bc3d7ec2ac9,HBCI Deutsche Bank Werdohl,DEUTDEDW443,,hbci-deutsche-bank-adapter,44570004,, +e858ace9-5ab4-4d26-97fd-cbdcccace9fe,HBCI Deutsche Bank Neuenrade,DEUTDEDW448,,hbci-deutsche-bank-adapter,44570004,, +f1f3387e-eb17-4a71-aea9-9ab73a4d6620,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB445,,hbci-deutsche-bank-adapter,44570024,, +024dcd2a-5517-4a6f-8152-fdc92f9bd1ba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB446,,hbci-deutsche-bank-adapter,44570024,, +caefdfd9-168a-4a6b-8d16-407d4b9c7a48,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB954,,hbci-deutsche-bank-adapter,44570024,, +6411420a-95ad-4c50-afb0-21a872cdb559,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB955,,hbci-deutsche-bank-adapter,44570024,, +b6c6d834-6b17-4d3b-8757-c795293299ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB956,,hbci-deutsche-bank-adapter,44570024,, +b987fc21-9630-47b2-a16e-46b9b684b907,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB449,,hbci-deutsche-bank-adapter,44570024,, +bf3c7b09-a08e-446a-8547-6beb53c6334c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB953,,hbci-deutsche-bank-adapter,44570024,, +c2f7286f-f065-4841-9139-e1123f8b1460,HBCI Deutsche Bank Hagen,DEUTDEDW450,,hbci-deutsche-bank-adapter,45070002,, +edc41456-9db1-43cf-b88c-0d94afd4ffba,HBCI Deutsche Bank Gevelsberg,DEUTDEDW454,,hbci-deutsche-bank-adapter,45070002,, +66db7dcb-c44e-4dd9-a3ad-ef0703d0a1d8,HBCI Deutsche Bank Kierspe,DEUTDEDW456,,hbci-deutsche-bank-adapter,45070002,, +c1d9c1d2-de51-44f2-93e7-15d0d6da53b5,HBCI Deutsche Bank Herdecke Ruhr,DEUTDEDW453,,hbci-deutsche-bank-adapter,45070002,, +6392910f-1c9b-4fe5-9e1f-6b091c9a084f,HBCI Deutsche Bank Lüdenscheid,DEUTDEDW451,,hbci-deutsche-bank-adapter,45070002,, +f243f565-f192-49ba-9f1c-1f7872287aff,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB450,,hbci-deutsche-bank-adapter,45070024,, +cf4b4818-c289-41d5-a2ff-fe9e394dcc47,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB454,,hbci-deutsche-bank-adapter,45070024,, +91f6dc57-3207-42d8-8cff-17da6366bc61,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB453,,hbci-deutsche-bank-adapter,45070024,, +c72e0751-7725-4f54-bbf1-b19553b47523,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB456,,hbci-deutsche-bank-adapter,45070024,, +b2fc81ab-1b3b-4158-aec7-816c1a8d381e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB451,,hbci-deutsche-bank-adapter,45070024,, +218a3994-f79a-44e2-9dd7-fc4e6e67484b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB460,,hbci-deutsche-bank-adapter,46070024,, +355d5846-eaef-42d8-b7e6-4ab9c9a9f070,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB962,,hbci-deutsche-bank-adapter,46070024,, +9b36b1ed-fd88-4f3a-8147-a794fc306b11,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB963,,hbci-deutsche-bank-adapter,46070024,, +406a87a3-fc9d-4bd5-bb94-b99522f8812b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB463,,hbci-deutsche-bank-adapter,46070024,, +ea68c26f-fb4b-49de-afe8-73725c468185,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB469,,hbci-deutsche-bank-adapter,46070024,, +668a7ce1-82fb-4585-ba11-69a0595cc89d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB466,,hbci-deutsche-bank-adapter,46070024,, +f3397d7f-4e91-45a0-b5e5-bf5541c5336f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB461,,hbci-deutsche-bank-adapter,46070024,, +b53e81b1-be35-4001-b187-24dc4fd50ef5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB516,,hbci-deutsche-bank-adapter,46070024,, +5b28999b-9c57-4c11-86b1-9159d098a46b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB470,,hbci-deutsche-bank-adapter,46070024,, +5ef4adfb-f60e-42bb-bfc1-64462a8fce17,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB967,,hbci-deutsche-bank-adapter,46070024,, +6d56014c-04f6-41f9-9b30-39046b9a9aae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB471,,hbci-deutsche-bank-adapter,46070024,, +bd8ce401-1e58-42b3-bba2-c0f10dd5ed69,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB966,,hbci-deutsche-bank-adapter,46070024,, +3677113c-e83e-45bc-8ac8-ab471c9ec9e8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB964,,hbci-deutsche-bank-adapter,46070024,, +524e1ab0-ecaa-4602-8f9c-7fb98f101767,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB465,,hbci-deutsche-bank-adapter,46070024,, +e7d7ef88-4400-4925-85ef-5d2d0edae8cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB462,,hbci-deutsche-bank-adapter,46070024,, +3189f52d-4429-4cd1-95d3-a9034fe1bbdc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB965,,hbci-deutsche-bank-adapter,46070024,, +39412115-749a-49b0-b825-73a97b6a76b7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB464,,hbci-deutsche-bank-adapter,46070024,, +9ea40ea0-5679-4873-9eea-2caa2c2ee99f,HBCI Deutsche Bank Siegen,DEUTDEDK460,,hbci-deutsche-bank-adapter,46070090,, +7b1e9154-1d6c-4749-acfc-db29d0348b61,HBCI Deutsche Bank Biedenkopf,DEUTDEDK461,,hbci-deutsche-bank-adapter,46070090,, +14ab9a5e-d623-46f1-8ebd-df9c4c24cd4b,HBCI Deutsche Bank Betzdorf Sieg,DEUTDEDK466,,hbci-deutsche-bank-adapter,46070090,, +9bf27070-cbf4-416d-9d3a-8869640a9134,HBCI Deutsche Bank Bad Berleburg,DEUTDEDK463,,hbci-deutsche-bank-adapter,46070090,, +e6bb858b-9f86-48d3-a86b-041f957bc6f7,HBCI Deutsche Bank Dillenburg,DEUTDEDK516,,hbci-deutsche-bank-adapter,46070090,, +4f29e99f-9b11-4665-b28c-c1888013ae0d,HBCI Deutsche Bank Attendorn,DEUTDEDK468,,hbci-deutsche-bank-adapter,46070090,, +7bfbc652-028e-442e-aaac-14bb5e9641fd,HBCI Deutsche Bank Altenkirchen,DEUTDEDK467,,hbci-deutsche-bank-adapter,46070090,, +8db8459f-98b4-4d4a-8e61-63cb0b0c9230,HBCI Deutsche Bank Freudenberg W,DEUTDEDK470,,hbci-deutsche-bank-adapter,46070090,, +026a8c66-a4bf-41d6-83a4-d24cdefdbb50,HBCI Deutsche Bank Neunkirc Sieg,DEUTDEDK465,,hbci-deutsche-bank-adapter,46070090,, +f8b942c8-2ed1-4fc2-a71c-f3d2b041b432,HBCI Deutsche Bank Kreuztal,DEUTDEDK474,,hbci-deutsche-bank-adapter,46070090,, +18a6b42e-4557-4284-a124-cb0814b824f3,HBCI Deutsche Bank Herborn Hess,DEUTDEDK471,,hbci-deutsche-bank-adapter,46070090,, +3b623cfd-35a7-4497-ac74-35a0d3a2710b,HBCI Deutsche Bank Laasphe,DEUTDEDK469,,hbci-deutsche-bank-adapter,46070090,, +2e90f6b8-e631-48f1-889d-b339c449f8c9,HBCI Deutsche Bank Olpe Biggesee,DEUTDEDK462,,hbci-deutsche-bank-adapter,46070090,, +f9b9f864-2d21-4f84-bedf-ad9cd8b5e18b,HBCI Deutsche Bank Schmallenberg,DEUTDEDK473,,hbci-deutsche-bank-adapter,46070090,, +3bc5a0d0-f7ad-42f4-a971-2c0fff64fd77,HBCI Deutsche Bank Wissen Sieg,DEUTDEDK464,,hbci-deutsche-bank-adapter,46070090,, +c230b60d-8461-44ba-b7ee-b400a8ff7a5b,HBCI Deutsche Bank Haiger,DEUTDEDK475,,hbci-deutsche-bank-adapter,46070090,, +0c9dca53-3348-4491-80af-9d5448943da8,HBCI Deutsche Bank Lennestadt,DEUTDEDK472,,hbci-deutsche-bank-adapter,46070090,, +91f134b2-8c59-46cc-83c8-a1ec488bae70,HBCI Deutsche Bank Arnsberg,DEUTDEDW466,,hbci-deutsche-bank-adapter,46670007,, +416b76bb-d494-4d0c-b71d-fc47e6b20cfb,HBCI Deutsche Bank Sundern Sauer,DEUTDEDW467,,hbci-deutsche-bank-adapter,46670007,, +5eb6d5c2-f6f5-4b36-b35e-d07d6c197dcd,HBCI Deutsche Bank Meschede,DEUTDEDW468,,hbci-deutsche-bank-adapter,46670007,, +a91f517e-3ac7-4115-94db-60323a477299,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB961,,hbci-deutsche-bank-adapter,46670024,, +c3d7497c-f091-4c51-8820-fadfddbf1a5c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB468,,hbci-deutsche-bank-adapter,46670024,, +b68641d3-3280-4811-9930-a607b8a86130,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB467,,hbci-deutsche-bank-adapter,46670024,, +563ae285-5e78-4f71-940b-56949931f79c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB472,,hbci-deutsche-bank-adapter,47270024,, +f0d0f28e-7762-442e-9fea-da69c78b7dd8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB473,,hbci-deutsche-bank-adapter,47270024,, +377435cf-42a5-4bb2-8516-82a8cc9d3069,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB474,,hbci-deutsche-bank-adapter,47270024,, +8550a782-8eb6-4337-ac38-6a38cd7a392e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB475,,hbci-deutsche-bank-adapter,47270024,, +a5a40ab9-4c65-474d-8339-dba629a2b7a1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB958,,hbci-deutsche-bank-adapter,47270024,, +e366a79e-4a53-448a-87a1-c5b955baf14b,HBCI Deutsche Bank Paderborn,DEUTDE3B472,,hbci-deutsche-bank-adapter,47270029,, +aecb95b1-9b3a-4f18-996d-6a868437e601,HBCI Deutsche Bank Geseke Westf,DEUTDE3B475,,hbci-deutsche-bank-adapter,47270029,, +477a028e-96ba-44c9-991d-20a538eabf13,HBCI Deutsche Bank Bad Driburg,DEUTDE3B473,,hbci-deutsche-bank-adapter,47270029,, +fb2e7ed6-83b4-42e5-87cc-c91494fc991d,HBCI Deutsche Bank Höxter,DEUTDE3B451,,hbci-deutsche-bank-adapter,47270029,, +1a66c276-7b07-42e3-87a6-68a28985c9fc,HBCI Deutsche Bank Bad Lippsprin,DEUTDE3B474,,hbci-deutsche-bank-adapter,47270029,, +b547611a-189c-4a23-9c20-ee9e7e3bc93f,HBCI Deutsche Bank Detmold,DEUTDE3B476,,hbci-deutsche-bank-adapter,47670023,, +6e7bf2f0-1f81-4f65-a0f1-0353ad744e3c,HBCI Deutsche Bank Blomberg Lipp,DEUTDE3B450,,hbci-deutsche-bank-adapter,47670023,, +0a3c64d8-341c-4214-a0fa-93f609c7d7ee,HBCI Deutsche Bank Bad Salzuflen,DEUTDE3B477,,hbci-deutsche-bank-adapter,47670023,, +0f7b4bd3-5249-4bf6-9bc5-620b4c601019,HBCI Deutsche Bank Lemgo,DEUTDE3B478,,hbci-deutsche-bank-adapter,47670023,, +bd99647d-f72f-411e-8049-61e2c1578f51,HBCI Deutsche Bank Lage Lippe,DEUTDE3B453,,hbci-deutsche-bank-adapter,47670023,, +de18ca29-247c-4bd3-babb-d88f52d892fb,HBCI Deutsche Bank Horn-Bad Mein,DEUTDE3B452,,hbci-deutsche-bank-adapter,47670023,, +c532a4c4-426e-4c2e-8b6c-d0ca27a1b3a5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB476,,hbci-deutsche-bank-adapter,47670024,, +bd177f45-a16b-4d0c-83a4-3877c93bcfa9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB477,,hbci-deutsche-bank-adapter,47670024,, +06f91480-fe6c-4d94-a2c9-f6c1c270c206,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB957,,hbci-deutsche-bank-adapter,47670024,, +3cee0dcc-61db-4493-a5fc-17da37ef9a5f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB959,,hbci-deutsche-bank-adapter,47670024,, +a4d3cde3-6728-408b-ac6a-4e3de3ac4d9c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB960,,hbci-deutsche-bank-adapter,47670024,, +ef7223b5-7a57-4052-a865-153a3defc86b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB478,,hbci-deutsche-bank-adapter,47670024,, +784536f8-acc9-4b85-902a-f6c41aa022af,HBCI Deutsche Bank Bielefeld,DEUTDE3BXXX,,hbci-deutsche-bank-adapter,48070020,, +99bbe22f-b1d3-43fe-b943-2ab3e77f0006,HBCI Deutsche Bank Halle Westf,DEUTDE3B483,,hbci-deutsche-bank-adapter,48070020,, +85be954b-7b92-4994-bf78-ef00be0d39fa,HBCI Deutsche Bank Oerlinghausen,DEUTDE3B486,,hbci-deutsche-bank-adapter,48070020,, +a5c7544e-dd09-4c10-b2de-586c965bf3ac,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBBIE,,hbci-deutsche-bank-adapter,48070024,, +f41cf7dd-2b27-4a6f-a44d-3b6689ae57cb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB483,,hbci-deutsche-bank-adapter,48070024,, +f6ef81f6-2ea8-49dd-9376-cfb6a2e9f02e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB486,,hbci-deutsche-bank-adapter,48070024,, +5ee60a37-8fd8-462f-87a5-1007b1ea7deb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB413,,hbci-deutsche-bank-adapter,48070024,, +696367ea-5fff-40ff-ab42-11cd8c040a1c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB480,,hbci-deutsche-bank-adapter,48070024,, +902df41b-d6d3-4f3a-a965-515cf762e43a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB484,,hbci-deutsche-bank-adapter,48070024,, +293ba389-9f39-4406-8902-ecc4d59cef8a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB485,,hbci-deutsche-bank-adapter,48070024,, +8fcacc84-4add-4f04-9bfa-450672aeb1d6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB487,,hbci-deutsche-bank-adapter,48070024,, +16e79258-aeb1-4c07-8585-1e6b29d629ac,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB489,,hbci-deutsche-bank-adapter,48070024,, +ad11564e-b413-40fb-a753-c8ea60e5cf38,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB492,,hbci-deutsche-bank-adapter,48070024,, +aec33d2d-5d75-4324-b526-3f0555db8f16,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB481,,hbci-deutsche-bank-adapter,48070024,, +a73e1277-765c-48b6-8334-6a4b8d34585d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB488,,hbci-deutsche-bank-adapter,48070024,, +61701308-a0cc-4e9e-a29b-bb848f903a34,HBCI Deutsche Bank Gütersloh,DEUTDE3B480,,hbci-deutsche-bank-adapter,48070040,, +d4521876-a1cc-49c2-99db-243a8fbe200c,HBCI Deutsche Bank Harsewinkel,DEUTDE3B484,,hbci-deutsche-bank-adapter,48070042,, +911817ff-caae-473d-aa4b-18f3f58fec09,HBCI Deutsche Bank Verl,DEUTDE3B489,,hbci-deutsche-bank-adapter,48070043,, +7ead1137-a76d-4880-ad8e-cc4523a20807,HBCI Deutsche Bank Rheda-Wiedenb,DEUTDE3B487,,hbci-deutsche-bank-adapter,48070044,, +4e751ddc-789e-4a31-8d92-3cf8cf5e5028,HBCI Deutsche Bank Beckum Westf,DEUTDE3B413,,hbci-deutsche-bank-adapter,48070045,, +26b2891e-5fb9-4510-b05f-239eb9bd143a,HBCI Deutsche Bank Herford,DEUTDE3B481,,hbci-deutsche-bank-adapter,48070050,, +93dac8e0-4a75-4b37-ae22-aa6737d4149c,HBCI Deutsche Bank Bünde Westf,DEUTDE3B492,,hbci-deutsche-bank-adapter,48070052,, +9d6cd254-7ee1-44a9-b60a-4dccef658ea8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB490,,hbci-deutsche-bank-adapter,49070024,, +8e3012bb-0454-4492-9a32-07bed7ead139,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB491,,hbci-deutsche-bank-adapter,49070024,, +99c5be65-9f3f-4220-8aee-10c4d39f3a73,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB493,,hbci-deutsche-bank-adapter,49070024,, +cf389f50-26fd-414e-947d-deca7700205d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB494,,hbci-deutsche-bank-adapter,49070024,, +e5976759-323f-43ef-b164-bca35c3cffa8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB495,,hbci-deutsche-bank-adapter,49070024,, +5814f5d6-1d70-476a-93d3-3a5ca3bf6549,HBCI Deutsche Bank Minden Westf,DEUTDE3B490,,hbci-deutsche-bank-adapter,49070028,, +f32b61c3-e1a6-464f-acde-5cee4c2f2186,HBCI Deutsche Bank Bad Oeynhause,DEUTDE3B491,,hbci-deutsche-bank-adapter,49070028,, +1df8e081-0a13-416c-a84f-3b63577bd99d,HBCI Deutsche Bank Löhne Westf,DEUTDE3B494,,hbci-deutsche-bank-adapter,49070028,, +6a8c47e0-e1a4-4383-8b78-c2bd60080d24,HBCI Deutsche Bank Espelkamp,DEUTDE3B493,,hbci-deutsche-bank-adapter,49070028,, +2963aa5d-7467-4da7-917b-42500201880d,HBCI Deutsche Bank Lübbecke,DEUTDE3B495,,hbci-deutsche-bank-adapter,49070028,, +dc922469-2b4c-440c-8560-3be77af38a80,HBCI Deutsche Bank Frankfurt F,DEUTDEFFXXX,,hbci-deutsche-bank-adapter,50070010,, +0a34862e-4105-4747-a3f5-cbc42cfd1dfb,HBCI Deutsche Bank Bad Homburg,DEUTDEFF500,,hbci-deutsche-bank-adapter,50070010,, +7dd7cb19-4ef8-4469-b575-b06989ae44f0,HBCI Deutsche Bank Kronberg,DEUTDEFF542,,hbci-deutsche-bank-adapter,50070010,, +1ce50f53-c0c6-41ab-9c87-b4fb1c97afc5,HBCI Deutsche Bank Königstein,DEUTDEFF541,,hbci-deutsche-bank-adapter,50070010,, +ce315370-8c78-4141-b093-81db9921deac,HBCI Deutsche Bank Oberursel,DEUTDEFF504,,hbci-deutsche-bank-adapter,50070010,, +25a0b35b-2e2d-40af-a744-4f285a791b7e,HBCI Deutsche Bank Friedbg Hess,DEUTDEFF503,,hbci-deutsche-bank-adapter,50070010,, +5b6a5cb1-a30c-4a7e-b8c3-43465870c1d5,HBCI Deutsche Bank Hofheim,DEUTDEFF540,,hbci-deutsche-bank-adapter,50070010,, +eb0f626f-3334-4f06-86a5-3fd059d6dfc3,HBCI Deutsche Bank F-SIP,DEUTDEFFSIP,,hbci-deutsche-bank-adapter,50070011,, +ce003831-a9f8-48db-a3d5-104cbcb45444,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBFRA,,hbci-deutsche-bank-adapter,50070024,, +1fb1a689-1359-4792-bbaa-da5b77410ed0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB500,,hbci-deutsche-bank-adapter,50070024,, +878b1cc1-8c12-4a91-a4de-f0a195d5339f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB503,,hbci-deutsche-bank-adapter,50070024,, +661a6f9d-64df-43d0-afb9-61d54f989260,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB535,,hbci-deutsche-bank-adapter,50070024,, +df8bbcf1-a811-4ec3-9500-b70b23bd1abc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB536,,hbci-deutsche-bank-adapter,50070024,, +62632e56-9580-4a6f-bcb8-788e8262c187,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB504,,hbci-deutsche-bank-adapter,50070024,, +98fb1cbd-db2f-422a-a0e9-0d912ebbbcf3,HBCI Deutsche Bank Rüsselsheim,DEUTDEFF502,,hbci-deutsche-bank-adapter,50073019,, +7139c80a-403b-4cba-8b7e-02db2f5b960a,HBCI Deutsche Bank Raunheim,DEUTDEFF543,,hbci-deutsche-bank-adapter,50073019,, +f2d3d6e3-4769-4bf5-93cd-0629725acb29,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB502,,hbci-deutsche-bank-adapter,50073024,, +46e438cc-fac4-4e28-ad04-8ddc17a7810f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB537,,hbci-deutsche-bank-adapter,50073024,, +e27f0879-c9e0-407c-98bd-fd7914190197,HBCI Deutsche Bank Europe,DEUTDE5XXXX,,hbci-deutsche-bank-adapter,50073081,, +70b20c29-b7c8-4d03-aff7-9602a6350c43,HBCI Deutsche Bank Offenbach,DEUTDEFF505,,hbci-deutsche-bank-adapter,50570018,, +9e9f9a1b-1cf8-473e-bfef-91b3abe416ad,HBCI Deutsche Bank Neu-Isenburg,DEUTDEFF507,,hbci-deutsche-bank-adapter,50570018,, +b26f84ce-639f-4be2-aaf6-badfa9fb0d6e,HBCI Deutsche Bank Obertshausen,DEUTDEFF549,,hbci-deutsche-bank-adapter,50570018,, +68ed0cfa-9ecc-47f8-a742-62d6eeb27d9f,HBCI Deutsche Bank Heusenstamm,DEUTDEFF546,,hbci-deutsche-bank-adapter,50570018,, +d5dfc2c6-0c03-454c-8b74-8f119a4bfcc9,HBCI Deutsche Bank Mühlheim Main,DEUTDEFF548,,hbci-deutsche-bank-adapter,50570018,, +5163fe69-32ff-4c9c-a500-df4b910509ac,HBCI Deutsche Bank Dreieich,DEUTDEFF545,,hbci-deutsche-bank-adapter,50570018,, +b60fdaeb-cf13-47e8-b846-f90ecf368ced,HBCI Deutsche Bank Dietzenbach,DEUTDEFF544,,hbci-deutsche-bank-adapter,50570018,, +f9393d9a-8fd0-42f8-b9cb-d4015d8c8f8f,HBCI Deutsche Bank Langen Hess,DEUTDEFF547,,hbci-deutsche-bank-adapter,50570018,, +aa774d00-1414-4dd6-aace-9d05b92809b5,HBCI Deutsche Bank Rodgau,DEUTDEFF550,,hbci-deutsche-bank-adapter,50570018,, +7b41bedd-2085-41ff-820d-8f24dcd932da,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB505,,hbci-deutsche-bank-adapter,50570024,, +4f80d194-ed33-4b42-9a75-876b9e82a519,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB538,,hbci-deutsche-bank-adapter,50570024,, +a253175e-b0d1-4488-bc60-e31a7a9a9dbe,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB539,,hbci-deutsche-bank-adapter,50570024,, +4260c124-21d5-456c-8eb3-f8cbb5c1fdf7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB529,,hbci-deutsche-bank-adapter,50570024,, +a75fc0bf-ded8-493f-8e7e-bdb6c33e4884,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB528,,hbci-deutsche-bank-adapter,50570024,, +8e691285-18b0-45e3-b256-4f263016b08a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB527,,hbci-deutsche-bank-adapter,50570024,, +f752c251-1c10-41f4-8b4e-2f66d3a7225b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB507,,hbci-deutsche-bank-adapter,50570024,, +4a91f16e-a5e5-4047-98dc-87496c34d792,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB526,,hbci-deutsche-bank-adapter,50570024,, +0f39d523-cc27-45d8-b4ff-6a8e09700192,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB525,,hbci-deutsche-bank-adapter,50570024,, +c6b5ddac-6848-48fd-ba8e-f9eb9ace7998,HBCI Deutsche Bank Hanau Main,DEUTDEFF506,,hbci-deutsche-bank-adapter,50670009,, +8826b23c-28be-401c-a9f7-73d12dfc8107,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB506,,hbci-deutsche-bank-adapter,50670024,, +f953ab65-ed30-41ac-be64-3eae33094597,HBCI Deutsche Bank Darmstadt,DEUTDEFF508,,hbci-deutsche-bank-adapter,50870005,, +0d19fb86-8ed6-4081-bdbe-16b0ccd2c79a,HBCI Deutsche Bank Griesheim Hes,DEUTDEFF551,,hbci-deutsche-bank-adapter,50870005,, +a1ccd7b4-ea87-4fa6-aba0-9c756c1bbff5,HBCI Deutsche Bank Groß-Gerau,DEUTDEFF552,,hbci-deutsche-bank-adapter,50870005,, +d5942102-4a69-4029-8105-1896418a2167,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB508,,hbci-deutsche-bank-adapter,50870024,, +c496c931-c017-4dba-bc8a-185aafd12bcf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB554,,hbci-deutsche-bank-adapter,50870024,, +add05a4c-0ce3-4e89-8535-a9babeabf0d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB555,,hbci-deutsche-bank-adapter,50870024,, +afa479d8-6634-46dd-869d-a738b3eea4fe,HBCI Deutsche Bank Bensheim,DEUTDEFF509,,hbci-deutsche-bank-adapter,50970004,, +13b76a71-4460-4041-8741-b3675aeb80d4,HBCI Deutsche Bank Heppenheim,DEUTDEFF519,,hbci-deutsche-bank-adapter,50970004,, +5c3c8b5f-0632-4f4d-82c6-331cca601bae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB509,,hbci-deutsche-bank-adapter,50970024,, +c6b63990-c5a1-4744-9784-5754b0f388c2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB519,,hbci-deutsche-bank-adapter,50970024,, +5447f468-af83-4a35-80cf-3740c5822290,HBCI Deutsche Bank Wiesbaden,DEUTDEFF510,,hbci-deutsche-bank-adapter,51070021,, +10943f6d-b27b-456c-ba09-15a1407f7276,HBCI Deutsche Bank Eltville,DEUTDEFF512,,hbci-deutsche-bank-adapter,51070021,, +c32cc44c-78b4-4300-a5d8-48cf7725ef0f,HBCI Deutsche Bank Taunusstein,DEUTDEFF514,,hbci-deutsche-bank-adapter,51070021,, +36eb12bf-fee8-4059-b4b9-1643217a6316,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB510,,hbci-deutsche-bank-adapter,51070024,, +afa3e525-7d93-42f1-944f-dffe61ed8290,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB512,,hbci-deutsche-bank-adapter,51070024,, +c076705c-8fad-452e-aa17-c8baaa4de9d7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB514,,hbci-deutsche-bank-adapter,51070024,, +4c4ae252-f6e7-47ec-8dd4-6f81e67c6ac2,HBCI Deutsche Bank Limburg Lahn,DEUTDEFF511,,hbci-deutsche-bank-adapter,51170010,, +f218a8c0-59b6-45ed-af10-7cb784fcc493,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB511,,hbci-deutsche-bank-adapter,51170024,, +5ca391de-eef5-4a13-a242-58cf24d63941,HBCI Deutsche Bank Gießen,DEUTDEFF513,,hbci-deutsche-bank-adapter,51370008,, +b73a8f17-07b8-4c7a-8c41-c009fc75eab7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB513,,hbci-deutsche-bank-adapter,51370024,, +a204f43a-4547-4dab-be27-8b7e73add019,HBCI Deutsche Bank Wetzlar,DEUTDEFF515,,hbci-deutsche-bank-adapter,51570008,, +fc85ddf4-2de3-42c4-9735-ce05e4a8f28d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB515,,hbci-deutsche-bank-adapter,51570024,, +d4e68cfa-9476-4025-bda5-64f535d4e5cc,HBCI Deutsche Bank Kassel,DEUTDEFF520,,hbci-deutsche-bank-adapter,52070012,, +830e500a-6a88-4a87-bda7-7e3d2f5cbdaa,HBCI Deutsche Bank Baunatal,DEUTDEFF523,,hbci-deutsche-bank-adapter,52070012,, +3af22761-e72b-4690-9e35-19ac238b14c0,HBCI Deutsche Bank Hann Münden,DEUTDEFF524,,hbci-deutsche-bank-adapter,52070012,, +3d85e73f-464a-4622-9129-b62dc9e2521b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB520,,hbci-deutsche-bank-adapter,52070024,, +12563de0-917c-4ee1-bbf4-13549eb4c71e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB523,,hbci-deutsche-bank-adapter,52070024,, +1c531d77-47a0-4e20-acb9-b275de873881,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB524,,hbci-deutsche-bank-adapter,52070024,, +f297b206-e956-4e1d-a9ed-2148fbedc80e,HBCI Deutsche Bank Bad Wildungen,DEUTDEFF521,,hbci-deutsche-bank-adapter,52071212,, +6eb25ff5-9b1e-488c-8c6a-4de1cb44fdc4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB521,,hbci-deutsche-bank-adapter,52071224,, +8f18c00c-6b21-4cbb-b8a2-fb7ca7d86143,HBCI Deutsche Bank Eschwege,DEUTDEFF522,,hbci-deutsche-bank-adapter,52270012,, +4a7f5ff4-9c05-47da-8ce9-8a36f274c5c4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB522,,hbci-deutsche-bank-adapter,52270024,, +ca953bee-c8a8-4b92-8cfc-4c6c953d5e50,HBCI Deutsche Bank Fulda,DEUTDEFF530,,hbci-deutsche-bank-adapter,53070007,, +ced84963-7480-44f0-9fe0-d8d3fe2f4771,HBCI Deutsche Bank Alsfeld,DEUTDEFF531,,hbci-deutsche-bank-adapter,53070007,, +a12cf61e-42d4-489c-b57a-887403e47355,HBCI Deutsche Bank Lauterbach He,DEUTDEFF534,,hbci-deutsche-bank-adapter,53070007,, +905fd50d-179a-432c-87e2-09747d829762,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB530,,hbci-deutsche-bank-adapter,53070024,, +22139f51-a0f4-44fc-bd33-469a66da50ba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB531,,hbci-deutsche-bank-adapter,53070024,, +e8437de1-ad39-4c7c-a8d1-224a8a7fa629,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB534,,hbci-deutsche-bank-adapter,53070024,, +471752d5-bdfc-450d-afb4-c13d8fd69f64,HBCI Deutsche Bank Bad Hersfeld,DEUTDEFF532,,hbci-deutsche-bank-adapter,53270012,, +414a90bf-6e62-4b02-958c-81c6d994c720,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB518,,hbci-deutsche-bank-adapter,53270024,, +63cbcb77-41fb-4d52-b417-2f0090ee9565,HBCI Deutsche Bank Marburg Lahn,DEUTDEFF533,,hbci-deutsche-bank-adapter,53370008,, +34f4fed4-bef0-4c01-9cb4-b2a0d10c2b4a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB533,,hbci-deutsche-bank-adapter,53370024,, +f9ed2ad1-6e85-46f3-84d4-80fe10718665,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB540,,hbci-deutsche-bank-adapter,54070024,, +0806f31c-051c-4245-97af-ee12be6f4cba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB541,,hbci-deutsche-bank-adapter,54070024,, +15902ec1-a046-4b3e-9b16-7be70b11954c,HBCI Deutsche Bank Kaiserslauter,DEUTDESM540,,hbci-deutsche-bank-adapter,54070092,, +2261d3fa-24a0-4c72-a53f-af8edcf79c62,HBCI Deutsche Bank Landstuhl,DEUTDESM541,,hbci-deutsche-bank-adapter,54070092,, +1326049c-d10c-4d24-a326-f510176de7d2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB542,,hbci-deutsche-bank-adapter,54270024,, +dcd3e997-e64d-4f92-83e1-fe8d6fcdf1cf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB543,,hbci-deutsche-bank-adapter,54270024,, +c9b3ea9e-714a-47f7-8c02-f38c4be8cd48,HBCI Deutsche Bank Pirmasens,DEUTDESM542,,hbci-deutsche-bank-adapter,54270096,, +1be725c7-2608-4666-8cf0-7289513c71e9,HBCI Deutsche Bank Zweibrücken,DEUTDESM543,,hbci-deutsche-bank-adapter,54270096,, +d6a98632-64b3-4d20-bffa-e7dba9ac8262,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB545,,hbci-deutsche-bank-adapter,54570024,, +d835798f-1cdd-4185-b152-1633bc5986ff,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB549,,hbci-deutsche-bank-adapter,54570024,, +d5ec3bab-e96a-4c87-ab70-9448735bef62,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB544,,hbci-deutsche-bank-adapter,54570024,, +71e65d3f-c54e-4dcb-987f-c6f7ba049820,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB550,,hbci-deutsche-bank-adapter,54570024,, +61b998ee-f953-4b04-b70e-2a3a442367c1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB547,,hbci-deutsche-bank-adapter,54570024,, +01b35f3b-5275-4786-97f3-8c02840857df,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB553,,hbci-deutsche-bank-adapter,54570024,, +d237ccee-24eb-4e96-8fe7-02e6444a50f3,HBCI Deutsche Bank Ludwigshafen,DEUTDESM545,,hbci-deutsche-bank-adapter,54570094,, +728821ad-b282-436e-ab26-5b4eef2524e2,HBCI Deutsche Bank Frankenthal,DEUTDESM544,,hbci-deutsche-bank-adapter,54570094,, +d8cc9fc9-da82-4979-bb9a-37ff5adb1d23,HBCI Deutsche Bank Alzey,DEUTDESM549,,hbci-deutsche-bank-adapter,54570094,, +b1903dc5-d0ba-4d4a-a36f-7b8295b95c91,HBCI Deutsche Bank Limburgerhof,DEUTDESM550,,hbci-deutsche-bank-adapter,54570094,, +87ba2794-8224-45c4-bd0d-c5c49b764e44,HBCI Deutsche Bank Speyer,DEUTDESM547,,hbci-deutsche-bank-adapter,54570094,, +5f76cb9f-f0a2-4c3d-9b08-2504ab0b9cdb,HBCI Deutsche Bank Worms,DEUTDESM553,,hbci-deutsche-bank-adapter,54570094,, +eb04801f-42cb-4369-ab15-e90d14684cad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB546,,hbci-deutsche-bank-adapter,54670024,, +c8d7ea4d-a15a-4f84-82a2-4632533a916d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB552,,hbci-deutsche-bank-adapter,54670024,, +48d5cfe4-e517-4a6c-ae94-7fe7bb304409,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB548,,hbci-deutsche-bank-adapter,54670024,, +071487f8-8d0d-4331-a7eb-5d3c92334f25,HBCI Deutsche Bank Neustadt Wstr,DEUTDESM546,,hbci-deutsche-bank-adapter,54670095,, +6d5df9a7-8164-411d-8ce2-7175fc679c85,HBCI Deutsche Bank Bad Dürkheim,DEUTDESM552,,hbci-deutsche-bank-adapter,54670095,, +4eb1538f-1db5-483e-a4eb-8e717c0ab4d3,HBCI Deutsche Bank Landau Pfalz,DEUTDESM548,,hbci-deutsche-bank-adapter,54670095,, +ab32bc2d-8fe6-4e5e-a4d7-3f1f3bbcb521,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMAI,,hbci-deutsche-bank-adapter,55070024,, +6a5ad38b-548c-4ef8-b16f-85750c00cb01,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB563,,hbci-deutsche-bank-adapter,55070024,, +acee3656-35d7-4a15-aac1-e21c77942913,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB561,,hbci-deutsche-bank-adapter,55070024,, +b7adee15-b0e1-4676-a462-3d40ddcd1913,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB551,,hbci-deutsche-bank-adapter,55070024,, +af5e32af-9c4a-478d-93a3-8c4f9b0dadeb,HBCI Deutsche Bank Mainz,DEUTDE5MXXX,,hbci-deutsche-bank-adapter,55070040,, +41c81eac-28e2-4988-80a2-5ac0856cfc8b,HBCI Deutsche Bank Bingen Rhein,DEUTDE5M552,,hbci-deutsche-bank-adapter,55070040,, +8c12f56f-f1cd-4687-9443-0c6dc0a9f735,HBCI Deutsche Bank Ginsheim-Gust,DEUTDE5M550,,hbci-deutsche-bank-adapter,55070040,, +27c2a8ca-38c0-4e4c-9528-ecf3d914b82f,HBCI Deutsche Bank Ingelheim Rhe,DEUTDE5M551,,hbci-deutsche-bank-adapter,55070040,, +76d5b653-6c65-4df1-aaa6-08442928a35f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB560,,hbci-deutsche-bank-adapter,56070024,, +0f2a19c5-5a43-434c-ae54-e6f03cb1bbca,HBCI Deutsche Bank Bad Kreuznach,DEUTDE5M560,,hbci-deutsche-bank-adapter,56070040,, +b393c03d-b11b-4b8a-a201-465bef099a3d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB562,,hbci-deutsche-bank-adapter,56270024,, +25a2b766-7ace-4761-97cd-1e1c51f17c46,HBCI Deutsche Bank Idar-Oberst,DEUTDE5M562,,hbci-deutsche-bank-adapter,56270044,, +51f87ddc-0f0d-4a05-a329-ee34996ff72a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB570,,hbci-deutsche-bank-adapter,57070024,, +364efa00-5b1a-418f-84fa-a8f95672583b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB572,,hbci-deutsche-bank-adapter,57070024,, +193a02d1-f6b4-48e6-b0de-977766463ce5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB571,,hbci-deutsche-bank-adapter,57070024,, +0d8b8c1b-0c0c-4f65-9f7f-c7a68c7b8eb3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB577,,hbci-deutsche-bank-adapter,57070024,, +dc0c1940-5968-45c0-b77f-7f13d6527e6a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB573,,hbci-deutsche-bank-adapter,57070024,, +d97caaeb-b21e-4dbe-8f1f-74024210022b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB578,,hbci-deutsche-bank-adapter,57070024,, +bf122411-7936-4e79-b1a6-74103d91e0ca,HBCI Deutsche Bank Koblenz,DEUTDE5M570,,hbci-deutsche-bank-adapter,57070045,, +84325e68-105c-48e9-aa75-554b8a0c67cc,HBCI Deutsche Bank Bendorf Rhein,DEUTDE5M572,,hbci-deutsche-bank-adapter,57070045,, +74ce7449-5a0f-4e32-8ce2-a4d267e04e61,HBCI Deutsche Bank Lahnstein,DEUTDE5M573,,hbci-deutsche-bank-adapter,57070045,, +42b5226f-4aa9-4a66-88e9-c5b73c5684f9,HBCI Deutsche Bank Höhr-Grenzhau,DEUTDE5M577,,hbci-deutsche-bank-adapter,57070045,, +207620b5-cc6c-4f3a-9240-e754deffd202,HBCI Deutsche Bank Boppard,DEUTDE5M571,,hbci-deutsche-bank-adapter,57070045,, +7d353aea-3f63-4040-9567-0194d2534688,HBCI Deutsche Bank Montabaur,DEUTDE5M578,,hbci-deutsche-bank-adapter,57070045,, +f40074ce-c9f6-437a-8e83-dbcce0e3373f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB574,,hbci-deutsche-bank-adapter,57470024,, +3e361417-ff41-4c70-a194-b5058a5f4b0b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB575,,hbci-deutsche-bank-adapter,57470024,, +8d62931e-23ae-4264-8e00-a335b4d43c11,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB576,,hbci-deutsche-bank-adapter,57470024,, +345e3d05-3a2f-4543-a004-087e3eda8908,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB579,,hbci-deutsche-bank-adapter,57470024,, +4f89fcfc-2859-428a-b2d2-47a74a279a60,HBCI Deutsche Bank Neuwied,DEUTDE5M574,,hbci-deutsche-bank-adapter,57470047,, +f1bde299-a5c9-4f3d-a3e1-82b2d0715434,HBCI Deutsche Bank Andernach,DEUTDE5M575,,hbci-deutsche-bank-adapter,57470047,, +941c0d99-a3e8-4dd5-a302-94885fc0aaeb,HBCI Deutsche Bank Mayen,DEUTDE5M576,,hbci-deutsche-bank-adapter,57470047,, +40e5930b-8437-4624-a68e-3a0593ce07e1,HBCI Deutsche Bank Weißenthurm,DEUTDE5M579,,hbci-deutsche-bank-adapter,57470047,, +217a3cd8-68f3-4dfe-b36f-fa1caca0ee9b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB585,,hbci-deutsche-bank-adapter,58570024,, +cad6d8bf-ff5e-42f8-bfac-41c9fb3199d5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB580,,hbci-deutsche-bank-adapter,58570024,, +6b95d7d0-745b-43c7-8156-6e1d1c3b2ea6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB586,,hbci-deutsche-bank-adapter,58570024,, +c3b8d878-c76f-476c-b437-36f950217015,HBCI Deutsche Bank Trier,DEUTDE5M585,,hbci-deutsche-bank-adapter,58570048,, +78847205-4c46-4a23-b7be-4a3139fa0350,HBCI Deutsche Bank Konz,DEUTDE5M590,,hbci-deutsche-bank-adapter,58570048,, +b283b67f-5f23-4b97-9273-ec6a7d590360,HBCI Deutsche Bank Wittlich,DEUTDE5M586,,hbci-deutsche-bank-adapter,58570048,, +00cbad9e-ae59-4aa6-bf53-0bc9e86f77c5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB587,,hbci-deutsche-bank-adapter,58771224,, +70eb142c-0580-49cb-b050-e2a35cdd15f1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB589,,hbci-deutsche-bank-adapter,58771224,, +07835008-5d7a-40bb-9550-ae0405f25a5b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB588,,hbci-deutsche-bank-adapter,58771224,, +7e7f1718-145f-472f-aa8a-1fe02b167cfc,HBCI Deutsche Bank Bernkast-Kues,DEUTDE5M587,,hbci-deutsche-bank-adapter,58771242,, +716a4517-e97b-4bab-9069-ee2a94c86a66,HBCI Deutsche Bank Traben-Trarb,DEUTDE5M589,,hbci-deutsche-bank-adapter,58771242,, +90272a4e-c08b-4c26-8d61-7c969665b59e,HBCI Deutsche Bank Zell Mosel,DEUTDE5M588,,hbci-deutsche-bank-adapter,58771242,, +58f127f3-b161-459d-bcc6-ae4c638150a7,HBCI Deutsche Bank Saarbruecken,DEUTDE5M555,,hbci-deutsche-bank-adapter,59070000,, +d236b0b5-f3c3-4aa4-a9f9-d985c3aa1779,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB595,,hbci-deutsche-bank-adapter,59070070,, +a4ab1856-d76b-4ca8-8d2f-41867e73d3a0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB590,,hbci-deutsche-bank-adapter,59070070,, +c541cd80-7c82-4458-81f0-07c8e8ad96b3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBSTG,,hbci-deutsche-bank-adapter,60070024,, +88940784-1290-4c7b-87ba-0d0f0bd8e2dc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB602,,hbci-deutsche-bank-adapter,60070024,, +9db3f230-b54e-47bb-bd34-aa4dd54b43e7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB647,,hbci-deutsche-bank-adapter,60070024,, +14a0bceb-8b30-4949-9982-f09a64ce5b31,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB609,,hbci-deutsche-bank-adapter,60070024,, +c343148a-2580-4a37-804f-a7432d730d48,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB624,,hbci-deutsche-bank-adapter,60070024,, +61fa6906-5a95-4c6c-9408-4a5474ea66f6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB605,,hbci-deutsche-bank-adapter,60070024,, +41c0251d-90ab-4df7-82cf-433b77ab364d,HBCI Deutsche Bank Stuttgart,DEUTDESSXXX,,hbci-deutsche-bank-adapter,60070070,, +b3b587e0-50b7-44b4-b137-ceb9bc156861,HBCI Deutsche Bank Böblingen,DEUTDESS602,,hbci-deutsche-bank-adapter,60070070,, +14920319-0fed-453a-9dc7-06e81ea8489b,HBCI Deutsche Bank Leonberg Württ,DEUTDESS624,,hbci-deutsche-bank-adapter,60070070,, +dac41ab1-50e2-49c3-878a-1fb666c1eb47,HBCI Deutsche Bank Leinfelden-Ec,DEUTDESS609,,hbci-deutsche-bank-adapter,60070070,, +9f52a87f-1586-4ef8-aa8f-89d2fcea25fb,HBCI Deutsche Bank Sindelfingen,DEUTDESS605,,hbci-deutsche-bank-adapter,60070070,, +83be4d9b-c6e5-4a06-a896-4bd4e7cbf376,HBCI Deutsche Bank Gerlingen,DEUTDESS647,,hbci-deutsche-bank-adapter,60070070,, +83ff2930-373a-4292-a60b-a9851b0012f4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB606,,hbci-deutsche-bank-adapter,60270024,, +9fad28b4-f4e9-4d3b-8eee-d5dac04acb22,HBCI Deutsche Bank Waiblingen,DEUTDESS606,,hbci-deutsche-bank-adapter,60270073,, +dcba8910-a86c-42de-b7ab-d155689ca1b7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB604,,hbci-deutsche-bank-adapter,60470024,, +b60b8d60-f4b1-4526-a0e3-5cfcf45e3a87,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB608,,hbci-deutsche-bank-adapter,60470024,, +1f1abb08-1a56-462e-a1cd-bdaa4a27d4fe,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB635,,hbci-deutsche-bank-adapter,60470024,, +e90af125-091a-4016-ba0f-3c7545db9b07,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB617,,hbci-deutsche-bank-adapter,60470024,, +b6884b6f-1565-4449-96dc-f5a0741c79b0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB623,,hbci-deutsche-bank-adapter,60470024,, +ba401d00-5d4a-49f8-8268-d52e01ca2a5b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB648,,hbci-deutsche-bank-adapter,60470024,, +399f4a46-c463-4eb6-bef5-55fac7e993db,HBCI Deutsche Bank Ludwigsburg,DEUTDESS604,,hbci-deutsche-bank-adapter,60470082,, +d09c3a05-de85-453e-8e4f-ee2d6ee5cb4a,HBCI Deutsche Bank Bietigheim-Bi,DEUTDESS635,,hbci-deutsche-bank-adapter,60470082,, +8d0da4f1-1ca6-42bb-9f23-e0e5cddccabf,HBCI Deutsche Bank Kornwestheim,DEUTDESS617,,hbci-deutsche-bank-adapter,60470082,, +66e52e8e-d713-4a43-8b7a-317539fefa3c,HBCI Deutsche Bank Marbach Necka,DEUTDESS623,,hbci-deutsche-bank-adapter,60470082,, +d1dfc90b-ae17-408e-9f3a-f88b0b7d2681,HBCI Deutsche Bank Asperg,DEUTDESS608,,hbci-deutsche-bank-adapter,60470082,, +3d15826c-2d74-459c-bc6b-385ce3358288,HBCI Deutsche Bank Markgröningen,DEUTDESS648,,hbci-deutsche-bank-adapter,60470082,, +d5dc28a8-39a4-4d3a-b6cc-d82b1224306c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB659,,hbci-deutsche-bank-adapter,60670024,, +720077ba-81bb-406b-9fa9-8d609ce5c129,HBCI Deutsche Bank Untertürkheim,DEUTDESS659,,hbci-deutsche-bank-adapter,60670070,, +fd04813a-f011-4260-847d-ee989ee11999,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB610,,hbci-deutsche-bank-adapter,61070024,, +96f774eb-4505-49b6-a22c-8cda2bbf1736,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB627,,hbci-deutsche-bank-adapter,61070024,, +7b5e657c-99d6-4353-96d9-9eead8004b23,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB618,,hbci-deutsche-bank-adapter,61070024,, +714430e9-4147-432d-adae-a0d22e34a6bd,HBCI Deutsche Bank Göppingen,DEUTDESS610,,hbci-deutsche-bank-adapter,61070078,, +466a661d-637c-47a2-b51c-3cc30932550b,HBCI Deutsche Bank Geislingen St,DEUTDESS618,,hbci-deutsche-bank-adapter,61070078,, +f896aeef-b522-4ac4-aad3-98e9f2e61b0e,HBCI Deutsche Bank Eislingen Fil,DEUTDESS627,,hbci-deutsche-bank-adapter,61070078,, +4f22afa2-5467-4e64-aa3e-6ddd69bdcea9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB611,,hbci-deutsche-bank-adapter,61170024,, +628eeb14-e94d-4314-a4b8-e0925c153418,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB619,,hbci-deutsche-bank-adapter,61170024,, +653c241b-f8f7-4ac8-839c-236981fde2d5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB612,,hbci-deutsche-bank-adapter,61170024,, +90c9ed13-42eb-41f4-b09b-dd81d93acc17,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB626,,hbci-deutsche-bank-adapter,61170024,, +58fd5eed-4087-44fe-9ed4-331bb9f0eec6,HBCI Deutsche Bank Esslingen,DEUTDESS611,,hbci-deutsche-bank-adapter,61170076,, +f81b3364-83a6-4f3a-b9b6-8e9840ae7e50,HBCI Deutsche Bank Nürtingen,DEUTDESS612,,hbci-deutsche-bank-adapter,61170076,, +9214ac7a-61f6-412a-9985-29931da632a6,HBCI Deutsche Bank Kirchheim Tec,DEUTDESS619,,hbci-deutsche-bank-adapter,61170076,, +28c281aa-a11b-4f5d-b124-80392a2f0cce,HBCI Deutsche Bank Plochingen,DEUTDESS626,,hbci-deutsche-bank-adapter,61170076,, +0dee0a65-97c2-402f-b6e1-8a82903cb1e5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB613,,hbci-deutsche-bank-adapter,61370024,, +551a702a-a039-463c-a43d-fc8f775e4fe2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB614,,hbci-deutsche-bank-adapter,61370024,, +198ae150-a12b-443e-a1ff-ad65394f3b4e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB637,,hbci-deutsche-bank-adapter,61370024,, +bc78768a-29a3-41ee-b0d6-bc4389e8683e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB638,,hbci-deutsche-bank-adapter,61370024,, +2cb6e00a-7cb7-4421-90e4-607a439f1adb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB639,,hbci-deutsche-bank-adapter,61370024,, +332968df-71f2-4853-ae20-220159b2db40,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB615,,hbci-deutsche-bank-adapter,61370024,, +40170d1e-a2cb-41a8-b1fb-2efae905ab75,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB633,,hbci-deutsche-bank-adapter,61370024,, +5747ba93-b942-43ec-b6b5-c8cbc366155b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB616,,hbci-deutsche-bank-adapter,61370024,, +04c33bb6-b54e-4db0-9a3a-57b8ef9935d4,HBCI Deutsche Bank Schwäbisch Gmünd,DEUTDESS613,,hbci-deutsche-bank-adapter,61370086,, +fbadefd5-768f-4fb1-9239-f18c0537b862,HBCI Deutsche Bank Giengen Brenz,DEUTDESS639,,hbci-deutsche-bank-adapter,61370086,, +c42c76e1-dec9-4093-adb9-56584d57adef,HBCI Deutsche Bank Ellwangen Jag,DEUTDESS638,,hbci-deutsche-bank-adapter,61370086,, +d27ccd0a-5295-4f4b-b04e-22acbf92a368,HBCI Deutsche Bank Aalen Württ,DEUTDESS614,,hbci-deutsche-bank-adapter,61370086,, +d9f672ef-5710-44f0-b2ae-e786c5b85232,HBCI Deutsche Bank Heidenheim Br,DEUTDESS615,,hbci-deutsche-bank-adapter,61370086,, +f02a1b4f-f7ad-4791-8b59-15f4047998f3,HBCI Deutsche Bank Schorndorf Wu,DEUTDESS616,,hbci-deutsche-bank-adapter,61370086,, +0f073cd0-1085-4268-8719-8fdfd58bae2b,HBCI Deutsche Bank Crailsheim,DEUTDESS637,,hbci-deutsche-bank-adapter,61370086,, +0af58fc6-fbd1-47c4-873c-9d2b82df5531,HBCI Deutsche Bank Nördlingen,DEUTDESS633,,hbci-deutsche-bank-adapter,61370086,, +336a6c6c-b13b-4ceb-ad3c-0941bc5eb95e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB620,,hbci-deutsche-bank-adapter,62070024,, +53fb051a-ebb2-4b35-8083-d8eb20f859c2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB628,,hbci-deutsche-bank-adapter,62070024,, +e1054a8e-34a6-4c08-a818-09474be2df54,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB621,,hbci-deutsche-bank-adapter,62070024,, +ea2474f2-8310-476a-af41-6e2c97909fbb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB629,,hbci-deutsche-bank-adapter,62070024,, +bca417e2-03df-4cdb-b24f-561eef3b53dc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB622,,hbci-deutsche-bank-adapter,62070024,, +054aaaff-dee3-47e3-a368-8ef8a5c18808,HBCI Deutsche Bank Heilbronn,DEUTDESS620,,hbci-deutsche-bank-adapter,62070081,, +707468f6-ba6f-4b78-84b1-6ff59934b86c,HBCI Deutsche Bank Neckarsulm,DEUTDESS621,,hbci-deutsche-bank-adapter,62070081,, +e3e3e9e9-436b-4d13-835f-5759f1db8e50,HBCI Deutsche Bank Öhringen,DEUTDESS629,,hbci-deutsche-bank-adapter,62070081,, +71103fa6-3cfc-4d1f-8708-eb8511c79e72,HBCI Deutsche Bank Schwäbisch H,DEUTDESS622,,hbci-deutsche-bank-adapter,62070081,, +635bebd3-f2d2-4ba4-918e-5a10729cabe0,HBCI Deutsche Bank Künzelsau,DEUTDESS628,,hbci-deutsche-bank-adapter,62070081,, +738d925e-72d6-4d31-a77d-1c4364441c71,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB630,,hbci-deutsche-bank-adapter,63070024,, +0e5dd97e-09c8-4412-94d9-3bbbdad3ddec,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB631,,hbci-deutsche-bank-adapter,63070024,, +cf8f8edf-3791-4388-a1ca-21dac47daff2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB632,,hbci-deutsche-bank-adapter,63070024,, +8e94cc65-f11f-477c-95c5-b0475472d65a,HBCI Deutsche Bank Ulm Donau,DEUTDESS630,,hbci-deutsche-bank-adapter,63070088,, +dfe59f40-9fd3-4402-bd3b-312177e0dde0,HBCI Deutsche Bank Biberach Riß,DEUTDESS631,,hbci-deutsche-bank-adapter,63070088,, +58d26695-ae5b-483c-b68c-80fba4c3e03e,HBCI Deutsche Bank Neu-Ulm,DEUTDESS632,,hbci-deutsche-bank-adapter,63070088,, +3cd207cb-e7f5-4c22-9649-178f36ba9ece,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB640,,hbci-deutsche-bank-adapter,64070024,, +de0ff2c6-bfa8-4ad9-a43c-4180597c52d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB646,,hbci-deutsche-bank-adapter,64070024,, +db6a3229-1533-4697-b415-26880ddd7be8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB634,,hbci-deutsche-bank-adapter,64070024,, +20f1090e-ba90-4a28-adfc-f34c890a5999,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB643,,hbci-deutsche-bank-adapter,64070024,, +20bf0d9d-8b57-4a1c-8879-f8df44f45e43,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB636,,hbci-deutsche-bank-adapter,64070024,, +4803b356-3586-4e34-afb3-90e375e7359b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB645,,hbci-deutsche-bank-adapter,64070024,, +0f366618-551e-46a1-b190-c7eda14699c0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB641,,hbci-deutsche-bank-adapter,64070024,, +90b419e2-6aab-4ab9-ae24-0f97fb5dab53,HBCI Deutsche Bank Reutlingen,DEUTDESS640,,hbci-deutsche-bank-adapter,64070085,, +5ce08eb0-7535-455a-88cb-2b5e9e95abfa,HBCI Deutsche Bank Metzingen,DEUTDESS642,,hbci-deutsche-bank-adapter,64070085,, +d9f4a10a-a32f-4d07-97cf-acc52caa0a7f,HBCI Deutsche Bank Tübingen,DEUTDESS641,,hbci-deutsche-bank-adapter,64070085,, +c7bc3ef5-c4ea-4006-bc44-1f2605e07a15,HBCI Deutsche Bank Pfullingen,DEUTDESS644,,hbci-deutsche-bank-adapter,64070085,, +b25ec4bc-42aa-4f6d-a45a-66df0058ba15,HBCI Deutsche Bank Rottenburg Ne,DEUTDESS645,,hbci-deutsche-bank-adapter,64070085,, +5a9882a4-d7b8-4e0c-a573-88ee1ea39730,HBCI Deutsche Bank Nagold,DEUTDESS643,,hbci-deutsche-bank-adapter,64070085,, +53cb832d-81a4-4ce2-818d-0d5ebe39edb3,HBCI Deutsche Bank Freudenstadt,DEUTDESS646,,hbci-deutsche-bank-adapter,64070085,, +ba8a1034-4751-4912-ba64-031aa7715309,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB650,,hbci-deutsche-bank-adapter,65070024,, +4a611910-5109-4e1b-9186-39c03498ba17,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB651,,hbci-deutsche-bank-adapter,65070024,, +237da713-6a23-4356-b214-2ebd2d814c5e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB652,,hbci-deutsche-bank-adapter,65070024,, +414c14ce-f14a-4c30-81bb-4a0ebca20384,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB654,,hbci-deutsche-bank-adapter,65070024,, +480085e0-5c5d-4e91-bdc9-72ef1cf0f2cb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB649,,hbci-deutsche-bank-adapter,65070024,, +4f11370b-4179-4f31-a6f1-39bc91c0e407,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB657,,hbci-deutsche-bank-adapter,65070024,, +b505bd0a-4bd2-4623-a52c-f2a61a0c81b6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB658,,hbci-deutsche-bank-adapter,65070024,, +263919e5-635f-401b-9065-bed1b235478a,HBCI Deutsche Bank Ravensburg,DEUTDESS650,,hbci-deutsche-bank-adapter,65070084,, +1c5a4d63-b0d4-4ebf-9b8d-780b4600639e,HBCI Deutsche Bank Friedrichshaf,DEUTDESS651,,hbci-deutsche-bank-adapter,65070084,, +4f9079d3-989f-48e0-b4fb-7ada43ecc41f,HBCI Deutsche Bank Weingarten Wu,DEUTDESS658,,hbci-deutsche-bank-adapter,65070084,, +f980e52b-5c1e-4169-b7f7-08cdde4a6ccc,HBCI Deutsche Bank Wangen Allgäu,DEUTDESS657,,hbci-deutsche-bank-adapter,65070084,, +e491d239-83bc-45fd-a512-258fc90a62e8,HBCI Deutsche Bank Lindau Bodens,DEUTDESS654,,hbci-deutsche-bank-adapter,65070084,, +a809be88-dc18-4901-a873-434f6548ad98,HBCI Deutsche Bank Leutkirch,DEUTDESS652,,hbci-deutsche-bank-adapter,65070084,, +9fc0f54f-dbf6-4774-9508-d800e3c961cf,HBCI Deutsche Bank Tettnang,DEUTDESS649,,hbci-deutsche-bank-adapter,65070084,, +e77f7fea-758b-4028-bc74-016ca0a8ccad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB653,,hbci-deutsche-bank-adapter,65370024,, +eb73275f-1428-4363-a9a4-e533833f2e46,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB655,,hbci-deutsche-bank-adapter,65370024,, +91106064-0383-40c3-8099-d336b6fb471a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB603,,hbci-deutsche-bank-adapter,65370024,, +82bcc399-edda-45a1-b5a2-29c4ab07c87d,HBCI Deutsche Bank Albstadt,DEUTDESS653,,hbci-deutsche-bank-adapter,65370075,, +16070355-c1bc-4ed6-a4d7-359aa5641870,HBCI Deutsche Bank Balingen,DEUTDESS655,,hbci-deutsche-bank-adapter,65370075,, +52ba3988-41dc-4d05-a193-7bc14cc7a929,HBCI Deutsche Bank Tuttlingen,DEUTDESS603,,hbci-deutsche-bank-adapter,65370075,, +a3e97b04-85a4-47a5-80b8-5fee59695240,HBCI Deutsche Bank Karlsruhe,DEUTDESM660,,hbci-deutsche-bank-adapter,66070004,, +c9cb18d0-6107-4419-81ff-e7ca06c4d0b4,HBCI Deutsche Bank Bruchsal,DEUTDESM661,,hbci-deutsche-bank-adapter,66070004,, +30001e30-5862-4cf1-8998-c455a04b26f4,HBCI Deutsche Bank Bretten Baden,DEUTDESM663,,hbci-deutsche-bank-adapter,66070004,, +61a8c2e2-7b57-4294-a69f-ce663e7a5f81,HBCI Deutsche Bank Ettlingen,DEUTDESM664,,hbci-deutsche-bank-adapter,66070004,, +af159f3c-2574-4015-8d6e-92802fe97cec,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB660,,hbci-deutsche-bank-adapter,66070024,, +5b17090f-610f-47a2-9521-1972490b3d60,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB663,,hbci-deutsche-bank-adapter,66070024,, +cc1fb993-81af-4e5c-a397-a3917e8f2bc2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB661,,hbci-deutsche-bank-adapter,66070024,, +58279aa8-db53-4b42-8d54-ab9e94d043c1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB664,,hbci-deutsche-bank-adapter,66070024,, +85fd5069-3097-4654-8151-129e66ea7cc0,HBCI Deutsche Bank Baden-Baden,DEUTDESM662,,hbci-deutsche-bank-adapter,66270001,, +04030612-4133-4af1-95f0-b895aa05a59c,HBCI Deutsche Bank Gernsbach,DEUTDESM667,,hbci-deutsche-bank-adapter,66270001,, +8c4371e4-a294-4fc1-85be-418e1336b910,HBCI Deutsche Bank Gaggenau,DEUTDESM671,,hbci-deutsche-bank-adapter,66270001,, +cd2f072d-6991-4ff5-92ec-96898dbb7c6c,HBCI Deutsche Bank Rastatt,DEUTDESM665,,hbci-deutsche-bank-adapter,66270001,, +e98807db-cfdf-4405-aede-98a27603acf7,HBCI Deutsche Bank Bühl Baden,DEUTDESM669,,hbci-deutsche-bank-adapter,66270001,, +150559dc-756e-4804-8688-e299be215231,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB662,,hbci-deutsche-bank-adapter,66270024,, +9e742d44-39de-40da-8463-0fecee1ae37c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB669,,hbci-deutsche-bank-adapter,66270024,, +4696c7f3-60ef-48ea-b64b-c21da0b6e2d9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB671,,hbci-deutsche-bank-adapter,66270024,, +5288e9b6-3962-4ed1-8e1b-82d6a134e690,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB667,,hbci-deutsche-bank-adapter,66270024,, +a217db32-06e8-4d31-8b07-b1034d93ddc6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB665,,hbci-deutsche-bank-adapter,66270024,, +da72175e-f9f7-4cb4-9762-978dc9b186a3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB968,,hbci-deutsche-bank-adapter,66470024,, +3b71807b-6560-45b5-9b25-8334c011a4fe,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB970,,hbci-deutsche-bank-adapter,66470024,, +aa77ecfa-fe61-43e8-8c11-a95ae37463e0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB969,,hbci-deutsche-bank-adapter,66470024,, +a0164e1f-e371-4d0f-a8c2-0f2c4c81a0b1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB971,,hbci-deutsche-bank-adapter,66470024,, +5ab6250a-325f-4f23-9d18-8dc5e03aae54,HBCI Deutsche Bank Offenburg,DEUTDE6F664,,hbci-deutsche-bank-adapter,66470035,, +1dc10cfb-a223-4bb2-9866-c333619efdd5,HBCI Deutsche Bank Kehl,DEUTDE6F665,,hbci-deutsche-bank-adapter,66470035,, +14a85869-2851-4af1-bd36-f11f2a5ba8b7,HBCI Deutsche Bank Haslach Kinzi,DEUTDE6F666,,hbci-deutsche-bank-adapter,66470035,, +95f606d4-b502-4fb1-a7a4-eab8d665b773,HBCI Deutsche Bank Oberkirch Bad,DEUTDE6F667,,hbci-deutsche-bank-adapter,66470035,, +679922c6-45e5-4a4d-9e42-23740f5c921b,HBCI Deutsche Bank Pforzheim,DEUTDESM666,,hbci-deutsche-bank-adapter,66670006,, +57f9bcc6-9d91-4af6-8e2b-d699224a89ae,HBCI Deutsche Bank Mühlacker,DEUTDESM677,,hbci-deutsche-bank-adapter,66670006,, +e6a379b9-266c-4d6f-b1a7-fb602e1cb667,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB666,,hbci-deutsche-bank-adapter,66670024,, +7ecbfc5c-00b7-4c94-9ae3-7a0de8d5b46e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB677,,hbci-deutsche-bank-adapter,66670024,, +58d48677-a437-4806-95f1-9d9196cff5b2,HBCI Deutsche Bank Mannheim,DEUTDESMXXX,,hbci-deutsche-bank-adapter,67070010,, +38b0cbde-b6d8-4202-a6c2-0a3ddc27f113,HBCI Deutsche Bank Hockenheim,DEUTDESM676,,hbci-deutsche-bank-adapter,67070010,, +125a15d1-24f4-48a0-9c6e-cb9c54c1bdbe,HBCI Deutsche Bank Viernheim,DEUTDESM675,,hbci-deutsche-bank-adapter,67070010,, +67682d03-2a4d-4cd9-8ce3-e196a158ff10,HBCI Deutsche Bank Schwetzingen,DEUTDESM673,,hbci-deutsche-bank-adapter,67070010,, +050fee00-ab25-4a9b-8164-ec34216db4d7,HBCI Deutsche Bank Weinheim Berg,DEUTDESM670,,hbci-deutsche-bank-adapter,67070010,, +fca955e8-4a02-4cb4-b9ee-b1a825707c53,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMAN,,hbci-deutsche-bank-adapter,67070024,, +39dcb2db-54db-4d0c-956b-23d3df595fa0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB676,,hbci-deutsche-bank-adapter,67070024,, +12209f02-c2d0-4b38-85b4-02e7ea4e6926,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB673,,hbci-deutsche-bank-adapter,67070024,, +17fe6a96-088f-4f4a-ae7a-658cafa537ef,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB675,,hbci-deutsche-bank-adapter,67070024,, +7d56ffae-7f40-4d24-809a-15d05ba248ae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB670,,hbci-deutsche-bank-adapter,67070024,, +44ade2ed-4f71-40ab-a98a-5f9424a55472,HBCI Deutsche Bank Heidelberg,DEUTDESM672,,hbci-deutsche-bank-adapter,67270003,, +84bd6d28-37f0-4255-974a-29aa78417ab3,HBCI Deutsche Bank Mosbach Baden,DEUTDESM674,,hbci-deutsche-bank-adapter,67270003,, +70fafc7c-f871-46b0-9dba-235967eea4ce,HBCI Deutsche Bank Wiesloch,DEUTDESM678,,hbci-deutsche-bank-adapter,67270003,, +1ec9b83c-412b-4d44-a4ef-249797f9a871,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB672,,hbci-deutsche-bank-adapter,67270024,, +ef2caa68-924d-4392-8994-e6741f53b25f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB674,,hbci-deutsche-bank-adapter,67270024,, +52734a82-ea22-4dff-9b4c-590071392b56,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB678,,hbci-deutsche-bank-adapter,67270024,, +8786b266-5e16-40be-b248-d0a834638b1a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBFRE,,hbci-deutsche-bank-adapter,68070024,, +ab872f52-7898-49de-9827-6f67a2059812,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB681,,hbci-deutsche-bank-adapter,68070024,, +e4961a29-2c91-4375-b66d-3892d2e3def2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB685,,hbci-deutsche-bank-adapter,68070024,, +676c8bee-fdb6-40c2-9e33-322a243d216a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB689,,hbci-deutsche-bank-adapter,68070024,, +afe3aa1b-1b21-4779-a22f-e1e37261d5f1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB687,,hbci-deutsche-bank-adapter,68070024,, +7c1b9032-c8d6-4092-af1e-d9ba0fbeb541,HBCI Deutsche Bank Freiburg,DEUTDE6FXXX,,hbci-deutsche-bank-adapter,68070030,, +edb950e8-a1be-47b1-a03b-418a1ecbfb7f,HBCI Deutsche Bank Emmendingen,DEUTDE6F681,,hbci-deutsche-bank-adapter,68070030,, +ec4a4087-62b6-4f85-b895-6f8277dd188d,HBCI Deutsche Bank Müllheim Bad,DEUTDE6F685,,hbci-deutsche-bank-adapter,68070030,, +548027ab-c859-483a-aba0-5dfc8a2ccb7f,HBCI Deutsche Bank Waldkirch Bre,DEUTDE6F687,,hbci-deutsche-bank-adapter,68070030,, +8ebdad3f-d3aa-4d0e-8af0-655349bcaad6,HBCI Deutsche Bank Titisee-Neust,DEUTDE6F689,,hbci-deutsche-bank-adapter,68070030,, +499fb163-1171-4885-816a-c7a7b95d623f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB682,,hbci-deutsche-bank-adapter,68270024,, +a0026882-593d-48aa-adf7-dc23bcf24cd6,HBCI Deutsche Bank Lahr Schwarzw,DEUTDE6F682,,hbci-deutsche-bank-adapter,68270033,, +bec5d360-1d44-40e3-9371-f9b3065a54ae,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB683,,hbci-deutsche-bank-adapter,68370024,, +db46e7da-0dba-4f48-8578-dea0c62343e3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB684,,hbci-deutsche-bank-adapter,68370024,, +ae499b83-739c-48d1-8662-b7828c411868,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB688,,hbci-deutsche-bank-adapter,68370024,, +36a1c352-a003-49c1-a726-ed8ef39e8527,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB686,,hbci-deutsche-bank-adapter,68370024,, +01461eaf-4694-46ae-a110-ff5559db1a82,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB693,,hbci-deutsche-bank-adapter,68370024,, +571c3f2c-3e1f-4821-abd1-178c2390e4da,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB680,,hbci-deutsche-bank-adapter,68370024,, +338f3460-d7d9-4924-86ab-16c5d812d64c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB679,,hbci-deutsche-bank-adapter,68370024,, +bb0d8cb1-89b4-48d9-9124-dd2fe9028529,HBCI Deutsche Bank Lörrach,DEUTDE6F683,,hbci-deutsche-bank-adapter,68370034,, +19f55505-9361-431e-8a0a-084a0c505f1c,HBCI Deutsche Bank Grenzach-Wyhl,DEUTDE6F688,,hbci-deutsche-bank-adapter,68370034,, +21da6962-8de2-407f-97ce-d677ae2dcff1,HBCI Deutsche Bank Schopfheim,DEUTDE6F693,,hbci-deutsche-bank-adapter,68370034,, +6839e099-c76c-42c6-838c-171808228b93,HBCI Deutsche Bank Bad Säckingen,DEUTDE6F684,,hbci-deutsche-bank-adapter,68370034,, +b69ddf39-f77b-4cdf-8f4c-a057671e4431,HBCI Deutsche Bank Rheinfelden B,DEUTDE6F686,,hbci-deutsche-bank-adapter,68370034,, +95aeaf06-ff7b-41a8-9992-22b75e159377,HBCI Deutsche Bank Weil Rhein,DEUTDE6F679,,hbci-deutsche-bank-adapter,68370034,, +b4342b5c-04ce-457b-8f90-cfb6a232c5af,HBCI Deutsche Bank Wehr Baden,DEUTDE6F678,,hbci-deutsche-bank-adapter,68370034,, +3248d688-420e-4510-a977-db5573d6755a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB690,,hbci-deutsche-bank-adapter,69070024,, +bbac86d3-279d-434f-a0de-fbd3928e8166,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB691,,hbci-deutsche-bank-adapter,69070024,, +6549c530-503a-430e-8a11-c8f9e6206dfb,HBCI Deutsche Bank Konstanz,DEUTDE6F690,,hbci-deutsche-bank-adapter,69070032,, +682e0833-ab2f-4601-a770-427b89276c23,HBCI Deutsche Bank Überlingen,DEUTDE6F691,,hbci-deutsche-bank-adapter,69070032,, +ddaf4912-328a-4c96-95fb-e6c969d3ab1b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB692,,hbci-deutsche-bank-adapter,69270024,, +23ff848f-29e9-4154-97bb-23cadb5374cb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB696,,hbci-deutsche-bank-adapter,69270024,, +0a946820-56cb-4346-8945-7053aeca4631,HBCI Deutsche Bank Singen Hohent,DEUTDE6F692,,hbci-deutsche-bank-adapter,69270038,, +7441d626-3149-4936-a830-e26e4a13c707,HBCI Deutsche Bank Radolfzell,DEUTDE6F696,,hbci-deutsche-bank-adapter,69270038,, +43fe50f9-2373-46f1-9c3b-6cefac2e596a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB694,,hbci-deutsche-bank-adapter,69470024,, +1b0f5b41-5e74-4563-b79f-45cbb22e5038,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB698,,hbci-deutsche-bank-adapter,69470024,, +2f64248f-b882-4180-9f92-d307015e349c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB642,,hbci-deutsche-bank-adapter,69470024,, +55cdded1-3dc4-4bdb-bde7-7aeba324e199,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB699,,hbci-deutsche-bank-adapter,69470024,, +1f89c55f-30af-4f94-9097-9e3c0469ad2e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB644,,hbci-deutsche-bank-adapter,69470024,, +329cead8-a56f-4758-9b2d-1f4a94532be5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB697,,hbci-deutsche-bank-adapter,69470024,, +6c8ba2ea-a790-465d-b09b-c06404a10e27,HBCI Deutsche Bank Villingen Sch,DEUTDE6F694,,hbci-deutsche-bank-adapter,69470039,, +7806fd11-c244-4037-9e1e-9319904d84fb,HBCI Deutsche Bank Triberg,DEUTDE6F697,,hbci-deutsche-bank-adapter,69470039,, +e0649ca8-b210-423e-9f9e-f486941fae0f,HBCI Deutsche Bank Rottweil,DEUTDE6F642,,hbci-deutsche-bank-adapter,69470039,, +3953ddb6-03b5-4875-89bb-554468ae9a38,HBCI Deutsche Bank Sankt Georgen,DEUTDE6F699,,hbci-deutsche-bank-adapter,69470039,, +f8a98552-4367-4780-b0a0-1e7c09bd23c4,HBCI Deutsche Bank Spaichingen,DEUTDE6F644,,hbci-deutsche-bank-adapter,69470039,, +36b87757-d60f-425e-97b9-170289199c51,HBCI Deutsche Bank Donaueschinge,DEUTDE6F698,,hbci-deutsche-bank-adapter,69470039,, +c83ac097-dd60-47e0-972a-a7623a5809aa,HBCI Deutsche Bank München,DEUTDEMMXXX,,hbci-deutsche-bank-adapter,70070010,, +08b81900-685d-41f3-bd5e-2de53287ca99,HBCI Deutsche Bank Rosenheim,DEUTDEMM705,,hbci-deutsche-bank-adapter,70070010,, +e8943350-ebf7-41dd-af72-924a4eeabc74,HBCI Deutsche Bank Germering,DEUTDEMM713,,hbci-deutsche-bank-adapter,70070010,, +a34781be-e9f2-415e-9ff8-c186efb4621b,HBCI Deutsche Bank Garmisch-Part,DEUTDEMM701,,hbci-deutsche-bank-adapter,70070010,, +f77c8e85-2a8b-47f2-ab91-ea9415460791,HBCI Deutsche Bank Fürstenfeldbruck,DEUTDEMM708,,hbci-deutsche-bank-adapter,70070010,, +a96a1978-8364-4db9-8da1-52a3234ab9bf,HBCI Deutsche Bank Landshut,DEUTDEMM703,,hbci-deutsche-bank-adapter,70070010,, +77359045-7d32-43de-be43-0b1cc452b4f9,HBCI Deutsche Bank Starnberg,DEUTDEMM709,,hbci-deutsche-bank-adapter,70070010,, +98800e5a-fb60-4e8e-b395-1af68886f65e,HBCI Deutsche Bank Dachau,DEUTDEMM706,,hbci-deutsche-bank-adapter,70070010,, +0f75dfa5-b9cc-4be8-b85f-939f10be568b,HBCI Deutsche Bank Landsberg Lec,DEUTDEMM702,,hbci-deutsche-bank-adapter,70070010,, +02288b9b-18e5-42f4-9389-e6c4c93207c5,HBCI Deutsche Bank Ottobrunn,DEUTDEMM715,,hbci-deutsche-bank-adapter,70070010,, +1cd7909a-276f-4578-a136-804de7cf7308,HBCI Deutsche Bank Mühldorf Inn,DEUTDEMM704,,hbci-deutsche-bank-adapter,70070010,, +646bc137-19ec-49c2-b216-b939b873b0a4,HBCI Deutsche Bank Bad Tölz,DEUTDEMM700,,hbci-deutsche-bank-adapter,70070010,, +84311c92-1c8b-4d18-b499-61f15b7a8b86,HBCI Deutsche Bank Weilheim Obb,DEUTDEMM711,,hbci-deutsche-bank-adapter,70070010,, +f3f5df2a-94bb-47b0-a426-18f0f6c632dc,HBCI Deutsche Bank Freising,DEUTDEMM707,,hbci-deutsche-bank-adapter,70070010,, +07189ad2-cfe1-4d7f-a230-e039fa2899af,HBCI Deutsche Bank Planegg,DEUTDEMM716,,hbci-deutsche-bank-adapter,70070010,, +74816ef6-8665-486e-a926-d4d63bf2ef54,HBCI Deutsche Bank Grünwald,DEUTDEMM714,,hbci-deutsche-bank-adapter,70070010,, +29dde284-bdcb-4bef-9592-68cc4d231550,HBCI Deutsche Bank Erding,DEUTDEMM712,,hbci-deutsche-bank-adapter,70070010,, +32560a23-e5c2-4cd9-a8e8-d391783aa5e6,HBCI Deutsche Bank Bad Reichenha,DEUTDEMM710,,hbci-deutsche-bank-adapter,70070010,, +bb834a9a-38e2-44f7-9ed1-ce1d8bfb15ce,HBCI Deutsche Bank Rottach-Egern,DEUTDEMM717,,hbci-deutsche-bank-adapter,70070010,, +8d833102-0c3c-464d-a290-d8e99c2327ab,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMUC,,hbci-deutsche-bank-adapter,70070024,, +f4b25732-36a8-41f5-a445-74b24891550b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB710,,hbci-deutsche-bank-adapter,70070024,, +7a398cd9-f232-411c-8d2e-e6b361ee9f81,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB700,,hbci-deutsche-bank-adapter,70070024,, +86f4c343-1433-48eb-91cc-29830eda2a7d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB706,,hbci-deutsche-bank-adapter,70070024,, +fea976e6-1a10-4b07-a346-cb6a03417793,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB712,,hbci-deutsche-bank-adapter,70070024,, +6eee938e-89e1-4f6e-be49-7def38e24280,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB707,,hbci-deutsche-bank-adapter,70070024,, +ec6ab88d-b5a5-4ea2-b14a-4dc9473e272d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB708,,hbci-deutsche-bank-adapter,70070024,, +2a70b1c1-25b6-4859-a48b-88cfcdb24c5d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB701,,hbci-deutsche-bank-adapter,70070024,, +945d5028-4d68-4fbf-91f3-5d3ccdf0ed41,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB713,,hbci-deutsche-bank-adapter,70070024,, +e284225e-ceee-46d0-bfcc-e98a2f93c417,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB714,,hbci-deutsche-bank-adapter,70070024,, +7fabdaaa-4a96-48f2-acf5-d46ab94f25bc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB702,,hbci-deutsche-bank-adapter,70070024,, +5cb89a53-488f-453c-8d7a-3a0ede7bcb11,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB703,,hbci-deutsche-bank-adapter,70070024,, +81d7abc3-0aee-43fd-a058-46d2d03a1699,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB704,,hbci-deutsche-bank-adapter,70070024,, +6d918e07-248e-43e4-b77d-d83c3740b6ab,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB715,,hbci-deutsche-bank-adapter,70070024,, +3f692515-ca3f-4192-a8eb-db014eb80591,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB716,,hbci-deutsche-bank-adapter,70070024,, +33415eb3-da53-41d7-948c-f9195c300416,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB705,,hbci-deutsche-bank-adapter,70070024,, +61eabf30-6725-4b8f-bc9a-faa17c35901c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB717,,hbci-deutsche-bank-adapter,70070024,, +e7f7dcba-920e-4f7e-a583-43a3b85cf93f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB709,,hbci-deutsche-bank-adapter,70070024,, +72ebcea5-7b92-4d8e-a8b1-9b9c937b2ebe,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB711,,hbci-deutsche-bank-adapter,70070024,, +17158c2f-2456-4f4d-827b-fdbb45de3408,HBCI Deutsche Bank Augsburg,DEUTDEMM720,,hbci-deutsche-bank-adapter,72070001,, +f26ab2d4-e52c-417e-b7d0-dbfca692014c,HBCI Deutsche Bank Königsbrunn,DEUTDEMM727,,hbci-deutsche-bank-adapter,72070001,, +cfe3b88e-e4ad-47ca-a3c5-fa643cbbdbed,HBCI Deutsche Bank Gersthofen,DEUTDEMM725,,hbci-deutsche-bank-adapter,72070001,, +2d73648d-8ea0-488d-877e-b4789cf69338,HBCI Deutsche Bank Bad Wörishof,DEUTDEMM723,,hbci-deutsche-bank-adapter,72070001,, +d12bc63b-7be1-48f6-916f-472d4a7b3454,HBCI Deutsche Bank Günzburg,DEUTDEMM726,,hbci-deutsche-bank-adapter,72070001,, +b9e582b2-62da-4259-b627-f49e6e5395c3,HBCI Deutsche Bank Dillingen,DEUTDEMM724,,hbci-deutsche-bank-adapter,72070001,, +2cedd87c-f5fb-428a-81c4-bae4ac2de30a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB720,,hbci-deutsche-bank-adapter,72070024,, +7ee51d55-1dec-423e-aaaa-e88894bc796c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB723,,hbci-deutsche-bank-adapter,72070024,, +4ae74891-e0e3-4344-8330-c019e2575195,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB724,,hbci-deutsche-bank-adapter,72070024,, +592ff5f0-0ed4-4165-853a-6e66b3cc7389,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB725,,hbci-deutsche-bank-adapter,72070024,, +01558a9e-2833-4a52-bf37-f572e8f45a2d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB726,,hbci-deutsche-bank-adapter,72070024,, +83f29454-e260-4dde-90ec-13b9beb29ca4,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB727,,hbci-deutsche-bank-adapter,72070024,, +7cfc6d77-033b-4a77-a658-03956f1e636d,HBCI Deutsche Bank Ingolstadt,DEUTDEMM721,,hbci-deutsche-bank-adapter,72170007,, +0b09092e-9023-41ae-af2e-7b698ced73be,HBCI Deutsche Bank Vohburg Donau,DEUTDEMM729,,hbci-deutsche-bank-adapter,72170007,, +1320a5db-88d3-498e-a3b3-eccbe6ae661f,HBCI Deutsche Bank Neuburg Donau,DEUTDEMM722,,hbci-deutsche-bank-adapter,72170007,, +775d6bd1-5d2a-448b-ba76-6b5917ca5b44,HBCI Deutsche Bank Pfaffenh Ilm,DEUTDEMM728,,hbci-deutsche-bank-adapter,72170007,, +8c564de5-21fd-48cf-8537-882c2f8b5bf5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB721,,hbci-deutsche-bank-adapter,72170024,, +2afbb5ce-2a50-47b3-976e-a255971ade80,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB722,,hbci-deutsche-bank-adapter,72170024,, +17318f8d-cb19-4584-a624-6303bc7c702e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB728,,hbci-deutsche-bank-adapter,72170024,, +0f909939-ef4a-4fd9-b30f-06399a03599c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB729,,hbci-deutsche-bank-adapter,72170024,, +9601d843-9444-42c5-b5d4-fc705cb699e2,HBCI Deutsche Bank Kempten Allga,DEUTDEMM733,,hbci-deutsche-bank-adapter,73370008,, +c9689479-767b-4a3b-bee9-ec04393da84a,HBCI Deutsche Bank Memmingen,DEUTDEMM734,,hbci-deutsche-bank-adapter,73370008,, +35f0792a-8c3b-4b81-8030-a22eef81df63,HBCI Deutsche Bank Sonthofen,DEUTDEMM735,,hbci-deutsche-bank-adapter,73370008,, +e8d4d3ac-d617-4778-bc5b-9a5883cdc495,HBCI Deutsche Bank Marktoberdorf,DEUTDEMM736,,hbci-deutsche-bank-adapter,73370008,, +1a1fbe0d-f0a9-4f67-a588-7ab10ad90694,HBCI Deutsche Bank Kaufbeuren,DEUTDEMM737,,hbci-deutsche-bank-adapter,73370008,, +d0cec5f8-2255-4370-83f6-9fbd8552ed73,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB733,,hbci-deutsche-bank-adapter,73370024,, +ed53ef1b-c57d-42a3-aaae-8f203af15109,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB737,,hbci-deutsche-bank-adapter,73370024,, +06c45cb5-b780-4609-a42e-4f974f085e40,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB736,,hbci-deutsche-bank-adapter,73370024,, +b16b79bc-eb69-405b-b393-27e74159bb86,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB734,,hbci-deutsche-bank-adapter,73370024,, +7625505f-3118-4761-bcbc-5dc3219b9cd6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB735,,hbci-deutsche-bank-adapter,73370024,, +7ba0ebce-f314-4b49-9667-08bdc49643c8,HBCI Deutsche Bank Regensburg,DEUTDEMM750,,hbci-deutsche-bank-adapter,75070013,, +b2df9417-e482-41e8-abcc-9341710f4652,HBCI Deutsche Bank Straubing,DEUTDEMM751,,hbci-deutsche-bank-adapter,75070013,, +ba4388e2-03a8-4e14-b921-8b7a8bfbae89,HBCI Deutsche Bank Deggendorf,DEUTDEMM741,,hbci-deutsche-bank-adapter,75070013,, +0cdec37c-9f09-4a5f-a80f-36f2a5359a8e,HBCI Deutsche Bank Passau,DEUTDEMM752,,hbci-deutsche-bank-adapter,75070013,, +8dc26fac-afc4-451b-a1ac-e9b920783834,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB750,,hbci-deutsche-bank-adapter,75070024,, +9e21a320-0a1f-411e-a5ab-286cfaa4dd66,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB741,,hbci-deutsche-bank-adapter,75070024,, +c49630a6-b582-453f-8503-294afd81d0d6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB752,,hbci-deutsche-bank-adapter,75070024,, +854ae857-4486-4275-afe0-4318e1bbd3b1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB751,,hbci-deutsche-bank-adapter,75070024,, +a9f7cb6a-2bac-4939-9a99-96b1c8205b36,HBCI Deutsche Bank Nürnberg,DEUTDEMM760,,hbci-deutsche-bank-adapter,76070012,, +75881609-4f42-4756-9b73-60abe76cfcb4,HBCI Deutsche Bank Bayreuth,DEUTDEMM773,,hbci-deutsche-bank-adapter,76070012,, +5e6247be-1002-4002-a397-15a2dcdaf1db,HBCI Deutsche Bank Bamberg,DEUTDEMM762,,hbci-deutsche-bank-adapter,76070012,, +68247d7b-6808-4964-ba2d-9c82d79495d0,HBCI Deutsche Bank Erlangen,DEUTDEMM763,,hbci-deutsche-bank-adapter,76070012,, +b0ef5a0e-07c9-4a1b-8d0b-005488d9841e,HBCI Deutsche Bank Coburg,DEUTDEMM783,,hbci-deutsche-bank-adapter,76070012,, +3d160ae8-6453-4cf3-b2d9-3d2241d1e038,HBCI Deutsche Bank Fürth Bay,DEUTDEMM764,,hbci-deutsche-bank-adapter,76070012,, +aa6830f4-151c-418d-bd5f-c2f93929de2d,HBCI Deutsche Bank Zirndorf,DEUTDEMM769,,hbci-deutsche-bank-adapter,76070012,, +4807a296-cece-4a1e-aa92-c0c7120e6212,HBCI Deutsche Bank Kulmbach,DEUTDEMM774,,hbci-deutsche-bank-adapter,76070012,, +71a088be-f0a1-4d41-9c5c-dfce77a68352,HBCI Deutsche Bank Forchheim Ofr,DEUTDEMM768,,hbci-deutsche-bank-adapter,76070012,, +31bd7021-1542-4738-ac31-0316bd6159f1,HBCI Deutsche Bank Ansbach,DEUTDEMM761,,hbci-deutsche-bank-adapter,76070012,, +e29f1ef7-0070-4a27-a7f6-75904032cbfb,HBCI Deutsche Bank Amberg Oberpf,DEUTDEMM765,,hbci-deutsche-bank-adapter,76070012,, +d3d7c3b9-86c2-46db-a846-6a06cb015d90,HBCI Deutsche Bank Weiden Oberpf,DEUTDEMM766,,hbci-deutsche-bank-adapter,76070012,, +738ca3d3-4a87-459a-be10-e29bd756be5b,HBCI Deutsche Bank Neumarkt Opf,DEUTDEMM767,,hbci-deutsche-bank-adapter,76070012,, +9b37abff-33ea-4cff-a725-2cc5d13f57f3,HBCI Deutsche Bank Lauf Pegnitz,DEUTDEMM772,,hbci-deutsche-bank-adapter,76070012,, +a7ebbed2-1c2a-490b-9432-23d7f383d8c9,HBCI Deutsche Bank Schwabach Mfr,DEUTDEMM771,,hbci-deutsche-bank-adapter,76070012,, +7a805cd3-67da-4f3a-8ac6-617ce85245bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB760,,hbci-deutsche-bank-adapter,76070024,, +0eea59eb-0a8b-459f-b800-7c028eec7745,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB765,,hbci-deutsche-bank-adapter,76070024,, +c152dd76-915e-4061-a959-64c39b905dd3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB761,,hbci-deutsche-bank-adapter,76070024,, +f4930ce6-d69d-4af8-a122-8160ad236c99,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB762,,hbci-deutsche-bank-adapter,76070024,, +ab533282-b513-4ccd-9ada-438a44956d45,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB773,,hbci-deutsche-bank-adapter,76070024,, +c0d7dc02-64ac-4c74-a976-65f4eb823536,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB783,,hbci-deutsche-bank-adapter,76070024,, +146c1cf4-29d9-46ae-86da-e9264c813b6e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB763,,hbci-deutsche-bank-adapter,76070024,, +d93a4586-7a5c-46b2-98a9-5d8fd1aa5158,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB768,,hbci-deutsche-bank-adapter,76070024,, +a5e2d3e4-9a2c-4aaf-851c-1596c9d0db06,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB764,,hbci-deutsche-bank-adapter,76070024,, +e0611aa3-5a9d-4250-97a1-e4c443e52d16,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB774,,hbci-deutsche-bank-adapter,76070024,, +c16341b9-2051-4a4a-8461-93c2bd120adb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB772,,hbci-deutsche-bank-adapter,76070024,, +622d40d4-a69a-4900-99cd-014e120a284a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB767,,hbci-deutsche-bank-adapter,76070024,, +7dda7865-1d18-47a1-bbac-5c9e3acc6867,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB771,,hbci-deutsche-bank-adapter,76070024,, +abe022c8-0c2a-4c3d-b286-4911cda2dc82,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB766,,hbci-deutsche-bank-adapter,76070024,, +ff7e3bcc-ffc8-4319-9b1e-dd1a3942b556,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB769,,hbci-deutsche-bank-adapter,76070024,, +dde0e604-909c-4bee-9fd9-5f9ad64c8b0c,HBCI Deutsche Bank Würzburg,DEUTDEMM790,,hbci-deutsche-bank-adapter,79070016,, +ff1cbf33-81f4-403d-a4f0-b07192c00d93,HBCI Deutsche Bank Schweinfurt,DEUTDEMM791,,hbci-deutsche-bank-adapter,79070016,, +162e138f-5df1-46c5-bcd7-27b949e1678e,HBCI Deutsche Bank Bad Mergenthe,DEUTDEMM792,,hbci-deutsche-bank-adapter,79070016,, +4d194e80-0cba-40f7-b718-32430a0de847,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB790,,hbci-deutsche-bank-adapter,79070024,, +46c2e8b1-a7eb-4c65-87d1-019093de6f6c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB792,,hbci-deutsche-bank-adapter,79070024,, +6bebca9b-fbcb-4784-900f-c5479fb2e4aa,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB791,,hbci-deutsche-bank-adapter,79070024,, +27119ce5-f06a-4d41-813a-9fad7c9c19eb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB795,,hbci-deutsche-bank-adapter,79570024,, +4638ee42-f40f-4fc8-94bc-0fe2a06d5d51,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB796,,hbci-deutsche-bank-adapter,79570024,, +a90b7c5b-0cdd-4352-b8cc-6a1dc160ba44,HBCI Deutsche Bank Aschaffenburg,DEUTDEFF795,,hbci-deutsche-bank-adapter,79570051,, +8cea1d25-d8c4-4fa2-9995-f6b1928d9dc1,HBCI Deutsche Bank Miltenberg,DEUTDEFF796,,hbci-deutsche-bank-adapter,79570051,, +cec09a96-bbe5-4592-bd3a-735eb67fc720,HBCI Deutsche Bank Magdeburg,DEUTDE8MXXX,,hbci-deutsche-bank-adapter,81070000,, +d360efba-aa15-40b1-8c51-d629497f434c,HBCI Deutsche Bank Burg Magdebg,DEUTDE8M814,,hbci-deutsche-bank-adapter,81070000,, +5853525e-bbbb-4cd4-8acb-b2634295affb,HBCI Deutsche Bank Genthin,DEUTDE8M812,,hbci-deutsche-bank-adapter,81070000,, +e1abf047-747b-46f6-8483-7af54827f6e4,HBCI Deutsche Bank Halberstadt,DEUTDE8M816,,hbci-deutsche-bank-adapter,81070000,, +74b99c9a-cf16-4549-982f-ff87b45e644d,HBCI Deutsche Bank Schönebeck,DEUTDE8M820,,hbci-deutsche-bank-adapter,81070000,, +1eee1a27-25ae-4216-a750-306bf08103a7,HBCI Deutsche Bank Oschersleben,DEUTDE8M818,,hbci-deutsche-bank-adapter,81070000,, +07242dd6-5fe4-4caa-ab9a-86cd549fe95e,HBCI Deutsche Bank Staßfurt,DEUTDE8M821,,hbci-deutsche-bank-adapter,81070000,, +230e4603-49aa-4247-9feb-a633d9abef32,HBCI Deutsche Bank Stendal,DEUTDE8M822,,hbci-deutsche-bank-adapter,81070000,, +66d8fa89-6776-46d5-af13-fe367e45bc0d,HBCI Deutsche Bank Wernigerode,DEUTDE8M823,,hbci-deutsche-bank-adapter,81070000,, +01c83b8e-6a4e-4662-afd8-aabc35c985e4,HBCI Deutsche Bank Blankenburg,DEUTDE8M815,,hbci-deutsche-bank-adapter,81070000,, +3a1c644a-4120-4601-b519-69d3f507db80,HBCI Deutsche Bank Haldensleben,DEUTDE8M817,,hbci-deutsche-bank-adapter,81070000,, +b8528f66-7871-42ba-a704-8690c0ed82b0,HBCI Deutsche Bank Salzwedel,DEUTDE8M819,,hbci-deutsche-bank-adapter,81070000,, +39278dbb-474d-4c62-af37-8fa345ae8a8e,HBCI Deutsche Bank Gardelegen,DEUTDE8M811,,hbci-deutsche-bank-adapter,81070000,, +4e9b45ae-f84b-4475-8c82-03b90ecb335e,HBCI Deutsche Bank Zerbst,DEUTDE8M825,,hbci-deutsche-bank-adapter,81070000,, +71614591-58af-4a5b-9c7f-e71f46d1d2c2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBMAG,,hbci-deutsche-bank-adapter,81070024,, +4026eed5-f7f2-48c8-ae5d-77fa4ec2c055,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB815,,hbci-deutsche-bank-adapter,81070024,, +c8bbe8ac-5546-40f8-a20e-e1686778693a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB814,,hbci-deutsche-bank-adapter,81070024,, +54083c44-6d37-4be3-85a4-05e6fb4c526c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB811,,hbci-deutsche-bank-adapter,81070024,, +a3bf808e-4695-44ed-b682-1f4fc96cdaa8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB812,,hbci-deutsche-bank-adapter,81070024,, +5b03a6c8-0820-4a05-8eca-aa6aa91c507b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB816,,hbci-deutsche-bank-adapter,81070024,, +c4f43439-bcb9-494f-8502-9017470ca7d2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB817,,hbci-deutsche-bank-adapter,81070024,, +54a245fd-91d7-47a1-945b-8b79b02c94be,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB818,,hbci-deutsche-bank-adapter,81070024,, +641499a8-6128-4d69-ac52-c5961b1060c6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB819,,hbci-deutsche-bank-adapter,81070024,, +05013a8b-7bd1-4dc2-8297-79e04d036615,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB801,,hbci-deutsche-bank-adapter,81070024,, +3162d546-8bd1-447e-9f72-77b07b608e3b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB802,,hbci-deutsche-bank-adapter,81070024,, +46d29255-3589-4579-a7b7-1bc20c8edb90,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB803,,hbci-deutsche-bank-adapter,81070024,, +b6a036fc-aaf3-42d1-9adf-b88c5d666815,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB804,,hbci-deutsche-bank-adapter,81070024,, +f2cef375-b4d7-428d-9aac-50bd9aa274bf,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB806,,hbci-deutsche-bank-adapter,81070024,, +ac961d8f-b0eb-4edb-8025-22f7ba5e8b60,HBCI Deutsche Bank Erfurt,DEUTDE8EXXX,,hbci-deutsche-bank-adapter,82070000,, +7c63ce62-c031-4a20-9af1-7f890cdd3a13,HBCI Deutsche Bank Apolda,DEUTDE8E828,,hbci-deutsche-bank-adapter,82070000,, +ee2c9a7e-9229-4168-a613-23c7d88406c0,HBCI Deutsche Bank Bad Langenslz,DEUTDE8E829,,hbci-deutsche-bank-adapter,82070000,, +565f8192-2635-4432-b18d-37dc03ddbf57,HBCI Deutsche Bank Bad Salzungen,DEUTDE8E842,,hbci-deutsche-bank-adapter,82070000,, +e90a58c1-c262-44c2-8b91-2ec8a13b7832,HBCI Deutsche Bank Eisenach,DEUTDE8E843,,hbci-deutsche-bank-adapter,82070000,, +7cdb04df-d0c6-44bb-931a-101866a8157b,HBCI Deutsche Bank Eisenberg,DEUTDE8E832,,hbci-deutsche-bank-adapter,82070000,, +8dcf8545-a8f3-458e-8c31-50520878cb70,HBCI Deutsche Bank Gera,DEUTDE8E830,,hbci-deutsche-bank-adapter,82070000,, +c4434286-2062-4b69-819c-941137dfc6cd,HBCI Deutsche Bank Gotha,DEUTDE8E827,,hbci-deutsche-bank-adapter,82070000,, +8921f813-cec2-4b6a-9dc3-0dd307798b17,HBCI Deutsche Bank Greiz,DEUTDE8E833,,hbci-deutsche-bank-adapter,82070000,, +4cb739ef-5101-4f86-bc07-ff03e097c85a,HBCI Deutsche Bank Ilmenau,DEUTDE8E844,,hbci-deutsche-bank-adapter,82070000,, +04b9e373-334a-42d9-b1cd-a45d36ad47bf,HBCI Deutsche Bank Jena,DEUTDE8E831,,hbci-deutsche-bank-adapter,82070000,, +4988ea94-6c31-4835-a7b7-ded3d5fe0207,HBCI Deutsche Bank Meiningen,DEUTDE8E845,,hbci-deutsche-bank-adapter,82070000,, +feef2d12-fc39-4f61-a466-958d12bf179d,HBCI Deutsche Bank Mühlhausen,DEUTDE8E825,,hbci-deutsche-bank-adapter,82070000,, +16d5d900-c0c9-4894-ab35-7fb56f0cd576,HBCI Deutsche Bank Nordhausen,DEUTDE8E824,,hbci-deutsche-bank-adapter,82070000,, +101752b3-1b0c-43ea-b533-106686f8a64b,HBCI Deutsche Bank Pößneck,DEUTDE8E835,,hbci-deutsche-bank-adapter,82070000,, +572a70ac-4984-4d49-9574-87d5081a8ca9,HBCI Deutsche Bank Rudolstadt,DEUTDE8E847,,hbci-deutsche-bank-adapter,82070000,, +342c086d-2720-485b-863d-e27245852076,HBCI Deutsche Bank Saalfeld,DEUTDE8E848,,hbci-deutsche-bank-adapter,82070000,, +7cddbf3b-08f0-4149-a7f5-e6c96d24e9f8,HBCI Deutsche Bank Schmalkalden,DEUTDE8E849,,hbci-deutsche-bank-adapter,82070000,, +38b6d85f-ccde-471d-adc1-ce67df841210,HBCI Deutsche Bank Sondershausen,DEUTDE8E822,,hbci-deutsche-bank-adapter,82070000,, +ec27a237-580a-4b45-9c5b-f4ef13c9aef6,HBCI Deutsche Bank Sonneberg Thür,DEUTDE8E850,,hbci-deutsche-bank-adapter,82070000,, +7b07ab40-4927-4079-ba47-3bfa54b9187c,HBCI Deutsche Bank Sömmerda,DEUTDE8E823,,hbci-deutsche-bank-adapter,82070000,, +448d54a2-cdbe-4899-a3b7-18454a491daa,HBCI Deutsche Bank Suhl,DEUTDE8E840,,hbci-deutsche-bank-adapter,82070000,, +240a2108-2517-4ed3-ab42-ac2c81e1a3ab,HBCI Deutsche Bank Weimar,DEUTDE8E820,,hbci-deutsche-bank-adapter,82070000,, +2648f577-f39f-46bc-b24f-a7fd634ddd97,HBCI Deutsche Bank Zeulenroda,DEUTDE8E836,,hbci-deutsche-bank-adapter,82070000,, +ff32419a-3ec3-4207-a6d8-84ebf2e2c68d,HBCI Deutsche Bank Arnstadt,DEUTDE8E841,,hbci-deutsche-bank-adapter,82070000,, +b0daef00-248a-4fd0-bcdc-4ffb32e05b66,HBCI Deutsche Bank Leinefelde,DEUTDE8E826,,hbci-deutsche-bank-adapter,82070000,, +69bda160-25e7-49e4-b5d2-619c93983050,HBCI Deutsche Bank Waltershausen,DEUTDE8E851,,hbci-deutsche-bank-adapter,82070000,, +c27031b3-c4cc-4822-a3a1-e2ea2db7c670,HBCI Deutsche Bank Ohrdruf,DEUTDE8E846,,hbci-deutsche-bank-adapter,82070000,, +d24f84b4-4518-4d35-87f4-1b4c102349ba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBERF,,hbci-deutsche-bank-adapter,82070024,, +bbb8463a-8c98-4ba8-8842-b9b807f32a4f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB828,,hbci-deutsche-bank-adapter,82070024,, +cf17df5f-a93d-4656-90de-5b9b1ce5053e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB841,,hbci-deutsche-bank-adapter,82070024,, +bb0774fb-4ad7-4779-95ca-c452969262a6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB829,,hbci-deutsche-bank-adapter,82070024,, +1738a306-4fd3-4779-bbb5-0dcc00c15c48,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB842,,hbci-deutsche-bank-adapter,82070024,, +c7c3d209-b833-4932-a311-a680a4164e1f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB843,,hbci-deutsche-bank-adapter,82070024,, +bfa0e5f1-6fb8-4956-8b2c-756465510b7a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB832,,hbci-deutsche-bank-adapter,82070024,, +a2040ca6-8713-4afd-be8d-d865a357abe6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB830,,hbci-deutsche-bank-adapter,82070024,, +d39373a0-055d-4a47-907c-f0c3cc48ad2b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB827,,hbci-deutsche-bank-adapter,82070024,, +116055a0-4832-41ab-85e1-9f399023a6c6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB833,,hbci-deutsche-bank-adapter,82070024,, +9dbb7346-d198-49a4-9a74-0a42dbcd37db,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB844,,hbci-deutsche-bank-adapter,82070024,, +41cb4ce9-6f27-4bde-acc4-2953be95731c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB831,,hbci-deutsche-bank-adapter,82070024,, +a083e824-99f0-4093-90a2-d7efbd8ca517,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB826,,hbci-deutsche-bank-adapter,82070024,, +f79c4f26-6ef9-406f-905e-6a73b4795e6d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB845,,hbci-deutsche-bank-adapter,82070024,, +7f7e9bc2-bcad-41c2-b502-973afe39ea45,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB825,,hbci-deutsche-bank-adapter,82070024,, +becb6747-9c39-44bf-b797-3950a07cae9c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB824,,hbci-deutsche-bank-adapter,82070024,, +ad12036b-ca8f-4ed8-8d51-69c5872c4fd1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB846,,hbci-deutsche-bank-adapter,82070024,, +e5f18a68-4092-4ae0-9b4b-71d2d54aed88,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB835,,hbci-deutsche-bank-adapter,82070024,, +1caf7e51-609a-4e5f-a922-7ad17a5acf9e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB847,,hbci-deutsche-bank-adapter,82070024,, +e3c7d31b-89d5-41c2-ace2-ab5919937a83,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB848,,hbci-deutsche-bank-adapter,82070024,, +554a38da-1fe5-4640-84a9-a034509d32b7,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB849,,hbci-deutsche-bank-adapter,82070024,, +60bd6e3f-aac9-4b80-8826-841a47b351d1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB823,,hbci-deutsche-bank-adapter,82070024,, +fe083e9b-9e39-4e14-aaef-024eb69e16e9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB822,,hbci-deutsche-bank-adapter,82070024,, +68094272-30cb-40db-8fa8-cbf8fe9dba67,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB850,,hbci-deutsche-bank-adapter,82070024,, +5663ed2d-e294-4e8e-a18d-0d9cc77543ff,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB840,,hbci-deutsche-bank-adapter,82070024,, +ccbaa791-296f-4251-9856-c040253564c1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB851,,hbci-deutsche-bank-adapter,82070024,, +03afe66f-b441-4c35-8d17-7b75ea7f4e60,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB820,,hbci-deutsche-bank-adapter,82070024,, +52e6389d-3834-40a9-93b3-2b1ec3f37142,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB821,,hbci-deutsche-bank-adapter,82070024,, +efd72af1-48cf-4c73-93aa-6dd6751e545f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB836,,hbci-deutsche-bank-adapter,82070024,, +868a8edf-97a5-4095-9239-d30ae47e90d4,HBCI Deutsche Bank Leipzig,DEUTDE8LXXX,,hbci-deutsche-bank-adapter,86070000,, +acb3f19c-fff9-44d1-9b5b-00f1f9f377a6,HBCI Deutsche Bank Altenburg,DEUTDE8L861,,hbci-deutsche-bank-adapter,86070000,, +53b5330b-6ca4-483e-aae4-c75ed6e5dd65,HBCI Deutsche Bank Aschersleben,DEUTDE8L862,,hbci-deutsche-bank-adapter,86070000,, +20f86445-cc16-47c0-967f-1cbdc1dc9c2a,HBCI Deutsche Bank Bernburg,DEUTDE8L863,,hbci-deutsche-bank-adapter,86070000,, +685f5289-462c-4c8d-b7d0-d66e94019c04,HBCI Deutsche Bank Bitterfeld,DEUTDE8L864,,hbci-deutsche-bank-adapter,86070000,, +9137207e-e7bf-490b-9e50-47cca025a41f,HBCI Deutsche Bank Borna,DEUTDE8L865,,hbci-deutsche-bank-adapter,86070000,, +22083385-0d37-46d8-9143-7c10aaaa0608,HBCI Deutsche Bank Dessau,DEUTDE8L867,,hbci-deutsche-bank-adapter,86070000,, +901c7517-24a2-455f-a797-527f4848ac48,HBCI Deutsche Bank Grimma,DEUTDE8L871,,hbci-deutsche-bank-adapter,86070000,, +deabbb1c-ec31-4876-86aa-9cf69e98e850,HBCI Deutsche Bank Halle,DEUTDE8L860,,hbci-deutsche-bank-adapter,86070000,, +3317861c-f1f5-43e6-8615-096ffe3c6132,HBCI Deutsche Bank Köthen,DEUTDE8L873,,hbci-deutsche-bank-adapter,86070000,, +30273c1a-0e2d-48e4-bc76-a0a8ba6ddba9,HBCI Deutsche Bank Merseburg,DEUTDE8L875,,hbci-deutsche-bank-adapter,86070000,, +33713611-50b3-439c-acdc-9647fef367d5,HBCI Deutsche Bank Naumburg,DEUTDE8L877,,hbci-deutsche-bank-adapter,86070000,, +eab37ab0-83aa-4c95-9cd9-c584345cf95a,HBCI Deutsche Bank Sangerhausen,DEUTDE8L880,,hbci-deutsche-bank-adapter,86070000,, +037e76e8-ea76-471d-8f36-9d2b884b816a,HBCI Deutsche Bank Torgau,DEUTDE8L883,,hbci-deutsche-bank-adapter,86070000,, +3cf7044b-a58b-4c6b-b799-eb221bd6b221,HBCI Deutsche Bank Weißenfels,DEUTDE8L884,,hbci-deutsche-bank-adapter,86070000,, +dc063bb0-7a18-4f81-8f27-d28ffd654c35,HBCI Deutsche Bank Wittenbg Luth,DEUTDE8L885,,hbci-deutsche-bank-adapter,86070000,, +3a52e85a-30ff-4994-9eb0-a32914000ac2,HBCI Deutsche Bank Wurzen,DEUTDE8L887,,hbci-deutsche-bank-adapter,86070000,, +0335e49a-734b-4e51-a5de-1a4bf4f4f07e,HBCI Deutsche Bank Zeitz,DEUTDE8L888,,hbci-deutsche-bank-adapter,86070000,, +74592863-d78d-47dc-85c8-dc177b1979db,HBCI Deutsche Bank Delitzsch,DEUTDE8L866,,hbci-deutsche-bank-adapter,86070000,, +3f12135a-d985-4261-a5a7-a39d88b1472e,HBCI Deutsche Bank Döbeln,DEUTDE8L868,,hbci-deutsche-bank-adapter,86070000,, +99f890b5-8703-4bc9-ba94-303c319cbe9e,HBCI Deutsche Bank Eilenburg,DEUTDE8L869,,hbci-deutsche-bank-adapter,86070000,, +7b40db88-8636-4906-acce-75d0d2ba3c61,HBCI Deutsche Bank Hettstedt,DEUTDE8L872,,hbci-deutsche-bank-adapter,86070000,, +25e5e544-f2c9-4798-8e08-cd515c5ab7fc,HBCI Deutsche Bank Eisleben,DEUTDE8L870,,hbci-deutsche-bank-adapter,86070000,, +a2926ef0-ef08-401e-9fc8-ca17bf5480f4,HBCI Deutsche Bank Markkleeberg,DEUTDE8L874,,hbci-deutsche-bank-adapter,86070000,, +eb9e5dc8-f0e3-49a4-9b3c-770e3190a962,HBCI Deutsche Bank Oschatz,DEUTDE8L878,,hbci-deutsche-bank-adapter,86070000,, +54bf5cb7-3ee1-4e74-a4f6-d92f07de3793,HBCI Deutsche Bank Quedlinburg,DEUTDE8L879,,hbci-deutsche-bank-adapter,86070000,, +1c971062-fc1a-4baf-a1d3-018da9c66bec,HBCI Deutsche Bank Schkeuditz,DEUTDE8L881,,hbci-deutsche-bank-adapter,86070000,, +9d0252bb-dafe-4098-acfb-749fe80430b3,HBCI Deutsche Bank Taucha,DEUTDE8L882,,hbci-deutsche-bank-adapter,86070000,, +65c1e507-4f85-476d-ac65-0ce314079288,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBLEG,,hbci-deutsche-bank-adapter,86070024,, +d702fe5b-3dd4-439b-9d86-c18839bccc13,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB861,,hbci-deutsche-bank-adapter,86070024,, +8c351774-6186-4218-9108-ee36a003c4fb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB862,,hbci-deutsche-bank-adapter,86070024,, +a19218fd-50c6-4f8b-b697-98132c6efece,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB863,,hbci-deutsche-bank-adapter,86070024,, +d0fc7573-ef54-44c9-aa59-6b250b7514cd,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB864,,hbci-deutsche-bank-adapter,86070024,, +4083266b-eae3-454f-be06-8d5a782d71bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB865,,hbci-deutsche-bank-adapter,86070024,, +32a6b957-4a4d-4df0-9aa3-56ed2193d9b5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB866,,hbci-deutsche-bank-adapter,86070024,, +876f7c2b-f731-4655-8a9b-9db73a265f2b,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB867,,hbci-deutsche-bank-adapter,86070024,, +f469eca8-e2b4-44e5-a213-a5c8bdd4a66c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB868,,hbci-deutsche-bank-adapter,86070024,, +e9cf2bb4-94a6-4eb9-bca1-e0d286250cbb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB869,,hbci-deutsche-bank-adapter,86070024,, +fbb0bfa6-a701-4dc3-afa3-fd5b5e5df96e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB974,,hbci-deutsche-bank-adapter,86070024,, +4b47ce1c-8388-4230-8fcf-1536ee3c8b9f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB860,,hbci-deutsche-bank-adapter,86070024,, +f4522224-77e7-405d-99a1-b800bbee1494,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB975,,hbci-deutsche-bank-adapter,86070024,, +e14b63ea-b441-47aa-ac4a-9e659962d1d3,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB976,,hbci-deutsche-bank-adapter,86070024,, +cde4fe06-c5b0-4ae1-97fb-40aa12803876,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB973,,hbci-deutsche-bank-adapter,86070024,, +6e3835ca-dc00-4155-862e-51e85ef83222,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB988,,hbci-deutsche-bank-adapter,86070024,, +07d68b5b-112b-436c-b017-ed3705b27690,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB977,,hbci-deutsche-bank-adapter,86070024,, +bda56792-be83-4679-88fc-bad753a79e08,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB978,,hbci-deutsche-bank-adapter,86070024,, +46e9f75c-ab91-46f5-bd3c-6dbe976c2c68,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB980,,hbci-deutsche-bank-adapter,86070024,, +ff0d0861-3660-4049-837b-f4ffe9511e32,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB981,,hbci-deutsche-bank-adapter,86070024,, +a20006cc-6c5c-4937-bc9f-ad9843b3eb75,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB982,,hbci-deutsche-bank-adapter,86070024,, +af9e9548-4138-4853-bf36-af935c1b9ba0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB983,,hbci-deutsche-bank-adapter,86070024,, +8a684465-4e23-411c-b4f2-4f7cbbf0154f,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB984,,hbci-deutsche-bank-adapter,86070024,, +525a3e48-d533-4eb2-b3b0-df94f1b14fa2,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB985,,hbci-deutsche-bank-adapter,86070024,, +29fe4d37-2e87-46c7-aa1e-fb5495e52406,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB986,,hbci-deutsche-bank-adapter,86070024,, +faf03bba-19f3-4e74-bc33-cef3f6621a70,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB987,,hbci-deutsche-bank-adapter,86070024,, +5c51f3df-809b-41c7-bc0a-0ba4954f338d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB990,,hbci-deutsche-bank-adapter,86070024,, +6a48abcb-ae38-497f-8321-c09e951799f6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB991,,hbci-deutsche-bank-adapter,86070024,, +23c17f28-e352-4ddd-8526-eb7ba1c860f1,HBCI Deutsche Bank Chemnitz,DEUTDE8CXXX,,hbci-deutsche-bank-adapter,87070000,, +bb6391f7-6286-4bc2-9408-9213df799791,HBCI Deutsche Bank Annabg-Buchhz,DEUTDE8C871,,hbci-deutsche-bank-adapter,87070000,, +646e809b-b024-4374-99bd-2be08a00347e,HBCI Deutsche Bank Bautzen,DEUTDE8C874,,hbci-deutsche-bank-adapter,87070000,, +420e2c4b-b216-4032-9396-cd7ce0323da5,HBCI Deutsche Bank Crimmitschau,DEUTDE8C877,,hbci-deutsche-bank-adapter,87070000,, +7703e028-74cc-4e4c-b56a-5bf1abfe9ef6,HBCI Deutsche Bank Dresden,DEUTDE8C870,,hbci-deutsche-bank-adapter,87070000,, +c92f9ca7-5483-4f54-b12b-390667780ab5,HBCI Deutsche Bank Freibg Sachs,DEUTDE8C879,,hbci-deutsche-bank-adapter,87070000,, +66d11585-4aed-4e98-a15a-e2d597ba0bac,HBCI Deutsche Bank Freital,DEUTDE8C880,,hbci-deutsche-bank-adapter,87070000,, +d1f52248-1019-41ab-bb5f-43b6a67922a0,HBCI Deutsche Bank Glauchau,DEUTDE8C881,,hbci-deutsche-bank-adapter,87070000,, +5ea978b7-86c3-4887-8c17-6e97c0ab3a25,HBCI Deutsche Bank Görlitz,DEUTDE8C882,,hbci-deutsche-bank-adapter,87070000,, +4cb06a16-c925-44ca-abd3-dd9fbd6bebdc,HBCI Deutsche Bank Großenhain,DEUTDE8C883,,hbci-deutsche-bank-adapter,87070000,, +e55964a1-e44e-4a62-9c85-07cbcdcd1dda,HBCI Deutsche Bank Hohenst-Ernst,DEUTDE8C885,,hbci-deutsche-bank-adapter,87070000,, +a4fa245c-faea-4da0-a118-538fde11be1a,HBCI Deutsche Bank Hoyerswerda,DEUTDE8C886,,hbci-deutsche-bank-adapter,87070000,, +c7c3147a-bf1c-4105-8337-a498f6dfdf1d,HBCI Deutsche Bank Kamenz,DEUTDE8C887,,hbci-deutsche-bank-adapter,87070000,, +37b57ec0-c9dc-4051-9273-dc3534e4a052,HBCI Deutsche Bank Klingenthal,DEUTDE8C888,,hbci-deutsche-bank-adapter,87070000,, +4d8e774a-c84e-408c-93d0-2f34956a4ed6,HBCI Deutsche Bank Limbach-Obrfr,DEUTDE8C890,,hbci-deutsche-bank-adapter,87070000,, +9909abef-296a-4f74-9de8-0267923f4676,HBCI Deutsche Bank Marienberg,DEUTDE8C892,,hbci-deutsche-bank-adapter,87070000,, +88e63dab-f323-4adb-a865-728e1cf1b4c4,HBCI Deutsche Bank Meißen,DEUTDE8C894,,hbci-deutsche-bank-adapter,87070000,, +1ebf7d65-df8a-4a8b-bd92-398de5a54e5e,HBCI Deutsche Bank Mittweida,DEUTDE8C895,,hbci-deutsche-bank-adapter,87070000,, +a212b22a-bb09-4dce-ba6d-bb5781a779cd,HBCI Deutsche Bank Oberwiesenth,DEUTDE8C897,,hbci-deutsche-bank-adapter,87070000,, +2df785aa-a928-44ab-9e33-c5494669c48a,HBCI Deutsche Bank Pirna,DEUTDE8C898,,hbci-deutsche-bank-adapter,87070000,, +38452848-6ef0-4e9e-bafb-6169d406c5d9,HBCI Deutsche Bank Plauen,DEUTDE8C899,,hbci-deutsche-bank-adapter,87070000,, +ddebb42e-46b1-4279-a56c-b748cd279b61,HBCI Deutsche Bank Radebeul,DEUTDE8C901,,hbci-deutsche-bank-adapter,87070000,, +91eb5f2a-2cde-4995-beb5-4bced51105af,HBCI Deutsche Bank Reichenbach V,DEUTDE8C902,,hbci-deutsche-bank-adapter,87070000,, +f55e26ca-51a0-4e32-b677-74b6ca9c4877,HBCI Deutsche Bank Riesa,DEUTDE8C903,,hbci-deutsche-bank-adapter,87070000,, +a3bba804-4f65-40bb-917a-dc96fec2b822,HBCI Deutsche Bank Schwarzenberg,DEUTDE8C906,,hbci-deutsche-bank-adapter,87070000,, +11c96959-baec-49d3-8a07-5e99d05ffd31,HBCI Deutsche Bank Stollbg,DEUTDE8C907,,hbci-deutsche-bank-adapter,87070000,, +100fd98c-4294-48e1-b6ae-96263ee478f6,HBCI Deutsche Bank Zittau,DEUTDE8C909,,hbci-deutsche-bank-adapter,87070000,, +2174816a-e2fb-4f9d-8a32-e0b29987fd96,HBCI Deutsche Bank Zwickau,DEUTDE8C910,,hbci-deutsche-bank-adapter,87070000,, +fcae966a-ee8f-4ae7-ab20-5908f0572026,HBCI Deutsche Bank Aue Sachs,DEUTDE8C872,,hbci-deutsche-bank-adapter,87070000,, +1e8f551b-9f3e-4b0d-a3f7-d6cd161b4059,HBCI Deutsche Bank Auerbach,DEUTDE8C873,,hbci-deutsche-bank-adapter,87070000,, +40af6b2c-257c-48e3-835a-e895bb146d7a,HBCI Deutsche Bank Burgstädt,DEUTDE8C875,,hbci-deutsche-bank-adapter,87070000,, +89cf3127-d34f-4743-a8c4-ada1e62059a2,HBCI Deutsche Bank Coswig,DEUTDE8C876,,hbci-deutsche-bank-adapter,87070000,, +c2a87f52-c5f1-4b3d-bf0a-b350ff0825cf,HBCI Deutsche Bank Heidenau,DEUTDE8C884,,hbci-deutsche-bank-adapter,87070000,, +df7d8428-d585-406a-981b-9d8ae2933425,HBCI Deutsche Bank Lichtenstein,DEUTDE8C889,,hbci-deutsche-bank-adapter,87070000,, +2f78e5b2-8a1c-4588-a03c-4785bf12b879,HBCI Deutsche Bank Löbau,DEUTDE8C891,,hbci-deutsche-bank-adapter,87070000,, +3907ca0e-8d84-4199-9f68-8553b293e7a3,HBCI Deutsche Bank Meerane,DEUTDE8C893,,hbci-deutsche-bank-adapter,87070000,, +62d2db02-91b9-4625-afbd-926f484a77dc,HBCI Deutsche Bank Niesky,DEUTDE8C896,,hbci-deutsche-bank-adapter,87070000,, +c11038d7-eaf7-4077-8e3a-4b6057228f69,HBCI Deutsche Bank Radeberg,DEUTDE8C900,,hbci-deutsche-bank-adapter,87070000,, +95ed31ae-d15a-4f6f-a2f3-e724bb25b713,HBCI Deutsche Bank Schneeberg,DEUTDE8C905,,hbci-deutsche-bank-adapter,87070000,, +cda45ea6-6f09-42bb-9fea-76f8e75afa98,HBCI Deutsche Bank Werdau,DEUTDE8C908,,hbci-deutsche-bank-adapter,87070000,, +ed677711-10c7-4e3d-933c-3eef7227022b,HBCI Deutsche Bank Frankenberg,DEUTDE8C878,,hbci-deutsche-bank-adapter,87070000,, +8cc2d347-9058-4a6a-80ca-bfe9d1d4107c,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDBCHE,,hbci-deutsche-bank-adapter,87070024,, +1f5dac5c-484e-4f52-8b00-5fcb75274d11,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB871,,hbci-deutsche-bank-adapter,87070024,, +45881b70-be63-4433-b0b5-453de00dd471,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB872,,hbci-deutsche-bank-adapter,87070024,, +94e69a8b-7f30-47d2-ab68-2ee11d6cb1ad,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB873,,hbci-deutsche-bank-adapter,87070024,, +15b600c4-c218-4dcc-a31c-db45c0d1d96e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB874,,hbci-deutsche-bank-adapter,87070024,, +18d16475-14da-4e34-b188-31aea43d47c1,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB875,,hbci-deutsche-bank-adapter,87070024,, +3c6b656a-b219-46ba-af17-fc16be2a2772,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB876,,hbci-deutsche-bank-adapter,87070024,, +153af853-e594-454c-9beb-6ca952d979f5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB877,,hbci-deutsche-bank-adapter,87070024,, +fd4191f0-e9ab-4c9b-8227-eab2d9cb2c42,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB870,,hbci-deutsche-bank-adapter,87070024,, +a03c052c-0208-40f0-b5f2-25a1b2f75081,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB878,,hbci-deutsche-bank-adapter,87070024,, +6a6758da-7d9c-4ff8-80c6-16ab76108fba,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB879,,hbci-deutsche-bank-adapter,87070024,, +93556e3b-77f9-4e63-a563-8a27d0024b5d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB880,,hbci-deutsche-bank-adapter,87070024,, +c6e406b7-7df7-4924-8454-b0fa442fdc2d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB881,,hbci-deutsche-bank-adapter,87070024,, +46f0ea8e-3083-4c77-b5c7-c7c3b975c9a0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB882,,hbci-deutsche-bank-adapter,87070024,, +1f963178-7408-40eb-a5a9-b87fa1a6fd20,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB883,,hbci-deutsche-bank-adapter,87070024,, +5f85e243-58f4-4940-940b-feb229cc7321,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB884,,hbci-deutsche-bank-adapter,87070024,, +e2086a57-f5dd-47a1-bc80-6aa7306d3969,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB885,,hbci-deutsche-bank-adapter,87070024,, +1bee0e89-0b77-4f85-adff-a350658c21f0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB886,,hbci-deutsche-bank-adapter,87070024,, +dcfa50ee-5bf8-4ea0-b910-4795905b9a63,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB887,,hbci-deutsche-bank-adapter,87070024,, +ae279ede-ee7b-4671-89c6-58ac678a5900,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB888,,hbci-deutsche-bank-adapter,87070024,, +e7640c43-171d-4a74-9eaa-5b42cae21adc,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB897,,hbci-deutsche-bank-adapter,87070024,, +bcb2aff6-c971-4155-9a04-7a94eae9eb58,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB889,,hbci-deutsche-bank-adapter,87070024,, +f6173470-8749-459f-9625-675120b742bb,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB890,,hbci-deutsche-bank-adapter,87070024,, +6f89c196-5884-4e01-80e2-0e1a9b6253b0,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB891,,hbci-deutsche-bank-adapter,87070024,, +7469b45f-acf4-42fb-9da6-dcf7855dbb3d,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB892,,hbci-deutsche-bank-adapter,87070024,, +5eac11dd-acd9-4ed3-bea3-75e7faacd436,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB893,,hbci-deutsche-bank-adapter,87070024,, +03e452d2-9cec-457f-8124-32edd73e331e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB894,,hbci-deutsche-bank-adapter,87070024,, +f43680f2-f9d3-4983-a3ff-65748f7db949,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB895,,hbci-deutsche-bank-adapter,87070024,, +0db185d7-7ab4-4279-bc85-2a459a5388b5,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB896,,hbci-deutsche-bank-adapter,87070024,, +7c5f300f-113f-48dd-8e03-0bbf92d5ae9a,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB898,,hbci-deutsche-bank-adapter,87070024,, +fff9af28-2957-4460-a3cb-c0a34b199846,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB899,,hbci-deutsche-bank-adapter,87070024,, +89295c63-e2c4-43c8-ab11-6e3684bdeb5e,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB900,,hbci-deutsche-bank-adapter,87070024,, +d2b4c0ef-c0da-4a6a-863e-8ebbc5cf5dd9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB901,,hbci-deutsche-bank-adapter,87070024,, +0ce76f0d-c208-4126-b41b-08eea067d2c6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB902,,hbci-deutsche-bank-adapter,87070024,, +90e14a53-d696-41c2-8421-08a5528e5046,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB903,,hbci-deutsche-bank-adapter,87070024,, +0608160f-3cd8-4fee-8bc6-ff627aee95d9,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB905,,hbci-deutsche-bank-adapter,87070024,, +bfe4b8d2-f81c-4d8d-9d95-abcf9dd05707,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB906,,hbci-deutsche-bank-adapter,87070024,, +ee21a3f9-2952-46ff-ac48-f513aefb3484,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB907,,hbci-deutsche-bank-adapter,87070024,, +90b3081c-2772-4cbc-a813-a2ecd00668e8,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB908,,hbci-deutsche-bank-adapter,87070024,, +1a3a63f8-b42d-4dd5-a3b7-ddcbca1c0523,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB909,,hbci-deutsche-bank-adapter,87070024,, +e50709fc-2c30-4e0c-ba03-2167d50f78a6,HBCI DB PFK (Deutsche Bank PGK),DEUTDEDB910,,hbci-deutsche-bank-adapter,87070024,, +a64ce92a-ed4e-44c5-a253-9da438bad31a,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,10010010,, +55dc469a-eab7-4e1b-86e8-452089dedbe7,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,20010020,, +100663f5-790d-4356-b1e8-a39f89498894,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,20110022,, +65a03b43-5906-4095-806c-d375d079104a,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,25010030,, +cebe438a-24b6-4d7a-818c-f939545d7d2f,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,36010043,, +9866770e-2aeb-4664-86ee-3569dd073696,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,37010050,, +6202f5b9-489d-4564-b20f-fc7f67043a5d,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,37011000,, +7761e434-0178-492c-b78e-98cf224047a6,HBCI Postbank Ndl DB PFK,PBNKDEFF380,,hbci-deutsche-bank-adapter,38010053,, +1d8dff90-37a9-4465-b3cc-5f220b11e2f0,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,44010046,, +651033fe-d403-46a1-937d-e04242345bf5,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,50010060,, +99f6f3d3-3548-467d-ad5e-5fa6df61b3d2,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,54510067,, +35a8d570-7108-4e01-a70c-d14431e9f261,HBCI ZVCFK11 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010011,, +2368a312-4a16-4c0d-bd96-490195494acb,HBCI ZVCFK12 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010012,, +9367f2d6-785d-4efa-8423-ef8945d1da70,HBCI ZVCFK13 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010013,, +8592b5d4-6f26-4981-8ab2-7450938cbca7,HBCI ZVCFK14 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010014,, +70aa7e9e-8abf-4830-ba05-63a0941edc86,HBCI ZVCFK15 Postbank Ndl DB PFK,PBNKDEFF015,,hbci-deutsche-bank-adapter,59010015,, +918e4e85-40ef-4a50-ae92-673aa03bb9e1,HBCI ZVCFK16 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010016,, +2fa14396-bdff-41fb-a247-d0916f86e069,HBCI ZVCFK17 Postbank Ndl DB PFK,PBNKDEFF017,,hbci-deutsche-bank-adapter,59010017,, +f0467c5f-da4d-46cf-b771-2a322e53d9f4,HBCI ZVCFK18 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010018,, +b318cba2-2915-4a10-ad65-2370ba21795b,HBCI ZVCFK19 Postbank Ndl DB PFK,PBNKDEFF019,,hbci-deutsche-bank-adapter,59010019,, +eae59d59-fd47-4c57-8eda-a740cc7cd173,HBCI ZVCFK21 Postbank Ndl DB PFK,PBNKDEFF021,,hbci-deutsche-bank-adapter,59010021,, +0a94dfc3-aea1-4ffd-9b4d-c4adb6f65803,HBCI ZVCFK22 Postbank Ndl DB PFK,PBNKDEFF022,,hbci-deutsche-bank-adapter,59010022,, +d5d6c330-1083-4f43-8572-08b9165e0d1e,HBCI ZVCFK23 Postbank Ndl DB PFK,PBNKDEFF023,,hbci-deutsche-bank-adapter,59010023,, +3e1fefb5-989d-4af5-8d03-511f26889683,HBCI ZVCFK24 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010024,, +e06b6a72-65f0-4a9a-bb10-66065b6b80a3,HBCI ZVCFK25 Postbank Ndl DB PFK,PBNKDEFF025,,hbci-deutsche-bank-adapter,59010025,, +8dd32925-df89-4ec1-8ccb-82371ef5259c,HBCI ZVCFK26 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010026,, +147b69ac-110a-4923-a8d9-57cc50fab62a,HBCI ZVCFK27 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010027,, +265abd8a-28e9-4f88-838e-96bf837d32ab,HBCI ZVCFK28 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010028,, +855f6d91-3318-439c-bb67-82231f3cb2cc,HBCI ZVCFK29 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010029,, +7f7bb65d-0ed7-4aa9-ade5-1236d424a639,HBCI ZVCFK31 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010031,, +e0d7b67b-080e-4211-b30c-e26412466c41,HBCI ZVCFK32 Postbank Ndl DB PFK,PBNKDEFF032,,hbci-deutsche-bank-adapter,59010032,, +384ac958-fbb8-46ad-9bf5-177e2468451a,HBCI ZVCFK33 Postbank Ndl DB PFK,PBNKDEFF033,,hbci-deutsche-bank-adapter,59010033,, +01a11077-ba22-4bfa-8777-348311286dc0,HBCI ZVCFK34 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010034,, +8637a611-056c-4271-8255-ca71bc5632b5,HBCI ZVCFK35 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010035,, +e1ef415e-68cf-48e1-a1ab-469a54f1a168,HBCI ZVCFK36 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010036,, +1c9d8480-5236-4a76-b23b-76a1e3ec5598,HBCI ZVCFK37 Postbank Ndl DB PFK,PBNKDEFF037,,hbci-deutsche-bank-adapter,59010037,, +778e13d8-b386-4b62-bbdf-0b7d65d5ca20,HBCI ZVCFK38 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010038,, +50f5ac7f-9f7d-49ed-a538-28ad7a7d0294,HBCI ZVCFK39 Postbank Ndl DB PFK,PBNKDEFF039,,hbci-deutsche-bank-adapter,59010039,, +3f625968-69e8-4544-9d39-27b17b2cfcba,HBCI ZVCFK40 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010040,, +41b6a229-f18e-427a-9989-780d6509a726,HBCI ZVCFK41 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010041,, +2eec42b2-c4ea-41a4-b335-dc23afdc4d29,HBCI ZVCFK42 Postbank Ndl DB PFK,PBNKDEFF042,,hbci-deutsche-bank-adapter,59010042,, +e8d93e45-655d-42e8-86d9-ba05e3e5cc16,HBCI ZVCFK44 Postbank Ndl DB PFK,PBNKDEFF044,,hbci-deutsche-bank-adapter,59010044,, +d8c5ca8d-1fe9-44d9-9c2e-8315f313a89f,HBCI ZVCFK45 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010045,, +5ad5ef23-2834-4bee-902c-c817eb2c3738,HBCI ZVCFK47 Postbank Ndl DB PFK,PBNKDEFF047,,hbci-deutsche-bank-adapter,59010047,, +572bf744-83a0-4965-a743-b489080161fc,HBCI ZVCFK48 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010048,, +ad03e83f-9f44-48b3-9ba3-60a94b0211f6,HBCI ZVCFK49 Postbank Ndl DB PFK,PBNKDEFF049,,hbci-deutsche-bank-adapter,59010049,, +f770de07-7682-43b8-8868-3ba491dcff22,HBCI ZVCFK51 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010051,, +d0727e53-9212-43eb-ae0a-6bc4a6b3014d,HBCI ZVCFK52 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010052,, +f0b73e14-ad95-4d48-9a61-1cfa871731e8,HBCI ZVCFK53 Postbank Ndl DB PFK,PBNKDEFF053,,hbci-deutsche-bank-adapter,59010053,, +9d5c8cc7-22a2-4b49-be54-888b77c87d74,HBCI ZVCFK54 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010054,, +a3cd6abb-21dd-4b5e-b768-5fdb8acae90c,HBCI ZVCFK55 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010055,, +21162693-e857-48e3-9caa-4cb55c046eb9,HBCI ZVCFK56 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010056,, +0074fe46-8631-4249-9f16-536dd47c168c,HBCI ZVCFK57 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010057,, +e5f33fef-990d-4d21-bc9f-7d581af05fba,HBCI ZVCFK58 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010058,, +f33d0fd3-1f32-46c0-bc5b-2f931be6cb8f,HBCI ZVCFK59 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010059,, +b108ffbd-fd19-469c-9955-1aecfb954972,HBCI ZVCFK61 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010061,, +de6f7551-6306-4785-bab6-45f70bf9723e,HBCI ZVCFK62 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010062,, +7443c2bf-4ab5-4753-b5d4-defe18e08425,HBCI ZVCFK63 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010063,, +ca8eb283-4184-4d02-809b-116bb62913dc,HBCI ZVCFK64 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010064,, +9b4b463e-3741-4e74-89ac-076f4a677d69,HBCI ZVCFK65 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010065,, +48ee3fbb-dbc3-4178-9f39-1ea1c934faf3,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010066,, +7c9f7806-71a5-475a-acf7-7954e0806deb,HBCI ZVCFK68 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010068,, +60dce502-b06a-4683-ba1a-b0eaa544c1b8,HBCI ZVCFK69 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010069,, +a14f932c-1d13-4347-b9e3-a7b1e8a5cbcc,HBCI ZVCFK71 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010071,, +3abd3dd9-9958-48bb-ac22-d7ea571d3ece,HBCI ZVCFK72 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010072,, +07571a4d-f99a-488a-83e9-adabcb7dc720,HBCI ZVCFK73 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010073,, +feb96bcc-d297-46bf-a10a-f289461e74ad,HBCI ZVCFK74 Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,59010074,, +fc59fee2-89f0-4ef5-bde1-2d3fd125f5ae,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,60010070,, +03a19d81-9ffc-4ce9-8219-e7c0705af5e9,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,66010075,, +cc71b38b-c085-4502-9639-65eb7141ea7f,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,70010080,, +fee20cab-1f74-4ae6-8640-df527aa05b43,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,70110088,, +5f364319-a92a-4adc-9ea3-4c63c7df5af8,HBCI Postbank Ndl DB PFK,PBNKDEFFXXX,,hbci-deutsche-bank-adapter,76010085,, +ca5fa578-1a3b-4021-bdea-cc5d7c9ee7e4,HBCI comdirect,COBADEHDXXX,,hbci-comdirect-adapter,20041111,, +1e17f29f-d7c7-481e-a60f-d073a2c14560,HBCI comdirect,COBADEHD001,,hbci-comdirect-adapter,20041133,, +34c4bd0f-07df-4ab9-afd5-4c6deed9eed6,HBCI comdirect,COBADEHD044,,hbci-comdirect-adapter,20041144,, +d2b1e7c4-4fe2-48ac-b72e-67a1c5fd89e8,HBCI comdirect,COBADEHD055,,hbci-comdirect-adapter,20041155,, +6696b389-616c-4802-8c8f-80496aaeb202,HBCI comdirect,COBADEHD066,,hbci-comdirect-adapter,20041166,, +28cb532d-399b-48c9-890f-45140c2ba009,HBCI comdirect,COBADEHD077,,hbci-comdirect-adapter,20041177,, +a9b73f2d-8a7a-4daf-a750-e53a0a152dc8,HBCI comdirect,COBADEHD088,,hbci-comdirect-adapter,20041188,, +a53619e0-2f24-43df-af78-950110115c9a,HBCI comdirect,COBADEHD099,,hbci-comdirect-adapter,20041199,, +a51dc331-2a99-4dc2-8877-ce3e64592806,HBCI Sparda-Bank Baden-Württemberg eG,GENODEF1S02,,hbci-sparda-bank-adapter,60090800,, +91b8407d-1269-4aad-aaa2-9f945e12c8b3,HBCI Sparda-Bank Ostbayern eG,GENODEF1S05,,hbci-sparda-bank-adapter,75090500,, +8456b162-94ee-4ff4-bcfe-ed9e80b17c64,HBCI Sparda-Bank Hessen eG,GENODEF1S12,,hbci-sparda-bank-adapter,50090500,, +4565cadb-cccc-40a1-803d-6e17ba76b4da,HBCI Sparda-Bank Nürnberg eG,GENODEF1S06,,hbci-sparda-bank-adapter,76090500,, +1df95046-2b2c-4681-9b94-82a4a8215d4c,HBCI Sparda-Bank Augsburg eG,GENODEF1S03,,hbci-sparda-bank-adapter,72090500,, +2ffd5cf6-6e43-4bdb-a130-c5d57b9e35ad,HBCI Sparda-Bank München eG,GENODEF1S04,,hbci-sparda-bank-adapter,70090500,, +f72f8f71-412a-4c41-ad00-14a54289dd4e,HBCI Sparda-Bank West eG,GENODED1SPE,,hbci-sparda-bank-adapter,36060591,, +3ead9d66-fe24-4c76-a0d4-86f53ef8cd19,HBCI Sparda-Bank West eG,GENODED1SPW,,hbci-sparda-bank-adapter,33060592,, +a72b4d79-3b40-4a63-8720-3da875349f6e,HBCI Sparda-Bank West eG,GENODED1SPK,,hbci-sparda-bank-adapter,37060590,, +0deed37c-589d-46eb-b555-89c704a7ee09,HBCI Sparda-Bank West eG,GENODEF1S08,,hbci-sparda-bank-adapter,40060560,, +b342d88b-b1db-426f-ba1d-18d76453dc96,HBCI Commerzbank Filiale Berlin 1,COBADEBBXXX,,hbci-commerzbank-adapter,10040000,, +1c4a37d9-29ce-42d4-845b-42d980048c34,HBCI Commerzbank Filiale Berlin 3,COBADEBBXXX,,hbci-commerzbank-adapter,10040005,, +169fda37-3e0d-481c-95dd-1cd2e37754d2,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,10040010,, +c7f4fe27-8534-42e2-bee3-8ed9687f6bce,HBCI Commerzbank GF-B48,COBADEFFXXX,,hbci-commerzbank-adapter,10040048,, +10dd80a3-e6f1-410b-ae02-9da0f1cf469c,HBCI Commerzbank Gf 160,COBADEFFXXX,,hbci-commerzbank-adapter,10040060,, +c50a27dc-c3df-4238-85cc-8e6665d35d01,HBCI Commerzbank Gf 161,COBADEFFXXX,,hbci-commerzbank-adapter,10040061,, +82a5588d-2816-47ec-9ec9-9790fcbdf9d1,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,10040062,, +7391ad60-86f8-45cb-8169-f58fa9f3968e,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,10040063,, +b19e0fdb-0e7b-4123-bcbe-0a9a983ab5c9,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,10040085,, +6ad14e97-131c-4f99-810e-802bde5b0ad1,HBCI Commerzbank Service-BZ,COBADEFFXXX,,hbci-commerzbank-adapter,10045050,, +d5b45dff-fd92-4e89-9bd2-f5c381560b6e,HBCI Commerzbank vormals Dresdner Bank Filiale Berlin I,DRESDEFF100,,hbci-commerzbank-adapter,10080000,, +6de08b11-57cb-4c9d-b6ac-363be0707127,HBCI Commerzbank vormals Dresdner Bank Zw A,DRESDEFFI26,,hbci-commerzbank-adapter,10080005,, +7a655956-2b82-4f43-99f7-83116a83fd89,HBCI Commerzbank vormals Dresdner Bank Zw B,DRESDEFFXXX,,hbci-commerzbank-adapter,10080006,, +99c0fc26-dbb2-498d-bedf-aa84ad751d63,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF112,,hbci-commerzbank-adapter,10080055,, +5c09bbcf-1678-4e7c-ba98-6ba3e6d5ebcc,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF114,,hbci-commerzbank-adapter,10080057,, +cec1d6ca-4352-45b1-b4d7-317622c4edaf,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 3,DRESDEFFI53,,hbci-commerzbank-adapter,10080085,, +96ac3608-e38b-4bee-af14-25af597ec3cc,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI71,,hbci-commerzbank-adapter,10080086,, +2f904534-573b-4fff-a509-a3f443f9b224,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI72,,hbci-commerzbank-adapter,10080087,, +c5b81579-8b4c-40b3-960f-8fc8dc68e447,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25040066,, +6f3ef093-3cf6-4f45-9c2c-b59229e3d9b3,HBCI Commerzbank vormals Dresdner Bank IBLZ,DRESDEFFXXX,,hbci-commerzbank-adapter,10080088,, +afbf62ec-f0fc-47b7-b6bf-afbbfb5ac037,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM664,,hbci-unicredit-adapter,70322192,, +a247be3d-c2f4-49f2-bfaa-11a8c57354bd,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI73,,hbci-commerzbank-adapter,10080089,, +5447881f-1397-43c5-aa02-3e02f60ccf4c,HBCI Commerzbank vormals Dresdner Bank Filiale Berlin III,DRESDEFF199,,hbci-commerzbank-adapter,10080900,, +38161b7c-dfa5-46f7-b8c5-5b8da7bf0917,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI14,,hbci-commerzbank-adapter,10089260,, +98202295-807d-4761-9a62-7984b7980fad,HBCI Commerzbank vormals Dresdner Bank ITGK 2,DRESDEFFI99,,hbci-commerzbank-adapter,10089999,, +dd8bc897-121c-48e9-b063-ad7b3199d9a8,HBCI Commerzbank Filiale Berlin 2,COBADEBB120,,hbci-commerzbank-adapter,12040000,, +7553299f-c8c2-488a-a410-9086db004d05,HBCI Commerzbank vormals Dresdner Bank Filiale Berlin II,DRESDEFF120,,hbci-commerzbank-adapter,12080000,, +4b382340-4a88-45e5-904c-068c7ebb3bd7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,13040000,, +3687ae85-23d5-4813-a3cf-79cdd47b5757,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF130,,hbci-commerzbank-adapter,13080000,, +6f98053a-6df0-4cb1-a5c5-17cf95afe7e7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,14040000,, +67a71d2c-aee6-44b0-8b5e-3940e0914e26,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF140,,hbci-commerzbank-adapter,14080000,, +0c2b4bf4-490e-40a9-abed-c05d9de0981d,HBCI Commerzbank vormals Dresdner Bank Zw W,DRESDEFFI27,,hbci-commerzbank-adapter,14080011,, +bde92356-9d1d-486a-8fa9-bb5428197090,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,15040068,, +191d27c4-76c9-4351-8ab9-1f7d055aeeae,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF150,,hbci-commerzbank-adapter,15080000,, +b2e3a405-3eca-4b50-8b87-560d83edf5f1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,16040000,, +b7a245f2-6510-4214-8206-5019b938481b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF160,,hbci-commerzbank-adapter,16080000,, +c8b57335-b2b3-411c-bb55-e5fc4290dfdc,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,17040000,, +8b437039-1487-48ae-bc76-f26e43fcb416,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF170,,hbci-commerzbank-adapter,17080000,, +e279d235-3026-435b-ad9c-ac7b436f09a4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,18040000,, +327d35aa-1bc7-4ea1-a669-ac705705499d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF180,,hbci-commerzbank-adapter,18080000,, +47ec7a7d-9100-4181-a5a3-b77f853d3076,HBCI Commerzbank,COBADEHHXXX,,hbci-commerzbank-adapter,20040000,, +3ebcc7ae-98dd-417c-b46e-12abab35cc67,HBCI Commerzbank Filiale Hamburg 2,COBADEHHXXX,,hbci-commerzbank-adapter,20040005,, +5c6d79b5-b4d2-46b5-9531-4df4facf8011,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,20040020,, +b895becc-5d50-4a4b-a80d-8138510d3eae,HBCI Commerzbank GF RME,COBADEFFXXX,,hbci-commerzbank-adapter,20040040,, +4f7ee55a-dd1e-474c-a028-dcf15cfc705d,HBCI Commerzbank GF-H48,COBADEFFXXX,,hbci-commerzbank-adapter,20040048,, +fb733b4d-0de4-4fd6-92cb-65427228240d,HBCI Commerzbank GF COC,COBADEFFXXX,,hbci-commerzbank-adapter,20040050,, +b37234ea-e297-4846-aaa0-e9e43b40e0f4,HBCI Commerzbank Gf 260,COBADEFFXXX,,hbci-commerzbank-adapter,20040060,, +1247fc6c-644c-47b3-bff2-f12e35a306e6,HBCI Commerzbank Gf 261,COBADEFFXXX,,hbci-commerzbank-adapter,20040061,, +b43d5e6f-b2d8-47ce-b9e3-7cedb4b0a8e5,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,20040062,, +95deae27-161b-4a24-b881-52487b060ac7,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,20040063,, +77b80057-1c49-49dd-ba3d-5f7f1de02f06,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF200,,hbci-commerzbank-adapter,20080000,, +287c8892-1472-43aa-82eb-78e82b33c488,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF207,,hbci-commerzbank-adapter,20080055,, +573ca01a-1641-4f1f-b6ea-e18881a7943b,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF208,,hbci-commerzbank-adapter,20080057,, +8a9ea34e-566b-4174-ac85-f5c48e248790,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 2,DRESDEFFI56,,hbci-commerzbank-adapter,20080085,, +a6c6bd64-f65d-4137-9a03-202dfd5a9eb0,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI63,,hbci-commerzbank-adapter,20080086,, +fdc331ed-b81d-4bdc-b9c3-2e556dc96156,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI64,,hbci-commerzbank-adapter,20080087,, +abc455d4-909d-4514-9fb2-0eb745af256d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI74,,hbci-commerzbank-adapter,20080088,, +b76eaf7f-7c2c-4d93-b5ca-d3d02e3ffeea,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI75,,hbci-commerzbank-adapter,20080089,, +53f2549f-9caa-4572-90b7-68cdab3562f2,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFJ33,,hbci-commerzbank-adapter,20080091,, +e1534e60-9af7-416d-bd82-c573716c4306,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 8,DRESDEFFJ34,,hbci-commerzbank-adapter,20080092,, +4ae70fc9-69ba-41dc-872a-f6383c7ab7c8,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 9,DRESDEFFJ35,,hbci-commerzbank-adapter,20080093,, +2553d56a-de49-49b9-85ad-fd3cd622c674,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 10,DRESDEFFJ36,,hbci-commerzbank-adapter,20080094,, +cac5e90a-5ebe-47da-8548-7e42919f99fc,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 11,DRESDEFFJ37,,hbci-commerzbank-adapter,20080095,, +50765c47-fbac-40f6-8ef8-e55fb4556905,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI06,,hbci-commerzbank-adapter,20089200,, +e10356ef-21d1-4fca-80b2-39aaa5ea8107,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21040010,, +4df1572b-a075-435b-a176-168e2f6f25e5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21042076,, +fdb78237-75e1-4a82-92f2-e8039dc70e4f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF210,,hbci-commerzbank-adapter,21080050,, +04bb2ce9-7e79-43d8-9501-28aa4dfb0565,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI07,,hbci-commerzbank-adapter,21089201,, +45870bcd-2f9e-427e-9179-38a4d40cb956,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21240040,, +8f8cc311-d503-4948-9027-dbc262dba5bd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21241540,, +3588da51-3432-4d5c-8fb6-d3e1572d763a,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF212,,hbci-commerzbank-adapter,21280002,, +9fc5d2b7-7fc2-424b-9b1e-54a3bfc7d72a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21340010,, +159caa21-b8e4-40c4-bf2b-ceccc243f171,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21440045,, +ab501c84-4149-4241-8307-0714f62fc066,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF214,,hbci-commerzbank-adapter,21480003,, +1cf0ccc1-0f9b-4e87-9d24-ace390264e8f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21540060,, +4c12a0a4-7a44-40d7-bbee-f4911cb5002f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF215,,hbci-commerzbank-adapter,21580000,, +10aff5cf-51f8-4881-ba1c-a834ab87cf21,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21740043,, +f3f5f6bd-10cc-4c57-a08c-c2726e457bc5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21741674,, +17352a01-4ddf-4849-b48a-6dc4675895dd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21741825,, +6fc065eb-1136-4d88-953e-d1dfdb7e9342,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21840078,, +e3c25774-e3d6-45b4-9a60-3b18767e48cd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,21841328,, +cffd501c-d928-4f32-90da-70333e16c13c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22140028,, +2cd221bc-d3f8-4f48-950b-1f2722da09b7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22141028,, +1737d623-2dae-4623-b3f7-68c5fe12948b,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22141428,, +a42a8c0d-500b-484c-87ca-ae0aa64ccb38,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22141628,, +9327a78f-32b8-43ac-bc9b-8d19e0f6e3c6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF221,,hbci-commerzbank-adapter,22180000,, +fd127ca8-beb0-42f9-80ec-ed18c0b0d3ee,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF206,,hbci-commerzbank-adapter,22181400,, +d1660327-999a-42b9-a5c6-05b891c04cba,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,22240073,, +6bd93700-b87f-42e5-9511-4160e1ac0372,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF201,,hbci-commerzbank-adapter,22280000,, +58656305-be98-40e9-9edb-5df8b58e54fb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,23040022,, +ea5e40db-ecd3-45d3-aa09-79fb08fccf17,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF230,,hbci-commerzbank-adapter,23080040,, +284cba8f-0e37-422c-b51a-a5057f0fc466,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI08,,hbci-commerzbank-adapter,23089201,, +f44b42d6-c7c4-43e1-bcab-b1dc23d96074,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,24040000,, +987e3cfe-017c-4c69-90c9-e5f216261ecf,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF240,,hbci-commerzbank-adapter,24080000,, +51a4ae35-12cd-4dbb-bdcd-8bf489c2a8d7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,24140041,, +8fb01d01-5b71-4c59-8932-3f0d024f3edd,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF242,,hbci-commerzbank-adapter,24180000,, +4855b56d-0dbd-4e62-9728-dfe6a8175be9,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF241,,hbci-commerzbank-adapter,24180001,, +935eb4c6-1b15-47ce-a372-b38b42134f1c,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,25040060,, +6960f125-08ef-4d65-8c3d-537b7a34a0f9,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,25040061,, +155031bd-30bb-4b9a-8806-a3df968e09e8,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF250,,hbci-commerzbank-adapter,25080020,, +84b9e5f1-470d-451c-9528-f0fd344102d4,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI65,,hbci-commerzbank-adapter,25080085,, +b03c693d-6af7-464f-9ad5-ab5cd4fb2327,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI09,,hbci-commerzbank-adapter,25089220,, +cc85c906-f79a-498f-a64e-8018e3076289,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25440047,, +dc95c978-0d32-4b46-b130-d6e689458ccf,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF254,,hbci-commerzbank-adapter,25480021,, +fda18f46-4b08-407b-9071-d4838695c5b8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM408,,hbci-unicredit-adapter,72020070,, +acaf8614-5c20-4eff-9b33-db75223979b1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25541426,, +634de065-a503-437e-86f3-2f0a62f62abe,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25641302,, +6315409b-e9ca-4315-aa1a-b647892cd450,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25740061,, +12900920-8ef1-4a0e-ac91-a17bc827ccc8,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF257,,hbci-commerzbank-adapter,25780022,, +017c090e-839c-4e7b-aad5-4397459b98ef,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25840048,, +ed8c146d-cf00-4f8b-a55b-a23df942d970,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25841403,, +99b5badb-26b5-4c8c-a1b3-5d278802cf6f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25841708,, +42f82512-03ad-42f3-91fa-dd6349c70242,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,25940033,, +7cfde43b-bff5-4c3a-b97d-2f0689a7399f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF259,,hbci-commerzbank-adapter,25980027,, +652000ef-1b0e-4199-b48c-c5be5c311ba1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26040030,, +86f680b7-27dd-4754-a12c-f1eae9b80106,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF260,,hbci-commerzbank-adapter,26080024,, +62760854-82cc-4ae3-af41-db13e8e093d9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26240039,, +6e1ec06e-5115-442d-bb73-07a8ca9d9c98,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF261,,hbci-commerzbank-adapter,26280020,, +51e3bef5-219b-4ca6-9b16-021867d3d978,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF262,,hbci-commerzbank-adapter,26281420,, +d1984b5f-ace3-49f5-8b4b-2d7a948a1443,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26340056,, +899a4fe5-b005-486c-8707-e74b697ae2c3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26341072,, +0b38804f-5190-44c4-86db-7e219444cb75,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26540070,, +cf766fcc-cc91-4f63-aefa-894106b24150,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF265,,hbci-commerzbank-adapter,26580070,, +5f191db3-453b-40f3-83cc-36250f5047b7,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI10,,hbci-commerzbank-adapter,26589210,, +364ce1f4-b817-45a7-9f0c-b30f074bb12c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26640049,, +2a947183-6c2b-4e1e-8f08-680d64cb8ccf,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26740044,, +e9f25b2e-5eb5-4d15-8026-7bf358b7971d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,26840032,, +7545eeed-a926-439a-b244-bb305774b9d9,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF268,,hbci-commerzbank-adapter,26880063,, +5418e43a-49fa-44da-ae51-3c0fc899054b,HBCI Commerzbank Wolfsburg,COBADEFFXXX,,hbci-commerzbank-adapter,26941053,, +691307f5-63d4-4f12-92e2-44a543093040,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF269,,hbci-commerzbank-adapter,26981062,, +e1d12008-291a-4153-a35b-c244e330b05f,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI11,,hbci-commerzbank-adapter,26989221,, +b4c14421-ed65-467d-9c30-b2a7c0d89e0b,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,27040080,, +06842448-e34c-4004-82df-503474802fea,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF270,,hbci-commerzbank-adapter,27080060,, +2b6566a3-aa4d-4ff8-a78f-3e325afcea1e,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI12,,hbci-commerzbank-adapter,27089221,, +d852b417-2714-455a-9434-ef65bfbef167,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,27240004,, +1380a431-e887-4b5d-8e19-ff11fa2d76a1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28040046,, +3eb2db88-3ed6-4d6e-a5e1-f487cb55985e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28042865,, +06b77cd9-e8a4-47f4-b560-ab2d6ca05aff,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28240023,, +a2ed261e-41dc-46dc-aae9-fd7429cfdc2e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF282,,hbci-commerzbank-adapter,28280012,, +cda72b75-59e7-42d1-89b7-777571a07543,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28440037,, +38ce7678-44bf-43a6-a927-3bc67e3d44e6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,28540034,, +82efb766-e912-42f5-8d5e-c0970f8b5585,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,29040060,, +ad65579e-a49b-4e2b-b623-4cb2b38ce7fe,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,29040061,, +2703f3dc-1c2a-4b81-b1d4-5cdc96124187,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,29040090,, +7ae67f8b-1a43-489e-92ac-f591a956c82a,HBCI Commerzbank vormals Bremer Bank (Dresdner Bank),DRESDEFF290,,hbci-commerzbank-adapter,29080010,, +46a1c1b4-3127-466f-81c1-a6c178dccb33,HBCI Commerzbank vormals Bremer Bank (Dresdner Bank) ITGK,DRESDEFFI13,,hbci-commerzbank-adapter,29089210,, +3a2d900b-4934-46db-84e6-2834f1adbd3d,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,29240024,, +c89c3f5b-e961-4786-8bc5-f2758bd16f54,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,32440023,, +16c80b72-97d1-467d-bb8e-58d6755b9054,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,33040001,, +7a3dd4da-90a4-4a85-978f-0f85d88412d1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF292,,hbci-commerzbank-adapter,29280011,, +f58742d0-c650-4b77-9824-c179fcb9a20f,HBCI Commerzbank,COBADEDDXXX,,hbci-commerzbank-adapter,30040000,, +2db69d31-32c4-493f-87d0-b19ba37366c4,HBCI Commerzbank Filiale Düsseldorf 2,COBADEDDXXX,,hbci-commerzbank-adapter,30040005,, +ec924735-a487-41af-858a-4a9a8416f915,HBCI Commerzbank GF-D48,COBADEFFXXX,,hbci-commerzbank-adapter,30040048,, +61e13e29-0bfd-42bc-92e5-e73b5b316e92,HBCI Commerzbank Gf 660,COBADEFFXXX,,hbci-commerzbank-adapter,30040060,, +78d9829b-f214-4261-a36c-eb09f3845ddd,HBCI Commerzbank Gf 661,COBADEFFXXX,,hbci-commerzbank-adapter,30040061,, +d9143590-c574-4586-91df-709a5be8d460,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,30040062,, +1314db24-4cd1-49dc-91a9-f22352551247,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,30040063,, +74b95f04-61ea-44df-8a63-8277f5c88493,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF300,,hbci-commerzbank-adapter,30080000,, +cb795563-30f9-4e02-b4d1-30aadae405b6,HBCI Commerzbank vormals Dresdner Bank Zw 05,DRESDEFFXXX,,hbci-commerzbank-adapter,30080005,, +be3947cd-e1b5-4ded-923f-f6b13a124511,HBCI Commerzbank vormals Dresdner Bank Ztv 22,DRESDEFFI28,,hbci-commerzbank-adapter,30080022,, +77a5c4fd-59c7-4010-807f-44fc1067aa2b,HBCI Commerzbank vormals Dresdner Bank Zw 38,DRESDEFFXXX,,hbci-commerzbank-adapter,30080038,, +27a5816e-d738-4acc-a750-40de2151ba1a,HBCI Commerzbank vormals Dresdner Bank Zw 41,DRESDEFFI29,,hbci-commerzbank-adapter,30080041,, +15d6e1db-8782-4baf-ba3d-db4fa3d8e2a6,HBCI Commerzbank vormals Dresdner Bank Zw 53,DRESDEFFI30,,hbci-commerzbank-adapter,30080053,, +dc7fccf2-8c17-4135-b80d-526de9b60ccb,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF309,,hbci-commerzbank-adapter,30080055,, +cd1cadd8-608d-47bd-9b75-cfdb920e7cec,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF316,,hbci-commerzbank-adapter,30080057,, +7f8849fd-c2f8-481b-93f1-6f0d42c2e978,HBCI Commerzbank vormals Dresdner Bank Zw 61,DRESDEFFI31,,hbci-commerzbank-adapter,30080061,, +9390cbfa-10a6-4c37-9449-40ff4e898577,HBCI Commerzbank vormals Dresdner Bank Zw 74,DRESDEFFI32,,hbci-commerzbank-adapter,30080074,, +ed1bdd70-e512-4815-92ca-e9001ecda90f,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI76,,hbci-commerzbank-adapter,30080080,, +abe0afda-09da-48be-b726-8dbaab668649,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI77,,hbci-commerzbank-adapter,30080081,, +455baf9f-1541-4712-b517-803c6c5f485b,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI78,,hbci-commerzbank-adapter,30080082,, +128a353f-af6a-4882-8960-5052c1c0490f,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFI79,,hbci-commerzbank-adapter,30080083,, +845637c4-0b40-48cf-b3a0-5a84da868497,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFI80,,hbci-commerzbank-adapter,30080084,, +34b45ee1-44fa-4833-8968-a53a2fe58682,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 8,DRESDEFFI81,,hbci-commerzbank-adapter,30080085,, +6dab4564-6e7a-418a-8dda-3557c7a525a9,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 9,DRESDEFFI82,,hbci-commerzbank-adapter,30080086,, +ab46baa5-0baa-4b62-a0b8-d462c3f61ea4,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 10,DRESDEFFI83,,hbci-commerzbank-adapter,30080087,, +9d8eb9b4-8549-467a-a130-f057ef2d40cd,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 11,DRESDEFFI84,,hbci-commerzbank-adapter,30080088,, +08fed855-6a66-4cfe-9f8c-46e510d5ed04,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 12,DRESDEFFI85,,hbci-commerzbank-adapter,30080089,, +512a913b-4fa9-4519-a57f-5bb219956fcc,HBCI Commerzbank vormals Dresdner Bank Zw 95,DRESDEFFI33,,hbci-commerzbank-adapter,30080095,, +457c3feb-b2e8-443b-ad45-1404a87ee918,HBCI Commerzbank vormals Dresdner Bank ITGK I,DRESDEFFI02,,hbci-commerzbank-adapter,30089300,, +ceb79357-476c-44e5-9909-bdd83471e7f0,HBCI Commerzbank vormals Dresdner Bank ITGK II,DRESDEFFI03,,hbci-commerzbank-adapter,30089302,, +d65617d1-5ec6-46b8-b888-b1073916a92e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,31040015,, +acd18a75-f690-4c54-9bb8-3f917b2a9c7d,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,31040060,, +e94ee510-9d36-4037-92c6-0d2cd2e9b81b,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,31040061,, +52716baf-7844-4b90-916e-31d605598a01,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF310,,hbci-commerzbank-adapter,31080015,, +22d37ca1-319c-4186-aad4-4a141270db6a,HBCI Commerzbank vormals Dresdner Bank Zw 61,DRESDEFFI34,,hbci-commerzbank-adapter,31080061,, +8596c171-617e-4978-bb99-6a4e815cab14,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,32040024,, +33c52951-a910-4e98-a8ba-85490a3e8a50,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF320,,hbci-commerzbank-adapter,32080010,, +fb61e50b-bff6-468a-bf9d-1e4f6c9a58a8,HBCI Commerzbank Zw 117,COBADEDHXXX,,hbci-commerzbank-adapter,33040310,, +3060f3f5-70ed-41d4-a1ef-2c0de33990df,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI86,,hbci-commerzbank-adapter,33080001,, +47d7e691-dac0-4532-a574-a0085ca3cdf6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF332,,hbci-commerzbank-adapter,33080030,, +28558b2e-ae5d-47a2-8ef6-5fba401058b4,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI87,,hbci-commerzbank-adapter,33080085,, +d8cdb0a7-173b-4568-8617-230c8d7d8e0d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI88,,hbci-commerzbank-adapter,33080086,, +97514630-b838-4697-80e4-085f45f095fa,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI89,,hbci-commerzbank-adapter,33080087,, +e5516d01-5250-41ce-806c-f5b7362bff67,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI90,,hbci-commerzbank-adapter,33080088,, +89801ebe-ff4f-4a8f-ab6e-049429287f16,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,33440035,, +4696e407-8792-4315-83d9-e3669c1c5e64,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,34040049,, +9cb7c517-3840-4d7a-8e19-bdc39a16650b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF340,,hbci-commerzbank-adapter,34080031,, +887e07fc-1ada-4708-a145-0b14cde9b0f7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,34240050,, +6405b4e8-fde6-43ea-8cae-99c05447bb19,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF342,,hbci-commerzbank-adapter,34280032,, +107110a5-e4f3-4a2b-8681-715ed35b48b8,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,35040038,, +ce17bdcd-fa19-4fc7-bac8-a37dc28cb53d,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,35040085,, +9259ce1e-08e2-47b7-8751-b38c00edf1ef,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF350,,hbci-commerzbank-adapter,35080070,, +172d21b7-8580-4231-b2c9-e187eb831f41,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI91,,hbci-commerzbank-adapter,35080085,, +347f52e1-2420-4c75-9bb5-60fdc38af5ed,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI92,,hbci-commerzbank-adapter,35080086,, +594a816b-3cd1-4e27-99ba-dce960699a7f,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI93,,hbci-commerzbank-adapter,35080087,, +508eab60-d7dd-4c45-a253-a8dbb9336c4e,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFI94,,hbci-commerzbank-adapter,35080088,, +414436de-6467-405b-9a89-b20a6370cdc3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFI95,,hbci-commerzbank-adapter,35080089,, +6eed3832-d98d-4225-8ec3-b8f2b6bc6759,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF413,,hbci-commerzbank-adapter,41280043,, +e833ef67-fb90-43c5-87a4-41b5a52991b1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,41440018,, +3fccae6f-3ee3-48a8-86b8-b1acd786c6fc,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,42040040,, +c7b9bdd8-5f84-4d2e-84e9-049079a7788d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF420,,hbci-commerzbank-adapter,42080082,, +f3e92455-5c24-4f74-bb8f-ffd2fb3c84b6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,42640048,, +536d0a9c-b232-4abe-9cc2-0afef88f52a1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF426,,hbci-commerzbank-adapter,42680081,, +33381d7b-d706-4431-939d-cc331d4a3a81,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,42840005,, +e08dcd47-f78a-438e-8593-b4ca227e2d75,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,43040036,, +ec839dfc-32fb-49b9-9fe3-2752cbc26c6f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF430,,hbci-commerzbank-adapter,43080083,, +9d46bff6-7ad5-493e-bb48-71d39944248e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,44040037,, +04aff837-680b-44ae-be74-c6c48755b09e,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,44040060,, +759661ce-5525-40ee-88d6-97290fe9c61e,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,44040061,, +05b36e09-2fe6-44be-89c2-4086c5640ecd,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,44040085,, +4113377b-47e6-4ed1-8306-2ca23e4cc7b0,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF440,,hbci-commerzbank-adapter,44080050,, +33edecba-be48-47d6-b89e-3a2a9c74bad9,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF446,,hbci-commerzbank-adapter,44080055,, +a2432114-7e14-4b9b-aeac-41fed038acde,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF447,,hbci-commerzbank-adapter,44080057,, +5e634037-f407-4e33-9a0d-1c0e683eeab3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI69,,hbci-commerzbank-adapter,44080085,, +dd8fe9c5-3329-4cf2-bea7-5c38379dfa0b,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI18,,hbci-commerzbank-adapter,44089320,, +ad165af3-93bb-429b-a38a-817cb699a380,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,44340037,, +4d3d7738-729c-4144-84aa-1eaf8fdc03e5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,44540022,, +8d1f418c-8f78-4f19-8f14-fd22c60bd861,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF445,,hbci-commerzbank-adapter,44580070,, +06f0670f-614b-45b5-b2e7-e1f9eb846f70,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI70,,hbci-commerzbank-adapter,44580085,, +2101786e-4339-4365-bf97-478f22991a49,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45040042,, +cf90b167-43e1-4090-b177-317e5d326e2e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF450,,hbci-commerzbank-adapter,45080060,, +b3ccace1-3d46-4e8e-8d6f-d8feb963e21a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45240056,, +a8c6b81c-0c67-4647-87be-f10da58f94b9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45840026,, +d2a8e274-9c8a-4a03-9094-0108180999fc,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,45841031,, +4430978b-fef2-4123-a521-6867c343776b,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46040033,, +804094db-e6e8-4ce6-ba92-206f39942429,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF460,,hbci-commerzbank-adapter,46080010,, +7ec4474e-3a43-4e5b-b1a3-51cddefbbaf2,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46240016,, +dbeeedc7-6d59-4194-b229-5f5b9ff9a93f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46441003,, +99573620-927c-4171-81b7-105d6d286503,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,46640018,, +de6e8c68-3616-4a85-a04a-09c335c5f51f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,47240047,, +f7dd0425-d827-4a8a-840a-d008449ecb63,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,47640051,, +d46653aa-046a-427a-a781-ae80536a94b6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,47840065,, +e4dc84a1-2adb-45e1-bdb1-d584023bd6ae,HBCI Commerzbank Zw 80,COBADEFFXXX,,hbci-commerzbank-adapter,47840080,, +daa0f172-ec12-4770-b43d-3ff22baa3eb1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF478,,hbci-commerzbank-adapter,47880031,, +a36c0854-e94a-4daf-87a5-00e207aad9f5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,48040035,, +3bb8673f-cdb5-4319-9706-5799fb69933e,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,48040060,, +9963914a-2027-4bd3-9a8e-ab5fba7f28fe,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,48040061,, +7d3095cd-3663-4b5d-9d08-b93e4854d03b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF480,,hbci-commerzbank-adapter,48080020,, +9b3b8135-aabf-4d08-a7e8-11ac983c223c,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI19,,hbci-commerzbank-adapter,48089350,, +4cc21aff-1f3f-4c1c-80ff-d57ac8bf0e66,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,49040043,, +bf43785c-cf65-4850-b4e0-224c43e8d51d,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF491,,hbci-commerzbank-adapter,49080025,, +15849250-4659-42c8-b5c0-e541c24ce610,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,49240096,, +0998afee-4d27-46dd-a137-084110162887,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,49440043,, +df4bd86b-dbee-47ca-b604-cffba4fdff73,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50040000,, +ba3425f5-8f58-4110-ae4e-8c0626691601,HBCI Commerzbank Filiale Frankfurt 2,COBADEFFXXX,,hbci-commerzbank-adapter,50040005,, +3118d0b0-1708-4045-b111-2c2d4c9d9a17,HBCI Commerzbank Gf BRS,COBADEF1BRS,,hbci-commerzbank-adapter,50040033,, +c6ea2fb0-7751-41c4-aced-09d13a55caf8,HBCI Commerzbank MBP,COBADEFFXXX,,hbci-commerzbank-adapter,50040038,, +a5a885d8-98a2-47d3-b47e-9577c0c894b3,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM418,,hbci-unicredit-adapter,70021180,, +c42d707e-399c-4c89-9482-7e8727bde86c,HBCI Commerzbank Gf ZRK,COBADEFFXXX,,hbci-commerzbank-adapter,50040040,, +9d6b06a2-6eaf-4730-8cf4-8330e756de2b,HBCI Commerzbank GF-F48,COBADEFFXXX,,hbci-commerzbank-adapter,50040048,, +3c002d5a-c7f0-40fd-9c03-d6779e994b37,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,50040050,, +731a3c7a-23f2-42c6-bb0f-d8de2cc9a4e0,HBCI Commerzbank Center Dresdner Bank Frankfurt,COBADEFFXXX,,hbci-commerzbank-adapter,50040051,, +43f4c5ac-0cac-4edf-be9a-57774f884d1e,HBCI Commerzbank Service - BZ Frankfurt,COBADEFFXXX,,hbci-commerzbank-adapter,50040052,, +e6ad8eb5-9963-4eff-bd61-e0bb4b286bce,HBCI Commerzbank Gf 460,COBADEFFXXX,,hbci-commerzbank-adapter,50040060,, +012d0760-5c18-455e-bb27-27d5c4af7870,HBCI Commerzbank Gf 461,COBADEFFXXX,,hbci-commerzbank-adapter,50040061,, +97758a31-4b65-4117-ae21-f97b22337643,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,50040062,, +968bb9e3-212d-4fc7-830c-e666937aaa5b,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,50040063,, +cf3f1137-2bcb-4ca4-a848-7da2541308fa,HBCI Commerzbank Gf ZCM,COBADEFFXXX,,hbci-commerzbank-adapter,50040075,, +2e749270-eab3-42a1-a4b2-3e7237f5d2cc,HBCI Commerzbank GF Web-K CMTS2,COBADEFFXXX,,hbci-commerzbank-adapter,50040084,, +8985aa8e-8502-4114-addf-96670d027cff,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,50040085,, +b4013b4c-c8ee-456a-b462-dae570fca44a,HBCI Commerzbank GF Web-K CMTS,COBADEFFXXX,,hbci-commerzbank-adapter,50040086,, +23ea4bd7-b232-48c8-bb91-0dd5768b4fb6,HBCI Commerzbank Gf Web-K CMTS3,COBADEFFXXX,,hbci-commerzbank-adapter,50040087,, +e3817446-851b-4798-85b9-9a0420eda681,HBCI Commerzbank INT 1,COBADEFFXXX,,hbci-commerzbank-adapter,50040088,, +db899456-ffb7-4c48-91dd-758107851fee,HBCI Commerzbank INT,COBADEFFXXX,,hbci-commerzbank-adapter,50040099,, +8f0c1139-41b3-4134-bef7-43b045f3574e,HBCI Commerzbank Zw 425 - keine Auslandsbanken,COBADEFFXXX,,hbci-commerzbank-adapter,50042500,, +249ccbde-dbb1-4b16-a8f0-92181005eab5,HBCI Commerzbank Vermögensverwaltung,COBADEFFXXX,,hbci-commerzbank-adapter,50044444,, +648a011a-c422-4ce0-b897-825f815332f5,HBCI Commerzbank Service - BZ,COBADEFFXXX,,hbci-commerzbank-adapter,50047010,, +a5aa9aaf-5b40-4166-877b-9a88ac94a0c5,HBCI Commerzbank vormals Dresdner Bank,DRESDEFFXXX,,hbci-commerzbank-adapter,50080000,, +37e9c9c5-b41e-421b-9081-cee4e88f2a28,HBCI Commerzbank vormals Dresdner Bank Zw 15,DRESDEFFI39,,hbci-commerzbank-adapter,50080015,, +4de974c6-b1de-4497-b4d7-06e614a0440e,HBCI Commerzbank vormals Dresdner Bank Zw 25,DRESDEFFXXX,,hbci-commerzbank-adapter,50080025,, +b56e20ea-53cf-472c-9904-ba23134a4316,HBCI Commerzbank vormals Dresdner Bank Zw 35,DRESDEFFI40,,hbci-commerzbank-adapter,50080035,, +c1cb55c9-7c57-4969-8469-dbc9ea08dd85,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF516,,hbci-commerzbank-adapter,50080055,, +d1a48c6c-c9c8-47f8-964c-2b1db109a6b0,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF522,,hbci-commerzbank-adapter,50080057,, +3cc3c0f9-65ac-4990-9ec8-d159a3483a4b,HBCI Commerzbank vormals Dresdner Bank Gf DrKW,DRESDEFFXXX,,hbci-commerzbank-adapter,50080060,, +80edd127-80bd-4cd7-9b52-de5afb541109,HBCI Commerzbank vormals Dresdner Bank Gf DrKWSL,DRESDEFFLDG,,hbci-commerzbank-adapter,50080061,, +e9763405-807d-4133-9266-ac0705aa5e9f,HBCI Commerzbank GF Wüstenrot BSPK,DRESDEFFBSP,,hbci-commerzbank-adapter,50080077,, +80eaabf8-7fab-4ae8-95a0-a051ee4cdfe7,HBCI Commerzbank vormals Dresdner Bank ESOP,DRESDEFFXXX,,hbci-commerzbank-adapter,50080079,, +6e191eb5-d07e-4c98-9a07-a07a0ff12384,HBCI Commerzbank vormals Dresdner Bank Bs 80,DRESDEFFI41,,hbci-commerzbank-adapter,50080080,, +61d8fe97-02a6-41d6-9192-e7913855cb3c,HBCI Commerzbank vormals Dresdner Bank Gf AVB,DRESDEFFAVB,,hbci-commerzbank-adapter,50080082,, +ab19a8e8-b822-4b59-8fcf-30b324741a8a,HBCI Commerzbank vormals Dresdner Bank ITGK 3,DRESDEFFI49,,hbci-commerzbank-adapter,50080086,, +15cb9ed8-3654-4bd9-af57-26500a8953cf,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFJ08,,hbci-commerzbank-adapter,50080087,, +beaae48a-27e1-4bed-a10b-da0e9a2545ab,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFJ09,,hbci-commerzbank-adapter,50080088,, +72113050-ffbb-45ee-9226-af080d35806f,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFJ10,,hbci-commerzbank-adapter,50080089,, +a5635594-e281-4f28-8b32-40b92809ffed,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 7,DRESDEFFJ11,,hbci-commerzbank-adapter,50080091,, +8b956f04-7a24-4c38-9f8d-8d84da427f56,HBCI Commerzbank vormals Dresdner Bank Finance and Controlling,DRESDEFFFCO,,hbci-commerzbank-adapter,50080092,, +acd2522f-6aa9-4240-9f86-aa2443173a77,HBCI Commerzbank vormals Dresdner Bank Zw 99,DRESDEFFI42,,hbci-commerzbank-adapter,50080099,, +4280968e-2014-4546-99f4-92c8bb1fbc7b,HBCI Commerzbank vormals Dresdner Bank Private Banking Inland,DRESDEFF500,,hbci-commerzbank-adapter,50080300,, +4673d063-0aeb-4769-89f4-9231e71187b0,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF502,,hbci-commerzbank-adapter,50083007,, +dbd7dbdf-2d38-4237-8aef-9e527f8d6304,HBCI Commerzbank vormals Dresdner Bank in Frankfurt MBP,DRESDEFFMBP,,hbci-commerzbank-adapter,50083838,, +dace0ff1-8eab-4ca8-8f83-df63efc79391,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI01,,hbci-commerzbank-adapter,50089400,, +e9ffbf0a-1436-4a88-924f-368e48102cac,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50540028,, +1e6d5cab-3463-4cc3-8f32-494ee8c3ec55,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF505,,hbci-commerzbank-adapter,50580005,, +fa46d413-f324-4cbc-b8ae-51c73d544e98,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ12,,hbci-commerzbank-adapter,50580085,, +e273cce5-b191-4adb-b59e-b1b3a93de6a8,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50640015,, +50fad751-3afc-4769-9172-6f111967db09,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF506,,hbci-commerzbank-adapter,50680002,, +d130ec55-5cf9-4090-bdb7-163d61a995c7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54640035,, +514d08ba-b0a7-4902-aba2-4e1d5ec500c9,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ13,,hbci-commerzbank-adapter,50680085,, +31f7a404-9e1a-41b6-9252-ca0c8191bbec,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM436,,hbci-unicredit-adapter,73120075,, +73e6e5ce-b7e3-4d2a-aecb-70372bd6488a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50740048,, +08fbf36d-3f36-4dfd-9de4-6cfcc10d7243,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF524,,hbci-commerzbank-adapter,50780006,, +607b7e27-608c-4e97-9098-3f81cb4c0df7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,50840005,, +a3ce721c-1125-4419-9704-ae05eb477c28,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF508,,hbci-commerzbank-adapter,50880050,, +85e5d33e-b5bd-468d-8b84-79225dbbbf71,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ14,,hbci-commerzbank-adapter,50880085,, +07b5d55c-a444-4ff3-ab58-4888cfde2e9a,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ15,,hbci-commerzbank-adapter,50880086,, +d523c372-3b51-4ef3-ad4c-1909f13fb6ad,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51040038,, +afe35b0d-09be-4a19-ac0a-e0d15d135869,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF510,,hbci-commerzbank-adapter,51080060,, +b2ba4d2a-a659-470a-abe6-ad14480f966d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ16,,hbci-commerzbank-adapter,51080085,, +2cdda97f-983f-44f3-9815-ce6cc7216d65,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK2,DRESDEFFJ17,,hbci-commerzbank-adapter,51080086,, +d70792c0-75ae-48d1-9bc8-d7279ed9b09f,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI20,,hbci-commerzbank-adapter,51089410,, +197b79de-178e-4236-879c-335e7795a92f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51140029,, +5178a287-4640-457b-94ea-c6b23a7c1e84,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF511,,hbci-commerzbank-adapter,51180041,, +3ce51d8d-b3b0-47f8-b236-3033dc60346c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51340013,, +cc2aaccc-d0db-4fa7-9454-b3acccc793bb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51343224,, +f486425d-214a-4ee5-87d3-ca3759988115,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF513,,hbci-commerzbank-adapter,51380040,, +208aacf4-d8ca-4ced-b55b-71acf67b25bf,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ18,,hbci-commerzbank-adapter,51380085,, +a5590751-87b0-468e-a169-83e3a909aa32,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51540037,, +07ac835a-5f13-4cfe-aed8-3688ef438f6c,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF515,,hbci-commerzbank-adapter,51580044,, +c073a541-47c7-4d21-bd7f-c0111e229dce,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,51640043,, +f0ba2677-af56-4788-b869-5eed16c1bb27,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,52040021,, +e44aa237-d01c-4ba8-8199-73bc2e7f030b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF520,,hbci-commerzbank-adapter,52080080,, +f7b313c8-ec0c-4524-b181-4cde673689be,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK1,DRESDEFFJ19,,hbci-commerzbank-adapter,52080085,, +038aff88-c1ac-4020-83b8-b470dc46aaba,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,52240006,, +02cc69a3-a1aa-44d7-b032-315480c36d12,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,53040012,, +3ae86fd2-9cb4-4913-a05f-6b1576cd4019,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF530,,hbci-commerzbank-adapter,53080030,, +b87de5a3-509f-430f-b537-759728823489,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,53240048,, +dec4456a-95dd-4de3-ac18-931830c62135,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF532,,hbci-commerzbank-adapter,53280081,, +3326c0ab-f207-48db-89fd-293c7c0b5a11,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,53340024,, +78b2986b-2ad4-4979-aeaf-923d8ecb05a7,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF533,,hbci-commerzbank-adapter,53380042,, +2a46d650-97d2-475c-b00b-0283f8b20acd,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF568,,hbci-commerzbank-adapter,53381843,, +c8f0e6ce-62c1-4d59-ba94-ec5c6af875ba,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54040042,, +7ef60ab1-3b23-4f58-9800-648842e4d169,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF540,,hbci-commerzbank-adapter,54080021,, +986655c9-8648-46d8-a6c6-ca98133881d4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54240032,, +803b7d70-ebe8-41ba-94cf-e3f6a85b7bb9,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF542,,hbci-commerzbank-adapter,54280023,, +9b00e585-c19f-4f47-ad70-df3ff8df0dfc,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,54540033,, +472d0900-33ec-490e-81de-ad5d2e9b3214,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM236,,hbci-unicredit-adapter,72021271,, +732cd635-1364-492a-b499-cf85a8c6f36a,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF545,,hbci-commerzbank-adapter,54580020,, +b80c5d32-5f06-4598-9cdd-fd2a6018c937,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF546,,hbci-commerzbank-adapter,54680022,, +b29a25cd-b84c-45e6-a723-2daafba49a0f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,55040022,, +f386887d-763b-43f2-a6b2-3de2e2a721dc,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,55040060,, +8720b48a-90a2-4ad0-a4bb-97ab0b90c429,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,55040061,, +65729ed5-21ed-44e6-94ff-f92c439f608d,HBCI Commerzbank TF MZ 1,COBADEFFXXX,,hbci-commerzbank-adapter,55080044,, +a9d3af67-adc5-48da-95a7-b7c7e480fb5f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF550,,hbci-commerzbank-adapter,55080065,, +ced72164-7d20-4b85-b6ad-cc085de9e3b6,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ20,,hbci-commerzbank-adapter,55080085,, +27db5618-e650-47de-b064-60aafe32f7a2,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ21,,hbci-commerzbank-adapter,55080086,, +af38ae7f-0dea-47f8-8b9f-f696b9de62ef,HBCI Commerzbank TF MZ 2,DRESDEFF555,,hbci-commerzbank-adapter,55080088,, +7d2a405f-92c7-4380-bdaa-4a15aa0623dd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,55340041,, +55b51236-279c-4d5d-a1f0-e8431d770b67,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,56240050,, +796b1870-0d5f-4b9d-b376-c788b0dd0252,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,57040044,, +9f546e59-6099-4dbe-8f7b-96b27dd5e8a1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF570,,hbci-commerzbank-adapter,57080070,, +6d30c1e5-3cec-4e13-ac2a-53dc83c5e4f4,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,58540035,, +0e8f02e3-69f9-4878-bd35-6f2c7eb5b84e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF585,,hbci-commerzbank-adapter,58580074,, +c6f94662-f55a-4ccc-8837-2028b6ddb0bb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,59040000,, +e2842535-ef51-41b2-a1b8-2156ea92d4e6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF590,,hbci-commerzbank-adapter,59080090,, +f1e99e66-ded5-4f43-94b7-e6bb15721116,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,60040060,, +6ecf8ea0-9cee-4590-85cd-33326e4748fe,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,60040061,, +5ca11393-0644-430d-9bd3-cd4de32dc5f5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,60040071,, +0e1c80f8-57a1-4c36-a0e2-8d0d68a58fe2,HBCI Commerzbank Filiale Stuttgart 2,COBADEFFXXX,,hbci-commerzbank-adapter,60040075,, +e819155d-7227-4e0a-9ea4-c80ff7c1763b,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF600,,hbci-commerzbank-adapter,60080000,, +1521a964-540e-4058-87f5-557b9863ea49,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF608,,hbci-commerzbank-adapter,60080055,, +5abc7773-0a21-4590-a433-d84556079ce5,HBCI Commerzbank vormals Dresdner Bank Gf Zw 57,DRESDEFF609,,hbci-commerzbank-adapter,60080057,, +7ebb80a4-bb7d-4aa7-b10e-f97ca028b061,HBCI Commerzbank vormals Dresdner Bank ITGK 2,DRESDEFFI50,,hbci-commerzbank-adapter,60080085,, +bad79995-8cfb-4005-a86d-4e2ead5ba3df,HBCI Commerzbank vormals Dresdner Bank Gf PCC-ITGK 3,DRESDEFFI54,,hbci-commerzbank-adapter,60080086,, +6330539a-9b31-4683-8702-9b5a994c063b,HBCI Commerzbank vormals Dresdner Bank PCC DC-ITGK 4,DRESDEFFI57,,hbci-commerzbank-adapter,60080087,, +76974b10-2b90-4afc-8de7-1f625a510d10,HBCI Commerzbank vormals Dresdner Bank PCC DC-ITGK 5,DRESDEFFI58,,hbci-commerzbank-adapter,60080088,, +c76b39de-3af2-473f-81bb-74029bcb0570,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM643,,hbci-unicredit-adapter,70025175,, +8c1611aa-9bcf-4685-83a7-9ed59db87abf,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI21,,hbci-commerzbank-adapter,60089450,, +abfba1f8-655e-4b5c-bdc5-adbb1ba6acd0,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,60241074,, +f220d193-6cd3-4076-9444-aad6bfcb54be,HBCI Commerzbank Sindelfingen,COBADEFFXXX,,hbci-commerzbank-adapter,60340071,, +1b2cdf6e-2107-443e-be9d-ad1778b59110,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF601,,hbci-commerzbank-adapter,60380002,, +5192c228-d5d7-49b1-9508-bfb6904f1bdb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,60440073,, +08bc0f67-01dd-410f-81f1-9484d60f4a01,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF604,,hbci-commerzbank-adapter,60480008,, +5fcd4cc5-efac-44bb-b23a-c42424067fb0,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61040014,, +392b2ee3-9a74-4c6d-a68d-69efb2e01041,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF610,,hbci-commerzbank-adapter,61080006,, +759c0d5d-5509-40da-a38e-55632838890c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61140071,, +2788c2f5-506c-4387-b8c6-fd940d0ceac7,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM259,,hbci-unicredit-adapter,72021876,, +7447363f-13d8-4f55-ae0f-bebd90c8f28a,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF611,,hbci-commerzbank-adapter,61180004,, +d5593e67-ddd8-4814-aa8a-2616386d01bb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61240048,, +8f682a82-5c75-402c-8426-3859b2eeaada,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF612,,hbci-commerzbank-adapter,61281007,, +102d4c24-5939-40d5-b613-ff145720b943,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61340079,, +f363aaaa-c5e8-48c0-853a-2d2b5dc4dd21,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,61440086,, +1c9387ea-dcd3-4141-a09c-b68fd4a8ca84,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF614,,hbci-commerzbank-adapter,61480001,, +cd4c7a6e-0133-4930-9049-b8fe5d09739c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,62040060,, +4966e821-687e-42ff-8c78-bca77a1a69ea,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF620,,hbci-commerzbank-adapter,62080012,, +b082f974-abf1-4c85-be30-43a3bcd8ca43,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,62240048,, +e1939f30-9748-42f6-97a9-3e4a04c99194,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF622,,hbci-commerzbank-adapter,62280012,, +51ad4772-e1b9-41ea-8548-0abe3b504c25,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,63040053,, +a4c05ba4-0d2d-477b-a935-d64627242044,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF630,,hbci-commerzbank-adapter,63080015,, +21320eb1-460d-4c32-b093-4519acfd0f51,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI59,,hbci-commerzbank-adapter,63080085,, +d07f5231-6398-46ac-85ca-6a8443cf7d72,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM272,,hbci-unicredit-adapter,61420086,, +73a12adb-f62b-4ee4-84e6-b200d7e8b09b,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,63240016,, +06fd657b-c4ee-44a9-919f-565671b84bf7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64040033,, +980c83c5-64a0-4813-97b3-d41a6f6d729f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64040045,, +7dcc37dd-4641-4e4e-b95f-64ebbbb28c9e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF640,,hbci-commerzbank-adapter,64080014,, +97c5ba9a-6913-49fc-8900-69ef73baa862,HBCI Commerzbank Tübingen,COBADEFFXXX,,hbci-commerzbank-adapter,64140036,, +312ca533-3ff7-43b6-a27b-165ab917a2a0,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF641,,hbci-commerzbank-adapter,64180014,, +0ac8cef1-dfe8-4583-b054-0962c1cd1a61,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64240048,, +874a69be-a2b5-47d6-a1b1-989d25a8afc2,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,64240071,, +3da5668b-72bb-4a09-8f85-aa350bd31aa6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM461,,hbci-unicredit-adapter,63020086,, +10e326eb-d59d-4078-8c02-8289e57eb57d,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM271,,hbci-unicredit-adapter,63220090,, +439e478b-1058-4d18-b5ab-40c2e664782b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM374,,hbci-unicredit-adapter,64020186,, +37a865ba-98df-43fd-8188-bd6ee6d3fbe0,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM588,,hbci-unicredit-adapter,65020186,, +1a72533b-07f7-420f-93dc-c1ee2ddd3295,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM475,,hbci-unicredit-adapter,66020286,, +1ff08f69-13b8-4f14-86b0-84f04676c886,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM489,,hbci-unicredit-adapter,67020190,, +aa5bee6e-ccc2-4556-8118-7c2391ed0444,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM479,,hbci-unicredit-adapter,67220286,, +9c57ccf4-b116-4b95-b9c2-fed7b8d2e232,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM357,,hbci-unicredit-adapter,68020186,, +36e1e7d6-ff70-4198-a888-204664539053,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM591,,hbci-unicredit-adapter,69020190,, +9e466be6-c76f-49d0-aa0a-c5508a598942,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM590,,hbci-unicredit-adapter,69220186,, +0a169cc5-7187-45a6-b4ec-142bc009d0b8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMMXXX,,hbci-unicredit-adapter,70020270,, +87a79464-0abe-49e1-b6f1-660b6e4b8dbd,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM654,,hbci-unicredit-adapter,70320090,, +87a338cb-cf80-4694-bd36-2e956ba27439,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM466,,hbci-unicredit-adapter,70321194,, +d572cd62-1e61-43b3-b95a-49afe9b5a898,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM410,,hbci-unicredit-adapter,71020072,, +08557592-54fc-4523-8bf2-f62162116062,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM629,,hbci-unicredit-adapter,71021270,, +e8f49fb3-6c41-4631-b2aa-cbe39d8aafbf,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM453,,hbci-unicredit-adapter,71022182,, +4dae8b43-4f3e-4812-a58e-ac8c66265445,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM632,,hbci-unicredit-adapter,71023173,, +910ee6a4-5b44-440b-9bfa-31422c6c7a2c,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM448,,hbci-unicredit-adapter,71120077,, +3f468b14-cadd-42f0-8ce9-456b2ada4bc2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM644,,hbci-unicredit-adapter,71120078,, +2be181c2-c352-4d92-b5c8-cd3abaca3509,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM438,,hbci-unicredit-adapter,71121176,, +7e161864-51b4-44fa-bb9e-58c8dabb47c4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM457,,hbci-unicredit-adapter,71122183,, +cc9036c7-6183-458f-85db-bf2cd1f3610e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM426,,hbci-unicredit-adapter,72120078,, +339882aa-7694-4fc1-82da-52b3f0ad6420,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM665,,hbci-unicredit-adapter,72122181,, +a6254720-b115-44e1-bc06-708b00c7e141,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM255,,hbci-unicredit-adapter,72220074,, +5554cff6-a7b5-4485-8f33-566d7b17eb7f,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM263,,hbci-unicredit-adapter,72223182,, +e156e835-6266-4f8c-826a-dfadc47e5e1d,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM428,,hbci-unicredit-adapter,73320073,, +cdff3520-740d-4809-9681-d160eae4ff46,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM567,,hbci-unicredit-adapter,73321177,, +881bc682-f402-4bdf-90fc-65a6f08f31a2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM570,,hbci-unicredit-adapter,73322380,, +acd5aa8f-7171-42d3-bdb6-2532e07dbcb8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM427,,hbci-unicredit-adapter,73420071,, +6d2b0926-b5d8-4342-811b-3deab2651617,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM666,,hbci-unicredit-adapter,73421478,, +ca665f3c-558c-4972-8926-c042046694ed,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM445,,hbci-unicredit-adapter,74020074,, +08209b56-c1dc-4144-a349-e4e544e91ae5,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM415,,hbci-unicredit-adapter,74120071,, +3f12c4bf-0a4b-49ca-a9b2-3b147cfb19fe,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM452,,hbci-unicredit-adapter,74220075,, +9c2a057e-05b4-4ea6-a2dd-3378112165fb,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM675,,hbci-unicredit-adapter,74221170,, +81d49af4-9800-4941-98a0-59eb45bb91b8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM433,,hbci-unicredit-adapter,74320073,, +d1cc1992-5361-4540-b8be-864524553eaa,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM447,,hbci-unicredit-adapter,75020073,, +50cd27ad-33b4-4384-9eae-858dcc0faaa4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM804,,hbci-unicredit-adapter,75021174,, +be4e14f4-d9a5-477f-93d5-60a348831fff,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM405,,hbci-unicredit-adapter,75220070,, +1d28ea4e-37b0-40f2-8757-0b0169f9998b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM454,,hbci-unicredit-adapter,75320075,, +a085f9df-916f-43c3-bf6e-c176ec4aaf43,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM460,,hbci-unicredit-adapter,76020070,, +ddba6975-111a-4582-a0d7-405e30d2d6a0,HBCI UniCredit Bank - HypoVereinsbank Prepaid Card,HYVEDEMMCAR,,hbci-unicredit-adapter,76020099,, +29a2b1e4-ef89-4da0-8ae4-f5523bead73a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM419,,hbci-unicredit-adapter,76220073,, +2341e9cc-b038-406e-bdbd-a8238e5487db,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM417,,hbci-unicredit-adapter,76320072,, +c03155eb-5b4a-4972-9db4-0376f698bbd5,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM065,,hbci-unicredit-adapter,76420080,, +f64a5331-c2be-4d09-8ded-e950ce9cfc8e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM406,,hbci-unicredit-adapter,76520071,, +d2995cb1-ce58-4aaf-b9fd-db7850656b60,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM411,,hbci-unicredit-adapter,77020070,, +9a289d60-5729-456e-879a-e8f9eb7c1f3b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM289,,hbci-unicredit-adapter,77120073,, +2af5bfa9-9e6c-4ac0-b1d4-484fd018e45f,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66440084,, +bd6dd751-167d-496b-a88a-363b292c022e,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66640035,, +005179dd-119b-4d60-86b4-e95b78be6ed1,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF666,,hbci-commerzbank-adapter,66680013,, +81404c13-4815-41a1-8404-b30964f3cc5a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,67040031,, +f74f26a2-264b-471f-8f3d-6a002d7b46d3,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,67040060,, +1bc9d918-1410-495a-87b9-efffa8a6dca5,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,67040061,, +0b2e5271-8cdc-40cf-b72b-0a505d271e12,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,67040085,, +65c353df-b159-4817-b509-d0dc6e7dc492,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF670,,hbci-commerzbank-adapter,67080050,, +75be4e68-4f58-4cfc-8c24-80ac2980233b,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFI60,,hbci-commerzbank-adapter,67080085,, +446cdd2c-c0d0-4e22-b7c5-e6ab92eec0dc,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 3,DRESDEFFI61,,hbci-commerzbank-adapter,67080086,, +41819604-b2aa-4bf5-a7cf-1c91e2dc9553,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI22,,hbci-commerzbank-adapter,67089440,, +beb053ae-ab0b-4e95-8da1-dc94f6e67399,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,67240039,, +67a73060-13f6-4816-86ab-7c495c61ac28,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF672,,hbci-commerzbank-adapter,67280051,, +51761a4d-825d-49f9-97a7-bdd63931be19,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,68040007,, +0a64d175-11bc-4b7a-a6b7-5895f684d66f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF680,,hbci-commerzbank-adapter,68080030,, +1ed3a524-ed46-4266-a2c8-2d9785230d5c,HBCI Commerzbank vormals Dresdner Bank Zw Münsterstraße,DRESDEFFI44,,hbci-commerzbank-adapter,68080031,, +1deef22a-1947-4816-89ce-baada03a83ea,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFI62,,hbci-commerzbank-adapter,68080085,, +a3588a06-ac1a-4323-ba14-50a4b8ff51d3,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ22,,hbci-commerzbank-adapter,68080086,, +ab6addf8-46f3-4207-acc9-50984abf14ab,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,68340058,, +a39018db-f8fe-40da-b405-7a66d862e953,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,69040045,, +d3527d48-93d7-455e-8e92-584b4fa416f7,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,69240075,, +02f2d166-797c-4cf9-a5da-99419a9148fc,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF692,,hbci-commerzbank-adapter,69280035,, +c502033b-162a-4414-99a0-c43db27383d2,HBCI Commerzbank Villingen u Schwenningen,COBADEFFXXX,,hbci-commerzbank-adapter,69440007,, +32eada1d-165d-4d07-ad7d-4093346f0fc5,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,69440060,, +689fd6f6-5200-402d-92c6-35e6a6886abb,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,70040041,, +68e2d3eb-9e66-48b1-991a-a0da042627f9,HBCI Commerzbank Filiale München 2,COBADEFFXXX,,hbci-commerzbank-adapter,70040045,, +8be54675-10cb-4dba-b0c8-3867aa9898f5,HBCI Commerzbank GF-M48,COBADEFFXXX,,hbci-commerzbank-adapter,70040048,, +026b5334-45df-4345-99ee-b7f111698c4d,HBCI Commerzbank Gf 860,COBADEFFXXX,,hbci-commerzbank-adapter,70040060,, +6c193bcc-a4de-4cda-9c22-b65b888aa213,HBCI Commerzbank Gf 861,COBADEFFXXX,,hbci-commerzbank-adapter,70040061,, +fead2140-96ca-4f2a-93ee-e18b06554b33,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,70040062,, +405920a2-3569-4227-9b6c-8c44bbb6f5cf,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,70040063,, +17c6e93c-30d4-4ab1-8bb2-52bf86559c5a,HBCI Commerzbank CC SP,COBADEFFXXX,,hbci-commerzbank-adapter,70040070,, +cee1b420-a67a-4faa-8a39-88121b62393b,HBCI Commerzbank Service-BZ,COBADEFFXXX,,hbci-commerzbank-adapter,70045050,, +c421efb0-27c4-4c76-8533-7c6c01d17680,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF700,,hbci-commerzbank-adapter,70080000,, +a8e60cdf-a338-4f93-90ce-ac8330e0c221,HBCI Commerzbank vormals Dresdner Bank Zw 56,DRESDEFF714,,hbci-commerzbank-adapter,70080056,, +3a691a58-b39c-4911-b47d-e52f5a71ae23,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF724,,hbci-commerzbank-adapter,70080057,, +2f67a7fd-2569-4197-bd2a-8c2faadedb0e,HBCI Commerzbank vormals Dresdner Bank Gf PCC DCC-ITGK 3,DRESDEFFI55,,hbci-commerzbank-adapter,70080085,, +9b48f203-ded2-438c-8312-2bb04bc28b40,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 4,DRESDEFFJ23,,hbci-commerzbank-adapter,70080086,, +7b74686e-0a25-4190-9a70-a050acf63d28,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 5,DRESDEFFJ24,,hbci-commerzbank-adapter,70080087,, +c507adc0-c282-4e61-ae4a-061f5800bc1d,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 6,DRESDEFFJ25,,hbci-commerzbank-adapter,70080088,, +05d18638-2533-4c2e-8bd5-78236d54fe09,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM412,,hbci-unicredit-adapter,77320072,, +40e14418-1ef1-4709-8b3c-2303a5488d22,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF643,,hbci-commerzbank-adapter,64380011,, +72c8d20b-3dc2-41b1-b480-e914def8de62,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65040073,, +1de858b3-d69b-44c6-9236-704862f49a94,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF650,,hbci-commerzbank-adapter,65080009,, +03498821-66a9-4742-94d0-5bb687f4cbc9,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65140072,, +9536ef1d-c653-496f-82a1-c5a7d84646fd,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF651,,hbci-commerzbank-adapter,65180005,, +98637a2d-0c5c-45b5-ab02-9481fb2381a5,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65340004,, +16e36f38-ac48-4f31-9c6e-66437c23c306,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65341204,, +1d2a22fd-7477-4bc0-be46-a8047af4f282,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF653,,hbci-commerzbank-adapter,65380003,, +e5d84ef2-ab10-4ce7-9527-b405e085fbfd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,65440087,, +70d70900-77ba-44cb-9e76-1cb3b27285d6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66040018,, +70863846-25fd-48ce-ade1-01954b5c2689,HBCI Commerzbank/Kreditcenter Badenia,COBADEFFXXX,,hbci-commerzbank-adapter,66040026,, +2c103bc5-33a9-4f3c-80ca-96b0bc53a6a6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF660,,hbci-commerzbank-adapter,66080052,, +91330c25-996e-4965-abb3-313351052331,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66240002,, +14cce20c-b088-4415-9420-1c69b1c2ffa9,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF662,,hbci-commerzbank-adapter,66280053,, +ee1e001d-510b-4f2d-a9f2-4dd6e2e25520,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,66340018,, +60a8c307-10c0-441b-9370-026ad4a76555,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI23,,hbci-commerzbank-adapter,70089470,, +42a9fec1-df88-49cd-9468-e92d9c253ecd,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI45,,hbci-commerzbank-adapter,70089472,, +78251473-a5f0-4a18-84e7-e93e967fea79,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF703,,hbci-commerzbank-adapter,70380006,, +e04d78ee-fd8d-4b7a-9cfc-fcdddb662172,HBCI Commerzbank Rosenheim,COBADEFFXXX,,hbci-commerzbank-adapter,71140041,, +00196564-aefb-41ca-88b4-ffb36d35e890,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,71141041,, +ef68ce04-76be-44f4-8b9a-3d74ffbb2683,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,71142041,, +e871c27e-b71e-459c-b8ff-d864e0281680,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF711,,hbci-commerzbank-adapter,71180005,, +5e91409b-33e1-46eb-b2f1-c787a1e9cbfd,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,72040046,, +50b27eb7-27bb-40e1-bf09-03d0de94b0ac,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF720,,hbci-commerzbank-adapter,72080001,, +ab39cc25-748a-485f-bbe6-101672191bf1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,72140052,, +895fc679-4a13-46e4-b659-3867fa2d5c12,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF721,,hbci-commerzbank-adapter,72180002,, +00f32218-481e-4299-b679-98079d8e71fe,HBCI Commerzbank Memmingen,COBADEFFXXX,,hbci-commerzbank-adapter,73140046,, +ae6def30-d745-4933-83d1-e4dbca71e854,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF731,,hbci-commerzbank-adapter,73180011,, +6f2f8eca-6ff6-4b20-819f-0982bc146965,HBCI Commerzbank Kempten Allgäu,COBADEFFXXX,,hbci-commerzbank-adapter,73340046,, +d74ba0ea-709a-40ee-bf6f-835b90436e41,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF733,,hbci-commerzbank-adapter,73380004,, +72638a65-f57e-4c49-ad9a-3409620291f3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,73440048,, +ac56f83f-fe47-45df-9108-5c07b9e1f507,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF734,,hbci-commerzbank-adapter,73480013,, +b458f28a-4bc4-45d4-a1db-f7ca4c484c3c,HBCI Commerzbank Passau,COBADEFFXXX,,hbci-commerzbank-adapter,74040082,, +f01ca125-55e9-47d7-8440-ef49b93f1c44,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,74140048,, +4a50b533-23cf-4460-8260-0f19cc4c7e5e,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF741,,hbci-commerzbank-adapter,74180009,, +3f90fb41-fe52-4491-803a-00971108172f,HBCI Commerzbank Straubing,COBADEFFXXX,,hbci-commerzbank-adapter,74240062,, +0c77fe0b-544a-4a04-a8aa-124a31af0686,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,74340077,, +f3e32b91-88ac-4cda-b19d-d78cc7a21525,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF743,,hbci-commerzbank-adapter,74380007,, +3913b6e4-18fe-4826-a5e0-48bc287176bc,HBCI Commerzbank Regensburg,COBADEFFXXX,,hbci-commerzbank-adapter,75040062,, +5fa7823d-0738-4d7c-a16f-6c5f155acb42,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF750,,hbci-commerzbank-adapter,75080003,, +253b3a8c-da3e-49db-bcb8-1e03cdaf1896,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,75240000,, +0091011b-34c4-41e8-a5ff-fdfa9aa9d856,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,75340090,, +7159c9e2-4677-4590-b424-4298f9e0aa05,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,76040060,, +232effcb-adc1-4445-a4b5-2fb388fc1c23,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,76040061,, +2646c42d-0e73-406b-b593-b2aa1ae4adfe,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,76040062,, +4639f749-0bcb-467b-847e-b03c0c5b90a1,HBCI Commerzbank Filiale Nürnberg 2,COBADEFFXXX,,hbci-commerzbank-adapter,76040065,, +8e8c88aa-d487-41cd-bc85-e04fdc264a7c,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF760,,hbci-commerzbank-adapter,76080040,, +df60e195-9a77-43fb-989b-726fcd7a6cd5,HBCI Commerzbank vormals Dresdner Bank Zw 53,DRESDEFFAGI,,hbci-commerzbank-adapter,76080053,, +eb7dd115-c4df-4f7f-90cb-6d99cbb17e3e,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFFI25,,hbci-commerzbank-adapter,76080055,, +b2aaf312-7a1c-44e7-b297-835178095901,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ26,,hbci-commerzbank-adapter,76080085,, +4157866c-4742-4690-a7d8-fc834088188c,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ27,,hbci-commerzbank-adapter,76080086,, +8ccc6f4c-4285-4701-90af-f967de8cffd2,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI24,,hbci-commerzbank-adapter,76089480,, +7f017f27-e9ae-46e6-b4ac-abc47e08c4bc,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI46,,hbci-commerzbank-adapter,76089482,, +9e90745f-a5db-437e-93e3-7f6c0522fd27,HBCI Commerzbank Fürth Bayern,COBADEFFXXX,,hbci-commerzbank-adapter,76240011,, +7f006b66-35ea-43a5-8b52-dec88d71ae05,HBCI Commerzbank Erlangen,COBADEFFXXX,,hbci-commerzbank-adapter,76340061,, +c7e9dfa1-f6e8-4633-aaeb-8735a7e9d059,HBCI Commerzbank Bamberg,COBADEFFXXX,,hbci-commerzbank-adapter,77040080,, +4cb562ea-bfc2-4eb5-88a2-e8156fcaf9e3,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,77140061,, +a4e948a3-a5f5-42c5-8548-fd0d17f354f0,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,77340076,, +40b9d899-cf42-412a-b9e3-eb976e461b36,HBCI Commerzbank Hof Saale,COBADEFFXXX,,hbci-commerzbank-adapter,78040081,, +2cd41911-7016-4dae-a9e5-46a98b51e342,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,78140000,, +290946e6-fd5c-4eb0-a7d6-b83f0003d036,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,78340091,, +c2c7507e-2932-4a48-999a-b83e72fa8ea3,HBCI Commerzbank Würzburg,COBADEFFXXX,,hbci-commerzbank-adapter,79040047,, +90a0e5e7-1104-408b-954a-20e8fa375260,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF790,,hbci-commerzbank-adapter,79080052,, +dd775c66-6b5f-493f-81fd-81cc6c7a6988,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ28,,hbci-commerzbank-adapter,79080085,, +8e4e4991-b3cd-45cc-a1f7-1cf3746eb2fb,HBCI Commerzbank Schweinfurt,COBADEFFXXX,,hbci-commerzbank-adapter,79340054,, +81571092-76fc-43c0-9595-a4d5b029afba,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF793,,hbci-commerzbank-adapter,79380051,, +e42195a3-1d99-4a1a-b105-ce6e1d0307c1,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,79540049,, +16cbf52b-841d-4645-a25c-cda3ccfe59f2,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF795,,hbci-commerzbank-adapter,79580099,, +e43a67cf-e641-4271-9754-38b0d379caa2,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI47,,hbci-commerzbank-adapter,79589402,, +540561c0-ffe5-424d-acff-b18d30ae93b2,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,80040000,, +2031d8f0-e3fe-4d97-a9c0-96262028acf6,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF800,,hbci-commerzbank-adapter,80080000,, +de60c967-b6ab-4e4a-a3e3-270d61ac10d8,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,81040000,, +9e914389-ec8b-4a18-b3bb-e803939dfc16,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF810,,hbci-commerzbank-adapter,81080000,, +626a6050-44df-45c8-8652-a3b1daddcf4c,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,82040000,, +cdcac96d-623c-44b4-badf-bdb3db976e22,HBCI Commerzbank Gf Web-K,COBADEFFXXX,,hbci-commerzbank-adapter,82040085,, +1eb138bf-05e2-4d87-9cd5-3f5f3922411a,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF827,,hbci-commerzbank-adapter,82080000,, +0cfbaa33-5989-4248-bc84-42cb2874fbd6,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,83040000,, +c033faaa-4ea5-4c39-9d79-41a6033c0d32,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF830,,hbci-commerzbank-adapter,83080000,, +c7de93b6-9f56-460a-a1f4-054a10fe3c75,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,84040000,, +b3b981b4-6c49-4188-a5d7-e2833d8d1b31,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF843,,hbci-commerzbank-adapter,84080000,, +a00d03da-3710-4a85-9359-cc35488d3122,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,85040000,, +a3c927c5-836d-4960-aa78-e5e648103835,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,85040060,, +92ed94e0-817e-4149-93e8-189cb35ecc62,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,85040061,, +8df5c84a-e856-4f91-9492-c11a05b35088,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF850,,hbci-commerzbank-adapter,85080000,, +5998edeb-89d1-48e7-8fa6-a43ab4faa695,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ29,,hbci-commerzbank-adapter,85080085,, +c0e247c5-9779-49f6-b59e-5ba332077d27,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ30,,hbci-commerzbank-adapter,85080086,, +0637a8a6-c677-49f7-8eb4-d67d6132e5ff,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF857,,hbci-commerzbank-adapter,85080200,, +d03f8dfe-9ec8-48e1-813f-f8a7ae2ca34e,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI15,,hbci-commerzbank-adapter,85089270,, +a527071d-73b6-4f31-bd51-8137aa1cde81,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,86040000,, +54b89e01-8c34-4ac5-b6ff-1299358d29d8,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,86040060,, +4cb4247b-d91a-4603-ae3a-918c0f641ae5,HBCI Commerzbank CC,COBADEFFXXX,,hbci-commerzbank-adapter,86040061,, +1016d373-4455-4b36-8899-5b521581a62f,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF860,,hbci-commerzbank-adapter,86080000,, +cf67241b-be29-4eec-abd0-295aee988cf6,HBCI Commerzbank vormals Dresdner Bank Zw 55,DRESDEFF862,,hbci-commerzbank-adapter,86080055,, +86f201c4-04c9-4745-b030-caf7dabb3940,HBCI Commerzbank vormals Dresdner Bank Gf ZW 57,DRESDEFF867,,hbci-commerzbank-adapter,86080057,, +c5e57e21-41c4-4b48-8aaf-f8d436e9cd6b,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 1,DRESDEFFJ31,,hbci-commerzbank-adapter,86080085,, +89ca1f2e-65bd-4c32-ab2b-0488ecf617cd,HBCI Commerzbank vormals Dresdner Bank PCC DCC-ITGK 2,DRESDEFFJ32,,hbci-commerzbank-adapter,86080086,, +dd3509d9-fb84-4ed3-b687-72986cd73d3b,HBCI Commerzbank vormals Dresdner Bank ITGK,DRESDEFFI16,,hbci-commerzbank-adapter,86089280,, +a8c4338c-c658-414c-98c4-07e263fdd27a,HBCI Commerzbank,COBADEFFXXX,,hbci-commerzbank-adapter,87040000,, +12935bb2-4c42-42d6-84ca-ad49ce5e3172,HBCI Commerzbank vormals Dresdner Bank,DRESDEFF870,,hbci-commerzbank-adapter,87080000,, +1cfbc380-aa26-4d43-b175-16c7e2bad7ad,HBCI Consors Finanz BNP Paribas S.A. Niederlassung Deutschland,WKVBDEM1XXX,,hbci-verlag-adapter,70020300,, +671a697d-3c31-44b2-b53a-fedf55b1bf05,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM483,,hbci-unicredit-adapter,54520194,, +4ba349a2-3676-4e9c-9f11-4ea0cd84b11b,HBCI TARGOBANKi AG,CMCIDEDDXXX,,hbci-verlag-adapter,30020900,, +af77f3ac-349f-4153-9847-a9a1585450f1,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM620,,hbci-unicredit-adapter,54620093,, +50bec5bd-4c94-444f-a886-7d00224bf061,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM486,,hbci-unicredit-adapter,55020486,, +d0afd077-0157-4f2c-ad09-e7ab36fdb51f,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM515,,hbci-unicredit-adapter,56020086,, +9dc21edf-4219-4ddb-8878-9718d6f01330,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM401,,hbci-unicredit-adapter,57020086,, +b8a3a9fb-03f2-4c2a-a5b2-13861307ee72,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM437,,hbci-unicredit-adapter,58520086,, +7f4d381c-90ad-49b6-a06b-21a9d532ee2a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM432,,hbci-unicredit-adapter,59020090,, +3cc6bf8b-6fdd-40b7-915c-e1f3e5353ad9,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM838,,hbci-unicredit-adapter,59320087,, +f6662096-25ce-4dfc-ad7f-34a7da8fb199,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM473,,hbci-unicredit-adapter,60020290,, +238dc3a7-3358-4b54-97c2-8071f20df47d,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM858,,hbci-unicredit-adapter,60320291,, +ee012b45-6ec5-4a2d-8c6e-57c700c865f6,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM860,,hbci-unicredit-adapter,60420186,, +ac2f3b14-6eb8-4d24-a26a-b93a9b9c9df3,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM859,,hbci-unicredit-adapter,61120286,, +052e5213-a7f9-4c71-b7f8-d43045ea920e,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM424,,hbci-unicredit-adapter,78020070,, +dccc64af-5cce-42ab-93bc-e9b45d46b6e4,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM480,,hbci-unicredit-adapter,78320076,, +b5638130-4237-45e0-9860-56f4e454d418,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM455,,hbci-unicredit-adapter,79020076,, +0c31c211-911f-4e31-81ab-773788b32413,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM451,,hbci-unicredit-adapter,79320075,, +fe729a68-b5cf-42f0-926f-85150202ddda,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM407,,hbci-unicredit-adapter,79520070,, +839b1363-123d-4e85-8f35-35ea8b88a4c2,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM440,,hbci-unicredit-adapter,80020086,, +be3eceba-1c00-4be2-a183-50e3118a8e94,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM462,,hbci-unicredit-adapter,80020087,, +95302dc8-db32-4ac5-a7ae-5522b69cc86d,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM498,,hbci-unicredit-adapter,82020086,, +d203ac37-16c2-486b-9dbd-2e88d315ee4c,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM098,,hbci-unicredit-adapter,82020087,, +3dd0d735-b841-4148-8169-3183b19eb3f8,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM824,,hbci-unicredit-adapter,82020088,, +94b80d80-24dc-46c5-8fe7-c0ee913604d5,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM468,,hbci-unicredit-adapter,83020086,, +0d1d740e-63ef-4241-9f8d-9419cb438b66,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM463,,hbci-unicredit-adapter,83020087,, +7fcac28f-5d85-4556-bc83-97eb1b01e550,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM484,,hbci-unicredit-adapter,83020088,, +990bdb7b-2cfc-4975-b535-e6e3e5bbea32,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM458,,hbci-unicredit-adapter,84020087,, +edab3fb8-8237-4f9d-b3d5-3d52ce343029,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM496,,hbci-unicredit-adapter,85020086,, +03452069-e4d6-4fd2-9915-015a6487bb7b,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM495,,hbci-unicredit-adapter,86020086,, +d6690568-e58f-4944-938c-0c79cf18801a,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM497,,hbci-unicredit-adapter,87020086,, +cf1d04c9-7e0b-488b-93d2-8d91be54d156,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM481,,hbci-unicredit-adapter,87020087,, +c8cda851-3907-4540-80c3-43c82d80d210,HBCI UniCredit Bank - HypoVereinsbank,HYVEDEMM441,,hbci-unicredit-adapter,87020088,, +7b42c5e4-7c9a-46fb-a6f0-086ea48588dc,HBCI Berliner Sparkasse,BELADEBEXXX,,hbci-sparkasse-adapter,10050000,, +8b29bd63-4b5f-4159-8943-63624e480013,HBCI S-Kreditpartner,,,hbci-sparkasse-adapter,10050020,, +1b27dea5-3cc7-49d6-8bcc-1453cf99058e,HBCI Weberbank,,,hbci-sparkasse-adapter,10120100,, +7cb82367-f0ed-4e15-bca7-5ffc51eb30af,HBCI OstseeSparkasse Rostock,NOLADE21ROS,,hbci-sparkasse-adapter,13050000,, +1a1fe2ba-fe94-4e40-907b-c95e8f42e0b1,HBCI SPK Mecklenburg-Nordwest,NOLADE21WIS,,hbci-sparkasse-adapter,14051000,, +3bff427a-dc5f-4ae9-844d-0e6532c688fa,HBCI SPK Parchim-Lübz,NOLADE21PCH,,hbci-sparkasse-adapter,14051362,, +b8ee9603-04ec-4d1e-ad0b-eff95f0f4a0a,HBCI SPK Emden,BRLADE21EMD,,hbci-sparkasse-adapter,28450000,, +f986f0cd-d277-45f9-9989-fbd356b96631,HBCI SPK Mecklenburg-Schwerin,NOLADE21LWL,,hbci-sparkasse-adapter,14052000,, +220b28ac-7d23-4e8b-b4da-6768223514e8,HBCI Müritz-Sparkasse,NOLADE21WRN,,hbci-sparkasse-adapter,15050100,, +8052fd60-1309-4c7f-823d-7e7d0672b908,HBCI SPK Neubrandenburg-Demmin,NOLADE21NBS,,hbci-sparkasse-adapter,15050200,, +cc68cfd0-75d8-4aa7-bde7-6678d9e218ab,HBCI SPK Uecker-Randow,NOLADE21PSW,,hbci-sparkasse-adapter,15050400,, +2279fba1-8c1a-4d27-a970-8a1cefa6ceac,HBCI SPK Vorpommern,NOLADE21GRW,,hbci-sparkasse-adapter,15050500,, +e7274685-17e4-46bd-bafa-91df74f4a3af,HBCI SPK Mecklenburg-Strelitz,NOLADE21MST,,hbci-sparkasse-adapter,15051732,, +f553ad98-8a6b-4356-9886-6b9fb18ddfd7,HBCI Mittelbrandenburgische SPK in Potsdam,WELADED1PMB,,hbci-sparkasse-adapter,16050000,, +fa3f97b2-e9af-4fdb-8362-279de0fb1560,HBCI SPK Prignitz,WELADED1PRP,,hbci-sparkasse-adapter,16050101,, +d2331942-0296-47e6-b331-49a7ee3ffc48,HBCI SPK Ostprignitz-Ruppin,WELADED1OPR,,hbci-sparkasse-adapter,16050202,, +00a4a74e-4c8c-44a9-ae86-d4789a6197c3,HBCI SPK Barnim,WELADED1GZE,,hbci-sparkasse-adapter,17052000,, +1123d063-7a26-4609-9d69-b33522e06c01,HBCI SSK Schwedt,WELADED1UMX,,hbci-sparkasse-adapter,17052302,, +e7095405-9116-4d2e-89c7-319d467e6edc,HBCI KSK Märkisch-Oderland,WELADED1MOL,,hbci-sparkasse-adapter,17054040,, +19bce89f-dbcd-4056-9b90-2b9a0de36195,HBCI SPK Oder-Spree,WELADED1LOS,,hbci-sparkasse-adapter,17055050,, +74403c7e-3ff1-4c1d-b942-00ea033504a3,HBCI SPK Uckermark,WELADED1UMP,,hbci-sparkasse-adapter,17056060,, +efcb15d4-7d44-4170-8e1c-96e5966ceae6,HBCI SPK Spree-Neiße,WELADED1CBN,,hbci-sparkasse-adapter,18050000,, +aab8daa2-4b8d-4bc4-a688-b06a2b1d4bc5,HBCI SPK Elbe-Elster,WELADED1EES,,hbci-sparkasse-adapter,18051000,, +10fa6026-ce9a-4dd2-a091-fc85cb61ccbf,HBCI SPK Niederlausitz,WELADED1OSL,,hbci-sparkasse-adapter,18055000,, +0b34d6f4-434e-4863-9bd3-54f86b2be6f6,HBCI Hamburger Sparkasse,HASPDEHHXXX,,hbci-sparkasse-adapter,20050550,, +70b671a4-6dd3-4a2d-8edc-7f6992897601,HBCI SPK Harburg-Buxtehude,NOLADE21HAM,,hbci-sparkasse-adapter,20750000,, +93e34a6d-7d36-4dda-b9eb-1677bbab7431,HBCI Förde SPK,NOLADE21KIE,,hbci-sparkasse-adapter,21050170,, +c794cbfb-24a4-4fd7-99e9-692dfc2d8ee2,HBCI Bordesholmer Sparkasse AG,NOLADE21BOR,,hbci-sparkasse-adapter,21051275,, +e8fdfd58-2ca5-4fba-bea8-4847d898c093,HBCI SPK Holstein,NOLADE21HOL,,hbci-sparkasse-adapter,21352240,, +a7abd583-c433-4baf-9582-543d086fe424,HBCI SPK Mittelholstein AG,NOLADE21RDB,,hbci-sparkasse-adapter,21450000,, +53e3fb3a-19ea-4f63-aad6-34a428ccf680,HBCI Nord-Ostsee SPK,NOLADE21NOS,,hbci-sparkasse-adapter,21750000,, +b6c81cce-6bd7-4361-a42a-d1ba7850ebdf,HBCI SPK Elmshorn,NOLADE21ELH,,hbci-sparkasse-adapter,22150000,, +b2b27610-b9a8-4067-b024-48c3c2087b1e,HBCI SSK Wedel,NOLADE21WED,,hbci-sparkasse-adapter,22151730,, +e7229465-b937-449a-9b0b-9f4104c21641,HBCI SPK Westholstein,NOLADE21WHO,,hbci-sparkasse-adapter,22250020,, +3e472bac-61e0-4b73-9078-55329ae94100,HBCI SPK zu Lübeck AG,NOLADE21SPL,,hbci-sparkasse-adapter,23050101,, +03847d76-d122-4fb7-bdd4-28174bb6e2ea,HBCI SPK Südholstein,NOLADE21SHO,,hbci-sparkasse-adapter,23051030,, +356fd401-d880-460d-af30-eae1b33d08d7,HBCI KSK Herzogtum Lauenburg,NOLADE21RZB,,hbci-sparkasse-adapter,23052750,, +aa87d1de-6b17-4ca9-8d13-e115742b6815,HBCI SPK Lüneburg,NOLADE21LBG,,hbci-sparkasse-adapter,24050110,, +b5d6f20d-e576-4247-853d-e70a58979744,HBCI SSK Cuxhaven,BRLADE21CUX,,hbci-sparkasse-adapter,24150001,, +42e4469f-b85c-4216-b9cf-d8db0b05aa46,HBCI SPK Stade - Altes Land,NOLADE21STS,,hbci-sparkasse-adapter,24151005,, +5ca41eeb-ab08-4243-a2c8-b5c3bfb1016d,HBCI KSK Stade,NOLADE21STK,,hbci-sparkasse-adapter,24151116,, +ebda6652-b093-4635-8117-cecfef0441bf,HBCI SPK Rotenburg Osterholz,BRLADE21ROB,,hbci-sparkasse-adapter,24151235,, +aa6d0013-2161-416a-8277-c5445556da85,HBCI Spar- und Bauverein,,,hbci-sparkasse-adapter,25007957,, +4b10d956-d287-4c6d-93ff-056655ada77b,HBCI NORD/LB,,,hbci-sparkasse-adapter,25050000,, +a9c40228-5f23-4c8c-901a-03233cc7331a,HBCI Investitionsbank Sachsen-Anhalt,,,hbci-sparkasse-adapter,25050002,, +b71c467e-b67c-46a5-98c2-2bca339ad2af,HBCI Landesförderinst. Mecklenburg-Vorpommern,,,hbci-sparkasse-adapter,25050003,, +d91515fa-50a7-4719-8aad-79d09b1dd40e,HBCI Investitionsbank Sachsen-Anhalt,,,hbci-sparkasse-adapter,25050064,, +b4cc81d8-3c6a-40bd-b082-8f200807c239,HBCI SPK Hannover,SPKHDE2HXXX,,hbci-sparkasse-adapter,25050180,, +ce996e29-e168-465e-bf1b-32fb20f31164,HBCI SSK Barsinghausen,NOLADE21BAH,,hbci-sparkasse-adapter,25151270,, +16ec49a4-61bf-44c3-8d0f-9c47015cc362,HBCI SSK Burgdorf,NOLADE21BUF,,hbci-sparkasse-adapter,25151371,, +32b4581d-0b3d-4d61-aad9-81c8ee84b6b1,HBCI KSK Walsrode,NOLADE21WAL,,hbci-sparkasse-adapter,25152375,, +00617a38-3aba-44d4-a717-61c566f17467,HBCI SSK Wunstorf,NOLADE21WST,,hbci-sparkasse-adapter,25152490,, +7b1eee7d-b006-46fa-baa5-7c3b49dbc9c3,HBCI SPK Hameln-Weserbergland,NOLADE21SWB,,hbci-sparkasse-adapter,25450110,, +bc203d8b-695d-4797-abcb-95b243a0fa71,HBCI SSK Bad Pyrmont,NOLADE21PMT,,hbci-sparkasse-adapter,25451345,, +6f83e24c-5f9c-4937-8d61-385458a20f35,HBCI SPK Schaumburg,NOLADE21SHG,,hbci-sparkasse-adapter,25551480,, +18a58dcd-5869-416d-887a-6b66d4140a1e,HBCI SPK Nienburg,NOLADE21NIB,,hbci-sparkasse-adapter,25650106,, +b328a931-a920-4435-a3c5-78c05a996019,HBCI KSK Grafschaft Diepholz,BRLADE21DHZ,,hbci-sparkasse-adapter,25651325,, +05e61010-41e3-427d-bd98-2647ddd32ac9,HBCI SPK Celle,NOLADE21CEL,,hbci-sparkasse-adapter,25750001,, +537c9618-32bc-42a6-adb4-3e3520b0de52,HBCI SPK Uelzen Lüchow-Dannenberg,NOLADE21UEL,,hbci-sparkasse-adapter,25850110,, +cf644552-b2f4-4f62-9d69-51db5558dc3d,HBCI KSK Soltau,NOLADE21SOL,,hbci-sparkasse-adapter,25851660,, +573fad96-12ed-48b0-90e9-428f107864c9,HBCI SPK Hildesheim Goslar Peine,NOLADE21HIK,,hbci-sparkasse-adapter,25950130,, +f510af05-a28f-491b-b4ad-a0f3e55bcf1c,HBCI SPK Göttingen,NOLADE21GOE,,hbci-sparkasse-adapter,26050001,, +a126c326-8dd7-49dc-9a41-38d2a2a08ba4,HBCI SPK Duderstadt,NOLADE21DUD,,hbci-sparkasse-adapter,26051260,, +d5d48d70-cac6-4bf7-9a58-e2f1f26a7590,HBCI SPK Münden,NOLADE21HMU,,hbci-sparkasse-adapter,26051450,, +df5b6b32-b3d9-44d4-bc39-e6b4f323befa,HBCI KSK Northeim,NOLADE21NOM,,hbci-sparkasse-adapter,26250001,, +c9854fc8-c77e-4541-811b-b61e522496aa,HBCI SPK Einbeck,NOLADE21EIN,,hbci-sparkasse-adapter,26251425,, +908f9f7d-f528-484e-85c1-82b15aa65db3,HBCI SPK Osterode am Harz,NOLADE21HZB,,hbci-sparkasse-adapter,26351015,, +cdb58893-0e88-4f2b-853a-3fd56e1c2637,HBCI SSK Bad Sachsa,NOLADE21SAC,,hbci-sparkasse-adapter,26351445,, +a3fbc22f-8ec9-4ad3-bcb7-def6ac8a8423,HBCI SPK Osnabrück,NOLADE22XXX,,hbci-sparkasse-adapter,26550105,, +da19fd81-aee8-4f6c-a455-c83fe6478ca3,HBCI KSK Bersenbrück,NOLADE21BEB,,hbci-sparkasse-adapter,26551540,, +c47fd7a2-3a39-4f74-b11c-e3174b62cbe4,HBCI KSK Melle,NOLADE21MEL,,hbci-sparkasse-adapter,26552286,, +5667f38b-fc71-41a2-83ec-47ae5904a7df,HBCI SPK Emsland,NOLADE21EMS,,hbci-sparkasse-adapter,26650001,, +473c7684-353d-4364-a8e6-c209a2354351,HBCI KSK Nordhorn,NOLADE21NOH,,hbci-sparkasse-adapter,26750001,, +fe612fe3-6f74-4ee0-b46c-32b47e264563,HBCI SPK Gifhorn-Wolfsburg,NOLADE21GFW,,hbci-sparkasse-adapter,26951311,, +5cbe387b-10c1-46d4-9ca2-70bf2ebb4ea3,HBCI LSK Oldenburg,SLZODE22XXX,,hbci-sparkasse-adapter,28050100,, +9b37918e-d0e6-4f94-8560-5be8be9aff18,HBCI SPK Wilhelmshaven,BRLADE21WHV,,hbci-sparkasse-adapter,28250110,, +f75df5d0-8727-4370-87f3-6cd775635df5,HBCI SPK Aurich-Norden,BRLADE21ANO,,hbci-sparkasse-adapter,28350000,, +30c87ab7-6c0d-4a42-89b1-6157e1c717a2,HBCI SPK LeerWittmund,BRLADE21LER,,hbci-sparkasse-adapter,28550000,, +648ec63b-9589-4cfa-913e-40d5f76c428e,HBCI Bremer LB,,,hbci-sparkasse-adapter,29050000,, +c20ebce5-1cd6-415a-a075-95a732000d7f,HBCI Bremer LB,,,hbci-sparkasse-adapter,29050004,, +3f79712d-fee7-464f-8700-776696ca9bf9,HBCI SPK Bremen,SBREDE22XXX,,hbci-sparkasse-adapter,29050101,, +bd0081f0-fa9a-46e0-acc5-b0f2d95aacf9,HBCI KSK Syke,BRLADE21SYK,,hbci-sparkasse-adapter,29151700,, +9889a434-78d7-4b58-92b3-485167863ae5,HBCI SPK Scheeßel,BRLADE21SHL,,hbci-sparkasse-adapter,29152550,, +5749bdc1-f626-4144-ad4c-198a97bc5d4d,HBCI KSK Verden,BRLADE21VER,,hbci-sparkasse-adapter,29152670,, +2a36a9ce-8995-4bf1-83fa-1f99f922c5f7,HBCI Weser-Elbe Sparkasse,BRLADE21BRS,,hbci-sparkasse-adapter,29250000,, +69ead3d5-7376-433d-a586-0d5ad2dcd046,HBCI SSK Düsseldorf,DUSSDEDDXXX,,hbci-sparkasse-adapter,30050110,, +15874663-1e1b-43fe-a742-f9401a5242e4,HBCI KSK Düsseldorf,WELADED1KSD,,hbci-sparkasse-adapter,30150200,, +405e145b-5500-4cdf-ac5b-ebfb1886cb5f,HBCI SSK Haan (Rheinland),WELADED1HAA,,hbci-sparkasse-adapter,30351220,, +9af86989-9eb4-42cf-a8db-396794784667,HBCI SPK Neuss,WELADEDNXXX,,hbci-sparkasse-adapter,30550000,, +c4690042-e2c2-4940-ad75-36eb45ca5d9f,HBCI SSK Mönchengladbach,MGLSDE33XXX,,hbci-sparkasse-adapter,31050000,, +46cf8b10-296f-4311-ab68-787e72250406,HBCI KSK Heinsberg,WELADED1ERK,,hbci-sparkasse-adapter,31251220,, +a88a5fdc-0eaf-4d69-8402-a6e9b8200750,HBCI SPK Krefeld,SPKRDE33XXX,,hbci-sparkasse-adapter,32050000,, +fd5cd3ba-3c2a-4d74-ac62-b2dfc5a6c687,HBCI VSK Goch-Kevelaer-Weeze,WELADED1GOC,,hbci-sparkasse-adapter,32250050,, +106d1359-b985-44de-b70a-05d606d69f4b,HBCI SPK Rhein-Maas,WELADED1KLE,,hbci-sparkasse-adapter,32450000,, +cb88c836-766a-4ed2-a1d9-5f5d0089ee27,HBCI SSK Wuppertal,WUPSDE33XXX,,hbci-sparkasse-adapter,33050000,, +a99338f5-c673-4f2e-85dd-af2f10624f7f,HBCI SPK Hilden-Ratingen-Velbert,WELADED1VEL,,hbci-sparkasse-adapter,33450000,, +1a614815-14ee-4cfb-9a96-61b9fb3340d2,HBCI SSK Remscheid,WELADEDRXXX,,hbci-sparkasse-adapter,34050000,, +425a2e1f-6e03-47a1-b21f-3aef5b97e5b0,HBCI SPK Radevormwald-Hückeswagen,WELADED1RVW,,hbci-sparkasse-adapter,34051350,, +dcf4ad34-bc2b-42eb-a789-d042ca573efa,HBCI SSK Wermelskirchen,WELADED1WMK,,hbci-sparkasse-adapter,34051570,, +8f73c229-5f47-4c3b-bafc-9b4cf176d87e,HBCI SSK Solingen,SOLSDE33XXX,,hbci-sparkasse-adapter,34250000,, +ad06223c-0162-4262-a2ab-601d2c6a8c96,HBCI SPK Duisburg,DUISDE33XXX,,hbci-sparkasse-adapter,35050000,, +c315dfda-e41c-4b28-a505-f37c4b7df437,HBCI SPK am Niederrhein,WELADED1MOR,,hbci-sparkasse-adapter,35450000,, +3c3c45f0-f95e-41d0-955a-c4eb14c80813,HBCI Niederrheinische Sparkasse RheinLippe,WELADED1WES,,hbci-sparkasse-adapter,35650000,, +4db5ca80-33d8-4903-972f-289278301e5b,HBCI SPK Essen,SPESDE3EXXX,,hbci-sparkasse-adapter,36050105,, +75f69a75-0f9f-4362-9064-7eca32e010a8,HBCI SPK Mülheim a.d. Ruhr,SPMHDE3EXXX,,hbci-sparkasse-adapter,36250000,, +176103ae-f250-4b86-a46b-a0355de262e0,HBCI SSK Oberhausen,WELADED1OBH,,hbci-sparkasse-adapter,36550000,, +534488f2-c019-4243-908d-fd025fa5b00c,HBCI SPK KölnBonn,COLSDE33XXX,,hbci-sparkasse-adapter,37050198,, +92f5f686-f72e-4647-8403-8557b53c9196,HBCI KSK Köln,COKSDE33XXX,,hbci-sparkasse-adapter,37050299,, +919bcb4a-702a-400e-8ac8-702d8fb85a9a,HBCI SPK Leverkusen,WELADEDLLEV,,hbci-sparkasse-adapter,37551440,, +8c76ffcc-e065-472d-9ad0-c2ebc5d20a12,HBCI SSK Langenfeld (Rheinland),WELADED1LAF,,hbci-sparkasse-adapter,37551780,, +1fcf8840-9654-4e80-9d48-04c7962109d1,HBCI KSK Euskirchen,WELADED1EUS,,hbci-sparkasse-adapter,38250110,, +3dbe515f-d71d-44ec-b176-b320f9054f1a,HBCI SPK Gummersbach,WELADED1GMB,,hbci-sparkasse-adapter,38450000,, +83df00ea-9434-4421-9d65-758022c2a47d,HBCI SPK Aachen,AACSDE33XXX,,hbci-sparkasse-adapter,39050000,, +ced809ad-432b-4fbc-a5aa-cd2df6860b7a,HBCI SPK Düren,SDUEDE33XXX,,hbci-sparkasse-adapter,39550110,, +0097393e-c72e-473a-ba67-9fd37f218a5b,HBCI SPK Münsterland-Ost,WELADED1MST,,hbci-sparkasse-adapter,40050150,, +e6bbb8d6-09d3-4109-8655-0f9dbf7ad745,HBCI VSK Emsdetten-Ochtrup,WELADED1EMS,,hbci-sparkasse-adapter,40153768,, +476ab25e-033c-4e22-9b91-b3cdcf393873,HBCI SSK Lengerich,WELADED1LEN,,hbci-sparkasse-adapter,40154476,, +abcf6fba-6d38-4921-9a0d-8bcd4a49383a,HBCI SPK Westmünsterland,WELADE3WXXX,,hbci-sparkasse-adapter,40154530,, +0369d55f-3842-4537-9691-29668dcfc913,HBCI SSK Rheine,WELADED1RHN,,hbci-sparkasse-adapter,40350005,, +17767141-b3a4-407e-b65c-1e3387284404,HBCI KSK Steinfurt,WELADED1STF,,hbci-sparkasse-adapter,40351060,, +1e80138f-31fd-43bc-a690-771153d592d1,HBCI SPK Hamm,WELADED1HAM,,hbci-sparkasse-adapter,41050095,, +5fa7175c-8759-4fdb-9cb0-e58a3ed69974,HBCI SPK Bergkamen-Bönen,WELADED1BGK,,hbci-sparkasse-adapter,41051845,, +52d88987-3913-408d-906d-c8a973df4482,HBCI SPK Beckum-Wadersloh,WELADED1BEK,,hbci-sparkasse-adapter,41250035,, +fef68196-1b4d-40cb-b844-a0fa7ea2bd35,HBCI SPK SoestWerl,WELADED1SOS,,hbci-sparkasse-adapter,41450075,, +eda961dc-e63d-4dfa-8ac8-7bbe8f439799,HBCI SPK Lippstadt,WELADED1LIP,,hbci-sparkasse-adapter,41650001,, +204dddc5-2d38-4262-b739-bb85c3de46de,HBCI SPK Hochsauerland,WELADED1HSL,,hbci-sparkasse-adapter,41651770,, +0429ed77-b799-4c63-b5d2-8117e6a90ce5,HBCI SPK Geseke,WELADED1GES,,hbci-sparkasse-adapter,41651965,, +7fa59a97-8bb5-4404-a7b5-70a23c3b1f61,HBCI SPK Gelsenkirchen,WELADED1GEK,,hbci-sparkasse-adapter,42050001,, +bcd5ef8c-c633-44b7-9212-30b45da2dee5,HBCI SPK Gladbeck,WELADED1GLA,,hbci-sparkasse-adapter,42450040,, +dd04502d-c872-4798-8726-cc1fed6b3aa3,HBCI SPK Bottrop,WELADED1BOT,,hbci-sparkasse-adapter,42451220,, +90a8deb6-ffb1-452e-a9bc-c030aaf5eff9,HBCI SPK Vest Recklinghausen,WELADED1REK,,hbci-sparkasse-adapter,42650150,, +7b463324-f87d-4c58-874a-978ed5bfd948,HBCI SSK Haltern am See,WELADED1HAT,,hbci-sparkasse-adapter,42651315,, +29387fd9-107e-44c0-9d30-39878c8c86c9,HBCI SSK Bocholt,WELADED1BOH,,hbci-sparkasse-adapter,42850035,, +c0bf14d1-61e4-400f-a40b-44cc72af4d1c,HBCI SPK Bochum,WELADED1BOC,,hbci-sparkasse-adapter,43050001,, +d4e1991b-49fa-4854-b195-2ade0d8fe556,HBCI SPK Hattingen,WELADED1HTG,,hbci-sparkasse-adapter,43051040,, +64091913-579b-4b4c-ae8f-64248f316e24,HBCI SPK Herne,WELADED1HRN,,hbci-sparkasse-adapter,43250030,, +5f675ab0-8638-4369-bbaa-1759d4654a6b,HBCI SPK Dortmund,DORTDE33XXX,,hbci-sparkasse-adapter,44050199,, +9f81de1a-79c7-4cbc-b056-11648b7e9679,HBCI Sparkasse an der Lippe,WELADED1LUN,,hbci-sparkasse-adapter,44152370,, +7fd38d67-5eb1-4e24-9eae-fbdcfcfc8ff8,HBCI SSK Schwerte,WELADED1SWT,,hbci-sparkasse-adapter,44152490,, +a931f696-a4e7-40fd-b6bc-14ccb8b49540,HBCI SPK UnnaKamen,WELADED1UNN,,hbci-sparkasse-adapter,44350060,, +88993a7c-91ee-49ab-b537-6cee94571457,HBCI SPK Iserlohn,WELADED1ISL,,hbci-sparkasse-adapter,44550045,, +9f130540-2828-4c64-96eb-f60e15cb4f55,HBCI SPK Märkisches Sauerland Hemer - Menden,WELADED1HEM,,hbci-sparkasse-adapter,44551210,, +0a4b1b7f-8166-4846-a6eb-e8d1a036555c,HBCI SPK HagenHerdecke,WELADE3HXXX,,hbci-sparkasse-adapter,45050001,, +e3cbc403-669d-434a-89f1-340c24939d67,HBCI SPK Witten,WELADED1WTN,,hbci-sparkasse-adapter,45250035,, +f27042fc-8e7b-4252-a57d-c311427a7b06,HBCI SPK Sprockhövel,SPSHDE31XXX,,hbci-sparkasse-adapter,45251515,, +91b888d6-0361-4d82-8a3a-d5f18dfa0234,HBCI SPK Gevelsberg-Wetter,WELADED1GEV,,hbci-sparkasse-adapter,45450050,, +fc46b6a4-39ae-4464-b87e-169860c83cd7,HBCI SPK Ennepetal-Breckerfeld,WELADED1ENE,,hbci-sparkasse-adapter,45451060,, +e3963040-45bf-4977-acb9-4b9ec3253e99,HBCI SSK Schwelm,WELADED1SLM,,hbci-sparkasse-adapter,45451555,, +3a6df7a6-c9f5-468c-96f2-1b241aca4799,HBCI SPK Lüdenscheid,WELADED1LSD,,hbci-sparkasse-adapter,45850005,, +8c26341d-b26d-4112-a95c-b2a0f71dc80b,HBCI Vereinigte Sparkasse im Märkischen Kreis,WELADED1PLB,,hbci-sparkasse-adapter,45851020,, +865813e6-9fbd-407a-85c6-0679647310b0,HBCI SPK Kierspe-Meinerzhagen,WELADED1KMZ,,hbci-sparkasse-adapter,45851665,, +679f6325-e66b-48e6-b24f-26d36d0d696d,HBCI SPK Siegen,WELADED1SIE,,hbci-sparkasse-adapter,46050001,, +b947c802-431f-4d29-9f4e-d93d6b2c8fb6,HBCI SPK Burbach-Neunkirchen,WELADED1BUB,,hbci-sparkasse-adapter,46051240,, +d50bc968-6ee9-4f50-a654-e17309c40057,HBCI SSK Schmallenberg,WELADED1SMB,,hbci-sparkasse-adapter,46052855,, +1a4b8b1c-5914-41fe-8c01-f34bf74cb4b5,HBCI SPK Wittgenstein,WELADED1BEB,,hbci-sparkasse-adapter,46053480,, +5db8840d-7500-44eb-8068-9e5c88df26cc,HBCI SPK Olpe-Drolshagen-Wenden,WELADED1OPE,,hbci-sparkasse-adapter,46250049,, +5ffd46a8-1c3a-4de4-bd3e-2cc8bb737870,HBCI SPK Finnentrop,WELADED1FTR,,hbci-sparkasse-adapter,46251590,, +15d8df00-a11c-4572-8d04-5cec61eab656,HBCI SPK Attendorn-Lennestadt-Kirchhundem,WELADED1ALK,,hbci-sparkasse-adapter,46251630,, +a98ed594-0e1f-42e3-be5d-3b58548dcbe6,HBCI SPK Meschede,WELADED1MES,,hbci-sparkasse-adapter,46451012,, +f9c7730f-c586-4fe2-82d0-3b22d5e0d4a4,HBCI SPK Arnsberg-Sundern,WELADED1ARN,,hbci-sparkasse-adapter,46650005,, +bbd011c8-1f9d-45ff-bbd2-9921edf073be,HBCI SPK Höxter,WELADED1HXB,,hbci-sparkasse-adapter,47251550,, +cda3cecc-1e14-48eb-b562-377900581399,HBCI SSK Delbrück,WELADED1DEL,,hbci-sparkasse-adapter,47251740,, +fa61ccd7-7633-4462-9b6d-d7feaf043f17,HBCI SPK Paderborn-Detmold,WELADE3LXXX,,hbci-sparkasse-adapter,47650130,, +d16519ac-4fd6-4ffd-bf27-8b6d5cf461cc,HBCI SSK Blomberg/Lippe,WELADED1BLO,,hbci-sparkasse-adapter,47651225,, +2553f228-6354-4b8b-b733-c3c64c91d87f,HBCI SPK Gütersloh-Rietberg,WELADED1GTL,,hbci-sparkasse-adapter,47850065,, +6a98a710-15cf-48cb-88b4-f99036415ca0,HBCI SSK Versmold,WELADED1VSM,,hbci-sparkasse-adapter,47853355,, +b143e96b-a97a-4c72-a1a7-cf2ccee90da7,HBCI KSK Wiedenbrück,WELADED1WDB,,hbci-sparkasse-adapter,47853520,, +6443f94e-f1d3-49de-a7f3-73667fd62859,HBCI SPK Bielefeld,SPBIDE3BXXX,,hbci-sparkasse-adapter,48050161,, +2da94ea7-c9c8-4f39-943e-dfabd1513987,HBCI KSK Halle (Westf.),WELADED1HAW,,hbci-sparkasse-adapter,48051580,, +4d7672b8-7653-41c8-a142-932bbb09bac7,HBCI SPK Lemgo,WELADED1LEM,,hbci-sparkasse-adapter,48250110,, +1ea63ee3-6bad-4dc0-a3f2-f1a4fa3267d1,HBCI SPK Minden-Lübbecke,WELADED1MIN,,hbci-sparkasse-adapter,49050101,, +fdb9bd34-d8fe-436e-b7ed-1412e7192e8d,HBCI SSK Rahden,WELADED1RHD,,hbci-sparkasse-adapter,49051065,, +ba6a9d6f-a9d3-459a-a334-aa128e053ad1,HBCI SPK Bad Oeynhausen - Porta Westfalica,WELADED1OEH,,hbci-sparkasse-adapter,49051285,, +7fe8810c-2dcd-45c3-93f1-3a94ac889ed9,HBCI SPK Herford,WLAHDE44XXX,,hbci-sparkasse-adapter,49450120,, +55d1bc89-8c62-4ef9-b1a4-04f1dc444ddb,HBCI Frankfurter Sparkasse,HELADEF1822,,hbci-sparkasse-adapter,50050201,, +1ee9233d-d541-4a8b-a61e-447e26d38371,HBCI SSK Offenbach,HELADEF1OFF,,hbci-sparkasse-adapter,50550020,, +df108cc5-5777-4054-805f-af636e618af4,HBCI SPK Hanau,HELADEF1HAN,,hbci-sparkasse-adapter,50650023,, +a04713a5-de8d-4813-af41-ea143d118aae,HBCI SPK Langen-Seligenstadt,HELADEF1SLS,,hbci-sparkasse-adapter,50652124,, +36f307ad-5c23-44e9-8ffe-393abc907b31,HBCI KSK Gelnhausen,HELADEF1GEL,,hbci-sparkasse-adapter,50750094,, +3040943c-b071-4d45-a60c-d1a871530192,HBCI SPK Darmstadt,HELADEF1DAS,,hbci-sparkasse-adapter,50850150,, +683eea3e-bb84-4678-8750-273327a760be,HBCI SPK Odenwaldkreis,HELADEF1ERB,,hbci-sparkasse-adapter,50851952,, +5dbbcc0f-766a-47d2-95da-28e3e765591a,HBCI KSK Groß-Gerau,HELADEF1GRG,,hbci-sparkasse-adapter,50852553,, +4873743a-89d1-4745-9266-9bbb3bf68a72,HBCI SPK Dieburg,HELADEF1DIE,,hbci-sparkasse-adapter,50852651,, +b8b7f6ed-8a4a-4d0d-a146-d6f7c2a38e66,HBCI SPK Bensheim,HELADEF1BEN,,hbci-sparkasse-adapter,50950068,, +3ce227f9-c708-4645-95d9-0dbe2ffb8e10,HBCI SPK Starkenburg,HELADEF1HEP,,hbci-sparkasse-adapter,50951469,, +d0dca49a-f0f2-463d-a146-9ea8d62c554b,HBCI Nassauische Sparkasse,NASSDE55XXX,,hbci-sparkasse-adapter,51050015,, +b450c759-d23a-46d2-a679-02748ad681b2,HBCI KSK Limburg,HELADEF1LIM,,hbci-sparkasse-adapter,51150018,, +35ba970d-3e2d-4bed-adb3-c4d9ef40ba74,HBCI KSK Weilburg,HELADEF1WEI,,hbci-sparkasse-adapter,51151919,, +730dc0c5-3da4-4fc7-b514-f64b8f273a50,HBCI Taunus Sparkasse,HELADEF1TSK,,hbci-sparkasse-adapter,51250000,, +60d1155e-f9a9-4f3e-9240-121e546c215a,HBCI SPK Gießen,SKGIDE5FXXX,,hbci-sparkasse-adapter,51350025,, +fc957549-f5a4-4524-9f5a-51e21fecb16e,HBCI SPK Grünberg,HELADEF1GRU,,hbci-sparkasse-adapter,51351526,, +cb81d31a-097f-4fb2-8eeb-aeb6f74a9940,HBCI SPK Laubach-Hungen,HELADEF1LAU,,hbci-sparkasse-adapter,51352227,, +cb4e0a86-b56d-4a01-900b-b53615a431b2,HBCI SPK Wetzlar,HELADEF1WET,,hbci-sparkasse-adapter,51550035,, +cdba2c30-64d3-4b87-99b6-f774b09a011c,HBCI SPK Dillenburg,HELADEF1DIL,,hbci-sparkasse-adapter,51650045,, +ef2ba046-9924-4410-b00c-02fade7854fa,HBCI SPK Battenberg,HELADEF1BAT,,hbci-sparkasse-adapter,51752267,, +bc3add63-4963-4d95-9563-e64d319273db,HBCI SPK Oberhessen,HELADEF1FRI,,hbci-sparkasse-adapter,51850079,, +419bd465-eb34-4308-87f2-03224d4cb4a4,HBCI Kasseler Sparkasse,HELADEF1KAS,,hbci-sparkasse-adapter,52050353,, +df01cb74-821b-4e6a-848e-4c3334d39e7b,HBCI SSK Borken,HELADEF1BOR,,hbci-sparkasse-adapter,52051373,, +fcc76e32-268a-4c34-9027-5dbac1ba95f7,HBCI SSK Grebenstein,HELADEF1GRE,,hbci-sparkasse-adapter,52051877,, +839d0a77-456f-4388-878b-2eab5758df7d,HBCI KSK Schwalm-Eder,HELADEF1MEG,,hbci-sparkasse-adapter,52052154,, +5aa0bda4-3dff-495e-bc6b-cfaa03827ef7,HBCI SSK Schwalmstadt,HELADEF1SWA,,hbci-sparkasse-adapter,52053458,, +ba413849-b882-4307-938a-91998506fecc,HBCI SPK Werra-Meißner,HELADEF1ESW,,hbci-sparkasse-adapter,52250030,, +13c3ca79-b0cc-4f45-aa9c-d522791789e9,HBCI SPK Waldeck-Frankenberg,HELADEF1KOR,,hbci-sparkasse-adapter,52350005,, +241e3906-beaf-4373-84ca-57cd10496509,HBCI SPK Fulda,HELADEF1FDS,,hbci-sparkasse-adapter,53050180,, +75d41a86-317a-4633-a0a3-0425c6ba2282,HBCI KSK Schlüchtern,HELADEF1SLU,,hbci-sparkasse-adapter,53051396,, +5802b0d6-0081-4c37-b225-ff0e0781a867,HBCI SPK Bad Hersfeld-Rotenburg,HELADEF1HER,,hbci-sparkasse-adapter,53250000,, +32897bd6-7553-42f8-a0bd-aeef99cce9e5,HBCI SPK Marburg-Biedenkopf,HELADEF1MAR,,hbci-sparkasse-adapter,53350000,, +919b5263-f9bb-4c94-bc34-0017bbfbeb50,HBCI SSK Kaiserslautern,MALADE51KLS,,hbci-sparkasse-adapter,54050110,, +ed1b3f73-92c6-4a67-8ff6-994f4b538ea1,HBCI KSK Kaiserslautern,MALADE51KLK,,hbci-sparkasse-adapter,54050220,, +b05058eb-79d4-44c8-806f-7cd5f7f778ca,HBCI KSK Kusel,MALADE51KUS,,hbci-sparkasse-adapter,54051550,, +8a346a67-0cc4-4b60-ace1-64457b017c37,HBCI SPK Donnersberg,MALADE51ROK,,hbci-sparkasse-adapter,54051990,, +bdf91c07-3b41-4548-9db3-3952887e81ce,HBCI SPK Suedwestpfalz,MALADE51SWP,,hbci-sparkasse-adapter,54250010,, +22949a17-795c-44c4-ac63-7545d50aad78,HBCI SPK Vorderpfalz,LUHSDE6AXXX,,hbci-sparkasse-adapter,54550010,, +c4155501-558c-420e-9082-b8f6cd1267d8,HBCI SPK Rhein-Haardt,MALADE51DKH,,hbci-sparkasse-adapter,54651240,, +3d95ebee-f1a6-42d3-818f-055552618945,HBCI SPK Südl. Weinstr. Landau,SOLADES1SUW,,hbci-sparkasse-adapter,54850010,, +97b8a284-aa7f-40b5-b014-f754b6e4c381,HBCI SPK Germersheim Kandel,MALADE51KAD,,hbci-sparkasse-adapter,54851440,, +8dbaa921-71f7-4990-9de4-3caf52961f0c,HBCI SPK Mainz,MALADE51MNZ,,hbci-sparkasse-adapter,55050120,, +fb487015-da2d-4938-9044-af14076c32af,HBCI SPK Worms-Alzey-Ried,MALADE51WOR,,hbci-sparkasse-adapter,55350010,, +84b03621-973f-4ab8-ae79-957297433f5d,HBCI SPK Rhein-Nahe,MALADE51KRE,,hbci-sparkasse-adapter,56050180,, +d6e99dc0-72e4-44c9-b3b8-8fe66868612d,HBCI KSK Rhein-Hunsrück,MALADE51SIM,,hbci-sparkasse-adapter,56051790,, +be37ec89-1898-46ef-a7a2-01aeca951ca9,HBCI KSK Birkenfeld,BILADE55XXX,,hbci-sparkasse-adapter,56250030,, +e2d1ff39-6c03-4413-9e0b-ad6f67991c9c,HBCI SPK Koblenz,MALADE51KOB,,hbci-sparkasse-adapter,57050120,, +c277f443-2a4c-480a-9afe-0b18935b9f9a,HBCI SPK Westerwald-Sieg,MALADE51AKI,,hbci-sparkasse-adapter,57351030,, +86d4f6fe-c0d9-4a59-94e8-547448042f35,HBCI SPK Neuwied,MALADE51NWD,,hbci-sparkasse-adapter,57450120,, +8fe966ff-1942-4b00-be2f-1380e28b0144,HBCI KSK Mayen,MALADE51MYN,,hbci-sparkasse-adapter,57650010,, +af1b03df-fd0a-4631-afc0-3c3c67acf394,HBCI KSK Ahrweiler,MALADE51AHR,,hbci-sparkasse-adapter,57751310,, +f93b1a6b-6ff8-4e3b-a6d8-abcb25cdb765,HBCI SPK Trier,TRISDE55XXX,,hbci-sparkasse-adapter,58550130,, +df974857-8889-41ba-be65-750ea35cd394,HBCI KSK Bitburg-Prüm,MALADE51BIT,,hbci-sparkasse-adapter,58650030,, +81f67094-48a7-41a7-850a-6d9bc958b29d,HBCI KSK Vulkaneifel,MALADE51DAU,,hbci-sparkasse-adapter,58651240,, +1a98ab42-4108-48b8-ac53-aabc208afae5,HBCI SPK Mittelmosel-Eifel-Mosel-Hunsrück,MALADE51BKS,,hbci-sparkasse-adapter,58751230,, +70e0acd3-75bd-443d-a876-e1045eb99d4b,HBCI SPK Saarbrücken,SAKSDE55XXX,,hbci-sparkasse-adapter,59050101,, +da0006ad-97a6-4189-992b-d0842fbfd5d5,HBCI KSK St. Wendel,SALADE51WND,,hbci-sparkasse-adapter,59251020,, +3759de25-75f2-48df-93ce-f4958650da89,HBCI SPK Neunkirchen,SALADE51NKS,,hbci-sparkasse-adapter,59252046,, +1a735722-0d48-4827-8123-0ef72030f8e7,HBCI KSK Saarlouis,KRSADE55XXX,,hbci-sparkasse-adapter,59350110,, +aa4cdfc4-b210-4bb0-972b-0c1bfdef5388,HBCI SPK Merzig-Wadern,MERZDE55XXX,,hbci-sparkasse-adapter,59351040,, +850e0102-0171-41b1-aa04-312b9ab62779,HBCI KSK Saarpfalz,SALADE51HOM,,hbci-sparkasse-adapter,59450010,, +01029551-54f8-4f96-9551-1fad5da65f2a,HBCI LBBW,,,hbci-sparkasse-adapter,60050101,, +7f976f88-4130-44e4-9312-94592d139ff1,HBCI KSK Waiblingen,SOLADES1WBN,,hbci-sparkasse-adapter,60250010,, +cb4c597c-d182-4078-9f43-78cbd6fae52d,HBCI KSK Böblingen,BBKRDE6BXXX,,hbci-sparkasse-adapter,60350130,, +abe12ba1-7d56-4582-882d-268a1ca3f32b,HBCI KSK Ludwigsburg,SOLADES1LBG,,hbci-sparkasse-adapter,60450050,, +f443b3b1-edcd-4f99-bef6-67a2bc3d786c,HBCI KSK Göppingen,GOPSDE6G612,,hbci-sparkasse-adapter,61050000,, +f72c581b-449b-43a3-812a-096c0076a5f1,HBCI KSK Göppingen,GOPSDE6GXXX,,hbci-sparkasse-adapter,61050000,, +7f48ac29-0ce4-4336-82c2-800b30e438ef,HBCI KSK Esslingen-Nürtingen,ESSLDE66XXX,,hbci-sparkasse-adapter,61150020,, +84d6d019-3667-472f-a78b-b2a2688c827e,HBCI KSK Ostalb,OASPDE6AXXX,,hbci-sparkasse-adapter,61450050,, +40c35bff-b651-4cb1-8ae1-0811a63d8db7,HBCI KSK Heilbronn,HEISDE66XXX,,hbci-sparkasse-adapter,62050000,, +7ccde6a9-94b9-4c7b-bdb6-b40d6f10e7e7,HBCI SPK Schwäbisch Hall-Crailsheim,SOLADES1SHA,,hbci-sparkasse-adapter,62250030,, +52216ce8-c656-499b-8843-e9552ff82862,HBCI SPK Hohenlohekreis,SOLADES1KUN,,hbci-sparkasse-adapter,62251550,, +3a53b263-1058-4cac-b026-0109e5ed6ff1,HBCI SPK Ulm,SOLADES1ULM,,hbci-sparkasse-adapter,63050000,, +92b25778-3182-4985-a2a3-b3993b6782c3,HBCI KSK Heidenheim,SOLADES1HDH,,hbci-sparkasse-adapter,63250030,, +fea4ae0c-4cb4-4bc6-a0cf-14454a4d2c9d,HBCI KSK Reutlingen,SOLADES1REU,,hbci-sparkasse-adapter,64050000,, +a18594f6-3233-4f22-950c-f66d78b64cc3,HBCI KSK Tübingen,SOLADES1TUB,,hbci-sparkasse-adapter,64150020,, +76ee357c-5104-4bf8-bd0d-4a85acf1397d,HBCI KSK Rottweil,SOLADES1RWL,,hbci-sparkasse-adapter,64250040,, +a58b483e-7679-4e07-818b-abc87f3b4816,HBCI KSK Freudenstadt,SOLADES1FDS,,hbci-sparkasse-adapter,64251060,, +04cfca00-ff36-4807-b279-ff53c80ac6f6,HBCI KSK Tuttlingen,SOLADES1TUT,,hbci-sparkasse-adapter,64350070,, +ded0050e-de51-4e51-bed4-e0c0a08e4b31,HBCI KSK Ravensburg,SOLADES1RVB,,hbci-sparkasse-adapter,65050110,, +8acf6334-e5e0-4306-aa18-79c65722341d,HBCI KSK Sigmaringen,SOLADES1SIG,,hbci-sparkasse-adapter,65351050,, +462f0902-5513-4c0b-a0cf-d9d6fa4d540d,HBCI SPK Zollernalb,SOLADES1BAL,,hbci-sparkasse-adapter,65351260,, +05ee2207-ee4d-4613-bbc4-dc75182fd83d,HBCI KSK Biberach,SBCRDE66XXX,,hbci-sparkasse-adapter,65450070,, +8c7edeb0-dda2-45c0-9855-b6538a13f4cc,HBCI SPK Karlsruhe,KARSDE66XXX,,hbci-sparkasse-adapter,66050101,, +89084a4a-e7c3-443d-a39f-25467b83d1ed,HBCI SPK Baden-Baden Gaggenau,SOLADES1BAD,,hbci-sparkasse-adapter,66250030,, +41f0ffa4-a8a3-4f74-b62a-eef7690430db,HBCI SPK Bühl,SOLADES1BHL,,hbci-sparkasse-adapter,66251434,, +5c9ecc6e-59cd-4fe3-bc79-96a1620c8380,HBCI SPK Kraichgau,BRUSDE66XXX,,hbci-sparkasse-adapter,66350036,, +32f4aaaa-d5d5-4ade-b218-074cb0de8dcd,HBCI SPK Offenburg/Ortenau,SOLADES1OFG,,hbci-sparkasse-adapter,66450050,, +90be751c-74b7-4cf9-857e-4dae785e79c3,HBCI SPK Gengenbach,SOLADES1GEB,,hbci-sparkasse-adapter,66451346,, +9c199de1-31ac-4902-ad72-18e6ef935fc8,HBCI SPK Haslach-Zell,SOLADES1HAL,,hbci-sparkasse-adapter,66451548,, +747e174e-1085-4748-83b1-d3b69f3c5301,HBCI SPK Hanauerland,SOLADES1KEL,,hbci-sparkasse-adapter,66451862,, +19f5b5da-eedc-4b67-a3e7-7836a663dfa5,HBCI SPK Wolfach,SOLADES1WOF,,hbci-sparkasse-adapter,66452776,, +e72c61fb-a74c-48ad-a298-e2944bc84a66,HBCI SPK Rastatt-Gernsbach,SOLADES1RAS,,hbci-sparkasse-adapter,66550070,, +73e309dc-1531-4733-b857-48c9a1010668,HBCI SPK Pforzheim Calw,PZHSDE66XXX,,hbci-sparkasse-adapter,66650085,, +1a7fb1c4-65cb-4a0b-ba84-c3cd8a97435c,HBCI SPK Rhein Neckar Nord,MANSDE66XXX,,hbci-sparkasse-adapter,67050505,, +ffcffe97-3198-4e27-9846-ff3e2a4bf222,HBCI SPK Heidelberg,SOLADES1HDB,,hbci-sparkasse-adapter,67250020,, +8997ac6d-0673-4182-bd0c-4ad56922ba6d,HBCI SPK Tauberfranken,SOLADES1TBB,,hbci-sparkasse-adapter,67352565,, +806064cc-b409-44c8-a31d-4785f256d3ab,HBCI SPK Neckartal-Odenwald,SOLADES1MOS,,hbci-sparkasse-adapter,67450048,, +9f9ab56a-7f16-445f-b674-c194b9088d2a,HBCI SPK Freiburg-Nördlicher Breisgau,FRSPDE66XXX,,hbci-sparkasse-adapter,68050101,, +ed73e1a2-1010-4fce-85dc-96c3a6202656,HBCI SPK Hochschwarzwald,SOLADES1HSW,,hbci-sparkasse-adapter,68051004,, +1bb7f472-6945-4ae1-80f7-c2fff703dd41,HBCI SPK Bonndorf-Stühlingen,SOLADES1BND,,hbci-sparkasse-adapter,68051207,, +ac343fbb-3054-451b-ae0a-3f80cf3c2c43,HBCI SPK St.Blasien,SOLADES1STB,,hbci-sparkasse-adapter,68052230,, +aaf4841b-29fb-4b62-b374-59a26bee8977,HBCI SPK Staufen-Breisach,SOLADES1STF,,hbci-sparkasse-adapter,68052328,, +e7b39b35-855a-45ed-99ad-1f5a15f22339,HBCI SPK Lörrach-Rheinfelden,SKLODE66XXX,,hbci-sparkasse-adapter,68350048,, +c7c2df4b-85ff-40eb-90d6-107ec302d591,HBCI SPK Wiesental,SOLADES1SFH,,hbci-sparkasse-adapter,68351557,, +ee751e5e-b6ec-4c0d-babb-a064550a738b,HBCI SPK Markgräflerland,SOLADES1MGL,,hbci-sparkasse-adapter,68351865,, +c574d0d4-caa4-43e1-9c7f-6266d84a8725,HBCI SPK Hochrhein,SKHRDE6WXXX,,hbci-sparkasse-adapter,68452290,, +ec307e4d-8448-40ce-86b5-dba6ac6ad708,HBCI SPK Bodensee,SOLADES1KNZ,,hbci-sparkasse-adapter,69050001,, +0e27384d-8f4a-4573-a135-17e3d20ba153,HBCI BSK Reichenau,SOLADES1REN,,hbci-sparkasse-adapter,69051410,, +21f0e4f3-9e8e-4856-8ed1-59311b592709,HBCI SPK Pfullendorf-Meßkirch,SOLADES1PFD,,hbci-sparkasse-adapter,69051620,, +d85c2f4e-a6c5-4a1d-a111-cc2be46788e1,HBCI SPK Salem-Heiligenberg,SOLADES1SAL,,hbci-sparkasse-adapter,69051725,, +e7db49c7-dc8c-4718-a69f-b6ce15879888,HBCI SPK Hegau-Bodensee,SOLADES1SNG,,hbci-sparkasse-adapter,69250035,, +2a9b9206-4af0-42ff-9ba8-4a73468aba6c,HBCI SPK Engen-Gottmadingen,SOLADES1ENG,,hbci-sparkasse-adapter,69251445,, +457e2fe7-8e68-4bd3-8462-0d6e2ce69060,HBCI SPK Schwarzwald-Baar,SOLADES1VSS,,hbci-sparkasse-adapter,69450065,, +3d978959-816e-41df-94e1-0bad74859e92,HBCI SPK Freising,BYLADEM1FSI,,hbci-sparkasse-adapter,70051003,, +e5f86c64-171f-4155-9f6d-4ad61f5f37b6,HBCI SPK Dachau,BYLADEM1DAH,,hbci-sparkasse-adapter,70051540,, +364a6f58-6216-433f-9ef4-8a6ef3d5f0a4,HBCI SPK Erding-Dorfen,BYLADEM1ERD,,hbci-sparkasse-adapter,70051995,, +ebcf1a0b-5c87-4031-8a16-fbec028e690f,HBCI SPK Landsberg-Dießen,BYLADEM1LLD,,hbci-sparkasse-adapter,70052060,, +a734ad38-d8e4-4b3f-a5fb-134e025e58be,HBCI SPK Fürstenfeldbruck,BYLADEM1FFB,,hbci-sparkasse-adapter,70053070,, +0cde66c5-3e2f-48eb-b6a5-79e6172c568e,HBCI SPK Bad Tölz-Wolfratshausen,BYLADEM1WOR,,hbci-sparkasse-adapter,70054306,, +ce432861-8cbc-4b53-850c-a7bc525dd5d7,HBCI SSK München,SSKMDEMMXXX,,hbci-sparkasse-adapter,70150000,, +c9e98db6-cf9b-4fac-9b24-8b84163289ef,HBCI KSK München Starnberg Ebersberg,BYLADEM1KMS,,hbci-sparkasse-adapter,70250150,, +519c20a8-22a8-4431-ad09-bd40ea7a6e3f,HBCI KSK Garmisch-Partenkirchen,BYLADEM1GAP,,hbci-sparkasse-adapter,70350000,, +8870cead-6358-46df-8b7a-87b9f9a34c25,HBCI SPK Oberland,BYLADEM1WHM,,hbci-sparkasse-adapter,70351030,, +6b33b99b-9f52-4953-a513-d06c45cda005,HBCI SPK Berchtesgadener Land,BYLADEM1BGL,,hbci-sparkasse-adapter,71050000,, +8596da3a-49ac-456f-9c0f-b7a6c36874f2,HBCI KSK Traunstein-Trostberg,BYLADEM1TST,,hbci-sparkasse-adapter,71052050,, +23d2b279-b4b5-45b7-ab75-5a28d8267185,HBCI SPK Rosenheim-Bad Aibling,BYLADEM1ROS,,hbci-sparkasse-adapter,71150000,, +a8de55ed-2182-49cd-9d6b-7a153b4d42b3,HBCI SPK Altötting-Mühldorf,BYLADEM1MDF,,hbci-sparkasse-adapter,71151020,, +9a0cf17d-09af-4833-9d18-355a220822d5,HBCI KSK Miesbach-Tegernsee,BYLADEM1MIB,,hbci-sparkasse-adapter,71152570,, +7b761df6-20ed-4c3a-8554-119f1065178a,HBCI KSSK Wasserburg,BYLADEM1WSB,,hbci-sparkasse-adapter,71152680,, +11433fc3-5402-406e-8307-db5b35973f6f,HBCI SSK Augsburg,AUGSDE77XXX,,hbci-sparkasse-adapter,72050000,, +84dcaa35-37f5-4782-99d6-b7bb67c85197,HBCI KSK Augsburg,BYLADEM1AUG,,hbci-sparkasse-adapter,72050101,, +b1d3559a-7007-483f-af11-e454d6a4d7a6,HBCI SPK Aichach-Schrobenhausen,BYLADEM1AIC,,hbci-sparkasse-adapter,72051210,, +a186fb32-c1de-4013-903f-6f8dda866f1d,HBCI SPK Günzburg-Krumbach,BYLADEM1GZK,,hbci-sparkasse-adapter,72051840,, +2ab28c6a-8909-4533-96d1-a097208af969,HBCI SPK IngolstadtEichstätt,BYLADEM1ING,,hbci-sparkasse-adapter,72150000,, +c8d47496-2bba-41c8-882d-f1a7282633db,HBCI SPK Pfaffenhofen,BYLADEM1PAF,,hbci-sparkasse-adapter,72151650,, +8630c6e9-3cd4-4902-9a47-bfbbf2740d46,HBCI SPK Neuburg-Rain,BYLADEM1NEB,,hbci-sparkasse-adapter,72152070,, +f519dfea-d8e8-4abf-851a-d9b6f22af37b,HBCI SPK Nördlingen,BYLADEM1NLG,,hbci-sparkasse-adapter,72250000,, +ef1ad44c-9f1c-4533-bbff-57f9e89d4967,HBCI SPK Donauwörth,BYLADEM1DON,,hbci-sparkasse-adapter,72250160,, +613b72ee-b7ba-4d0a-a3da-88416f1233aa,HBCI KSSK Dillingen,BYLADEM1DLG,,hbci-sparkasse-adapter,72251520,, +ebe44f6e-167b-4421-8bf7-91a922c34511,HBCI SPK Neu-Ulm-Illertissen,BYLADEM1NUL,,hbci-sparkasse-adapter,73050000,, +b1d6b67b-c7bd-4a68-871d-1d481fbf3955,HBCI SPK Memmingen-Lindau-Mindelheim,BYLADEM1MLM,,hbci-sparkasse-adapter,73150000,, +227f2098-fd29-4865-beb8-064797325d6c,HBCI SPK Allgäu,BYLADEM1ALG,,hbci-sparkasse-adapter,73350000,, +f64814bf-d60a-4751-9e51-ebbd93fcd2fb,HBCI SPK Riezlern,BYLADEM1ALR,,hbci-sparkasse-adapter,73351635,, +5ad4f471-c330-4ab5-9b32-d4dda57d35ed,HBCI KSSK Kaufbeuren,BYLADEM1KFB,,hbci-sparkasse-adapter,73450000,, +d663605e-37c3-4f12-901b-5200741decd1,HBCI SPK Passau,BYLADEM1PAS,,hbci-sparkasse-adapter,74050000,, +6ee24628-7bc7-4db4-8229-ad7814b11de2,HBCI SPK Freyung-Grafenau,BYLADEM1FRG,,hbci-sparkasse-adapter,74051230,, +4fab4101-ebd5-4522-aa02-eaf3bb95a74d,HBCI SPK Deggendorf,BYLADEM1DEG,,hbci-sparkasse-adapter,74150000,, +83d2ea02-a340-4344-8c9f-044016b8e2d0,HBCI SPK Regen-Viechtach,BYLADEM1REG,,hbci-sparkasse-adapter,74151450,, +b2cc158b-ffac-42e9-aa81-9ade66ef46de,HBCI SPK Niederbayern-Mitte,BYLADEM1SRG,,hbci-sparkasse-adapter,74250000,, +612da494-bfb5-4799-9ed9-beb9ccb4ee43,HBCI SPK im Landkreis Cham,BYLADEM1CHM,,hbci-sparkasse-adapter,74251020,, +7249b26e-6a43-4043-83ec-b5ddfdcd985a,HBCI SPK Landshut,BYLADEM1LAH,,hbci-sparkasse-adapter,74350000,, +1108586e-b1fb-454d-9cfc-cda5f259b589,HBCI SPK Rottal-Inn,BYLADEM1EGF,,hbci-sparkasse-adapter,74351430,, +61ebcdf9-6ebf-4df4-9cef-b1a5d740e2da,HBCI SPK Moosburg,BYLADEM1MSB,,hbci-sparkasse-adapter,74351740,, +06e75fbc-4b4b-4b3f-acf0-bbbd724f9d1e,HBCI SPK Regensburg,BYLADEM1RBG,,hbci-sparkasse-adapter,75050000,, +f8ca91b4-f366-4a5b-8dd7-f657ddd4ac84,HBCI SPK im Landkreis Schwandorf,BYLADEM1SAD,,hbci-sparkasse-adapter,75051040,, +fed619a2-0986-4d86-a3c1-9c7ae5fdbf8b,HBCI KSK Kelheim,BYLADEM1KEH,,hbci-sparkasse-adapter,75051565,, +53440c29-0d6f-4342-9be9-969599456ed4,HBCI SPK Amberg-Sulzbach,BYLADEM1ABG,,hbci-sparkasse-adapter,75250000,, +6f1a7500-7744-41e6-8e65-241671f42119,HBCI SPK Oberpfalz Nord,BYLADEM1WEN,,hbci-sparkasse-adapter,75350000,, +2fc7cbd8-2a67-4a1e-807e-0b752d2ab394,HBCI SPK Eschenbach Neustadt (a.d. Waldnaab),BYLADEM1ESB,,hbci-sparkasse-adapter,75351960,, +8cc92355-284c-4149-ac32-1c8d32ec8d5c,HBCI SPK Nürnberg,SSKNDE77XXX,,hbci-sparkasse-adapter,76050101,, +dd2295b1-bf89-4f10-bcf7-3e9487a76f52,HBCI SPK Neumarkt i.d.OPf.-Parsberg,BYLADEM1NMA,,hbci-sparkasse-adapter,76052080,, +cbb870d0-4db1-4b03-a69b-9a02c6ebde28,HBCI SPK Fürth,BYLADEM1SFU,,hbci-sparkasse-adapter,76250000,, +ced61029-6e45-41aa-bfaf-b51c1cf12d27,HBCI SPK Neustadt a.d. Aisch-Bad Windsheim,BYLADEM1NEA,,hbci-sparkasse-adapter,76251020,, +7ad4ece5-3487-4cab-bd34-6055e4a72221,HBCI SPK Erlangen Höchstadt Herzogenaurach,BYLADEM1ERH,,hbci-sparkasse-adapter,76350000,, +e9e1b81e-fe5c-4a2a-9e79-ab7ae94b7468,HBCI SPK Forchheim,BYLADEM1FOR,,hbci-sparkasse-adapter,76351040,, +018565ef-01ce-4b51-859f-64794f9cc8d1,HBCI SPK Mittelfranken-Süd,BYLADEM1SRS,,hbci-sparkasse-adapter,76450000,, +547550bf-6005-4d1d-9963-2af16b8345a7,HBCI SPK Ansbach,BYLADEM1ANS,,hbci-sparkasse-adapter,76550000,, +b2295be3-2f18-4faa-b9d8-5c6f1eff436a,HBCI SPK Gunzenhausen,BYLADEM1GUN,,hbci-sparkasse-adapter,76551540,, +9669e822-5fdd-418e-b9ee-d0f8b29feb01,HBCI SPK Bamberg,BYLADEM1SKB,,hbci-sparkasse-adapter,77050000,, +d0bbd354-835c-4142-8453-3b3b4ff7e397,HBCI SPK Kulmbach-Kronach,BYLADEM1KUB,,hbci-sparkasse-adapter,77150000,, +ac8057dd-38be-44bc-b149-89e2f20d0e58,HBCI SPK Bayreuth,BYLADEM1SBT,,hbci-sparkasse-adapter,77350110,, +cc9e0e93-d82a-40b3-92da-c9973bcafada,HBCI SPK Hochfranken,BYLADEM1HOF,,hbci-sparkasse-adapter,78050000,, +8ac5e593-78ab-49fc-9d75-004c3fd60260,HBCI SPK Coburg-Lichtenfels,BYLADEM1COB,,hbci-sparkasse-adapter,78350000,, +27183040-8ffa-41e2-9948-ed46409695a3,HBCI SPK Mainfranken Würzburg,BYLADEM1SWU,,hbci-sparkasse-adapter,79050000,, +0787876a-3502-4771-b683-9d64d1c288fe,HBCI SPK Schweinfurt-Haßberge,BYLADEM1KSW,,hbci-sparkasse-adapter,79350101,, +6d1bfca0-73f3-49df-8aa0-6931ad899aa8,HBCI SPK Bad Kissingen,BYLADEM1KIS,,hbci-sparkasse-adapter,79351010,, +23aa39bf-3dba-4ae7-8464-aa9d21a12a6e,HBCI SPK Bad Neustadt a.d. Saale,BYLADEM1NES,,hbci-sparkasse-adapter,79353090,, +e87c4815-9f46-461c-91f3-19d0afafde92,HBCI SPK Aschaffenburg-Alzenau,BYLADEM1ASA,,hbci-sparkasse-adapter,79550000,, +5e7fee70-cab6-441f-8195-3364b034a8e6,HBCI SPK Miltenberg-Obernburg,BYLADEM1MIL,,hbci-sparkasse-adapter,79650000,, +231b6f6a-9ba0-4294-a9e7-2d48067d3e40,HBCI SPK Burgenlandkreis,NOLADE21BLK,,hbci-sparkasse-adapter,80053000,, +69e30f01-bbec-4ee9-b04a-443082e90303,HBCI SSK Dessau,NOLADE21DES,,hbci-sparkasse-adapter,80053572,, +294a199e-d744-4ca0-9cc0-c5abcd8adc88,HBCI KSK Anhalt-Bitterfeld,NOLADE21BTF,,hbci-sparkasse-adapter,80053722,, +6495a58a-0dec-4049-ab4c-a9cfb005d12b,HBCI Saalesparkasse,NOLADE21HAL,,hbci-sparkasse-adapter,80053762,, +ddb669f3-e54f-440f-af68-5d9b8b911ac3,HBCI SPK Mansfeld-Südharz,NOLADE21EIL,,hbci-sparkasse-adapter,80055008,, +90b2fce5-8a46-4a55-b266-d3d4e73c5d1e,HBCI Salzlandsparkasse,NOLADE21SES,,hbci-sparkasse-adapter,80055500,, +81d81241-a959-4684-b7c3-7d0ae564516c,HBCI SPK Wittenberg,NOLADE21WBL,,hbci-sparkasse-adapter,80550101,, +fdcb2001-5ebf-4dfe-b99b-caa30db29c48,HBCI KSK Stendal,NOLADE21SDL,,hbci-sparkasse-adapter,81050555,, +b9d71582-a201-46df-ad24-c3ad313efca9,HBCI Harzsparkasse,NOLADE21HRZ,,hbci-sparkasse-adapter,81052000,, +903fa0f2-8a5f-4b08-94d7-dc1c3dd27471,HBCI SSK Magdeburg,NOLADE21MDG,,hbci-sparkasse-adapter,81053272,, +534278fc-4c67-4195-88de-74ae9e74b381,HBCI SPK Jerichower Land,NOLADE21JEL,,hbci-sparkasse-adapter,81054000,, +45935289-ae6e-48df-96ec-8097922a1354,HBCI KSK Börde,NOLADE21HDL,,hbci-sparkasse-adapter,81055000,, +cddc8044-5b45-44b0-b8e5-b584c1e1b052,HBCI SPK Altmark West,NOLADE21SAW,,hbci-sparkasse-adapter,81055555,, +925f566b-f8b2-4f6d-bbe9-f4ab2a3b04d8,HBCI SPK Mittelthüringen,HELADEF1WEM,,hbci-sparkasse-adapter,82051000,, +85f9e438-8aac-4462-9146-296462e039c0,HBCI KSK Gotha,HELADEF1GTH,,hbci-sparkasse-adapter,82052020,, +9ac83fdd-103e-4edf-895a-d7705c4e71cb,HBCI KSK Nordhausen,HELADEF1NOR,,hbci-sparkasse-adapter,82054052,, +c24d9cd4-4b5e-4b17-9957-cb34bb95a9e3,HBCI Kyffhäusersparkasse Artern-Sondershausen,HELADEF1KYF,,hbci-sparkasse-adapter,82055000,, +69308912-0e79-451c-b3be-1f7a6eca92b7,HBCI SPK Unstrut-Hainich,HELADEF1MUE,,hbci-sparkasse-adapter,82056060,, +e3d2e214-884a-4226-aa53-1ef38b854e4b,HBCI KSK Eichsfeld,HELADEF1EIC,,hbci-sparkasse-adapter,82057070,, +d49a7465-fe7c-4cee-a8c1-9455844fae42,HBCI SPK Gera-Greiz,HELADEF1GER,,hbci-sparkasse-adapter,83050000,, +2beba6bf-cda2-4598-9b44-0b4e98a9a520,HBCI SPK Altenburger Land,HELADEF1ALT,,hbci-sparkasse-adapter,83050200,, +7ef9fe18-68c0-4a7b-85ec-af463afddddc,HBCI KSK Saalfeld-Rudolstadt,HELADEF1SAR,,hbci-sparkasse-adapter,83050303,, +2678eb8f-569c-4a3f-91b4-bc8fa3263478,HBCI KSK Saale-Orla,HELADEF1SOK,,hbci-sparkasse-adapter,83050505,, +03e4411f-f444-465f-af61-e2fa3ea58039,HBCI SPK Jena-Saale-Holzland,HELADEF1JEN,,hbci-sparkasse-adapter,83053030,, +9837fe05-eee5-4ead-adc0-310cf9c40244,HBCI Rhön-Rennsteig SPK,HELADEF1RRS,,hbci-sparkasse-adapter,84050000,, +69e609ee-a328-4695-bd82-46df24a26dc8,HBCI SPK Arnstadt-Ilmenau,HELADEF1ILK,,hbci-sparkasse-adapter,84051010,, +987116e9-df7e-4cf5-9818-79a8bec38649,HBCI KSK Hildburghausen,HELADEF1HIL,,hbci-sparkasse-adapter,84054040,, +91f059a9-def6-45bc-b88a-78d22fd1925f,HBCI SPK Sonneberg,HELADEF1SON,,hbci-sparkasse-adapter,84054722,, +0fc8e92b-7a65-4b0c-9be9-a7998ae78f4e,HBCI Wartburg-Sparkasse,HELADEF1WAK,,hbci-sparkasse-adapter,84055050,, +58256954-446f-459c-bcd7-e0e4bf7f993c,HBCI SPK Oberlausitz-Niederschlesien,WELADED1GRL,,hbci-sparkasse-adapter,85050100,, +f4a279de-d51b-47e2-939a-2373fb8ab4a2,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81PIR,,hbci-sparkasse-adapter,85050300,, +d144810f-915b-4bbb-9f7a-03b17780ccbb,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81RBG,,hbci-sparkasse-adapter,85050300,, +9beafc71-fc69-4d64-9eea-9470a6419b5c,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81KMZ,,hbci-sparkasse-adapter,85050300,, +f04cb0f6-dfb9-47af-ba5e-f3bb9a906964,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81HOY,,hbci-sparkasse-adapter,85050300,, +48f7e037-9db7-4d2f-a146-c29a07122337,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81HDN,,hbci-sparkasse-adapter,85050300,, +8e7138df-e7e7-4152-baed-552c51620f62,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81FTL,,hbci-sparkasse-adapter,85050300,, +e53fb1aa-f216-4155-b4f9-3e6f38f0124e,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81SEB,,hbci-sparkasse-adapter,85050300,, +888fb9a4-f94e-4b9a-9e01-b30ae23ceaa8,HBCI Ostsächsische Sparkasse Dresden,OSDDDE81XXX,,hbci-sparkasse-adapter,85050300,, +620e41c5-242c-4fa7-be19-eb8264bae1ef,HBCI SPK Meißen,SOLADES1MEI,,hbci-sparkasse-adapter,85055000,, +972a60c5-aa22-4029-8fcf-41f6ec539bd2,HBCI KSK Bautzen,SOLADES1BAT,,hbci-sparkasse-adapter,85550000,, +9a08d258-7ae5-4580-833a-9da58d151b5f,HBCI SPK Muldental,SOLADES1GRM,,hbci-sparkasse-adapter,86050200,, +26901235-4e3e-47f8-9ca6-085d84ec9c6f,HBCI KSK Döbeln,SOLADES1DLN,,hbci-sparkasse-adapter,86055462,, +7ec4e790-c51d-44c9-9d3e-a6216574d9a2,HBCI Stadt- und Kreissparkasse Leipzig,WELADE8LXXX,,hbci-sparkasse-adapter,86055592,, +24a7e2c7-dd47-416c-befe-72c1a4057481,HBCI SPK Chemnitz,CHEKDE81HOT,,hbci-sparkasse-adapter,87050000,, +a09f41ad-aed9-4b0c-9f77-fd8099671edb,HBCI SPK Chemnitz,CHEKDE81GLA,,hbci-sparkasse-adapter,87050000,, +587cf70a-16ae-4b96-9498-cb03c8c2885b,HBCI SPK Chemnitz,CHEKDE81LIM,,hbci-sparkasse-adapter,87050000,, +777e0fb3-9204-4a01-a53b-ff6ef12eb014,HBCI SPK Chemnitz,CHEKDE81OLW,,hbci-sparkasse-adapter,87050000,, +2651972d-64aa-44a7-9929-958594057b91,HBCI SPK Chemnitz,CHEKDE81LTS,,hbci-sparkasse-adapter,87050000,, +786a351e-ff33-44b7-9a3a-1d81b534b410,HBCI SPK Chemnitz,CHEKDE81MRN,,hbci-sparkasse-adapter,87050000,, +48815f86-22d8-4988-9f69-a4a1f29fa8f0,HBCI SPK Chemnitz,CHEKDE81XXX,,hbci-sparkasse-adapter,87050000,, +639deb6f-a108-4bb3-a05e-14d0d9f81706,HBCI SPK Mittelsachsen,WELADED1FGX,,hbci-sparkasse-adapter,87052000,, +1eab16a5-9992-4dbf-a98f-4b3820d6b6ad,HBCI Erzgebirgssparkasse,WELADED1STB,,hbci-sparkasse-adapter,87054000,, +0781764d-13b1-4682-a7a9-ae34a408eb2f,HBCI SPK Zwickau,WELADED1ZWI,,hbci-sparkasse-adapter,87055000,, +1010f422-cfdc-43a0-8b42-ed8d4c4f7789,HBCI SPK Vogtland,WELADED1PLX,,hbci-sparkasse-adapter,87058000,, +9f859675-e17f-4875-988c-cdebe508b419,HBCI DKB,BYLADEM1001,,hbci-dkb-adapter,12030000,, +e68731f7-2e91-4c6a-97d2-a5259b94f281,HBCI Aachener Bank eG,GENODED1AAC,,hbci-fiducia-adapter,39060180,, +f797f083-8a71-4c6c-9651-19c1ae4702ba,HBCI Abtsgmünder Bank -Raiffeisen- eG,GENODES1ABR,,hbci-fiducia-adapter,60069673,, +b9acc77c-f624-4be1-ac18-44938a6caee3,HBCI Airbus Bank GmbH,AGBMDEMMXXX,,hbci-fiducia-adapter,70120600,, +87e15cc5-2da0-40a8-b5e8-49ab977af4d9,HBCI Aktivbank AG,AKBADES1XXX,,hbci-fiducia-adapter,60030700,, +ddb72eff-e669-47a8-af69-a3638cddd9d9,HBCI Allgäuer Volksbank eG Kempten-Sonthofen,GENODEF1KEV,,hbci-fiducia-adapter,73390000,, +9bebcd1f-bdb1-4240-add5-96c8c8709126,HBCI Alxing-Brucker Genossenschaftsbank eG,GENODEF1ALX,,hbci-fiducia-adapter,70169310,, +997b9bf3-6b0c-45b8-8bb8-d5f93f697972,HBCI Bank 1 Saar eG,SABADE5SXXX,,hbci-fiducia-adapter,59190000,, +5a2c0ea9-0b29-4e3e-a24b-cb94f3741d4f,HBCI Bank für Kirche und Caritas eG,GENODEM1BKC,,hbci-fiducia-adapter,47260307,, +9143b8b0-ef06-4327-b52f-c062b35ddd8f,HBCI Bank für Kirche und Diakonie eG - KD-Bank,GENODED1DKD,,hbci-fiducia-adapter,35060190,, +da396ed8-e618-4518-9ca2-33a22071deb8,HBCI Bank im Bistum Essen eG,GENODED1BBE,,hbci-fiducia-adapter,36060295,, +49f09aa0-6dec-47a4-b336-1a451bd19078,HBCI Bank11 für Privatkunden und Handel GmbH,WEFZDED1XXX,,hbci-fiducia-adapter,30530500,, +de8743ee-05c6-4d0d-8410-1c8069324b69,HBCI Bankhaus Anton Hafner KG,ANHODE77XXX,,hbci-fiducia-adapter,72030227,, +a2a078c1-1242-4f77-9e07-db30f7ddf2ad,HBCI Bankhaus Bauer Aktiengesellschaft,BHBADES1XXX,,hbci-fiducia-adapter,60030100,, +e1db69a1-bacd-4482-951b-e9cf95e0e863,HBCI Bankhaus E. Mayer AG,BKMADE61XXX,,hbci-fiducia-adapter,68030000,, +105149dc-53cc-406b-9d80-aed61552a72e,HBCI Bankhaus Ellwanger & Geiger AG,ELGEDES1XXX,,hbci-fiducia-adapter,60030200,, +f754ca95-272f-4212-83e5-0f1fa2893417,HBCI Bankhaus Max Flessa KG,FLESDEMMXXX,,hbci-fiducia-adapter,79330111,, +19cf12f2-597a-4be3-852c-38741d9dbd86,HBCI Bankhaus Rautenschlein AG,GENODEF1RTS,,hbci-fiducia-adapter,27131300,, +fbd9f4ab-cb43-4275-9fa0-768e272886c0,HBCI Bayerische BodenseeBank - Raiffeisen - eG,GENODEF1LBB,,hbci-fiducia-adapter,73369821,, +3170b032-6882-4f8a-b427-2fc2ce41c364,HBCI BBBank eG,GENODE61BBB,,hbci-fiducia-adapter,66090800,, +6fe90636-ac2c-4b1f-a75a-f43eb411e32e,HBCI Bensberger Bank eG,GENODED1BGL,,hbci-fiducia-adapter,37062124,, +94ee17bd-10a8-4855-9287-79be572feba2,HBCI Berliner Volksbank eG Abteilung BIT,BEVODEBBXXX,,hbci-fiducia-adapter,10090000,, +afd54411-4f70-4c28-a3f8-a437a84ad5ff,HBCI Bernhauser Bank eG,GENODES1BBF,,hbci-fiducia-adapter,61262345,, +bed358ac-d2a8-4543-858f-91c5a6adcbea,HBCI Bopfinger Bank Sechta-Ries eG,GENODES1BPF,,hbci-fiducia-adapter,60069239,, +45a69d8c-8d04-4306-b184-5dd655ab0ab4,HBCI Brandenburger Bank Volksbank-Raiffeisenbank eG,GENODEF1BRB,,hbci-fiducia-adapter,16062073,, +5fac0a94-8600-49b7-b885-21f9f1f64a33,HBCI Bremische Volksbank eG,GENODEF1HB1,,hbci-fiducia-adapter,29190024,, +f52cb3e6-2427-48a8-8e90-3cd36bc7d3f1,HBCI Brühler Bank eG,GENODED1BRL,,hbci-fiducia-adapter,37069991,, +cef78eab-9d79-4ac6-9dbc-e3fca4501368,HBCI BTV Bank für Tirol und Vorarlberg AG Zweigniederlassung Deutschland,BTVADE61XXX,,hbci-fiducia-adapter,72012300,, +ba98d648-43ff-4de3-b3bf-04f2b69e8a32,HBCI Budenheimer Volksbank eG,GENODE51BUD,,hbci-fiducia-adapter,55061303,, +ba691513-b761-4045-a15a-351aa2cf755c,HBCI Cronbank AG,GENODE51CRO,,hbci-fiducia-adapter,50530000,, +7111d092-d0a7-429c-9144-df6f8dc62341,HBCI CVW-Privatbank AG,GENODEF1WHD,,hbci-fiducia-adapter,76211900,, +c237b23d-561a-43f6-9763-3c23c8b60afb,HBCI Dettinger Bank eG,GENODES1DBE,,hbci-fiducia-adapter,60069387,, +6c955676-d8ba-4f6a-b21c-a7349fcb6b61,HBCI Dithmarscher Volks- und Raiffeisenbank eG,GENODEF1DVR,,hbci-fiducia-adapter,21890022,, +ba03aca6-7a1d-492f-b434-a2d0ebe20f95,HBCI DKM Darlehnskasse Münster eG,GENODEM1DKM,,hbci-fiducia-adapter,40060265,, +1bdce090-fbab-401f-8865-eff6caa31d28,HBCI Donau-Iller Bank eG,GENODES1EHI,,hbci-fiducia-adapter,63091010,, +4e079dce-fda6-4757-a60e-69b32e5f5a5c,HBCI Donner & Reuschel AG,CHDBDEHHXXX,,hbci-fiducia-adapter,20030300,, +10fd0398-4960-4d90-ba1d-b60ca267c603,HBCI Dortmunder Volksbank eG,GENODEM1DOR,,hbci-fiducia-adapter,44160014,, +484ad691-dc9a-4aa5-a65e-6d871ea1a3a6,HBCI Echterdinger Bank eG,GENODES1ECH,,hbci-fiducia-adapter,60062775,, +1c48095d-cead-4ea0-99cb-577fabb1ef9b,HBCI Eckernförder Bank eG Volksbank-Raiffeisenbank,GENODEF1EFO,,hbci-fiducia-adapter,21092023,, +bf9cab43-17cb-4560-a981-37513f0ef3ee,HBCI EDEKABANK AG Hamburg,EDEKDEHHXXX,,hbci-fiducia-adapter,20090700,, +8f1c1a2a-00c9-432d-a0e5-4fb4fa3cf101,HBCI Emsländische Volksbank eG,GENODEF1MEP,,hbci-fiducia-adapter,26661494,, +020d2849-2664-4cce-b4e2-a5a75dbabdd4,HBCI Erfurter Bank eG,ERFBDE8EXXX,,hbci-fiducia-adapter,82064228,, +855c7a5d-d0cf-4929-a869-09b854054361,HBCI EthikBank eG,GENODEF1ETK,,hbci-fiducia-adapter,83094495,, +f1060fc7-43b5-43df-8aa2-e1f7c8695a00,HBCI Eurocity Bank AG,DLGHDEB1XXX,,hbci-fiducia-adapter,10030700,, +851d0bdb-160e-4668-b773-0824ba2b9fce,HBCI Evangelische Bank eG,GENODEF1EK1,,hbci-fiducia-adapter,52060410,, +71ab3291-803d-45a0-81e4-03befe43f488,HBCI Evenord-Bank eG-KG,GENODEF1N03,,hbci-fiducia-adapter,76090400,, +c3fd9188-41ee-4f84-9e78-56a32005cbec,HBCI Federseebank eG,GENODES1FED,,hbci-fiducia-adapter,60069860,, +793e2f0e-9220-45e1-8f65-c31cdb8c144e,HBCI Frankenberger Bank Raiffeisenbank eG,GENODEF1FBK,,hbci-fiducia-adapter,52069519,, +a313dfda-fb70-4b7a-a1db-5e365da65de5,HBCI Frankfurter Bankgesellschaft (Deutschland) AG,FBGADEF1XXX,,hbci-fiducia-adapter,50110700,, +89f6e5b2-70fa-4bc6-b8ef-01c89683cce4,HBCI Frankfurter Volksbank eG,FFVBDEFFXXX,,hbci-fiducia-adapter,50190000,, +cff510e5-be63-4731-88bd-d62c72583ea2,HBCI Freisinger Bank eG Volksbank-Raiffeisenbank,GENODEF1FSR,,hbci-fiducia-adapter,70169614,, +8e0f908d-5bae-43da-88f5-457276c0ef9b,HBCI Fürst Fugger Privatbank Aktiengesellschaft,FUBKDE71XXX,,hbci-fiducia-adapter,72030014,, +05daa99c-64da-4304-bb34-704449235bd3,HBCI Fürstlich Castell'sche Bank Credit-Casse AG,FUCEDE77XXX,,hbci-fiducia-adapter,79030001,, +c40aa7c9-fa16-4558-8996-8dbda22c34e1,HBCI GENO BANK ESSEN eG,GENODEM1GBE,,hbci-fiducia-adapter,36060488,, +e38275bb-0068-4f30-be0b-fbdbe5ad2761,HBCI Genobank Mainz eG,GENODE51MZ6,,hbci-fiducia-adapter,55060611,, +f36c68d2-5a95-4d7a-8b46-397ce7c39139,HBCI Genossenschaftsbank eG München,GENODEF1M07,,hbci-fiducia-adapter,70169464,, +b33d2bbe-f17f-43dd-8caf-95ea97f6dc4f,HBCI Genossenschaftsbank Unterallgäu eG,GENODEF1MIR,,hbci-fiducia-adapter,73160000,, +44ead6d2-1385-420b-ab90-928fb9909c96,HBCI Genossenschaftsbank Weil im Schönbuch eG,GENODES1GWS,,hbci-fiducia-adapter,60069224,, +ca70e57b-9915-4cbb-9440-fbcf46f69f88,HBCI Gladbacher Bank AG von 1922,GENODED1GBM,,hbci-fiducia-adapter,31060181,, +e73d2d48-f5e2-4944-8e24-3bc2499296b4,HBCI GLS Gemeinschaftsbank eG,GENODEM1GLS,,hbci-fiducia-adapter,43060967,, +5dfa69bf-660c-4225-84cf-eaabbdfda447,HBCI Grafschafter Volksbank eG,GENODEF1NEV,,hbci-fiducia-adapter,28069956,, +99a777d7-a8ac-455c-b756-d87bef50e63c,HBCI GRENKE BANK AG,GREBDEH1XXX,,hbci-fiducia-adapter,20130400,, +cb408c84-d138-471d-84cc-b80c6e67ed98,HBCI Hagnauer Volksbank eG,GENODE61HAG,,hbci-fiducia-adapter,69091200,, +2ee63193-da54-44a0-a69c-28c6904b327a,HBCI Hamburger Volksbank eG,GENODEF1HH2,,hbci-fiducia-adapter,20190003,, +46d5772e-a6b9-4c2e-a5b8-e6e289bbc086,HBCI Hannoversche Volksbank eG,VOHADE2HXXX,,hbci-fiducia-adapter,25190001,, +8ca36237-2245-44b7-944c-45c71418149b,HBCI Harzer Volksbank eG,GENODEF1QLB,,hbci-fiducia-adapter,80063508,, +4a98075d-1b1e-410e-98e0-67a9ce2b075e,HBCI HAUSBANK MÜNCHEN eG Bank für Haus- und Grundbesitz,GENODEF1M04,,hbci-fiducia-adapter,70090100,, +cf6a7cbe-6123-4e1e-bea1-91d6a047abe3,HBCI Heidelberger Volksbank eG,GENODE61HD1,,hbci-fiducia-adapter,67290000,, +04613f50-de2a-4105-b963-54604e7fc8d1,HBCI Heidenheimer Volksbank eG,GENODES1HDH,,hbci-fiducia-adapter,63290110,, +dfadbf6b-47ef-473e-acb6-d66919e18cac,HBCI Hoerner Bank AG,HOEBDE61XXX,,hbci-fiducia-adapter,62020000,, +26e52c31-c9f9-461f-968f-24b87ac42088,HBCI Hümmlinger Volksbank eG,GENODEF1WLT,,hbci-fiducia-adapter,28069381,, +61c667fb-0f62-4179-9c14-aeaa548e4489,HBCI Hüttenberger Bank eG,GENODE51HUT,,hbci-fiducia-adapter,50069455,, +e8a14683-82a0-49f4-8ccb-af3525e1c482,HBCI IBM Deutschland Kreditbank GmbH,IBKBDES1XXX,,hbci-fiducia-adapter,60035810,, +135c7313-21bf-4472-9d2f-18c8bf5532ed,HBCI Ikano Bank AB (publ) Zweigniederlassung Deutschland,PLFGDE5AIKB,,hbci-fiducia-adapter,50230888,, +56de46eb-6cec-4953-aaad-6c8e7ada88c2,HBCI Internationales Bankhaus Bodensee AG,IBBFDE81XXX,,hbci-fiducia-adapter,65110200,, +70abe2a3-903c-498b-9ae7-afa48ec154ed,HBCI Kieler Volksbank eG,GENODEF1KIL,,hbci-fiducia-adapter,21090007,, +55e44abd-7c50-4415-a026-e84543e1b5bf,HBCI Kurhessische Landbank eG,GENODEF1KS2,,hbci-fiducia-adapter,52060208,, +5707911b-d080-4475-93d2-8d2f9af7865a,HBCI Landbank Horlofftal eG,GENODE51REW,,hbci-fiducia-adapter,51861616,, +8851bbe7-9131-462c-bceb-4b995ea62736,HBCI Landwirtschaftliche Rentenbank,LAREDEFFXXX,,hbci-fiducia-adapter,50020500,, +8a2c8a6d-a03f-48b3-82fc-e9530636caca,HBCI Leipziger Volksbank eG,GENODEF1LVB,,hbci-fiducia-adapter,86095604,, +8f76deeb-c62b-465f-a867-8e5a58c1e80b,HBCI levoBank eG,GENODE51LEB,,hbci-fiducia-adapter,59393000,, +ee521a21-ff55-47ff-b7c6-e18ecf0368fc,HBCI LIGA Bank eG,GENODEF1M05,,hbci-fiducia-adapter,75090300,, +d0e84b65-ef0a-46ec-a0e1-26f9c9485574,HBCI Mainzer Volksbank eG,MVBMDE55XXX,,hbci-fiducia-adapter,55190000,, +e4f62f91-8026-44fe-b053-bbbaa82f1ccc,HBCI Märkische Bank eG,GENODEM1HGN,,hbci-fiducia-adapter,45060009,, +77884ab0-e83a-465d-923c-c5b664e22a47,HBCI meine Volksbank Raiffeisenbank eG,GENODEF1VRR,,hbci-fiducia-adapter,71160000,, +02ac8c3a-ac20-4dd5-b20e-83f381d5aedf,HBCI Mendener Bank eG,GENODEM1MEN,,hbci-fiducia-adapter,44761312,, +7496c80c-c616-4cd5-918c-7e67139cab8f,HBCI MERKUR BANK KGaA,GENODEF1M06,,hbci-fiducia-adapter,70130800,, +daf23af5-70af-4495-8479-97210716c4b2,HBCI MKB Mittelstandskreditbank AG,GENODEF1MKB,,hbci-fiducia-adapter,20190800,, +c8b78d3c-04ba-40ec-ad82-f1cd5bb00da4,HBCI MLP Finanzdienstleistungen,MLPBDE61XXX,,hbci-fiducia-adapter,67230000,, +bfd149f5-b6cd-4033-a2c1-65b52fe99d4d,HBCI Münchner Bank eG,GENODEF1M01,,hbci-fiducia-adapter,70190000,, +bda39781-9f86-4f1c-a32b-6f897b8d6cee,HBCI Münsterländische Bank Thie & Co. KG,MLBKDEH1MUE,,hbci-fiducia-adapter,40030000,, +ec85beaf-49c2-4123-af9a-d884c13907ca,HBCI net-m privatbank 1891 AG Aktiengesellschaft,BVWBDE2WXXX,,hbci-fiducia-adapter,70013100,, +d7bc9a6a-226f-4409-9948-ce7d9f4bc402,HBCI Nordthüringer Volksbank eG,GENODEF1NDS,,hbci-fiducia-adapter,82094054,, +86a2c53c-4060-438b-8baa-c0e442c7f2e1,HBCI North Channel Bank GmbH & Co. KG,GENODEF1OGK,,hbci-fiducia-adapter,10030600,, +ea77c022-0c7c-4ba0-97c4-b817e4b255d5,HBCI Onstmettinger Bank eG,GENODES1ONS,,hbci-fiducia-adapter,65361989,, +2ede5990-0c42-4cc5-865b-afd0cfc296ac,HBCI Ostfriesische Volksbank eG,GENODEF1LER,,hbci-fiducia-adapter,28590075,, +b9e0207e-3641-4579-80a5-5c8d665f96b5,HBCI Otto M. Schröder Bank AG,OSCBDEH1XXX,,hbci-fiducia-adapter,20230300,, +bf0367db-2800-4831-97b4-5a3401070188,HBCI Pax-Bank eG Kirche und Caritas,GENODED1PAX,,hbci-fiducia-adapter,37060193,, +d30ac80a-08e2-454e-bd53-cc39ad8b93a8,HBCI Pommersche Volksbank eG,GENODEF1HST,,hbci-fiducia-adapter,13091054,, +31206c63-c8a1-4386-ba83-4cd0f12bb4c9,HBCI PSD Bank Berlin-Brandenburg eG,GENODEF1P01,,hbci-fiducia-adapter,10090900,, +e5bd3c3c-a43d-43b8-a5bc-0eeff9f5ec00,HBCI PSD Bank Braunschweig eG,GENODEF1P02,,hbci-fiducia-adapter,27090900,, +d9da96d9-c3d6-4b79-9e48-e51a3c78caa6,HBCI PSD Bank Hannover eG,GENODEF1P09,,hbci-fiducia-adapter,25090900,, +8eddcb8b-7ed4-4082-8f80-8c18cda26888,HBCI PSD Bank Hessen-Thüringen eG,GENODEF1P06,,hbci-fiducia-adapter,50090900,, +0bfeab76-c8c8-4655-bf1a-d5b2c4182ece,HBCI PSD Bank Karlsruhe-Neustadt eG,GENODEF1P10,,hbci-fiducia-adapter,66090900,, +36252a8a-51b9-472f-8c34-8b1559f224c3,HBCI PSD Bank Kiel eG,GENODEF1P11,,hbci-fiducia-adapter,21090900,, +0dba39ff-fdd2-40f6-a255-f4a384746d70,HBCI PSD Bank Koblenz eG,GENODEF1P12,,hbci-fiducia-adapter,57090900,, +730b71d1-46b0-4cae-9b3f-a630fb6572f3,HBCI PSD Bank München eG,GENODEF1P14,,hbci-fiducia-adapter,72090900,, +a4ff81c4-656f-4ad3-b866-c546c7244cd8,HBCI PSD Bank Nord eG,GENODEF1P08,,hbci-fiducia-adapter,20090900,, +3b57889d-f2d1-4cd6-a6ae-95580ddc77da,HBCI PSD Bank Nürnberg eG,GENODEF1P17,,hbci-fiducia-adapter,76090900,, +16b7b14c-50ca-46f8-b7a6-2a4bbc9b214d,HBCI PSD Bank RheinNeckarSaar eG,GENODEF1P20,,hbci-fiducia-adapter,60090900,, +a29f2219-c44a-4ba9-9da0-27f7bf01cd38,HBCI PSD Bank Rhein-Ruhr eG,GENODEF1P05,,hbci-fiducia-adapter,30060992,, +678b6adb-d3df-4ce1-8384-0c6c6056cab1,HBCI PSD Bank West eG,GENODEF1P13,,hbci-fiducia-adapter,37060993,, +28262c39-e78b-4fa9-a0dc-d9c0863c893d,HBCI PSD Bank Westfalen-Lippe eG,GENODEF1P15,,hbci-fiducia-adapter,40090900,, +cd233963-21a3-4fd9-8aa6-cef2978913df,HBCI Raiffeisen - meine Bank eG,GENODEF1FYS,,hbci-fiducia-adapter,76069449,, +69006e90-6695-45c3-a8eb-59612478b6a8,HBCI Raiffeisen Privatbank eG,GENODE61WIB,,hbci-fiducia-adapter,67262243,, +c72f440f-56eb-4ef3-9ecc-169ce07c2567,HBCI Raiffeisen Spar+Kreditbank eG,GENODEF1LAU,,hbci-fiducia-adapter,76061025,, +50617fa3-5af5-4854-ad83-7a5bde4c5571,HBCI Raiffeisenbank Adelzhausen-Sielenbach eG,GENODEF1ADZ,,hbci-fiducia-adapter,72069002,, +48667f3f-2e05-4d54-b09c-4a8bead9050d,HBCI Raiffeisenbank Aichhalden-Hardt- Sulgen eG,GENODES1HAR,,hbci-fiducia-adapter,60069553,, +776460b8-fc5b-4756-acbb-8082942972a8,HBCI Raiffeisenbank Aidlingen eG,GENODES1AID,,hbci-fiducia-adapter,60069206,, +003b7fc2-3b4c-4ac7-bf67-a3f3fa383b0c,HBCI Raiffeisenbank Aindling eG,GENODEF1AIL,,hbci-fiducia-adapter,72069005,, +c2266cb8-0656-42fb-80d6-a599cf12acdb,HBCI Raiffeisenbank Aitrang-Ruderatshofen eG,GENODEF1AIT,,hbci-fiducia-adapter,73369851,, +75419512-14e1-4d8b-8cdc-88f7cb3ddbcf,HBCI Raiffeisenbank Altdorf-Ergolding eG,GENODEF1ERG,,hbci-fiducia-adapter,74362663,, +a76116cf-a804-4eb4-a0d4-a090e1a525e0,HBCI Raiffeisenbank Altdorf-Feucht eG,GENODEF1FEC,,hbci-fiducia-adapter,76069440,, +0a6da57b-7546-4fb7-bc2f-3fe6845be6d6,HBCI Raiffeisenbank Alteglofsheim-Hagelstadt eG,GENODEF1HGA,,hbci-fiducia-adapter,75069055,, +a9f410a5-5ec6-451f-88e1-9e2dc68b7e27,HBCI Raiffeisenbank Altschweier eG,GENODE61ALR,,hbci-fiducia-adapter,66261416,, +10f29714-821f-4ed5-94ce-7462c05d82e1,HBCI Raiffeisenbank am Dreisessel eG,GENODEF1NHD,,hbci-fiducia-adapter,74069768,, +daedf771-d00d-42c3-b3c4-bcffa1fcc666,HBCI Raiffeisenbank Am Goldenen Steig eG,GENODEF1RGS,,hbci-fiducia-adapter,74061101,, +3f9592bf-4ff6-4474-ad18-1a4290d6537a,HBCI Raiffeisenbank am Kulm eG,GENODEF1SPK,,hbci-fiducia-adapter,77069782,, +3eb45ae8-a573-486b-b75a-a212104abc92,HBCI Raiffeisenbank Anger eG,GENODEF1AGE,,hbci-fiducia-adapter,71062802,, +56bce42d-b143-465f-b268-3cbb320ea568,HBCI Raiffeisenbank Aresing-Gerolsbach eG,GENODEF1GSB,,hbci-fiducia-adapter,72169080,, +3c4014c6-ebb5-462e-806b-31980412b3b2,HBCI Raiffeisenbank Arnstorf eG,GENODEF1ARF,,hbci-fiducia-adapter,74361211,, +827e7429-3df6-4c49-af5a-4e0ce883e7ff,HBCI Raiffeisenbank Aschau-Samerberg eG,GENODEF1ASU,,hbci-fiducia-adapter,71162804,, +8318740d-9d38-4726-a63a-1f5b656d9c21,HBCI Raiffeisenbank Aschberg eG,GENODEF1HZH,,hbci-fiducia-adapter,72069113,, +134fab25-262b-4098-947b-5b4407ea796d,HBCI Raiffeisenbank Auerbach-Freihung eG,GENODEF1AUO,,hbci-fiducia-adapter,76069369,, +f86743fd-1417-4e67-9b5e-eaa3977bf4c5,HBCI Raiffeisenbank Augsburger Land West eG,GENODEF1ZUS,,hbci-fiducia-adapter,72069274,, +c8dbdaa7-347c-4f6b-b6a4-c0d3e8f4c79a,HBCI Raiffeisenbank Aulendorf eG,GENODES1AUL,,hbci-fiducia-adapter,65061219,, +c85c7d3b-be06-4a2c-89c5-526e362c02cd,HBCI Raiffeisenbank Bad Kötzting eG,GENODEF1KTZ,,hbci-fiducia-adapter,75069081,, +8876cc40-e40b-4128-8308-695b1f471921,HBCI Raiffeisenbank Bad Saulgau eG,GENODES1SAG,,hbci-fiducia-adapter,65063086,, +5ffa40bd-6c73-4ae4-872d-4a8fc6a10923,HBCI Raiffeisenbank Bad Schussenried eG,GENODES1RBS,,hbci-fiducia-adapter,60069303,, +650c04fe-c024-4bbc-8abf-08e8035bc9bd,HBCI Raiffeisenbank Bad Windsheim eG,GENODEF1WDS,,hbci-fiducia-adapter,76069372,, +acee1d05-984a-4af7-9039-e08075488bf5,HBCI Raiffeisenbank Baisweil-Eggenthal-Friesenried eG,GENODEF1EGB,,hbci-fiducia-adapter,73369871,, +d973bbdd-0632-4a97-a307-db454010c2e7,HBCI Raiffeisenbank Bechhofen eG,GENODEF1BEH,,hbci-fiducia-adapter,76069378,, +b8ac54be-9694-4430-a3cb-3587a289f906,HBCI Raiffeisenbank Beilngries eG,GENODEF1BLN,,hbci-fiducia-adapter,72169380,, +f8382bc0-fdf7-472f-9cb9-24627478bcc9,HBCI Raiffeisenbank Berghülen eG,GENODES1BGH,,hbci-fiducia-adapter,60069931,, +6a7dbddd-0d54-4c6d-bbb4-552efd1e66c5,HBCI Raiffeisenbank Beuerberg-Eurasburg eG,GENODEF1EUR,,hbci-fiducia-adapter,70169333,, +ed182176-ef51-440e-9b68-d4f32cdd593d,HBCI Raiffeisenbank Biberach eG,GENODES1WAR,,hbci-fiducia-adapter,65461878,, +b1f5ab00-e050-4c5e-af91-2c7975162c64,HBCI Raiffeisenbank Bibertgrund eG,GENODEF1ZIR,,hbci-fiducia-adapter,76069669,, +3c5cdd17-d9cf-4e85-97b4-a72568ec01ba,HBCI Raiffeisenbank Bidingen eG,GENODEF1BIN,,hbci-fiducia-adapter,73369859,, +d5fec3cd-c18f-4eee-993d-57197887c916,HBCI Raiffeisenbank Biebergrund-Petersberg eG,GENODEF1PBG,,hbci-fiducia-adapter,53062350,, +db587c18-11ab-4355-8d36-95bbb262bc2a,HBCI Raiffeisenbank Bissingen eG,GENODEF1BSI,,hbci-fiducia-adapter,72069034,, +4994279a-a2ea-456c-b4f0-598da5923f47,HBCI Raiffeisenbank Bobingen eG,GENODEF1BOI,,hbci-fiducia-adapter,72069036,, +ae17d367-0aa5-4662-8b9e-3869666537c1,HBCI Raiffeisenbank Böllingertal eG,GENODES1BOE,,hbci-fiducia-adapter,60069976,, +e11caf3c-254c-444b-ad54-0fa0591ce325,HBCI Raiffeisenbank Borken Nordhessen eG,GENODEF1BOR,,hbci-fiducia-adapter,52061303,, +bd91a588-0a39-46e2-a12f-ced10b36fa30,HBCI Raiffeisenbank Bruck eG,GENODEF1BUK,,hbci-fiducia-adapter,75069020,, +3f5b8959-555f-47d6-af5a-c4c467e2164e,HBCI Raiffeisenbank Buch-Eching eG,GENODEF1EBV,,hbci-fiducia-adapter,74369662,, +cc3cdd0f-9783-4a52-9a60-bcc08515291c,HBCI Raiffeisenbank Bühlertal eG,GENODES1RVG,,hbci-fiducia-adapter,60069075,, +bd393878-8d8f-4a01-83d6-d1e7f0605ae0,HBCI Raiffeisenbank Burgebrach-Stegaurach eG,GENODEF1BGB,,hbci-fiducia-adapter,77062014,, +015dafda-78ad-4cba-a057-7323c3c4efd5,HBCI Raiffeisenbank Butjadingen- Abbehausen eG,GENODEF1BUT,,hbci-fiducia-adapter,28068218,, +6f00685d-a4d7-4974-b040-b67ca327deb6,HBCI Raiffeisenbank Bütthard-Gaukönigshofen eG,GENODEF1BHD,,hbci-fiducia-adapter,79069031,, +99129ed8-9912-43e2-b72c-b43c3e3e7b34,HBCI Raiffeisenbank Chamer Land eG,GENODEF1CHA,,hbci-fiducia-adapter,74261024,, +430cfee5-ded1-44a6-8fd8-4edda74ae98f,HBCI Raiffeisenbank Chiemgau-Nord-Obing eG,GENODEF1SBC,,hbci-fiducia-adapter,70169165,, +9739f9b1-3c29-48cc-8bb4-7d37cb5e5f43,HBCI Raiffeisenbank Denzlingen-Sexau eG,GENODE61DEN,,hbci-fiducia-adapter,68062105,, +d3a0d8ca-6dbb-4507-8869-6df11e7aa6d7,HBCI Raiffeisenbank Dietersheim und Umgebung eG,GENODEF1DIM,,hbci-fiducia-adapter,76069410,, +281e0c6f-8cfe-40ca-8df2-fd995e2e8f05,HBCI Raiffeisenbank Donau-Heuberg eG,GENODES1RDH,,hbci-fiducia-adapter,64361359,, +7e047ead-0bce-40d5-9b36-b164c1b8d033,HBCI Raiffeisenbank Ebrachgrund eG,GENODEF1SFD,,hbci-fiducia-adapter,77069091,, +c3cc794d-d67c-4b6f-a547-0850b2ffb975,HBCI Raiffeisenbank eG Baunatal,GENODEF1BTA,,hbci-fiducia-adapter,52064156,, +e8c9b2e9-201b-436e-aa60-8585e7830037,HBCI Raiffeisenbank eG Büchen-Crivitz-Hagenow-Plate,GENODEF1BCH,,hbci-fiducia-adapter,23064107,, +6e67ff07-382a-44ee-b4ad-62009e0aa592,HBCI Raiffeisenbank eG Deggendorf-Plattling-Sonnenwald,GENODEF1DEG,,hbci-fiducia-adapter,74160025,, +69dae978-6dec-4264-b704-16b5fc8ac0d0,HBCI Raiffeisenbank eG Elztal,GENODE61ELZ,,hbci-fiducia-adapter,66069103,, +725a8910-f674-4589-8d8b-8ef4c3292d67,HBCI Raiffeisenbank eG Offenbach / M.-Bieber,GENODE51OF2,,hbci-fiducia-adapter,50560102,, +39f67947-d1a1-4f3d-84ab-f4df5fac10d8,HBCI Raiffeisenbank eG Scharrel,GENODEF1SAN,,hbci-fiducia-adapter,28065286,, +2650af12-7c6d-49ad-aeb6-9f5da4b4fdeb,HBCI Raiffeisenbank eG Unterwesterwald,GENODE51ARZ,,hbci-fiducia-adapter,57263015,, +d654a218-f928-43da-995d-952f2efe4118,HBCI "Raiffeisenbank eG, Handewitt",,hbci-https://www.raibahandewitt.de/services_xs2a/bg13,fiducia-adapter,,, +b8a7338f-f7a0-4b20-b4b2-966889b61c28,HBCI "Raiffeisenbank eG, Lauenburg",,hbci-https://www.raibalauenburg.de/services_xs2a/bg13,fiducia-adapter,,, +ce61f3ac-1725-479c-a36f-262ad3750329,HBCI "Raiffeisenbank eG, Leezen",,hbci-https://www.rbleezen.de/services_xs2a/bg13,fiducia-adapter,,, +8ac3fb1b-45bf-4a5d-b232-ab41e8a6d400,HBCI "Raiffeisenbank eG, Moormerland",,hbci-https://www.raibamol.de/services_xs2a/bg13,fiducia-adapter,,, +84ec0a46-6052-4569-a34e-863728d5fab9,HBCI "Raiffeisenbank eG, Owschlag",,hbci-https://www.rbowschlag.de/services_xs2a/bg13,fiducia-adapter,,, +1c45e448-949b-4cc4-b51a-1acb6017488d,HBCI "Raiffeisenbank eG, Ratzeburg",,hbci-https://www.rbratzeburg.de/services_xs2a/bg13,fiducia-adapter,,, +2408aa27-6e2e-4af4-9fe9-8a9def239171,HBCI "Raiffeisenbank eG, Rodenbach",,hbci-https://www.rbrodenbach.de/services_xs2a/bg13,fiducia-adapter,,, +2c4a2f76-e5f9-4e6f-a9b0-168ec1fa2d15,HBCI "Raiffeisenbank eG, Seestermühe",,hbci-https://www.rbseestermuehe.de/services_xs2a/bg13,fiducia-adapter,,, +0fd096bd-8854-4ffb-aea0-9c26176ff849,HBCI "Raiffeisenbank eG, Simmerath",,hbci-https://www.raiffeisenbank-simmerath.de/services_xs2a/bg13,fiducia-adapter,,, +85985905-370a-4e3c-8472-07749c782d7f,HBCI "Raiffeisenbank eG, Struvenhütten",,hbci-https://www.rbstruvenhuetten.de/services_xs2a/bg13,fiducia-adapter,,, +f9fb3802-0ddd-4a5c-b25a-362eeec3bd69,HBCI "Raiffeisenbank eG, Todenbüttel",,hbci-https://www.rbtodenbuettel.de/services_xs2a/bg13,fiducia-adapter,,, +26d210bb-9664-4016-a067-b7360dfc7d54,HBCI Raiffeisenbank Ehekirchen-Oberhausen eG,GENODEF1WDF,,hbci-fiducia-adapter,72169745,, +d7e2edb5-762c-4928-bc20-0f10fa013302,HBCI Raiffeisenbank Ehingen-Hochsträß eG,GENODES1REH,,hbci-fiducia-adapter,60069346,, +1a024578-2d8f-4a0e-8f00-976392b228ee,HBCI Raiffeisenbank Eichenbühl und Umgebung eG,GENODEF1ENB,,hbci-fiducia-adapter,79668509,, +7cedbf97-7e92-445b-828a-b77567fd7df9,HBCI Raiffeisenbank Eifeltor eG,GENODED1KAI,,hbci-fiducia-adapter,57069144,, +bdbbd73b-e159-4834-95ad-15f2956453cb,HBCI Raiffeisenbank Elbmarsch eG,GENODEF1HTE,,hbci-fiducia-adapter,22163114,, +33dfc362-ac88-4cae-b8c6-83768f112e48,HBCI Raiffeisenbank Elsavatal eG,GENODEF1EAU,,hbci-fiducia-adapter,79665540,, +9b68cd3f-4b4c-4f7a-a9be-94ed3fb4ae7d,HBCI Raiffeisenbank Emsland-Mitte eG,GENODEF1KBL,,hbci-fiducia-adapter,28069878,, +7737e17a-1f70-4195-b1d1-881ffe5368f5,HBCI Raiffeisenbank Erding eG,GENODEF1EDR,,hbci-fiducia-adapter,70169356,, +2123c886-41ca-470f-aaef-bb87a553d450,HBCI Raiffeisenbank Erkelenz eG,GENODED1LOE,,hbci-fiducia-adapter,31263359,, +48379c9b-0ad2-4779-bdb8-f0a6bf77551a,HBCI Raiffeisenbank Erlenbach eG,GENODES1ERL,,hbci-fiducia-adapter,60069911,, +1fb25f59-4f9f-4d72-ad0c-71528591bfa9,HBCI Raiffeisenbank Ersingen eG,GENODE61ERS,,hbci-fiducia-adapter,66662155,, +994bc448-5f0a-47ec-b711-86575f45040e,HBCI Raiffeisenbank Eschlkam-Lam- Lohberg-Neukirchen b. Hl. Blut eG,GENODEF1NKN,,hbci-fiducia-adapter,75069110,, +8854d415-0e2a-443f-bafc-1c09441ddbfb,HBCI Raiffeisen-Bank Eschweiler eG,GENODED1RSC,,hbci-fiducia-adapter,39362254,, +0fad5617-e7e9-4e0d-a68d-5e9126c10fba,HBCI Raiffeisenbank Essenbach eG,GENODEF1ENA,,hbci-fiducia-adapter,74369656,, +cfeddbd0-087c-4872-84cb-7f518eeb282c,HBCI Raiffeisenbank Estenfeld-Bergtheim eG,GENODEF1EFD,,hbci-fiducia-adapter,79063060,, +2ad15ab3-b7c1-4fbc-8950-9b5c741c5720,HBCI Raiffeisenbank Falkenstein-Wörth eG,GENODEF1FKS,,hbci-fiducia-adapter,75069038,, +d9a438af-b3de-4417-9831-a8e8e857510a,HBCI Raiffeisenbank Fischenich-Kendenich eG,GENODED1FKH,,hbci-fiducia-adapter,37063367,, +16239884-8ba4-41eb-8d0d-abea32cfdf75,HBCI Raiffeisenbank Flachsmeer eG,GENODEF1WEF,,hbci-fiducia-adapter,28562716,, +b78701b7-0e10-46dc-a559-39b470014f39,HBCI Raiffeisenbank Floß eG,GENODEF1FLS,,hbci-fiducia-adapter,75362039,, +593b2dff-892f-4610-b2a9-a1e961c0edca,HBCI Raiffeisenbank Frankenhardt-Stimpfach eG,GENODES1RFS,,hbci-fiducia-adapter,60069442,, +e01cfb85-c456-4a6a-a123-645298eab181,HBCI Raiffeisenbank Frankenwinheim und Umgebung eG,GENODEF1FWH,,hbci-fiducia-adapter,79364069,, +9040cab3-100a-4b93-8327-f286200db1f0,HBCI Raiffeisenbank Fränkische Schweiz eG,GENODEF1HWA,,hbci-fiducia-adapter,77365792,, +2a45ba95-2a44-4b2e-8ea5-5adf7665d42c,HBCI Raiffeisenbank Freinsheim eG,GENODE61FSH,,hbci-fiducia-adapter,54661800,, +6611522f-ea94-48dd-a330-a4819c593358,HBCI Raiffeisenbank Fuchstal-Denklingen eG,GENODEF1FCH,,hbci-fiducia-adapter,73369854,, +c34a2bda-f1a6-4692-85c7-6a4341799ec9,HBCI Raiffeisenbank Gefrees eG,GENODEF1GFS,,hbci-fiducia-adapter,77363749,, +e54b9781-fc77-4fbc-a017-dd93b90e85d7,HBCI Raiffeisenbank Geiselhöring-Pfaffenberg eG,GENODEF1GPF,,hbci-fiducia-adapter,74369088,, +fd60fcbc-ed32-4455-872a-9015cb174825,HBCI Raiffeisenbank Geislingen-Rosenfeld eG,GENODES1GEI,,hbci-fiducia-adapter,65362499,, +e599e0f4-67f5-45e1-8607-85314333390c,HBCI Raiffeisenbank Gilching eG,GENODEF1GIL,,hbci-fiducia-adapter,70169382,, +3f7a975f-e81c-408d-a09a-c3dcb1c6298d,HBCI Raiffeisenbank Gmund am Tegernsee eG,GENODEF1GMU,,hbci-fiducia-adapter,70169383,, +308069e5-0536-413d-a716-1e6ab93996ee,HBCI Raiffeisenbank Gotha eG,GENODEF1GTH,,hbci-fiducia-adapter,82064168,, +b834737a-e97d-4048-9e6d-9084b2f47649,HBCI Raiffeisenbank Grainet eG,GENODEF1GRT,,hbci-fiducia-adapter,74069744,, +179df3de-d1fe-48f2-9d04-50ef6544532d,HBCI Raiffeisenbank Grävenwiesbach eG,GENODE51GWB,,hbci-fiducia-adapter,50069345,, +7671df4a-311b-4c6c-8f7b-4085f816bfac,HBCI Raiffeisenbank Greding-Thalmässing eG,GENODEF1GDG,,hbci-fiducia-adapter,76069462,, +1b164417-1f1a-49d4-b86b-b73d2d76d676,HBCI Raiffeisenbank Griesstätt-Halfing eG,GENODEF1HFG,,hbci-fiducia-adapter,70169132,, +20ed9a1d-ef4c-461c-bd58-8e4b617a31b3,HBCI Raiffeisenbank Grimma eG,GENODEF1GMR,,hbci-fiducia-adapter,86065483,, +6ec7f2b6-ef75-4ec1-bc82-c3e80eb372bb,HBCI Raiffeisenbank Gruibingen eG,GENODES1RGR,,hbci-fiducia-adapter,60069242,, +806c491c-aaf4-4c81-a636-d85dc6a460a8,HBCI Raiffeisenbank Gymnich eG,GENODED1EGY,,hbci-fiducia-adapter,37069322,, +5c0257c5-29f4-41c6-9596-929c0d931d6e,HBCI Raiffeisenbank Haag-Gars-Maitenbeth eG,GENODEF1HMA,,hbci-fiducia-adapter,70169388,, +3597d5c9-3c2d-4576-ab67-f4a45a2af572,HBCI Raiffeisenbank Hallertau eG,GENODEF1RHT,,hbci-fiducia-adapter,70169693,, +3060913b-80a4-42cd-9f96-997541b11d65,HBCI Raiffeisenbank Hardt-Bruhrain eG,GENODE61DET,,hbci-fiducia-adapter,66062366,, +d2b0120d-2672-4f87-b581-cf98c3d85584,HBCI Raiffeisenbank Heilsbronn-Windsbach eG,GENODEF1WBA,,hbci-fiducia-adapter,76069663,, +6c5471f2-7a47-4d43-91d9-df41422ccbaa,HBCI Raiffeisenbank Hengersberg-Schöllnach eG,GENODEF1HBW,,hbci-fiducia-adapter,74161608,, +33fee12f-15e5-4a07-84ef-289f421646d0,HBCI Raiffeisenbank Heroldsbach eG,GENODEF1HOB,,hbci-fiducia-adapter,77069052,, +3c98f572-54d3-4468-8dd7-66158f79c5f6,HBCI Raiffeisenbank Hersbruck eG,GENODEF1HSB,,hbci-fiducia-adapter,76061482,, +d0812938-c3a2-4270-a51a-150cefc72fd7,HBCI Raiffeisenbank HessenNord eG,GENODEF1WOH,,hbci-fiducia-adapter,52063550,, +b5c6e070-5da2-4b5d-aefb-5919dbdae4e3,HBCI Raiffeisenbank Hiltenfingen eG,GENODEF1HTF,,hbci-fiducia-adapter,72069105,, +c421f98c-7a31-4d18-bb76-b5b5edf46a9b,HBCI Raiffeisenbank Hirschau eG,GENODEF1HSC,,hbci-fiducia-adapter,76069486,, +444d075c-a991-441a-b4dc-1d9e1df00802,HBCI Raiffeisenbank Höchberg eG,GENODEF1HBG,,hbci-fiducia-adapter,79063122,, +e41ae322-96fc-457c-921a-f59a9518ffd0,HBCI Raiffeisenbank Hochfranken West eG,GENODEF1SZF,,hbci-fiducia-adapter,77069870,, +d575a89d-b02a-4ffd-bc27-58f2cb79b913,HBCI Raiffeisenbank Hohenloher Land eG,GENODES1IBR,,hbci-fiducia-adapter,60069714,, +7d503ee6-e493-42f8-b9f8-5e2ca7beb8aa,HBCI Raiffeisenbank Holzkirchen-Otterfing eG,GENODEF1HZO,,hbci-fiducia-adapter,70169410,, +12712743-403a-44cc-ae3c-55ef79955866,HBCI Raiffeisenbank Ichenhausen eG,GENODEF1ICH,,hbci-fiducia-adapter,72069119,, +56a99c4c-7562-496e-85f4-af91c7e2fd02,HBCI Raiffeisenbank im Allgäuer Land eG,GENODEF1DTA,,hbci-fiducia-adapter,73369264,, +5a1897ec-3b7c-49cd-a310-080585b10e12,HBCI Raiffeisenbank im Breisgau eG,GENODE61GUN,,hbci-fiducia-adapter,68064222,, +c7a1ec4a-5fe6-4155-9cd0-8cae6e8b9792,HBCI Raiffeisenbank im Donautal eG,GENODEF1GAH,,hbci-fiducia-adapter,72169812,, +dd35a1b6-12c4-4805-a0ad-7a3fc295a0f9,HBCI Raiffeisenbank im Fuldaer Land eG,GENODEF1GLU,,hbci-fiducia-adapter,53062035,, +2644310e-8392-4469-936d-9fcb60fd1287,HBCI Raiffeisenbank im Grabfeld eG,GENODEF1SLZ,,hbci-fiducia-adapter,79069188,, +1a829144-4077-48bf-bb0d-76d248b88106,HBCI Raiffeisenbank im Kreis Calw eG,GENODES1RCW,,hbci-fiducia-adapter,60663084,, +a3231e7e-4b30-4d85-ad3b-b098d06065c5,HBCI Raiffeisenbank im Landkreis Passau-Nord eG,GENODEF1TIE,,hbci-fiducia-adapter,74062786,, +b405010b-5f90-4e7c-ba67-5abb5d237a4e,HBCI Raiffeisenbank im Oberland eG,GENODEF1MIB,,hbci-fiducia-adapter,70169598,, +452807b8-1dc7-4624-a41f-56efda86bb7c,HBCI Raiffeisenbank im Oberpfälzer Jura eG,GENODEF1HEM,,hbci-fiducia-adapter,75069061,, +4333a263-6b6c-4bc9-8881-a11ce2e69623,HBCI Raiffeisenbank Irrel eG,GENODED1IRR,,hbci-fiducia-adapter,57069727,, +af315f98-eafd-413e-b197-adebe19e5652,HBCI Raiffeisenbank Isar-Loisachtal eG,GENODEF1HHS,,hbci-fiducia-adapter,70169543,, +0455d188-af17-40e5-8a7c-2775f8c70744,HBCI Raiffeisenbank Kaarst eG,GENODED1KAA,,hbci-fiducia-adapter,37069405,, +e7d010c6-6de3-425e-ba97-9902a1d47441,HBCI Raiffeisenbank Kaiserstuhl eG,GENODE61VOK,,hbci-fiducia-adapter,68063479,, +4c4d2d61-66f9-4fac-9d38-4cac0ce68f37,HBCI Raiffeisenbank Kalbe-Bismark eG,GENODEF1KAB,,hbci-fiducia-adapter,81063028,, +a768208b-306b-48a1-bcf5-e2818753ef84,HBCI Raiffeisenbank Kastellaun eG,GENODED1KSL,,hbci-fiducia-adapter,56061151,, +6339f68a-ef9b-4edf-97ac-61ea4a7ef953,HBCI Raiffeisenbank Kehrig eG,GENODED1KEH,,hbci-fiducia-adapter,57661253,, +95eb957b-4d7c-4bc5-9a8c-815018f66543,HBCI Raiffeisenbank Kempten-Oberallgäu eG,GENODEF1SFO,,hbci-fiducia-adapter,73369920,, +9cf522ea-7c42-439e-9b61-53000171d7d2,HBCI Raiffeisenbank Kieselbronn eG,GENODE61KBR,,hbci-fiducia-adapter,66661329,, +f8b2d852-f3ee-4c4d-9977-759c441df8aa,HBCI Raiffeisenbank Kirchweihtal eG,GENODEF1OKI,,hbci-fiducia-adapter,73369918,, +983d48db-8fd8-498b-bbf8-6cc54804053e,HBCI Raiffeisenbank Kirtorf eG,GENODE51KIF,,hbci-fiducia-adapter,50069477,, +1454b59c-6529-452d-aaed-68ec6a4b052d,HBCI Raiffeisenbank Kissing-Mering eG,GENODEF1MRI,,hbci-fiducia-adapter,72069155,, +35858c1b-8d48-4f2b-991a-610d066ceea2,HBCI Raiffeisenbank Kitzinger Land eG,GENODEF1OBR,,hbci-fiducia-adapter,79161499,, +90cd2496-c114-42cb-9944-a1ad29ac38d3,HBCI Raiffeisenbank Knoblauchsland eG,GENODEF1N08,,hbci-fiducia-adapter,76069512,, +2be81ded-d397-4a63-81bf-a4041e0fc4a3,HBCI Raiffeisenbank Kreis Kelheim eG,GENODEF1ABS,,hbci-fiducia-adapter,75069014,, +c53410f8-b147-4f60-ae0d-85b195a3307d,HBCI Raiffeisenbank Küps-Mitwitz-Stockheim eG,GENODEF1KC2,,hbci-fiducia-adapter,77069044,, +123f29d2-0af6-4da9-ae84-c4dd6082ea89,HBCI Raiffeisenbank Lorup eG,GENODEF1LRU,,hbci-fiducia-adapter,28069935,, +02267544-dae1-47e2-ab74-56811499ff09,HBCI Raiffeisenbank Main-Spessart eG,GENODEF1GEM,,hbci-fiducia-adapter,79069150,, +c9291f3a-1f7c-45bd-9e74-2f76889686fe,HBCI Raiffeisenbank Maitis eG,GENODES1RMA,,hbci-fiducia-adapter,60069336,, +478ab182-a365-495d-9994-7ba0c93e6f3b,HBCI Raiffeisenbank Maßbach eG,GENODEF1RNM,,hbci-fiducia-adapter,79069213,, +49f88a13-0bad-4cae-87be-ffaee1a4df0b,HBCI Raiffeisenbank Mecklenburger Seenplatte eG,GENODEF1WRN,,hbci-fiducia-adapter,15061618,, +c298c886-a862-45e4-acf7-4fc71b78360c,HBCI Raiffeisenbank Mehring-Leiwen eG,GENODED1MLW,,hbci-fiducia-adapter,58561771,, +906c03b6-26b3-4153-8037-33ce1a42bd48,HBCI Raiffeisenbank Mehrstetten eG,GENODES1MEH,,hbci-fiducia-adapter,60069706,, +c992534a-5896-4f41-a6ce-8fe3d75b8647,HBCI Raiffeisenbank Mittelschwaben eG,GENODEF1BBT,,hbci-fiducia-adapter,72069126,, +e3d36b29-d24a-422d-971e-9c67950eed59,HBCI Raiffeisenbank Mittenwald eG,GENODEF1MTW,,hbci-fiducia-adapter,70169459,, +7013cbd9-280a-465f-b505-c02bd2f8579e,HBCI Raiffeisenbank Moselkrampen eG,GENODED1MOK,,hbci-fiducia-adapter,57069081,, +2100492d-3ae2-4550-94ef-0ce68e6010a6,HBCI Raiffeisenbank Mötzingen eG,GENODES1RMO,,hbci-fiducia-adapter,60069817,, +9513ce1f-d2c6-495a-87b9-588656c5e37a,HBCI Raiffeisenbank München-Nord eG,GENODEF1M08,,hbci-fiducia-adapter,70169465,, +1fbab2a3-51cc-4965-9d9e-178935f60f63,HBCI Raiffeisenbank München-Süd eG,GENODEF1M03,,hbci-fiducia-adapter,70169466,, +cd4b2216-18df-4ea3-aca3-5b7563e9bce8,HBCI Raiffeisenbank Mutlangen eG,GENODES1RML,,hbci-fiducia-adapter,61361975,, +2656d497-3014-4618-af1a-aa4c679c849b,HBCI Raiffeisenbank Nahe eG,GENODED1FIN,,hbci-fiducia-adapter,56261735,, +1c9e9e7a-bef4-4821-b876-30c9452308dc,HBCI Raiffeisenbank Neumarkt i.d.OPf. eG,GENODEF1NM1,,hbci-fiducia-adapter,76069553,, +40896eca-9fe0-447c-befa-26b9ab3555bb,HBCI Raiffeisenbank Neumarkt- St. Veit - Reischach eG,GENODEF1RWZ,,hbci-fiducia-adapter,70169530,, +aff14d5a-9c1b-4bd9-a5cc-f2163c4aa449,HBCI Raiffeisenbank Neustadt eG,GENODED1ASN,,hbci-fiducia-adapter,57069238,, +bb9d6eba-761b-4580-9e57-b901360630b0,HBCI Raiffeisenbank Neustadt-Vohenstrauß eG,GENODEF1NEW,,hbci-fiducia-adapter,75363189,, +c6edb5ae-bd54-4626-a81f-080aee8752ab,HBCI Raiffeisenbank Niedere Alb eG,GENODES1RBA,,hbci-fiducia-adapter,60069066,, +e4f0b348-53f5-4d8a-8c15-481c4707ed54,HBCI Raiffeisenbank Niederwallmenach eG,GENODE51NWA,,hbci-fiducia-adapter,57062675,, +a1df9bd1-c52f-4ab1-9091-2138c492056b,HBCI Raiffeisenbank Nordkreis Landsberg eG,GENODEF1ELB,,hbci-fiducia-adapter,70169351,, +749153c5-5f39-4b6e-b72d-bb64cf9f40e3,HBCI Raiffeisenbank Nördliche Bergstraße eG,GENODE51ABH,,hbci-fiducia-adapter,50861501,, +c65873dc-0660-4281-bb39-d9a363dd828e,HBCI Raiffeisenbank Nüdlingen eG,GENODEF1NDL,,hbci-fiducia-adapter,79069181,, +f057ebe0-a710-4e5a-bec7-4d91afca215b,HBCI Raiffeisenbank Oberaudorf eG,GENODEF1OBD,,hbci-fiducia-adapter,71162355,, +26b05ad9-93de-4519-8680-64fa0daa818f,HBCI Raiffeisenbank Oberes Gäu eG,GENODES1ROG,,hbci-fiducia-adapter,60069876,, +1862911d-2115-40f1-88f7-919439584130,HBCI Raiffeisenbank Oberferrieden-Burgthann eG,GENODEF1BTO,,hbci-fiducia-adapter,76069564,, +e97f786f-6818-47ca-a547-2fa99159cdc1,HBCI Raiffeisenbank Oberland eG,GENODEF1MGA,,hbci-fiducia-adapter,77069868,, +de4cb97b-3dfc-4edc-9464-04a63c76b738,HBCI Raiffeisenbank Obermain Nord eG,GENODEF1ALK,,hbci-fiducia-adapter,77061004,, +1f3836e2-9fbb-40c7-85bb-062721a9ba8f,HBCI Raiffeisenbank Oberpfalz NordWest eG,GENODEF1KEM,,hbci-fiducia-adapter,77069764,, +51b55af3-4317-482d-a6de-639cbf817a47,HBCI Raiffeisenbank Oberpfalz Süd eG,GENODEF1DST,,hbci-fiducia-adapter,75062026,, +714bede6-9a34-4f71-9d2f-39b763944967,HBCI Raiffeisenbank Oberteuringen-Meckenbeuren eG,GENODES1OTE,,hbci-fiducia-adapter,65162832,, +9f98a4bc-87dc-4264-b768-de7ea85069df,HBCI Raiffeisenbank Oberursel eG,GENODE51OBU,,hbci-fiducia-adapter,50061741,, +a4e4d316-8c71-46d2-b7d8-8fc513d8cb43,HBCI Raiffeisenbank Oldenburg eG,GENODEF1OL2,,hbci-fiducia-adapter,28060228,, +d1902b62-7e2e-4ab4-9625-87b67c4c923b,HBCI Raiffeisenbank Ortenburg-Kirchberg v.W. eG,GENODEF1ORT,,hbci-fiducia-adapter,74061670,, +9a7154d3-103c-4a29-b602-a0ce26db1b1b,HBCI Raiffeisenbank Ostprignitz - Ruppin eG,GENODEF1NPP,,hbci-fiducia-adapter,16061938,, +c277141c-a41d-4b04-9581-ff7f3a54ae63,HBCI Raiffeisenbank Ottenbach eG,GENODES1OTT,,hbci-fiducia-adapter,60069457,, +ba434e7c-f894-456b-b145-ed9daf8be40f,HBCI Raiffeisenbank Parkstetten eG,GENODEF1PST,,hbci-fiducia-adapter,74369130,, +39b008be-6440-48df-8c17-e8c39e452028,HBCI Raiffeisenbank Pfaffenhausen eG,GENODEF1PFA,,hbci-fiducia-adapter,72069789,, +91149399-d1f1-48d5-a969-88fdb3839e9c,HBCI Raiffeisenbank Pfaffenhofen a.d.Glonn eG,GENODEF1ODZ,,hbci-fiducia-adapter,70169186,, +97c7bd40-9c59-4c09-b47f-840e5024c67a,HBCI Raiffeisenbank Pfaffenwinkel eG,GENODEF1PEI,,hbci-fiducia-adapter,70169509,, +6ebe6517-0439-4bc0-a769-3f6ec179dae0,HBCI Raiffeisenbank Pfeffenhausen- Rottenburg-Wildenberg eG,GENODEF1PFF,,hbci-fiducia-adapter,74364689,, +8bb3cf14-80ac-452b-85e5-5ca12d83bb3d,HBCI Raiffeisenbank Plankstetten AG,GENODEF1BPL,,hbci-fiducia-adapter,76069576,, +82edf00c-a2c3-46f5-bb17-7bddf78bfbf3,HBCI Raiffeisenbank Raisting eG,GENODEF1RIG,,hbci-fiducia-adapter,70169521,, +a862fddb-4cba-417b-8c69-a5f6aab2eaa2,HBCI Raiffeisenbank Rastede eG,GENODEF1RSE,,hbci-fiducia-adapter,28062165,, +48129c2c-f673-46dc-95a0-3396286cc6e0,HBCI Raiffeisenbank Rattiszell-Konzell eG,GENODEF1RZK,,hbci-fiducia-adapter,74369146,, +cbc30ce6-9ffc-445d-ba93-40cdc7802ddd,HBCI Raiffeisenbank Regensburg-Wenzenbach eG,GENODEF1R02,,hbci-fiducia-adapter,75060150,, +167310ec-da34-4e0a-9542-72af145592d2,HBCI Raiffeisenbank Regenstauf eG,GENODEF1REF,,hbci-fiducia-adapter,75061851,, +243e549e-87c3-4df2-9d89-7421b4e5602f,HBCI Raiffeisenbank Rehling eG,GENODEF1RLI,,hbci-fiducia-adapter,72069193,, +9639201f-5b9c-47db-a20d-23d57227c1d5,HBCI Raiffeisenbank Reute-Gaisbeuren eG,GENODES1RRG,,hbci-fiducia-adapter,60069350,, +3d975950-2530-455e-9a85-705619c9a0ee,HBCI Raiffeisenbank Ried eG,GENODE51RBU,,hbci-fiducia-adapter,50961206,, +8f342d1e-a1ce-45d8-bd2c-781a277cd6d4,HBCI Raiffeisenbank Riedenburg-Lobsing eG,GENODEF1RBL,,hbci-fiducia-adapter,72169831,, +7ccf3cf3-985a-4298-915b-35a44057e49d,HBCI Raiffeisenbank Rosenstein eG,GENODES1HEU,,hbci-fiducia-adapter,61361722,, +425787e7-2d75-499c-abe8-6c581b436fed,HBCI Raiffeisenbank Roth-Schwabach eG,GENODEF1SWR,,hbci-fiducia-adapter,76460015,, +d253f228-2829-41fb-9111-703a8323bbc0,HBCI Raiffeisenbank RSA eG,GENODEF1RME,,hbci-fiducia-adapter,70169524,, +8002b102-dac4-47f4-9271-f4c264cf01cd,HBCI Raiffeisenbank Rupertiwinkel eG,GENODEF1TEI,,hbci-fiducia-adapter,70169191,, +c303c9e8-a0a0-421c-9b74-ffed82ba3e14,HBCI Raiffeisenbank Schaafheim eG,GENODE51SHM,,hbci-fiducia-adapter,50862835,, +34b9b4bd-7a10-45dd-b91d-c9bdf8ae8b63,HBCI Raiffeisenbank Schrobenhausener Land eG,GENODEF1WFN,,hbci-fiducia-adapter,72169246,, +85a28931-9482-45a9-95c5-98e477178f43,HBCI Raiffeisenbank Schrozberg- Rot am See eG,GENODES1SBB,,hbci-fiducia-adapter,60069595,, +e166b826-01e1-4a5e-9ad0-1f4407589f26,HBCI Raiffeisenbank Schwaben Mitte eG,GENODEF1BLT,,hbci-fiducia-adapter,72069736,, +f8f025df-48e4-44c1-9cce-883c925bd6d3,HBCI Raiffeisenbank Schwabmünchen eG,GENODEF1SMU,,hbci-fiducia-adapter,72069220,, +0e441876-7722-40db-939a-af0f069bb47f,HBCI Raiffeisenbank Seebachgrund eG,GENODEF1HSE,,hbci-fiducia-adapter,76069602,, +b0470490-c2b2-4216-912a-8371c3d98330,HBCI Raiffeisenbank Singoldtal eG,GENODEF1HUA,,hbci-fiducia-adapter,70169413,, +8bb156bf-f307-4f39-86d2-571d17d0af9c,HBCI Raiffeisenbank Sinzing eG,GENODEF1SZV,,hbci-fiducia-adapter,75069078,, +f6569af4-d2ec-41f4-819c-295f44401f7a,HBCI Raiffeisenbank Sondelfingen eG,GENODES1RSF,,hbci-fiducia-adapter,60069147,, +78d3ec91-063a-4889-a221-c27baaaa9764,HBCI Raiffeisenbank St. Wolfgang-Schwindkirchen eG,GENODEF1SWO,,hbci-fiducia-adapter,70169538,, +9d0cd4fb-6543-47a4-9ad4-70f730206e03,HBCI Raiffeisenbank Stauden eG,GENODEF1LST,,hbci-fiducia-adapter,72069135,, +d19283a7-f0b6-487c-bf21-1a4043f5a952,HBCI Raiffeisenbank Steingaden eG,GENODEF1SGA,,hbci-fiducia-adapter,70169558,, +ad8070d1-6228-4a08-bc43-3eb0501ab7a6,HBCI Raiffeisenbank Steinheim eG,GENODES1SAA,,hbci-fiducia-adapter,60069158,, +198db480-6b2c-4e8c-9da2-f67128dae85c,HBCI Raiffeisenbank Straubing eG,GENODEF1SR2,,hbci-fiducia-adapter,74260110,, +1844f419-4d6e-48c7-94d1-d2652aa18cd2,HBCI Raiffeisenbank Strücklingen- Idafehn eG,GENODEF1ORF,,hbci-fiducia-adapter,28069052,, +dab2c8c9-8078-46fe-9131-55b33159e92e,HBCI Raiffeisenbank Südhardt eG,GENODE61DUR,,hbci-fiducia-adapter,66562053,, +eab3aa93-02ce-4970-ace3-b7ef728e23df,HBCI Raiffeisenbank Südl. Bayerischer Wald eG,GENODEF1HZN,,hbci-fiducia-adapter,74066749,, +78ca02e9-7ea9-4a62-9d53-600970288b87,HBCI Raiffeisenbank Südliches Ostallgäu eG,GENODEF1RHP,,hbci-fiducia-adapter,73369933,, +50853c34-deee-455a-ac89-17fa6230287d,HBCI Raiffeisenbank Südstormarn Mölln eG,GENODEF1GRS,,hbci-fiducia-adapter,20069177,, +2da8e750-049b-4dcc-9008-00660d6c20e8,HBCI Raiffeisenbank Sulzbach-Rosenberg eG,GENODEF1SZH,,hbci-fiducia-adapter,75261700,, +df6210a2-88fd-4486-b3a0-281545d08108,HBCI Raiffeisenbank Taufkirchen-Oberneukirchen eG,GENODEF1TAE,,hbci-fiducia-adapter,70169568,, +772cc6db-26f9-4b6b-baa9-d6efd04db390,HBCI Raiffeisenbank Thannhausen eG,GENODEF1THS,,hbci-fiducia-adapter,72069235,, +ed6e187d-c9fd-4692-8b00-7f4ec455b446,HBCI Raiffeisenbank Thurnauer Land eG,GENODEF1THA,,hbci-fiducia-adapter,77069739,, +d4bb698a-b108-4ff7-bbf1-c0a1e7db02ef,HBCI Raiffeisenbank Tüngental eG,GENODES1TUN,,hbci-fiducia-adapter,60069950,, +1214e540-962f-47af-ab9a-d7e0bae14d14,HBCI Raiffeisenbank Türkheim eG,GENODEF1TRH,,hbci-fiducia-adapter,70169575,, +697b290c-d6a6-4794-9dfd-b60633bb24ef,HBCI Raiffeisenbank Ühlfeld-Dachsbach eG,GENODEF1DSB,,hbci-fiducia-adapter,76069404,, +6b93f61f-caf6-4809-a006-07a9eeb07bc6,HBCI Raiffeisenbank Unteres Inntal eG,GENODEF1NUI,,hbci-fiducia-adapter,74061564,, +fca237af-1665-48f0-8bb3-241a9b0528ec,HBCI Raiffeisenbank Unteres Vilstal eG,GENODEF1SDM,,hbci-fiducia-adapter,76069611,, +10c64d45-2cd8-43c1-aed2-0a7d4a606f0c,HBCI Raiffeisenbank Unteres Zusamtal eG,GENODEF1BWI,,hbci-fiducia-adapter,72069179,, +db248adb-9826-434e-ba9a-3f5cc22a41f6,HBCI Raiffeisenbank Volkacher Mainschleife - Wiesentheid eG,GENODEF1WED,,hbci-fiducia-adapter,79069001,, +d61e3c85-a668-4762-bed5-bd707ee8da05,HBCI Raiffeisenbank Volkmarsen eG,GENODEF1VLM,,hbci-fiducia-adapter,52069149,, +b7c7b9f5-de59-4d27-ac98-5d8980c691e3,HBCI Raiffeisenbank Vordersteinenberg eG,GENODES1RVS,,hbci-fiducia-adapter,60069455,, +f31df8d1-fc36-4658-977d-639eb671aee2,HBCI Raiffeisenbank Voreifel eG,GENODED1RBC,,hbci-fiducia-adapter,37069627,, +a3d6c0e4-6671-4592-ad76-d298c87f09be,HBCI Raiffeisenbank Waldaschaff-Heigenbrücken eG,GENODEF1WAA,,hbci-fiducia-adapter,79565568,, +2271d642-9376-49bc-bbe6-4b17f8d99282,HBCI Raiffeisenbank Wald-Görisried eG,GENODEF1WGO,,hbci-fiducia-adapter,73369954,, +86cbbdf0-d422-4ba6-8863-22599dacd6f5,HBCI Raiffeisenbank Wallgau-Krün eG,GENODEF1WAK,,hbci-fiducia-adapter,70362595,, +1b7497eb-d699-4f1e-99b4-83f0a922569e,HBCI Raiffeisenbank Wangen eG,GENODES1RWA,,hbci-fiducia-adapter,60069685,, +5a976d75-1996-40f5-8d84-07ad4f56056c,HBCI Raiffeisenbank Wegscheid eG,GENODEF1WSD,,hbci-fiducia-adapter,74064593,, +512101da-693c-4f98-bcd2-b7abb61f1402,HBCI Raiffeisenbank Weißenburg-Gunzenhausen eG,GENODEF1GU1,,hbci-fiducia-adapter,76069468,, +173fa2c3-d9cd-4c70-a112-d32d62c3cf67,HBCI Raiffeisenbank Welling eG,GENODED1WLG,,hbci-fiducia-adapter,57069361,, +cf0ef062-668c-4684-8f67-07a7eae722c5,HBCI Raiffeisenbank Werratal-Landeck eG,GENODEF1RAW,,hbci-fiducia-adapter,53261342,, +32d6132a-4614-46c7-ac4c-bd46b503c826,HBCI Raiffeisenbank Wesermarsch-Süd eG,GENODEF1BRN,,hbci-fiducia-adapter,28061410,, +d9f73bf4-74d6-46ba-bad2-020ace511bcb,HBCI Raiffeisenbank Westallgäu eG,GENODEF1WWA,,hbci-fiducia-adapter,73369823,, +b313e340-12c8-413d-8686-068b511efb19,HBCI Raiffeisenbank Westeifel eG,GENODED1WSC,,hbci-fiducia-adapter,58661901,, +3f483126-ac4e-4ae0-a1c2-bb65ae0bdbd2,HBCI Raiffeisenbank Westhausen eG,GENODES1RWN,,hbci-fiducia-adapter,60069544,, +665c5c0c-a3b1-4ce7-ac9e-4b4b9bd58424,HBCI Raiffeisenbank Westkreis Fürstenfeldbruck eG,GENODEF1MOO,,hbci-fiducia-adapter,70169460,, +9457787a-d9db-448b-b0be-acc55d7e378e,HBCI Raiffeisenbank Wiesedermeer- Wiesede-Marcardsmoor eG,GENODEF1WWM,,hbci-fiducia-adapter,28069773,, +f2127845-1272-4663-abde-299154a98eda,HBCI Raiffeisenbank Wimsheim-Mönsheim eG,GENODES1WIM,,hbci-fiducia-adapter,60661906,, +d3304a05-cfdd-4872-bf35-e363cd6390f7,HBCI Raiffeisenbank Wüstenselbitz eG,GENODEF1WSZ,,hbci-fiducia-adapter,77069906,, +4d9c9d01-8a49-44f7-8d07-e60544b71cb4,HBCI Raiffeisenbank Wyhl eG,GENODE61WYH,,hbci-fiducia-adapter,68062730,, +55b4a07d-bb96-4992-af11-131c9775d766,HBCI Raiffeisenbank Zeller Land eG,GENODED1BPU,,hbci-fiducia-adapter,58761343,, +a85a580a-a50e-485b-940a-7771c091bd8d,HBCI Raiffeisenbank Zorneding eG,GENODEF1ZOR,,hbci-fiducia-adapter,70169619,, +46cb2784-19cd-4b48-a2e8-04d056ff6a2a,HBCI Raiffeisenbank. Tattenhausen-Großkarolinenfeld eG,GENODEF1GKT,,hbci-fiducia-adapter,70169190,, +91c5eb86-fb18-4524-87f6-e324d97c8bf9,HBCI Raiffeisenkasse Erbes-Büdesheim und Umgebung eG,GENODE51ERB,,hbci-fiducia-adapter,50069241,, +42e46371-1d0c-4e8c-864a-91a556f73261,HBCI Raiffeisen-Volksbank Aschaffenburg eG,GENODEF1AB1,,hbci-fiducia-adapter,79562514,, +e0841e98-73b2-41ad-bda7-c0b8dcb90c8e,HBCI Raiffeisen-Volksbank Bad Staffelstein eG,GENODEF1SFF,,hbci-fiducia-adapter,77062139,, +1a432d46-4df4-4fb2-9d7c-a11ce7ca9599,HBCI Raiffeisen-Volksbank Donauwörth eG,GENODEF1DON,,hbci-fiducia-adapter,72290100,, +c57116ac-7a7b-4316-a638-0cff55ae911a,HBCI Raiffeisen-Volksbank Ebersberg eG,GENODEF1ASG,,hbci-fiducia-adapter,70169450,, +b4e8703a-c119-432b-bc33-e487a87f9cc8,HBCI Raiffeisen-Volksbank eG,GENODEF1UPL,,hbci-fiducia-adapter,28562297,, +fe6a4925-a963-428e-82af-77b74922b370,HBCI Raiffeisen-Volksbank Fresena eG,GENODEF1MAR,,hbci-fiducia-adapter,28361592,, +b3f95bc1-51e5-448c-b0b8-401c481f6094,HBCI Raiffeisen-Volksbank Haßberge eG,GENODEF1HAS,,hbci-fiducia-adapter,79363151,, +2fb5e4b2-0994-47a0-88ae-022bf0eed5fe,HBCI Raiffeisen-Volksbank Hermsdorfer Kreuz eG,GENODEF1HMF,,hbci-fiducia-adapter,83064488,, +45e80037-df9a-4dd2-90e0-dfcfe0414f8e,HBCI Raiffeisen-Volksbank Neustadt eG,GENODEF1NST,,hbci-fiducia-adapter,25069262,, +7cd7cdda-13a2-4ba4-869b-2ded3073d804,HBCI Raiffeisen-Volksbank Oder-Spree eG,GENODEF1BKW,,hbci-fiducia-adapter,17062428,, +696bdf5b-6bed-4cc6-a99d-c0df884a0769,HBCI Raiffeisen-Volksbank Ries eG,GENODEF1NOE,,hbci-fiducia-adapter,72069329,, +106af0a1-2898-4390-8376-ded8ca64b366,HBCI Raiffeisen-Volksbank Tüssling-Unterneukirchen eG,GENODEF1TUS,,hbci-fiducia-adapter,70169576,, +a6e94266-89a0-4ae4-81a9-6bcaa5c1426e,HBCI Raiffeisen-Volksbank Varel - Nordenham eG,GENODEF1VAR,,hbci-fiducia-adapter,28262673,, +e45c8f4c-50e0-438b-8e70-b6c33853d1fd,HBCI Raiffeisen-Volksbank Wemding eG,GENODEF1WDN,,hbci-fiducia-adapter,72069308,, +ecfd40ec-907e-41a9-8bcf-acb173bc7543,HBCI Rheingauer Volksbank eG,GENODE51RGG,,hbci-fiducia-adapter,51091500,, +4f7ca2bd-82ad-49d1-9fea-c58ff95d6f09,HBCI Rosbacher Raiffeisenbank eG,GENODED1WND,,hbci-fiducia-adapter,37069639,, +e3bb635b-6ef1-424c-92f5-ff0327c60997,HBCI Rostocker Volks- und Raiffeisenbank eG,GENODEF1HR1,,hbci-fiducia-adapter,13090000,, +f5a20411-327c-4e27-a36e-b2f08a9a6304,HBCI Rottaler Raiffeisenbank eG,GENODEF1POC,,hbci-fiducia-adapter,74067000,, +8f152f2a-3342-450e-81ad-83ce8319bfe5,HBCI RSB Retail+Service Bank GmbH,SABUDES1XXX,,hbci-fiducia-adapter,60422000,, +d451f9cd-f944-4e32-a646-3c23e8d6a3eb,HBCI Rüsselsheimer Volksbank eG,GENODE51RUS,,hbci-fiducia-adapter,50093000,, +ae8e1596-f264-4121-a501-d90887119214,HBCI Scharnhauser Bank eG,GENODES1SCA,,hbci-fiducia-adapter,60069517,, +e331299e-4612-48af-98b9-96e6254003ae,HBCI Schrobenhausener Bank eG,GENODEF1SBN,,hbci-fiducia-adapter,72169218,, +a4898610-f4a8-45be-b196-4968ef26e755,HBCI Spar- u. Kredit-Bank eG,GENODEF1GMD,,hbci-fiducia-adapter,52069029,, +a74e62ea-2692-4acd-8edc-a0af2965ca4f,HBCI Spar- und Darlehnskasse Bockum-Hövel eG,GENODEM1HBH,,hbci-fiducia-adapter,41061011,, +3f0444a2-bb3f-42e1-9723-cb9f89fd6e39,HBCI Spar- und Darlehnskasse Börde Lamstedt-Hechthausen eG,GENODEF1LAS,,hbci-fiducia-adapter,24162898,, +37c12469-bcb3-4160-8e49-b5874ae69117,HBCI "Spar- und Darlehnskasse eG, Friesoythe",,hbci-https://www.spadaka-friesoythe.de/services_xs2a/bg13,fiducia-adapter,,, +a722153c-d149-4481-a100-fe35c4f96a2c,HBCI Spar- und Kreditbank Bühlertal eG,GENODE61BHT,,hbci-fiducia-adapter,66261092,, +c04f9db4-6640-4780-adfa-b20d1171fd09,HBCI Spar- und Kreditbank des Bundes Freier evangelischer Gemeinden eG,GENODEM1BFG,,hbci-fiducia-adapter,45260475,, +519c1c25-7780-42d5-90bf-11ecce27e490,HBCI "Spar- und Kreditbank eG, Hammah",,hbci-https://www.skb-hammah.de/services_xs2a/bg13,fiducia-adapter,,, +aae40bfe-6888-4d51-b1dc-e30ae7681d98,HBCI Spar- und Kreditbank Evangelisch-Freikirchlicher Gemeinden eG,GENODE51BH2,,hbci-fiducia-adapter,50092100,, +5b1a53b1-7920-4b99-9503-b2b4db0d8e7d,HBCI Spar- und Kreditbank Rheinstetten eG,GENODE61RH2,,hbci-fiducia-adapter,66061407,, +c98c2f58-3f50-4127-8216-394ed000c902,HBCI Sparda-Bank Berlin eG,GENODEF1S10,,hbci-fiducia-adapter,12096597,, +125465c1-0de5-40ef-ab47-85b6818e74bd,HBCI Sparda-Bank Hamburg eG,GENODEF1S11,,hbci-fiducia-adapter,20690500,, +f6af1e42-5664-45ff-ba47-281bde152b8d,HBCI Sparda-Bank Hannover eG,GENODEF1S09,,hbci-fiducia-adapter,25090500,, +fe86da38-efc4-4999-a031-2a9454c24961,HBCI Sparda-Bank Südwest eG,GENODEF1S01,,hbci-fiducia-adapter,55090500,, +60c76f82-4716-43a4-9f53-8c852c4fde61,HBCI Spreewaldbank eG,GENODEF1LN1,,hbci-fiducia-adapter,18092684,, +31ddb2c0-3dac-41ec-be9e-9245755118d4,HBCI St. Galler Kantonalbank Deutschland AG,GAKDDEM1XXX,,hbci-fiducia-adapter,70032500,, +6764175f-b089-4b91-8814-bc37f7eb3d19,HBCI Steyler Bank GmbH,GENODED1STB,,hbci-fiducia-adapter,38621500,, +6df56cda-360e-48a0-8960-79f2aec6328d,HBCI Südtiroler Sparkasse AG Niederlassung München,SUSKDEM1XXX,,hbci-fiducia-adapter,70012600,, +4ea12edd-2dae-4801-b3ae-9d08c038f81b,HBCI Südwestbank AG,SWBSDESSXXX,,hbci-fiducia-adapter,60090700,, +7dde6816-ba48-492a-b2d0-23121d1d1a83,HBCI Sylter Bank eG,GENODEF1SYL,,hbci-fiducia-adapter,21791805,, +e6c00a9b-c640-4b86-81c2-da02fa29aa24,HBCI Triodos Bank N.V. Deutschland,TRODDEF1XXX,,hbci-fiducia-adapter,50031000,, +c7d6cc7f-0e30-463e-9782-b67542de12f5,HBCI UNION-BANK AG,UNBNDE21XXX,,hbci-fiducia-adapter,21520100,, +36937b45-2e8d-46fe-b5c5-a644ff6e16f7,HBCI "VakifBank International AG, Wien ZN Deutschland",,hbci-https://www.onlinebanking-vakif-bank.de/services_xs2a/bg13,fiducia-adapter,,, +6325b3fd-11a8-47e1-b4e1-cdf6ffb1c7f3,HBCI VBU Volksbank im Unterland eG,GENODES1VLS,,hbci-fiducia-adapter,62063263,, +a2be1cbe-61d5-462e-ab16-6a153ac8142c,HBCI VerbundVolksbank OWL eG,DGPBDE3MXXX,,hbci-fiducia-adapter,47260121,, +44bccf3f-afbf-489e-936b-5bdbdb4d67a9,HBCI Vereinigte Raiffeisenbank Burgstädt eG,GENODEF1BST,,hbci-fiducia-adapter,87069077,, +14d3b522-f46a-40e4-8e9d-f74e9ddbc9c1,HBCI Vereinigte Raiffeisenbanken Gräfenberg-Forchheim- Eschenau-Heroldsberg eG,GENODEF1GBF,,hbci-fiducia-adapter,77069461,, +696fe6a2-d251-486f-b515-9ea1516ff4d8,HBCI Vereinigte Volksbank eG Ganderkesee-Hude-Bookholzberg- Lemwerder,GENODEF1HUD,,hbci-fiducia-adapter,28062249,, +6c64ee7c-b4ba-4f9e-8547-42b980b6ad40,HBCI Vereinigte Volksbank eG Saarlouis - Losheim am See - Sulzbach/Saar,GENODE51SB2,,hbci-fiducia-adapter,59092000,, +1c05b28a-b081-4607-80a3-a67ba15530c9,HBCI "Vereinigte Volksbank eG, Brakel",,hbci-https://www.v-vb.de/services_xs2a/bg13,fiducia-adapter,,, +50e00bb3-9e9b-4da0-9b8e-ce0e87a6d2a9,HBCI "Vereinigte Volksbank Raiffeisenbank eG, Reinheim",,hbci-https://www.vvrb.de/services_xs2a/bg13,fiducia-adapter,,, +878ecfe1-dc30-44fc-a565-f8d40fe8c08a,HBCI "Vereinigte Volksbank Raiffeisenbank eG, Wittlich",,hbci-https://www.vvr-bank.de/services_xs2a/bg13,fiducia-adapter,,, +98c59972-7202-4a06-a5f7-e1b9c4788049,HBCI "Vereinigte Volksbanken eG, Sindelfingen",,hbci-https://www.diebank.de/services_xs2a/bg13,fiducia-adapter,,, +89bf2e93-e5af-4af1-93e3-56fadd5ec995,HBCI "Vereinigte VR Bank eG, Wyk auf Föhr",,hbci-https://www.vereinigte-vrbk.de/services_xs2a/bg13,fiducia-adapter,,, +c14bb611-d2ba-4255-8c56-fb74f62a15e0,HBCI Vereinigte VR Bank Kur- und Rheinpfalz eG,GENODE61SPE,,hbci-fiducia-adapter,54790000,, +99070b86-09d7-4227-a8e7-c013f719576e,HBCI Vereinte Volksbank eG,GENODEM1KIH,,hbci-fiducia-adapter,42461435,, +65e36815-bffc-451d-a5b0-de815027885f,HBCI Volks- und Raiffeisenbank eG,GENODEF1GUE,,hbci-fiducia-adapter,14061308,, +9fe76082-4dd0-43e0-b85a-e5c98a9edc17,HBCI Volks- und Raiffeisenbank Fürstenwalde Seelow-Wriezen eG,GENODEF1FW1,,hbci-fiducia-adapter,17092404,, +8cd7f6fc-b81a-482b-9ab4-8672ae055410,HBCI Volks- und Raiffeisenbank Muldental eG,GENODEF1GMV,,hbci-fiducia-adapter,86095484,, +dad28c4d-7754-4580-bd1b-21db403db609,HBCI Volks- und Raiffeisenbank Prignitz eG,GENODEF1PER,,hbci-fiducia-adapter,16060122,, +887300af-83e4-4e73-a77c-c76faa15650a,HBCI Volks- und Raiffeisenbank Saale-Unstrut eG,GENODEF1NMB,,hbci-fiducia-adapter,80063648,, +1a627381-1717-40c0-8a78-4afef687b29d,HBCI Volks- und Raiffeisenbank Saarpfalz eG,GENODE51BEX,,hbci-fiducia-adapter,59291200,, +7e2e6163-7907-4d2e-b4d1-8da8227a58f2,HBCI Volksbank - Raiffeisenbank Vilshofen eG,GENODEF1VIR,,hbci-fiducia-adapter,74062490,, +3ff17a4a-7127-439e-bf54-2316dbf64195,HBCI Volksbank Albstadt eG,GENODES1EBI,,hbci-fiducia-adapter,65390120,, +42acce15-6a6c-46c0-8ad9-a6b541bdbb9b,HBCI Volksbank Aller-Weser eG,GENODEF1HOY,,hbci-fiducia-adapter,25663584,, +8e1ee071-86fc-4f55-a08f-89a3d73d6598,HBCI Volksbank Allgäu-Oberschwaben eG,GENODES1LEU,,hbci-fiducia-adapter,65091040,, +53bedbeb-5329-433a-a65e-000aac93e36b,HBCI Volksbank Altshausen eG,GENODES1VAH,,hbci-fiducia-adapter,65092200,, +e0681106-7ece-4369-a1ed-21f54d352111,HBCI Volksbank Alzey-Worms eG,GENODE61AZY,,hbci-fiducia-adapter,55091200,, +b88369b9-1713-474a-90e8-dd3ecb8edbb3,HBCI Volksbank am Württemberg eG,GENODES1UTV,,hbci-fiducia-adapter,60060396,, +d24a5234-9316-4204-beed-c4a5bbbe5092,HBCI Volksbank Ammerbuch eG,GENODES1AMM,,hbci-fiducia-adapter,64161397,, +7a8129ce-c2dd-448d-bacd-9de4a6620f4f,HBCI Volksbank an der Niers eG,GENODED1GDL,,hbci-fiducia-adapter,32061384,, +a9df3a71-3376-4c86-b3c7-fa18836cdb54,HBCI Volksbank Anröchte eG,GENODEM1ANR,,hbci-fiducia-adapter,41661206,, +1b172481-1854-404c-9ad9-fe43e3b62ef8,HBCI Volksbank Ascheberg-Herbern eG,GENODEM1CAN,,hbci-fiducia-adapter,40069601,, +355c17e6-5d22-4e56-946d-8595d2aa6e5a,HBCI Volksbank Backnang eG,GENODES1VBK,,hbci-fiducia-adapter,60291120,, +62b424f1-e71b-4766-969a-6b1113f3dbfd,HBCI Volksbank Bad Salzuflen eG,GENODEM1BSU,,hbci-fiducia-adapter,48291490,, +940e9bd8-ff09-45d6-9cfb-e26ce9237308,HBCI Volksbank Bad Saulgau eG,GENODES1SLG,,hbci-fiducia-adapter,65093020,, +91c07989-c5b2-4f47-a175-8b78756d99ab,HBCI Volksbank Baden-Baden Rastatt eG,VBRADE6KXXX,,hbci-fiducia-adapter,66290000,, +b30d3e60-b2fb-4df0-85e7-e18590dbd1b6,HBCI Volksbank Bakum eG,GENODEF1BAM,,hbci-fiducia-adapter,28063607,, +342bfc18-645e-47b7-a588-5d0c9b4532b3,HBCI Volksbank Baumberge eG,GENODEM1BAU,,hbci-fiducia-adapter,40069408,, +38de6901-149b-4ecb-bd09-768aa2268fdc,HBCI Volksbank Beckum-Lippstadt eG,GENODEM1LPS,,hbci-fiducia-adapter,41660124,, +97118c19-b94b-47a8-8068-34806ab5dd95,HBCI Volksbank Beilstein-Ilsfeld- Abstatt eG,GENODES1BIA,,hbci-fiducia-adapter,62062215,, +ef0c691a-7ff6-424a-b7fb-68bddb8c4a36,HBCI Volksbank Berg eG,GENODED1RKO,,hbci-fiducia-adapter,37069125,, +455417c1-9739-447f-be59-e1e5506783d4,HBCI Volksbank Bielefeld-Gütersloh eG,GENODEM1GTL,,hbci-fiducia-adapter,47860125,, +7cc0077a-3bff-4869-a8b5-7ada2b068f74,HBCI Volksbank Bigge-Lenne eG,GENODEM1SMA,,hbci-fiducia-adapter,46062817,, +e531ae19-027c-49b5-88da-b03693540505,HBCI Volksbank Blaubeuren eG,GENODES1BLA,,hbci-fiducia-adapter,63091200,, +e515c5ac-cd9f-4bc7-ad3b-bcb943fe7f89,HBCI Volksbank Bocholt eG,GENODEM1BOH,,hbci-fiducia-adapter,42860003,, +cba72027-39c2-4d6e-aa1c-a0cd291ffea2,HBCI Volksbank Bochum Witten eG,GENODEM1BOC,,hbci-fiducia-adapter,43060129,, +15d7cd04-0dd9-4ac5-86d8-cf4103936f85,HBCI Volksbank Bönen eG,GENODEM1BO1,,hbci-fiducia-adapter,41062215,, +03753863-b44f-4758-969a-4c3ec5af35b5,HBCI Volksbank Börde-Bernburg eG,GENODEF1WZL,,hbci-fiducia-adapter,81069052,, +95b1c658-d3ee-4d4f-bef8-d630d5d33697,HBCI Volksbank Börßum-Hornburg eG,GENODEF1BOH,,hbci-fiducia-adapter,27062290,, +54e7a3bd-5b33-4d83-8963-d07fbad6b24a,HBCI Volksbank Bösel eG,GENODEF1BSL,,hbci-fiducia-adapter,28062913,, +3f666cb8-8564-4209-b3c9-a4175b506b05,HBCI Volksbank Bramgau-Wittlage eG,GENODEF1WHO,,hbci-fiducia-adapter,26563960,, +e451462f-d490-4c3c-908d-f847d899f3ca,HBCI Volksbank Brandoberndorf eG,GENODE51WBO,,hbci-fiducia-adapter,51591300,, +c2985c71-0e33-46e4-b765-da8b01c974fd,HBCI Volksbank Braunlage eG,GENODEF1BLG,,hbci-fiducia-adapter,27893359,, +5d64097c-ada3-4828-ad90-c38f45ec040b,HBCI Volksbank Breisgau- Markgräflerland eG,GENODE61IHR,,hbci-fiducia-adapter,68061505,, +8916fb6a-fcb4-4a7a-838a-c6a84a5e1a77,HBCI Volksbank Breisgau Nord eG,GENODE61EMM,,hbci-fiducia-adapter,68092000,, +25724745-5c69-46c4-aaf6-c004bc9768cc,HBCI Volksbank Bremen-Nord eG,GENODEF1HB2,,hbci-fiducia-adapter,29190330,, +413ee6cd-69a7-42c9-87e1-dc779bff3eb1,HBCI Volksbank Brenztal eG,GENODES1RNS,,hbci-fiducia-adapter,60069527,, +019fd188-b168-42e1-95a9-cba6d44966e6,HBCI Volksbank Brilon-Büren-Salzkotten eG,GENODEM1BUS,,hbci-fiducia-adapter,47261603,, +3d730230-13b1-49bd-9b4e-4afb64f946d0,HBCI Volksbank Bruchsal-Bretten eG,GENODE61BTT,,hbci-fiducia-adapter,66391200,, +2d087c1d-7f9f-4232-82a1-fbdfe74cc08b,HBCI Volksbank Bruhrain-Kraich-Hardt eG,GENODE61ORH,,hbci-fiducia-adapter,66391600,, +003973a7-8103-4505-9115-2f3d5d154cf8,HBCI Volksbank Bühl eG,GENODE61BHL,,hbci-fiducia-adapter,66291400,, +d01cc744-8aee-4755-961c-8d94715d6c98,HBCI Volksbank Butzbach eG,GENODE51BUT,,hbci-fiducia-adapter,51861403,, +a1e1fb69-f5ee-41b8-baa2-971531d58d43,HBCI Volksbank Chemnitz eG,GENODEF1CH1,,hbci-fiducia-adapter,87096214,, +2078504a-2ea2-4200-8347-781a5264c115,HBCI Volksbank Daaden eG,GENODE51DAA,,hbci-fiducia-adapter,57391200,, +6714da61-e717-4dd6-a2fc-fadeeb6dd292,HBCI Volksbank Dammer Berge eG,GENODEF1DAM,,hbci-fiducia-adapter,28061679,, +c55aade0-c27e-4e82-b832-f5015e487e31,HBCI Volksbank Darmstadt - Südhessen eG,GENODEF1VBD,,hbci-fiducia-adapter,50890000,, +3ae1c351-8a8d-40ae-94f1-17b15c9bfeab,HBCI Volksbank Deisslingen eG,GENODES1VDL,,hbci-fiducia-adapter,64291420,, +4a264619-5584-4ce9-b7fa-ff94dc3726a8,HBCI Volksbank Delbrück-Hövelhof eG,GENODEM1DLB,,hbci-fiducia-adapter,47262703,, +d0011e76-e098-4d11-bd17-575bb8a68c85,HBCI Volksbank Delitzsch eG,GENODEF1DZ1,,hbci-fiducia-adapter,86095554,, +edda84b7-ca05-47e6-9ffe-7f6ba33cd2d2,HBCI Volksbank Demmin eG,GENODEF1DM1,,hbci-fiducia-adapter,15091674,, +0844a98a-c8bf-43d3-9883-62e56e5d89b2,HBCI Volksbank Dessau-Anhalt eG,GENODEF1DS1,,hbci-fiducia-adapter,80093574,, +3022d019-ef76-495a-9def-fbcfbac3c226,HBCI Volksbank Dettenhausen eG,GENODES1DEH,,hbci-fiducia-adapter,60069378,, +9238d3ba-3e2b-41ef-9c42-83bef9e67ec6,HBCI Volksbank Dortmund-Nordwest eG,GENODEM1DNW,,hbci-fiducia-adapter,44060122,, +46d89848-5567-4fb1-afba-4dd357ae946b,HBCI Volksbank Dreieich eG,GENODE51DRE,,hbci-fiducia-adapter,50592200,, +f6987352-26da-4ea5-8472-169a60ba86f9,HBCI Volksbank Dreiländereck eG,VOLODE66XXX,,hbci-fiducia-adapter,68390000,, +1dd5ea91-f4b2-4024-89b9-91b9378b48d4,HBCI Volksbank Dresden-Bautzen eG,GENODEF1DRS,,hbci-fiducia-adapter,85090000,, +e1c8bf43-cb32-4b71-9b20-dc4634e21252,HBCI Volksbank Dünnwald-Holweide eG,GENODED1DHK,,hbci-fiducia-adapter,37069427,, +cead6303-3557-4d91-b7de-fd3b6dcc9a33,HBCI Volksbank Düren eG,GENODED1DUE,,hbci-fiducia-adapter,39560201,, +103bae6a-bf55-4d1a-b8f6-846600ffd269,HBCI Volksbank Düsseldorf Neuss eG,GENODED1DNE,,hbci-fiducia-adapter,30160213,, +9d1fe2dc-35c1-4478-8d7b-584c98fa0d2d,HBCI Volksbank eG - Die Gestalterbank,GENODE61OG1,,hbci-fiducia-adapter,66490000,, +5a90fade-6ce7-4285-9df7-e146fb92fe61,HBCI Volksbank eG Bad Laer-Borgloh-Hilter-Melle,GENODEF1HTR,,hbci-fiducia-adapter,26562490,, +8e58aa08-1230-4ffc-a890-d29caa5fd61e,HBCI Volksbank eG Braunschweig Wolfsburg,GENODEF1WOB,,hbci-fiducia-adapter,26991066,, +45368a5c-46ff-4bff-b7bc-339286068ff5,HBCI Volksbank eG Bremerhaven-Cuxland,GENODEF1BEV,,hbci-fiducia-adapter,29265747,, +f99fab91-e64e-4c7d-a596-12e902b96881,HBCI Volksbank eG Delmenhorst Schierbrok,GENODEF1GSC,,hbci-fiducia-adapter,28067170,, +061ce585-af81-4f34-b806-98a44eb4aee5,HBCI Volksbank eG Gera · Jena · Rudolstadt,GENODEF1RUJ,,hbci-fiducia-adapter,83094454,, +89106816-456f-494a-b9a9-7f0367d934ea,HBCI Volksbank eG im Kreis Freudenstadt,GENODES1FDS,,hbci-fiducia-adapter,64291010,, +2e78a834-a56b-49f6-83a8-34bd1b9a8a02,HBCI Volksbank eG Konstanz,GENODE61RAD,,hbci-fiducia-adapter,69291000,, +a902b0dd-2ca9-493f-98f5-4ebbb96f2054,HBCI Volksbank eG Mosbach,GENODE61MOS,,hbci-fiducia-adapter,67460041,, +6cb866dc-352c-4058-b498-aadaef0d06f9,HBCI Volksbank eG Osterholz-Scharmbeck,GENODEF1OHZ,,hbci-fiducia-adapter,29162394,, +e2af896b-153b-4482-89cc-cacdc206fb62,HBCI Volksbank eG Südheide - Isenhagener Land - Altmark,GENODEF1HMN,,hbci-fiducia-adapter,25791635,, +e840b8b5-c238-47b3-bce3-a83e487f210e,HBCI Volksbank eG Westrhauderfehn,GENODEF1WRH,,hbci-fiducia-adapter,28591654,, +d2ab1dc6-eb0c-4955-a3bd-de7bc660a3c6,HBCI Volksbank eG Wümme-Wieste,GENODEF1SUM,,hbci-fiducia-adapter,29165681,, +c7a8f876-b495-425e-8717-9936d6aede5c,HBCI "Volksbank eG, Adelebsen",,hbci-https://www.volksbank-adelebsen.de/services_xs2a/bg13,fiducia-adapter,,, +008eaf53-60a5-4d69-8618-c9561c7be158,HBCI "Volksbank eG, Fredenbeck",,hbci-https://www.vbfoa.de/services_xs2a/bg13,fiducia-adapter,,, +6c202b35-f3e0-4df7-8355-cfa6c2d53ece,HBCI "Volksbank eG, Gardelegen",,hbci-https://www.volksbank-gardelegen.de/services_xs2a/bg13,fiducia-adapter,,, +03ba69ce-e438-46e0-9189-98e3aaec664e,HBCI "Volksbank eG, Grebenhain",,hbci-https://www.vb-grebenhain.de/services_xs2a/bg13,fiducia-adapter,,, +84309689-3343-4d5e-a9c8-0fdd59caa4f9,HBCI "Volksbank eG, Hildesheim-Lehrte-Pattensen",,hbci-https://www.vb-eg.de/services_xs2a/bg13,fiducia-adapter,,, +b1a7f3c1-0790-47d7-b4fe-c9248638d1f7,HBCI "Volksbank eG, Köthen-Bitterfeld",,hbci-https://www.vb-abi.de/services_xs2a/bg13,fiducia-adapter,,, +21735788-6626-4f05-98d2-a34e8d9392c1,HBCI "Volksbank eG, Löningen",,hbci-https://www.vbloeningen.de/services_xs2a/bg13,fiducia-adapter,,, +92930494-01a4-4435-beeb-a3b608f89042,HBCI "Volksbank eG, Nienburg",,hbci-https://www.vbnienburg.de/services_xs2a/bg13,fiducia-adapter,,, +3cd34782-5e10-4162-962b-227f4ff8d70c,HBCI "Volksbank eG, Sangerhausen",,hbci-https://www.volksbank-sangerhausen.de/services_xs2a/bg13,fiducia-adapter,,, +b057e0fa-c631-4a59-9897-a30c17138ee4,HBCI "Volksbank eG, Seesen",,hbci-https://www.myvoba.com/services_xs2a/bg13,fiducia-adapter,,, +7cb155d3-c860-47e2-8143-18cc26fb871d,HBCI "Volksbank eG, Sulingen",,hbci-https://www.volksbanksulingen.de/services_xs2a/bg13,fiducia-adapter,,, +f3ab5f73-0ce5-40a6-b158-5bbbd548359a,HBCI "Volksbank eG, Syke",,hbci-https://www.volksbank-syke.de/services_xs2a/bg13,fiducia-adapter,,, +4d140fd3-da48-4486-8522-9bf4d61c1b26,HBCI "Volksbank eG, Überlingen",,hbci-https://www.volksbank-ueberlingen.de/services_xs2a/bg13,fiducia-adapter,,, +352e3469-bda5-4a69-91e3-065f40f2909f,HBCI "Volksbank eG, Warendorf",,hbci-https://www.volksbank-eg.de/services_xs2a/bg13,fiducia-adapter,,, +0e7ff393-f89a-4af9-9350-b3dc0dba35e0,HBCI "Volksbank eG, Wolfenbüttel",,hbci-https://www.volksbank-mit-herz.de/services_xs2a/bg13,fiducia-adapter,,, +172d8578-911f-474e-8a84-92a8f29d03cf,HBCI Volksbank Eifel eG,GENODED1BIT,,hbci-fiducia-adapter,58660101,, +7f842013-0aae-4f64-bd09-3173e2dc2d36,HBCI Volksbank Eisenberg eG,GENODEF1ESN,,hbci-fiducia-adapter,83094494,, +6ef4021c-ba69-4440-b756-a8570bfab764,HBCI Volksbank Elsen-Wewer-Borchen eG,GENODEM1EWB,,hbci-fiducia-adapter,47260234,, +9f67719c-fcea-4785-9ae9-fc5759f3eebc,HBCI Volksbank Elsterland eG,GENODEF1JE1,,hbci-fiducia-adapter,80062608,, +5145b425-eb30-495c-b752-532a8ec0dadc,HBCI Volksbank Emmerich-Rees eG,GENODED1EMR,,hbci-fiducia-adapter,35860245,, +f2a65c77-cd1a-44dc-a192-15015da05bbc,HBCI Volksbank Emstal eG,GENODEF1LTH,,hbci-fiducia-adapter,28069991,, +b344f122-ba5c-428e-8fbb-5a649fd07d69,HBCI Volksbank Emstek eG,GENODEF1EMK,,hbci-fiducia-adapter,28069109,, +74aad338-0144-4873-8877-e1ba95f4a35a,HBCI Volksbank Enniger-Ostenfelde-Westkirchen eG,GENODEM1EOW,,hbci-fiducia-adapter,41261324,, +dab628c8-f67c-40f2-aa9d-9fdda298e00e,HBCI Volksbank Erft eG,GENODED1ERE,,hbci-fiducia-adapter,37069252,, +a6a26028-889d-48ec-a275-d95a3d5ec88a,HBCI Volksbank Erle eG,GENODEM1ERR,,hbci-fiducia-adapter,40069606,, +70a2a873-03ba-4ef2-8a27-abf44f7f7fd6,HBCI Volksbank Ermstal-Alb eG,GENODES1MTZ,,hbci-fiducia-adapter,64091200,, +23d3541d-8e12-4106-8af2-563629890a14,HBCI Volksbank Esens eG,GENODEF1ESE,,hbci-fiducia-adapter,28291551,, +ab0c8355-e569-4f1f-9e15-58d989274aa3,HBCI Volksbank Essen-Cappeln eG,GENODEF1ESO,,hbci-fiducia-adapter,28063526,, +b2971d96-f347-4206-882e-7da9d506b593,HBCI Volksbank Ettlingen eG,GENODE61ETT,,hbci-fiducia-adapter,66091200,, +3067a9b2-c9f2-4f62-958f-ba76bfce6540,HBCI Volksbank Euskirchen eG,GENODED1EVB,,hbci-fiducia-adapter,38260082,, +041cd9f8-74d0-41b5-98ea-956e3ab5699d,HBCI Volksbank Eutin Raiffeisenbank eG,GENODEF1EUT,,hbci-fiducia-adapter,21392218,, +97724cd8-5caa-4ab4-bba4-15e1359d87f7,HBCI Volksbank Feldatal eG,GENODE51FEL,,hbci-fiducia-adapter,51961801,, +a2d693c1-6eb7-4c2e-9619-6ec974aa5870,HBCI Volksbank Filder eG,GENODES1NHB,,hbci-fiducia-adapter,61161696,, +15c4f4b7-8617-4acd-97d4-dd0cb85fd5ae,HBCI Volksbank Flein-Talheim eG,GENODES1VFT,,hbci-fiducia-adapter,62062643,, +e52e61e9-c355-4196-9a39-7308552e5ad6,HBCI Volksbank Franken eG,GENODE61BUC,,hbci-fiducia-adapter,67461424,, +ce141737-6c7a-4d1a-bf66-7dc8be76ed25,HBCI Volksbank Freiburg eG,GENODE61FR1,,hbci-fiducia-adapter,68090000,, +4ddb463d-3f70-4ac6-b363-c5521692f941,HBCI Volksbank Friedrichshafen-Tettnang eG,GENODES1TET,,hbci-fiducia-adapter,65191500,, +0f298c76-3a13-4292-9ba8-9b6a2a0e14d9,HBCI Volksbank Gebhardshain eG,GENODED1GBS,,hbci-fiducia-adapter,57361476,, +fd82a7ea-8742-42db-86af-b4dc366978cc,HBCI Volksbank Geest eG,GENODEF1APE,,hbci-fiducia-adapter,20069782,, +56976976-686c-4ee7-a087-0674909e5330,HBCI Volksbank Geeste-Nord eG,GENODEF1BRV,,hbci-fiducia-adapter,29262722,, +06976e57-d1c0-4d83-8304-bd81faa64895,HBCI Volksbank Gemen eG,GENODEM1BOG,,hbci-fiducia-adapter,42861515,, +c6e3fde3-3772-4dcd-81ab-887417931fdb,HBCI Volksbank Gescher eG,GENODEM1GE1,,hbci-fiducia-adapter,40164901,, +5d21f56f-7b57-4a11-8d70-618fe68e881e,HBCI Volksbank Glan-Münchweiler eG,GENODE61GLM,,hbci-fiducia-adapter,54092400,, +adbcdb83-3557-4bf7-99b4-d5cfd97e8d48,HBCI Volksbank GMHütte-Hagen-Bissendorf eG,GENODEF1HGM,,hbci-fiducia-adapter,26565928,, +16c293fa-49da-401c-b110-876e27129cba,HBCI Volksbank Göppingen eG,GENODES1VGP,,hbci-fiducia-adapter,61060500,, +1415f80f-5da4-46b0-8501-87fbaf7b942a,HBCI Volksbank Gronau-Ahaus eG,GENODEM1GRN,,hbci-fiducia-adapter,40164024,, +a5b76832-ece7-47ef-8911-fc1a589fb6ec,HBCI Volksbank Haaren eG,GENODED1HAW,,hbci-fiducia-adapter,37069330,, +6168d654-cf8d-4c01-bfda-d236df3ef78d,HBCI Volksbank Halle (Saale) eG,GENODEF1HAL,,hbci-fiducia-adapter,80093784,, +5e2d2c3c-ac64-4ab8-b366-fa48ee5bd8e0,HBCI Volksbank Halle/Westf. eG,GENODEM1HLW,,hbci-fiducia-adapter,48062051,, +d812e070-5ccb-4d15-abcc-dedb7ea77e6a,HBCI Volksbank Hameln-Stadthagen eG,GENODEF1HMP,,hbci-fiducia-adapter,25462160,, +ec74a931-ae85-429a-a674-1d353b57608a,HBCI Volksbank Hamm / Sieg eG,GENODE51HAM,,hbci-fiducia-adapter,57391500,, +5426a4c0-84c3-44fb-b404-ff0915061d90,HBCI Volksbank Haselünne eG,GENODEF1HLN,,hbci-fiducia-adapter,26661380,, +a3874150-f374-44e2-b9c3-c40050cd8670,HBCI Volksbank Heiden eG,GENODEM1HEI,,hbci-fiducia-adapter,42861608,, +34815d04-066a-4fd7-8c52-86ae2a45da7f,HBCI Volksbank Heilbronn eG,GENODES1VHN,,hbci-fiducia-adapter,62090100,, +b2af8fb5-9c50-4f0e-aece-31a14b2eea83,HBCI Volksbank Heimbach eG,GENODED1HMB,,hbci-fiducia-adapter,37069342,, +79fa6b61-34a4-4085-a770-78e834a82ce0,HBCI Volksbank Heinsberg eG,GENODED1HRB,,hbci-fiducia-adapter,37069412,, +745dbfa8-7ca1-4e4f-b70c-196a9afb4081,HBCI Volksbank Hellweg eG,GENODEM1SOE,,hbci-fiducia-adapter,41460116,, +b5970d23-8d60-45da-85b3-a66746d3923d,HBCI Volksbank Herford-Mindener Land eG,GENODEM1HFV,,hbci-fiducia-adapter,49490070,, +d5c7e6ba-f34a-49d7-815f-602dbb1c337b,HBCI Volksbank Herrenberg-Nagold- Rottenburg eG,GENODES1VBH,,hbci-fiducia-adapter,60391310,, +f9e04519-3284-4754-bd5c-8d0edca7f224,HBCI Volksbank Heuchelheim eG,GENODE51HHE,,hbci-fiducia-adapter,51361021,, +d6177c97-01fb-4bcc-b434-64fbf91bc0e0,HBCI Volksbank Hochrhein eG,GENODE61WT1,,hbci-fiducia-adapter,68492200,, +b5276d9e-613c-4a18-ba55-52d0a0024266,HBCI Volksbank Hohenlimburg eG,GENODEM1HLH,,hbci-fiducia-adapter,45061524,, +ce7fc944-44a8-45de-97ed-5860d8ef6932,HBCI Volksbank Hohenlohe eG,GENODES1VHL,,hbci-fiducia-adapter,62091800,, +7e96a631-7ad6-40ea-839d-e167c7466465,HBCI Volksbank Hohenzollern-Balingen eG,GENODES1VHZ,,hbci-fiducia-adapter,64163225,, +b83da4ad-78eb-4c1a-9596-374195f061ec,HBCI Volksbank Hunsrück-Nahe eG,GENODED1KHK,,hbci-fiducia-adapter,56061472,, +620c2fbb-5402-43bf-883e-bd042392c7a0,HBCI Volksbank im Bergischen Land eG,VBRSDE33XXX,,hbci-fiducia-adapter,34060094,, +e4428971-4463-48d7-abda-9e25865beabb,HBCI Volksbank im Harz eG,GENODEF1OHA,,hbci-fiducia-adapter,26891484,, +ce464405-efa0-4e4a-a023-07fa084416ea,HBCI Volksbank im Hochsauerland eG,GENODEM1MAS,,hbci-fiducia-adapter,40069266,, +e08d12ca-66ed-42a0-9946-52205ae19617,HBCI Volksbank im Wesertal eG,GENODEF1COP,,hbci-fiducia-adapter,25462680,, +5e5f3e36-44bb-42e1-8b15-a2b3d95c0e01,HBCI Volksbank Immenstadt eG,GENODEF1IMV,,hbci-fiducia-adapter,73392000,, +4848ee32-a94a-42e0-8440-2b6810a27789,HBCI Volksbank in der Hohen Mark eG,GENODEM1DLR,,hbci-fiducia-adapter,40069709,, +a1bee668-62ec-4a62-bddc-124d9f6e595d,HBCI Volksbank in Schaumburg eG,GENODEF1BCK,,hbci-fiducia-adapter,25591413,, +b5a44de1-eac1-4eac-8a5a-040821e3688d,HBCI Volksbank in Südwestfalen eG,GENODEM1NRD,,hbci-fiducia-adapter,44761534,, +e7965407-92bf-4425-b5b0-af5cbbba256b,HBCI Volksbank Jerichower Land eG,GENODEF1BRG,,hbci-fiducia-adapter,81063238,, +faf031ee-6cc2-43a9-94c6-ef191fd8a002,HBCI Volksbank Jever eG,GENODEF1JEV,,hbci-fiducia-adapter,28262254,, +8b8e46c0-c89f-4c14-9d03-66a45d722db5,HBCI Volksbank Kaiserslautern eG,GENODE61KL1,,hbci-fiducia-adapter,54090000,, +df467d7e-8bd5-44e5-946d-7d84bfcd10ba,HBCI Volksbank Kamen-Werne eG,GENODEM1KWK,,hbci-fiducia-adapter,44361342,, +24a5b31e-9dce-4e32-b6f2-0d345b033bc8,HBCI Volksbank Karlsruhe eG,GENODE61KA1,,hbci-fiducia-adapter,66190000,, +1c79fadb-79fc-446e-9e76-b264c81e1d3d,HBCI Volksbank Kassel Göttingen eG,GENODE51KS1,,hbci-fiducia-adapter,52090000,, +5eb48982-9ce8-49bf-be5d-9023f497269f,HBCI Volksbank Kempen-Grefrath eG,GENODED1KMP,,hbci-fiducia-adapter,32061414,, +8c659572-d8b7-4243-852a-592724cf80dc,HBCI Volksbank Kierspe eG,GENODEM1KIE,,hbci-fiducia-adapter,45861434,, +0e63f59c-7b41-475c-9a82-e77de78b98a0,HBCI Volksbank Kirnau eG,GENODE61RNG,,hbci-fiducia-adapter,67461733,, +4122805c-95f0-414f-898e-2dcb7c697d3b,HBCI Volksbank Klettgau-Wutöschingen eG,GENODE61WUT,,hbci-fiducia-adapter,68462427,, +62d068be-9da0-4e05-bfd5-adb00b17005b,HBCI Volksbank Kleverland eG,GENODED1KLL,,hbci-fiducia-adapter,32460422,, +0bea2f28-f6b2-4782-b347-88166097e311,HBCI Volksbank Köln Bonn eG,GENODED1BRS,,hbci-fiducia-adapter,38060186,, +19c0d67e-fe7f-4b13-9764-0c74c2adbc3f,HBCI Volksbank Kraichgau eG,GENODE61WIE,,hbci-fiducia-adapter,67292200,, +a3bcc905-2962-42e0-8886-5f597b54bbbf,HBCI Volksbank Krautheim eG,GENODE61KTH,,hbci-fiducia-adapter,66069342,, +4f5b13c9-f23c-478f-a22b-9745b6ffdf3a,HBCI Volksbank Krefeld eG,GENODED1HTK,,hbci-fiducia-adapter,32060362,, +85b18ac7-5c10-4586-aef0-c740b74d1c47,HBCI Volksbank Kurpfalz eG,GENODE61WNM,,hbci-fiducia-adapter,67092300,, +11303522-08c4-4570-b055-cf588ad2cfd4,HBCI Volksbank Lahr eG,GENODE61LAH,,hbci-fiducia-adapter,68290000,, +156b069c-e7ba-44a9-8124-e96e7158e8f0,HBCI Volksbank Laichinger Alb eG,GENODES1LAI,,hbci-fiducia-adapter,63091300,, +ea4b1259-fdd7-4756-ac98-4335b50587b4,HBCI Volksbank Langendernbach eG,GENODE51LDD,,hbci-fiducia-adapter,51161606,, +dea8394a-ce49-4529-916c-a0b06d52443d,HBCI Volksbank Lastrup eG,GENODEF1LAP,,hbci-fiducia-adapter,28067257,, +a70e8c09-57e9-4af2-90a3-a20480ebe247,HBCI Volksbank Lauterbach-Schlitz eG,GENODE51LB1,,hbci-fiducia-adapter,51990000,, +d90a9a14-7bd9-4227-947c-27f5989d7d9b,HBCI Volksbank Lauterecken eG,GENODE61LEK,,hbci-fiducia-adapter,54091700,, +f48c35b6-0b70-4462-880e-9d2a77d62d50,HBCI Volksbank Leonberg-Strohgäu eG,GENODES1LEO,,hbci-fiducia-adapter,60390300,, +a9108ac1-eaa9-46ed-8bb2-b4a42b512b62,HBCI Volksbank Limbach eG,GENODE61LMB,,hbci-fiducia-adapter,67462368,, +abb52ca8-3356-4354-9742-f3c77d984597,HBCI Volksbank Lindenberg eG,GENODEF1LIA,,hbci-fiducia-adapter,73369826,, +7f32d24b-10af-4f3b-b829-d51ec8a71b05,HBCI Volksbank Lingen eG,GENODEF1LIG,,hbci-fiducia-adapter,26660060,, +b089a698-9e9f-46c3-8b59-9dc0d1fa4820,HBCI Volksbank Löbau-Zittau eG,GENODEF1NGS,,hbci-fiducia-adapter,85590100,, +164da7b6-46c5-414e-8e6b-76b808a45631,HBCI Volksbank Lohne-Mühlen eG,GENODEF1LON,,hbci-fiducia-adapter,28062560,, +6a23f6de-87be-4f09-9555-dec5cd55ddae,HBCI Volksbank Lübbecker Land eG,GENODEM1LUB,,hbci-fiducia-adapter,49092650,, +81eb956f-ca1c-4c4d-a57a-7bc9bbed05ae,HBCI Volksbank Lübeck eG,GENODEF1HLU,,hbci-fiducia-adapter,23090142,, +2d360bed-6347-481e-b29c-cefc7e7ce6c8,HBCI Volksbank Ludwigsburg eG,GENODES1LBG,,hbci-fiducia-adapter,60490150,, +7e03b7f0-17bd-46d4-999a-443e31d8352f,HBCI Volksbank Lüneburger Heide eG,GENODEF1NBU,,hbci-fiducia-adapter,24060300,, +de82cbf9-1ec8-48b4-ac9c-d281029ffa69,HBCI Volksbank Magdeburg eG,GENODEF1MD1,,hbci-fiducia-adapter,81093274,, +8f4cfab3-ebee-4f6b-8e83-909d70c1c7cd,HBCI Volksbank Mainspitze eG,GENODE51GIN,,hbci-fiducia-adapter,50862903,, +0cff1a92-33c3-4453-b1d0-4e96e8a3d85e,HBCI Volksbank Main-Tauber eG,GENODE61WTH,,hbci-fiducia-adapter,67390000,, +ec6cfcbe-e842-47ce-9919-6c4664c91ebf,HBCI Volksbank Marl-Recklinghausen eG,GENODEM1MRL,,hbci-fiducia-adapter,42661008,, +df5cedb3-9582-45ec-8b77-78e0f53208bc,HBCI Volksbank Meßkirch eG Raiffeisenbank,GENODE61MES,,hbci-fiducia-adapter,69362032,, +4837e048-1d25-4f55-bcf0-26ed720181d7,HBCI Volksbank Mittelhessen eG,VBMHDE5FXXX,,hbci-fiducia-adapter,51390000,, +34e1edfe-8391-426c-ab8e-321f307b6b2c,HBCI Volksbank Mittlerer Neckar eG,GENODES1NUE,,hbci-fiducia-adapter,61290120,, +96092dd0-c2a2-4105-a997-16d723eea800,HBCI Volksbank Mittlerer Schwarzwald eG,GENODE61KZT,,hbci-fiducia-adapter,66492700,, +b5bbe05b-16f2-40e7-8bc4-eb275244fe4c,HBCI Volksbank Mittleres Erzgebirge eG,GENODEF1MBG,,hbci-fiducia-adapter,87069075,, +2e934fc1-97a7-4566-9c65-48f9957b2631,HBCI Volksbank Mittweida eG,GENODEF1MIW,,hbci-fiducia-adapter,87096124,, +8b96b9db-1456-4476-9c29-592e1becc025,HBCI Volksbank Möckmühl eG,GENODES1VMN,,hbci-fiducia-adapter,62091600,, +31195365-0002-4dfb-8f02-8e92f3134a3d,HBCI Volksbank Mönchengladbach eG,GENODED1MRB,,hbci-fiducia-adapter,31060517,, +511c21b2-035b-497b-9b75-e53ab0a504ab,HBCI Volksbank Münsingen eG,GENODES1MUN,,hbci-fiducia-adapter,64091300,, +a0eec7c8-1ed5-453d-ac73-1b293ad48dc8,HBCI Volksbank Münsterland Nord eG,GENODEM1IBB,,hbci-fiducia-adapter,40361906,, +8b81c6cd-d72a-4ce9-bea1-0def9f23d6cc,HBCI Volksbank Neckartal eG,GENODE61NGD,,hbci-fiducia-adapter,67291700,, +527095c3-8b41-41cd-b6e2-3433b4dad467,HBCI Volksbank Neuenkirchen-Vörden eG,GENODEF1NEO,,hbci-fiducia-adapter,28067068,, +6107251c-07f9-4133-9739-4f228596d1ef,HBCI Volksbank Niedergrafschaft eG,GENODEF1HOO,,hbci-fiducia-adapter,28069926,, +42332c96-2341-4281-aec1-e0e7efffff6a,HBCI Volksbank Niederrhein eG,GENODED1NRH,,hbci-fiducia-adapter,35461106,, +f27f9626-3c54-4725-b8e4-b1621dc87b8a,HBCI Volksbank Nordharz eG,GENODEF1VNH,,hbci-fiducia-adapter,26890019,, +b7045a75-244f-4e25-a07d-09535fe38762,HBCI Volksbank Nordhümmling eG,GENODEF1BOG,,hbci-fiducia-adapter,28069706,, +c66aeed4-66c5-4d1f-92fe-dfc9ccde0256,HBCI Volksbank Nordschwarzwald eG,GENODES1PGW,,hbci-fiducia-adapter,64261853,, +5b6958c6-2d94-40bc-bcfb-d1e3cefa5de1,HBCI Volksbank Nottuln eG,GENODEM1CNO,,hbci-fiducia-adapter,40164352,, +d06b3fc7-b1fb-4c76-9327-a454dfdc9d32,HBCI Volksbank Oberberg eG,GENODED1WIL,,hbci-fiducia-adapter,38462135,, +8093fb7d-ec5b-4da8-b61e-79e4859be25b,HBCI Volksbank Ober-Mörlen eG,GENODE51OBM,,hbci-fiducia-adapter,51861806,, +05476643-901f-441a-acf6-72882ea9ddef,HBCI Volksbank Ochtrup-Laer eG,GENODEM1OTR,,hbci-fiducia-adapter,40164618,, +2d905ff5-b724-4793-8f5e-b61612549853,HBCI Volksbank Oldenburg eG,GENODEF1EDE,,hbci-fiducia-adapter,28061822,, +89f20fc2-b45d-4f17-bf89-c45f78ab6a7f,HBCI Volksbank Olpe-Wenden-Drolshagen eG,GENODEM1WDD,,hbci-fiducia-adapter,46261822,, +5995bff3-068c-4d98-9f7d-03ecd60c6775,HBCI Volksbank Osnabrück eG,GENODEF1OSV,,hbci-fiducia-adapter,26590025,, +7808d440-9084-4cec-bd87-227bf85a5f7f,HBCI Volksbank Ostlippe eG,GENODEM1OLB,,hbci-fiducia-adapter,47691200,, +c27f5fa5-bf93-486c-ba40-b7fd9c1cca21,HBCI Volksbank Oyten eG,GENODEF1OYT,,hbci-fiducia-adapter,29165545,, +c72814c9-f31d-4d0d-adcd-dd5f53bace62,HBCI Volksbank Pforzheim eG,VBPFDE66XXX,,hbci-fiducia-adapter,66690000,, +242040ca-236f-489a-8e45-6ab443d2bf09,HBCI Volksbank Pfullendorf eG,GENODE61PFD,,hbci-fiducia-adapter,69091600,, +fb7cac96-dded-4b6b-a236-21c1d73e98d0,HBCI Volksbank Pirna eG,GENODEF1PR2,,hbci-fiducia-adapter,85060000,, +761e7cbd-6a3e-460e-8cba-6143e8cf785a,HBCI Volksbank Plochingen eG,GENODES1VBP,,hbci-fiducia-adapter,61191310,, +916ef425-11ef-4975-b096-629ffd732066,HBCI Volksbank Raesfeld eG,GENODEM1RAE,,hbci-fiducia-adapter,42862451,, +cd806b32-e09b-4bff-8df6-326345766a8a,HBCI Volksbank Raiffeisenbank Bad Kissingen eG,GENODEF1BRK,,hbci-fiducia-adapter,79065028,, +dab2d048-dbea-4d03-bfdf-8b9dc696638f,HBCI Volksbank Raiffeisenbank Bayern Mitte eG,GENODEF1INP,,hbci-fiducia-adapter,72160818,, +197c174a-bfc1-400d-af71-4043150edac2,HBCI Volksbank Raiffeisenbank Dachau eG,GENODEF1DCA,,hbci-fiducia-adapter,70091500,, +531af8d8-faba-4fa8-a2b0-e7a72fc905a2,HBCI Volksbank Raiffeisenbank eG Itzehoe Norderstedt Hohenwestedt,GENODEF1VIT,,hbci-fiducia-adapter,22290031,, +0f2b3847-644d-4cb5-9498-9292d0ea7fd9,HBCI "Volksbank Raiffeisenbank eG, Bad Oldesloe",,hbci-https://www.vrhs.de/services_xs2a/bg13,fiducia-adapter,,, +551854e8-9f4d-41fa-b1bc-4116108b208a,HBCI Volksbank Raiffeisenbank Fürstenfeldbruck eG,GENODEF1FFB,,hbci-fiducia-adapter,70163370,, +eb4157eb-190b-484e-9874-e492c1f3958e,HBCI Volksbank Raiffeisenbank Meißen Großenhain eG,GENODEF1MEI,,hbci-fiducia-adapter,85095004,, +a73d3fcf-69f3-4d2b-83ea-c6373b2ff258,HBCI Volksbank Raiffeisenbank Niederschlesien eG,GENODEF1GR1,,hbci-fiducia-adapter,85591000,, +3e07393c-981e-4952-b106-91308016ba74,HBCI Volksbank Raiffeisenbank Nordoberpfalz eG,GENODEF1WEV,,hbci-fiducia-adapter,75390000,, +d380b10d-da1b-4156-a44f-f4a30056ab50,HBCI Volksbank Raiffeisenbank Nürnberg eG,GENODEF1N02,,hbci-fiducia-adapter,76060618,, +9d6a887d-412c-4a99-878f-481c362a3a1b,HBCI Volksbank Raiffeisenbank Oberbayern Südost eG,GENODEF1BGL,,hbci-fiducia-adapter,71090000,, +5a41f046-2110-4d02-9f33-5f5f775b3330,HBCI Volksbank Raiffeisenbank Regensburg-Schwandorf eG,GENODEF1R01,,hbci-fiducia-adapter,75090000,, +9f937923-78b6-48e6-9418-12e68ba1b46c,HBCI Volksbank Raiffeisenbank Rhön-Grabfeld eG,GENODEF1MLV,,hbci-fiducia-adapter,79069165,, +9cfb3798-fb15-4a9d-8eec-4edd220af5c6,HBCI Volksbank Raiffeisenbank Würzburg eG,GENODEF1WU1,,hbci-fiducia-adapter,79090000,, +ce37a2d5-2e04-4d88-8401-f6fc3e0e240d,HBCI Volksbank Rathenow eG,GENODEF1RN1,,hbci-fiducia-adapter,16091994,, +4e106dc6-670f-404e-b7db-880a22a29d67,HBCI Volksbank Remseck eG,GENODES1REM,,hbci-fiducia-adapter,60069905,, +cc637642-3112-4df5-a236-36f7fd244bad,HBCI Volksbank Rhede eG,GENODEM1RHD,,hbci-fiducia-adapter,42861814,, +4cbec8bd-5ba1-454c-9de9-12098ef5c220,HBCI Volksbank RheinAhrEifel eG,GENODED1BNA,,hbci-fiducia-adapter,57761591,, +a3cec0a1-ab07-41b2-9e6a-3cc44acaaa84,HBCI Volksbank Rheinböllen eG,GENODED1RBO,,hbci-fiducia-adapter,56062227,, +a237e876-f0a1-4161-b5d0-dd251fe23ebb,HBCI Volksbank Rhein-Erft-Köln eG,GENODED1FHH,,hbci-fiducia-adapter,37062365,, +c40c853f-3b10-4c27-8be0-a12f1bf3bbc3,HBCI Volksbank Rhein-Lahn-Limburg eG,GENODE51DIE,,hbci-fiducia-adapter,57092800,, +c7202368-a4b6-4a4a-8ee1-1bb6f22e58c7,HBCI Volksbank Rhein-Lippe eG,GENODED1RLW,,hbci-fiducia-adapter,35660599,, +6bbce491-7279-4f17-b3ae-488e5ba5575e,HBCI Volksbank Rhein-Nahe-Hunsrück eG,GENODE51KRE,,hbci-fiducia-adapter,56090000,, +bcba6042-f143-41af-ac1b-e3a12e92b85d,HBCI Volksbank Rhein-Ruhr eG,GENODED1VRR,,hbci-fiducia-adapter,35060386,, +2e6f1899-f323-4518-8817-be27af5137c2,HBCI Volksbank Rhein-Wehra eG,GENODE61BSK,,hbci-fiducia-adapter,68490000,, +670d74bb-5092-482a-a509-2a7439842c5f,HBCI Volksbank Riesa eG,GENODEF1RIE,,hbci-fiducia-adapter,85094984,, +09e44d3c-b017-402e-95d6-5b7695d92840,HBCI Volksbank Rietberg eG,GENODEM1RNE,,hbci-fiducia-adapter,47862447,, +ec0e3850-6a2b-4123-976a-e66396c4fa82,HBCI Volksbank Rot eG,GENODE61LRO,,hbci-fiducia-adapter,67262550,, +10383779-ca41-4ad3-bc90-dfe961abbd6b,HBCI Volksbank Rottweil eG,GENODES1VRW,,hbci-fiducia-adapter,64290120,, +4706d948-24f7-4402-ab18-653cb05b45f4,HBCI Volksbank Ruhr Mitte eG,GENODEM1GBU,,hbci-fiducia-adapter,42260001,, +8e1e2332-b5e4-4884-8d2d-047b3e43160f,HBCI Volksbank Sandhofen eG,GENODE61MA3,,hbci-fiducia-adapter,67060031,, +85bddb88-acc3-40ef-8b85-6a3b8159ba8c,HBCI Volksbank Sauerland eG,GENODEM1NEH,,hbci-fiducia-adapter,46660022,, +49811537-6d6c-43e3-b735-39d83bf09c82,HBCI Volksbank Schermbeck eG,GENODEM1SMB,,hbci-fiducia-adapter,40069363,, +6db91119-4fb0-4f15-854b-497a0a1fa8a4,HBCI Volksbank Schlangen eG,GENODEM1SLN,,hbci-fiducia-adapter,40069283,, +2939d175-41b6-4b5d-95c9-9cb54b9473cf,HBCI Volksbank Schnathorst eG,GENODEM1SNA,,hbci-fiducia-adapter,49262364,, +32473e55-ccab-41a1-a855-eb43e770eebb,HBCI Volksbank Schupbach eG,GENODE51SBH,,hbci-fiducia-adapter,51191800,, +9c2e20ee-2f52-49b5-b318-b4f42e0b4cee,HBCI Volksbank Schwanewede eG,GENODEF1SWW,,hbci-fiducia-adapter,29162453,, +c4ac5f23-d26f-45b9-9efc-2a917d6cb232,HBCI Volksbank Schwarzwald-Donau-Neckar eG,GENODES1TUT,,hbci-fiducia-adapter,64390130,, +4303e1a4-a593-4023-879a-e5b8cfb6786d,HBCI Volksbank Seligenstadt eG,GENODE51SEL,,hbci-fiducia-adapter,50692100,, +cf42a70f-13a1-414d-91ed-970ad29ef645,HBCI Volksbank Selm-Bork eG,GENODEM1SEM,,hbci-fiducia-adapter,40165366,, +ac2f1e6d-1a37-48f2-a671-e824db540e7a,HBCI Volksbank Senden eG,GENODEM1SDN,,hbci-fiducia-adapter,40069546,, +f6713a68-33b7-4a09-8f4a-a85d173c4a58,HBCI Volksbank Solling eG,GENODEF1HDG,,hbci-fiducia-adapter,26261693,, +d7eee4bd-fa60-4d68-b786-a956c831d6af,HBCI Volksbank Spree-Neiße eG,GENODEF1SPM,,hbci-fiducia-adapter,18092744,, +d29f1b54-fddc-4f37-8cc8-29e23f1f71a8,HBCI Volksbank Sprockhövel eG,GENODEM1SPO,,hbci-fiducia-adapter,45261547,, +2543dcd0-b3ef-4f98-b55e-27c7fe75f673,HBCI Volksbank Stade-Cuxhaven eG,GENODEF1SDE,,hbci-fiducia-adapter,24191015,, +a26900f5-fa8a-40cb-a272-cd31e8556504,HBCI Volksbank Staufen eG,GENODE61STF,,hbci-fiducia-adapter,68092300,, +1ad97aeb-1d84-4139-a9f0-a9f182a90fd8,HBCI Volksbank Stendal eG,GENODEF1SDL,,hbci-fiducia-adapter,81093054,, +7614a58e-df2b-4e5d-bc7b-c6295a2ee8e2,HBCI Volksbank Störmede-Hörste eG,GENODEM1SGE,,hbci-fiducia-adapter,41662465,, +b9b4f2c0-9304-42a7-a759-5b50ce69aa0e,HBCI Volksbank Stutensee-Weingarten eG,GENODE61WGA,,hbci-fiducia-adapter,66061724,, +5d42f434-c709-479d-bbf8-9f2c7df0ee65,HBCI Volksbank Stuttgart eG,VOBADESSXXX,,hbci-fiducia-adapter,60090100,, +5cbaaec6-fde0-44e2-ba00-1e63ebba61e3,HBCI Volksbank Süd-Emsland eG,GENODEF1SPL,,hbci-fiducia-adapter,28069994,, +11be6eef-1deb-487d-ae8b-46b6d676470e,HBCI Volksbank Südkirchen-Capelle-Nordkirchen eG,GENODEM1SCN,,hbci-fiducia-adapter,40069716,, +fdeaf888-f77c-4070-9000-d3b3752f42e7,HBCI Volksbank Südmünsterland-Mitte eG,GENODEM1LHN,,hbci-fiducia-adapter,40164528,, +9cb9140c-c536-4a11-b776-e01a5ab79d01,HBCI Volksbank Sulmtal eG,GENODES1VOS,,hbci-fiducia-adapter,62061991,, +f389c2cd-bad0-40b5-b9b1-befe6a901339,HBCI Volksbank Trier eG,GENODED1TVB,,hbci-fiducia-adapter,58560103,, +5278279e-2805-4fc2-a647-b60d6848cc3b,HBCI Volksbank Trossingen eG,GENODES1TRO,,hbci-fiducia-adapter,64292310,, +5315530d-e9bb-4331-9017-dd06cc0d2585,HBCI Volksbank Überherrn eG,GENODE51UBH,,hbci-fiducia-adapter,59391200,, +d107a09a-2c51-4b34-9ca5-695338cd5636,HBCI Volksbank Überwald-Gorxheimertal eG,GENODE51ABT,,hbci-fiducia-adapter,50961685,, +654a9192-9318-4088-80de-4f4905bf17b6,HBCI Volksbank Uelzen-Salzwedel eG,GENODEF1EUB,,hbci-fiducia-adapter,25862292,, +d3bc6bd4-5a67-4238-8063-836aafabfbb0,HBCI Volksbank Ulm-Biberach eG,ULMVDE66XXX,,hbci-fiducia-adapter,63090100,, +8ff58656-fff0-4123-a259-0bdd92d045b6,HBCI Volksbank Ulrichstein eG,GENODE51ULR,,hbci-fiducia-adapter,51961023,, +06c2de47-c936-4550-ba52-292ec069eb05,HBCI Volksbank Vechta eG,GENODEF1VEC,,hbci-fiducia-adapter,28064179,, +f34c2c3d-2f03-4126-9b64-caa00407b25d,HBCI Volksbank Versmold eG,GENODEM1VMD,,hbci-fiducia-adapter,47863373,, +b6da1a8f-49c6-4e83-a325-575293956b92,HBCI Volksbank Viersen eG,GENODED1VSN,,hbci-fiducia-adapter,31460290,, +97a14085-0592-46ac-bea9-8f1fe52decda,HBCI Volksbank Visbek eG,GENODEF1VIS,,hbci-fiducia-adapter,28066103,, +bed9d3d4-da01-4780-9c2a-b67b7c47d5dc,HBCI Volksbank Vogtland-Saale-Orla eG,GENODEF1PL1,,hbci-fiducia-adapter,87095824,, +27efc14a-9296-48c8-8dfa-2a90e91dd4b2,HBCI Volksbank Vorbach-Tauber eG,GENODES1VVT,,hbci-fiducia-adapter,62391420,, +fca20462-9b6d-4a5f-8585-34e55d1a30cf,HBCI Volksbank Vorpommern eG,GENODEF1ANK,,hbci-fiducia-adapter,15061638,, +df7e6b80-cd03-4360-b682-7e86d03c27e4,HBCI Volksbank Welzheim eG,GENODES1WEL,,hbci-fiducia-adapter,61391410,, +11d4b565-d647-4ce7-befc-5129f033fe41,HBCI Volksbank Weschnitztal eG,GENODE51FHO,,hbci-fiducia-adapter,50961592,, +c9d985e3-3e13-46a3-9564-0a3ada864a7a,HBCI Volksbank Westenholz eG,GENODEM1WDE,,hbci-fiducia-adapter,47262626,, +dc83b859-ac25-4371-be39-ba1c779335ad,HBCI Volksbank Westerkappeln-Saerbeck eG,GENODEM1WKP,,hbci-fiducia-adapter,40361627,, +e1476aef-a53e-474a-92ee-3cd379a79e3a,HBCI Volksbank Westerstede eG,GENODEF1WRE,,hbci-fiducia-adapter,28063253,, +4795940b-a730-4dfc-a193-88bdd81ec96c,HBCI Volksbank Wickede (Ruhr) eG,GENODEM1WRU,,hbci-fiducia-adapter,41462295,, +adcc0dd0-af9c-444e-b261-0bc501fc6599,HBCI Volksbank Wilhelmshaven eG,GENODEF1WHV,,hbci-fiducia-adapter,28290063,, +8eb8e601-b0d9-46db-a8b4-a4e924bb7df6,HBCI Volksbank Winsener Marsch eG,GENODEF1WIM,,hbci-fiducia-adapter,20069965,, +0ca83734-985e-454d-b716-95a69c368b11,HBCI Volksbank Wißmar eG,GENODE51WWI,,hbci-fiducia-adapter,50069976,, +6a84b238-f110-4b94-8b93-22b0e634eb33,HBCI Volksbank Wittenberg eG,GENODEF1WB1,,hbci-fiducia-adapter,80063598,, +89c75216-09da-4a6e-b0cb-8c1fc06cbe06,HBCI Volksbank Wittgenstein eG,GENODEM1BB1,,hbci-fiducia-adapter,46063405,, +5acfa66d-f6db-4ce5-a010-e574e24467a6,HBCI Volksbank Worpswede eG,GENODEF1WOP,,hbci-fiducia-adapter,29166568,, +82defbbf-0a11-4c13-9f98-b0d95980163a,HBCI Volksbank Wulfsen eG,GENODEF1WUL,,hbci-fiducia-adapter,20069989,, +1b4a3dc9-46f3-4228-92ec-708bfe155e9a,HBCI Volksbank Zuffenhausen eG,GENODES1ZUF,,hbci-fiducia-adapter,60090300,, +a78b7f93-929e-4141-90b0-e1da68f40806,HBCI Volksbank Zwickau eG,GENODEF1Z01,,hbci-fiducia-adapter,87095934,, +f47baa27-094f-47f1-86a3-fabb837d9ad9,HBCI Volksbank-Raiffeisenbank Amberg eG,GENODEF1AMV,,hbci-fiducia-adapter,75290000,, +d5086500-11e2-4703-ab6d-a42eabda1703,HBCI Volksbank-Raiffeisenbank Deggingen eG,GENODES1DGG,,hbci-fiducia-adapter,61091200,, +9e1b9e2c-ef7e-436a-8f49-27366b189064,HBCI Volksbank-Raiffeisenbank Glauchau eG,GENODEF1GC1,,hbci-fiducia-adapter,87095974,, +9b891379-dbe9-4561-a4a6-f74837077269,HBCI Volksbank-Raiffeisenbank Laupheim-Illertal eG,GENODES1VBL,,hbci-fiducia-adapter,65491320,, +4e4ed4c7-aaa4-40bd-a770-b95108e94784,HBCI Volksbank-Raiffeisenbank Riedlingen eG,GENODES1VRR,,hbci-fiducia-adapter,65491510,, +5df02906-9616-4951-8ea6-b977a7dca4fc,HBCI VR Bank Alzey-Land-Schwabenheim eG,GENODE51ABO,,hbci-fiducia-adapter,50069126,, +113a0d4e-da95-4d3a-99a7-3cf3f35aeea4,HBCI VR Bank Augsburg-Ostallgäu eG,GENODEF1AUB,,hbci-fiducia-adapter,72090000,, +dea75ef2-5699-45f5-8674-35886a617c2c,HBCI VR Bank Bad Orb-Gelnhausen eG,GENODE51GEL,,hbci-fiducia-adapter,50790000,, +c40c369d-0578-4bcc-aa01-93a0f5981b1d,HBCI VR Bank Bamberg-Forchheim eG,GENODEF1FOH,,hbci-fiducia-adapter,76391000,, +4dc2af76-ca5b-4daa-9128-c1a81cc3153d,HBCI VR Bank Bayreuth-Hof eG,GENODEF1HO1,,hbci-fiducia-adapter,78060896,, +86003725-dabf-43de-b6b5-2f71425ab57c,HBCI VR Bank Burglengenfeld eG,GENODEF1BLF,,hbci-fiducia-adapter,75091400,, +6545db50-2fce-42b8-8624-da40b55596ab,HBCI VR BANK Dinklage-Steinfeld eG,GENODEF1DIK,,hbci-fiducia-adapter,28065108,, +8d2a6903-8bb4-4118-b73b-f6ac581a1962,HBCI VR Bank eG Bergisch Gladbach-Leverkusen,GENODED1PAF,,hbci-fiducia-adapter,37062600,, +d720406d-6b53-4680-88b2-45f24522de35,HBCI VR Bank eG Heuberg-Winterlingen,GENODES1WLB,,hbci-fiducia-adapter,65361898,, +781848f9-895e-46b1-9fb3-bffc9b1c8f71,HBCI "VR Bank eG, Alsheim",,hbci-https://www.vrbank-alsheim.de/services_xs2a/bg13,fiducia-adapter,,, +a8a3c4e2-cbf6-4298-9a42-f9c608d29ba6,HBCI "VR Bank eG, Monheim am Rhein",,hbci-https://www.vrbankeg.de/services_xs2a/bg13,fiducia-adapter,,, +b69d0bff-1244-42eb-a1cf-8c4e4467e1e6,HBCI VR Bank Enz plus eG,GENODE61WIR,,hbci-fiducia-adapter,66692300,, +8b9257c5-17f2-41b1-8caa-1c200af407a6,HBCI VR Bank Fulda eG,GENODE51FUL,,hbci-fiducia-adapter,53060180,, +8b6954d1-14b0-4947-8dfd-b222036d477e,HBCI VR Bank HessenLand eG,GENODE51ALS,,hbci-fiducia-adapter,53093200,, +905fbfe2-0464-4cc7-92b3-55c9a9425f2e,HBCI VR Bank Hohenneuffen-Teck eG,GENODES1HON,,hbci-fiducia-adapter,61261339,, +787bf5df-0e79-4c95-99d4-701f903302b4,HBCI VR Bank in Holstein eG,GENODEF1PIN,,hbci-fiducia-adapter,22191405,, +ad664822-4c3f-41a7-8903-5cb1dc6862ef,HBCI VR Bank Kitzingen eG,GENODEF1KT1,,hbci-fiducia-adapter,79190000,, +35656617-82a3-493f-b8cc-6d20e46c2c07,HBCI VR Bank Lahn-Dill eG,GENODE51BIK,,hbci-fiducia-adapter,51762434,, +d87b3433-91be-41e9-b83f-736a998046bb,HBCI VR Bank Lausitz eG,GENODEF1FWA,,hbci-fiducia-adapter,18062678,, +f1e4970d-0e5d-46c7-952c-7317915b4acf,HBCI VR Bank Main-Kinzig-Büdingen eG,GENODEF1LSR,,hbci-fiducia-adapter,50661639,, +5ef5f05c-99bf-4cea-bcf0-93c7ae6122c8,HBCI VR Bank Mittelhaardt eG,GENODE61DUW,,hbci-fiducia-adapter,54691200,, +a830b309-6df7-448f-a283-0453fe050bd0,HBCI VR Bank Mittlere Oberpfalz eG,GENODEF1SWD,,hbci-fiducia-adapter,75069171,, +610b7df7-e790-4d07-aeab-0f6ab8d1f069,HBCI VR Bank München Land eG,GENODEF1OHC,,hbci-fiducia-adapter,70166486,, +2152ca38-0030-47be-bb4e-48ff7c10931b,HBCI VR Bank Neuburg-Rain eG,GENODEF1ND2,,hbci-fiducia-adapter,72169756,, +86c9df36-af9a-47c0-b75c-4b0639b560ee,HBCI VR Bank Neumünster eG,GENODEF1NMS,,hbci-fiducia-adapter,21290016,, +86d33449-f95a-41b3-9110-66d40f23f9d3,HBCI VR Bank Niederbayern-Oberpfalz eG,GENODEF1P18,,hbci-fiducia-adapter,75090900,, +6eab9faf-98f4-4b45-a7e8-1d14e46a2a7e,HBCI VR Bank Nord eG,GENODEF1BDS,,hbci-fiducia-adapter,21763542,, +dff921a7-6ea6-40ec-bf1a-6130b8b79964,HBCI VR Bank Oberfranken Mitte eG,GENODEF1KU1,,hbci-fiducia-adapter,77190000,, +b32319a0-d6a7-443c-ba0d-1b4faa9c0676,HBCI VR Bank Oldenburg Land eG,GENODEF1WDH,,hbci-fiducia-adapter,28066214,, +ed7cde0c-4598-43ce-a2e9-772b55ac960d,HBCI VR Bank Ostholstein Nord - Plön eG,GENODEF1NSH,,hbci-fiducia-adapter,21390008,, +3f64221c-9d19-419d-a680-013d0d4c51eb,HBCI VR Bank Ravensburg-Weingarten eG,GENODES1RRV,,hbci-fiducia-adapter,65062577,, +eb05ba87-99ee-4939-afab-d0205332ee49,HBCI VR Bank Rhein-Mosel eG,GENODED1NWD,,hbci-fiducia-adapter,57460117,, +495f584e-d0c6-4fe6-a06f-f3e3a20f5bae,HBCI VR Bank Rhein-Neckar eG,GENODE61MA2,,hbci-fiducia-adapter,67090000,, +ade1e5cf-5aea-44df-8c2e-6316db9372f8,HBCI VR Bank Schleswig-Mittelholstein eG,GENODEF1SLW,,hbci-fiducia-adapter,21690020,, +72e6e9eb-43ad-460d-b061-1304e44a4e29,HBCI VR Bank Schwäbisch Hall-Crailsheim eG,GENODES1SHA,,hbci-fiducia-adapter,62290110,, +7fc7774f-fc85-4a0b-b8bc-8faa7db7b201,HBCI VR Bank Starnberg-Herrsching-Landsberg eG,GENODEF1STH,,hbci-fiducia-adapter,70093200,, +78d3a7c4-467e-499d-aada-f5d138fa3df6,HBCI VR Bank Südliche Weinstraße-Wasgau eG,GENODE61BZA,,hbci-fiducia-adapter,54891300,, +84bec934-0b58-4cbc-80a1-402cf3af11f1,HBCI VR Bank Südpfalz eG,GENODE61SUW,,hbci-fiducia-adapter,54862500,, +aaac390d-c681-4a9b-ab5f-fb8e51d23fc3,HBCI vr bank Südthüringen eG,GENODEF1SHL,,hbci-fiducia-adapter,84094814,, +573486eb-e879-414c-a09d-12370995a7c5,HBCI VR Bank Tübingen eG,GENODES1STW,,hbci-fiducia-adapter,64061854,, +57a9ecac-de64-46ea-ae68-eed53536f342,HBCI vr bank Untertaunus eG,VRBUDE51XXX,,hbci-fiducia-adapter,51091700,, +01834512-2694-42d9-9bb6-971e57abf20e,HBCI VR Bank Weimar eG,GENODEF1WE1,,hbci-fiducia-adapter,82064188,, +7bea16fa-f9c9-49e0-9fff-ef684b85780b,HBCI VR Bank Westküste eG,GENODEF1HUM,,hbci-fiducia-adapter,21762550,, +7d8a93e9-7e44-4f79-98d4-26639e1af2a0,HBCI VR Bank Westthüringen eG,GENODEF1MU2,,hbci-fiducia-adapter,82064038,, +7a4fb09a-b617-4406-a117-df43a803f3dd,HBCI VR GenoBank DonauWald eG,GENODEF1DGV,,hbci-fiducia-adapter,74190000,, +0f7a054b-22fa-4b21-9eb7-b23f15c94627,HBCI VR meine Bank eG,GENODEF1NEA,,hbci-fiducia-adapter,76069559,, +ed6a7a57-d3a0-4e6e-8989-01fc2e5d7930,HBCI VR PartnerBank eG Chattengau-Schwalm-Eder,GENODEF1HRV,,hbci-fiducia-adapter,52062601,, +9ca0cb03-9fc9-4962-83ce-8640216be57e,HBCI VR PLUS Altmark-Wendland eG,GENODEF1WOT,,hbci-fiducia-adapter,25863489,, +3b525481-1278-43fa-81d8-cc45534054ad,HBCI VR-Bank Altenburger Land eG,GENODEF1SLR,,hbci-fiducia-adapter,83065408,, +1a6a99c2-178b-4773-a5a4-2efbc361f267,HBCI VR-Bank Asperg-Markgröningen eG,GENODES1AMT,,hbci-fiducia-adapter,60462808,, +3c665bdf-dbf1-4b9b-9c44-cfaa8218557b,HBCI VR-Bank Bad Salzungen Schmalkalden eG,GENODEF1SAL,,hbci-fiducia-adapter,84094754,, +47589264-6490-4a3f-81d3-29d6bdfcbe84,HBCI VR-Bank Bonn eG,GENODED1HBO,,hbci-fiducia-adapter,38160220,, +1340ed2d-81b3-4f4b-a7c9-d2bf3888541a,HBCI VR-Bank Coburg eG,GENODEF1COS,,hbci-fiducia-adapter,78360000,, +3ffbbcbe-81ac-4cbe-b2ed-1e844f09005f,HBCI VR-Bank Donau-Mindel eG,GENODEF1GZ2,,hbci-fiducia-adapter,72069043,, +c39d7c85-2629-465e-b14e-abd999f9834f,HBCI VR-Bank Dornstetten-Horb eG,GENODES1VDS,,hbci-fiducia-adapter,64262408,, +463b042c-fe96-4345-bc84-4fabc1f13aff,HBCI VR-Bank eG Magstadt-Weissach,GENODES1MAG,,hbci-fiducia-adapter,60391420,, +c60be4c0-f411-4dfb-b882-f6883e240a60,HBCI VR-Bank eG Osnabrücker Nordland,GENODEF1NOP,,hbci-fiducia-adapter,26567943,, +8a984526-8e7a-4427-bcbd-b2e13f3378e4,HBCI VR-Bank eG Schopfheim-Maulburg,GENODE61SPF,,hbci-fiducia-adapter,68391500,, +9b06d340-48c3-4b6b-b3d0-59de23e61328,HBCI "VR-Bank eG, Alzenau",,hbci-https://www.vr-bank-alzenau.de/services_xs2a/bg13,fiducia-adapter,,, +aa7db233-10b7-404a-b66a-b2e4b1ac9de8,HBCI "VR-Bank eG, Würselen",,hbci-https://www.vrbank-eg.de/services_xs2a/bg13,fiducia-adapter,,, +9f84d7a2-3ade-48c2-aa57-f710209c23ab,HBCI VR-Bank Ehningen-Nufringen eG,GENODES1EHN,,hbci-fiducia-adapter,60069355,, +90e35f2b-9765-416b-b997-4dd5b5b3a71c,HBCI VR-Bank Eisenach-Ronshausen eG,GENODEF1ESA,,hbci-fiducia-adapter,82064088,, +1fa5df6e-5024-4756-b500-82b276fb3a38,HBCI VR-Bank Ellwangen eG,GENODES1ELL,,hbci-fiducia-adapter,61491010,, +d88d2d3f-d0ef-431f-8476-d086b6495bd1,HBCI VR-Bank Erding eG,GENODEF1ISE,,hbci-fiducia-adapter,70169605,, +1be49f8f-9c00-47e4-9d77-ed5087650286,HBCI VR-Bank Erlangen-Höchstadt- Herzogenaurach eG,GENODEF1ER1,,hbci-fiducia-adapter,76360033,, +ceb7a1f9-2e6e-459a-b108-8ef56d53c3b6,HBCI VR-Bank Feuchtwangen-Dinkelsbühl eG,GENODEF1DKV,,hbci-fiducia-adapter,76591000,, +a60e52db-0471-4121-9df1-66ea35221f50,HBCI VR-Bank Fichtelgebirge- Frankenwald eG,GENODEF1MAK,,hbci-fiducia-adapter,78160069,, +b56ce6b7-9cfc-418e-b091-6c4d81cf18eb,HBCI VR-Bank Fläming eG,GENODEF1LUK,,hbci-fiducia-adapter,16062008,, +46e97c5e-c1c5-4a71-98db-b6d30ce10937,HBCI VR-Bank Freudenberg-Niederfischbach eG,GENODEM1FRF,,hbci-fiducia-adapter,46061724,, +cc02f5ee-2a72-47d1-9fe1-3b9f0f8362db,HBCI VR-Bank Gerolzhofen eG,GENODEF1GZH,,hbci-fiducia-adapter,79362081,, +b6b14386-88f7-4593-a370-7f83d5db0be3,HBCI VR-Bank Handels- und Gewerbebank eG,GENODEF1MTG,,hbci-fiducia-adapter,72062152,, +b1b42adc-04f3-4c78-9e10-485769b53828,HBCI VR-Bank Hunsrück-Mosel eG,GENODED1MBA,,hbci-fiducia-adapter,57069806,, +8e7f2040-10b1-42c6-9786-eedce8d621f5,HBCI VR-Bank in Mittelbaden eG,GENODE61IFF,,hbci-fiducia-adapter,66562300,, +401e218d-451f-417f-824f-9254133378a3,HBCI VR-Bank in Südniedersachsen eG,GENODEF1DRA,,hbci-fiducia-adapter,26062433,, +d9f903a2-d2a1-48ef-9ef3-2bb1cdbefc85,HBCI VR-Bank in Südoldenburg eG,GENODEF1CLP,,hbci-fiducia-adapter,28061501,, +09510d0c-2438-44ed-acd0-f274deb2ee52,HBCI VR-Bank Isar-Vils eG,GENODEF1VBV,,hbci-fiducia-adapter,74392300,, +97062083-99d2-45c8-b124-dda6363240ff,HBCI VR-Bank Ismaning Hallbergmoos Neufahrn eG,GENODEF1ISV,,hbci-fiducia-adapter,70093400,, +6b15f4c2-b94c-4b6f-a7b3-f736d0093da5,HBCI VR-Bank Landau-Mengkofen eG,GENODEF1LND,,hbci-fiducia-adapter,74191000,, +c9ba708a-b202-44a7-b6fa-860d6354d552,HBCI VR-Bank Landsberg-Ammersee eG,GENODEF1DSS,,hbci-fiducia-adapter,70091600,, +b3b505de-6de2-480d-b152-0bf8ccdf9408,HBCI VR-Bank Landshut eG,GENODEF1LH1,,hbci-fiducia-adapter,74390000,, +ea707291-9d56-4a3d-8444-21a6f47572d2,HBCI VR-Bank Langenau-Ulmer Alb eG,GENODES1LBK,,hbci-fiducia-adapter,63061486,, +5411824b-eb06-4781-bfc3-6c55975ab340,HBCI VR-Bank Lichtenfels-Ebern eG,GENODEF1LIF,,hbci-fiducia-adapter,77091800,, +ff113c74-d439-447b-b4dc-a2092b184be2,HBCI VR-Bank Memmingen eG,GENODEF1MM1,,hbci-fiducia-adapter,73190000,, +8de8dc90-d3b7-44c9-aaaa-8480d9123252,HBCI VR-Bank Mitte eG,GENODEF1ESW,,hbci-fiducia-adapter,52260385,, +0378ab10-923b-4a9e-95e7-3f2072af7012,HBCI VR-Bank Mittelfranken West eG,GENODEF1ANS,,hbci-fiducia-adapter,76560060,, +6d458e43-6d74-418e-95ab-642290524d73,HBCI VR-Bank Mittelsachsen eG,GENODEF1DL1,,hbci-fiducia-adapter,86065468,, +465d0e7d-020b-442a-b626-473101b10ef6,HBCI VR-Bank Neckar-Enz eG,GENODES1VBB,,hbci-fiducia-adapter,60491430,, +e1859f34-f1a4-4d77-a17f-2de6ea3b1c03,HBCI VR-Bank Neu-Ulm eG,GENODEF1NU1,,hbci-fiducia-adapter,73061191,, +8e6be279-7893-4140-ae9b-918c3ca562a5,HBCI VR-Bank Nordeifel eG,GENODED1SLE,,hbci-fiducia-adapter,37069720,, +c1a1a827-e36b-495b-a61a-6a3f1a815f8a,HBCI VR-Bank NordRhön eG,GENODEF1HUE,,hbci-fiducia-adapter,53061230,, +5efd5f0f-eeef-481d-8c85-363b03890f78,HBCI VR-Bank Ostalb eG,GENODES1AAV,,hbci-fiducia-adapter,61490150,, +89d06f2f-62cd-4866-adc6-9e995db4c795,HBCI VR-Bank Ostbayern-Mitte eG,GENODEF1SR1,,hbci-fiducia-adapter,74290000,, +6128c1ee-630f-4561-8f60-5fffbc27ec05,HBCI VR-Bank Passau eG,GENODEF1PA1,,hbci-fiducia-adapter,74090000,, +e4bc3b70-ad54-4319-ab4a-012969a77a42,HBCI VR-Bank Rhein-Sieg eG,GENODED1RST,,hbci-fiducia-adapter,37069520,, +f9cf3193-8a78-4145-a42f-d719feb819c5,HBCI VR-Bank Rottal-Inn eG,GENODEF1PFK,,hbci-fiducia-adapter,74061813,, +af72b239-84fb-43a3-89a1-2b315926fb22,HBCI VR-Bank Schweinfurt eG,GENODEF1ATE,,hbci-fiducia-adapter,79069010,, +5f6452e6-f5f6-4eb1-a3db-340c2c9063a7,HBCI VR-Bank Spangenberg-Morschen eG,GENODEF1SPB,,hbci-fiducia-adapter,52063369,, +9fde60c6-973b-4cd7-b520-4a077db72437,HBCI VR-Bank Südwestpfalz eG Pirmasens - Zweibrücken,GENODE61ROA,,hbci-fiducia-adapter,54261700,, +3215bcd5-0530-464c-9b18-e8b5ae47e784,HBCI VR-Bank Taufkirchen-Dorfen eG,GENODEF1TAV,,hbci-fiducia-adapter,70169566,, +230fc3e9-9a09-48d3-81ee-b71e31b8d4e3,HBCI VR-Bank Uckermark-Randow eG,GENODEF1PZ1,,hbci-fiducia-adapter,15091704,, +42592586-450e-40a4-8f31-b1766f299d2c,HBCI VR-Bank Werdenfels eG,GENODEF1GAP,,hbci-fiducia-adapter,70390000,, +468b9a32-81f7-4f48-8f89-5eec6a42bc73,HBCI VR-Bank Westmünsterland eG,GENODEM1BOB,,hbci-fiducia-adapter,42861387,, +02416265-e8bb-4443-b602-ebc784cd5819,HBCI VR-Bankverein Bad Hersfeld-Rotenburg eG,GENODE51BHE,,hbci-fiducia-adapter,53290000,, +bf43a655-0426-4633-a46c-b598c7b6a90b,HBCI Waldecker Bank eG,GENODEF1KBW,,hbci-fiducia-adapter,52360059,, +69eeb62a-2061-4ac4-9109-497be7f001bd,HBCI WEG Bank AG,WEGBDE77XXX,,hbci-fiducia-adapter,70011600,, +331680b0-ed46-4376-b52a-92bb06027c7e,HBCI Westerwald Bank eG Volks- und Raiffeisenbank,GENODE51WW1,,hbci-fiducia-adapter,57391800,, +f68ee3f3-1187-4fbe-a898-b567e02d251d,HBCI Wiesbadener Volksbank eG,WIBADE5WXXX,,hbci-fiducia-adapter,51090000,, +3c0b5b3d-b3cb-4ab5-b54b-c51a7027c3b4,HBCI Winterbacher Bank eG,GENODES1WBB,,hbci-fiducia-adapter,60069462,, +06fe2758-09df-407d-9636-22083a7c7581,HBCI Wirecard Bank AG,WIREDEMMXXX,,hbci-fiducia-adapter,51230800,, +d7ef4509-d0bb-4f55-bf9e-fb9c423c57d4,HBCI Zevener Volksbank eG,GENODEF1SIT,,hbci-fiducia-adapter,24161594,, diff --git a/opba-db/src/test/java/de/adorsys/opba/db/BankProtocolActionsSqlGeneratorTest.java b/opba-db/src/test/java/de/adorsys/opba/db/BankProtocolActionsSqlGeneratorTest.java index 5a9a3cb105..0a9b2543c8 100644 --- a/opba-db/src/test/java/de/adorsys/opba/db/BankProtocolActionsSqlGeneratorTest.java +++ b/opba-db/src/test/java/de/adorsys/opba/db/BankProtocolActionsSqlGeneratorTest.java @@ -71,7 +71,7 @@ private void writeXs2aBankActionData(String bankRecord) { int authorizationId; writelnToFile(BANK_ACTION_DESTINATION_PATH, String.format("%d,%s,LIST_ACCOUNTS,xs2aListAccounts,true", bankActionId++, bankUUID)); - writelnToFile(BANK_ACTION_DESTINATION_PATH, String.format("%d,%s,LIST_TRANSACTIONS,xs2aSandboxListTransactions,true", bankActionId++, bankUUID)); + writelnToFile(BANK_ACTION_DESTINATION_PATH, String.format("%d,%s,LIST_TRANSACTIONS,xs2aListTransactions,true", bankActionId++, bankUUID)); writelnToFile(BANK_ACTION_DESTINATION_PATH, String.format("%d,%s,AUTHORIZATION,,true", authorizationId = bankActionId++, bankUUID)); writelnToFile(BANK_ACTION_DESTINATION_PATH, String.format("%d,%s,SINGLE_PAYMENT,xs2aInitiateSinglePayment,true", bankActionId++, bankUUID)); writelnToFile(BANK_ACTION_DESTINATION_PATH, String.format("%d,%s,GET_PAYMENT_INFORMATION,xs2aGetPaymentInfoState,true", bankActionId++, bankUUID)); diff --git a/opba-facade-protocol-api-shared/src/main/java/de/adorsys/opba/protocol/api/common/CurrentBankProfile.java b/opba-facade-protocol-api-shared/src/main/java/de/adorsys/opba/protocol/api/common/CurrentBankProfile.java index e6cd48942d..eaafc169ff 100644 --- a/opba-facade-protocol-api-shared/src/main/java/de/adorsys/opba/protocol/api/common/CurrentBankProfile.java +++ b/opba-facade-protocol-api-shared/src/main/java/de/adorsys/opba/protocol/api/common/CurrentBankProfile.java @@ -47,6 +47,11 @@ public interface CurrentBankProfile { */ boolean isUniquePaymentPurpose(); + /** + * Whether to try to skip call to ConsentAuthorization action (startAuthorization) + */ + boolean isXs2aSkipConsentAuthorization(); + /** * Bank identification code. */ diff --git a/opba-protocols/protocol-bpmn-shared/src/main/java/de/adorsys/opba/protocol/bpmnshared/config/flowable/FlowableJobEventListener.java b/opba-protocols/protocol-bpmn-shared/src/main/java/de/adorsys/opba/protocol/bpmnshared/config/flowable/FlowableJobEventListener.java index bf335c6bcf..e6074fcdd0 100644 --- a/opba-protocols/protocol-bpmn-shared/src/main/java/de/adorsys/opba/protocol/bpmnshared/config/flowable/FlowableJobEventListener.java +++ b/opba-protocols/protocol-bpmn-shared/src/main/java/de/adorsys/opba/protocol/bpmnshared/config/flowable/FlowableJobEventListener.java @@ -2,12 +2,16 @@ import com.google.common.collect.ImmutableSet; import de.adorsys.opba.protocol.bpmnshared.dto.messages.ProcessError; +import lombok.SneakyThrows; import lombok.extern.slf4j.Slf4j; import org.flowable.common.engine.api.delegate.event.FlowableEngineEntityEvent; import org.flowable.common.engine.api.delegate.event.FlowableExceptionEvent; import org.flowable.engine.delegate.event.AbstractFlowableEngineEventListener; import org.springframework.context.ApplicationEventPublisher; import org.springframework.context.annotation.Configuration; +import org.springframework.util.ReflectionUtils; + +import java.lang.reflect.InvocationTargetException; import static org.flowable.common.engine.api.delegate.event.FlowableEngineEventType.JOB_EXECUTION_FAILURE; import static org.flowable.common.engine.api.delegate.event.FlowableEngineEventType.PROCESS_COMPLETED_WITH_ERROR_END_EVENT; @@ -33,9 +37,12 @@ protected void processCompletedWithErrorEnd(FlowableEngineEntityEvent event) { handleError(event); } + @SneakyThrows private void handleError(FlowableEngineEntityEvent event) { if (event instanceof FlowableExceptionEvent) { - log.error("Exception occurred for execution {} of process {}", event.getExecutionId(), event.getProcessInstanceId(), ((FlowableExceptionEvent) event).getCause()); + var cause = ((FlowableExceptionEvent) event).getCause(); + log.error("Exception occurred for execution {} of process {}", event.getExecutionId(), event.getProcessInstanceId(), cause); + handleXs2aAdapterError(cause); } ProcessError result = ProcessError.builder() @@ -47,6 +54,15 @@ private void handleError(FlowableEngineEntityEvent event) { applicationEventPublisher.publishEvent(result); } + private void handleXs2aAdapterError(Throwable cause) throws IllegalAccessException, InvocationTargetException { + if (null != cause) { + var method = ReflectionUtils.findMethod(cause.getClass(), "getStatusCode"); + if (null != method) { + log.error("Response status code: {}", method.invoke(cause)); + } + } + } + private String exceptionMessage(FlowableEngineEntityEvent event) { if (event instanceof FlowableExceptionEvent) { return "An exception occurred"; diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/context/Xs2aContext.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/context/Xs2aContext.java index eb7fd8bea9..afde006203 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/context/Xs2aContext.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/context/Xs2aContext.java @@ -2,13 +2,14 @@ import com.fasterxml.jackson.annotation.JsonIgnore; import com.google.common.collect.ImmutableMap; +import de.adorsys.opba.protocol.api.common.Approach; import de.adorsys.opba.protocol.api.common.ProtocolAction; import de.adorsys.opba.protocol.bpmnshared.dto.context.BaseContext; -import de.adorsys.opba.protocol.api.common.Approach; import de.adorsys.opba.protocol.xs2a.domain.dto.forms.ScaMethod; import de.adorsys.opba.protocol.xs2a.service.storage.TransientDataEntry; import de.adorsys.xs2a.adapter.api.model.AuthenticationObject; import de.adorsys.xs2a.adapter.api.model.ChallengeData; +import de.adorsys.xs2a.adapter.api.model.HrefType; import de.adorsys.xs2a.adapter.api.model.StartScaprocessResponse; import de.adorsys.xs2a.adapter.api.model.TokenResponse; import lombok.Data; @@ -57,6 +58,11 @@ public class Xs2aContext extends BaseContext { */ private String aspspScaApproach; + /** + * Consent/Payment create links response from ASPSP. + */ + private Map consentOrPaymentCreateLinks; + /** * ASPSP response after consent authorization was initiated. Used to retrieve ASPSP redirection link for * consent authorization for REDIRECT consent authorization. diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallenge.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallenge.java index f8e59e7396..ca1aa2baff 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallenge.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallenge.java @@ -18,6 +18,8 @@ @RequiredArgsConstructor public class Xs2aDoScaRedirectToAspspForScaChallenge extends ValidatedExecution { + public static final String SCA_REDIRECT = "scaRedirect"; + private final ProtocolUrlsConfiguration urlsConfiguration; private final RuntimeService runtimeService; private final Xs2aRedirectExecutor redirectExecutor; @@ -33,7 +35,7 @@ protected void doRealExecution(DelegateExecution execution, Xs2aContext context) execution, context, urlSet.getToAspsp(), - context.getStartScaProcessResponse().getLinks().get("scaRedirect").getHref(), + getRedirectToAspspUrl(context), redirect -> new RedirectToAspsp(redirect.build()) ); } @@ -44,4 +46,8 @@ protected void doMockedExecution(DelegateExecution execution, Xs2aContext contex runtimeService.trigger(execution.getId()); } + + protected String getRedirectToAspspUrl(Xs2aContext context) { + return context.getStartScaProcessResponse().getLinks().get(SCA_REDIRECT).getHref(); + } } diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallengeAfterCreate.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallengeAfterCreate.java new file mode 100644 index 0000000000..a0a12146a4 --- /dev/null +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/authenticate/redirect/Xs2aDoScaRedirectToAspspForScaChallengeAfterCreate.java @@ -0,0 +1,24 @@ +package de.adorsys.opba.protocol.xs2a.service.xs2a.authenticate.redirect; + +import de.adorsys.opba.protocol.xs2a.config.protocol.ProtocolUrlsConfiguration; +import de.adorsys.opba.protocol.xs2a.context.Xs2aContext; +import de.adorsys.opba.protocol.xs2a.service.xs2a.Xs2aRedirectExecutor; +import org.flowable.engine.RuntimeService; +import org.springframework.stereotype.Service; + +/** + * Performs redirection to the ASPSP by sending him to the page with redirection button (to ASPSP) for the redirect approach. + * But is specific as happens just after consent was created. + */ +@Service("xs2aDoScaRedirectToAspspForScaChallengeAfterCreate") +public class Xs2aDoScaRedirectToAspspForScaChallengeAfterCreate extends Xs2aDoScaRedirectToAspspForScaChallenge { + + public Xs2aDoScaRedirectToAspspForScaChallengeAfterCreate(ProtocolUrlsConfiguration urlsConfiguration, RuntimeService runtimeService, Xs2aRedirectExecutor redirectExecutor) { + super(urlsConfiguration, runtimeService, redirectExecutor); + } + + @Override + protected String getRedirectToAspspUrl(Xs2aContext context) { + return context.getConsentOrPaymentCreateLinks().get(SCA_REDIRECT).getHref(); + } +} diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/BaseCreateAisConsentService.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/BaseCreateAisConsentService.java new file mode 100644 index 0000000000..255a7b6c1f --- /dev/null +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/BaseCreateAisConsentService.java @@ -0,0 +1,46 @@ +package de.adorsys.opba.protocol.xs2a.service.xs2a.consent; + +import de.adorsys.opba.protocol.bpmnshared.service.exec.ValidatedExecution; +import de.adorsys.opba.protocol.xs2a.context.Xs2aContext; +import de.adorsys.opba.protocol.xs2a.util.logresolver.Xs2aLogResolver; +import de.adorsys.xs2a.adapter.api.Response; +import de.adorsys.xs2a.adapter.api.model.ConsentsResponse201; +import org.apache.logging.log4j.util.Strings; +import org.flowable.engine.delegate.DelegateExecution; + +import java.util.UUID; + +import static de.adorsys.opba.protocol.bpmnshared.GlobalConst.CONTEXT; +import static de.adorsys.xs2a.adapter.api.ResponseHeaders.ASPSP_SCA_APPROACH; +import static de.adorsys.xs2a.adapter.impl.link.bg.template.LinksTemplate.SCA_OAUTH; + +public abstract class BaseCreateAisConsentService extends ValidatedExecution { + + protected final Xs2aLogResolver logResolver = new Xs2aLogResolver(getClass()); + + @Override + protected void doMockedExecution(DelegateExecution execution, T context) { + logResolver.log("doMockedExecution: execution ({}) with context ({})", execution, context); + + context.setConsentId("MOCK-" + UUID.randomUUID().toString()); + execution.setVariable(CONTEXT, context); + } + + protected void postHandleCreatedConsent(Response consentInit, DelegateExecution execution, Xs2aContext context) { + context.setWrongAuthCredentials(false); + context.setConsentId(consentInit.getBody().getConsentId()); + if (null != consentInit.getBody().getLinks() && consentInit.getBody().getLinks().containsKey(SCA_OAUTH)) { + context.setOauth2IntegratedNeeded(true); + context.setScaOauth2Link(consentInit.getBody().getLinks().get(SCA_OAUTH).getHref()); + } + + if (null != consentInit.getHeaders() && Strings.isNotBlank(consentInit.getHeaders().getHeader(ASPSP_SCA_APPROACH))) { + context.setAspspScaApproach(consentInit.getHeaders().getHeader(ASPSP_SCA_APPROACH)); + if (null != consentInit.getBody()) { + context.setConsentOrPaymentCreateLinks(consentInit.getBody().getLinks()); + } + } + + execution.setVariable(CONTEXT, context); + } +} diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisAccountListConsentService.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisAccountListConsentService.java index 4b790bcd13..8ecfb678a2 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisAccountListConsentService.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisAccountListConsentService.java @@ -1,14 +1,12 @@ package de.adorsys.opba.protocol.xs2a.service.xs2a.consent; import de.adorsys.opba.protocol.bpmnshared.service.context.ContextUtil; -import de.adorsys.opba.protocol.bpmnshared.service.exec.ValidatedExecution; import de.adorsys.opba.protocol.xs2a.config.protocol.ProtocolUrlsConfiguration; import de.adorsys.opba.protocol.xs2a.context.ais.AccountListXs2aContext; import de.adorsys.opba.protocol.xs2a.service.dto.ValidatedPathHeadersBody; import de.adorsys.opba.protocol.xs2a.service.xs2a.dto.consent.ConsentInitiateHeaders; import de.adorsys.opba.protocol.xs2a.service.xs2a.dto.consent.ConsentInitiateParameters; import de.adorsys.opba.protocol.xs2a.service.xs2a.validation.Xs2aValidator; -import de.adorsys.opba.protocol.xs2a.util.logresolver.Xs2aLogResolver; import de.adorsys.xs2a.adapter.api.AccountInformationService; import de.adorsys.xs2a.adapter.api.model.Consents; import lombok.RequiredArgsConstructor; @@ -16,8 +14,6 @@ import org.flowable.engine.delegate.DelegateExecution; import org.springframework.stereotype.Service; -import java.util.UUID; - import static de.adorsys.opba.protocol.xs2a.constant.GlobalConst.CONTEXT; /** @@ -27,7 +23,7 @@ @Slf4j @Service("xs2aAccountListConsentInitiate") @RequiredArgsConstructor -public class CreateAisAccountListConsentService extends ValidatedExecution { +public class CreateAisAccountListConsentService extends BaseCreateAisConsentService { private final AisConsentInitiateExtractor extractor; private final AccountInformationService ais; @@ -35,7 +31,6 @@ public class CreateAisAccountListConsentService extends ValidatedExecution params = extractor.forExecution(context); - handler.tryCreateAndHandleErrors(execution, () -> createAisConsentService.createConsent(ais, execution, context, params)); - } - - @Override - protected void doMockedExecution(DelegateExecution execution, AccountListXs2aContext context) { - logResolver.log("doMockedExecution: execution ({}) with context ({})", execution, context); + var result = handler.tryCreateAndHandleErrors(execution, () -> createAisConsentService.createConsent(ais, context, params)); + if (null == result) { + execution.setVariable(CONTEXT, context); + log.warn("Consent creation failed"); + return; + } - context.setConsentId("MOCK-" + UUID.randomUUID().toString()); - execution.setVariable(CONTEXT, context); + postHandleCreatedConsent(result, execution, context); } } diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisConsentService.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisConsentService.java index 6867f560fa..97f45c2c7e 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisConsentService.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisConsentService.java @@ -10,12 +10,8 @@ import de.adorsys.xs2a.adapter.api.Response; import de.adorsys.xs2a.adapter.api.model.Consents; import de.adorsys.xs2a.adapter.api.model.ConsentsResponse201; -import org.flowable.engine.delegate.DelegateExecution; import org.springframework.stereotype.Service; -import static de.adorsys.opba.protocol.xs2a.constant.GlobalConst.CONTEXT; -import static de.adorsys.xs2a.adapter.impl.link.bg.template.LinksTemplate.SCA_OAUTH; - /** * Calls Xs2a API to initiate AIS consent. */ @@ -24,9 +20,8 @@ public class CreateAisConsentService { private final Xs2aLogResolver logResolver = new Xs2aLogResolver(getClass()); - void createConsent( + Response createConsent( AccountInformationService ais, - DelegateExecution execution, Xs2aAisContext context, ValidatedPathHeadersBody params) { logResolver.log("createConsent with parameters: {}", params.getPath(), params.getHeaders(), params.getBody()); @@ -36,13 +31,6 @@ void createConsent( params.getBody() ); logResolver.log("createConsent response: {}", consentInit); - - context.setWrongAuthCredentials(false); - context.setConsentId(consentInit.getBody().getConsentId()); - if (null != consentInit.getBody().getLinks() && consentInit.getBody().getLinks().containsKey(SCA_OAUTH)) { - context.setOauth2IntegratedNeeded(true); - context.setScaOauth2Link(consentInit.getBody().getLinks().get(SCA_OAUTH).getHref()); - } - execution.setVariable(CONTEXT, context); + return consentInit; } } diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisTransactionListConsentService.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisTransactionListConsentService.java index 9dc7fa3b8c..f731db424b 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisTransactionListConsentService.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateAisTransactionListConsentService.java @@ -1,14 +1,12 @@ package de.adorsys.opba.protocol.xs2a.service.xs2a.consent; import de.adorsys.opba.protocol.bpmnshared.service.context.ContextUtil; -import de.adorsys.opba.protocol.bpmnshared.service.exec.ValidatedExecution; import de.adorsys.opba.protocol.xs2a.config.protocol.ProtocolUrlsConfiguration; import de.adorsys.opba.protocol.xs2a.context.ais.TransactionListXs2aContext; import de.adorsys.opba.protocol.xs2a.service.dto.ValidatedPathHeadersBody; import de.adorsys.opba.protocol.xs2a.service.xs2a.dto.consent.ConsentInitiateHeaders; import de.adorsys.opba.protocol.xs2a.service.xs2a.dto.consent.ConsentInitiateParameters; import de.adorsys.opba.protocol.xs2a.service.xs2a.validation.Xs2aValidator; -import de.adorsys.opba.protocol.xs2a.util.logresolver.Xs2aLogResolver; import de.adorsys.xs2a.adapter.api.AccountInformationService; import de.adorsys.xs2a.adapter.api.model.Consents; import lombok.RequiredArgsConstructor; @@ -16,8 +14,6 @@ import org.flowable.engine.delegate.DelegateExecution; import org.springframework.stereotype.Service; -import java.util.UUID; - import static de.adorsys.opba.protocol.xs2a.constant.GlobalConst.CONTEXT; /** @@ -27,7 +23,7 @@ @Slf4j @Service("xs2aTransactionListConsentInitiate") @RequiredArgsConstructor -public class CreateAisTransactionListConsentService extends ValidatedExecution { +public class CreateAisTransactionListConsentService extends BaseCreateAisConsentService { private final AisConsentInitiateExtractor extractor; private final AccountInformationService ais; @@ -35,7 +31,6 @@ public class CreateAisTransactionListConsentService extends ValidatedExecution params = extractor.forExecution(context); - handler.tryCreateAndHandleErrors(execution, () -> createAisConsentService.createConsent(ais, execution, context, params)); - } - - @Override - protected void doMockedExecution(DelegateExecution execution, TransactionListXs2aContext context) { - logResolver.log("doMockedExecution: execution ({}) with context ({})", execution, context); + var result = handler.tryCreateAndHandleErrors(execution, () -> createAisConsentService.createConsent(ais, context, params)); + if (null == result) { + execution.setVariable(CONTEXT, context); + log.warn("Consent creation failed"); + return; + } - context.setConsentId("MOCK-" + UUID.randomUUID().toString()); - execution.setVariable(CONTEXT, context); + postHandleCreatedConsent(result, execution, context); } } diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateConsentOrPaymentPossibleErrorHandler.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateConsentOrPaymentPossibleErrorHandler.java index 7df33595d3..83d003c0f2 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateConsentOrPaymentPossibleErrorHandler.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/CreateConsentOrPaymentPossibleErrorHandler.java @@ -16,6 +16,7 @@ import java.util.Objects; import java.util.Set; +import java.util.function.Supplier; import java.util.stream.Collectors; /** @@ -34,15 +35,17 @@ public class CreateConsentOrPaymentPossibleErrorHandler { * Swallows retryable (like wrong IBAN) consent initiation exceptions. * @param tryCreate Consent/payment creation function to call */ - public void tryCreateAndHandleErrors(DelegateExecution execution, Runnable tryCreate) { + public T tryCreateAndHandleErrors(DelegateExecution execution, Supplier tryCreate) { try { - tryCreate.run(); + return tryCreate.get(); } catch (ErrorResponseException ex) { log.debug("Trying to handle ErrorResponseException", ex); tryHandleWrongIbanOrCredentialsExceptionOrOauth2(execution, ex); + return null; } catch (OAuthException ex) { log.debug("Trying to handle OAuthException", ex); tryHandleOauth2Exception(execution); + return null; } } diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/Xs2aConsentInfo.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/Xs2aConsentInfo.java index cbc86e2adc..96cca0e01b 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/Xs2aConsentInfo.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/consent/Xs2aConsentInfo.java @@ -27,6 +27,13 @@ public boolean isRedirect(Xs2aContext ctx) { return REDIRECT.name().equalsIgnoreCase(ctx.getAspspScaApproach()); } + /** + * If ASPSP needs startConsentAuthorization to be skipped. + */ + public boolean isTrySkipStartConsentAuthorization(Xs2aContext ctx) { + return ctx.aspspProfile().isXs2aSkipConsentAuthorization(); + } + /** * Is the current consent authorization in OAUTH (not OAUTH pre-step) mode. */ diff --git a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/payment/CreateSinglePaymentService.java b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/payment/CreateSinglePaymentService.java index ed3f20420a..9a46aeffc5 100644 --- a/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/payment/CreateSinglePaymentService.java +++ b/opba-protocols/xs2a-protocol/src/main/java/de/adorsys/opba/protocol/xs2a/service/xs2a/payment/CreateSinglePaymentService.java @@ -22,12 +22,14 @@ import de.adorsys.xs2a.adapter.api.model.PaymentService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; +import org.apache.logging.log4j.util.Strings; import org.flowable.engine.delegate.DelegateExecution; import org.springframework.stereotype.Service; import java.util.UUID; import static de.adorsys.opba.protocol.xs2a.constant.GlobalConst.CONTEXT; +import static de.adorsys.xs2a.adapter.api.ResponseHeaders.ASPSP_SCA_APPROACH; import static de.adorsys.xs2a.adapter.impl.link.bg.template.LinksTemplate.SCA_OAUTH; /** @@ -68,7 +70,14 @@ protected void doRealExecution(DelegateExecution execution, Xs2aPisContext conte logResolver.log("doRealExecution: execution ({}) with context ({})", execution, context); ValidatedPathHeadersBody params = extractor.forExecution(context); - handler.tryCreateAndHandleErrors(execution, () -> initiatePayment(execution, context, params)); + var result = handler.tryCreateAndHandleErrors(execution, () -> initiatePayment(context, params)); + if (null == result) { + execution.setVariable(CONTEXT, context); + log.warn("Payment creation failed"); + return; + } + + postHandleCreatedPayment(result, execution, context); } @Override @@ -79,8 +88,24 @@ protected void doMockedExecution(DelegateExecution execution, Xs2aPisContext con execution.setVariable(CONTEXT, context); } - private void initiatePayment( - DelegateExecution execution, + protected void postHandleCreatedPayment(Response paymentInit, DelegateExecution execution, Xs2aPisContext context) { + context.setWrongAuthCredentials(false); + context.setPaymentId(paymentInit.getBody().getPaymentId()); + if (null != paymentInit.getBody().getLinks() && paymentInit.getBody().getLinks().containsKey(SCA_OAUTH)) { + context.setOauth2IntegratedNeeded(true); + context.setScaOauth2Link(paymentInit.getBody().getLinks().get(SCA_OAUTH).getHref()); + } + + if (null != paymentInit.getHeaders() && Strings.isNotBlank(paymentInit.getHeaders().getHeader(ASPSP_SCA_APPROACH))) { + context.setAspspScaApproach(paymentInit.getHeaders().getHeader(ASPSP_SCA_APPROACH)); + if (null != paymentInit.getBody()) { + context.setConsentOrPaymentCreateLinks(paymentInit.getBody().getLinks()); + } + } + execution.setVariable(CONTEXT, context); + } + + private Response initiatePayment( Xs2aPisContext context, ValidatedPathHeadersBody params) { @@ -94,14 +119,7 @@ private void initiatePayment( ); logResolver.log("initiatePayment response: {}", paymentInit); - - context.setWrongAuthCredentials(false); - context.setPaymentId(paymentInit.getBody().getPaymentId()); - if (null != paymentInit.getBody().getLinks() && paymentInit.getBody().getLinks().containsKey(SCA_OAUTH)) { - context.setOauth2IntegratedNeeded(true); - context.setScaOauth2Link(paymentInit.getBody().getLinks().get(SCA_OAUTH).getHref()); - } - execution.setVariable(CONTEXT, context); + return paymentInit; } @Service diff --git a/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/consent/xs2a-authorize-consent.bpmn20.xml b/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/consent/xs2a-authorize-consent.bpmn20.xml index c04def5ac5..d2611f89b2 100644 --- a/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/consent/xs2a-authorize-consent.bpmn20.xml +++ b/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/consent/xs2a-authorize-consent.bpmn20.xml @@ -7,7 +7,6 @@ scaStatus: recieved -> psuIdentified - Determines which SCA method was selected by bank @@ -88,11 +87,17 @@ + + + #{xs2aConsentInfo.isTrySkipStartConsentAuthorization(CONTEXT) && xs2aConsentInfo.isRedirect(CONTEXT)} + + + - + @@ -145,10 +150,6 @@ - - - - @@ -263,8 +264,9 @@ - - + + + @@ -290,6 +292,26 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/payment/xs2a-authorize-payment.bpmn20.xml b/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/payment/xs2a-authorize-payment.bpmn20.xml index 6a8f2bcee1..dc2c5ee580 100644 --- a/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/payment/xs2a-authorize-payment.bpmn20.xml +++ b/opba-protocols/xs2a-protocol/src/main/resources/processes/xs2a/authorization/payment/xs2a-authorize-payment.bpmn20.xml @@ -7,7 +7,6 @@ scaStatus: received -> psuIdentified - Determines which SCA method was selected by bank @@ -88,11 +87,17 @@ + + + #{xs2aConsentInfo.isTrySkipStartConsentAuthorization(CONTEXT) && xs2aConsentInfo.isRedirect(CONTEXT)} + + + - + @@ -145,10 +150,6 @@ - - - - @@ -264,8 +265,9 @@ - - + + + @@ -291,6 +293,26 @@ + + + + + + + + + + + + + + + + + + + +